﻿.page-loader-pink {
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1000;
}

    .page-loader-pink .spinner {
        position: relative;
        top: 35%;
        width: 80px;
        height: 80px;
        margin: 0 auto;
        background-color: #dd157c;
        border-radius: 100%;
        -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
        animation: sk-scaleout 1.0s infinite ease-in-out;
    }

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}

.custom-modal .modal-content {
    border-radius: 8px;
}

.custom-modal .modal-header button.close {
    position: absolute;
    background: none !important;
    right: 12px;
    opacity: 1;
    top: 10px;
}

.custom-modal .modal-header {
    border: none;
    justify-content: center;
}

    .custom-modal .modal-header h4 {
        margin: 0;
        padding: 0;
    }

.custom-modal .modal-body {
    min-height: 130px;
}

    .custom-modal .modal-body p {
        padding: 0 0 5px;
        text-align: center;
    }

span.basket-count {
    background: #e01883;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    padding: 3px;
    border-radius: 5px;
    position: absolute;
    margin: -3px 0 0 -26px;
    height: auto;
    line-height: normal;
    filter: drop-shadow(1px 2px 3px rgba(0,0,0,0.3));
    min-width: 20px;
    text-align: center;
}


.quantity-sec {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

    .quantity-sec label {
        font-weight: 500;
        margin: 0;
        padding: 0;
        font-size: 15px;
    }

    .quantity-sec > div {
        display: flex;
        border: 1px solid #ddd;
        border-radius: 5px;
        overflow: hidden;
    }

        .quantity-sec > div input, .quantity-sec > div .item-qty {
            border: none;
            border-left: 1px solid #ddd;
            border-right: 1px solid #ddd;
            max-width: 50px;
            color: #e01883;
            text-align: center;
            font-weight: 500;
            font-size: 15px;
            min-width: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .quantity-sec > div button {
            min-width: 38px;
            text-align: center;
            font-size: 24px !IMPORTANT;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            background: none !important;
            color: #000;
            border-radius: 0;
            padding: 0;
            border: none;
        }

            .quantity-sec > div button i {
                font-size: 14px;
            }

            .quantity-sec > div button:hover {
                color: #e01883;
                background: #fee6e6 !important;
            }

.payment-icon-list {
    font-size: 0;
    background: #f9f9f9;
    line-height: normal;
    position: absolute;
    top: -35px;
    right: 0;
}

/* Bootstrap 4 replacement for offcanvas  right modal */
div#basketModalBody {
    padding-bottom: 2rem;
}

.modal.right .modal-dialog {
    position: fixed;
    right: 0;
    margin: auto;
    width: 380px;
    height: 100%;
    transform: translate3d(100%, 0, 0);
    transition: transform .3s ease-out;
}

.modal.right .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
}

.modal.right.show .modal-dialog {
    transform: translate3d(0, 0, 0);
}

.modal.right .modal-header button.close {
    background: none !important;
}

.modal.right .modal-header h5 {
    padding: 0 !important;
}

.right .section-loader {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-loader-img {
    height: 200px;
    display: block;
    margin: 0 auto;
}

.total-cart-sec {
    background: #fff;
    text-align: center;
    padding: 0;
    /*box-shadow: 0 0 10px rgba(0,0,0,0.1);*/
    width: 100%;
    z-index: 9;
    overflow: auto;
    max-height: calc(100vh - 170px);
}

    .total-cart-sec .total-amo {
        padding: 30px 20px 30px;
        border-bottom: 1px solid #c9c8c8;
    }

        .total-cart-sec .total-amo > div button, .total-cart-sec .total-amo > div a {
            width: 100%;
            max-width: 180px;
            margin: 0 auto;
        }

    .total-cart-sec .cart-deatils {
        text-align: center;
        padding: 15px 20px;
        border-bottom: 1px solid #c9c8c8;
        position: relative;
    }

        .total-cart-sec .cart-deatils .coursetoplogo {
            margin: 0 auto 10px;
            width: 80px;
            height: 80px;
        }

        .total-cart-sec .cart-deatils h4 {
            font-weight: 600;
            font-size: 18px;
            margin: 0 0 10px;
            padding: 0;
        }

        .total-cart-sec .cart-deatils p {
            margin: 0 0 20px;
            padding: 0;
            font-size: 16px;
        }

            .total-cart-sec .cart-deatils p strong {
                font-weight: 600;
            }

        .total-cart-sec .cart-deatils .quantity-sec {
            justify-content: center;
        }

.coursetoplogo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 1px solid #e01883;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    overflow: hidden;
}

    .coursetoplogo img {
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }

b, strong {
    font-weight: 500;
}

.free-courses-teaser-list .free-course-btn {
    clear: both;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

    .free-courses-teaser-list .free-course-btn.only-launch-course-btn {
        justify-content: flex-end;
    }

.custom-content {
    padding: 20px;
}

    .custom-content iframe {
        width: 100%;
        height: 450px;
    }

#idfollowmsg {
    margin-right: 10px;
}

a.share-view-modal:hover {
    background: #e01883;
    color: #fff !important;
}

.offer-sec {
    background: #e01883;
    color: #fff;
    font-family: 'Roboto';
    line-height: normal;
    position: relative;
}

    .offer-sec .of-close {
        color: #fff;
        border: 1px solid #fff;
        width: 20px;
        height: 20px;
        display: flex;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        text-decoration: none !important;
        position: absolute;
        right: 10px;
        top: 16px;
    }

.offer-inner-sec {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .offer-inner-sec > div {
        display: flex;
        align-items: center;
        border: 1px dashed;
        border-right: none;
    }

    .offer-inner-sec h2 {
        font-weight: 800;
        text-transform: uppercase;
        font-size: 30px;
        margin: 0;
        padding-left: 5px;
        padding-bottom: 0;
        display: flex;
        align-items: center;
    }

    .offer-inner-sec > div > h2 span {
        text-transform: uppercase;
        font-weight: 600;
        font-size: 18px;
        display: inline-block;
        border-left: 1px solid #eeeeee;
        margin-left: 8px;
        padding-left: 8px;
        line-height: 1;
    }

    .offer-inner-sec > span big {
        font-size: 28px;
    }

.promo-code {
    background: #fff;
    color: #e01883;
    border-radius: 4px;
    font-weight: 800;
    padding: 6px 8px;
    box-shadow: 0 0 8px rgba(224,24,131,0.5);
    margin: 0 10px;
    font-size: 14px;
}

    .promo-code span {
        color: #000;
        display: inline-block;
        margin-left: 10px;
    }

.timer-sec {
    background: #000;
    border: none !important;
    padding: 5px 5px 5px 0;
    margin-left: 2px;
}

    .timer-sec > div {
        display: flex;
        align-items: center;
        border: 1px dashed;
        border-left: 0;
        min-height: 41px;
    }

    .timer-sec h5 {
        margin: 0 20px 0 0;
        font-size: 18px;
        font-weight: 600;
        padding-left: 10px;
        padding-bottom: 0;
    }

.timer {
    display: flex;
    grid-gap: 10px;
    padding: 2px 5px 1px 0;
}

.timer-box {
    text-transform: uppercase;
    text-align: center;
}

    .timer-box p {
        margin: 3px 0 0;
        line-height: normal;
        font-size: 10px;
        font-weight: 600;
        padding: 0;
        color: #fff;
    }

    .timer-box > div span {
        background: #e01883;
        font-weight: 800;
        border-radius: 2px;
        font-size: 14px;
        padding: 0 3px;
        margin: 0 1px;
    }

.offer-inner-sec > div {
    display: flex;
    align-items: center;
    min-height: 41px;
}

.offer-two .offer-inner-sec h2 {
    font-size: 28px;
    line-height: 1;
    position: relative;
    padding: 0 10px 0;
    padding-bottom: 0;
    display: block;
}

    .offer-two .offer-inner-sec h2:after {
        content: "";
        background: #fff;
        width: 1px;
        height: 40px;
        position: absolute;
        right: 0;
        top: 2px;
    }

    .offer-two .offer-inner-sec h2 span {
        display: block;
        font-size: 18px;
        margin: 0;
        padding: 0;
        text-align: center;
        line-height: 1;
        border: none;
    }

.offer-two .timer-sec > div {
    min-height: 48px;
}

.offer-two .timer {
    justify-content: center;
}

.offer-two .timer-sec {
    padding: 5px 10px 5px 0;
    margin-left: 0;
}





.offer-two .offer-inner-sec {
    justify-content: center;
    padding: 0 0 0 20px;
}

.off-tag {
    color: #000;
    background: #f0edec;
    font-weight: 500;
    font-size: 14px;
    padding: 5px 8px;
    border-radius: 4px;
    line-height: normal;
    width: auto;
    display: block;
    text-align: center;
    margin-top: 10px;
}

.courses-teaser-list .off-tag {
    border-radius: 0;
}

li.notification {
    cursor: pointer;
}

.counthold.notification-count {
    position: absolute;
    background: rgb(255 0 0);
    color: #fff;
    padding: 5px;
    border-radius: 50%;
    width: 25px;
    right: 0;
    text-align: center;
    line-height: normal;
    height: 25px;
    top: -10px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timer-sec.dateformat div > h5 {
    margin-right: 0;
}

.timer-sec.dateformat div > .timer {
    padding-left: 0;
}

    .timer-sec.dateformat div > .timer h5 {
        padding-left: 5px;
    }

@media (max-width:1200px) {
    .offer-sec {
        padding-right: 30px;
    }

        .offer-sec.offer-two {
            padding-right: 0;
        }

    .offer-inner-sec h2 {
        font-size: 24px;
    }

    .offer-inner-sec > div > span {
        font-size: 15px;
    }

    .offer-two .offer-inner-sec h2 span {
        margin: 1px 0 0;
    }

    .offer-two .offer-inner-sec h2 span {
        font-size: 15px;
        margin: 1px 0 0;
    }

    .timer-sec > div {
        display: flex;
        text-align: center;
        min-height: 60px;
        vertical-align: middle;
        flex-direction: column;
        justify-content: center;
    }

    .offer-two .timer-sec > div {
        min-height: 60px;
    }

    .timer-sec h5 {
        margin: 0 0 0 0;
        font-size: 16px;
        font-weight: 600;
        padding: 3px 10px 0;
    }

    .timer {
        justify-content: center;
    }

    .offer-inner-sec > div {
        min-height: 60px;
    }

    body.offer {
        padding-top: 150px;
    }
}

@media (max-width:1024px) {
    .offer-inner-sec h2 {
        display: block;
        text-align: center;
    }

    .offer-inner-sec > div > h2 span {
        font-size: 16px;
        display: block;
        border-left: none;
        margin-left: 0;
        padding-left: 0;
        line-height: 1;
        margin-top: 3px;
    }
}

@media (max-width:991px) {
    .offer-sec {
        padding-right: 30px;
    }

    .offer-inner-sec > div {
        flex-wrap: wrap;
        min-height: 71px;
    }

    .timer-sec > div {
        min-height: 71px;
    }

    .offer-two .timer-sec > div {
        min-height: 70px;
        display: flex;
        text-align: center;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .offer-two .offer-inner-sec > div {
        min-height: 70px;
    }

    .offer-two .offer-inner-sec h2:after {
        height: 30px;
    }

    .offer-two .offer-inner-sec h2 {
        font-size: 18px;
    }

    .timer-sec h5 {
        margin: 0;
        font-size: 15px;
        font-weight: 600;
        padding: 0 10px 0;
    }

    body.offer {
        padding-top: 160px;
    }
}

@media (max-width:900px) {
    .footer-box {
        width: 50% !important;
        margin-bottom: 30px;
    }
}

@media (max-width:767px) {
    .promo-code {
        text-align: center;
    }

    .offer-inner-sec > div.timer-sec {
        padding-left: 0;
    }

        .offer-inner-sec > div.timer-sec > div {
            min-height: 84px;
        }

    .offer-inner-sec > div {
        display: block;
        align-items: center;
        min-height: inherit;
        padding: 5px;
    }

    .offer-two .offer-inner-sec > div.timer-sec > div {
        min-height: 80px;
    }

    .offer-two .offer-inner-sec h2:after {
        display: none;
    }

    .offer-two .offer-inner-sec h2 {
        margin-bottom: 5px;
    }

    .offer-two .timer-sec > div {
        min-height: 81px;
    }

    body.offer {
        padding-top: 174px;
    }
}

@media (max-width:576px) {
    .modal.right .modal-dialog {
        width: 85%;
    }

    .offer-sec {
        padding-right: 0;
    }

    .offer-inner-sec {
        display: block;
        text-align: center;
    }

        .offer-inner-sec > div.timer-sec {
            padding: 0 0 0;
            margin-top: 6px;
            margin-left: 0;
        }

    .promo-code {
        margin-top: 5px;
    }

    .offer-inner-sec > div.timer-sec > div {
        min-height: 65px;
        border: none;
    }

    .offer-sec .of-close {
        right: 5px;
        top: 6px;
    }

    .offer-two .offer-inner-sec {
        display: block;
        text-align: center;
        padding: 5px 0 0;
    }

    .timer-sec h5 {
        padding: 0 10px 0;
    }

    .offer-inner-sec h2 {
        padding-top: 5px;
    }

    .offer-inner-sec > div {
        padding: 0;
        border: none;
    }

    .offer-two .timer-sec {
        padding: 0;
        margin: 10px 0 0;
    }

        .offer-two .timer-sec > div {
            min-height: inherit;
            text-align: center;
            border: none;
        }

    .offer-two .offer-inner-sec h2 span {
        margin: 4px 0 0;
    }

    body.offer {
        padding-top: 231px;
    }
}


@media (max-width:760px) {
    .searchelementshold {
        width: 100%;
        float: none;
    }

    .search-box {
        float: none;
    }

        .search-box span {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-right: 0;
        }

        .search-box button {
            top: -1px;
        }
}

@media (max-width:490px ) {
    .footer-box {
        width: 100% !important;
        margin-bottom: 10px;
    }
}
