:root {
    /* --color-primary: rgb(24, 71, 150); */
    /* --color-secondary: #e67e00; */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-body-text: #121212;
    --color-heading: #000000;
    --color-description: #292828;
    --color-breadcrum-text: rgba(255, 255, 255, 0.8);
    --color-footer-text: var(--color-white);
    --color-footer-divider: var(--color-white);
    --color-divider: rgba(128, 137, 150, 0.1);
    --color-divider-3: rgba(128, 137, 150, 0.3);
    --color-ribbon-text: var(--color-white);
    /* --color-ribbon-blue-bg: rgba(53, 143, 247, 0.1);
    --color-ribbon-blue-bg-text: #358ff7; */
    --color-ribbon-border: var(--color-primary);
    --color-border: rgba(128, 137, 150, 0.5);
    --color-border-highlight: rgba(128, 137, 150, 0.8);
    --color-facebook: #3e5b99;
    --color-twitter: #3aaae1;
    --color-instagram: #dd493d;
    --color-linkedin: #358ff7;
    --color-youtube: #ff0000;
    --color-black-2: rgb(0, 0, 0, 0.2);
    --color-box-shadow: rgba(82, 85, 90, 0.1);
    /* --color-primary-1: rgb(24, 71, 150, 0.1);
    --color-primary-2: rgb(24, 71, 150, 0.2);
    --color-primary-02: rgb(24, 71, 150, 0.02); */
    --color-badge: #f68a03;
    --color-badge-blue: #358ff7;
    --color-badge-green: #38bb0c;
    --color-badge-red: #dd493d;
    --color-badge-sky-blue: #3aaae1;
    --color-success: #38bb0c;
    --color-hover: rgba(128, 137, 150, 0.1);
    --color-overlay: rgba(30, 30, 28, 0.9);
    --color-dark: #1b1b1b;
    --color-dark-1: #292929;
    --color-dark-2: #3a3a3a;
    --color-dark-3: #adb5bd;
    --color-dark-border: rgba(238, 238, 238, 0.1);
    --color-dark-border-1: rgba(238, 238, 238, 0.6);
    --color-dark-boder-2: rgba(27, 27, 27, 0.4);
    --color-dark-boder-3: rgba(41, 41, 41, 0.1);
}

/*---------------- css loader ----------------*/
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/*---------------- dot-move ----------------*/
@-webkit-keyframes dot-move {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(88px);
        transform: translateX(88px);
    }
}

@-webkit-keyframes dot-move {
    from {
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -ms-transform: translateX(88px);
        transform: translateX(88px);
    }
}

@keyframes dot-move {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(88px);
        transform: translateX(88px);
    }
}

/*---------------- dot-move 2 ----------------*/
@-webkit-keyframes dot-move2 {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(48px);
        transform: translateX(48px);
    }
}

@-webkit-keyframes dot-move2 {
    from {
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -ms-transform: translateX(48px);
        transform: translateX(48px);
    }
}

@keyframes dot-move2 {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(48px);
        transform: translateX(48px);
    }
}

/*============== play-button-pulse ==============*/
@-webkit-keyframes play-button-pulse {
    0% {
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@-moz-keyframes play-button-pulse {
    0% {
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@-ms-keyframes play-button-pulse {
    0% {
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@-o-keyframes play-button-pulse {
    0% {
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes play-button-pulse {
    0% {
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes blink {
    50% {
        opacity: 1;
    }
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

a:hover,
a:focus {
    text-decoration: none !important;
}

button:focus,
input:focus {
    outline: none;
}

body,
html {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-heading);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

body {
    font-size: 16px;
    line-height: 28px;
    font-family: "Inter", sans-serif;
    color: var(--color-body-text);
    position: relative;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-weight: 500;
}

a {
    text-decoration: none;
}

.cursor-pointer {
    cursor: pointer;
}

.z-index-n1 {
    z-index: -1;
}

.z-index-6 {
    z-index: 6 !important;
}

/*===== container =======*/
.container {
    max-width: 1200px;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

@media (min-width: 1500px) {
    .container {
        max-width: 1370px;
    }
}

/*====== position =======*/
.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

/*====== opacity =======*/
.opacity-1 {
    opacity: 0.1 !important;
}

.opacity-2 {
    opacity: 0.2 !important;
}

.opacity-3 {
    opacity: 0.3 !important;
}

.opacity-4 {
    opacity: 0.4 !important;
}

.opacity-5 {
    opacity: 0.5 !important;
}

.opacity-6 {
    opacity: 0.6 !important;
}

/*====== font-family =======*/
.theme-font-2 {
    font-family: "Noto Serif JP", serif !important;
}

/*====== hover effect =======*/
.hover-y,
.hover-s {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.hover-y:hover {
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
}

.hover-s:hover {
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
    transform: scale(1.02);
}

/*====== color =======*/
.text-black {
    color: var(--color-black) !important;
}

.text-desc {
    color: var(--color-description) !important;
}

.text-color {
    color: var(--color-primary) !important;
}

.text-inherit {
    color: inherit !important;
}

.svg-icon-color-gray path {
    fill: var(--color-description);
}

.svg-icon-color-white path {
    fill: var(--color-white);
}

/*====== border color =======*/
.border-gray {
    border-color: var(--color-border) !important;
}

.border-top-gray {
    border-top-color: var(--color-border) !important;
}

.border-right-gray {
    border-right-color: var(--color-border) !important;
}

.border-bottom-gray {
    border-bottom-color: var(--color-border) !important;
}

.border-left-gray {
    border-left-color: var(--color-border) !important;
}

/*====== width =======*/
.w-50px {
    width: 50px !important;
}

.w-60px {
    width: 60px !important;
}

.w-70px {
    width: 70px !important;
}

.w-80px {
    width: 80px !important;
}

.w-90px {
    width: 90px !important;
}

.w-100px {
    width: 100px !important;
}

/*====== padding =======*/
.section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
}

.section--padding {
    padding-top: 120px;
    padding-bottom: 90px;
}

.section-heading {
    position: relative;
    z-index: 1;
}

/*====== padding top =======*/
.pt-200px {
    padding-top: 200px !important;
}

.pt-190px {
    padding-top: 190px !important;
}

.pt-180px {
    padding-top: 180px !important;
}

.pt-170px {
    padding-top: 170px !important;
}

.pt-160px {
    padding-top: 160px !important;
}

.pt-150px {
    padding-top: 150px !important;
}

.pt-140px {
    padding-top: 140px !important;
}

.pt-130px {
    padding-top: 130px !important;
}

.pt-120px {
    padding-top: 120px !important;
}

.pt-115px {
    padding-top: 115px !important;
}

.pt-110px {
    padding-top: 110px !important;
}

.pt-100px {
    padding-top: 100px !important;
}

.pt-95px {
    padding-top: 95px !important;
}

.pt-90px {
    padding-top: 90px !important;
}

.pt-85px {
    padding-top: 85px !important;
}

.pt-80px {
    padding-top: 80px !important;
}

.pt-75px {
    padding-top: 75px !important;
}

.pt-70px {
    padding-top: 70px !important;
}

.pt-60px {
    padding-top: 60px !important;
}

.pt-50px {
    padding-top: 50px !important;
}

.pt-45px {
    padding-top: 45px !important;
}

.pt-40px {
    padding-top: 40px !important;
}

.pt-35px {
    padding-top: 35px !important;
}

.pt-30px {
    padding-top: 30px !important;
}

.pt-20px {
    padding-top: 20px !important;
}

.pt-10px {
    padding-top: 10px !important;
}

/*====== padding bottom =======*/
.pb-200px {
    padding-bottom: 200px !important;
}

.pb-190px {
    padding-bottom: 190px !important;
}

.pb-180px {
    padding-bottom: 180px !important;
}

.pb-170px {
    padding-bottom: 170px !important;
}

.pb-160px {
    padding-bottom: 160px !important;
}

.pb-150px {
    padding-bottom: 150px !important;
}

.pb-140px {
    padding-bottom: 140px !important;
}

.pb-130px {
    padding-bottom: 130px !important;
}

.pb-120px {
    padding-bottom: 120px !important;
}

.pb-115px {
    padding-bottom: 115px !important;
}

.pb-110px {
    padding-bottom: 110px !important;
}

.pb-100px {
    padding-bottom: 100px !important;
}

.pb-95px {
    padding-bottom: 95px !important;
}

.pb-90px {
    padding-bottom: 90px !important;
}

.pb-85px {
    padding-bottom: 85px !important;
}

.pb-80px {
    padding-bottom: 80px !important;
}

.pb-75px {
    padding-bottom: 75px !important;
}

.pb-70px {
    padding-bottom: 70px !important;
}

.pb-60px {
    padding-bottom: 60px !important;
}

.pb-50px {
    padding-bottom: 50px !important;
}

.pb-45px {
    padding-bottom: 45px !important;
}

.pb-40px {
    padding-bottom: 40px !important;
}

.pb-35px {
    padding-bottom: 35px !important;
}

.pb-30px {
    padding-bottom: 30px !important;
}

.pb-20px {
    padding-bottom: 20px !important;
}

.pb-10px {
    padding-bottom: 10px !important;
}

/*======= padding right ========*/
.pe-150px {
    padding-right: 150px !important;
}

.pe-140px {
    padding-right: 140px !important;
}

.pe-130px {
    padding-right: 130px !important;
}

.pe-120px {
    padding-right: 120px !important;
}

.pe-110px {
    padding-right: 110px !important;
}

.pe-100px {
    padding-right: 100px !important;
}

.pe-95px {
    padding-right: 95px !important;
}

.pe-90px {
    padding-right: 90px !important;
}

.pe-85px {
    padding-right: 85px !important;
}

.pe-80px {
    padding-right: 80px !important;
}

.pe-70px {
    padding-right: 70px !important;
}

.pe-60px {
    padding-right: 60px !important;
}

.pe-55px {
    padding-right: 55px !important;
}

.pe-50px {
    padding-right: 50px !important;
}

.pe-45px {
    padding-right: 45px !important;
}

.pe-40px {
    padding-right: 40px !important;
}

.pe-30px {
    padding-right: 30px !important;
}

/*======== padding left ========*/
.ps-150px {
    padding-left: 150px !important;
}

.ps-140px {
    padding-left: 140px !important;
}

.ps-130px {
    padding-left: 130px !important;
}

.ps-120px {
    padding-left: 120px !important;
}

.ps-110px {
    padding-left: 110px !important;
}

.ps-100px {
    padding-left: 100px !important;
}

.ps-95px {
    padding-left: 95px !important;
}

.ps-90px {
    padding-left: 90px !important;
}

.ps-85px {
    padding-left: 85px !important;
}

.ps-80px {
    padding-left: 80px !important;
}

.ps-70px {
    padding-left: 70px !important;
}

.ps-60px {
    padding-left: 60px !important;
}

.ps-55px {
    padding-left: 55px !important;
}

.ps-50px {
    padding-left: 50px !important;
}

.ps-45px {
    padding-left: 45px !important;
}

.ps-40px {
    padding-left: 40px !important;
}

.ps-30px {
    padding-left: 30px !important;
}

/*===== margin top ====*/
.mt-200px {
    margin-top: 200px;
}

.mt-190px {
    margin-top: 190px;
}

.mt-180px {
    margin-top: 180px;
}

.mt-160px {
    margin-top: 160px;
}

.mt-150px {
    margin-top: 150px;
}

.mt-140px {
    margin-top: 140px;
}

.mt-130px {
    margin-top: 130px;
}

.mt-120px {
    margin-top: 120px;
}

.mt-110px {
    margin-top: 110px;
}

.mt-100px {
    margin-top: 100px;
}

.mt-95px {
    margin-top: 95px;
}

.mt-90px {
    margin-top: 90px;
}

.mt-85px {
    margin-top: 85px;
}

.mt-80px {
    margin-top: 80px;
}

.mt-70px {
    margin-top: 70px;
}

.mt-60px {
    margin-top: 60px;
}

.mt-55px {
    margin-top: 55px;
}

.mt-50px {
    margin-top: 50px;
}

.mt-45px {
    margin-top: 45px;
}

.mt-40px {
    margin-top: 40px;
}

.mt-35px {
    margin-top: 35px;
}

.mt-30px {
    margin-top: 30px;
}

.mt-28px {
    margin-top: 28px;
}

.mt-20px {
    margin-top: 20px;
}

.mt-10px {
    margin-top: 10px;
}

.mt-5px {
    margin-top: 5px;
}

/*======= margin bottom =======*/
.mb-200px {
    margin-bottom: 200px;
}

.mb-190px {
    margin-bottom: 190px;
}

.mb-180px {
    margin-bottom: 180px;
}

.mb-170px {
    margin-bottom: 170px;
}

.mb-160px {
    margin-bottom: 160px;
}

.mb-150px {
    margin-bottom: 150px;
}

.mb-140px {
    margin-bottom: 140px;
}

.mb-130px {
    margin-bottom: 130px;
}

.mb-120px {
    margin-bottom: 120px;
}

.mb-110px {
    margin-bottom: 110px;
}

.mb-100px {
    margin-bottom: 100px;
}

.mb-95px {
    margin-bottom: 95px;
}

.mb-90px {
    margin-bottom: 90px;
}

.mb-85px {
    margin-bottom: 85px;
}

.mb-80px {
    margin-bottom: 80px;
}

.mb-70px {
    margin-bottom: 70px;
}

.mb-60px {
    margin-bottom: 60px;
}

.mb-50px {
    margin-bottom: 50px;
}

.mb-55px {
    margin-bottom: 55px;
}

.mb-45px {
    margin-bottom: 45px;
}

.mb-40px {
    margin-bottom: 40px;
}

.mb-35px {
    margin-bottom: 35px;
}

.mb-30px {
    margin-bottom: 30px;
}

.mb-28px {
    margin-bottom: 28px;
}

.mb-20px {
    margin-bottom: 20px;
}

.mb-10px {
    margin-bottom: 10px;
}

.mb-5px {
    margin-bottom: 5px;
}

/*======= border radius =======*/
.rounded-rounded {
    -webkit-border-radius: 12px !important;
    -moz-border-radius: 12px !important;
    border-radius: 12px !important;
}

.rounded-pill {
    -webkit-border-radius: 30px !important;
    -moz-border-radius: 30px !important;
    border-radius: 30px !important;
}

.rounded--pill {
    -webkit-border-radius: 100px !important;
    -moz-border-radius: 100px !important;
    border-radius: 100px !important;
}

.rounded-full {
    -webkit-border-radius: 100% !important;
    -moz-border-radius: 100% !important;
    border-radius: 100% !important;
}

/*======= before after none =======*/
.after-none::after {
    display: none !important;
}

.before-none::before {
    display: none !important;
}

.before-after-none::before,
.before-after-none::after {
    display: none !important;
}

/*========== font size ========*/
.fs-80 {
    font-size: 80px !important;
}

.fs-70 {
    font-size: 70px !important;
}

.fs-65 {
    font-size: 65px !important;
}

.fs-60 {
    font-size: 60px !important;
}

.fs-55 {
    font-size: 55px !important;
}

.fs-50 {
    font-size: 50px !important;
}

.fs-45 {
    font-size: 45px !important;
}

.fs-40 {
    font-size: 40px !important;
}

.fs-35 {
    font-size: 35px !important;
}

.fs-30 {
    font-size: 30px !important;
}

.fs-28 {
    font-size: 28px !important;
}

.fs-27 {
    font-size: 27px !important;
}

.fs-26 {
    font-size: 26px !important;
}

.fs-25 {
    font-size: 25px !important;
}

.fs-24 {
    font-size: 24px !important;
}

.fs-23 {
    font-size: 23px !important;
}

.fs-22 {
    font-size: 22px !important;
}

.fs-21 {
    font-size: 21px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-19 {
    font-size: 19px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-17 {
    font-size: 17px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-15 {
    font-size: 15px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-13 {
    font-size: 13px !important;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-11 {
    font-size: 11px !important;
}

/*======== font-weight =======*/
.font-weight-thin {
    font-weight: 100 !important;
}

.font-weight-light {
    font-weight: 300 !important;
}

.font-weight-regular {
    font-weight: 400 !important;
}

.font-weight-medium {
    font-weight: 500 !important;
}

.font-weight-semi-bold {
    font-weight: 600 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.font-weight-black {
    font-weight: 800 !important;
}

/*========== line-height ===========*/
.lh-90 {
    line-height: 90px !important;
}

.lh-85 {
    line-height: 85px !important;
}

.lh-80 {
    line-height: 80px !important;
}

.lh-75 {
    line-height: 75px !important;
}

.lh-70 {
    line-height: 70px !important;
}

.lh-65 {
    line-height: 65px !important;
}

.lh-60 {
    line-height: 60px !important;
}

.lh-58 {
    line-height: 58px !important;
}

.lh-57 {
    line-height: 57px !important;
}

.lh-56 {
    line-height: 56px !important;
}

.lh-55 {
    line-height: 55px !important;
}

.lh-52 {
    line-height: 52px !important;
}

.lh-50 {
    line-height: 50px !important;
}

.lh-48 {
    line-height: 48px !important;
}

.lh-46 {
    line-height: 46px !important;
}

.lh-45 {
    line-height: 45px !important;
}

.lh-40 {
    line-height: 40px !important;
}

.lh-35 {
    line-height: 35px !important;
}

.lh-30 {
    line-height: 30px !important;
}

.lh-28 {
    line-height: 28px !important;
}

.lh-27 {
    line-height: 27px !important;
}

.lh-26 {
    line-height: 26px !important;
}

.lh-25 {
    line-height: 25px !important;
}

.lh-24 {
    line-height: 24px !important;
}

.lh-22 {
    line-height: 22px !important;
}

.lh-20 {
    line-height: 20px !important;
}

.lh-18 {
    line-height: 18px !important;
}

/*-================== loading-area ==============-*/
.preloader {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: var(--color-white);
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader .spinner {
    animation: rotate 2s linear infinite;
    z-index: 2;
    width: 50px;
    height: 50px;
}

.loader .spinner .path {
    stroke: var(--color-primary);
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

/*======== section-block =========*/
.section-block {
    height: 1px;
    background-color: var(--color-divider-3);
}

.hover-underline:hover {
    text-decoration: underline !important;
}

/*======== divider =========*/
.divider {
    border-bottom: 1px solid var(--color-divider-3);
    height: 1px;
    margin: 0.5em 0 1.2em;
}

.divider span {
    display: block;
    width: 50px;
    height: 1px;
    background-color: var(--color-primary);
}

/*======== ribbon =========*/
.ribbon {
    display: inline-block;
    padding-right: 8px;
    padding-left: 8px;
    line-height: 22px;
    background-color: var(--color-ribbon-border);
    color: var(--color-ribbon-text);
    font-size: 11px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.ribbon-white {
    background-color: var(--color-white);
    color: var(--color-white);
}

.ribbon-lg {
    font-size: 16px;
    padding-right: 12px;
    padding-left: 12px;
    line-height: 28px;
}

/* .ribbon-blue-bg {
    background: var(--color-ribbon-blue-bg) !important;
    color: var(--color-ribbon-blue-bg-text) !important;
} */

/*====================================================
    input-number-group
 ====================================================*/
.input-number-group {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.input-number-group input[type=number]::-webkit-inner-spin-button,
.input-number-group input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
}

.input-number-group .input-number {
    outline: none;
    display: block;
    text-align: center;
    border: none;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.input-number-group .input-number,
.input-number-group .input-number-decrement,
.input-number-group .input-number-increment {
    background-color: var(--color-border);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 600;
    font-size: 18px;
    color: var(--color-body-text);
}

.input-number-group .input-number-decrement,
.input-number-group .input-number-increment {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.input-number-group .input-number-decrement:hover,
.input-number-group .input-number-increment:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.input-number-group .input-number-decrement {
    margin-right: 0.5rem;
    margin-left: 1rem;
    font-size: 30px;
}

.input-number-group .input-number-increment {
    margin-left: 0.5rem;
    font-size: 22px;
}

/*======== label =========*/
label {
    margin-bottom: 8px;
}

/*======== form-group =========*/
.form-group {
    margin-bottom: 16px;
}

/*====== social-icons =====*/
.social-icons li {
    display: inline-block;
    margin-right: 10px;
}

.social-icons li a {
    color: var(--color-text-black);
    display: block;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.social-icons li a:hover {
    color: var(--color-primary);
}

/*====== social-icons-styled =====*/
.social-icons-styled li a {
    color: var(--color-heading);
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    /* background-color: var(--color-social-icons-styled);*/
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.social-icons-styled li a:hover {
    color: var(--color-white);
    background-color: var(--color-primary);
}

.social-icons-styled li a.facebook-bg,
.social-icons-styled li a.twitter-bg,
.social-icons-styled li a.instagram-bg,
.social-icons-styled li a.linkedin-bg,
.social-icons-styled li a.youtube-bg {
    color: var(--color-white);
}

.social-icons-styled li a.facebook-bg {
    background-color: var(--color-facebook);
}

.social-icons-styled li a.twitter-bg {
    background-color: var(--color-twitter);
}

.social-icons-styled li a.instagram-bg {
    background-color: var(--color-instagram);
}

.social-icons-styled li a.linkedin-bg {
    background-color: var(--color-linkedin);
}

.social-icons-styled li a.youtube-bg {
    background-color: var(--color-youtube);
}

/*========= cd-words-wrapper =========*/
.cd-words-wrapper b {
    font-weight: 700;
}

/*=== scroll-top ===*/
#scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: var(--color-white);
    color: var(--color-secondary);
    font-size: 18px;
    z-index: 9999;
    width: 40px;
    height: 40px;
    line-height: 40px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    text-align: center;
    cursor: pointer;
    -webkit-box-shadow: 0 7px 10px var(--color-black-2);
    -moz-box-shadow: 0 7px 10px var(--color-black-2);
    box-shadow: 0 7px 10px var(--color-black-2);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#scroll-top:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

/*-====== pagination-box ====-*/
.pagination-box {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background-color: var(--color-white);
    -webkit-box-shadow: 0 0 40px var(--color-box-shadow);
    -moz-box-shadow: 0 0 40px var(--color-box-shadow);
    box-shadow: 0 0 40px var(--color-box-shadow);
    display: inline-block;
    padding: 15px 20px;
}

.pagination-box .page-item {
    margin-right: 5px;
}

.pagination-box .page-item:last-child {
    margin-right: 0;
}

.pagination-box .page-item.active .page-link {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.pagination-box .page-link {
    border: 0;
    margin-left: 0;
    color: var(--color-primary);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.pagination-box .page-link:hover {
    background-color: var(--color-primary-1);
}

/*========= theme-btn ========*/
.theme-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    padding: 10px 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
}

.theme-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.theme-btn:hover .icon {
    padding-left: 5px;
}

.icon {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.theme-btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-weight: 600;
    padding: 10px 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
}

.theme-btn-secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.theme-btn-secondary:hover .icon {
    padding-left: 5px;
}

/*===== theme-btn-white ======*/
.theme-btn-white {
    background-color: var(--color-white);
    color: var(--color-primary);
    -webkit-box-shadow: 0 0 7px var(--color-black-2);
    -moz-box-shadow: 0 0 7px var(--color-black-2);
    box-shadow: 0 0 7px var(--color-black-2);
}

.theme-btn-white:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.theme-btn-white:hover svg {
    fill: var(--color-white);
}

/*===== theme-btn-transparent ======*/
.theme-btn-transparent {
    background-color: transparent;
    color: var(--color-primary);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--color-border);
}

.theme-btn-transparent:hover {
    background-color: transparent;
    border-color: var(--color-border-highlight);
    color: var(--color-primary);
}

/*===== theme-btn-sm ======*/
.theme-btn-sm {
    padding: 4px 10px;
    font-size: 14px;
}

/*===== icon-btn ======*/
.icon-btn {
    width: 43px;
    height: 43px;
    line-height: 43px;
    text-align: center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 1px solid var(--color-border);
    font-size: 22px;
}

.icon-btn:hover {
    background-color: var(--color-white);
    border-color: var(--color-border-highlight);
    color: var(--color-primary);
}

/*===== icon-element ======*/
.icon-element {
    color: var(--color-heading);
    font-size: 40px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    background-color: var(--color-white);
    -webkit-box-shadow: 0 0 40px var(--color-box-shadow);
    -moz-box-shadow: 0 0 40px var(--color-box-shadow);
    box-shadow: 0 0 40px var(--color-box-shadow);
    text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: inline-block;
}

/*===== icon-element-lg ======*/
.icon-element-lg {
    width: 110px;
    height: 110px;
    line-height: 110px;
    font-size: 50px;
}

/*===== icon-element-md ======*/
.icon-element-md {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 30px;
}

/*===== icon-element-sm ======*/
.icon-element-sm {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 20px;
}

/*===== icon-element-xs ======*/
.icon-element-xs {
    width: 33px;
    height: 33px;
    line-height: 33px;
    font-size: 17px;
}

.play-button svg {
    width: 70px;
}

/*==== collapse-btn =====*/
.collapse-btn {
    text-decoration: none;
}

.collapse-btn[aria-expanded=true] .collapse-btn-show {
    display: inline-block;
}

.collapse-btn[aria-expanded=true] .collapse-btn-hide {
    display: none;
}

.collapse-btn[aria-expanded=false] .collapse-btn-show {
    display: none;
}

.collapse--btn {
    color: var(--color-heading);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.collapse--btn:hover {
    color: var(--color-primary);
}

.btn--group .btn.active {
    border-color: var(--color-primary);
}

/*===== theme-picker-btn =====*/
.theme-picker-btn {
    font-size: 14px;
    color: var(--color-primary);
    border: 0;
    outline: none;
    display: inline-flex;
    align-items: center;
    background-color: transparent;
}

.theme-picker-btn:hover svg {
    fill: var(--color-primary);
}

.theme-picker-btn svg {
    width: 19px;
    height: 19px;
    fill: transparent;
    stroke: var(--color-primary);
    transition: stroke 0.2s;
}

.theme-picker-btn-white {
    font-size: 14px;
    color: var(--color-white);
    border: 0;
    outline: none;
    display: inline-flex;
    align-items: center;
    background-color: transparent;
}

.theme-picker-btn-white:hover svg {
    fill: var(--color-white);
}

.theme-picker-btn-white svg {
    width: 19px;
    height: 19px;
    fill: transparent;
    stroke: var(--color-white);
    transition: stroke 0.2s;
}

.light-mode-btn {
    display: none;
}

/*===== form file upload pending =====*/
/*===== form design =====*/
.label-text {
    font-size: 15px;
    color: var(--color-heading);
    font-weight: 500;
}

.form--control {
    height: 45px;
    padding-left: 45px;
    font-size: 14px;
    color: var(--color-black);
    border-color: var(--color-border);
    font-weight: 400;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.form--control:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-color: var(--color-primary);
}

.form--control-gray {
    background-color: var(--color-border);
    border-color: transparent;
}

.form--control-gray:focus {
    background-color: var(--color-border-highlight);
}

/*===== input-group-append =====*/
.input-group .input-group-append {
    margin-left: -1px;
    display: flex;
}

.input-group .input-group-append .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* form group */
.form-group {
    position: relative;
}

.input-group .form-control:not(:first-child) {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.input-icon {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 18px;
    z-index: 4;
}

.search-close-icon,
.search-icon {
    position: absolute;
    top: 0;
    right: 0;
}

.search-close-icon {
    color: var(--color-black);
    padding: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
}

.search-icon {
    color: var(--color-black);
    padding: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -moz-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    -o-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 18px;
    background-color: transparent;
    border: none;
}

.search-icon:hover {
    color: var(--color-primary);
}

/*=========== toggle-password =============*/
.toggle-password .eye-off {
    display: none;
}

.toggle-password.active .eye-off {
    display: block;
}

.toggle-password.active .eye-on {
    display: none;
}

/*=========== custom-control-label =============*/
.custom--control-label {
    cursor: pointer;
}

.custom--control-label::before,
.custom--control-label:after {
    top: 0.4rem;
}

.custom--control-label-boxed {
    display: block;
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 0 40px var(--color-box-shadow);
    -moz-box-shadow: 0 0 40px var(--color-box-shadow);
    box-shadow: 0 0 40px var(--color-box-shadow);
    padding: 20px 20px 20px 50px;
}

.custom--control-label-boxed::before,
.custom--control-label-boxed:after {
    top: 1.7rem;
    left: 1.5rem;
}

.custom-control-input:checked~.custom--control-label-boxed {
    border-color: var(--color-primary);
}

.custom-control-input:checked~.custom--control-label::before {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.custom-control-input:focus:not(:checked)~.custom--control-label::before {
    border-color: var(--color-primary);
}

.custom-control-input:focus~.custom--control-label::before {
    -webkit-box-shadow: 0 0 0 0.2rem var(--color-box-shadow);
    -moz-box-shadow: 0 0 0 0.2rem var(--color-box-shadow);
    box-shadow: 0 0 0 0.2rem var(--color-box-shadow);
}

/*contact*/
.contact-success-message {
    display: none;
}

/*body overlay*/
.body-overlay {
    background: var(--color-overlay);
    left: 0;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 1024;
}

.body-overlay.active {
    opacity: 1;
    visibility: visible;
}

/*===== custom-scrollbar-styled =====*/
.custom-scrollbar-styled::-webkit-scrollbar {
    width: 8px;
}

.custom-scrollbar-styled::-webkit-scrollbar-track {
    background: var(--color-white);
}

.custom-scrollbar-styled::-webkit-scrollbar-thumb {
    background: var(--color-border);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.custom-scrollbar-styled::-webkit-scrollbar-thumb:hover {
    background: var(--color-border-highlight);
}

/*===== avatar sizes =====*/
.avatar-lg {
    width: 120px !important;
    height: 120px !important;
}

.avatar-md {
    width: 65px !important;
    height: 65px !important;
}

.avatar-sm {
    width: 48px !important;
    height: 48px !important;
}

.avatar-xs {
    width: 32px !important;
    height: 32px !important;
}

/* add bg color primary */
.overlay {
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: var(--color-black);
    opacity: 0.5;
}

/*===== quiz-action-content ====*/
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .quiz-action-content {
        display: block !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .quiz-action-content {
        display: block !important;
    }
}

/*===== quiz-nav ====*/
.quiz-nav li {
    margin-right: 20px;
}

@media (max-width: 375px) {
    .quiz-nav li {
        margin-bottom: 10px;
    }
}

.quiz-nav li:last-child {
    margin-right: 0;
}

.quiz-nav li img {
    width: 40px;
    margin-right: 15px;
}

.quiz-nav li a {
    color: var(--color-heading);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.quiz-nav li a:hover {
    color: var(--color-primary);
}

.quiz-nav li p {
    line-height: 22px;
}

.quiz-nav li p a {
    color: var(--color-black);
    font-size: 17px;
}

/*===== quiz-course-nav =====*/
.quiz-course-nav {
    position: relative;
    z-index: 1;
}

.quiz-course-nav::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: calc(50% - 1px);
    height: 2px;
    background-color: var(--color-white);
    opacity: 0.1;
    z-index: -1;
}

/*====== quiz-nav-btns ======*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quiz-nav-btns {
        margin-top: 10px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .quiz-nav-btns {
        margin-top: 10px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .quiz-nav-btns {
        margin-top: 10px;
    }
}

.quiz-nav-btns .theme-btn {
    font-size: 15px;
    font-weight: 500;
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .quiz-nav-btns .theme-btn {
        margin-bottom: 10px;
    }
}

/*====== quiz-action ======*/
.quiz-content .quiz-desc {
    width: 700px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quiz-content .quiz-desc {
        width: auto;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .quiz-content .quiz-desc {
        width: auto;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .quiz-content .quiz-desc {
        width: auto;
    }
}

/*====== quiz-result-content ======*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quiz-result-content {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .quiz-result-content {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .quiz-result-content {
        margin-bottom: 30px;
    }
}

/* header dot */
.dot-status {
    height: 14px;
    width: 14px;
    background-color: var(--color-white);
    display: block;
    border: 2px solid var(--color-white);
    box-shadow: 0 1px 3px var(--color-black-op-1);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

/*===== jqte content =====*/
.jqte {
    margin: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border-color: var(--color-border);
}

/*.jqte * {
    font-family: "Arial", sans-serif !important;
}*/

.jqte ul,
.jqte dl,
.jqte ol {
    padding: 5px 5px 5px 16px;
}

.jqte ul {
    list-style: disc;
}

.jqte_toolbar {
    background-color: var(--color-border);
    border-bottom-color: var(--color-border);
}

.jqte_tool {
    padding: 3px;
}

.jqte_tool:hover {
    -webkit-box-shadow: 0 0 40px var(--color-box-shadow);
    -moz-box-shadow: 0 0 40px var(--color-box-shadow);
    box-shadow: 0 0 40px var(--color-box-shadow);
}

.jqte_tool,
.jqte_tool_icon,
.jqte_tool_label {
    border-color: transparent !important;
}

.jqte_title {
    font-weight: 600;
}

.jqte_tool.jqte_tool_1 .jqte_tool_label {
    width: 80px;
    height: 24px;
    padding: 0;
}

.jqte_formats,
.jqte_fontsizes,
.jqte_cpalette,
.jqte_linktypes {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 40px var(--color-box-shadow);
    -moz-box-shadow: 0 0 40px var(--color-box-shadow);
    box-shadow: 0 0 40px var(--color-box-shadow);
    border-color: var(--color-border);
}

.jqte_formats .jqte_format:hover,
.jqte_fontsizes .jqte_fontsize:hover,
.jqte_linktypes a:hover {
    background-color: var(--color-border);
}

.jqte_editor,
.jqte_source {
    min-height: 160px;
}

.jqte_placeholder {
    display: block;
}

.jqte_placeholder_text {
    top: 49px;
    color: var(--color-description);
    font-weight: 500;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .jqte_placeholder_text {
        top: 80px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .jqte_placeholder_text {
        top: 80px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .jqte_placeholder_text {
        top: 130px;
    }
}

.jqte_linktypeview {
    border-color: var(--color-border);
    padding: 4px 10px;
}

.jqte_linktypearrow {
    bottom: 13px;
    right: 13px;
}

.jqte_linkinput {
    border-color: var(--color-border);
    padding-top: 4px;
    padding-bottom: 4px;
    color: var(--color-heading);
}

.jqte_linkinput:focus,
.jqte_linkinput:hover {
    border-color: var(--color-border-highlight);
}

.jqte_linkbutton {
    background-color: var(--color-border);
    border-color: var(--color-border-highlight);
    color: var(--color-heading);
    -webkit-box-shadow: inset 0 0;
    -moz-box-shadow: inset 0 0;
    box-shadow: inset 0 0;
    padding-top: 4px;
    padding-bottom: 4px;
}

.jqte_linkbutton:hover {
    background-color: var(--color-border);
}

/*======= Responsive column ========*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .responsive-column-half {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .responsive-column-half {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .responsive-column-half {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* modal container */
textarea {
    height: 100px !important;
}

.modal-container.fade .modal-dialog {
    -webkit-transform: scale(0.8) translate(0, 0);
    -moz-transform: scale(0.8) translate(0, 0);
    -ms-transform: scale(0.8) translate(0, 0);
    -o-transform: scale(0.8) translate(0, 0);
    transform: scale(0.8) translate(0, 0);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.modal-container .close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-black);
    text-shadow: 0 1px 0 var(--color-white);
    opacity: 0.5;
    background: none !important;
}

.modal-container .close span {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.modal-container .close:hover span {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    color: var(--color-primary);
}

.modal-container .modal-content {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.modal-container .modal-dialog {
    -webkit-transform: scale(0.8) translate(0, 0);
    -moz-transform: scale(0.8) translate(0, 0);
    -ms-transform: scale(0.8) translate(0, 0);
    -o-transform: scale(0.8) translate(0, 0);
    transform: scale(0.8) translate(0, 0);
}

.modal-container.show {
    display: block;
}

.modal-container.show .modal-dialog {
    -webkit-transform: scale(1) translate(0, 0);
    -moz-transform: scale(1) translate(0, 0);
    -ms-transform: scale(1) translate(0, 0);
    -o-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
}

/*======== card-item =========*/
.card {
    color: inherit !important;
}

.card-item {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 0 40px var(--color-box-shadow);
    -moz-box-shadow: 0 0 40px var(--color-box-shadow);
    box-shadow: 0 0 40px var(--color-box-shadow);
    border: 0;
}

.card-item .card-title {
    color: var(--color-heading);
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 1px;
    font-size: 18px;
}

.card-item .card-title a {
    text-decoration: none !important;
    color: var(--color-heading);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.card-item .card-title a:hover {
    color: var(--color-primary);
}

.card-item .card-text a {
    text-decoration: none !important;
    color: var(--color-heading);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.card-item .card-text a:hover {
    color: var(--color-primary);
}

.card-item .card-body {
    padding: 1.4rem;
}

.card-text {
    font-size: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .card-item .card-body.d-flex {
        flex-direction: column;
        text-align: center;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .card-item .card-body.d-flex {
        flex-direction: column;
        text-align: center;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .card-item .card-body.d-flex {
        flex-direction: column;
        text-align: center;
    }
}

/*======== card-image =========*/
.card-image {
    position: relative;
}

.card-image .card-img-top {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card-image .course-badge-labels {
    position: absolute;
    top: 10px;
    left: 10px;
}

.card-image .course--badge-labels {
    left: auto;
    right: 10px;
}

.card-image .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0.6);
    -moz-transform: translate(-50%, -50%) scale(0.6);
    -ms-transform: translate(-50%, -50%) scale(0.6);
    -o-transform: translate(-50%, -50%) scale(0.6);
    transform: translate(-50%, -50%) scale(0.6);
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.card-image:hover .play-button {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

/*======= course-badge =======*/
.course-badge {
    background-color: var(--color-badge);
    color: var(--color-white);
    font-weight: 700;
    display: inline-block;
    padding: 4px 10px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.2px;
}

.course-badge.blue {
    background-color: var(--color-badge-blue);
}

.course-badge.green {
    background-color: var(--color-badge-green);
}

.course-badge.red {
    background-color: var(--color-badge-red);
}

.course-badge.sky-blue {
    background-color: var(--color-badge-sky-blue);
}

/*======= card-item-list-layout ======*/
.card-item-list-layout {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .card-item-list-layout {
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .card-item-list-layout {
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.card-item-list-layout .card-image {
    width: 33%;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .card-item-list-layout .card-image {
        width: auto;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .card-item-list-layout .card-image {
        width: auto;
    }
}

.card-item-list-layout .card-image a {
    height: 100%;
}

.card-item-list-layout .card-image .card-img-top {
    border-top-right-radius: 0;
    border-bottom-left-radius: 8px;
    height: 100%;
    object-fit: cover;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .card-item-list-layout .card-image .card-img-top {
        height: auto;
        border-top-right-radius: 8px;
        border-bottom-left-radius: 0;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .card-item-list-layout .card-image .card-img-top {
        height: auto;
        border-top-right-radius: 8px;
        border-bottom-left-radius: 0;
    }
}

.card-item-list-layout .card-body {
    width: 67%;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .card-item-list-layout .card-body {
        width: auto;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .card-item-list-layout .card-body {
        width: auto;
    }
}

/*====== card-preview =======*/
.tooltip_templates {
    display: none;
}

.tooltipster-sidetip {
    width: 380px !important;
}

.tooltipster-sidetip .tooltipster-box {
    background: var(--color-white);
    border: 0;
    -webkit-box-shadow: 0 0 10px var(--color-box-shadow);
    -moz-box-shadow: 0 0 10px var(--color-box-shadow);
    box-shadow: 0 0 10px var(--color-box-shadow);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.tooltipster-sidetip .tooltipster-content {
    color: inherit;
    line-height: inherit;
    padding: 0;
}

.tooltipster-sidetip .card-item {
    margin-bottom: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
    border-top-color: var(--color-white);
    top: 2px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
    border-right-color: var(--color-white);
    left: 0;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
    top: 50% !important;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 0;
    left: -1px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
    left: 0;
    border-left-color: var(--color-white);
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
    top: 50% !important;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 0;
    right: -1px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: var(--color-white);
    top: -2px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border,
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border,
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border,
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
    border: none;
}

/*======== media-card header(notification,profile)=======*/
.media-card .media-img {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.media-card .media-img img {
    width: 100%;
    height: 100%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.media-card .media--img {
    border: 4px solid var(--color-white);
    -webkit-box-shadow: 0 0 8px 0px var(--color-box-shadow);
    -moz-box-shadow: 0 0 8px 0px var(--color-box-shadow);
    box-shadow: 0 0 8px 0px var(--color-box-shadow);
}

.media-card .media-img-md {
    width: 100px;
    height: 100px;
}

.media-card .media-img-lg {
    width: 200px;
    height: 200px;
}

.media-card .media-body h5 {
    color: var(--color-heading);
    font-weight: 600;
    line-height: 18px;
}

.media-card .media-body h5 a {
    color: var(--color-heading);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.media-card .media-body h5 a:hover {
    color: var(--color-primary);
}

/*-========= header-menu-area ==========-*/
.header-menu-area {
    position: relative;
    z-index: 1023;
}

/*===== header top =====*/
@media (max-width: 1600px) {
    .header-top {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-top {
        text-align: center;
        display: none;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .header-top {
        text-align: center;
        display: none;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .header-top {
        text-align: center;
        display: none;
    }
}

/*===== header-widget =====*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-widget .generic-list-item {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .header-widget .generic-list-item {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .header-widget .generic-list-item {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

.header-widget .generic-list-item li {
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-widget.justify-content-end {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .header-widget.justify-content-end {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .header-widget.justify-content-end {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

/*===== shop-cart ======*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-cart {
        text-align: left;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .shop-cart {
        text-align: left;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .shop-cart {
        text-align: left;
    }
}

.shop-cart>ul>li {
    position: relative;
}

.shop-cart>ul>li:hover .cart-dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 45px;
}

/*===== shop-cart-btn ======*/
.shop-cart-btn {
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
    color: var(--color-heading);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
}

.shop-cart-btn .dot-status {
    position: absolute;
    top: 6px;
    right: -6px;
}

.shop-cart-btn:hover {
    color: var(--color-primary);
}

/*===== cart-dropdown-menu ======*/
.cart-dropdown-menu {
    position: absolute;
    right: 0;
    top: 50px;
    width: 325px;
    background-color: var(--color-white);
    padding: 20px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 0 40px var(--color-box-shadow);
    -moz-box-shadow: 0 0 40px var(--color-box-shadow);
    box-shadow: 0 0 40px var(--color-box-shadow);
    opacity: 0;
    visibility: hidden;
    z-index: 3;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .cart-dropdown-menu {
        right: -145px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .cart-dropdown-menu {
        right: -90px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .cart-dropdown-menu {
        right: -80px;
        width: 300px;
    }
}

.cart-dropdown-menu li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-border);
}

.cart-dropdown-menu li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.cart-dropdown-menu .media-body {
    font-size: 14px;
}

.cart-dropdown-menu .media-body h5 {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    max-height: 3.4rem;
    font-size: 14px;
}

.cart-dropdown-menu:after {
    top: -8px;
    content: "";
    position: absolute;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid var(--color-white);
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .cart-dropdown-menu:after {
        right: 50%;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .cart-dropdown-menu:after {
        right: 100px;
    }
}

/*====== notification-dropdown-menu=======*/
.notification-dropdown-menu li {
    margin-bottom: 0;
    padding-bottom: 0;
}

.notification-dropdown-menu li.menu-heading-block {
    padding: 15px 20px;
}

.notification-dropdown-menu .generic-list-item {
    font-size: 14px;
}

.notification-dropdown-menu .generic-list-item li {
    border-bottom: 0;
}

.notification-dropdown-menu .generic-list-item a {
    padding: 8px 20px;
}

.menu-heading-block h4 {
    font-size: 16px;
    font-weight: 600;
}

.menu-heading-block p {
    font-weight: 400;
    font-size: 14px;
}

.notification-body a {
    padding: 15px 20px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border-bottom: 1px solid var(--color-border);
}

.notification-body a:last-child {
    border-bottom: 0;
}

.notification-body a:hover {
    background-color: var(--color-hover);
}

.notification-body a:hover.message-active {
    background-color: var(--color-border-highlight);
}

/*====== user-profile-cart =======*/
.user-profile-cart .cart-dropdown-menu {
    width: 280px;
}

/*====== header-menu-content =======*/
.header-menu-content {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 1600px) {
    .header-menu-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.header-menu-content.fixed-top {
    -webkit-box-shadow: 0 0 40px var(--color-border-highlight);
    -moz-box-shadow: 0 0 40px var(--color-border-highlight);
    box-shadow: 0 0 40px var(--color-border-highlight);
}

/*====== off-canvas-menu-toggle =======*/
.search-menu-toggle,
.off-canvas-menu-toggle {
    display: none;
    cursor: pointer;
}

@media (max-width: 1199px) {

    .search-menu-toggle,
    .off-canvas-menu-toggle {
        display: inline-block;
    }
}

.search-menu-toggle:hover,
.off-canvas-menu-toggle:hover {
    color: var(--color-primary);
}

/*====== sub-nav-toggler =======*/
.sub-nav-toggler {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: var(--color-heading);
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: none;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: none;
    outline: none;
    z-index: 2;
    background-color: var(--color-white);
    -webkit-box-shadow: 0 0 0.35rem var(--color-box-shadow);
    -moz-box-shadow: 0 0 0.35rem var(--color-box-shadow);
    box-shadow: 0 0 0.35rem var(--color-box-shadow);
}

.sub-nav-toggler .la {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 1199px) {
    .sub-nav-toggler {
        display: block;
    }
}

.sub-nav-toggler:hover {
    color: var(--color-primary);
}

.sub-nav-toggler.active {
    color: var(--color-primary);
}

.sub-nav-toggler.active .la {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

/*====== logo-box =======*/
.logo-box {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

@media (max-width: 1199px) {
    .logo-box {
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.logo-box .logo {
    display: inline-block;
}

.logo--box {
    display: none;
}

@media (max-width: 1199px) {
    .logo--box {
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
    }
}

/*===== main-menu-content ======*/
.main-menu-content {
    position: relative;
}

@media (max-width: 1199px) {
    .main-menu-content {
        padding-top: 14px;
        padding-bottom: 14px;
    }
}

@media (max-width: 1199px) {

    .main-menu-content .col-lg-2,
    .main-menu-content .col-lg-3 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/*===== menu-wrapper ======*/
.menu-wrapper {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
}

@media (max-width: 1199px) {
    .menu-wrapper {
        display: none;
    }
}

.menu-wrapper form {
    width: 350px;
    margin-right: 25px;
    margin-left: 25px;
}

@media (max-width: 1600px) {
    .menu-wrapper form {
        width: 400px;
    }
}

@media (max-width: 1366px) {
    .menu-wrapper form {
        width: 300px;
    }
}

@media (max-width: 1280px) {
    .menu-wrapper form {
        width: 280px;
        margin-right: 15px;
        margin-left: 15px;
    }
}

/*===== main-menu ======*/
.main-menu {
    margin-right: 18px;
}

.main-menu>ul>li {
    display: inline-block;
    margin-right: 18px;
    text-transform: capitalize;
    position: relative;
}

.main-menu>ul>li.mega-menu-has {
    position: static;
}

.main-menu>ul>li a {
    text-decoration: none !important;
    font-size: 15px;
    color: var(--color-description);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    padding-bottom: 33px;
}

.main-menu>ul>li a:hover {
    color: var(--color-primary);
}

.main-menu>ul>li:last-child {
    margin-right: 0;
}

.main-menu>ul>li .dropdown-menu-item {
    position: absolute;
    left: 0;
    top: 60px;
    width: 200px;
    /*changed*/
    background-color: var(--color-white);
    padding: 15px 20px;
    /*changed*/
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 0 40px var(--color-box-shadow);
    -moz-box-shadow: 0 0 40px var(--color-box-shadow);
    box-shadow: 0 0 40px var(--color-box-shadow);
    opacity: 0;
    visibility: hidden;
}

.main-menu>ul>li .dropdown-menu-item>li {
    display: block;
    margin-right: 0;
    margin-bottom: 4px;
    text-transform: capitalize;
}

.main-menu>ul>li .dropdown-menu-item>li:last-child {
    margin-bottom: 0;
}

.main-menu>ul>li .dropdown-menu-item>li>a {
    color: var(--color-description);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0;
    margin-bottom: 0;
}

.main-menu>ul>li .dropdown-menu-item>li>a:hover {
    color: var(--color-primary);
}

.main-menu>ul>li .dropdown-menu-item>li .menu-banner img {
    object-fit: cover;
}

.main-menu>ul>li .mega-menu {
    top: 95px;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
}

.main-menu>ul>li .mega-menu>ul>li {
    margin-bottom: 0;
    border-left: 1px solid var(--color-border);
    padding: 15px 30px;
}

.main-menu>ul>li .mega-menu>ul>li:first-child {
    padding-left: 0;
    border-left: 0;
}

.main-menu>ul>li .mega-menu>ul>li:last-child {
    border-left: 0;
    padding-right: 0;
}

.main-menu>ul>li .mega-menu>ul>li>a {
    padding-bottom: 5px;
    display: block;
}

.main-menu>ul>li:hover .dropdown-menu-item {
    top: 50px;
    opacity: 1;
    visibility: visible;
}

.main-menu>ul>li:hover .mega-menu {
    top: 70px;
}

.menu-banner-content .btn {
    padding-bottom: 6px;
    line-height: 28px;
    display: block;
}

.menu-banner-content .btn:hover {
    color: var(--color-white);
}

.down-button {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 30px;
    text-align: center;
    height: 22px;
    line-height: 20px;
    background-color: var(--color-border);
    color: var(--color-black);
    display: none;
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
    z-index: 3;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.down-button .la {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.down-button.active .la {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.down-button:hover {
    color: var(--color-white);
    background-color: var(--color-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .down-button {
        display: block;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .down-button {
        display: block;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .down-button {
        display: block;
    }
}

/*======= nav-right-button =======*/
@media (max-width: 1199px) {
    .nav-right-button .course-cart {
        display: none;
    }
}

.nav-right-button .generic-list-item li {
    margin-bottom: 0;
    margin-right: 10px;
    display: inline-block;
}

.nav-right-button .generic-list-item li a {
    color: var(--color-black);
}

.nav-right-button .generic-list-item li a:hover {
    color: var(--color-primary);
}

.nav-right-button .generic-list-item li:last-child {
    margin-right: 0;
}

.nav-right-button .notification-dropdown-menu .generic-list-item li {
    margin-right: 0;
    margin-bottom: 0;
    display: block;
}

/*====== user-action-wrap =======*/
@media (max-width: 1199px) {
    .user-action-wrap {
        display: none !important;
    }
}

/*====== off-canvas-menu-close =======*/
.off-canvas-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.off-canvas-menu-close i {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.off-canvas-menu-close:hover {
    color: var(--color-primary);
}

.off-canvas-menu-close:hover i {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

/*====== off-canvas-menu-heading =======*/
.off-canvas-menu-heading {
    padding-right: 20px;
    padding-left: 20px;
    font-size: 14px;
    color: var(--color-heading);
    font-weight: 700;
}

/*====== off-canvas-menu =======*/
.off-canvas-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 325px;
    height: 100vh;
    background-color: var(--color-white);
    overflow-x: hidden;
    z-index: 1035;
    -webkit-transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
    -moz-transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
    -ms-transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
    -o-transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
    -webkit-box-shadow: 0 1px 8px var(--color-box-shadow);
    -moz-box-shadow: 0 1px 8px var(--color-box-shadow);
    box-shadow: 0 1px 8px var(--color-box-shadow);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
}

@media (max-width: 375px) {
    .off-canvas-menu {
        width: 320px;
    }
}

.off--canvas-menu {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

@media (max-width: 1199px) {
    .off--canvas-menu {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.main-off-canvas-menu.active,
.category-off-canvas-menu.active,
.user-off-canvas-menu.active,
.off--canvas-menu.active {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

/*=========== off--canvas-menu-list ===========*/
.off--canvas-menu-list li a {
    padding-top: 12px;
    padding-bottom: 12px;
    justify-content: flex-start;
}

.off--canvas-menu-list li a:hover {
    color: var(--color-badge-blue);
}

.off--canvas-menu-list li a:hover svg {
    fill: var(--color-badge-blue);
}

.off--canvas-menu-list li.page-active svg {
    fill: var(--color-badge-blue);
}

.off--canvas-menu-list li.page-active a {
    background-color: var(--color-border-highlight);
    color: var(--color-badge-blue);
    border-right-color: var(--color-badge-blue);
}

.mobile-search-form {
    background-color: var(--color-white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.mobile-search-form.active {
    opacity: 1;
    visibility: visible;
}

.search-bar-close {
    cursor: pointer;
}

.search-bar-close i {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.search-bar-close:hover {
    color: var(--color-primary);
}

.search-bar-close:hover i {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

/*========= setting body =========*/
.setting-body .MultiFile-intercepted .custom-radio {
    position: relative;
}

.setting-body .MultiFile-intercepted .custom-radio .custom-control-input {
    position: absolute;
    top: 22px;
    left: 42px;
    transform: translateX(50%);
}

.setting-body .MultiFile-intercepted .custom-radio .custom-control-label {
    margin-left: 0;
}

/*======== skillbar ========*/
.skillbar {
    position: relative;
    display: block;
    width: 100%;
    background-color: var(--color-border);
    height: 15px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    -webkit-transition-property: width, background-color;
    -moz-transition-property: width, background-color;
    -ms-transition-property: width, background-color;
    -o-transition-property: width, background-color;
    transition-property: width, background-color;
}

.skillbar-skillbar {
    height: 7px;
}

.skillbar-skillbar-2 {
    height: 4px;
}

.skillbar-bar {
    height: 15px;
    width: 0;
    background-color: var(--color-border);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.skillbar--bar {
    height: 7px;
}

.skillbar--bar-2 {
    height: 4px;
}

/* skill bar percentage - in red,orange,green and blue need to be add */
.skill-bar-percent {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
}

.skillbar-title {
    font-size: 15px;
}

/*======== my-course-progress-bar-wrap ========*/
.my-course-progress-bar-wrap .skillbar-title {
    width: 26%;
}

@media (max-width: 1024px) {
    .my-course-progress-bar-wrap .skillbar-title {
        width: 100%;
    }
}

.my-course-progress-bar-wrap .skillbar-box {
    width: 56%;
}

@media (max-width: 1024px) {
    .my-course-progress-bar-wrap .skillbar-box {
        width: 100%;
    }
}

.my-course-progress-bar-wrap .skill-bar-percent {
    width: 18%;
    text-align: right;
}

@media (max-width: 1024px) {
    .my-course-progress-bar-wrap .skill-bar-percent {
        position: absolute;
        width: auto;
        top: 0;
        right: 0;
    }
}

/* breadcrumb*/
.breadcrumb-content p a {
    text-decoration: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-content .section__title {
        padding-bottom: 5px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .breadcrumb-content .section__title {
        padding-bottom: 5px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .breadcrumb-content .section__title {
        font-size: 30px !important;
        line-height: 40px !important;
        padding-bottom: 5px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .breadcrumb-content .section__title.fs-30 {
        font-size: 22px !important;
        line-height: 30px !important;
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .breadcrumb-content .section__desc {
        font-size: 16px;
        line-height: 24px !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .breadcrumb-content .section__desc {
        font-size: 16px;
        line-height: 24px !important;
    }
}

@media (max-width: 375px) {
    .breadcrumb-content .media-card {
        flex-direction: column;
    }
}

@media (max-width: 375px) {
    .breadcrumb-content .media-card .media-img {
        margin-right: auto;
        margin-bottom: 15px;
    }
}

.breadcrumb-content .media-card .media-body h5 a {
    text-decoration: none;
}

@media (max-width: 375px) {
    .breadcrumb-content .media-card .media-body {
        width: 100%;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .breadcrumb-content .file-upload-wrap {
        margin-top: 20px;
    }
}

.breadcrumb-content .video-box {
    position: relative;
    bottom: -100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-logo {
        text-align: left !important;
        padding-top: 20px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .breadcrumb-logo {
        text-align: left !important;
        padding-top: 20px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .breadcrumb-logo {
        text-align: left !important;
        padding-top: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-btn-box.text-end {
        text-align: left !important;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .breadcrumb-btn-box.text-end {
        text-align: left !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .breadcrumb-btn-box.text-end {
        text-align: left !important;
    }
}

/*====== widget-panel =======*/
.widget-panel {
    margin-bottom: 30px;
}

.preview-course-video {
    position: relative;
}

.preview-course-video .overlay {
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-black-2) 100%);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    z-index: -1;
}

.preview-course-video:hover .play-button {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.preview-course-video-content {
    position: absolute;
    text-align: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 20px;
    z-index: 1;
}

.play-button {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/*================ course-overview-card ===================*/
.course-overview-card {
    margin-bottom: 30px;
}

.course-overview-card .overview-list-item {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.course-overview-card .overview-list-item li {
    margin-bottom: 15px;
    width: 50%;
    padding-right: 20px;
    position: relative;
    padding-left: 25px;
    font-size: 15px;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .course-overview-card .overview-list-item li {
        width: 100%;
        padding-right: 0;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .course-overview-card .overview-list-item li {
        width: 100%;
        padding-right: 0;
    }
}

.course-overview-card .overview-list-item li i {
    position: absolute;
    top: 5px;
    left: 0;
}

.course-overview-card h3 a {
    text-decoration: none;
}

.course-overview-card .review-wrap .select2-full-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    padding-right: 0;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .curriculum-header {
        flex-direction: column;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .curriculum-header {
        flex-direction: column;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .curriculum-header h3 {
        width: 100%;
        text-align: left;
        padding-bottom: 4px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .curriculum-header h3 {
        width: 100%;
        text-align: left;
        padding-bottom: 4px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .curriculum-duration {
        width: 100%;
        text-align: left;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .curriculum-duration {
        width: 100%;
        text-align: left;
    }
}

/*================ course-dashboard-container ===================*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .course-dashboard-container {
        display: block !important;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .course-dashboard-container {
        display: block !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .course-dashboard-container {
        display: block !important;
    }
}

/*================ course-dashboard-column ===================*/
/***********Changed**************/
.course-dashboard-column {
    width: 75%;
    /* -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s; */
    transition: margin-left 0.5s;
    margin-left: 25%;
}

@media (max-width: 1366px) {
    .course-dashboard-column {
        width: calc(100% - 400px);
        margin-left: 400px;
    }
}

@media (max-width: 1024px) {
    .course-dashboard-column {
        width: calc(100% - 350px);
        margin-left: 350px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .course-dashboard-column {
        width: 100%;
        margin-left: 0px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .course-dashboard-column {
        width: 100%;
        margin-left: 0px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .course-dashboard-column {
        width: 100%;
        margin-left: 0px;
    }
}

.course-dashboard-column.active {
    width: 100%;
    margin-left: 0px;
}

.lecture-video-detail {
    position: relative;
    z-index: 3;
}

/*==== lecture-tab-body ======*/
.lecture-tab-body .generic-tab .mobile-menu-nav-item {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .lecture-tab-body .generic-tab .mobile-menu-nav-item {
        display: block;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .lecture-tab-body .generic-tab .mobile-menu-nav-item {
        display: block;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .lecture-tab-body .generic-tab .mobile-menu-nav-item {
        display: block;
    }
}

/*==== lecture-video-detail-body ======*/
.lecture-video-detail-body {
    /***********changed*************/
    padding: 10px 10px 10px 10px;
}

/*================ lecture-overview-item ===================*/
.lecture-overview-item {
    margin-bottom: 30px;
    margin-top: 30px;
}

.lecture-overview-item .generic-list-item li span {
    color: var(--color-heading);
    margin-right: 8px;
    font-weight: 600;
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .question-overview-result-header {
        display: block !important;
    }
}

/*================ lecture-overview-stats-wrap ===================*/
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .lecture-overview-stats-wrap {
        display: block !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .lecture-overview-stats-wrap {
        display: block !important;
    }
}

.lecture-overview-stats-wrap>*.lecture-overview-stats-wide-item {
    width: 75%;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .lecture-overview-stats-wrap>*.lecture-overview-stats-wide-item {
        width: auto;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .lecture-overview-stats-wrap>*.lecture-overview-stats-wide-item {
        width: auto;
    }
}

/* .lecture-overview-stats-wrap>* {
    width: 25%;
} */

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .lecture-overview-stats-wrap>* {
        width: auto;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .lecture-overview-stats-wrap>* {
        width: auto;
    }
}

.lecture-overview-stats-wrap>*:first-child {
    width: 20%;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .lecture-overview-stats-wrap>*:first-child {
        width: auto;
        margin-bottom: 12px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .lecture-overview-stats-wrap>*:first-child {
        width: auto;
    }
}

/*====== lecture-description ======*/
.lecture-description p,
.lecture-description .generic-list-item {
    padding-bottom: 20px;
}

.lecture-owner-decription p {
    padding-bottom: 10px;
}

.lecture-owner-decription strong {
    font-weight: 600;
    color: var(--color-text-black);
}

/*================ lecture-quest-wrap ===================*/
.lecture-quest-wrap {
    position: relative;
    width: 960px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1366px) {
    .lecture-quest-wrap {
        width: 700px;
    }
}

@media (max-width: 1024px) {
    .lecture-quest-wrap {
        width: 600px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .lecture-quest-wrap {
        width: auto;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .lecture-quest-wrap {
        width: auto;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .lecture-quest-wrap {
        width: auto;
    }
}

.replay-question-wrap,
.new-question-wrap {
    background-color: var(--color-white);
    padding-top: 30px;
    display: none;
}

.replay-question-wrap.active,
.new-question-wrap.active {
    display: block;
}

/*====== new-question-wrap ========*/
.new-question-wrap .new-question-body .custom-control-wrap .custom-control {
    position: relative;
}

.new-question-wrap .new-question-body .custom-control-wrap .custom-control .custom-control-input {
    position: absolute;
    top: 20px;
    left: 44px;
    transform: translateX(50%);
}

.new-question-wrap,
.search-course-wrap {
    width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .new-question-wrap,
    .search-course-wrap {
        width: auto;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {

    .new-question-wrap,
    .search-course-wrap {
        width: auto;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {

    .new-question-wrap,
    .search-course-wrap {
        width: auto;
    }
}

/*====== replay-question-body ========*/
.replay-question-body .question-list-item .media:hover {
    background-color: transparent;
}

.replay-action-bar {
    border: 1px solid var(--color-border);
    background-color: var(--color-border);
    border-bottom: 0;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
}

.replay-action-bar .btn-group .btn {
    color: var(--color-text-black);
    -webkit-box-shadow: 0 0 0 0;
    -moz-box-shadow: 0 0 0 0;
    box-shadow: 0 0 0 0;
}

.replay-action-bar .btn-group .btn:first-child {
    -webkit-border-radius: 4px 0 0 0;
    -moz-border-radius: 4px 0 0 0;
    border-radius: 4px 0 0 0;
}

.replay-action-bar .btn-group .btn:last-child {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.replay-action-bar .btn-group .btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.question-replay-body .form--control {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/*====== question-overview-result-wrap ========*/
.question-overview-result-wrap.active {
    display: none;
}

/*================ question-list-item ===================*/
.question-list-item .media-body {
    overflow: hidden;
}

.question-list-item .media:hover {
    background-color: var(--color-border);
}

.question-meta-content {
    overflow: hidden;
    padding-right: 145px;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .question-meta-content {
        padding-right: 20px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .question-meta-content {
        padding-right: 20px;
    }
}

/*================ course-dashboard-side-heading -content detail ===================*/
.course-dashboard-side-heading {
    padding: 20px;
    position: relative;
}

.sidebar-open,
.sidebar-close {
    background-color: transparent;
    border: none;
    font-size: 22px;
    color: var(--color-text-black);
    outline: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.sidebar-open:hover,
.sidebar-close:hover {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    color: var(--color-primary);
}

.sidebar-open {
    /***********changed*************/
    padding: 10px 16px;
    background-color: var(--color-primary);
    color: var(--color-white);
    -webkit-border-radius: 4px 0 0 4px;
    -moz-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
    position: absolute;
    top: 20px;
    /* left: -40px; */
    right: -40px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 15px;
    font-weight: 600;
    z-index: -1;
}

.sidebar-open .la {
    margin-right: 5px;
}

.sidebar-open.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-open:hover {
    /***********changed*************/
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    color: var(--color-white);
    /* left: -155px; */
    right: -155px;
}

.course-duration span {
    font-size: 13px;
    color: var(--color-body-text);
    position: relative;
    padding-right: 12px;
    padding-left: 2px;
    font-weight: 500;
    display: inline-block;
}

.course-duration span:first-child {
    padding-left: 0;
}

.course-duration span:last-child {
    padding-right: 0;
}

.course-duration span:last-child:after {
    display: none;
}

.course-duration span:after {
    position: absolute;
    content: "";
    top: 7px;
    right: 0;
    width: 4px;
    height: 4px;
    background-color: var(--color-border-highlight);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

/*======= lecture-viewer-container ========*/
.lecture-viewer-container {
    position: relative;
}

.lecture-viewer-text-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    z-index: 4;
    display: none;
    padding-bottom: 50px;
}

.lecture-viewer-text-wrap.active {
    display: block;
}

.lecture-viewer-text-content {
    overflow: auto;
    height: 100%;
    padding: 50px 80px 0 80px;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .lecture-viewer-text-content {
        padding: 30px 30px 0 30px;
    }
}

.lecture-viewer-text-body {
    /* width: 700px; */
    height: 500px;
    overflow-y: scroll;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1440px) {
    .lecture-viewer-text-body {
        width: auto;
    }
}

.lecture-viewer-content-detail .generic-list-item li {
    font-size: 17px;
    line-height: 32px;
    margin-bottom: 12px;
}

.lecture-viewer-content-detail .generic-list-item li strong {
    color: var(--color-heading);
    font-weight: 600;
}

/*======= curriculum-sidebar-list ========*/
.curriculum-sidebar-list .course-item-link {
    cursor: pointer;
    padding: 12px 20px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.curriculum-sidebar-list .course-item-link.active {
    background-color: var(--color-primary-1);
}

.curriculum-sidebar-list .course-item-link.active:hover {
    background-color: var(--color-primary-1);
}

.curriculum-sidebar-list .course-item-link:hover {
    background-color: var(--color-primary-1);
}

.course-item-content-wrap {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
}

.course-item-content-wrap .custom-checkbox .custom-control-label::before {
    top: -6px;
    left: -3px;
}

.course-item-content-wrap .custom-checkbox .custom-control-label::after {
    top: -3px;
    left: 0px;
}

.course-item-content {
    flex-grow: 1;
    padding-left: 20px;
}

.courser-item-meta-wrap {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.course-item-meta {
    font-size: 12px;
}

.course-item-meta i {
    margin-right: 3px;
}

/*================ course-dashboard-sidebar-column ===================*/
/********changed********/
.course-dashboard-sidebar-column {
    width: 25%;
    /* height: 100vh; */
    height: -webkit-fill-available;
    position: fixed;
    /* right: 0; */
    left: 0;
    background-color: var(--color-white);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 5;
    -webkit-box-shadow: 0 0 8px 0px var(--color-box-shadow);
    -moz-box-shadow: 0 0 8px 0px var(--color-box-shadow);
    box-shadow: 0 0 8px 0px var(--color-box-shadow);
    border: 1px solid var(--color-border);
    border-top: 0;
}

@media (max-width: 1366px) {
    .course-dashboard-sidebar-column {
        width: 400px;
    }
}

@media (max-width: 1024px) {
    .course-dashboard-sidebar-column {
        width: 350px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .course-dashboard-sidebar-column {
        display: none;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .course-dashboard-sidebar-column {
        display: none;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .course-dashboard-sidebar-column {
        display: none;
    }
}

.course-dashboard-sidebar-column.active {
    /* right: -25%; */
    left: -25%;
}

@media (max-width: 1366px) {
    .course-dashboard-sidebar-column.active {
        /* right: -400px; */
        left: -400px;
    }
}

@media (max-width: 1024px) {
    .course-dashboard-sidebar-column.active {
        /* right: -350px; */
        left: -350px;
    }
}

.course-dashboard-sidebar-wrap {
    height: 100%;
    overflow-x: hidden;
    padding-bottom: 90px;
    background-color: var(--color-white);
    z-index: 5;
}

/*======= footer-item ==========*/
.footer-item {
    margin-bottom: 30px;
}

.copy-desc {
    font-size: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .copy-desc {
        padding-bottom: 5px;
        text-align: center;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .copy-desc {
        padding-bottom: 5px;
        text-align: center;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .copy-desc {
        padding-bottom: 5px;
        text-align: center;
    }
}

.copy-desc a {
    color: var(--color-primary);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.copy-desc a:hover {
    color: var(--color-white);
}

.copy-desc-white {
    color: var(--color-breadcrum-text);
}

.copy-desc-white a {
    color: var(--color-breadcrum-text);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 700;
    font-size: 16px;
}

.copy-desc-white a:hover {
    color: var(--color-white);
}

/*===== copyright-content =======*/
@media only screen and (min-width: 768px) and (max-width: 991px) {

    .dashboard-copyright-content .justify-content-end,
    .copyright-content .justify-content-end {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {

    .dashboard-copyright-content .justify-content-end,
    .copyright-content .justify-content-end {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {

    .dashboard-copyright-content .justify-content-end,
    .copyright-content .justify-content-end {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .copyright-content .social-icons {
        text-align: center !important;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .copyright-content .social-icons {
        text-align: center !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .copyright-content .social-icons {
        text-align: center !important;
    }
}

.copyright-content .generic-list-item li {
    margin-bottom: 0;
}

.bg-color-primary {
    background-color: var(--color-primary) !important;
}

.bg-color-primary-02 {
    background-color: var(--color-primary-02) !important;
}

.bg-color-primary-1 {
    background-color: var(--color-primary-1) !important;
}

.bg-color-secondary {
    background-color: var(--color-secondary);
}

.bg-color-green {
    background-color: var(--color-badge-green);
}

.bg-color-red {
    background-color: var(--color-badge-red);
}

.text-center {
    text-align: center;
}

/* banner */
.banner {
    position: relative;
    background-size: cover;
    background-position: center;
    z-index: 2;
}

.banner-primary {
    background-color: var(--color-primary);
}

/*===== generic-tab =====*/
.generic-tab {
    border-bottom: 0;
}

.generic-tab .nav-item {
    margin-right: 5px;
    margin-bottom: 5px;
}

.generic-tab .nav-link {
    color: var(--color-text-gray);
    border: 0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.generic-tab .nav-link:hover {
    color: var(--color-primary);
}

.generic-tab .nav-link.active {
    color: var(--color-primary);
    -webkit-box-shadow: 0 6px 25px var(--color-box-shadow);
    -moz-box-shadow: 0 6px 25px var(--color-box-shadow);
    box-shadow: 0 6px 25px var(--color-box-shadow);
}

/*===== generic-tab-layout =====*/
.generic-tab-layout .nav-item {
    margin-right: 10px;
    margin-bottom: 0;
}

.generic-tab-layout .nav-link {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    position: relative;
}

.generic-tab-layout .nav-link::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    background-color: var(--color-text-black);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.generic-tab-layout .nav-link.active {
    color: var(--color-primary);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.generic-tab-layout .nav-link.active .shop-cart-btn {
    color: var(--color-primary);
}

.generic-tab-layout .nav-link.active::after {
    opacity: 1;
    visibility: visible;
    background-color: var(--color-primary);
}

/*======= generic-table ========*/
tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0.2px;
}

.table {
    --bs-table-bg: $table-bg;
    --bs-table-color: $table-bg;
}

.generic-table {
    color: var(--color-white);
    margin-bottom: 0;
    background: transparent !important;
}

.generic-table thead {
    background-color: var(--color-primary);
}

.generic-table thead th {
    /* border: none; */
    font-weight: 600;
}

.generic-table tbody th,
.generic-table tbody td {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: none;
    vertical-align: middle;
    font-weight: 500;
    border-bottom: 1px solid var(--color-border);
}

/*======== generic-list-item =========*/
.generic-list-item li {
    color: var(--color-body-text);
    line-height: 24px;
    /* margin-bottom: 10px; */
}

.generic-list-item li a {
    text-decoration: none !important;
    color: var(--color-primary);
    display: block;
    font-weight: 500;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.generic-list-item li a:hover {
    color: var(--color-primary);
}

/*============ generic-list-item-bullet =========*/
.generic-list-item-bullet li {
    position: relative;
    padding-left: 16px;
}

.generic-list-item-bullet li::after {
    position: absolute;
    content: "";
    top: 10px;
    left: 0;
    width: 5px;
    height: 5px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    background-color: var(--color-white);
}

/*======== generic-list-item-white =========*/
.generic-list-item-white li {
    color: var(--color-white);
}

.generic-list-item-white li a {
    color: var(--color-breadcrum-text);
}

.generic-list-item-white li a:hover {
    color: var(--color-white);
}

/*======== generic-list-item-arrow =========*/
.generic-list-item-arrow li {
    position: relative;
    padding-left: 12px;
    margin-left: 12px;
}

.generic-list-item-arrow li:first-child {
    padding-left: 0;
    margin-left: 0;
}

.generic-list-item-arrow li:first-child::after {
    display: none;
}

.generic-list-item-arrow li::after {
    position: absolute;
    content: "\f105";
    top: 1px;
    left: -7px;
    font-family: "Line Awesome Free";
    font-weight: 900;
    font-size: 14px;
}

/*====== generic-list-item-boxed =====*/
.generic-list-item-boxed li {
    border: 1px solid var(--color-white);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.generic-list-item-boxed li a {
    padding: 8px 18px;
}

.generic-list-item-boxed li:hover {
    border-color: var(--color-primary);
}

/*====== generic-list-item-flash =====*/
.generic-list-item-flash li {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.generic-list-item-flash li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

/*========== generic-accordion =========*/
.generic-accordion .generic-list-item li {
    font-size: 15px;
    color: var(--color-heading);
    font-weight: 400;
}

.generic-accordion .generic-list-item li:last-child {
    margin-bottom: 0;
}

.generic-accordion .card {
    border: 0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.generic-accordion .card-header {
    padding: 0;
    background-color: transparent;
    border-bottom: 0;
}

.generic-accordion .card-header .btn {
    width: 100%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 10px 20px 10px 50px;
    text-align: left;
    color: var(--color-heading);
    text-decoration: none;
    font-size: 17px;
    position: relative;
    font-weight: 600;
    background-color: var(--color-primary-2);
    border: 0;
}

.generic-accordion .card-header .btn[aria-expanded=true] .la-angle-up,
.generic-accordion .card-header .btn[aria-expanded=true] .la-minus {
    display: block;
}

.generic-accordion .card-header .btn[aria-expanded=false] .la-angle-down,
.generic-accordion .card-header .btn[aria-expanded=false] .la-plus {
    display: block;
}

.generic-accordion .card-header .btn .la {
    display: none;
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
}

/*========== generic--accordion - content =========*/
.generic--accordion .card-header .btn {
    padding-left: 20px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.generic--accordion .card-header .btn .la {
    left: auto;
    right: 20px;
    font-size: 16px;
}

.generic--accordion .card-header .btn:hover {
    background-color: var(--color-primary-2);
}

.generic--accordion .card {
    margin-bottom: 0;
    border-bottom: 1px solid var(--color-border);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.generic--accordion .card:first-of-type {
    border-bottom: 1px solid var(--color-border-highlight);
}

.generic--accordion .card:not(:first-of-type):not(:last-of-type) {
    border-bottom: 1px solid var(--color-border-highlight);
}

/*========== generic-accordion-layout-2 =========*/
.generic-accordion-layout .card {
    background-color: var(--color-white);
    -webkit-box-shadow: 0 0 15px var(--color-box-shadow);
    -moz-box-shadow: 0 0 15px var(--color-box-shadow);
    box-shadow: 0 0 15px var(--color-box-shadow);
    border: 1px solid var(--color-border);
}

.generic-accordion-layout .card-header .btn {
    padding-top: 17px;
    padding-bottom: 17px;
    background-color: var(--color-white);
}

.generic-accordion-layout .card-header .btn[aria-expanded=true] {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

/*====== off-canvas-menu-list ========*/
.off-canvas-menu-list li {
    margin-bottom: 0;
    font-size: 15px;
}

.off-canvas-menu-list li svg {
    fill: var(--color-black);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.off-canvas-menu-list li a {
    background-color: var(--color-white);
    color: var(--color-black);
    text-transform: capitalize;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 6px 20px;
    border-right: 2px solid transparent;
}

.off-canvas-menu-list li .sub-menu {
    display: none;
}

.off-canvas-menu-list li .sub-menu li a {
    color: var(--color-description);
}

.off-canvas-menu-list li .sub-menu li a:hover {
    color: var(--color-primary);
}

/*======== section-divider ========*/
.section-divider {
    display: inline-block;
    position: relative;
    height: 5px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: var(--color-primary);
    width: 90px;
    margin-top: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

/*======= section-divider-white =======*/
.section-divider-white {
    background-color: var(--color-white);
}

/*description */
.txt-desc {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* Add ellipsis for overflow */
    white-space: normal;
}

/*card image*/
.course-image {
    position: relative;
    height: 180px;
    object-fit: cover;
    overflow: hidden;
}

/* .course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
} */

/*card image extra created*/
.course-image1 {
    position: relative;
    height: 150px !important;
}

.course-image1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

/*-========= select-container =========-*/
.select-container {
    position: relative;
    width: 130px;
}

.select-container .bootstrap-select {
    width: 100% !important;
}

.select-container .bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
}

.select-container .bootstrap-select.show .dropdown-toggle {
    border-color: var(--color-primary);
}

.select-container .show>.btn-light.dropdown-toggle {
    background-color: var(--color-white);
    color: var(--color-description);
}

.select-container .dropdown-toggle {
    padding: 12px 20px;
    border-color: var(--color-border);
    /* background-color: var(--color-white); */
    color: var(--color-description);
}

.select-container .dropdown-toggle:focus {
    background-color: var(--color-white);
    outline: none;
}

.select-container .dropdown-menu {
    border-color: var(--color-border);
}

.select-container .dropdown-menu .bs-searchbox .form-control {
    border-color: var(--color-border);
    -webkit-box-shadow: 0 0 0 0;
    -moz-box-shadow: 0 0 0 0;
    box-shadow: 0 0 0 0;
    padding-left: 8px;
}

.select-container .dropdown-menu .bs-searchbox .form-control:focus {
    border-color: var(--color-border-highlight);
}

.select-container .dropdown-menu .inner::-webkit-scrollbar {
    width: 8px;
}

.select-container .dropdown-menu .inner::-webkit-scrollbar-track {
    background-color: var(--color-border);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.select-container .dropdown-menu .inner::-webkit-scrollbar-thumb {
    background-color: var(--color-border);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.select-container .dropdown-menu .inner::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-border-highlight);
}

.select-container .dropdown-item {
    color: var(--color-description);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    padding-right: 15px;
    padding-left: 15px;
}

.select-container .dropdown-item.active {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.select-container .dropdown-item.active:hover {
    color: var(--color-white);
}

.select-container .dropdown-item:focus {
    outline: none !important;
}

.select-container .dropdown-item:hover {
    color: var(--color-primary);
}

/*-========= select--container =========-*/
.select--container {
    width: 160px;
}

.select--container .dropdown-toggle {
    padding: 8px 16px;
    /* border: 0; */
    -webkit-box-shadow: 0 0 40px var(--color-box-shadow);
    -moz-box-shadow: 0 0 40px var(--color-box-shadow);
    box-shadow: 0 0 40px var(--color-box-shadow);
}

.select-container-sm .dropdown-toggle {
    padding: 6px 12px;
}

/*======= filter-bar =======*/
.course-area .filter-bar .filter-bar-inner .select2-container--default {
    width: 100% !important;
}

.filter-bar {
    background-color: var(--color-white);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 15px 15px;
    -webkit-box-shadow: 0 0 40px var(--color-box-shadow);
    -moz-box-shadow: 0 0 40px var(--color-box-shadow);
    box-shadow: 0 0 40px var(--color-box-shadow);
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .filter-bar .select-container {
        margin-left: auto;
        margin-right: auto;
    }
}

/*======= filter-nav ========*/
.filter-nav li {
    display: inline-block;
    margin-right: 2px;
}

.filter-nav li:last-child {
    margin-right: 0;
}

.filter-nav li a {
    padding: 3px 8px;
    display: block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-color: var(--color-white);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 0 40px var(--color-box-shadow);
    -moz-box-shadow: 0 0 40px var(--color-box-shadow);
    box-shadow: 0 0 40px var(--color-box-shadow);
    color: var(--color-text-gray);
    font-size: 18px;
}

.filter-nav li a:hover {
    color: var(--color-primary);
}

.filter-nav li a.active {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.filter-bar-inner .select2-container--default {
    -webkit-box-shadow: 0 0 7px var(--color-black-op-1);
    -moz-box-shadow: 0 0 7px var(--color-black-op-1);
    box-shadow: 0 0 7px var(--color-black-op-1);
    border: 0;
}

/*================ question-overview-filter-wrap ===================*/
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .question-overview-filter-wrap {
        display: block !important;
    }
}

.question-overview-filter-wrap .select2-full-width .select2-container--default {
    height: 44.5px !important;
}

.question-overview-filter-wrap .select2-full-width .select2-container--default .select2-selection--single {
    height: 44.5px !important;
    line-height: 0;
}

.question-overview-filter-item {
    flex: 1;
    margin-right: 8px;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .question-overview-filter-item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 8px;
    }
}

.question-overview-filter-item:last-child {
    margin-right: 0;
}

.question-overview-filter-item .generic-action-wrap .theme-btn {
    font-weight: 400;
    color: var(--color-text-gray);
    text-align: left;
}

.question-overview-filter-item .generic-action-wrap .theme-btn:before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Line Awesome Free";
    font-size: 15px;
    color: var(--color-text-gray);
    pointer-events: none;
    display: inline-block;
    content: "\f107";
    right: 15px;
    font-weight: 900;
}

.question-overview-filter-item .generic-action-wrap .dropdown-menu {
    min-width: 100%;
}

/*================ lecture-quest-wrap ===================*/
.lecture-quest-wrap {
    position: relative;
    width: 960px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1366px) {
    .lecture-quest-wrap {
        width: 700px;
    }
}

@media (max-width: 1024px) {
    .lecture-quest-wrap {
        width: 600px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .lecture-quest-wrap {
        width: auto;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .lecture-quest-wrap {
        width: auto;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .lecture-quest-wrap {
        width: auto;
    }
}

.replay-question-wrap,
.new-question-wrap {
    background-color: var(--color-white);
    padding-top: 30px;
    display: none;
}

.replay-question-wrap.active,
.new-question-wrap.active {
    display: block;
}

/*====== new-question-wrap ========*/
.new-question-wrap .new-question-body .custom-control-wrap .custom-control {
    position: relative;
}

.new-question-wrap .new-question-body .custom-control-wrap .custom-control .custom-control-input {
    position: absolute;
    top: 20px;
    left: 44px;
    transform: translateX(50%);
}

.new-question-wrap,
.search-course-wrap {
    width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .new-question-wrap,
    .search-course-wrap {
        width: auto;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {

    .new-question-wrap,
    .search-course-wrap {
        width: auto;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {

    .new-question-wrap,
    .search-course-wrap {
        width: auto;
    }
}

/*====== replay-question-body ========*/
.replay-question-body .question-list-item .media:hover {
    background-color: transparent;
}

.replay-action-bar {
    border: 1px solid var(--color-border-gray-light);
    background-color: var(--color-border-gray-light);
    border-bottom: 0;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
}

.replay-action-bar .btn-group .btn {
    color: var(--color-text-black);
    -webkit-box-shadow: 0 0 0 0;
    -moz-box-shadow: 0 0 0 0;
    box-shadow: 0 0 0 0;
}

.replay-action-bar .btn-group .btn:first-child {
    -webkit-border-radius: 4px 0 0 0;
    -moz-border-radius: 4px 0 0 0;
    border-radius: 4px 0 0 0;
}

.replay-action-bar .btn-group .btn:last-child {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.replay-action-bar .btn-group .btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.question-replay-body .form--control {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/*====== question-overview-result-wrap ========*/
.question-overview-result-wrap.active {
    display: none;
}

/*================ question-list-item ===================*/
.question-list-item .media-body {
    overflow: hidden;
}

.question-list-item .media:hover {
    background-color: var(--color-hover);
}

.question-meta-content {
    overflow: hidden;
    padding-right: 145px;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .question-meta-content {
        padding-right: 20px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .question-meta-content {
        padding-right: 20px;
    }
}

/*========= number-upvotes ==========*/
.number-upvotes span {
    font-weight: 600;
}

.number-upvotes button {
    border: none;
    margin-left: 10px;
    font-size: 15px;
    color: var(--color-heading);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 25px;
    height: 25px;
    line-height: 25px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: transparent;
    outline: none;
}

.number-upvotes button:hover {
    color: var(--color-black);
    background-color: var(--color-box-shadow);
}

/*================ lecture-announcement-wrap ===================*/
.lecture-announcement-wrap {
    width: 960px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .lecture-announcement-wrap {
        width: 600px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .lecture-announcement-wrap {
        width: auto;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .lecture-announcement-wrap {
        width: auto;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .lecture-announcement-wrap {
        width: auto;
    }
}

/*======= file upload ========*/
.file-upload-wrap {
    position: relative;
}

.file-upload-wrap .file-upload-input {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    width: 100%;
    border: 2px dashed var(--color-border);
    height: 120px;
    text-align: center;
    cursor: pointer;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    text-indent: -99999px;
}

.file-upload-wrap .file-upload-input:hover {
    border-color: var(--color-border);
    background-color: var(--color-primary-1);
}

.file-upload-wrap .file-upload-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    line-height: 120px;
    text-align: center;
    font-size: 16px;
    color: var(--color-heading);
    font-weight: 500;
}

.file-upload-wrap .MultiFile-list {
    margin-top: 20px;
}

.file-upload-wrap .MultiFile-list>.MultiFile-label {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-color: var(--color-hover);
    display: inline-block;
    border: 2px solid var(--color-border);
    padding: 12px;
    position: relative;
    width: 100%;
}

/* .file-upload-wrap .MultiFile-list>.MultiFile-label+.MultiFile-label {
    margin-top: 10px;
} */

.file-upload-wrap .MultiFile-list>.MultiFile-label>span {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.file-upload-wrap .MultiFile-list .MultiFile-remove {
    -webkit-box-shadow: 0 4px 20px var(--color-box-shadow);
    -moz-box-shadow: 0 4px 20px var(--color-box-shadow);
    box-shadow: 0 4px 20px var(--color-box-shadow);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    background-color: var(--color-white);
    color: var(--color-black);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    top: -16px;
    right: -16px;
    z-index: 1;
}

.file-upload-wrap .MultiFile-list .MultiFile-remove:hover {
    color: var(--color-primary);
}

/*======== file-upload-wrap-2 =======*/
.file-upload-wrap-2 .file-upload-input {
    border: 1px solid var(--color-border);
    height: 50px;
    background-color: var(--color-hover);
    width: 191px;
}

.file-upload-wrap-2 .file-upload-text {
    line-height: 50px;
    width: auto;
    left: 20px;
}

.review-reply {
    margin-left: 104px;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .review-reply {
        margin-left: 0;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .review-reply {
        margin-left: 0;
    }
}

.btn:focus-visible {
    box-shadow: none;
}

/* .c-stepper__item {
    display: flex;
    gap: 1rem;
} */

/* .c-stepper__item.active:before {
    --size: 3.5rem;
    content: "";
    position: relative;
    z-index: 1;
    flex: 0 0 var(--size);
    height: var(--size);
    border-radius: 50%;
    background-color: var(--color-primary);
    /* background-image: url('../../images/icons/announcement-white.svg'); */
/* background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center; 
    display: flex;
    align-items: center;
    justify-content: center;
} */

/* .c-stepper__item:before {
    --size: 3.5rem;
    content: "";
    position: relative;
    z-index: 1;
    flex: 0 0 var(--size);
    height: var(--size);
    border-radius: 50%;
    background-color: var(--color-secondary);
    /* background-image: url('../../images/icons/announcement-white.svg');
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center; 
     display: flex;
    align-items: center;
    justify-content: center;
} */

.c-stepper__circle {
    --size: 3rem;
    width: var(--size);
    height: var(--size);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--color-primary);
    position: relative;
}

.c-stepper__circle i {
    color: white;
    font-size: 1.5rem;
    /* Adjust icon size as needed */
    z-index: 1;
}

.c-stepper__item {
    position: relative;
    display: flex;
    gap: 1rem;
    padding-bottom: 2rem;
}

.c-stepper__item:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    transform: translateX(1.5rem);
    width: 1px;
    background-color: var(--color-primary);
}

.c-stepper {
    --size: 3rem;
    --spacing: 0.5rem;
}

.c-stepper__item:not(:last-child):after {
    /* top: calc(var(--size) + var(--spacing)); */
    transform: translateX(calc(var(--size) / 2));
    bottom: var(--spacing);
}

.c-stepper__title.active {
    color: var(--color-primary) !important
}

.c-stepper__content {
    width: 100%;
}

p.scrollable {
    max-height: 200px;
    /* Set a fixed height */
    overflow-y: auto;
    /* Enable vertical scroll */
    padding: 10px;
    /* Optional: padding for better readability */
    border: 1px solid #ccc;
    /* Optional: border for better visibility */
}

.login-bg {
    background-image: url("../images/login.avif");
    background-repeat: no-repeat;
    background-size: cover;
}

.card-item-box-shadow {
    box-shadow: 0 0 40px var(--color-dark-boder-2);
}

@media (min-width: 992px) {

    .modal-lg,
    .modal-xl {
        --bs-modal-width: 900px;
    }
}

.note-editable {
    background-color: white !important;
}

.note-btn.dropdown-toggle::after {
    content: none !important;
    border: none !important;
}

.btn-close:focus {
    box-shadow: none;
}