:root {
    --color-white: #ffffff;
    --color-light: #fafafa;
    --color-main: #4fa296;
    --color-accent: #a28340;
    --color-purple: #a28340;
}
html{
    font-size: unset;
}

body {
    overflow-x: hidden;
    background-color: var(--color-white);
    font-size :1.4rem;
}
body.add-padding {
    padding-top: 80px;
}

.h1,
h1 {
    font-size:3.6rem
}
.h2,
h2 {
    font-size:3rem
}
.h3,
h3 {
    font-size:2.4rem
}
.h4,
h4 {
    font-size:1.8rem
}
.h5,
h5 {
    font-size:1.4rem;
}
.h6,
h6 {
    font-size:1.2rem
}
.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f1f9f7;
}
.m-0 {
    margin: 0;
}
.col-md-12 {
    width: 100%;
}
.mt-5 {
    margin-top: 50px;
}
.title-setting {
    font-size: 1.8rem;
}
.text-main {
    color: var(--color-main);
}
.bg-white {
    background-color: var(--color-white);
    /* padding-top: 30px;
    padding-bottom: 10px;
    overflow: hidden; */
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.4rem;
}
.btn-primary {
    background-color: #099ceb;
    border-color: #099ceb;
}
.btn-danger {
    background-color: #dd3832;
    border-color: #dd3832;
}
.btn-success {
    background-color: #24be8a;
    border-color: #24be8a;
}
.p-l-r-20 {
    padding-left: 20px;
    padding-right: 20px;
}
.m-l-r-0 {
    margin-left: 0;
    margin-right: 0;
}
.p-top-0 {
    padding-top: 0;
}
.p-top-30 {
    padding-top: 30px;
}
.mt-0 {
    margin-top: 0;
}
.mar-30 {
    margin-top: 30px;
}
.mar-20 {
    margin-top: 20px;
}
.mb-30 {
    margin-bottom: 30px !important;
}
.mb-20 {
    margin-bottom: 20px !important;
}
.p-5-l-r {
    padding: 0 5px !important;
}
.p-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.p-b-1 {
    padding-bottom: 1px !important;
}

.sec-spacing {
    padding: 50px 0;
}
.flex-between {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    align-items: center;
}
.bg-white.overflow-visable {
    overflow: visible;
    padding-top: 0;
}
.mar-15-0 {
    margin: 15px 0;
}
.text-white {
    color: var(--color-white);
}
.padd-end-0 {
    padding-right: 0;
}
.container-link {
    display: block;
}
.course-container .img-container > a.container-link {
    height: 100%;
}
.container-link:hover,
.container-link:focus {
    text-decoration: none;
}
a.arrow::before {
    content: "\f107";
    position: relative;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    font-size: 1.5rem;
    line-height: 10px;
    padding: 6px;
    display: inline-block;
    top: 1px;
}

.dropdown-toggle {
    text-decoration: none;
}

.dropdown-menu {
    color: #000;
    padding: 5px;
    border-radius: 7px;
}
.checkbox-inline,
.radio-inline {
    padding-left: unset;
    padding-inline-start: 20px;
}
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"],
.radio input[type="radio"],
.radio-inline input[type="radio"] {
    margin-left: unset;
    margin-inline-start: -20px;
}
.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
    background-color: transparent;
}
.navbar-nav > li > .dropdown-menu {
    padding: 0;
}
.navbar-nav > li > .dropdown-menu.slideIn {
    margin-top: 20px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 3px #ccc;
}
.navbar-nav > li > .dropdown-menu li {
    padding: 0;
    font-size: 1.3rem;
}
.navbar-nav > li > .dropdown-menu li a {
    border-bottom: 1px solid #ccc;
    padding: 8px 10px;
}
.navbar-nav > li > .dropdown-menu li:last-child a {
    border-bottom: none;
}
.navbar-nav .dropdown ion-icon {
    color: var(--color-main);
}
.navbar-nav .dropdown-menu ion-icon {
    font-size: 2rem;
}
.navbar-nav .dropdown-menu > li > a {
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 5px;
    padding: 10px;
}

/* Hide the browser's default checkbox */
label.container-radio {
    display: block;
    position: relative;
    padding: 7px;
    font-weight: 500;
}

.container-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 6px;
    right: 4px;
    height: 23px;
    width: 23px;
    border-radius: 7px;
    background-color: fff;
    border: 2px solid #eee;
    cursor: pointer;
}

/* On mouse-over, add a grey background color */
.container-radio:hover input ~ .checkmark {
    border: 2px solid #eee;
}

/* When the checkbox is checked, add a blue background */
.container-radio input:checked ~ .checkmark {
    background-color: var(--color-main);
    border-color: var(--color-main);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container-radio input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container-radio .checkmark:after {
    left: 7px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.password-container {
    position: relative;
}
.password-container a {
    position: absolute;
    color: #999;
    right: 0px;
    padding: 12px;
    display: inline-block;
    text-decoration: none;
}
.password-container i.active::before {
    content: "\f070";
}
.box-style {
    text-align: center;
    background-color: var(--color-white);
    border-radius: 15px;

    height: 210px;
    margin: 10px auto;
    padding: 15px 30px;
    box-shadow: 0 0 7px transparent;
    transition: all 0.3s;
}
.normal-box {
    box-shadow: 0 0 4px #ededed;
}
.box-style:hover {
    box-shadow: 0 0 7px #ccc;
    transition: all 0.3s;
}
.box-style img {
    border-radius: 15px;
    overflow: hidden;
    height: 60px;
    margin-bottom: 15px;
    transform: scale(1);
    transition: all 0.3s;
}
.box-style:hover img {
    transform: scale(1.15);
    transition: all 0.3s;
}
.box-style p,
.box-style p a {
    color: #999;
    text-decoration: none;
}
.box-style.normal-box-homepage p {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.box-style.normal-box-homepage {
    padding-top: 30px;
    height: 270px;
    position: relative;
    top: 0;
    transition: all 0.3s;
}
.box-style.normal-box-homepage:hover {
    top: -10px;
    transition: all 0.3s;
}
.box-style.normal-box-homepage.normal-box-without-arrow {
    height: 230px;
}
.box-style.normal-box-homepage .main-img img {
    height: 80px;
}
.box-style.normal-box-homepage .main-img:before {
    content: "";
    background: url(./../../assets/images/hover1.png) no-repeat;
    width: 110px;
    height: 110px;
    background-size: 100px;
    background-position: 5px;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 47%;
    top: 76px;
    opacity: 0;
}
.box-style.normal-box-homepage:hover .main-img:before {
    opacity: 1;
}
.box-style.normal-box-homepage a.links-arrow {
    width: 30px;
    height: 30px;
    margin-top: 10px;
    border-radius: 50%;
    background-color: #f59b22;
    display: inline-block;
    text-align: center;
}
.box-style.normal-box-homepage a.links-arrow img {
    height: 12px;
    margin-bottom: 0;
    margin-top: 6px;
    cursor: pointer;
}
.title-form-style {
    width: 650px;
    margin: auto;
    font-size: 1.6rem;
    color: var(--color-main);
    max-width: 100%;
    font-weight: 600;
    margin-top: 35px;
}
.form-style {
    width: 900px;
    margin: 50px auto;
    max-width: 90%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    padding: 30px;
    background-color: var(--color-white);
}
.form-style.form-style-account.modal-form {
    width: 100%;
    max-width: 100%;
    box-shadow: none;
}
.title-form-style + .form-style {
    margin: 20px auto;
}
.form-style.form-style-account {
    width: 650px;
    max-width: 100%;
    margin: 80px auto 80px auto;
}
.form-style.form-style-account.modal-form {
    width: 100%;
    margin: 0;
    padding: 0 20px;
}
.form-style.form-style-account.modal-form .form-group {
    margin-bottom: 15px;
}
/* .form-style.form-style-account .btn-theme {
    min-width: 120px;
    padding: 3px 20px !important;
} */
.form-style .form-style-container {
    width: calc(100% - 160px);
    margin: 20px auto;
}
.form-style.form-style-account.modal-form .form-style-container {
    width: 100%;
}
.form-style .form-style-container h4 {
    position: relative;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-style .form-style-container p {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
/* .form-style .form-style-container h4 span {
    font-size: 1.4rem;
    right: -70px;
    position: absolute;
    font-weight: 400;
    top: -16px;
} */
.form-style .form-style-container h4 span a {
    color: var(--color-main);
}
.form-style .form-group {
    margin-bottom: 25px;
}
.form-style .form-check .form-check-input {
    width: 20px;
    height: 16px;
    position: relative;
    top: 3px;
}
.form-style .form-group label {
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}
.form-style.normal-style .form-group {
    margin-bottom: 10px;
}
.form-style.normal-style .form-group label {
    font-weight: 400;
    font-size: 1.3rem;
    margin-bottom: 5px;
}
.form-style .form-group label.required {
    display: inline-block;
}
.form-style
    .select2.select2-container
    .select2-selection
    .select2-selection__rendered {
    line-height: 45px;
}
.form-style .select2.select2-container .select2-selection {
    line-height: 45px;
    height: 45px;
    margin-bottom: 0px;
    border-radius: 7px;
}
.form-style
    .select2.select2-container
    .select2-selection
    .select2-selection__arrow {
    height: 45px;
}
.form-style .select2-container--open .select2-dropdown {
    top: 5px;
}
.form-style .form-group label.required:after {
    content: "*";
    position: relative;
    color: #dd3832;
    font-size: 1.8rem;
    margin: 0 2px;
}
.form-style .form-group label > a {
    font-size: 1.3rem;
    font-weight: 500;
    display: inline-block;
    padding: 5px;
    cursor: pointer;
}
.form-style .form-control {
    font-size: 1.3rem;
    height: 45px;
    border-radius: 7px;
}
.form-control.error {
    border-color: #e80000;
}
.form-style textarea.form-control {
    height: auto;
}
.large-inline-check {
    margin-bottom: 20px;
    padding: 0 5px;
}
.form-style .form-check-inline,
.large-inline-check .form-check-inline {
    display: inline-block;
    margin-bottom: 10px;
    min-width: 70px;
    color: #7d7d7d;
}
.large-inline-check .form-check-inline {
    min-width: 90px;
    color: #9f9f9f;
}
.large-inline-check .form-check-inline input {
    width: 22px;
    height: 18px;
    position: relative;
    top: 4px;
}
.form-style .form-control:focus .form-style .form-check input[type="checkbox"] {
    width: 23px;
    height: 19px;
    position: relative;
    top: 5px;
}
.form-check {
    display: flex;
    align-items: baseline;
}
.form-style .form-check label {
    font-weight: 400;
    padding: 0 5px;
}
.select2-results__options {
}
.select2-container--open .select2-dropdown {
    left: 0;
    top: -5px;
    border: none !important;
    border-radius: 5px !important;
    overflow: hidden;
}
.select2-container .select2-dropdown .select2-search {
    padding: 0;
    /* display: none; */
}
.select2-container--open .select2-dropdown {
    box-shadow: 0 0 7px #ccc;
}
.select2.select2-container .select2-selection .select2-selection__arrow {
    border: none;
    background-color: transparent;
}
.select2-container .select2-dropdown .select2-results ul {
    border: none;
    border-radius: 5px;
}
.select2-container
    .select2-dropdown
    .select2-results
    ul
    .select2-results__option {
    position: relative;
    font-size: 1.3rem;
    padding: 8px;
    padding-left: 33px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 1.3rem;
}
.select2-container
    .select2-dropdown
    .select2-results
    ul
    .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: var(--color-white);
    color: #000;
}
.select2-container
    .select2-dropdown
    .select2-results
    ul
    .select2-results__option:before {
    content: "";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    color: var(--color-main);
    border: 1px solid #ccc;
    width: 22px;
    height: 22px;
    position: absolute;
    border-radius: 5px;
    left: 5px;
    top: 5px;
}

.select2.select2-container.select2-container--open
    .select2-selection.select2-selection--single {
    background-color: var(--color-white);
}
.select2-container
    .select2-dropdown
    .select2-results
    ul
    .select2-results__option--highlighted[aria-selected]:before,
.select2-container--default
    .select2-results__option[aria-selected="true"]:before {
    border: none;
    content: "\f14a";
    font-size: 2.3rem;
    line-height: 20px;
    top: 8px;
}
.cart-dropdown .dropdown-menu {
    width: 325px;
    top: 50px;
}
.dropdown-cart {
    max-height: 300px;
    overflow: auto;
}
.rowItemcart {
    position: relative;
    padding: 10px 10px 5px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 5px;
}

.rowItemcart:last-child {
    border-bottom: none;
}

.rowItemcart .RemoveItem {
    position: absolute;
    right: 10px;
    top: 16px;
    width: 10px;
    cursor: pointer;
}

.rowItemcart .itemImg {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-color: #ededed;
    border-radius: 5px;
    object-fit: cover;
}

.rowItemcart .Details {
    width: calc(100% - 85px);
    display: inline-block;
    vertical-align: top;
    padding: 0 10px;
}

.rowItemcart .Details h5 {
    font-size: 1.4rem;
    margin-top: 2px;
}
.rowItemcart .Details h6 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #999;
}
.rowItemcart .Details p {
}

.rowItemcart .Details p span {
    margin: 0 5px;
    display: inline-block;
}
.rowItemcart .Details p span.new-price {
    font-size: 1.6rem;
    font-weight: 600;
}
.rowItemcart .Details p span.old-price {
    text-decoration: line-through;
    font-size: 1.3rem;
    margin: 0 6px;
    color: #999;
    display: inline-block;
    font-weight: 400;
}
.rowSubtotal {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
    margin: 10px 0 5px;
    align-items: center;
}
.rowSubtotal p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
}
.rowSubtotal span {
    font-size: 1.5rem;
    font-weight: 600;
}
.btns-cart {
    margin: 0 0 10px;
}
.btns-cart .btn-theme.btn-light {
    width: 40%;
    height: 42px;
    line-height: 35px;
}
.btns-cart .btn-theme.btn-theme2 {
    width: 52%;
    height: 42px;
    line-height: 35px;
}
.header-cart {
    margin: 20px 10px;
    font-size: 1.5rem;
}
.question-container {
    padding-top: 10px;
    margin-bottom: 20px;
}
.question-title input {
    width: calc(100% - 50px);
    border: none;
    line-height: 35px;
    padding: 0 7px;
}
.question-title input:focus {
    box-shadow: 0 0 4px #dfdfdf;
    border: none;
    outline: none;
}
.question-title input::-webkit-input-placeholder {
    color: #aaa;
}
.question-title {
    position: relative;
}
.question-title input[disabled] {
    background-color: var(--color-white);
    cursor: no-drop;
}
.question-title a {
    margin: 0 5px;
    display: inline-block;
    cursor: pointer;
}
.question-title a img {
    width: 22px;
}
.question-row.question-header {
    position: relative;
    top: -20px;
}
.question-row.question-header .question-title {
    border: 1px solid #ededed;
    margin: 5px 0;
    padding: 6px 10px;
    border-radius: 5px;
    box-shadow: 0 0 2px #eee;
    position: relative;
}
.question-row.form-check {
    border: 1px solid #ededed;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 2px #eee;
    position: relative;
}
.question-row.form-check .form-check-input {
    width: 27px;
    height: 19px;
    position: relative;
    top: 5px;
}
.question-row.form-check .form-check-label {
    width: calc(100% - 64px);
    border: none;
    line-height: 35px;
    padding: 0 7px;
}
.question-row.form-check .form-check-label:focus {
    box-shadow: 0 0 4px #dfdfdf;
    border: none;
    outline: none;
}
.question-row.form-check .form-check-label::-webkit-input-placeholder {
    color: #aaa;
}
.question-row.form-check .form-check-label[disabled] {
    background-color: var(--color-white);
    cursor: no-drop;
}
.question-row.form-check a,
.question-title a {
    margin: 0 5px;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    left: 14px;
    top: 15px;
}
.question-row.form-check a img {
    width: 22px;
}
.btn-question {
    display: flex;
    justify-content: space-between;
}
.accordion-lecture.single-video-accordion {
    padding-top: 40px;
    margin-top: 0;
}
.accordion-lecture.single-video-accordion .panel-default > .panel-heading a {
    padding: 10px 20px;
}
.accordion-lecture.single-video-accordion .panel-default > .panel-heading {
    background-color: var(--color-white);
}
.accordion-lecture.single-video-accordion
    .panel-default
    > .panel-heading
    a
    span.hint-course {
    font-size: 1.2rem;
    color: #999;
    font-weight: 500;
}
@media (min-width: 768px) {
    .justify-content-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .flex-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .container-large {
        width: 95%;
        margin: auto;
    }
    .cart-dropdown .dropdown-menu {
        left: unset;
        right: -45px;
    }
    .plr-40 {
        padding: 5px 40px;
    }
    .animate {
        animation-duration: 0.3s;
        -webkit-animation-duration: 0.3s;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both;
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }

    100% {
        transform: translateY(0rem);
        opacity: 1;
    }

    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
}

@-webkit-keyframes slideIn {
    0% {
        -webkit-transform: transform;
        -webkit-opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        -webkit-opacity: 1;
    }

    0% {
        -webkit-transform: translateY(1rem);
        -webkit-opacity: 0;
    }
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

.btn-theme {
    background-color: var(--color-purple);
    border: 1px solid var(--color-purple) !important;
    min-width: 100px;
    color: var(--color-white) !important;
    padding: 3px 10px !important;
    border-radius: 7px;
    margin: 7px 5px 0 !important;
    line-height: 30px;
    min-width: 90px;
    font-weight: 600;
}
.btn-theme.width-auto {
    padding: 3px 15px !important;
    min-width: auto;
}
.btn-theme.btn-yellow {
    background-color: #f59b22;
    border: 1px solid #f59b22 !important;
}

.btn-theme.btn-theme2 {
    background-color: var(--color-purple);
    border: 1px solid var(--color-purple) !important;
}

.btn-theme.btn-light {
    color: var(--color-main) !important;
    background-color: #eaf4fe;
    border: 1px solid #eaf4fe !important;
}

.btn-theme.theme-border {
    border: 1px solid #d9dee3 !important;
}
.btn-theme.gray-border {
    border: 1px solid #ccc !important;
}
.btn-theme.gray-border.tabby-btn.fixed-btn-mobile {
    border: 2px solid #7bc4a0 !important;
    position: fixed;
    z-index: 99;
    bottom: 62px;
    width: 250px;
    max-width: 250px;
    left: 5px;
}
.btn-theme.btn-more {
    min-width: 130px;
    position: absolute;
    left: 10px;
    top: -7px;
    margin: 0 !important;
}

.btn-theme.btn-white,
.btn-theme:hover {
    color: var(--color-purple) !important;
    background-color: var(--color-white);
    transition: all 0.3s;
}
.dropdown.open .btn-theme:hover,
.dropdown.open .btn-theme:focus {
    color: var(--color-white) !important;
    background-color: var(--color-purple);
}
.btn-theme.btn-tranparent {
    border: 1px solid transparent !important;
    color: var(--color-purple) !important;
    background-color: var(--color-white);
}

.btn-theme.btn-white:hover,
.btn-theme.btn-yellow:hover {
    background-color: var(--color-purple) !important;
    color: var(--color-white) !important;
    transition: all 0.3s;
    border: 1px solid var(--color-purple) !important;
}

.btn-theme i {
    margin-left: 10px;
}

.container-custom {
    border-radius: 7px;
}

.normal-clicks .item {
    padding: 0 10px;
}

/* .home-slider .owl-carousel .owl-item {
    padding-right: 15px;
} */
.owl-carousel {
    position: relative;
    display: flex;
    padding-bottom: 25px;
    margin-bottom: 10px;
    overflow: hidden;
}
.owl-item {
    opacity: 0;
}
.owl-item.active {
    opacity: 1;
}
.home-slider .owl-carousel .owl-item img {
    /* width: calc(100% - 30px);
    margin: auto; */
    height: 520px;
}

.owl-nav {
    position: absolute;
    width: 100%;
    padding: 0 30px;
    top: 45%;
    z-index: 9;
}

.owl-theme .owl-controls .owl-buttons div {
    font-size: 0;
    padding: 0;
    line-height: 30px;
    text-align: center;
}

.owl-prev:after,
.owl-next:after {
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    font-size: 1.2rem;
}

.owl-prev:after {
    content: "\f060";
}

.owl-next:after {
    content: "\f061";
}

.owl-next,
.owl-prev {
    border-radius: 50% !important;
    width: 30px;
    height: 30px;
    line-height: 22px;
    float: left;
    position: absolute;
    top: 45%;
    left: 30px;
    color: var(--color-white);
    border: none;
}

.owl-next {
    background-color: var(--color-main) !important;
    float: right;
    position: absolute;
    top: 45%;
    right: 40px;
    left: unset;
}
.owl-next span,
.owl-prev span {
    display: none;
}
@media (min-width: 991px) {
    .btn-theme.gray-border.tabby-btn.fixed-btn-mobile {
        display: none;
    }
    .normal-clicks .owl-buttons {
        padding: 0 0px;
    }

    .normal-clicks .owl-buttons [class*="owl-"],
    .normal-clicks .owl-prev,
    .normal-clicks .owl-next {
        margin: 0 -70px !important;
        border-radius: 9px !important;
    }
}

.owl-dots {
    position: absolute;
    height: 20px;
    width: 100%;
    z-index: 9;
    bottom: 0;
    transform: translate(-50%, -50%);
    left: 50%;
    text-align: center;
    padding: 10px;
}

.normal-clicks .owl-dots {
    /* top: 15px; */
}
.owl-dot span {
}
.owl-theme .owl-page.active span {
    outline: 4px solid var(--color-main);
    padding: 1px;
    background-color: var(--color-white);
}
.owl-dots button.owl-dot {
    border: none;
    width: 10px;
    height: 10px;
    padding: 0;
    background-color: #001d6c29;
    border: 2px solid transparent;
    border-radius: 50%;
    margin: 0 6px;
    outline: 4px solid transparent;
}
.owl-dots .owl-dot.active {
    /* outline: 4px solid var(--color-main); */
    background-color: var(--color-white);
    border-color: var(--color-main);
}
.mt-3 {
    margin-top: 20px;
}

.title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.3rem;
    position: relative;
    font-weight: 700;
    color: var(--color-accent);
}
.title-start {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}
.title.title-blue {
    color: var(--color-white);
}

.title:after,
.title:before {
    content: "";
    width: 50px;
    height: 2px;
    color: var(--color-main);
    position: absolute;
    background-color: var(--color-main);
    opacity: 0.15;
}
.title.title-blue:after,
.title.title-blue:before {
    color: var(--color-white);
    background-color: var(--color-white);
}

.title:before {
    margin: 15px -65px;
}

.title:after {
    margin: 15px;
}

.subtitle {
    color: var(--color-main);
    margin: 0;
    line-height: 27px;
    font-size: 1.3rem;
    padding-right: 38px;
    font-weight: 500;
}

.subtitle:before {
    color: var(--color-main);
    background-color: var(--color-main);
    content: "";
    width: 23px;
    height: 2px;
    position: absolute;
    margin: 15px -37px;
}

.title-description {
    color: #8a8a8a;
    text-align: center;
    max-width: 600px;
    margin: 10px auto;
    font-size: 1.6rem;
    line-height: 24px;
}

.course-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #d8d8d8;
    width: calc(100% - 4px);
    margin: auto;
    box-shadow: 0 0 7px transparent;
    transition: all 0.3s;
    margin-bottom: 20px;
    zoom: 0.8;
}

.course-container .img-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-container .img-container img.img {
    height: auto;
    width: 100%;
    min-width: 100%;
    height: 100%;
    transform: scale(1);
    transition: all 0.3s;
    object-fit: cover;
}

.course-container .img-container .details-header {
    position: absolute;
    display: flex;
    width: 100%;
    top: 0;
    padding: 5px 10px;
    justify-content: flex-start;
    align-items: center;
    height: 41px;
}

.course-container .img-container .details-header .hint {
    zoom: 0.7;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.course-container .img-container .details-header .hint .btn-tabby {
}
.course-container .img-container .details-header .hint .btn-tabby svg {
    width: 104px;
    position: relative;
    top: 3px;
}
.course-container .img-container .details-header .hint .btn-danger {
    font-size: 2.1rem;
    font-weight: 600;
}
.course-container .img-container .details-header .wishlist {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background-color: var(--color-white);
    display: inline-block;
    margin: 5px;
    position: absolute;
}

.course-container .img-container .details-header .wishlist::before {
    content: "";
    background: url(../../assets/images/wishlist.png) no-repeat;
    width: 26px;
    position: absolute;
    height: 29px;
    background-size: 15px 15px;
    background-position: center;
}

.course-container .img-container .details-header .wishlist.active::before {
    content: "";
    background: url(../../assets/images/wishlist-active.png) no-repeat;
    background-size: 15px 15px;
    background-position: center;
}
.course-container .img-container .details-header .video {
    width: 30px;
    height: 27px;
    display: inline-block;
    margin: 5px;
}
.course-container .img-container .details-header .video::before {
    content: "";
    background: url(../../assets/images/video.png) no-repeat;
    width: 32px;
    position: absolute;
    height: 29px;
    background-size: 39px 29px;
    background-position: center;
}
.course-container .details-body {
    padding: 20px;
}

.course-container .details-body h5 {
    font-size: 1.6rem;
    margin: 5px 0;
    font-weight: 600;
    line-height: 2;
}

.course-container .details-body ul {
    padding: 0;
    height: 95px;
    margin: 0;
}
.lecture-container .course-container .details-body ul {
    height: auto;
}
.course-container .details-body ul li {
    display: flex;
    list-style: none;
    margin: 15px 0;
}
.course-container .details-body ul.black-text li {
    color: #333;
}
.course-container .details-body ul li img {
    width: auto;
    max-height: 21px;
    margin: 0 6px;
    height: auto;
}

.course-container .details-footer {
    position: relative;
    overflow: hidden;
}
.course-container .details-footer.footer-lecutre {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border-top: 1px solid #ededed;
}
.course-container .details-footer.footer-lecutre .btn {
    min-width: 90px;
    text-transform: uppercase;
}
.course-container .details-footer .price-list {
    width: calc(100% - 30px);
    margin: auto;
    /* border-top: 1px solid #eee; */
    padding: 0 0 10px;
}

.course-container .details-footer .price-list .btn {
    background-color: var(--color-main);
    margin-top: 0;
}

.course-container .details-footer .price-list .old-price {
    text-decoration: line-through;
    color: #999;
    display: inline-block;
    line-height: 20px;
    position: relative;
    top: 5px;
    margin: 0 5px;
}

.course-container .details-footer .add-to-cart {
    width: 100%;
    height: 55px;
    background-color: var(--color-main);
    color: var(--color-white);
    font-size: 1.7rem;
    text-align: center;
    box-shadow: none;
    border: none;
    border-radius: 0px 0px 15px 15px;
    position: absolute;
    bottom: -100%;
    width: 100%;
    left: 0;
    transition: all 0.5s;
}

.course-container .details-footer .add-to-cart img {
    width: 26px;
    display: inline-block;
    margin: 0 5px;
}

.course-container:hover {
    box-shadow: 0 0 7px #cdcdcd;
    transition: all 0.3s;
}

.course-container:hover .img-container img.img {
    transform: scale(1.1);
    transition: all 0.3s;
}

.course-container:hover .details-footer .add-to-cart {
    transition: all 0.5s;
    bottom: 0;
}

/* ================== header =========== */
.top-header {
    font-size: 1.2rem;
    /*background: linear-gradient(to left, #006870, #3580ab, #5db5b3);*/
    background-color: #4fa296;

    padding: 10px 0;
}

.navbar {
    border: none;
    padding: 20px 0;
    border-radius: 0;
    box-shadow: 0 4px 6px -3px #bfbfbf;
    background-color: var(--color-white);
}
.navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.navbar .navbar-brand {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 10;
    transition: all 0.25s linear;
}

@media only screen and (min-width: 768px) {
    .navbar .navbar-brand {
        top: 50%;
        transform: translate(-50%, -40%);
    }
}
@media only screen and (min-width: 992px) {
    .navbar .navbar-brand {
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

.navbar .navbar-brand img {
    width: 188px;
    transform: scale(1.25);
    height: auto;
    transition: all 0.25s linear;
}

.navbar.fixed .navbar-brand {
    top: 0;
    transform: translate(-50%, 0);
}

.navbar.fixed .navbar-brand img {
    transform: scale(1);
}

.navbar .navbar-nav > li > a {
    color: var(--color-main);
    font-weight: 600;
    padding: 0;
    margin: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 1.2rem;
}
.navbar .navbar-nav > li > a i,
.navbar .navbar-nav > li > a ion-icon {
    font-size: 1.6rem;
    font-weight: 700;
}

.navbar .navbar-nav > li > a:hover {
    background-color: transparent;
    font-weight: 600;
    color: var(--color-accent);
    transition: all 0.2s;
}

.navbar .navbar-nav > li > a.active {
    background-color: transparent;
    font-weight: 700;
    color: var(--color-main);
}

/* .navbar .search-card {
    margin-top: 13px;
    line-height: 28px;
} */

.navbar .search-card ion-icon {
    font-size: 26px;
    color: var(--color-main);
}

.navbar .search-card li {
    margin: 0px 5px;
    list-style: none;
    display: inline-block;
    position: relative;
}

.navbar .search-card li a.dropdown-toggle,
.navbar .search-card li > a {
    cursor: pointer;
    position: relative;
}
/* .navbar .search-card li > a,
.navbar .search-card li a.dropdown-toggle > img {
    height: 22px;
} */

.navbar li .count {
    position: absolute;
    border-radius: 50%;
    background-color: rgb(233, 69, 96);
    color: var(--color-white);
    display: inline-block;
    top: -7px;
    right: -10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 10px;
}

/* ====================== end header =============== */
/* ======================  footer =============== */

.footer {
    position: relative;
    background-color: var(--color-main);
}

.footer:before {
    position: relative;
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    background: var(--color-white) url("../images/footer-p.png") top center
        repeat-x;
    z-index: 0;
    margin-bottom: 50px;
}

.footer .container {
    position: relative;
    z-index: 1;
    color: var(--color-white);
}

.footer .container .logo-information img {
    width: 200px;
    margin-bottom: 20px;
    /* background-color: var(--color-white); */
    /* border-radius: 25px; */
    /* padding: 1px 16px 5px; */
}

.footer .container .logo-information p {
    line-height: 30px;
    font-size: 1.3rem;
}
.footer .container .logo-information p a {
    color: var(--color-white);
    text-decoration: none;
}
.footer .container .links-footer ul {
    padding: 0;
}

.footer .container .links-footer h5 {
    font-weight: 700;
    font-size: 1.5rem;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

.footer .container .links-footer ul li {
    list-style: none;
    transition: all 0.3s;
}

.footer .container .links-footer ul li a {
    cursor: pointer;
    color: var(--color-white);
    display: inline-block;
    line-height: 30px;
    text-decoration: none;
    font-size: 1.3rem;
}

.footer .container .links-footer ul li:hover {
    transform: translateX(-10px);
}

.footer .container .links-footer ul li:hover a {
    color: var(--color-accent);
}

.footer .container .links-footer ul li:hover::before {
    border-color: var(--color-accent);
}

.footer .container .links-footer ul li::before {
    transition: all 0.3s;
    content: "";
    font-weight: bold;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 10px;
    border-radius: 50%;
    border: 2px solid var(--color-white);
}

.footer .payment-social {
    position: relative;
}

.footer .payment-social:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.15);
    /* opacity: 0.3; */
    z-index: 0;
}

/* .footer .payment-social .payment-social-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    align-items: center;
    position: relative;
    z-index: 1;
} */

/* .footer .payment-social ul li,
.footer .payment-social ul li {
    list-style: none;
    display: inline-block;
    margin: 0 5px;
}

.footer .payment-social ul li a,
.footer .payment-social ul li a {
    display: block;
    cursor: pointer;
} */

/* .footer .payment-social ul li a img,
.footer .payment-social ul li a img {
    height: 35px;
    transform: scale(1);
    transition: all 0.3s;
    opacity: 1;
}

.footer .payment-social ul li a img:hover,
.footer .payment-social ul li a img:hover {
    opacity: 0.9;
    transform: scale(1.1);
    transition: all 0.3s;
} */

.footer .copyright {
    padding: 20px;
    font-size: 1.2rem;
    color: var(--color-white);
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ====================== end footer =============== */

/* ====================== Home Slider =============== */
.home-slider {
    padding-top: 0;
}
.cutom-home-slider {
    /* width: 97%; */
    /* max-width: 1700px; */
    min-height: 480px;
}
.home-slider .owl-carousel .owl-item img {
    /* width: calc(100% - 15px); */
    /* margin-left: 15px; */
    width: 100%;
    height: 520px;
    object-fit: cover;
    /* border-radius: 10px; */
}

/* ====================== End Home Slider =============== */
/* ====================== About Sec =============== */

.about-us {
    margin: 50px 0;
    font-family: "Droid Arabic Kufi Bold" !important;
}

.about-us h2 {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    line-height: 2;
    color: var(--color-accent);
}

.about-us h3 {
    font-weight: 600;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: 0px;
    max-width: 500px;
}

.about-us .pattern {
    max-width: 500px;
    width: 100%;
    margin: 0 auto 30px;
}

.about-us p {
    font-size: 1.4rem;;
    line-height: 29px;
    margin: 10px 0 25px;
    color: #8a8a8a;
}

.about-us ul {
    padding: 0 30px;
}

.about-us ul li {
    list-style: none;
    position: relative;
    margin-bottom: 10px;
    color: #777;
    font-size: 1.4rem;;
}

.about-us ul li:before {
    /* content: "\f058"; */
    /* font-family: "Font Awesome 5 Free"; */
    /* font-size: 10px; */
    content: "";
    position: absolute;
    top: 8px;
    right: -25px;
    font-weight: 900;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: 2px solid var(--color-main);
    color: var(--color-main);
}
.about-us ul.list-aboutus li h4 {
    color: #000;
}
.about-us ul.list-aboutus li:before {
    content: "\f111";
    position: absolute;
    font-size: 1.2rem;
    top: 4px;
    right: -30px;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    color: #72b4ff;
}

/* .about-us .imgSec { */
/* padding-right: 60px; */
/* } */

/* .about-us .imgSec:after { */
/* content: ""; */
/* background: url(../../assets/images/abouthint.png) no-repeat; */
/* position: absolute; */
/* background-size: 90px 90px; */
/* width: 90px; */
/* height: 90px; */
/* z-index: 9; */
/* left: -25px; */
/* top: -40px; */
/* } */

.about-us .imgSec img {
    width: 100%;
    height: 500px;
    border-radius: 15px;

    overflow: hidden;
    object-fit: cover;
}

.about-us .btn-theme.btn {
    min-width: 150px;
    padding: 3px 10px !important;
}
.about-us-page.about-us .subtitle {
    padding: 0;
}
.about-us-page.about-us .imgSec:after,
.about-us-page.about-us .subtitle:before {
    display: none;
}
.about-us-page.about-us p {
    width: 70%;
}
.about-us-page.about-us h3 {
    font-size: 24px;
    width: 300px;
}

/* ====================== End About Sec =============== */
/* ====================== four About Sec =============== */

.AboutUs {
    position: relative;
    /* width: calc(100% - 30px); */
    margin: 60px 0;
    /*background: linear-gradient(to left, #006870, #3580ab, #5db5b3);*/
    background-color: #4fa296;
    /* border-radius: 7px; */
    padding: 30px 30px 50px;
    overflow: hidden;
}

.AboutUs::before,
.AboutUs::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 50px;
    filter: brightness(0) invert(1);
    background-image: url("../images/uqu-pattern.png");
    opacity: 0.25;
    pointer-events: none;
    overflow: hidden;
}

.AboutUs::before {
    inset-block-start: 0;
    inset-inline-end: 0;
    transform: rotate(180deg);
}

.AboutUs::after {
    inset-block-end: 0;
    inset-inline-start: 0;
}

.AboutUs .section-about {
    font-family: cairo;
    color: var(--color-white);
    margin-top: 15px;
    padding: 5px 15px;
}

.AboutUs .section-about h5 {
    margin-top: 15px;
    font-weight: 700;
    line-height: 1.6;
    padding: 0 10px;
}

.AboutUs .section-about p {
    color: #f7f7f7;
    font-size: 1.5rem;
    line-height: 25px;
    width: calc(100% - 50px);
    letter-spacing: 0px;
}

.AboutUs .section-about img {
    height: 50px;
    transform: scale(1);
    transition: all 0.3s;
}

.AboutUs .section-about:hover img {
    transform: scale(1.15);
    transition: all 0.3s;
}
.AboutUs .section-about svg {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    transition: all 0.3s;
    margin-inline-start: -10px;
}

.AboutUs .section-about:hover svg {
    transform: scale(1.15);
}

/* ====================== End four About Sec =============== */
/* ====================== register homepage =============== */
.register-homepage .section-register {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
}

.register-homepage .section-register:after {
    content: "";
    width: 100%;
    left: 0;
    top: 0;
    background-color: var(--color-main);
    z-index: 9;
    height: 100%;
    position: absolute;
    opacity: 0.6;
}

.register-homepage .section-register img {
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: all 0.3s;
}

.register-homepage .section-register:hover img {
    transform: scale(1.2);
    transition: all 0.3s;
}

.register-homepage .section-register .content {
    display: grid;
    text-align: center;
    position: absolute;
    align-content: center;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    color: var(--color-white);
}

.register-homepage .section-register .content h5 {
    margin: 20px 0 5px;
    font-size: 30px;
}

.register-homepage .section-register .content p {
    margin: 20px 0;
}

.register-homepage .section-register .content a {
    margin: 20px 0;
    display: inline-block;
    line-height: 40px;
    min-width: 120px;
}
.register-homepage.register-homepage-elearning .section-register {
    height: 340px;
}
.register-homepage.register-homepage-elearning .section-register .content {
    padding: 15px 25px;
}

.register-homepage.register-homepage-elearning .section-register .content p {
    line-height: 30px;
    font-size: 1.2rem;
}
.register-homepage.register-homepage-elearning .section-register .content h5 {
    font-size: 1.7rem;
    line-height: 35px;
}
.register-homepage.register-homepage-elearning .section-register .content a {
    min-width: 75%;
}
.register-homepage.register-homepage-elearning .col-md-4 .content a {
    color: #f59b22 !important;
    border-color: #f59b22 !important;
    font-weight: 600;
}
.register-homepage.register-homepage-elearning
    .col-md-4
    .section-register:after {
    background-color: #f59b22 !important;
    opacity: 0.55;
}
.register-homepage.register-homepage-elearning
    .col-md-4:first-child
    .section-register:after {
    background-color: var(--color-main) !important;
}
.register-homepage.register-homepage-elearning
    .col-md-4:last-child
    .section-register:after {
    background-color: #1ebb98 !important;
}

.register-homepage.register-homepage-elearning .col-md-4 .content a:hover {
    background-color: #f59b22 !important;
    color: var(--color-white) !important;
}
.register-homepage.register-homepage-elearning
    .col-md-4:first-child
    .content
    a {
    color: var(--color-main) !important;
    border-color: var(--color-main) !important;
}
.register-homepage.register-homepage-elearning
    .col-md-4:first-child
    .content
    a:hover {
    color: var(--color-white) !important;
    background-color: var(--color-main) !important;
}
.register-homepage.register-homepage-elearning .col-md-4:last-child .content a {
    color: #1ebb98 !important;
    border-color: #1ebb98 !important;
}
.register-homepage.register-homepage-elearning
    .col-md-4:last-child
    .content
    a:hover {
    background-color: #1ebb98 !important;
    color: var(--color-white) !important;
}

/* ====================== End register homepage =============== */
/* ====================== last News homepage =============== */

.course-container.last-news {
    border: none;
}

.course-container.last-news .img-container {
    height: 260px;
}

.course-container.last-news .details-body h5 {
    font-size: 1.4rem;;
    color: var(--color-main);
}

.course-container.last-news .details-body h5 span {
    color: #999;
    font-size: 1.3rem;
}
.course-container.last-news .details-body h5 span.details-title {
    font-size: 1.4rem;;
    color: var(--color-main);
}
.course-container.last-news .details-body p {
    width: calc(100% - 55px);
    font-size: 1.4rem;;
    color: #999;
    max-height: 40px;
    overflow: hidden;
}

/* ====================== End last News homepage =============== */
/* ====================== branches homepage =============== */
.section-branches {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.section-branches h4 {
    text-align: center;
    line-height: 50px;
    margin: 0;
    color: var(--color-white);
    font-size: 1.3rem;
    background-color: var(--color-main);
}

/* ====================== End branches homepage =============== */
/* ====================== traniee homepage =============== */

.section-traniee {
    height: 410px;
}

.section-traniee .img-container {
    height: 320px;
    overflow: hidden;
    width: 100%;
    border-radius: 15px;
}

.section-traniee .img-container img {
    width: 100%;
    transform: scale(1);
    transition: all 0.3s;
}

.section-traniee .img-container:hover img {
    transform: scale(1.2);
    transition: all 0.3s;
}

.section-traniee .information {
    text-align: center;
    border-radius: 15px;
    background-color: var(--color-white);
    padding: 15px 20px;
    margin: -50px 50px 0;
    position: relative;
    box-shadow: 0 0 7px #cdcdcd;
}

.section-traniee .information h4 {
    font-size: 1.4rem;
    color: #000;
    font-weight: 500;
}

.section-traniee .information h5 {
    font-size: 1.4rem;
    color: var(--color-main);
    font-weight: 500;
}

.section-traniee .information .social-links {
    height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.section-traniee .information .social-links a {
    cursor: pointer;
}

.section-traniee .information .social-links a img {
    width: 45px;
    transform: scale(0);
    transition: all 0.3s;
}

.section-traniee:hover .information .social-links {
    height: auto;
    transition: all 0.3s;
}

.section-traniee:hover .information .social-links a img {
    width: 45px;
    transform: scale(1);
    transition: all 0.3s;
}

/* ====================== End traniee homepage =============== */
/* ====================== clients homepage =============== */

.logo-container {
    position: relative;
    height: 140px;
}

.logo-container img {
    position: absolute;
    width: auto;
    max-width: 93%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* ====================== End clients homepage =============== */
/* ====================== breadcrumb  =============== */
.breadcrumb-bg {
    background-image: url(../../assets/images/news.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}
.breadcrumb-bg:after {
    content: "";
    width: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(to left, #006870, #3580ab, #5db5b3);
    z-index: 8;
    height: 100%;
    position: absolute;
    opacity: 0.6;
}
.breadcrumb-bg.news {
    background-image: url(../../assets/images/news.png);
}
.breadcrumb-bg.news-details {
    background-image: url(../../assets/images/news-details.png);
}
.breadcrumb-bg.Education-lession {
    background-image: url(../../assets/images/dross.png);
}
.breadcrumb-bg.AboutUs-breadcrumb {
    background-image: url(../../assets/images/about-us.png);
}
.breadcrumb-bg.Courses {
    background-image: url(../../assets/images/courses.png);
}
.breadcrumb-bg.partner-academy {
    background-image: url(../../assets/images/partner-academy.png);
}
.breadcrumb-bg.privacy-breadcrumb {
    background-image: url(../../assets/images/privacy.png);
}
.breadcrumb-bg.partner-lecturer {
    background-image: url(../../assets/images/lecturer.png);
}
.cr-breadcrumb-area {
    padding: 100px 0;
    width: 100%;
    position: relative;
    z-index: 9;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.cr-breadcrumb-area .title-breadcrumb {
    color: var(--color-white);
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
    margin-bottom: 0px;
}
.cr-breadcrumb-area .breadcrumb-list {
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--color-white);
    border-radius: 10px 10px 0 0;
    color: #000;
    padding: 10px 25px;
    margin: 0;
}
.cr-breadcrumb-area .breadcrumb-list li {
    color: #000;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 600;
}
.cr-breadcrumb-area .breadcrumb-list li a {
    color: #000;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    font-size: 1.6rem;
    font-weight: 600;
}
.cr-breadcrumb-area .breadcrumb-list li span {
    color: var(--color-main);
    font-weight: 600;
}
.cr-breadcrumb-area .breadcrumb-list li:not(:first-child):before {
    content: "/";
    padding: 0 5px;
    color: #000;
}
/* ====================== End breadcrumb  =============== */
/* ====================== details-news  =============== */
.details-news {
}
.details-news .main-img {
    width: 100%;
    border-radius: 15px;
}
.details-news ul {
    padding: 0;
    margin: 10px 0;
}
.details-news ul li {
    list-style: none;
    display: inline-block;
    margin: 6px 10px;
    font-size: 1.6rem;
}
.details-news ul li img {
    height: 19px;
    margin-right: 7px;
}
.details-news p {
    line-height: 35px;
    font-size: 1.6rem;
}
/* ====================== End details-news  =============== */
/* ====================== Education-lessions  =============== */
.Education-lession-section {
    background-color: var(--color-main);
    padding: 20px;
    margin-bottom: 20px;
}
.Education-lession-section > h6 {
    font-size: 1.6rem;
}
.Education-lession-section > h4 {
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 2.3rem;
}
.box-style-lession {
    position: relative;
    width: 250px;
}
.box-style-lession:before {
    content: "";
    background: url(../../assets/images/arrow-icon.png) no-repeat;
    background-size: 100% 100%;
    width: 100px;
    position: absolute;
    height: 30px;
    right: -120px;
    z-index: 999999;
    top: 90px;
}
.Education-lession-section .col-md-4:first-child .box-style-lession::before {
    display: none;
}
.video-lession {
    margin: 20px 0;
}
/* ====================== End Education-lessions  =============== */
/* ====================== Courses-details  =============== */
.Courses-details {
    background-color: var(--color-light);
    padding: 50px 0 25px 0;
}
.Courses-details .main-information {
}
.Courses-details .main-information p {
    font-size: 1.7rem;
    color: #777;
    margin: 10px 0 10px;
}
.Courses-details .main-information p.hint {
    margin-top: 0;
    font-size: 1.5rem;
    color: #af0000;
}
.Courses-details .main-information p.hint a {
    font-weight: 600;
    text-decoration: underline;
    font-size: 1.3rem;
}
.Courses-details .main-information .information-course,
.cart-section .information-course {
    display: flex;
    align-items: baseline;
    width: 100%;
}
.Courses-details .main-information .information-course .rate-inline,
.cart-section .information-course .rate-inline {
    font-size: 1.6rem;
    color: #999;
    margin: 0 10px;
}
.Courses-details .main-information .information-course .rate-inline i.active,
.rate-inline i.active {
    color: #ffb60c;
}
.Courses-details .main-information .information-course .cousre-count,
.cart-section .information-course .cousre-count {
    font-size: 1.6rem;
    color: #999;
}
.profile-container {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
}
.Courses-details-part2 {
    margin-bottom: 50px;
}
.Courses-details-part2 .nav-pills {
    padding: 0;
    margin: 10px 0px;
}
.Courses-details-part2 .nav-pills.nav-profile {
    padding: 0 5px;
}
.Courses-details-part2 .nav-pills > li > a {
    background-color: #f5faff;
    border-radius: 7px;
    min-width: 120px;
    text-align: center;
    color: #999;
    padding: 12px 15px;
}
.Courses-details-part2.Courses-details-part-video .nav-pills > li > a {
    min-width: 108px;
}
.nav-pills > li + li {
    margin-inline-start: 15px;
}
.Courses-details-part2 .nav-pills > li.active > a,
.Courses-details-part2 .nav-pills > li.active > a:focus,
.Courses-details-part2 .nav-pills > li.active > a:hover {
    color: var(--color-white);
    background-color: var(--color-accent);
    font-weight: 600;
}
.sidebar-course-details {
    background-color: var(--color-white);
    box-shadow: 0 0 7px #888;
    border-radius: 15px;
    width: calc(100% - 50px);
    margin-inline-start: 50px;
    position: relative;
    margin-top: -300px;
}
.sidebar-course-details .price .new {
    font-size: 2rem;
    font-weight: 600;
    display: inline-block;
}
.sidebar-course-details .price .old {
    text-decoration: line-through;
    font-size: 1.7rem;
    margin: 0 6px;
    color: #999;
    display: inline-block;
}
.sidebar-course-details .price .off {
    font-size: 1.8rem;
    color: #dd3832;
}
.hint {
    color: var(--color-main);
}
.sidebar-course-details > .row {
    margin: 0;
}
.sidebar-course-details > .row > [class*="col-"] {
    /* padding: 0 10px; */
}
.sidebar-course-details > .row .btn-theme,
.btn-theme.btn-white.tabby-btn {
    width: 100%;
    margin: 5px 0 !important;
    padding: 6px !important;
    display: flex;
    justify-content: center;
    gap: 5px;
    align-items: center;
}
.sidebar-course-details > .row .btn-theme.btn-white {
    color: #999 !important;
}
.sidebar-course-details > .row .btn-theme.btn-white.tabby-btn b,
.btn-theme.btn-white.tabby-btn b {
    color: #000 !important;
}
.sidebar-course-details > .row .btn-theme.btn-white.tabby-btn svg,
.btn-theme.btn-white.tabby-btn svg,
.sidebar-course-details > .row .btn-theme.btn-white.tabby-btn img {
    background-color: #3bffac;
    border-radius: 5px;
    width: 80px;
}
.sidebar-course-details > .row .btn-theme.btn-white.tabby-btn img {
    height: 32px;
}
.sidebar-course-details > .row .btn-theme.btn-white:hover,
.sidebar-course-details > .row .btn-theme.btn-white.tabby-btn:hover b,
.btn-theme.btn-white.tabby-btn:hover b {
    color: var(--color-white) !important;
}
.sidebar-course-details > .row .btn-theme i {
    margin-right: 5px;
}
.sidebar-course-details .img-container {
    position: relative;
    padding: 15px;
}
.sidebar-course-details .img-container img {
    width: 100%;
    border-radius: 10px;
}
.sidebar-course-details .img-container:after {
    content: "";
    background: url(../../assets/images/play.png) no-repeat;
    width: 50px;
    height: 50px;
    background-size: 50px 50px;
    z-index: 99;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 7px #ccc;
    border-radius: 50%;
}

.sidebar-course-details .social-links a {
    text-decoration: none;
}
.sidebar-course-details ul.list-item {
    padding: 0 20px;
}
.sidebar-course-details ul.list-item li {
    list-style: none;
    position: relative;
    line-height: 32px;
    color: #999;
}
.sidebar-course-details ul.list-item li:before {
    content: "\f111";
    position: absolute;
    font-size: 10px;
    top: 0px;
    right: -20px;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    color: #72b4ff;
}
.sidebar-course-details .social-links {
    margin-bottom: 15px;
}
.sidebar-course-details .social-links a img {
    width: 40px;
    transform: scale(1);
    transition: all 0.3s;
}
.sidebar-course-details .social-links a img:hover {
    transform: scale(1.1);
    transition: all 0.3s;
}
/* .Course-homepage {
    padding-bottom: 100px;
} */
.vision-tab {
}
.vision-tab h4 {
    margin: 30px 0 15px;
}
.vision-tab p {
    font-size: 1.5rem;
    line-height: 26px;
}
.vision-tab ul {
    padding: 0;
    padding: 0 30px;
}
.vision-tab li {
    list-style: none;
    position: relative;
    line-height: 30px;
    font-size: 1.5rem;
}
.vision-tab li:before {
    content: "\f058";
    position: absolute;
    font-size: 1.3rem;
    top: 1px;
    right: -25px;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    color: #f59b22;
}
.information-course-time {
    margin: 25px 0 10px;
    background-color: var(--color-white);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    width: 100%;
    box-shadow: 0 0 5px #ededed;
}
.information-course-time .img-container img {
    width: 45px;
}
.information-course-time .details-container {
    margin: 0 10px;
}

.information-course-time .details-container h6 {
    margin-bottom: 5px;
}
.information-course-time .details-container p {
    color: #999;
    margin-bottom: 0;
}
.breadcrumb-list-horizontal,
.Course-tags {
    padding: 0;
}

.breadcrumb-list-horizontal li,
.Course-tags li {
    display: inline-block;
    list-style: none;
    font-size: 1.6rem;
}
.breadcrumb-list-horizontal li a {
    padding: 3px 5px;
    display: inline-block;
    color: var(--color-main);
    text-decoration: none;
}
.breadcrumb-list-horizontal li:not(:last-child) a:after {
    content: "\f104";
    padding-right: 10px;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    color: var(--color-main);
    position: relative;
    top: 1px;
    font-size: 1.8rem;
}
.breadcrumb-list-horizontal li span {
    padding: 3px 5px;
    display: inline-block;
    color: #555;
}
.Course-tags li a {
    border-radius: 15px;
    text-align: center;
    min-width: 140px;
    display: inline-block;
    padding: 7px;
    background-color: #eaf4fe;
    color: var(--color-main);
    text-decoration: none;
    font-size: 1.5rem;
}

.privacy-section {
}
.privacy-section h4 {
    margin-top: 50px;
    font-size: 2.2rem;
}
.privacy-section p {
    color: #999;
    font-size: 1.6rem;
    line-height: 23px;
    margin-bottom: 30px;
}
.contactus-page {
    width: 1000px;
    margin: auto;
    max-width: 95%;
}
.contactus-page p {
    color: #999;
    line-height: 26px;
    width: 90%;
}
.contactus-page {
    padding-top: 30px;
}
.contactus-page .form-style {
    margin-top: 0;
}
.form-style.normal-style {
    width: 100%;
    margin: 10px 0;
    max-width: 100%;
    box-shadow: none;
    padding: 15px 0;
}
.row-flex {
    align-items: center;
    justify-content: center;
    display: flex;
    width: 100%;
}
.error-page {
    padding: 100px 0 50px;
}
.error-page .error_txt {
    color: #dd3832;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}
.error-page h5 {
    color: #000;
    font-size: 2.2rem;
    margin: 20px 0;
}
.error-page p {
    color: #999;
    font-size: 1.7rem;
    margin: 20px 0;
}
.error-page .btn {
    min-width: 220px;
    line-height: 35px;
}
.traniee-tab > h5 {
    margin-top: 20px;
}
.traniee-section {
    display: flex;
    align-content: flex-start;
    width: 600px;
    max-width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #ededed;
}
.traniee-section .img-container {
}
.traniee-section .img-container img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.traniee-section .details-container {
    padding: 0 20px;
}

.traniee-section .details-container h4 .rate-inline {
    float: right;
    color: #999;
    font-size: 1.4rem;
    line-height: 20px;
}
.traniee-section .details-container h6 {
    color: var(--color-main);
}
.rating-tab .traniee-section .details-container h6 {
    color: #999;
}
.traniee-section .details-container p {
    font-size: 1.7rem;
    color: #999;
    line-height: 24px;
}
.traniee-section .details-container .social-links {
    margin-top: 25px;
}
.traniee-section .details-container .social-links a {
    text-decoration: none;
}
.traniee-section .details-container .social-links a i {
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border: 1px solid var(--color-main);
    border-radius: 10px;
    color: #b6b6b6;
    margin: 0 6px;
    font-size: 1.6rem;
}
.traniee-section .details-container .social-links a:hover i {
    color: var(--color-white);
}
.traniee-section .details-container .social-links a.linkedin-icon:hover i {
    background-color: #0e74a5;
    border-color: #0e74a5;
}
.traniee-section .details-container .social-links a.youtube-icon:hover i {
    background-color: #ff1f17;
    border-color: #ff1f17;
}
.traniee-section .details-container .social-links a.twitter-icon:hover i {
    background-color: #2fc9ff;
    border-color: #2fc9ff;
}
.traniee-section .details-container .social-links a.facebook-icon:hover i {
    background-color: #1d6abe;
    border-color: #1d6abe;
}
/* .accordion-lecture {
    margin: 30px 0 20px;
} */
.accordion-lecture .panel-default {
    border: none;
    border-radius: 7px !important;
    box-shadow: none;
    margin-bottom: 5px;
}
.accordion-lecture .panel-default > .panel-heading {
    padding: 0;
}
.accordion-lecture
    .panel-default
    > .panel-heading
    + .panel-collapse
    > .panel-body {
    border: none;
    padding-bottom: 0;
    max-height: 310px;
    overflow: auto;
    padding: 0px;
}
.accordion-lecture
    .panel-default
    > .panel-heading
    + .panel-collapse
    > .panel-body::-webkit-scrollbar-track {
    background-color: #f7f7f7;
}

.accordion-lecture
    .panel-default
    > .panel-heading
    + .panel-collapse
    > .panel-body::-webkit-scrollbar {
    width: 7px;
    background-color: #f7f7f7;
    height: 7px;
}

.accordion-lecture
    .panel-default
    > .panel-heading
    + .panel-collapse
    > .panel-body::-webkit-scrollbar-thumb {
    background-color: rgb(66, 142, 255);
}
.accordion-lecture .panel-default > .panel-heading a {
    padding: 10px 20px;
    display: block;
    font-size: 1.4rem;
    border-radius: 10px !important;
    text-decoration: none;
}
.accordion-lecture .panel-default > .panel-heading a.collapsed i.fas:before {
    content: "\f078";
}
.accordion-lecture .panel-default > .panel-heading a span:last-child {
    float: right;
    color: var(--color-main);
}
.accordion-lecture .panel-default > .panel-heading a.collapsed span:last-child {
    color: #999;
}
.accordion-lecture .panel-default > .panel-heading a > div {
}

.accordion-lecture .row-lecture a {
    color: #999;
    font-size: 1.3rem;
    display: block;
    text-decoration: none;
    margin-bottom: 0px;
    padding: 5px;
    cursor: pointer;
}
.accordion-lecture .row-lecture.test a {
    padding: 7px;
    background-color: var(--color-main);
    border-radius: 5px;
    color: var(--color-white) !important;
}
.accordion-lecture .row-lecture.zoom-link a {
    background-color: #c2d9ee;
    border-radius: 5px;
    color: var(--color-main) !important;
    border-radius: 5px;
    display: flex;
    align-items: center;
}
.accordion-lecture .row-lecture.test a:hover {
    color: #171d6e !important;
}
.accordion-lecture .row-lecture a span.btn {
    padding: 0 !important;
    margin-top: 0 !important;
    zoom: 0.8;
    position: relative;
    top: -3px;
    background-color: #4e9eec !important;
}
.accordion-lecture .row-lecture.test i,
.accordion-lecture .row-lecture.zoom-link i {
    font-size: 1.6rem;
    margin-inline-end: 8px;
}
.accordion-lecture .row-lecture a:hover {
    background-color: #f7f7f7;
}
.accordion-lecture .row-lecture a span {
    float: right;
}
.accordion-lecture .row-lecture.active a span {
    color: var(--color-main);
}
.rating-tab .progress-line,
.my-courses .progress-line {
    display: flex;
    margin: 15px 0;
}
.rating-tab .progress-line .progress,
.my-courses .progress-line .progress {
    height: 15px;
    position: relative;
    top: 5px;
    width: calc(100% - 100px);
    margin: 0 15px;
    color: transparent;
    background-color: #f2f3f4;
    box-shadow: none;
    border-radius: 15px;
}
.my-courses .progress-line .progress {
    height: 11px;
}
.rating-tab .progress-line .progress .progress-bar {
    color: transparent;
    background-color: #ffb60c;
    box-shadow: none;
}
.my-courses .progress-line .progress .progress-bar {
    color: transparent;
    background-color: var(--color-main);
    box-shadow: none;
}
.rating-tab .progress-line span,
.my-courses .progress-line span {
    color: #999;
}
.rating-tab .traniee-section {
    width: 700px;
}
.progress-line-container {
    width: 100%;
}
.rating-container {
    display: flex;
    width: 700px;
    max-width: 100%;
}
.rating-part-container {
    width: 140px;
    text-align: center;
    margin-right: 35px;
}
.rating-part-container h1 {
    color: #f59b22;
    font-size: 50px;
}
.rating-part-container .rate-inline {
    color: #999;
    margin-bottom: 20px;
}
.rating-part-container p {
    color: #999;
}

.Organizer {
}
.Organizer .center-col {
    text-align: center;
}
.Organizer .center-col [class*="col-"] {
    text-align: center;
    float: unset !important;
    margin: auto;
}
.Organizer .large-section {
    background-image: linear-gradient(to bottom right, #009892, #00b1a6);
    height: 70px;
    display: grid;
    line-height: 70px;
    width: calc(100% - 30px);
    margin: 15px auto;
    border-radius: 5px;
    font-weight: 600;
    font-size: 26px;
    text-align: center;
    position: relative;
    color: var(--color-white);
    z-index: 99;
}
.Organizer .large-section.light-section {
    background-image: none;
    background-color: transparent;
    border: 2px solid #009892;
    color: #000;
}
.Organizer .normal-section {
    background-image: linear-gradient(to bottom right, #00c1b5, #009892);
    height: 43px;
    display: grid;
    line-height: 19px;
    width: calc(100% - 15px);
    margin: 40px 5px 15px;
    border-radius: 5px;
    font-size: 1.2rem;
    text-align: center;
    position: relative;
    color: var(--color-white);
    font-weight: 500;
}
.Organizer .normal-section.bule-bg {
    background-image: none;
    background-color: #4f7bac;
}
.Organizer .normal-section.arrow-top:before {
    content: "";
    position: absolute;
    height: 40px;
    width: 2px;
    background-color: #999;
    z-index: -1;
    top: -38px;
    left: 50%;
    transform: translate(-50%, 0);
}
.Organizer .normal-section.arrow-top.spical-arrow:before {
    height: 240px;
    top: -238px;
}
.Organizer .second-normal-section .img-section {
    width: 35px;
    height: 35px;
    transform: rotate(45deg);
    border-radius: 5px;
    border: 2px solid #4f7bac;
    position: absolute;
    right: -23px;
    top: 4px;
    text-align: center;
    background-color: var(--color-white);
}
.Organizer .second-normal-section-box {
    display: grid;
    height: 80px;
    background-color: #00b6ab;
    color: var(--color-white);
    text-align: center;
    align-content: center;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    width: calc(100% - 12px);
    margin-top: -10px;
    transform: scale(1);
    transition: all 0.3s;
}
.Organizer .second-normal-section-box:hover {
    transform: scale(1.03);
    transition: all 0.3s;
}
.Organizer .second-normal-section .img-section img {
    width: 100%;
    height: 100%;
}
.second-normal-section {
    background-color: var(--color-white);
    border: 2px solid #2196f3;
    position: relative;
    margin: 35px 25px;
    display: grid;
    height: 48px;
    align-items: center;
    border-radius: 5px;
    text-align: center;
    padding: 5px 0;
    padding-right: 20px;
    transform: scale(1);
    transition: all 0.3s;
}
.second-normal-section:hover {
    transform: scale(1.03);
    transition: all 0.3s;
}
.small-section .second-normal-section {
    background-color: var(--color-white);
    border: 2px solid #2196f3;
    position: relative;
    margin: 30px 11px;
    display: grid;
    height: 36px;
    align-items: center;
    border-radius: 5px;
    text-align: center;
    padding: 5px 0;
    padding-right: 9px;
}

.Organizer .small-section .second-normal-section .img-section {
    width: 26px;
    height: 26px;
    right: -19px;
    top: 3px;
}
.Organizer .small-section > .col-md-3 {
    padding-right: 10px;
    padding-left: 0px;
}
.Organizer .small-section .second-normal-section span {
    font-size: 10px;
    line-height: 12px;
}
.Organizer .small-section .second-normal-section.second-normal-section-special {
    height: 65px;
    border-color: #66c406;
    background-color: #66c406;
    color: var(--color-white);
    font-size: 11px;
    margin: 30px 7px;
}
.Organizer .small-section {
    padding: 0 7px;
}
.Organizer
    .small-section
    .second-normal-section.second-normal-section-special
    span {
    font-size: 1.2rem;
    line-height: 17px;
}
.Organizer
    .small-section
    .second-normal-section.second-normal-section-special
    .img-section {
    width: 29px;
    height: 29px;
    right: -15px;
    top: 15px;
    border-color: #66c406;
}
.second-normal-section.arrow-top:before {
    content: "";
    position: absolute;
    height: 38px;
    width: 2px;
    background-color: #999;
    z-index: -1;
    top: -38px;
    left: 50%;
    transform: translate(-50%, 0);
}
.small-section .second-normal-section.arrow-top:before {
    height: 32px;
    top: -34px;
}
.second-normal-section span {
    font-weight: 600;
    font-size: 1.2rem;
}
.panel-course-play {
}
.accordion-lecture .panel-default.panel-course-play > .panel-heading a {
    padding: 20px 10px;
}
.accordion-lecture
    .panel-default.panel-course-play
    > .panel-heading
    a.collapsed
    span.lession-section {
    color: #171d6e;
}
.accordion-lecture
    .panel-default.panel-course-play
    > .panel-heading
    a
    span.lession-section {
    position: relative;
    top: -3px;
}
.accordion-lecture
    .panel-default.panel-course-play
    > .panel-heading
    a
    span.lession-section
    i {
    width: 30px;
    text-align: center;
    position: relative;
    top: 3px;
    font-size: 1.7rem;
}
.accordion-lecture
    .panel-default.panel-course-play
    > .panel-heading
    a
    span.lession-section
    i:before,
.accordion-lecture .panel-course-play .row-lecture {
    background-color: var(--color-white);
    border-radius: 50%;
    color: #999;
}
.accordion-lecture .panel-course-play .row-lecture {
    padding: 2px 0;
    border: 1px solid #ededed;
    border-radius: 0;
    margin-bottom: 5px;
    background-color: #fdfdfdfd;
}
.accordion-lecture .panel-course-play .row-lecture p {
    padding: 0 40px;
    font-size: 10px;
    color: #af0000;
    font-weight: 600;
    margin-bottom: 0;
    position: relative;
    top: -3px;
}
.accordion-lecture .panel-course-play .row-lecture.active a {
    color: var(--color-main);
}
.accordion-lecture
    .panel-default.panel-course-play
    > .panel-heading
    a
    span.lession-section.complete
    i:before,
.accordion-lecture .panel-course-play .row-lecture.active a span i:before {
    content: "\f058";
    color: #09cc7e;
    font-weight: 900;
}
.accordion-lecture
    .panel-default.panel-course-play
    > .panel-heading
    a
    span.title-course-play
    i {
    font-size: 30px;
    line-height: 1px;
    width: 18px;
    position: relative;
    top: 6px;
    color: var(--color-main);
}
.accordion-lecture.single-video-accordion
    .panel-default.panel-course-play
    > .panel-heading
    a
    span.title-course-play
    i {
    font-size: 2.3rem;
    width: 12px;
    top: 4px;
}
.accordion-lecture
    .panel-default.panel-course-play
    > .panel-heading
    a.collapsed
    span.title-course-play
    i {
    color: #777;
}
.accordion-lecture
    .panel-default.panel-course-play
    > .panel-heading
    a.collapsed
    i.fas:before {
    content: "\f0d9";
}
.panel-course-play .lession-section {
}
.accordion-lecture .panel-course-play .row-lecture a img {
    width: 18px;
    margin: 0 5px;
}
.course-review {
    background-color: #f5faff;
    padding: 10px 20px 0px;
    border-radius: 10px;
}
.course-review .rating-tab .progress-line .progress {
    width: calc(100% - 195px);
    height: 10px;
    top: 15px;
}
.course-review .rating-tab .progress-line h5 {
    margin-bottom: 3px;
}
.course-review .rating-tab .progress-line p {
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.course-review .rating-tab .progress-line p span {
    color: #069eed;
    margin: 0 4px;
}
.course-review .rating-tab .progress-line {
    display: flex;
    margin: 0px 0 15px;
}
.course-review .rating-tab .progress-line .progress .progress-bar {
    background-color: #24be9b;
}
.course-review .rating-tab .progress-line span {
    margin-top: 10px;
    color: #555;
    font-weight: 600;
}
.table-container {
    overflow: auto;
}
.header-course-links {
}
.header-course-links strong {
    color: var(--color-main);
}
.header-course-links h5 {
    padding: 0 25px;
    font-weight: 400;
    margin-top: 15px;
}
.table-courses {
    margin-bottom: 30px;
}
.table-courses thead {
}
.table-courses tbody {
}
.table-courses thead tr th {
    background-color: var(--color-main);
    color: var(--color-white);
    text-align: center;
    line-height: 35px;
}
.table-courses tbody tr td {
    line-height: 30px;
    min-width: 155px;
}
.table-courses tbody tr td img {
    margin: 0 7px;
    width: 21px;
}
.table-courses tbody tr td a {
    color: var(--color-main);
    text-decoration: underline;
}
@media (min-width: 768px) {
    .Organizer .width-30 {
        width: 30%;
    }
    .Organizer .width-70 {
        width: 70%;
        padding: 0;
    }
}
.Organizer .flex-row {
    display: table;
    width: 100%;
    justify-content: space-between;
}
.Organizer .flex-row .col {
    display: table-cell;
}
.Organizer .flex-row .col .normal-section {
    width: 160px;
}
.Organizer .normal-section {
    transform: scale(1);
    transition: all 0.3s;
}
.Organizer .normal-section:hover {
    transform: scale(1.03);
    transition: all 0.3s;
}
.Organizer .flex-row .col .normal-section span {
}
.container-Organizer {
    width: 1025px;
    margin: auto;
    max-width: 100%;
}
.second-level {
    position: relative;
    margin: 54px auto 20px;
    width: 1200px;
    max-width: 100%;
    display: flex;
}
.second-level:after {
    content: "";
    position: absolute;
    width: calc(100% - 266px);
    left: 89px;
    height: 2px;
    background-color: #999;
}

.my-courses .course-rate {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    text-align: center;
    width: 100%;
    border-top: 1px solid #f5f5f5;
    padding: 0 15px 8px;
}
.my-courses .course-rate .btn-theme.btn-white,
.my-courses .course-rate .btn-theme.btn-white:hover {
    color: #999 !important;
    border-color: #999 !important;
    cursor: pointer;
    text-decoration: none;
}
.my-courses .course-rate .btn-theme.btn-white:hover {
    color: var(--color-white) !important;
}
.my-courses .course-rate .btn-theme.btn-white.active {
    background-color: #f0f0f0;
    border-color: #f0f0f0 !important;
    color: #f59b22 !important;
}
.my-courses .course-rate .btn-theme.btn-white.active:hover {
    background-color: #f59b22 !important;
    border-color: #f59b22 !important;
    color: var(--color-white) !important;
}
.my-courses .course-rate .fa-star {
    color: #ffb60c;
}
.course-container .details-body h5 {
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.my-courses .course-rate .fa-star.active {
    font-weight: 900;
}
.cart-details-container .cart-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px;
    border-bottom-color: transparent;
}
.cart-details-container .cart-section:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.cart-details-container .cart-section:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-color: #ccc;
}
.cart-details-container .cart-section .img-container img {
    width: 110px;
    height: 110px;
    object-fit: cover;
}
.cart-details-container .cart-section .details-container {
    padding: 0 15px;
    width: calc(100% - 210px);
}
.cart-details-container .cart-section .details-container h5 {
    font-size: 1.6rem;
}
.cart-details-container .cart-section .details-container p {
    color: #999;
    overflow: hidden;
    white-space: nowrap;
    font-size: 1.3rem;
    text-overflow: ellipsis;
}
.cart-details-container .cart-section .action-course {
    text-align: end;
    min-width: 100px;
    padding: 0 5px;
}
.cart-details-container .cart-section .action-course .delete-btn {
    color: #999;
    display: block;
    margin-bottom: 20px;
}
.cart-details-container .cart-section .action-course p.price {
    margin-bottom: 5px;
    color: var(--color-main);
    font-weight: 600;
    font-size: 1.7rem;
}
.cart-details-container .cart-section .action-course p.old-price {
    text-decoration: line-through;
    font-size: 1.4rem;
    color: #999;
}
.total-cart {
    /* text-align: center; */
    margin-top: 40px;
}
.total-cart .row-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid #ededed;
    margin-bottom: 10px;
}
.total-cart .row-total span {
    font-size: 2rem;
    font-weight: 600;
    text-align: end;
}
.total-cart a {
    width: 100%;
    margin: 5px 0 !important;
}
.cart-container {
    margin-bottom: 30px;
    padding: 50px 0;
}
.d-flex {
    display: flex;
}
.d-grid-end {
    display: grid;
    align-items: end;
}
.payment-method,
.checkout-container {
    /* border: 1px solid #ededed; */
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.payment-method .form-check,
.checkout-container .rowSubtotal {
    padding: 15px 15px;
    align-items: center;
    border-bottom: 1px solid #ededed;
}
.checkout-container .rowSubtotal {
    padding: 10px 15px;
}
.payment-method .form-check:last-child,
.checkout-container .rowSubtotal:last-child {
    border-bottom: none;
}
.payment-method .form-check input {
    width: 24px;
    height: 18px;
    position: relative;
    top: -2px;
}
.payment-method .form-check label {
    margin-bottom: 0;
}
.payment-method .form-check label span {
    display: inline-block;
    min-width: 95px;
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0 4px;
}
.payment-method .form-check label img {
    height: 25px;
}
.checkout-btn.btn-theme {
    width: 100%;
    height: 40px;
}
.container-style-account {
    background: url(../../assets/images/account-bg.png) no-repeat;
    margin-top: -20px;
    background-size: 100% 100%;
}
.logo-account-form img {
    height: 80px;
    margin-bottom: 10px;
}
.links-account a {
    display: block;
    text-decoration: none;
    position: relative;
    top: 0;
}
.links-account a:hover {
    transition: all 0.3s;
    position: relative;
    top: -5px;
}
.links-account a h4 {
    color: #000;
    font-weight: 400;
    font-size: 1.4rem;
}
.links-account img {
    width: 75px;
    margin-bottom: 10px;
}
.header-question {
    margin: 10px 0 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ededed;
}
.header-question .header-question-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-question .header-question-row h5 {
    margin: 8px 0 0;
    font-size: 1.7rem;
}
.header-question .header-question-row button {
    min-width: 150px;
    line-height: 40px;
    font-weight: 600;
    color: var(--color-main) !important;
    border-color: var(--color-main) !important;
}
.box-message.box-message-question,
.box-message.box-message-question:hover,
.box-message.box-message-answer,
.box-message.box-message-answer:hover {
    border: none;
    box-shadow: unset;
    width: 100%;
    border-radius: 0;
}
.box-message.box-message-answer,
.box-message.box-message-answer:hover {
    border-top: 1px solid #ededed;
    zoom: 0.85;
    padding: 15px 15px 25px;
}
.box-message.box-message-question h5 a {
    font-size: 2.1rem;
    position: relative;
    top: 3px;
    margin: 0 10px;
    cursor: pointer;
}
.box-message.box-message-question .box-message-container p span,
.box-message.box-message-answer .box-message-container p span {
    color: var(--color-main);
    font-weight: 600;
}
.box-message.box-message-answer .box-message-container p strong,
.box-message.box-message-question .box-message-container p strong {
    color: #999;
}
.comments-row {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.comments-row .img-container img {
    height: 40px;
    margin: 0 5px;
    border-radius: 50%;
}
.comments-row input {
    background-color: #ededed;
    border: none;
    border-radius: 10px;
    box-shadow: none;
}
.comments-row .btn-theme.btn-theme2 {
    margin-top: 0 !important;
    line-height: 36px;
    border-radius: 10px;
}
@media (min-width: 1365px) {
    .Organizer .large-section.has-arrow:before {
        display: none;
    }
    .Organizer .flex-row .col .normal-section {
        width: 180px;
    }
    .container-Organizer {
        width: 1025px;
    }
    .second-level {
        width: 1366px;
    }
    .second-level:after {
        width: calc(100% - 302px);
        left: 103px;
    }
}
.Organizer .large-section.has-arrow:before {
    content: "";

    position: absolute;
    height: 171px;
    width: 2px;
    background-color: #999;
    z-index: -1;
    bottom: -171px;
    left: 50%;
    transform: translate(-50%, 0);
}
/* .Organizer .large-section.has-arrow.has-arrow-large:before {
    height: 55px;
    bottom: -53px;
  } */
.Organizer .large-section.left-arrow:before {
    content: "";
    background: url(../../assets/images/arrow-hikal.png) no-repeat;
    position: absolute;
    right: -42px;
    color: #7f7f7f;
    font-size: 44px;
    width: 42px;
    height: 20px;
    top: 26px;
    background-size: 100%;
}
.Organizer .large-section.left-arrow:after {
    content: "";
    font-weight: 900;
    background: url(../../assets/images/arrow-hikal-left.png) no-repeat;
    position: absolute;
    left: -39px;
    color: #7f7f7f;
    font-size: 44px;
    width: 42px;
    height: 20px;
    top: 26px;
    background-size: 100%;
}
.user-dropdown .btn-theme {
    padding: 3px 20px !important;
    background-color: var(--color-main) !important;
    color: var(--color-white) !important;
}
.user-dropdown > .dropdown-menu li a {
    border-bottom: none !important;
    padding: 8px 10px;
}
.user-dropdown > .dropdown-menu li.row-account a {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-dropdown > .dropdown-menu li.row-account a ion-icon {
    font-size: 1.8rem;
}

.user-dropdown > .dropdown-menu li.row-account a img {
    width: 15px;
    max-height: 18px;
    margin: 0px 8px;
}
.user-dropdown > .dropdown-menu li.row-account.logout-line a {
    padding: 15px 10px;
    border-top: 1px solid #dcdcdc;
    margin-top: 10px;
}
.information-user {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid #ededed;
    margin-bottom: 10px;
}
.information-user .icon-container {
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    color: var(--color-main);
    background-color: #f5f5f5;
    border-radius: 50%;
    font-size: 1.8rem;
    margin: 0 7px;
}
.information-user .details-container h6 {
    margin-bottom: 5px;
}
.information-user .details-container p {
    color: #999;
    margin-bottom: 8px;
}
.user-dropdown .dropdown-menu {
    width: 235px;
}
.input-search-form {
    width: 100%;
    display: flex;
}
.input-search-form input {
}
.input-search-form .input-group-addon {
    width: 47px;
    background-color: var(--color-main);
    color: var(--color-white);
    border-color: var(--color-main) !important;
}
.text-center-nav {
    text-align: center;
}
.text-center-nav li {
    float: unset !important;
    display: inline-block;
}

.avatar-upload {
    position: relative;
    margin: 0 auto;
    display: inline-block;
    width: 170px;
    /* height: 170px; */
}
.flex-img-upload {
    display: inline-flex;
    align-items: center;
}
.flex-img-upload > h5 {
    margin: 0 10px;
}
.avatar-upload .avatar-edit {
    position: absolute;
    right: 0;
    width: 100%;
    top: 0;
    height: 100%;
    text-align: center;
}

.avatar-upload .avatar-edit input {
    display: none;
}

.avatar-upload .avatar-edit label.LabelUploadImg {
    background-color: #f8f9fa;
    border: 1px dashed #ccc;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: grid;
    place-items: center;
    align-content: center;
    font-size: 1.2rem;
    font-weight: 400;
    color: #999;
}
.avatar-upload .avatar-edit label.LabelUploadImg i {
    line-height: 31px;
    font-size: 2.1rem;
    color: var(--color-main);
    margin-bottom: 6px;
}
.avatar-upload .avatar-edit label.LabelUploadImg:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
    color: #d7a449;
}
.imageUpload {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 999;
    cursor: pointer;
}
.avatar-upload .avatar-preview {
    width: 100%;
    height: 170px;
    position: relative;
    border-radius: 50%;
}

.avatar-upload .avatar-preview > div {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: none;
    overflow: hidden;
}
.imagePreview {
    width: 100%;
    height: 100%;
    opacity: 1;
    border-radius: 100%;
    border: 1px solid #ccc;
    object-fit: cover;
}

.bg-icon {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.bg-icon::before {
    position: absolute;
    content: "";
    display: block;
    width: 350px;
    height: 350px;
    background: no-repeat url("../images/bg-icon.png") center/contain;
    z-index: -1;
    bottom: -100px;
    inset-inline-end: -120px;
    opacity: 0.1;
}

.bg-accented:before {
    position: relative;
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    background: var(--color-white) url("../images/footer-p.png") top center
        repeat-x;
    z-index: 0;
}

.SidebarContainer {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    /*display: none;*/
    z-index: 989;
}

.SidebarContainer .OverLay {
    transition: all 0.5s;
    inset: 0;
}

.SidebarContainer.active .OverLay {
    background-color: #000;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 993;
}

/*.SidebarContainer.active {
        display: block;
    }*/

.SidebarContainer {
    inset-inline-start: -130%;
}

.SidebarContainer .SidebarContent {
    position: fixed;
    width: 85%;
    max-width: 400px;
    background-color: var(--color-white);
    padding: 0px;
    height: 100%;
    top: 0;
    z-index: 999;
    transition: all 0.5s;
    inset-inline-start: -130%;
}

.SidebarContainer.active .SidebarContent {
    inset-inline-start: 0;
    transition: all 0.5s;
}

.SidebarContainer .SidebarContent .SidebarHeader {
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
    margin: 0;
    position: relative;
}
.SidebarContainer .SidebarContent .SidebarHeader h5 {
    /* position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 17px; */
    padding: 20px 0;
    color: var(--color-main);
}

.SidebarContainer .SidebarContent .SidebarHeader .CloseSideBar {
    cursor: pointer;
    position: absolute;
    z-index: 10;
    top: -52px;
    inset-inline-end: 20px;
    background: white !important;
    width: 35px;
    height: 35px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border: none;
}

.SidebarContainer .SidebarContent .SidebarHeader .CloseSideBar img {
    width: 14px;
}
.SidebarContainer .SidebarContent .SidebarBody {
    height: calc(100% - 100px);
    overflow: auto;
    padding: 10px 0px;
}
.SidebarContainer .SidebarContent .SidebarBody .list-search h4 {
    font-size: 1.7rem;
}
.SidebarContainer .SidebarContent .SidebarBody .list-search li {
    padding: 0 20px;
    list-style: none;
    transition: all 0.25s linear;
}

.SidebarContainer .SidebarContent .SidebarBody .list-search li a {
    padding: 5px;
    margin-bottom: 10px;
    color: var(--color-main);
    text-decoration: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    transition: all 0.25s linear;
}

.SidebarContainer .SidebarContent .SidebarBody .list-search li a ion-icon {
    font-size: 1.8rem;
}

.SidebarContainer .SidebarContent .SidebarBody .list-search li:hover {
    background-color: var(--color-light);
}

.SidebarContainer .SidebarContent .SidebarBody .list-search li:hover a {
    transform: translateX(-10px);
    color: var(--color-accent);
}

.search-container {
    position: relative;
    margin: 10px 0px 10px;
    padding: 0 20px 20px;
    border-bottom: 1px solid #f0f0f0;
}
.search-container input {
    height: 45px;
    padding-right: 50px;
}
.search-container .btn-search-submit {
    border: none;
    background-color: unset;
    position: absolute;
    right: 20px;
    top: 0;
    height: 45px;
    width: 45px;
}
.search-container .btn-search-submit img {
    width: 18px;
}
.container-profile {
    margin-top: -17px;
}
.container-profile-details {
    margin: 50px auto 20px;
    background-color: var(--color-white);
    box-shadow: 0 0 8px #ddd;
    border-radius: 10px;
    padding: 20px 25px;
    font-family: "Montserrat" !important;
}
.container-profile-details * {
    font-family: "Montserrat" !important;
}
.fontText img {
    margin: 0 5px;
}
.rowFlow th,
.rowFlow td {
    text-align: start;
}
.sidebar-profile {
    padding: 0;
}
.sidebar-profile .sidebar-profile-container {
    background-color: var(--color-white);
}
.sidebar-profile .sidebar-profile-container .sidebar-profile-header {
    display: flex;
    width: 100%;
    padding: 15px 10px;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #ededed;
    margin-bottom: 2px;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-header
    .img-container {
    margin: 0 10px;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-header
    .img-container
    img {
    width: 50px;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-header
    .content-container
    p {
    margin-bottom: 0;
    font-weight: 600;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-header
    .content-container
    a {
    color: #069eed;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-header
    .content-container
    a
    img {
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-header
    .collapse-btn {
    position: absolute;
    left: 10px;
    width: 28px;
    cursor: pointer;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-header
    .collapse-btn
    img {
    width: 22px;
}
.sidebar-profile .sidebar-profile-container .sidebar-profile-body {
    border-top: 1px solid #ededed;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile {
    padding: 0;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li {
    list-style: none;
    margin: 0 25px;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row {
    display: block;
    position: relative;
    padding: 15px;
    margin: 10px 0;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    height: 50px;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li.active
    .link-row,
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row:hover {
    background-color: #e4f2ff;
    border-radius: 10px;
    color: #099ceb;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row:before {
    background: url(./../images/setting-1.png) no-repeat;
    content: "";
    width: 30px;
    height: 26px;
    background-size: 22px auto !important;
    position: absolute;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row.profile-row:before {
    background: url(./../images/setting-1.png) no-repeat;
    background-size: 19px auto !important;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li.active
    .link-row.profile-row:before,
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row.profile-row:hover:before {
    background: url(./../images/active-setting-1.png) no-repeat;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row.student-row:before {
    background: url(./../images/student.png) no-repeat;
    background-size: 25px auto !important;
    top: 10px;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li.active
    .link-row.student-row:before,
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row.student-row:hover:before {
    background: url(./../images/student-active.png) no-repeat;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row.callCenter-row:before {
    background: url(./../images/call-center.png) no-repeat;
    background-size: 30px auto !important;
    top: 10px;
    height: 32px;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li.active
    .link-row.callCenter-row:before,
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row.callCenter-row:hover:before {
    background: url(./../images/call-center.png) no-repeat;
}

.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row.resources-row:before {
    background: url(./../images/setting-2.png) no-repeat;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li.active
    .link-row.resources-row:before,
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row.resources-row:hover:before {
    background: url(./../images/active-setting-2.png) no-repeat;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row.message-row:before {
    background: url(./../images/setting-3.png) no-repeat;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li.active
    .link-row.message-row:before,
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row.message-row:hover:before {
    background: url(./../images/active-setting-3.png) no-repeat;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row.academy-row:before {
    background: url(./../images/academy.png) no-repeat;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li.active
    .link-row.academy-row:before,
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row.academy-row:hover:before {
    background: url(./../images/active-academy.png) no-repeat;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row.plan-row:before {
    background: url(./../images/plan.png) no-repeat;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li.active
    .link-row.plan-row:before,
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row.plan-row:hover:before {
    background: url(./../images/active-plan.png) no-repeat;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row.Materials-row:before {
    background: url(./../images/setting-4.png) no-repeat;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li.active
    .link-row.Materials-row:before,
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row.Materials-row:hover:before {
    background: url(./../images/active-setting-4.png) no-repeat;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row.invoice-row:before {
    background: url(./../images/setting-5.png) no-repeat;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li.active
    .link-row.invoice-row:before,
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row.invoice-row:hover:before {
    background: url(./../images/active-setting-5.png) no-repeat;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row.setting-row:before {
    background: url(./../images/setting-6.png) no-repeat;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li.active
    .link-row.setting-row:before,
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row.setting-row:hover:before {
    background: url(./../images/active-setting-6.png) no-repeat;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row.logout-row:before {
    background: url(./../images/setting-7.png) no-repeat;
}
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li.active
    .link-row.logout-row:before,
.sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row.logout-row:hover:before {
    background: url(./../images/active-setting-7.png) no-repeat;
}
.body-profile {
    padding: 0;
    padding-right: 3px;
}
.body-profile .tab-content {
    padding: 20px 10px;
    padding-left: px;
    background-color: var(--color-white);
}
.body-profile .tab-content .tab-content {
    padding-left: 0;
    padding-right: 0;
}
.body-profile .tab-content .input-search-form input,
.large-search .input-search-form input {
    height: 45px;
}
.body-profile .tab-content .input-search-form .input-group-addon,
.large-search .input-search-form .input-group-addon {
    width: 55px;
    font-size: 2rem;
    transition: all 0.3s;
}
.body-profile .tab-content .input-search-form .input-group-addon i,
.large-search .input-search-form .input-group-addon i {
    transform: scale(1);
    transition: all 0.3s;
}
.body-profile .tab-content .input-search-form .input-group-addon:hover i,
.large-search .input-search-form .input-group-addon:hover i {
    transform: scale(1.2);
    transition: all 0.3s;
}
.body-profile
    .tab-content
    .select2.select2-container
    .select2-selection
    .select2-selection__rendered {
    line-height: 44px;
}
.body-profile .tab-content .select2.select2-container .select2-selection {
    height: 44px;
}
.body-profile .tab-content .select2-container .select2-dropdown {
    margin-top: 1px;
}
.body-profile
    .tab-content
    .select2.select2-container
    .select2-selection
    .select2-selection__arrow {
    height: 42px;
}
.row-course-horizontal {
    width: 100%;
}
.row-course-horizontal .course-container {
    display: flex;
    width: 100%;
}
.row-course-horizontal .course-container .container-link {
    display: flex;
}
.row-course-horizontal .course-container .details-body ul {
    display: inline-flex;
}
.row-course-horizontal .course-container .details-body ul li {
    margin-left: 20px;
}
.row-course-horizontal .course-container .details-body {
    display: inline-block;
    width: calc(100% - 320px);
}
.row-course-horizontal .course-container .img-container {
    display: inline-block;
}
.row-course-horizontal .course-container .details-footer {
    position: absolute;
    display: inline-block;
    bottom: 0;
    width: 270px;
    right: 300px;
}
.row-course-horizontal .course-container .details-footer .price-list {
    border-top: 0px solid #eee;
}
.row-course-horizontal .course-container .details-footer .add-to-cart {
    display: none;
}
.sidebar-profile,
.body-profile {
    transition: all 0.3s;
}
.container-profile.collapse-profile .sidebar-profile {
    width: 8.33333333%;
    transition: all 0.3s;
}
.container-profile.collapse-profile .body-profile {
    width: 91.66666667%;
    transition: all 0.3s;
}
.container-profile.collapse-profile
    .sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-body
    .list-profile
    li
    .link-row
    span,
.container-profile.collapse-profile
    .sidebar-profile
    .sidebar-profile-container
    .sidebar-profile-header
    .content-container {
    display: none;
}

.container-profile-flex {
    display: flex;
}
.sidebar-profile .sidebar-profile-container,
.body-profile .tab-content {
    height: 100%;
}
.pdf-container ul {
    padding: 0;
    display: inline-flex;
}
.pdf-container ul li {
    display: inline-block;
    text-align: center;
    margin: 10px 5px;
}
.pdf-container.pdf-container-certificate ul li {
    width: 180px;
}
.pdf-container.pdf-container-certificate ul li .btn-theme {
    min-width: 100%;
    width: 100%;
    margin: 0 !important;
}
.pdf-container ul li a {
    display: inline-block;
    color: #000;
    text-decoration: none;
    padding: 8px;
    background-color: var(--color-white);
    transition: all 0.3s;
    border-radius: 5px;
    cursor: pointer;
}
.pdf-container.lecture-list ul li a {
    border: 1px solid #ededed;
    padding: 15px;
    min-width: 140px;
}
.pdf-container.lecture-list ul li a img {
    height: 70px;
    width: auto;
}
.pdf-container.pdf-container-certificate ul li a:not(.btn-theme) {
    background-color: #f5f5f5;
    padding: 15px 10px;
    margin-bottom: 5px;
}
.pdf-container ul li a:not(.btn-theme):hover {
    box-shadow: 0 0 7px #cdcdcd;
    transition: all 0.3s;
}
.pdf-container ul li a img {
    width: 100px;
}
.pdf-container.pdf-container-certificate ul li a:not(.btn-theme) img {
    width: 90px;
}
.pdf-container ul li a:not(.btn-theme) h3 {
    font-size: 1.4rem;
    color: #000;
    font-weight: 400;
}
.pdf-container.pdf-container-certificate ul li a:not(.btn-theme) h3 {
    font-size: 1.2rem;
    color: #000;
    font-weight: 600;
    height: 26px;
}
.pdf-container ul li a:not(.btn-theme) h3 span {
    display: block;
    margin-bottom: 5px;
}
.btn-pdf-certificate {
    margin: 0;
}
.btn-pdf-certificate > div {
    padding: 0 3px;
}

.row-my-profile-container {
    margin-top: 30px;
}
.row-my-profile-container .row-my-profile {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding: 10px 20px;
}
.row-my-profile-container .row-my-profile label {
    width: 250px;
    min-width: 250px;
}
.row-my-profile-container .row-my-profile p {
    color: #999;
}
.course-style a {
    font-size: 1.8rem;
    padding: 8px 14px;
    background-color: #fcfcfc;
    display: inline-block;
    border-radius: 5px;
    margin: 26px 5px 0;
    box-shadow: 0 0 4px #ddd;
    color: #000;
    cursor: pointer;
}
.course-style a.active {
    background-color: var(--color-main);
    color: var(--color-white);
}
.Courses-details-part2 .form-control {
    height: 44px;
}
.Courses-details-part2 textarea.form-control {
    height: auto;
}
.Header-mobile {
    display: none;
}

@media only screen and (max-width: 992px) {
    .Header-mobile {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-around;
        background: rgb(255, 255, 255);
        box-shadow: rgb(0 0 0 / 10%) 0px 1px 4px 3px;
        z-index: 1000;
    }
    .Header-mobile > a,
    .Header-mobile .dropdown,
    .Header-mobile .part-footer {
        text-align: center;
        font-size: 1.3rem;
        position: relative;
        padding: 10px 0;
        zoom: 0.85;
    }

    .Header-mobile > a:hover,
    .Header-mobile .dropdown:hover {
        background-color: rgba(0, 0, 0, 0.025);
    }

    .Header-mobile > a,
    .Header-mobile .user-dropdown {
        width: 20%;
        text-align: center;
        color: var(--color-main);
    }
    .Header-mobile .user-dropdown ion-icon,
    .Header-mobile .user-dropdown span {
        color: var(--color-main);
    }

    .Header-mobile > a ion-icon {
        /* font-size: 30px; */
    }

    .Header-mobile > a > strong {
        display: inline-flex;
        border-radius: 300px;
        cursor: unset;
        box-shadow: unset;
        transition: all 150ms ease-in-out 0s;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
        background-color: rgb(233, 69, 96);
        color: rgb(255, 255, 255);
        position: absolute;
        top: 5px;
        right: calc(50% - 15px);
        font-weight: 600;
    }
    .Header-mobile > a > svg,
    .Header-mobile .part-footer > svg {
        display: block;
        margin: auto;
    }
    .Header-mobile > a > svg path,
    .Header-mobile .part-footer > svg path {
        fill: #383838;
    }
    .Header-mobile > a > span,
    .Header-mobile .part-footer > span {
        display: block;
        font-weight: 600;
        overflow: hidden;
    }
}

.hint-change-password {
    padding-top: 15px;
    margin-top: 10px;
    border-top: 1px solid #ededed;
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 30px;
}
.box-message {
    display: flex;
    justify-items: flex-start;
    align-items: center;
    border: 1px solid #eeee;
    border-radius: 15px;
    padding: 15px;
    width: 500px;
    position: relative;
    max-width: 100%;
    transition: all 0.3s;
    margin-bottom: 20px;
}
.box-message:hover {
    transition: all 0.3s;
    box-shadow: 0 0 3px #ccc;
}
.box-message .img-container img {
    width: 60px;
    border-radius: 50%;
    height: 60px;
}
.box-message .box-message-container {
    padding: 0 10px;
}
.box-message .box-message-container p {
    color: #999;
}
.box-message .box-message-container strong {
    font-size: 1.3rem;
    color: #f59b22;
}
.box-message .delete-message img {
    width: 33px;
    padding: 8px;
    border-radius: 50%;
    background-color: #fef3f3;
    position: absolute;
    top: 9px;
    cursor: pointer;
}
.box-message .delete-message:hover img {
    transform: scale(1.04);
}
.table-setting {
    width: 650px;
    max-width: 100%;
}
.table-setting table {
    border-radius: 5px;
}
.table-setting table tr td,
.table-setting table tr th {
    vertical-align: middle;
    text-align: center;
}
.table-setting table tr td button {
    width: 100%;
    height: 40px;
    font-size: 1.6rem;
}
.whatsAppIcon {
    position: fixed;
    bottom: 80px;
    right: 15px;
    width: 50px;
    height: 50px;
    color: var(--color-white);
    font-size: 30px;
    text-transform: uppercase;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    background: #25d366;
    display: block;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.whatsAppIcon a {
    color: var(--color-white);
}
.hint-theme {
    border-radius: 5px;
    padding: 10px 15px;
    color: var(--color-white);
    background-color: #069eed;
}
.semester-nav {
    padding: 0;
    border-bottom: 1px solid #ededed;
}
.semester-nav li {
    display: inline-block;
}
.semester-nav li a {
    padding: 15px 0px;
    margin: 0 30px;
    display: inline-block;
    color: #777;
    border-bottom: 1px solid transparent;
}
.semester-nav li.active {
    background-color: transparent;
}
.semester-nav li.active a,
.semester-nav li.active a:hover,
.semester-nav li a:hover {
    color: #069eed;
    border-color: #069eed;
    background-color: transparent;
}
.table-gpa tr th,
.table-gpa tr td {
    text-align: center;
    vertical-align: middle !important;
}
.table-gpa tr td .arrow-btn {
    padding: 6px 10px;
    width: 28px;
    cursor: pointer;
}
.table-gpa tr td .arrow-btn:hover {
    opacity: 0.7;
}
.table-gpa tr th {
    padding: 15px 10px;
    background-color: #f2f2f4;
    font-size: 1.3rem;
    border-bottom: none;
}
.table.table-gpa > tbody > tr > td {
    padding: 15px 5px;
}
.large-padding .table > tbody > tr > td {
    padding: 20px 5px;
}
.subtotal-setting-table {
    line-height: 25px;
}
.subtotal-setting-table span {
    color: #171d6e;
    font-size: 1.6rem;
    display: inline-block;
    margin: 0 5px;
}
.nav-pills > li {
    margin-bottom: 10px;
}
.content-section .d-flex-start {
    justify-content: space-between !important;
}
.content-section .d-flex-start > div {
    width: auto !important;
}
@media (max-width: 768px) {
    .kbw-signature {
        margin: 0 !important;
    }
    .error-page .btn {
        width: 100% !important;
        margin: 5px 0 !important;
    }
    .error-page .col-md-12 {
        float: left;
    }
    .error-page .btn.btn-danger {
        padding: 0px 10px;
        width: 85px !important;
        text-align: left;
        min-width: 85px !important;
        float: left;
    }
    #sigpad canvas {
        max-width: 100% !important;
    }
    .row-flex {
        width: 90%;
        margin: auto;
    }
    .hint-theme {
        padding: 10px 12px;
    }
    .btn-question {
        flex-direction: column;
    }
    .header-section p {
        font-size: 1.2rem;
    }
    .section-content {
        padding: 5px;
    }
    .d-flex-center p {
        font-size: 11px;
        font-weight: 600;
    }
    .d-flex-center p.bold {
        font-size: 11px !important;
    }
    .header-section {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .content-section {
        margin-left: 0px !important;
    }
    .content-section .d-flex-between p,
    .content-section .d-custom p,
    .content-section .d-flex-start p {
        font-size: 12px !important;
        margin-bottom: 4px;
        font-weight: 600;
    }

    .footer-section p {
        font-size: 10px !important;
    }
    .header-section > div.center,
    .header-section > div.left {
        text-align: start !important;
    }
    .header-section > div {
        width: 100% !important;
    }
    .content-section-col {
        width: 100% !important;
    }
    .d-flex-center p {
        font-size: 10px !important;
    }
    .cart-details-container .cart-section .img-container img {
        width: 130px;
        height: 130px;
        max-height: 130px;
        max-width: calc(100% - 105px);
        margin: 0;
        display: block;
    }
    .cart-details-container .cart-section .action-course .delete-btn {
        margin-bottom: 5px;
    }
    .cart-details-container .cart-section .action-course {
        width: auto;
        min-width: max-content;
        margin-top: -135px;
    }
    .cart-container,
    .cart-details-container .cart-section {
        display: block;
    }
    .cart-details-container .cart-section .details-container {
        width: 100%;
    }
    .pdf-container.lecture-list ul li a img {
        height: 50px;
    }
    .pdf-container.lecture-list ul li a {
        min-width: 120px;
    }
    .table-setting {
        overflow: auto;
    }
    .avatar-upload .avatar-edit label.LabelUploadImg i {
        line-height: 22px;
        font-size: 1.8rem;
        margin-bottom: 2px;
    }
    .avatar-upload {
        width: 120px;
        /* height: 120px; */
    }
    .col-md-2.course-style {
        display: none;
    }
    .body-profile .tab-content {
        padding: 20px 10px !important;
    }
    .box-message {
        width: 100%;
        zoom: 0.8;
    }
    .sidebar-profile .sidebar-profile-container .sidebar-profile-header {
        padding: 15px 5px;
        zoom: 0.9;
    }
    .sidebar-profile
        .sidebar-profile-container
        .sidebar-profile-body
        .list-profile
        li {
        margin: 0 5px;
    }
    .sidebar-profile
        .sidebar-profile-container
        .sidebar-profile-header
        .collapse-btn {
        top: 10px;
    }
    .sidebar-profile
        .sidebar-profile-container
        .sidebar-profile-header
        .img-container {
        display: none;
    }
    .sidebar-profile
        .sidebar-profile-container
        .sidebar-profile-body
        .list-profile
        li
        .link-row:before {
        background-size: 17px auto !important;
        transform: translate(-50%, -17px);
        left: 57%;
        right: unset;
        text-align: center;
    }
    .sidebar-profile
        .sidebar-profile-container
        .sidebar-profile-body
        .list-profile
        li
        .link-row.profile-row:before {
        background-size: 16px auto !important;
    }
    .sidebar-profile
        .sidebar-profile-container
        .sidebar-profile-body
        .list-profile
        li
        .link-row
        span {
        display: block;
        width: 100%;
        font-size: 11px;
        margin-top: 5px;
    }
    .row-my-profile-container .row-my-profile {
        padding: 10px 0px;
    }
    .body-profile .tab-content .input-search-form .input-group-addon i,
    .large-search .input-search-form .input-group-addon i {
        transform: scale(0.8);
    }
    .p-l-r-20 {
        padding-left: 5px;
        padding-right: 5px;
    }
    .container-profile
        .sidebar-profile
        .sidebar-profile-container
        .sidebar-profile-body
        .list-profile
        li
        .link-row {
        padding: 23px 0 10px;
        text-align: center;
        width: 95px;
    }
    .container-profile.collapse-profile
        .sidebar-profile
        .sidebar-profile-container
        .sidebar-profile-body
        .list-profile
        li
        .link-row {
        padding: 30px 0px 10px;
        width: 37px;
    }
    .container-profile.collapse-profile
        .sidebar-profile
        .sidebar-profile-container
        .sidebar-profile-body
        .list-profile
        li
        .link-row:before {
        left: 67%;
    }
    .container-profile.collapse-profile
        .sidebar-profile
        .sidebar-profile-container
        .sidebar-profile-body
        .list-profile
        li
        .link-row {
        height: 46px;
    }
    .container-profile .body-profile {
        width: calc(100% - 112px);
    }
    .container-profile.collapse-profile .body-profile {
        width: calc(100% - 50px);
    }
    .sidebar-profile {
        width: 110px;
    }
    .container-profile.collapse-profile .sidebar-profile {
        width: 50px;
        transition: all 0.3s;
    }
    .row-my-profile-container .row-my-profile {
        display: block;
    }
    .Courses-details-part-video,
    .single-video-accordion {
        padding: 15px;
    }
    .video-lession {
        padding: 10px;
    }
    .pdf-container ul {
        display: block;
    }
    .links-account a {
        zoom: 0.8;
        margin-bottom: 20px;
    }
    ul.nav.navbar-nav.navbar-right {
        display: none;
    }
    body {
        padding-bottom: 60px;
    }
    .SidebarContainer {
        z-index: 9999999;
    }
    .part-footer ~ .dropdown-menu {
        bottom: 100%;
        top: unset;
    }
    .whatsAppIcon {
        bottom: 90px;
        zoom: 0.8;
    }

    .text-center-nav li {
        margin: 5px 0;
        display: block;
    }
    .error-page {
        padding: 20px 0;
    }
    .contactus-page {
        width: 100%;
        margin: 15px 0;
        max-width: 100%;
    }
    .contactus-page p {
        width: 100%;
    }
    .privacy-section h4 {
        margin-top: 20px;
    }
    .box-style-lession:before {
        display: none;
    }
    .cr-breadcrumb-area {
        padding: 70px 0;
    }
    .cr-breadcrumb-area .title-breadcrumb {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .cr-breadcrumb-area .breadcrumb-list li a {
        font-size: 1.3rem;
    }
    .navbar-toggle .icon-bar {
        background-color: var(--color-white);
    }

    .top-header-flex .date {
        display: none;
    }

    .top-header .top-header-flex .language-social {
        justify-content: space-between;
        align-items: center;
        zoom: 0.85;
        width: 100%;
    }

    .top-header .top-header-flex .language-social .socail-media ul li a img {
        width: 30px;
    }

    .register-homepage .section-register .content h5 {
        margin: 20px 0 5px;
        font-size: 1.8rem;
    }

    .register-homepage .section-register .content p {
        margin: 10px 30px;
    }

    .about-us .imgSec:after {
        display: none;
    }

    .about-us .imgSec {
        /* padding-right: 0; */
        margin: 10px auto;
    }

    .btn-theme.btn-more {
        position: static;
        margin: 15px !important;
        width: calc(100% - 30px);
    }

    .navbar-nav {
        margin: 0;
        padding: 0;
    }

    .navbar-right li {
        display: inline-block;
    }

    .footer .container .links-footer ul li a {
        font-size: 11px;
    }

    /* .footer .payment-social .payment-social-container .social-section ul li a img,
    .footer .payment-social .payment-social-container .visa-section ul li a img {
        height: 18px;
    } */

    .footer .copyright {
        font-size: 10px;
    }

    .owl-buttons {
        display: none;
    }

    .navbar .navbar-nav > li > a {
        font-size: 1.2rem;
    }

    .search-card {
        padding-right: 5px;
        margin-right: 5px;
    }

    .navbar .search-card li {
        margin: 0px 5px;
    }
    .cutom-home-slider {
        min-height: 200px;
    }
    .home-slider .owl-carousel .owl-item img {
        /* width: calc(100% - 15px); */
        height: 200px;
    }

    .navbar {
        border: none;
        padding: 5px 0;
    }

    .title-description {
        color: #8a8a8a;
        padding: 0 20px;
    }
    .about-us-page.about-us p {
        width: 100%;
    }
    .about-us-page.about-us h3 {
        width: 100%;
    }
    .sidebar-course-details {
        top: 0;
        margin: 20px 0 !important;
        width: 100%;
    }
    .Courses-details .main-information .information-course .rate-inline,
    .cart-section .information-course .rate-inline {
        margin: 10px 0;
    }
    .Courses-details .main-information .information-course,
    .cart-section .information-course {
        display: block;
    }
    .breadcrumb-list-horizontal li,
    .Course-tags li {
        font-size: 1.2rem;
    }
    .breadcrumb-list-horizontal li:not(:last-child) a:after {
        padding-right: 7px;
        top: 1px;
        font-size: 1.4rem;
    }
    .Course-tags li a {
        font-size: 1.4rem;
    }
    .h2,
    h2 {
        font-size: 25px;
    }
    .nav-pills > li + li,
    .nav-pills > li {
        display: block;
        width: 100%;
        margin: 5px 0 !important;
    }
    .padd-end-0 {
        padding: 0 15px !important;
    }
    .form-style .form-style-container {
        width: 100%;
        margin: 20px auto;
    }
    .form-style .form-style-container h4 span {
        position: static;
        margin: 10px;
        display: block;
        text-align: end;
    }
    .form-style .form-style-container p {
        width: 100%;
    }

    .form-style.form-style-account {
        padding: 20px 30px;
    }
    .rating-part-container {
        margin: auto !important;
    }
    .rating-container {
        display: block;
    }
    .second-level {
        display: block;
    }
    .Organizer .flex-row .col {
        display: block;
    }
    .Organizer .flex-row {
        display: block;
        margin: 0;
    }
    .Organizer .large-section {
        display: grid;
        line-height: 28px;
        align-content: center;
        font-size: 2.2rem;
        /*font-size: 1.3rem;*/
        width: 100%;
        z-index: 99;
    }

    .Organizer .large-section.left-arrow:after {
        position: absolute;
        left: -27px;
        font-size: 44px;
        width: 29px;
        height: 20px;
        top: 31px;
    }
    .Organizer .large-section.left-arrow:before {
        width: 29px;
        top: 31px;
        right: -27px;
    }
    .Organizer .flex-row .col .normal-section {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        transform: scale(1);
        transition: all 0.3s;
    }
    .Organizer .flex-row .col .normal-section:hover {
        transform: scale(1.2);
        transition: all 0.3s;
    }
    .Organizer .flex-row .col .normal-section {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        transform: scale(1);
        transition: all 0.3s;
    }
    .Organizer .flex-row .col .normal-section:hover {
        transform: scale(1.2);
        transition: all 0.3s;
    }

    .Organizer .normal-section.arrow-top:before {
        left: calc(50% - 2px);
    }
    .Organizer .normal-section.arrow-top.spical-arrow:before {
        display: none;
    }
    .header-section {
        font-size: 28px;
        padding: 0 30px;
    }
    .Organizer .second-normal-section-box {
        margin-top: 0px;
    }
    .navbar .navbar-brand img {
        transform: scale(1);
        /* margin: 0px 15px !important;
        width: auto;
        height: 53px; */
    }
    .second-level:after {
        display: none;
    }
    .course-container .details-footer .add-to-cart {
        border-radius: 0px 0px 1px 15px;
        bottom: 0px;
        width: 50px;
        transition: all 0.5s;
        font-size: 0;
    }
    .course-container .img-container {
        height: 235px;
    }
    .pdf-container.pdf-container-certificate ul li {
        width: calc(50% - 12px);
    }
    .flex-between {
        display: block;
    }
    .question-row.question-header {
        top: 0px;
    }
}
.loading::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    left: 0;
    top: 0;
    z-index: 98;
    background-color: #000;
    opacity: 0.1;
}
.loading::after {
    content: "";
    background: url(./../images/loading.svg) no-repeat;
    position: absolute;
    background-size: 170px;
    width: 170px;
    height: 170px;
    z-index: 99;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}
.navbar-nav > li > .dropdown-menu li {
    position: relative;
}
.dropdown-menu > li:hover > .submenu {
    display: block;
    position: absolute;
    top: -3px;
    right: calc(100% - 0px);
    border-radius: 0;
}
.dropdown-item.dropdown-toggle:after {
    content: "\f053";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 5px;
    top: 9px;
    color: #777;
}
.Check-radio {
    width: 340px;
    margin: 10px auto 20px;
}
.Check-radio input[type="radio"] {
    width: 25px;
    height: 16px;
    position: relative;
    top: 3px;
}
.Check-radio label {
    font-weight: 600;
}
.Check-radio label a {
    text-decoration: underline;
    font-size: 1.2rem;
}
.tabby-promo__graph {
    padding: 0 18px 10px;
    display: flex;
    flex-flow: row nowrap;
    --active-ellipsis-color: #3eedbf;
    --inactive-ellipsis-color: #d1ced4;
    --dark-ellipsis-color: var(--color-main);
}
@media (max-width: 340px) {
    .tabby-promo__graph {
        padding: 0 10px 10px;
    }
}
@media (max-width: 400px) {
    .tabby-promo__graph {
        padding: 0 5px 10px;
    }
}
.tabby-promo__graph .tabby-promo__graph__ellipse {
    display: inline-block;
    height: 32px;
    min-width: 32px;
    border-radius: 100%;
    border: 1px solid #acacb6;
    overflow: hidden;
    position: relative;
    background: var(--color-white);
    box-sizing: border-box;
}
.tabby-promo__graph
    .tabby-promo__graph__ellipse.tabby-promo__graph__ellipse_big {
    height: 40px;
    min-width: 40px;
}
.tabby-promo__graph
    .tabby-promo__graph__ellipse.tabby-promo__graph__ellipse_active {
    border: 1px solid var(--color-main);
}
.tabby-promo__graph
    .tabby-promo__graph__ellipse.tabby-promo__graph__ellipse_dark {
    border: 1px solid var(--color-main);
}
.tabby-promo__graph .tabby-promo__graph__ellipse::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-white);
    border-radius: 100%;
    box-sizing: border-box;
    top: 0;
}
.tabby-promo__graph
    .tabby-promo__graph__ellipse
    .tabby-promo__graph__ellipse-section-1 {
    background: linear-gradient(90deg, var(--color-white) 50%, transparent 50%),
        linear-gradient(0deg, transparent 50%, var(--color-main) 50%);
    height: 100%;
}
.tabby-promo__graph
    .tabby-promo__graph__ellipse
    .tabby-promo__graph__ellipse-section-1_dark {
    background: linear-gradient(90deg, var(--color-white) 50%, transparent 50%),
        linear-gradient(0deg, transparent 50%, var(--color-main) 50%);
}
.tabby-promo__graph
    .tabby-promo__graph__ellipse
    .tabby-promo__graph__ellipse-section-2 {
    background: linear-gradient(90deg, transparent 50%, var(--color-main) 50%);
    height: 100%;
}
.tabby-promo__graph
    .tabby-promo__graph__ellipse
    .tabby-promo__graph__ellipse-section-2_dark {
    background: linear-gradient(90deg, transparent 50%, var(--color-main) 50%);
}
.tabby-promo__graph
    .tabby-promo__graph__ellipse
    .tabby-promo__graph__ellipse-section-3 {
    background: linear-gradient(180deg, transparent 50%, var(--color-main) 50%),
        linear-gradient(90deg, transparent 50%, var(--color-main) 50%);
    height: 100%;
}
.tabby-promo__graph
    .tabby-promo__graph__ellipse
    .tabby-promo__graph__ellipse-section-3_dark {
    background: linear-gradient(180deg, transparent 50%, var(--color-main) 50%),
        linear-gradient(90deg, transparent 50%, var(--color-main) 50%);
}
.tabby-promo__graph
    .tabby-promo__graph__ellipse
    .tabby-promo__graph__ellipse-section-4 {
    background: var(--color-main);
    height: 100%;
}
.tabby-promo__graph
    .tabby-promo__graph__ellipse
    .tabby-promo__graph__ellipse-section-4_dark {
    background: var(--color-main);
}

.tabby-promo__graph .tabby-promo__graph__ellipse-divider {
    height: 32px;
    width: 67px;
    position: relative;
}
.tabby-promo__graph .tabby-promo__graph__ellipse-divider::after {
    content: "";
    position: absolute;
    height: 1px;
    top: 50%;
    width: 100%;
    background-color: #acacb6;
}
.tabby-promo__graph .tabby-promo__graph__ellipse-divider_active::after {
    background-color: var(--color-main);
}
.tabby-promo__graph .tabby-promo__graph__ellipse-divider_dark::after {
    background-color: var(--color-main);
}
.tabby-promo__graph .tabby-promo__graph__ellipse-divider_big {
    height: 40px;
}
.tabby-promo__graph p {
    width: 100px;
    text-align: start;
}
.tabby-promo__graph p span {
    display: block;
    width: 100%;
    font-weight: 600;
    font-size: 1.2rem;
}
.title-installment {
    font-weight: 600;
    margin-bottom: 25px;
}
.title-installment-2 {
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.6rem;
}
.list-installment {
}
.list-installment li {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 5px;
    list-style: auto;
}
.modal-footer.padding-0 {
    padding: 0;
}
.payment-method2 {
    display: flex;
    width: 100%;
    justify-content: space-between;
    background-color: #3c3c3c;
    padding: 10px;
    color: var(--color-white);
    align-items: center;
}
.payment-method2 img {
    height: 35px;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header:before,
.modal-header:after {
    display: none;
    content: unset;
}
.modal-header .modal-title {
    padding: 5px;
    background-color: var(--color-main);
    border-radius: 5px;
    color: var(--color-white);
}

.products .category-list a {
    display: flex;
    align-items: center;
    color: #000;
    font-family: "Lato Medium";
    font-size: 1.4rem;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 10px 20px;
    min-height: 70px;
    margin-bottom: 10px;
    transition: 0.5s ease;
    text-decoration: none;
}
.products .category-list a:last-child {
    margin-bottom: 0;
}
.products .category-list a .icon,
.products .category-list a .icon img {
    width: 22px;
    height: auto;
    display: block;
}
.products .category-list a .title {
    margin-left: 10px;
}
.products .title h5 {
    margin-top: 0;
}
.products .category-list a:hover {
    box-shadow: 0 5px 10px 1px #00000015;
    border-color: var(--color-main);
    transform: translateY(-5px);
}
.products .category-list a.active {
    color: var(--color-white);
    background: var(--color-main);
    border-color: transparent;
    box-shadow: 0 5px 10px 1px #00000015;
}
.products .category-items .title-category {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 30px;
}
.products .category-items .title-category h6 {
    margin: 0;
    margin-right: 10px;
}
.products .category-items .title-category span {
    height: 25px;
}
.products .category-items:last-child {
    margin: 0 !important;
}
.course-card {
    margin-bottom: 20px;
}
.related-products .product-card .head-card .image {
    margin-top: 25px !important;
}
.related-products .product-card .head-card .title h3 {
    margin: 0 !important;
}
.related-products .product-card p .course-type {
    font-size: 1.2rem;
    position: relative;
}
.related-products .product-card p .course-type:before {
    width: 6px;
    height: 6px;
}
.related-products .product-card .head-card {
    box-shadow: 0 3px 7px 1px #0000000c;
    padding: 20px;
    text-align: center;
}
.product-card .head-card .title h3 a {
    color: #000;
    font-size: 1.6rem;
    display: inline-block;
    font-family: "Lato Regular";
}

.related-products .product-card {
    background: var(--color-white);
}
.related-products .product-card .head-card {
    box-shadow: 0 3px 7px 1px #0000000c;
    padding: 20px;
    text-align: center;
}
.related-products .product-card .head-card .image img {
    object-fit: contain;
    width: 75%;
    height: 75px;
    margin: 0 auto;
}
.related-products .product-card .card-body {
    border: 1px solid #e1e1e1;
    border-top: 0;
    position: relative;
    padding: 20px;
}
.related-products .product-card .card-body .price {
    position: relative;
    min-height: 65px;
}
.related-products .product-card .card-body .price .offer {
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 1.2rem;
    line-height: 1;
    font-family: "Lato Black";
    background: var(--color-main);
    color: var(--color-white);
    width: auto;
    padding: 2.5rem 5px 0.3rem;
    text-align: center;
}
.related-products .product-card .card-body .group-button > * {
    border-radius: 0;
    font-size: 1.2rem;
    margin-top: 0 !important;
}
.related-products .product-card .card-body .group-button > .btn-cart {
    color: var(--color-main);
    background-color: #dbdbdb;
    font-size: 1.6rem;
}
.related-products .product-card .card-body .group-button > .btn-fav {
    cursor: pointer;
    line-height: 24px;
    font-size: 1.7rem;
    background-color: #db0000;
    color: var(--color-white);
}
.related-products .product-card .card-body .group-button a.buy-now {
    line-height: 1;
}
.related-products .product-card .card-body .group-button .btn-hover:hover {
    background: var(--color-main);
    color: var(--color-white);
    border: 1px solid var(--color-main) !important;
}
.related-products
    .product-card
    .card-body
    .group-button
    .btn-hover:hover
    i.main-color {
    color: var(--color-white) !important;
}
.related-products
    .product-card
    .card-body
    .group-button
    button.btn.border.disabled {
    background: #979ea3;
    color: #ebeeef;
    border: 1px solid #979ea3 !important;
}
.product-card .head-card .title-card h3 a {
    color: #000;
    font-size: 1.6rem;
    display: inline-block;
    text-decoration: none;
}
.product-card .head-card .title-card {
    min-height: 75px;
}
.related-products .item {
    padding: 10px 5px;
}
.products .products-type {
    margin-bottom: 25px;
}
.products .products-type .links-type button {
    background: var(--color-white);
    box-shadow: 0 5px 10px 1px #00000015;
    padding: 10px;
    border-radius: 5px;
    min-width: 140px;
    display: inline-block;
    text-align: center;
    margin-left: 10px;
    color: #000;
    font-size: 1.2rem;
    border: 0;
    cursor: pointer;
    transition: 0.5s ease;
    border: 1px solid transparent;
    outline: none;
}
.products .products-type .links-type button.active {
    background: var(--color-main);
    color: var(--color-white);
    border: 1px solid var(--color-main) !important;
}
.related-products .product-card .card-body .group-button .btn-hover:hover {
    background: var(--color-main);
    color: var(--color-white);
    border: 1px solid var(--color-main) !important;
}
.title-head {
    color: var(--color-main);
    font-weight: 600;
}
.old-price-head {
    color: rgb(110, 110, 110);
    font-size: 1.2rem;
    text-decoration: line-through;
}
.related-products .product-card p .course-type:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: var(--color-main);
    border-radius: 50%;
    position: absolute;
    left: -15px;
    top: 6px;
}
.custom-modal .modal-dialog {
    -webkit-transform: translate(-50%, -50%) !important;
    -ms-transform: translate(-50%, -50%) !important;
    -o-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: auto;
    max-width: 600px;
    width: 95%;
}
.custom-modal .modal-dialog .modal-header {
    background: linear-gradient(to left, #006870, #3580ab, #5db5b3);
    color: var(--color-white);
}
.custom-modal .modal-dialog .modal-header h5 {
    font-weight: 600;
}
.section-content-student .col-md-4 {
    padding: 0 5px;
}
.section-content-student .item {
    background: var(--color-white);
    border: solid 1px #d4d4d4;
    border-radius: 5px;
    margin: 15px 0;
    padding: 15px 10px;
}
.section-content-student .item {
    background: var(--color-white);
    border: solid 1px #d4d4d4;
    border-radius: 5px;
    margin: 15px 0;
    padding: 15px 10px;
}
.section-content-student .item:hover {
    box-shadow: -1px 0px 15px rgba(0, 0, 0, 0.2);
}
.section-content-student .item a {
    text-decoration: none;
}
.section-content-student .item .icon {
    min-height: 100px;
    padding-top: 25px;
}
.section-content-student .item h2 {
    margin: 0;
    color: var(--color-main);
    font-size: 1.5rem;
}
@media print {
    .header-section {
        flex-direction: row;
    }
    .footer-section p {
        font-size: 12px !important;
    }
    .header-section > div.center {
        text-align: center !important;
    }
    .header-section > div.left {
        text-align: end !important;
    }
    .content-section {
        margin-left: 10px !important;
    }
    .header-section > div {
        width: 33% !important;
    }
    .content-section-col {
        width: 50% !important;
    }
    .d-flex-center p {
        font-size: 12px !important;
    }
    .sidebar-profile,
    .top-header,
    .navbar,
    .Header-mobile,
    .whatsAppIcon,
    .btn-print,
    .footer {
        display: none !important;
    }
    .header-section p {
        font-size: 1.3rem;
    }
    .container-profile .body-profile {
        width: 100%;
    }
    .hint-theme {
        border-radius: 5px;
        padding: 10px 15px;
        color: var(--color-white) !important;
        background-color: #069eed !important;
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    .section-content {
        padding: 5px !important;
    }
}

.targeted-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 5px;
    padding: 10px;
    width: 100%;
    margin: 15px 0;
    height: 145px;
    font-weight: 500;
    background-color: var(--color-light);
}

.targeted-item svg {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    fill: var(--color-main);
}

.footer .fab {
    color: #fff;
    font-size: 2.4rem;
    margin: 0 0.25rem;
}

.payment_methods li input {
    cursor: pointer;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
}

.payment_methods li label {
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 10px;
    background-color: rgba(0, 0, 0, 0.02);
    border: 2px solid rgba(0, 0, 0, 0.02);
}

.payment_methods li input:checked + label {
    color: var(--color-purple);
    border-color: var(--color-purple);
}

.payment-img {
    width: 50px;
    height: 30px;
    border-radius: 4px;
    object-fit: contain;
    border: 1px solid rgba(0, 0, 0, 0.03);
    background-color: var(--color-white);
}

.payment_methods .payment-img {
    width: 40px;
    height: 25px;
}

/* .payment_methods  */

.btn-dark{
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark.focus, .btn-dark:focus {
    box-shadow: 0 0 0 .2rem rgba(52,58,64,.5);
    color:#fff;
}

.btn-dark:hover {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124;
}

.btn-dark:not(:disabled):not(.disabled).active, .btn-dark:not(:disabled):not(.disabled):active, .show > .btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #1d2124;
    border-color: #171a1d;
}
