
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
    --thm-font: "Jost", sans-serif;
    --heading-font: "Libre Baskerville", serif;
    --thm-color: #7e7e7e;
    --thm-color-rgb: 126, 126, 126;
    --thm-base: #71bc54;
    --thm-base-rgb: 252, 173, 48;
    --thm-primary: #4ecd99;
    --thm-primary-rgb: 78, 205, 153;
    --thm-secondary: #ed4b4b;
    --thm-secondary-rgb: 237, 75, 75;
    --thm-special: #5366c2;
    --thm-special-rgb: 83, 102, 194;
    --thm-black: #242323;
    --thm-black-rgb: 36, 35, 35;
    --thm-black2: #1d1c1c;
    --thm-black2-rgb: 29, 28, 28;
    --thm-text-dark: #9e9e9e;
    --thm-text-dark-rgb: 158, 158, 158;
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    /*display:none;*/
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
    z-index: 9999;
}

    .mobile-nav__wrapper .container {
        padding-left: 0;
        padding-right: 0;
    }

    .mobile-nav__wrapper.expanded {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0.8;
    cursor: pointer;
}

.mobile-nav__content {
    width: 100%;
    background-color: var(--thm-black2);
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
}

    .mobile-nav__content .thm-btn {
        padding: 8px 0;
        width: 100%;
        text-align: center;
    }

    .mobile-nav__content .logo-box {
        margin-bottom: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

.mobile-nav__close {
    position: absolute;
    top: 40px;
    right: 15px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

    .mobile-nav__content .main-menu__list ul {
        display: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

        .mobile-nav__content .main-menu__list ul li a {
            padding-left: 1em;
        }

    .mobile-nav__content .main-menu__list li:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav__content .main-menu__list li a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        line-height: 30px;
        color: #fff;
        font-size: 15px;
        font-family: var(--thm-font);
        font-weight: 500;
        height: 46px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transition: 500ms;
        transition: 500ms;
    }

        .mobile-nav__content .main-menu__list li a.expanded {
            color: var(--thm-base);
        }

        .mobile-nav__content .main-menu__list li a button {
            width: 30px;
            height: 30px;
            background-color:#71bc54;
            border: none;
            outline: none;
            color: #fff;
            -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
            -webkit-transition: -webkit-transform 500ms ease;
            transition: -webkit-transform 500ms ease;
            transition: transform 500ms ease;
            transition: transform 500ms ease, -webkit-transform 500ms ease;
        }

            .mobile-nav__content .main-menu__list li a button.expanded {
                -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
                background-color: #fff;
                color: var(--thm-black);
            }

    .mobile-nav__content .main-menu__list li.cart-btn span {
        position: relative;
        top: auto;
        right: auto;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .mobile-nav__content .main-menu__list li.cart-btn i {
        font-size: 16px;
        margin-top:5px;
    }

.mobile-nav__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}

.mobile-nav__language {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .mobile-nav__language img {
        border-radius: 50%;
        margin-right: 10px;
    }

    .mobile-nav__language .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
        width: 70px;
    }

    .mobile-nav__language .bootstrap-select > .dropdown-toggle {
        padding: 0;
        background-color: transparent;
        border-radius: 0;
        border: none;
        outline: none;
        color: #fff;
    }

.mobile-nav__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .mobile-nav__social a {
        font-size: 16px;
        color: #fff;
        -webkit-transition: 500ms;
        transition: 500ms;
    }

        .mobile-nav__social a + a {
            margin-left: 10px;
        }

        .mobile-nav__social a:hover {
            color: var(--thm-primary);
        }

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

    .mobile-nav__contact li {
        color: #fff;
        font-size: 15px;
        font-weight: 500;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .mobile-nav__contact li + li {
            margin-top: 15px;
        }

        .mobile-nav__contact li a {
            color: inherit;
            -webkit-transition: 500ms;
            transition: 500ms;
        }

            .mobile-nav__contact li a:hover {
                color: var(--thm-primary);
            }

        .mobile-nav__contact li > i {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: var(--thm-base);
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            text-align: center;
            font-size: 14px;
            margin-right: 10px;
            color: #fff;
        }


.student-nav-title2 em {
    display: block;
    font-size: 14px;
}

.student-nav-title2 b {
    position: relative;
    display: inline-block;
    width: 41px;
    z-index: 22;
    height: 26px;
    background: url(../images/nav_menu.png) no-repeat center center;
    background-size: 100% auto;
    background-position: 50% 50%;
    background-size: 20px 15px;
}

.close-nav-title {
}

    .close-nav-title b {
        width: 24px;
        height: 24px;
        background: url(../images/nav_close.png) no-repeat center center;
        background-position: 50% 50%;
        background-size: 14px 14px;
    }

@media (max-width:768px ) {
    .student-nav-title2 {
        z-index: 999999;
        position: fixed;
        right: 0px;
        top: 85px;
        width: 43px;
        height: 43px;
        background: url(../images/nav_title.png) no-repeat center center;
        background-size: 100% auto;
        font-size: 16px;
        text-transform: uppercase;
        color: #FFF;
        cursor: pointer;
        text-align: center;
        overflow: hidden;
        background-position: 50% 50%;
        background-size: 43px 43px;
    }

        .student-nav-title2 em {
            display: none;
            font-size: 14px;
        }

        .student-nav-title2 b {
            position: relative;
            display: inline-block;
            width: 41px;
            z-index: 22;
            height: 26px;
            background: url(../images/nav_menu.png) no-repeat center center;
            background-size: 100% auto;
            background-position: 50% 50%;
            background-size: 20px 15px;
        }

    .close-nav-title {
    }

        .close-nav-title b {
            width: 24px;
            height: 24px;
            background: url(../images/nav_close.png) no-repeat center center;
            background-position: 50% 50%;
            background-size: 14px 14px;
        }
}

