﻿
/*#region =====    FONTS      ================================*/
@font-face {
    font-family: 'Kufi';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/kufi.ttf) format('truetype'), url(../fonts/kufi.eot) format('truetype');
}

@font-face {
    font-family: 'KufiBold';
    font-style: normal;
    font-weight: bolder;
    font-size: 2rem;
    src: url(../fonts/kufibold.ttf) format('truetype'), url(../fonts/kufibold.eot) format('truetype');
}
/*#endregion*/

/*#region =====    FONT SIZES      ================================*/
.font-09x {
    font-size: 0.9rem !important
}

.font-08x {
    font-size: 0.8rem !important
}

.font-07x {
    font-size: 0.7rem !important
}

.font-1x {
    font-size: 1rem !important
}

.font-11x {
    font-size: 1.1rem !important
}

.font-12x {
    font-size: 1.2rem !important
}

.font-13x {
    font-size: 1.3rem !important
}

.font-14x {
    font-size: 1.4rem !important
}

.font-15x {
    font-size: 1.5rem !important
}

.font-16x {
    font-size: 1.6rem !important
}

.font-17x {
    font-size: 1.7rem !important
}

.font-18x {
    font-size: 1.8rem !important
}

.font-19x {
    font-size: 1.9rem !important
}

.font-2x {
    font-size: 2rem !important
}

.font-22x {
    font-size: 2.2rem !important
}

.font-23x {
    font-size: 2.3rem !important
}

.font-25x {
    font-size: 2.5rem !important
}

.font-27x {
    font-size: 2.7rem !important
}

.font-28x {
    font-size: 2.8rem !important
}

.font-3x {
    font-size: 3rem !important
}

.font-32x {
    font-size: 3.2rem !important
}

.font-34x {
    font-size: 3.4rem !important
}

.font-35x {
    font-size: 3.5rem !important
}

.font-4x {
    font-size: 4rem !important
}

.font-5x {
    font-size: 5rem !important
}

.font-6x {
    font-size: 6rem !important
}

.bolder {
    font-weight: bolder !important;
}
/*#endregion*/

/*#region =====    COLORS      ================================*/
:root {
    --bgcolor1: #fff;
    --bgcolor2: #eaeaea;
    --bgcolor3: #e0e0e0;
    --color1: #93bf40;
    --color2: #0c8e5c;
    --color3: #0c8e5c;
    --color4: #0c8e5c;
    --dark-color3: #363174;
    --bor-color: #bec6c6;
    --light-bor-color: #e6e8ec;
    --hov-color: #e6e6e6;
    --red-color: #b00;
    --hov-red-color: #900;
    --yellow-color: #e4ba35;
    --hov-yellow-color: #e0b030;
    --green-color: #007a79;
    --hov-green-color: #025251;
    --gray-color: #7f8686;
    --white-color: #fff;
    --txt-color: #002a29;
}

.color1 {
    color: var(--color1) !important
}

.bgcolor1 {
    background-color: var(--color1) !important
}

.color2 {
    color: var(--color2) !important
}

.bgcolor2 {
    background-color: var(--color2) !important
}

.color3 {
    color: var(--color3) !important
}

.bgcolor3 {
    background-color: var(--color3) !important
}

.red-color {
    color: var(--red-color) !important
}

.red-bgcolor {
    background-color: var(--red-color) !important
}

.red-border {
    border-color: var(--red-color) !important
}

.yellow-color {
    color: var(--yellow-color) !important
}

.yellow-bgcolor {
    background-color: var(--yellow-color) !important
}

.yellow-border {
    border-color: var(--yellow-color) !important
}

.green-color {
    color: var(--green-color) !important
}

.green-bgcolor {
    background-color: var(--green-color) !important
}

.green-border {
    border-color: var(--green-color) !important
}

.gray-color {
    color: var(--gray-color) !important
}

.gray-bgcolor {
    background-color: var(--gray-color) !important
}

.gray-border {
    border-color: var(--gray-color) !important
}
.gray-color2 {
    color: var(--gray-color2) !important
}

.gray-bgcolor2 {
    background-color: var(--gray-color2) !important
}

.gray-border2 {
    border-color: var(--gray-color2) !important
}


.white-color {
    color: var(--white-color) !important
}

.white-bgcolor {
    background-color: var(--white-color) !important
}

.white-border {
    border-color: var(--white-color) !important
}

.txt-color {
    color: var(--txt-color) !important
}

.txt-bgcolor {
    background-color: var(--txt-color) !important
}

.semi-color1 {
    background-color: rgba(0, 140, 250, 0.40);
}

.semi-color2 {
    background-color: rgba(243, 160, 43, 0.40);
}

.semi-color3 {
    background-color: rgba(0, 115, 233, 0.40);
}

.bold {
    font-weight: 600;
}




/*#endregion*/

/*#region =====    PADDING      ================================*/
.padding-hor-3 {
    padding-right: 3rem;
    padding-left: 3rem;
}

.padding-hor-2 {
    padding-right: 2rem;
    padding-left: 2rem;
}

.padding-hor-1 {
    padding-right: 1rem;
    padding-left: 1rem;
}

.padding-hor-0 {
    padding-right: 0rem;
    padding-left: 0rem;
}

.padding-ver-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.padding-ver-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.padding-ver-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.padding-ver-05 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.padding-ver-03 {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}

.padding-ver-0 {
    padding-top: 0rem;
    padding-bottom: 0rem;
}
/*#endregion*/


/*#region =====    MARGINS      ================================*/
.top-margin-0 {
    margin-top: 0rem
}

.top-margin-1 {
    margin-top: 1rem !important
}

.top-margin-13 {
    margin-top: 1.3rem !important;    
}

.top-margin-15 {
    margin-top: 1.5rem !important
}

.top-margin-2 {
    margin-top: 2rem !important
}

.top-margin--04 {
    margin-top: -0.4rem !important
}

.top-margin--1 {
    margin-top: -1rem !important
}

.top-margin--15 {
    margin-top: -1.5rem
}

.top-margin--2 {
    margin-top: -2rem
}

.bottom-margin-0 {
    margin-bottom: 0rem
}

.bottom-margin-05 {
    margin-bottom: 0.5rem
}

.bottom-margin-1 {
    margin-bottom: 1rem
}

.bottom-margin-15 {
    margin-bottom: 1.5rem
}

.bottom-margin-2 {
    margin-bottom: 2rem
}

.bottom-margin--05 {
    margin-bottom: -0.5rem
}

.bottom-margin--1 {
    margin-bottom: -1rem
}

.bottom-margin--15 {
    margin-bottom: -1.5rem
}

.bottom-margin--2 {
    margin-bottom: -2rem
}
/*#endregion*/

/*#region =====    PADDINGS      ================================*/
.top-padding-0 {
    padding-top: 0rem
}

.top-padding-1 {
    padding-top: 1rem
}

.top-padding-15 {
    padding-top: 1.5rem
}

.top-padding-2 {
    padding-top: 2rem
}

.top-padding-05 {
    padding-top: 0.5rem
}

.top-padding--1 {
    padding-top: 1rem
}

.top-padding--15 {
    padding-top: 1.5rem
}

.top-padding--2 {
    padding-top: 2rem
}

.bottom-padding-0 {
    padding-bottom: 0rem
}

.bottom-padding-05 {
    padding-bottom: 0.5rem
}

.bottom-padding-1 {
    padding-bottom: 1rem
}

.bottom-padding-15 {
    padding-bottom: 1.5rem
}

.bottom-padding-2 {
    padding-bottom: 2rem
}

.bottom-padding-05 {
    padding-bottom: 0.5rem
}

.bottom-padding--1 {
    padding-bottom: 1rem
}

.bottom-padding--15 {
    padding-bottom: 1.5rem
}

.bottom-padding--2 {
    padding-bottom: 2rem
}
/*#endregion*/



/*#region =====    GENERAL SETUP      ================================*/
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body, html {
    background-color: var(--txt-color);
    color: var(--txt-color);
    font-family: Kufi;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

h1, h2, h3, h4 {
    font-family: Kufi;
}

textarea:focus, input:focus {
    outline: none;
}

input::-moz-focus-inner {
    border: 0;
}

input::-ms-clear {
    display: none;
}

input::-ms-reveal {
    display: none;
}

input, select {
    outline: none;
    -moz-appearance: none;
    appearance: none;
}

a, a:visited {
    text-decoration: none;
    color: var(--color3);
}

    a:hover {
        color: var(--dark-color3);
    }

.kufibold {
    font-family: KufiBold !important;
}

.kufi {
    font-family: Kufi !important;
}

.fanni {
    font-family: Fanni !important;
}

.sukarbold {
    font-family: SukarBold !important;
}

.arial {
    font-family: 'KufiBold ';
    font-weight: bolder;
}
/*#endregion*/

/*#region =====    MEDIA QUERIES      ================================*/
@media only screen and (min-width:0px) and (max-width:1100px) {
    body, html {
        font-size: 11px;
    }

    .card-img {
        height: 13rem !important;
    }

    .padding-hor-3 {
        padding-right: 2rem !important;
        padding-left: 2rem !important;
    }

    .padding-hor-2 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .padding-hor-1 {
        padding-right: 0rem !important;
        padding-left: 0rem !important;
    }

    .page-title {
        font-size: 1.4rem !important;
    }

    .nav-item {
        margin-right: 0rem !important;
    }

    .content {
        font-size: 1rem !important;
    }

        .content .btn {
            font-size: 1.5rem !important;
        }

    .input-wrapper input {
        font-size: 1.3rem !important
    }

    .content .btn.secondary {
        font-size: 1.3rem !important;
    }

    .course-info {
        font-size: 1.3rem !important;
    }

    .sub-menu {
        margin-left: -3rem !important;
        margin-top: 1.2rem !important;
    }

    .header .sub-menu {
        margin-top: 1.6rem !important;
    }

    .footer-links-title {
        padding-top: 3rem !important;
    }

        .footer-links-title.padding-top-zero {
            padding-top: 0rem !important;
        }

    .footer-copyright div {
        text-align: center !important;
    }

    .main-slider {
        height: 30rem !important;
    }

    .main-slide-1, .main-slide-2, .main-slide-3, .main-slide-4 {
    }

    .main-slider-shade {
        width: 95% !important;
        padding: 1rem !important;
    }



    .card-wrapper.middle-card {
        display: inline-block !important;
        padding: 0rem 0rem !important;
    }

    .card-wrapper.right-card {
        display: inline-block !important;
        padding: 0rem 0rem 0rem 0rem !important;
    }

    .card-wrapper.left-card {
        display: inline-block !important;
        padding: 0rem 0rem 0rem 0rem !important;
    }

    .register {
        top: 5.5rem !important;
    }

    .mobile-centered {
        text-align: center !important;
    }

    .courses-sub-menu, .courses-sub-menu .btn {
        font-size: 1.3rem !important;
    }

    .circle-icon1 {
        line-height: 2.7rem !important;
        width: 3.3rem !important;
        height: 3.3rem !important;
        font-size: 1.3rem !important;
        margin: .6rem .4rem !important;
    }

    .page-title .headline {
        font-size: 1.5rem !important;
    }

    .page-title .icon, .page-title .icon2 {
        line-height: 3.5rem !important;
        width: 4rem !important;
        height: 4rem !important;
        font-size: 2rem !important;
        margin-top: .5rem;        
    }

    .data-icon {
        width: 16% !important
    }

    .data-label {
        width: 42% !important
    }

    .data-value {
        width: 42% !important
    }

    .noteDiv {
        margin-top: 11rem !important;
    }

    .search-form .input-splitter {
        font-size: 1.15rem !important;
        color: #fff;
    }

    .brochure-div img {
        width: 100% !important;
    }

    .PT_express_checkout_wrap {
        width: 90% !important;
    }

    .course-card .data-label {
        width: 35% !important;
    }

    .course-card .data-value {
        width: 55% !important;
    }

    .settings .input-splitter {
        font-size: 1.45rem !important;
    }

    .stat-item {
        font-size: 1.1rem !important
    }

    .indicator {
        margin-right: 0rem !important;
        margin-left: 0rem !important;
    }

    .register-note {
        font-size: 1.3rem !important
    }
}

@media only screen and (min-width:1101px) and (max-width:1500px) {
    body, html {
        font-size: 13px;
    }

    .header .sub-menu {
        margin-top: 1.6rem !important;
    }
}

@media only screen and (min-width:1501px) and (max-width:1850px) {
    body, html {
        font-size: 15px;
    }
}

@media only screen and (min-width:1851px) and (max-width:9850px) {
    body, html {
        font-size: 17px;
    }

    .header .sub-menu {
        margin-top: 1.8rem !important;
    }
}
/*#endregion*/

/*#region =====    HEADER      ================================*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 40000;
    background-color: var(--bgcolor1);
    color: var(--txt-color);
    border-bottom: 1px solid var(--light-bor-color);
    font-size: 0.9rem;
}

.logo {
    padding: 1.5rem 0rem;
    vertical-align: middle;
    margin:0rem;
    padding:1.1rem 0rem;;
    margin-left: .5rem;
    width:10.3rem;
}

.nav-item, .sub-menu-item {
    font-family: KufiBold;
    font-size: .9rem;
    display: inline-block;
    margin-right: .5rem;
    padding: .7rem 1rem;
    border-radius: 0.3rem;
    border-bottom: 3px solid var(--bgcolor1);
    color: var(--color3);
    transition: all 0.2s;
}

.stat-item {
    display: block;
    font-family: KufiBold;
    font-size: 0.9rem;
    background-color: var(--color3);
    color: #fff;
    padding: 1.2rem 1rem;
    margin: .8rem;
    text-align: center;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}

    .stat-item span {
        display: block;
        margin-bottom: .5rem;
    }

    .stat-item:hover {
        background-color: var(--dark-color3);
    }


.nav-item:hover, .nav-icon:hover {
    border-bottom: 3px solid var(--color1);
    color: var(--color1) !important;
}

.nav-icon {
    display: inline-block;
    margin-right: .1rem;
    margin-top: 0rem;
    padding: .5rem;
    color: var(--color3);
    border-bottom: 3px solid var(--bgcolor1);
    transition: all 0.4s;
}

    .nav-icon:hover {
        border-bottom: 3px solid var(--color1);
    }

.mobile-sub-menu {
    display: none;
    width: 100%;
    background-color: var(--bgcolor1 );
    border-bottom: 1px solid var(--light-bor-color);
}

    .mobile-sub-menu span {
        display: block;
        font-size: 1.3rem;
        font-family: KufiBold;
        text-align: center;
        padding: 1rem;
        color: var(--color3);
    }

        .mobile-sub-menu span:hover {
            background-color: var(--bgcolor2);
        }

.mobile-header-icon {
    margin-top: 1rem;
}

.courses-sub-menu {
    display: none;
    width: 100%;
    background-color: var(--color3 );
    padding: 2rem 3rem;
    font-family: KufiBold;
    font-size: 0.9rem;
    color: #fff;
}

    .courses-sub-menu .btn {
        background-color: var(--dark-color3);
        color: #fff;
    }
    .courses-sub-menu .btn:hover {
        background-color: var(--color1);
        color: var(--color3);
    }

.circle-icon1 {
    display: inline-block;
    line-height: 3rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 100rem;
    border: 3px solid var(--color1);
    background-color: var(--color1);
    color: var(--color3) !important;
    margin: .6rem .5rem;
    text-align: center;
}
.page-title .circle-icon1, .page-title .icon {
    color: var(--color1);
}

.circle-icon3 {
    display: inline-block;
    line-height: 3rem;
    color: #fff;
    margin: .6rem 1rem;
    text-align: center;
}

.line-height-xs {
    display: inline-block;
    line-height: 2rem;
    vertical-align: middle;
    text-align: center;
}

.course-icon {
    display: inline-block;
    font-size: 7rem;
    margin-bottom: 2rem;
    transition: 0.2s ease;
}

    .course-icon:hover {
        color: var(--color1);
    }

.courses-item {
    display: block;
}

    .courses-item .circle-icon1 {
        color: var(--color3);
        border: 3px solid var(--color1);
        background-color: #eaeaea;
    }

.sub-menu-splitter {
    text-align: center;
    margin-bottom: .6rem;
    color: var(--txt-color);
}

.light-border-top {
    border-top: 1px solid var(--light-bor-color);
    padding-top: 1.5rem !important;
}
/*#endregion*/
/*#region =====    NAV HEADER      ================================*/
.nav-header {
    background-color: #fff;
    padding: 0em 3rem;
    color: var(--color3);
}

    .nav-header li {
        padding: 1.5rem;
        padding-top: 1.7rem;
        font-family: KufiBold;
        font-size: 1.1rem;
        color: inherit;
        list-style: none;
    }

        .nav-header li:hover, .dropdown:hover, .nav-active {
            color: #fff !important;
            background-color: #d8a300 !important;
        }

        .nav-header li:hover {
            color: #fff !important;
        }

.social-icon {
    display: inline-block;
    font-size: 2.4rem;
    padding: 0.2rem 1.25rem .5rem 1.25rem !important;
    margin-top: 2rem;
    color: #fff;
    cursor: pointer;
    border-bottom: 3px solid var(--bgcolor3);
    transition: all 0.4s;
}

    .social-icon:hover {
        border-bottom: 3px solid var(--color1);
        color:var(--color3) !important;
    }



.dropdown {
    display: inline-block;
    position: relative;
}

.nav-sub-menu {
    display: none;
    position: absolute;
    background-color: #f5f5f5;
    z-index: 50009;
    text-align: center;
    font-size: 1.1em;
    transform: translateY(40px);
    opacity: 0;
    box-shadow: rgba(0,0,0,.17) 0em 0em 3rem 0px;
    transition: all .3s ease-in-out;
}

.nav-sub-menu-final {
    transform: translateY(0px);
    opacity: 100 !important;
}




.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: rgba(0,0,0,.17) 0em 0em 3rem 0px;
    z-index: 500000;
}

.content-page {
    padding-top: 6.0rem;
    background-color: var(--bgcolor1);
}
/*#endregion*/

/*#region =====   FOOTER      ================================*/
.footer-links {
    width: 100%;
    background-color: var(--bgcolor2);
    padding: 3rem 3rem 2rem 3rem;
    color: var(--color3);
    font-size: 1rem;
    text-align: center !important;
    line-height: 1.8rem !important;
}

    .footer-links .social-icon, .footer-copyright .social-icon {
        display: inline-block;
        color: var(--color3);
        margin-top: 1rem;
        margin-bottom: 0rem;
        padding: 0rem .8rem;
        border: none !important;
    }
    .footer-links .social-icon:hover {        
        color:var(--dark-color3) !important;
        
    }

    .footer-links-title {
        padding-bottom: .8rem;
    }

.footer-copyright {
    width: 100%;
    background-color: var(--color3);
    padding: 4.5rem 3rem;
    color: #fff;
    font-size: 1rem;
}


/*#endregion*/

/*#region =====   MAIN SLIDER      ================================*/
.main-slider {
    width: 100%;
    height: 40rem;
    padding: 0rem;
    background-color: #fff;
}

.main-slide-1 {
    background-size: cover;
    background-position: left;
}

.main-slide-2 {
    background-size: cover;
    background-position: center;
}

.main-slide-3 {
    background-size: cover;
}

.main-slide-4 {
    background-size: cover;
    background-position: right;
}

.main-slide-1, .main-slide-2, .main-slide-3, .main-slide-4 {
    text-align: center;
}

.main-slider-shade {
    display: none;
    position: relative;
    width: 75%;
    padding: 2rem;
    background-color: rgba(0,0,0,0.3);
    color: #fff;
    text-align: center;
}

    .main-slider-shade .btn {
        margin-bottom: 0rem;
        margin-top: 1rem;
    }


        .main-slider-shade .btn:hover {
            background-color: var(--dark-color3) !important;
        }

            .main-slider-shade .btn:hover::before {
                background-color: #fff;
            }

/*#endregion*/
.video {
    width: 100%;
    height: auto;
}
/*#region =====   FEATURES (NUMBERS)   ================================*/
.features, .numbers {
    width: 100%;
    background-color: var(--bgcolor1);
    color: var(--color3);
    text-align: center;
}

.feature div, .number div {
    padding: 2rem 1rem !important;
    background-color:var(--color3);
    color:var(--color1);
    margin: 2rem;
    box-shadow: rgba(0,0,0,.05) 0em 0rem 2rem 0px;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease
}

#feature1 div, #feature2 div, #feature3 div, #feature4 div {
    background-color: var(--color1);
    color: var(--color2);
}

    .feature div:hover, .number div:hover {
        box-shadow: rgba(0,0,0,.09) 0em .7rem 4rem 0px;
        margin-top: 1.2rem;
    }



.feature-icon, .number-icon {
    margin-bottom: 1rem;
    color: inherit
}

.feature-title, .number-big {
    margin-bottom: 1rem;
}

.number-big2 {
    color: var(--txt-color);
}
/*#endregion*/
/*#region =====   NEXT-COURSES    ================================*/
.next-courses {
    width: 100%;
    background-color: #fff !important;
    color: var(--color3);
}

    .next-courses .btn {
        font-size: 1.3rem;
        margin: 0rem !important;
        margin-left: 1rem !important;
        background-color: var(--color3);
    }

        .next-courses .btn::before {
            border-radius: 0rem;
        }

        .next-courses .btn:hover::before {
            background-color: #d8a300;
        }

        .next-courses .btn:hover {
            color: #fff;
        }

.btn:hover::before {
    background-color: #fff;
}

.next-courses .headline {
    margin-bottom: 0rem !important;
}

.next-courses .headline2 {
    margin-bottom: -1rem !important;
    margin-top: 1.5rem !important;
}
/*#endregion*/
/*#region =====   NUMBERS    ================================*/

/*#endregion*/
/*#region =====   PARTNER SLIDER      ================================*/
.partners {
    width: 100%;
    padding: 3rem 5rem;
    background-color: #fff;
    position: relative;
}

.partner-slider {
    width: 100%;
}

    .partner-slider .swiper-wrapper {
    }

.partner-slide {
    display: inline-block;
}

    .partner-slide img {
        width: 9rem;
        height: 9rem;
    }

.partners .swiper-button-next, .partners .swiper-button-prev {
    position: relative;
    z-index: 3;
    background-color: red;
    --swiper-navigation-size: 0px;
    font-size: 4rem !important;
    left: unset !important;
    right: unset !important;
    top: unset !important;
    color: #d8a300;
}

.partners .swiper-button-prev {
    float: right;
    margin-right: -2.5rem;
    margin-top: -5rem;
}

.partners .swiper-button-next {
    float: left;
    margin-left: -2.5rem;
    margin-top: -5rem;
}
/*#endregion*/
.headline {
    display: block;
    font-size: 2rem;
    font-family: KufiBold;
    margin-bottom: 2rem;
}

.headline2 {
    margin-bottom: -1rem !important;
    margin-top: 1.5rem !important;
}

.inline {
    display: inline-block;
}

.shrink-lineheight {
    line-height: 1.4rem !important;
}

.block {
    display: block !important;
}



.ver-middle {
    vertical-align: middle
}



/*#region =====   PAGE-TITLE      ================================*/
.page-title {
    font-family: KufiBold;
    width: 100%;
    color: var(--color3);
    background-color: var(--bgcolor2);
    font-size: 1.3rem;
    text-align: center;
}

    .page-title .headline {
        font-size: 1.8rem;
        margin: 0rem !important;
    }

    .page-title .icon, .page-title .icon2 {
        display: inline-block;
        line-height: 4.5rem;
        width: 5rem;
        height: 5rem;
        border-radius: 100rem;
        border: 3px solid var(--color1);
        background-color: var(--color1);
        color: var(--color3);
        text-align: center
    }

    .page-title .icon2 {
        padding: .8rem .8rem;
        margin-left: .5rem;
    }

    .page-title .icon-highlight-trigger {
        margin-top: .6rem;
    }

    .page-title span a {
        color: #fff;
        text-decoration: underline;
    }

        .page-title span a:hover {
            color: #fff;
            text-decoration: none;
        }
/*#endregion*/
/*#region =====   SEARCH FORM      ================================*/
.search-form, .options-form {
    width: 100%;
    background-color: var(--bgcolor3);
    color: #fff;
    display: none;
}

.input-splitter {
    font-family: KufiBold;
    padding: 1rem;
    display: block;
    text-align: center;
    font-size: 1.3rem;
    color: var(--txt-color);
    width: 100%;
    clear: both;
}

.search-form .input-splitter {
    font-size: 1rem;
    padding-bottom: .4rem;
    color: var(--txt-color);
}

.options-form .input-splitter {
    color: var(--txt-color);
}

.search-form .btn {
    margin-top: .15rem;
    border: 2px solid var(--color3);
    padding: .65rem 2rem;
}

    .search-form .btn::before {
        background-color: #d8a300;
    }

    .search-form .btn:hover::before {
        background-color: #d8a300;
    }

    .search-form .btn:hover {
        color: #fff;
        border-color: var(--dark-color3);
    }

.search-form .input-wrapper, .search-form input {
    background-color: #fff;
}
/*#endregion*/
.content {
    margin: 0rem !important;
    background-color: #fff;
}

.card-wrapper .btn {
    border-radius: 5rem;
    background-color: #eaeaea;
    font-family: KufiBold;
    color: var(--color3);
}

    .card-wrapper .btn::before {
        border-radius: 5rem;
        background-color: var(--color3);
    }

    .card-wrapper .btn:hover::before {
        background-color: var(--color3);
    }

    .card-wrapper .btn:hover {
        color: #fff;
    }



.card-wrapper.middle-card {
    display: inline-block !important;
    padding: 0rem .5rem;
}

.card-wrapper.right-card {
    display: inline-block !important;
    padding: 0rem 0rem 0rem 1rem;
}

    .card-wrapper.right-card .card {
        border-bottom: 5px solid var(--color2);
    }

        .card-wrapper.right-card .card .card-title {
            color: var(--color3);
        }

.card-wrapper.left-card {
    display: inline-block !important;
    padding: 0rem 1rem 0rem 0rem;
    margin-bottom: 1px !important;
}

    .card-wrapper.left-card .card {
        border-bottom: 5px solid var(--color2);
    }

        .card-wrapper.left-card .card .card-title {
            color: var(--color3);
        }

.card {
    background-color: #eaeaea;
    position: relative;
    margin: 2rem 1rem !important;
    box-shadow: rgba(0,0,0,.05) 0em 0rem 2rem 0px;
    border-bottom: 0px solid var(--color2) !important;
    cursor: pointer;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

    .card:hover {
        box-shadow: rgba(0,0,0,.09) 0em .7rem 4rem 0px;
        margin-top: 1.3rem !important;
        margin-bottom: 2.7rem !important;
    }

.card-img {
    overflow: hidden;
    height: 15rem;
    background-position: center;
    background-size: 100%;
    position: relative;
    text-align: center;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

.card-title {
    display: table-cell;
    vertical-align: middle;
    height: 7rem;
    width: 100%;
    text-align: center;
    line-height: 2.5rem;
    padding: 1rem 1rem 1rem 1rem;
    font-size: 1.2rem;
    font-family: KufiBold;
    color: #fff !important;
    background-color: var(--color3);
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

.card-fields, .card-trainers {
    padding: .6rem;
    font-size: 1rem;
    text-align: center;
    color: #fff;
    background-color: var(--color2);
    overflow: hidden;
    white-space: nowrap;
}

.card-trainers {
    color: #fff;
    background-color: var(--color2);
}

.card-fields {
    display: none !important
}

.card-footer {
    background-color: #eaeaea;
    padding: 0rem !important;
    font-size: .9rem;
    color: var(--txt-color);
    text-align: center;
    clear: both;
}

    .card-footer.first-footer {
        margin-top: 2rem;
    }

    .card-footer.last-footer {
        margin-bottom: 1rem;
    }

    .card-footer > span {
        display: inline-block;
        background-color: inherit;
        margin: 0rem !important;
        padding: 0.5rem 0rem;
        width: 33%;
        overflow: hidden;
        white-space: nowrap;
    }

    .card-footer .icon {
        font-size: 2rem;
        display: inline-block;
        color: inherit;
    }

.eye-text {
    margin-top: .2rem;
    margin-bottom: .5rem;
    display: inline-block;
}

#wait-div, #log-wait-div {
    background-color: #fff;
    padding: 1.7rem 3rem 1rem 3rem !important;
    color: var(--color3);
    display: none;
}

.highlighted-bg {
    background-size: 100%;
}

.highlighted-bg2 {
    background-color: #fff;
}

.highlighted-icon {
    background-color: var(--color3) !important;
}

.register {
    padding: 0rem !important;
    font-size: 0rem !important;
    color: var(--color3);
    background-color: #fff;
    top: 6.2rem;
    left: 3.8rem;
    position: relative;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

.enlarge-font {
    top: 6.3rem;
    padding: 1rem 3rem !important;
    font-size: 1.3rem !important;
    left: 3.8rem;
    box-shadow: rgba(0,0,0,.15) .0rem .0rem .7rem 0rem;
}

.tag {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    font-size: .9rem;
    padding: .1rem 1rem;
    background-color: var(--color1) !important;
    color: #fff;
    border-bottom-right-radius: 2rem;
}

.money {
    font-size: 1.7rem;
    font-weight: bolder;
    font-family: KufiBold;
}

.strike {
    text-decoration: line-through;
}

.tag.register-status-tag {
    position: relative;
    display: inline-block;
    font-size: 1.1rem;
    padding: .7rem;
    padding-left: 1rem;
    background-color: #eaeaea !important;
    border-bottom-right-radius: 0rem;
    border-bottom-left-radius: 2rem;
    float: right;
}

.new-shadow {
}

.pointer {
    cursor: pointer;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.header-top-margin {
    margin-top: 1.45rem;
}

.top-mergined {
    margin-top: 1.2rem;
}

.top-mergined2 {
    margin-top: 1.1rem;
}

.top-mergined3 {
    margin-top: -0.2rem;
}

.top-mergined4 {
    margin-top: -0.5rem;
}

.top-mergined5 {
    margin-top: -0.5rem;
}

.top-mergined7 {
    margin-top: -0.8rem;
}

.top-mergined6 {
    margin-top: 1.4rem;
}

.table-margin-top {
    margin-top: -1.3rem;
}

.bottom-mergined2 {
    margin-bottom: 2rem;
}

.bottom-mergined1 {
    margin-bottom: 1rem;
}


/*=========   FORMS   =============================================*/
input, textarea, select, option {
    display: inline-block;
    border: none;
    padding: 0.5rem;
    font-family: Kufi;
    font-size: 1.1rem;
    resize: none;
    color: var(--txt-color);
    background-color: #eaeaea;
}

.input-100 {
    width: 87%;
}

.input-icon {
    display: inline-block;
    border: none;
    padding: .7rem .8rem 0rem 0rem;
    color: var(--color3);
    width: 12%;
    vertical-align: text-bottom;
    text-align: right;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

.textarea-icon {
    margin-top: -3rem !important;
    vertical-align: text-top;
}

.footer-links .input-icon {
    vertical-align: text-bottom;
    padding: .7rem .6rem 0rem 0rem;
}

.input-wrapper > .icx-notes-r {
    position: relative;
    top: -4.7rem !important;
}

.input-wrapper {
    margin: auto;
    width: 95%;
    background-color: #eaeaea;
    border: 2px solid var(--light-bor-color);
    padding: .4rem .4rem;
    margin-bottom: 1rem;
    white-space: nowrap;
    overflow: hidden;
    border-radius: .3rem;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    transition: border-radius 0.0s;
    transition: border-color 0.4s;
}

.content .input-wrapper {
    margin-bottom: 1.5rem !important;
}

.target-input, .target-input input {
    background-color: #fff !important;
    margin-top: .75rem;
    padding: .4rem;
}

    .target-input input {
        margin-top: .1rem;
    }

.disabled-input span, .disabled-input input {
    color: #aaa !important;
    cursor: not-allowed !important;
}

.btn {
    display: inline-block;
    padding: .7rem 1rem;
    border-radius: .3rem;
    background-color: var(--color3);
    border: 2px solid var(--color3);
    margin-right: .5rem;
    font-size: .9rem;
    font-family: KufiBold;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}

    .btn:hover {
        background-color: var(--dark-color3);
        border-color: var(--dark-color3);
        color: #fff;
    }

    .btn.secondary {
        color: var(--color3);
        background-color: initial;
        border: 2px solid #fff;
    }

        .btn.secondary:hover {
            color: var(--color4);
            border: 2px solid var(--color1);
        }

.content .btn {
    font-size: 1.3rem;
}

.btn-red {
    background-color: var(--red-color);
    border-color: var(--red-color);
}

    .btn-red:hover {
        background-color: var(--hov-red-color);
    }

.btn-yellow {
    background-color: var(--yellow-color);
    border-color: var(--yellow-color);
}

    .btn-yellow:hover {
        background-color: var(--hov-yellow-color);
    }

.btn-green {
    background-color: var(--green-color);
    border-color: var(--green-color);
}

    .btn-green:hover {
        background-color: var(--hov-green-color);
    }





.btn-message {
    margin: 1.5rem 0rem .0rem 0rem !important;
    font-size: 1.1rem;
}

.message-buttons-div {
    width: 100%;
    text-align: center;
}

.click-btn {
    background-color: var(--color3) !important;
    color: #fff !important;
}

    .click-btn:hover {
        color: #fff !important;
    }

.form-link {
    display: inline-block;
    padding: 0.5rem;
    color: var(--color3);
    ;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

    .form-link:hover {
        color: #000;
    }

.check {
    border-width: 0px !important;
    transition: all .25s;
}

    .check span {
        transition: all .25s;
    }

.checks {
    display: inline-block;
    padding: .5rem;
    padding-bottom: 0rem;
    font-family: KufiBold;
    margin-left: .5rem;
    cursor: pointer;
}


.highlighted-color {
    color: var(--color3);
}

.highlighted-border {
    border-color: var(--color1);
}

.error, .danger1, .text-danger1 {
    color: var(--red-color) !important
}

.success, .danger4, .text-danger4 {
    color: var(--green-color) !important
}

.alert, .danger2, .text-danger2 {
    color: var(--yellow-color) !important
}

.bg-danger1 {
    background-color: var(--red-color) !important;
    color: #fff;
}

.bg-danger4 {
    background-color: var(--green-color) !important;
    color: #fff;
}

.bg-danger2 {
    background-color: var(--yellow-color) !important;
    color: #fff;
}

.border-error {
    border: 2px solid var(--red-color) !important;
}

.settings .input-splitter {
    text-align: right;
    padding-bottom: 0rem;
    margin-bottom: -.3rem;
    padding-top: 4rem;
}

    .settings .input-splitter:first-child {
        padding-top: .5rem;
    }

.settings .btn.check {
    text-align: right;
    padding-bottom: 0rem;
    margin-bottom: -.3rem;
    padding-top: 1.5rem;
}

.settings p {
    padding: 0REM 1.3REM;
}



.BlackOverlay {
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 50000;
    -moz-opacity: 0.1;
    opacity: .1;
    filter: alpha(opacity=60);
}

/*#region =====    Data Grid      ================================*/
.padding-3 {
    padding: 0rem 3rem;
}

.data-item {
    display: inline-block;
    text-align: center;
    line-height: 2.8rem;
    vertical-align: middle;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--light-bor-color);
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

    .data-item:hover {
        border-bottom-color: var(--bor-color);
    }

.data-label {
    display: inline-block;
    width: 43%;
    padding: .5rem 0rem;
    color: var(--color3);
    font-family: KufiBold;
    vertical-align: middle;
    line-height: 2.8rem;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
}

.data-icon {
    display: inline-block;
    width: 14%;
    color: var(--color3);
    font-size: 2.3rem;
    vertical-align: middle;
    line-height: 2.8rem;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}

.data-value {
    display: inline-block;
    width: 43%;
    padding: .5rem 0rem;
    color: var(--txt-color);
    vertical-align: middle;
    line-height: 2.8rem;
    text-align: right;
    overflow: hidden;
    white-space: nowrap;
}

.data-item .red-color .data-label, .data-item .red-color .data-value {
    color: var(--red-color);
}

.data-item .yellow-color .data-label, .data-item .yellow-color .data-value {
    color: var(--yellow-color);
}

.data-item .green-color .data-label, .data-item .green-color .data-value {
    color: var(--green-color);
}

.noteDiv {
    display: block;
    border-radius: 0.3rem;
    color: #fff;
    background-color: var(--color2);
    margin-bottom: 1rem !important;
    margin-top: 6rem;
}

.noteDiv2 {
    display: block;
    border-radius: 0.3rem;
    color: #fff;
    background-color: var(--color2);
    margin-bottom: 1rem !important;
    margin-top: 1rem;
}

    .noteDiv2 a {
        color: #fff;
        text-decoration: underline;
    }

        .noteDiv2 a:hover {
            text-decoration: none;
        }

.register-note {
    display: inline-block;
    text-align: center;
    margin-left: 1rem;
    margin-right: 1rem;
    font-size: 1.2rem;
}


/*#region =====    SUGGESTIONS      ================================*/
.suggestions {
    display: none;
    position: absolute;
    padding: 0rem 0rem 1rem 0rem !important;
    background-color: #fff;
    color: var(--color3);
    border-bottom-left-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem;
    margin-top: -1.15rem;
    margin-right: .78rem;
    border: 2px solid var(--color3);
    border-top-width: 0px;
    z-index: 500;
    text-align: center;
    font-size: 1.1em;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: padding-box;
    box-shadow: rgba(0,0,0,.17) 0em 2rem 1rem 0px;
}

.content .suggestions {
    margin-top: -1.6rem !important;
}

.suggestions li {
    display: block;
    padding: .5rem;
    cursor: pointer;
    -webkit-transition: 0.0s ease;
    transition: 0.0s ease;
}

    .suggestions li:first-child {
        padding-top: 1rem;
    }

    .suggestions li:last-child {
        padding-bottom: 1rem;
    }

.suggestion-bg {
    background-color: #f2f2f2;
}

.no-bottom-round {
    /*border-radius: 3rem;
    border-bottom-left-radius: 0rem !important;
    border-bottom-right-radius: 0rem !important;*/
}
/*#endregion*/

.Popup {
    display: none;
    max-width: 90%;
    max-height: 80%;
    position: fixed;
    padding: 2.8rem;
    background-color: #fff;
    z-index: 500002;
    text-align: center;
    border-top: 1.5rem solid var(--color3);
    font-size: 1.1em;
    border-radius: .5rem;
    box-shadow: rgba(0,0,0,.3) 0em 0em 4rem 0px;
}

#ImageMessage {
    max-width: 90vw !important;
    max-height: 90vh !important;
    overflow: auto;
    padding: 0rem;
}

.fill {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

    .fill img {
        flex-shrink: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.LogWindow {
    border: none !important;
    max-height: 100%;
    height: 100%;
    border-radius: 0;
    margin: 0rem !important;
    padding: 0rem !important;
    overflow-y: auto;
}

#LogUserInfo {
    background-color: var(--color3);
    color: #fff;
    border: none !important;
    margin: 0rem !important;
    padding: .5rem .5rem .1rem .5rem !important;
    font-size: .9rem;
}

.LogWindow textarea {
    height: 5rem;
}

.LogWindow .textarea-icon {
    margin-top: -2.1rem !important;
}

.LogWindow img {
    width: 82%;
    height: auto;
    border-radius: 100%;
    margin: 0rem !important;
    padding: 0rem !important;
    vertical-align: middle;
}

.logItem {
    font-size: .9rem;
    color: var(--gray-color);
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--light-bor-color);
    transition: 0.4s ease;
}

    .logItem:hover {
        background-color: var(--bgcolor2);
    }

    .logItem .doneByName {
        color: var(--color3);
    }

.logText {
    font-size: 1rem;
    color: var(--txt-color);
}


.ToolTip {
    position: absolute;
    z-index: 5500000;
    display: none;
    padding: 0.3em 0.6em;
    background-color: #f1dd8d;
    border-radius: 0.0rem;
    color: #000;
    font: 1em 'Kufi';
    max-width: 35em;
    text-align: right;
    box-shadow: rgba(0,0,0,.2) 0rem 0rem 1.2rem 0rem;
}

.fa-spin {
    -webkit-animation: fa-spin 1s infinite linear;
    animation: fa-spin 1s infinite linear;
}

.para1 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

@keyframes red-color-anim {
    0%,20% {
        color: var(--red-color);
    }

    50% {
        color: rgba(234, 67, 53, 0.00);
    }

    80%, 100% {
        color: var(--red-color);
    }
}

.red-color-anim {
    animation: red-color-anim .8s infinite ease;
}

@keyframes green-color-anim {
    0%,20% {
        color: var(--green-color);
    }

    50% {
        color: rgba(52, 168, 83, 0.00);
    }

    80%, 100% {
        color: var(--green-color);
    }
}

.green-color-anim {
    animation: green-color-anim .8s infinite ease;
}

@keyframes bell-anim {
    0%,20% {
        color: var(--red-color);
    }

    50% {
        color: var(--color3);
    }

    80%, 100% {
        color: var(--red-color);
    }
}

.bell-anim {
    animation: bell-anim 1s infinite ease;
}

@keyframes red-border-anim {
    0%,20% {
        border-color: var(--red-color);
    }

    50% {
        border-color: rgba(234, 67, 53, 0.00);
    }

    80%, 100% {
        border-color: var(--red-color);
    }
}

.red-border-anim {
    animation: red-border-anim .8s infinite ease;
}

@keyframes yellow-border-anim {
    0%,20% {
        border-color: var(--yellow-color);
    }

    50% {
        border-color: rgba(234, 67, 53, 0.00);
    }

    80%, 100% {
        border-color: var(--yellow-color);
    }
}




@keyframes red-bgcolor-anim {
    0%,20% {
        background-color: var(--red-color);
    }

    50% {
        background-color: rgba(234, 67, 53, 0.00);
    }

    80%, 100% {
        background-color: var(--red-color);
    }
}

.red-bgcolor-anim {
    animation: red-bgcolor-anim .8s infinite ease;
    color: #fff !important;
    padding-left: .5rem;
    padding-right: .5rem;
    border-radius: .5rem;
}





.yellow-border-anim {
    animation: yellow-border-anim .8s infinite ease;
}

@keyframes green-border-anim {
    0%,20% {
        border-color: var(--green-color);
    }

    50% {
        border-color: rgba(234, 67, 53, 0.00);
    }

    80%, 100% {
        border-color: var(--green-color);
    }
}

.green-border-anim {
    animation: green-border-anim .8s infinite ease;
}

.circle-bg {
    border-radius: 50%;
    padding: .8rem;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin: auto;
    text-align: center;
}

    table th {
        color: var(--color3) !important;
        padding: .5rem;
        font-family: KufiBold !important;
        font-weight: normal;
        border-bottom: 3px solid var(--light-bor-color);
    }

.footerRow {
    border: none;
    border-top: 3px solid var(--light-bor-color);
}

table th div {
    overflow: hidden;
    white-space: nowrap;
}

.data-cell {
    color: var(--txt-color);
    padding: .5rem;
    text-align: center;
}

    .data-cell span, .data-cell div {
        display: block;
        overflow: hidden;
        white-space: nowrap;
    }

    .data-cell li {
        list-style: none;
        display: inline-block
    }

    .data-cell .circle-icon1 {
        background-color: #fff;
    }


tr {
    background-color: #fff;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    border-bottom: 1px solid var(--light-bor-color);
}

    tr:hover {
        background-color: var(--bgcolor2);
    }

.footerRow td:first-child {
    color: var(--color3) !important;
    padding: .5rem;
    font-family: KufiBold !important;
    font-weight: normal !important;
    border-top: 3px solid var(--light-bor-color);
}


.no-wrap {
    overflow: hidden;
    white-space: nowrap;
}

.table-icon {
    text-align: center !important;
}
/*============  Scrollable Table ==================*/
.scrollable-div-table {
    display: block;
    overflow-x: hidden;
    width: 100%;
    z-index: 49500;
    cursor: grab;
    user-select: none; /* supported by Chrome and Opera */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    border-collapse: collapse;
}

.sticky-div-table {
    display: block;
    overflow-x: hidden;
    width: 100%;
    z-index: 49900;
    cursor: grab;
    position: fixed;
    top: -500px;
    margin-right: 0rem;
    user-select: none; /* supported by Chrome and Opera */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    border-collapse: collapse;
}

    .scrollable-div-table .div-row, .sticky-div-table .div-row,
    .scrollable-div-table .div-header, .sticky-div-table .div-header,
    .scrollable-div-table .div-footer, .sticky-div-table .div-footer {
        display: table-row;
        white-space: nowrap;
        overflow: hidden;
        background-color: #fff;
        padding: 0px;
        -webkit-transition: 0.4s ease;
        transition: 0.4s ease;
        border-bottom: 1px solid var(--light-bor-color);
    }

        .scrollable-div-table .div-row:hover, .sticky-div-table .div-row:hover,
        .scrollable-div-table .div-header:hover, .sticky-div-table .div-header:hover,
        .scrollable-div-table .div-footer:hover, .sticky-div-table .div-footer:hover {
            background-color: var(--bgcolor2);
        }


    .scrollable-div-table .div-header, .sticky-div-table .div-header {
        font-family: KufiBold !important;
        color: var(--color3) !important;
        border-bottom: 3px solid var(--light-bor-color);
        position: relative;
    }

.div-header-before {
    content: '•••';
    position: absolute;
    top: 0;
    left: -100;
    display: inline-block;
    padding: .2rem .5rem;
    background-color: var(--color3);
    color: #fff;
    border-bottom-left-radius: 50%;
}

.scrollable-div-table .div-footer {
    font-family: KufiBold !important;
    color: var(--color3);
    border-top: 3px solid var(--light-bor-color);
    border-bottom: none;
}

.scrollable-div-table .data-header, .scrollable-div-table .data-cell,
.sticky-div-table .data-header, .sticky-div-table .data-cell {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    margin: auto;
    padding: 0 !important;
    color: var(--txt-color);
    padding: .4rem;
    padding-top: 0.75rem !important;
    text-align: center;
}

.scrollable-div-table .data-header, .sticky-div-table .data-header {
    color: var(--color3);
}


    .scrollable-div-table .data-header span, .scrollable-div-table .data-header div.
    .scrollable-div-table .data-cell span, .scrollable-div-table .data-cell div {
        display: block;
        overflow: hidden;
        white-space: nowrap;
    }

    .scrollable-div-table .data-header li,
    .scrollable-div-table .data-cell li {
        list-style: none;
        display: inline-block
    }

.scrollable-div-table .div-footer .data-header {
    padding-bottom: 1.2rem !important;
}








/* ============ PLAN ========================*/
#plan-data {
    text-align: center;
}

.plan-month {
    font-family: KufiBold;
    display: inline-block !important;
    background-color: var(--color3);
    border-radius: .3rem;
    padding: 1rem 2rem;
    margin-top: 3rem;
    font-size: 1.3rem;
    color: #fff;
}

    .plan-month:first-child {
        margin-top: 0rem;
    }

.plan-month-arrow {
    background-color: transparent;
    width: 0px;
    height: 0px;
    border-color: red;
    border: 10px solid var(--color3);
    border-right-color: transparent;
    border-left-color: transparent;
    border-bottom-color: transparent;
    margin: auto;
    margin-bottom: 0rem;
}

.plan-row {
    position: relative;
    background-color: #fff;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    border-bottom: 1px solid var(--light-bor-color);
    overflow: visible !important;
}

    .plan-row:hover {
        background-color: var(--bgcolor2);
    }

.plan-dd {
    font-size: 1.5rem;
    font-family: kufi;
    font-weight: bold;
    display: inline-block;
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.25rem;
    margin: .6rem .5rem;
    text-align: center;
    border: 3px solid;
    border-radius: 100rem;
}

.plan-dddd {
    display: inline-block;
    margin-top: 1.4rem;
}

.plan-row .tag {
    display: inline-block;
    position: absolute;
    top: 52%;
    left: 0 !important;
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 0rem;
    background-color: #eaeaea !important;
    color: var(--red-color);
}

/* =================    INDICATORS ===============================*/
.indicator {
    display: block;
    padding: .47rem;
    margin: .82rem .3rem;
    font-size: 1.7rem;
    border: none;
}

/*================= NOTES =====================================*/
.note-card {
    padding: 1rem 0rem !important;
    border-bottom: 2px solid #eaeaea;
    background-color: #fff;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

    .note-card:hover {
        background-color: #eaeaea;
    }

.note-icon-col {
    vertical-align: middle;
    padding: 1rem 0rem !important;
}
/*============  SUB-MENU ===================================================*/
.sub-menu, .context-menu {
    display: none;
    max-width: 90%;
    position: absolute;
    background-color: #fff;
    margin-top: 1.2rem;
    margin-left: -5rem;
    z-index: 5002;
    text-align: center;
    font-family: Kufi;
    box-shadow: rgba(0,0,0,.17) 0em 2em 3rem 0px;
}


.sub-menu-item {
    color: var(--color3);
    margin: 0rem;
    display: inline-block;
    width: 25rem;
    text-align: right;
    border-bottom: 3px solid var(--bgcolor1);
}

    .sub-menu-item:hover {
        border-bottom: 3px solid var(--color1);
    }

.context-menu {
    position: absolute;
    padding: 0rem;
}

.context-menu-item {
    display: block;
    font-family: KufiBold;
    padding: .5rem 1rem;
    border-bottom: 1px solid var(--light-bor-color);
    cursor: pointer;
}

.cmi-padding {
    padding: .4rem !important;
}

.selectedRow {
    background-color: var(--light-bor-color) !important;
}
/*#region =====    COURSE DETAILS      ================================*/
.brochure-div {
    margin-left: 0rem;
}

    .brochure-div img {
        width: 97%;
        height: auto;
        transition: all .4s ease;
    }

.course-card {
    background-color: var(--bgcolor2);
}

    .course-card .data-item {
        white-space: nowrap;
        overflow: hidden;
        margin-bottom: 0rem;
        padding: .2rem 0rem;
    }

.full {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0rem !important;
}

.course-card .circle-icon1 {
    margin-left: 0rem !important;
    margin-right: .8rem !important;
    text-align: center;
    color: inherit;
    border-color: var(--color1);
    overflow: visible;
}

.course-card .data-label {
    width: 29%;
    text-align: center;
}

.course-card .data-value {
    width: 61%;
}

.text-div, .course-info {
    font-size: 1rem !important;
}

    .text-div h1, .course-info h1 {
        font-family: KufiBold;
        font-weight: normal;
        font-size: 2rem;
        color: var(--color3);
        margin-top: 2rem;
    }

        .text-div h1:first-child, .course-info h1:first-child {
            margin-top: 0rem;
        }

    .text-div h2, .course-info h2 {
        font-family: KufiBold;
        font-weight: normal;
        font-size: 1.4rem;
        color: var(--color3);
        margin-top: 1.5rem;
    }

    .text-div li, .course-info li {
        margin-right: 2rem;
        padding-top: .5rem;
        font-size: 1.1rem;
    }




/*#endregion*/

.ver-scroll-msg-div {
    max-height: 20rem;
    overflow-y: scroll;
}

    .ver-scroll-msg-div span {
        display: block;
        padding: .5rem;
        transition: all .4s ease;
    }

        .ver-scroll-msg-div span:hover {
            background-color: var(--bgcolor2);
        }



.PT_express_checkout_wrap {
    width: 33% !important;
    height: 380px !important;
    margin: auto !important;
    font-size: 16px !important;
}

@media only screen and (min-width:0px) and (max-width:1100px) {
    .PT_express_checkout_wrap {
        width: 90% !important;
    }
}

#telr {
    width: 100%;
    height: 420px;
    border: none;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}

    #telr input {
        background-color: red;
    }

.still {
    display: none;
}

.attachment-img {
    display: none;
    width: 50%;
    height: auto;
}

.btn:focus {
    border: 2px solid #d8a300 !important;
}
