
    .btn-grad {

        background-image: linear-gradient(to right, #FF8008 0%, #ffd156 51%, #FF8008 100%) !important;
        background-size: 200% auto !important;
        animation-name: btnGradient !important;
        animation-duration: 4s !important;
        animation-iteration-count: infinite !important;
        background-position: left top;
    }

    .sampleBtn {
        padding: 8px 20px;
        text-align: center;
        transition: 0.5s;
        color: white !important;
        box-shadow: 0 0 20px #eee;
        text-decoration: none !important;
        margin: 0 auto 15px;
        display: block;
        width: 230px;
        font-weight: 700;
        text-transform: capitalize;
        font-size: 16px;
        max-width: 100%;
        background-color: #428b57;
    }

    @keyframes btnGradient {
        0% {
            background-position: left top;
        }

        50% {
            background-position: right center;
        }

        100% {
            background-position: left top;
        }
    }

    .meta {
        margin-top: 70px;
    }

    .topInfoBar {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;

    }

    .price_and_cart {
        display: flex;
        /* justify-content: space-between; */
        align-items: center;
        border-top: 1px dotted #999;
        padding: 12px 0px;
        font-size: 28px !important;
    }

    .price_and_cart .item {
        border-left: none !important;
    }

    .topInfoBar .item2 h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
        text-transform: uppercase;
        display: inline;
        margin-right: 12px;
    }

    .topInfoBar .item2 p {
        display: inline;
    }

    .vLine {
        border-left: 1px solid #999;
        margin: 0 20px;
    }

    .price_and_cart .item h4 {
        font-size: 18px !important;
        margin-bottom: 0 !important;
        text-transform: capitalize !important;
    }

    .price_and_cart .item h4.priceText {
        font-size: 14px !important;
    }

    .centerAlign {
        display: flex;
        justify-content: center;
    }


    #shareBtn>span {
        vertical-align: middle;
        font-weight: 600;
    }


    #shareBtn a {
        display: inline-block;
        border-radius: 3px;
        background-color: #f4511e;
        border: none;
        color: #FFFFFF;
        text-align: center;
        font-size: 12px;
        padding: 2px 6px;
        transition: all 0.5s;
        cursor: pointer;
        margin: 5px 3px 3px 0;
        vertical-align: middle;
    }

    #shareBtn a span {
        cursor: pointer;
        display: inline-block;
        position: relative;
        transition: 0.5s;
    }

    #shareBtn a span:after {
        content: '\00bb';
        position: absolute;
        opacity: 0;
        top: 0;
        right: -20px;
        transition: 0.5s;
    }

    #shareBtn a:hover span {
        padding-right: 25px;
    }

    #shareBtn a:hover span:after {
        opacity: 1;
        right: 0;
    }

    #shareBtn a.fb {
        background-color: #3b5998;
    }

    #shareBtn a.twitter {
        background-color: #00acee
    }

    #shareBtn a.linkedin {
        background-color: #0077B5;
    }

    #comingsoon-text h3{
        color: #FFB606; 
        animation: animate 1.3s linear infinite; 
        font-size:42px;
    }

    @keyframes animate { 
        0% { 
            opacity: 0.1; 
        } 

        30% { 
            opacity:0.9; 
        } 
        
        80% { 
            opacity:0.9; 
        } 

        100% { 
            opacity: 0.1; 
        } 
    } 





    @media screen and (max-width: 768px) {
        .meta {
            margin-top: 30px;
        }

        .vLine {
            margin: 0 8px;
        }

        .price_and_cart {
            flex-direction: column;
            padding: 30px 0;
        }

        .course-details-area .course-details-info .course-meta .item:first-child {
            margin-bottom: 2px;
            padding-bottom: 10px;
            border-bottom: none;
        }

        #courseForm {
            width: 100%;
        }
    }
