/*  
=================================================
START - Root Settings, bypassing theme manager
=================================================
*/
:root {
    /* START: custom colors v2 */
    --bs-primary-rgb: 230, 0, 126;

    /* --secondary: #8D43D7; */
    --bs-secondary-rgb: 141, 67, 215;

    /* --tertiary: #5552D3; */
    --tertiary: 85, 82, 211;

    /* Link overrides */
    --bs-link-color: rgba(var(--bs-primary-rgb)) !important;    
    --bs-link-hover-color: rgba(var(--bs-primary-rgb), 0.7) !important;

    /* button overrides */


    /* --primarylight: #FCE5F2; */
    /* --primarylight: 252, 229, 242; */
    --primarylight: rgba(var(--primary), 0.06);

    --white: #fff;

    --neutral100: #151b2d;
    --neutral90: #333c56;
    --neutral80: #6a7289;
    --neutral40: #f4f7fe;

    --pink20: #fce5f2;

    --notification: #eb3d3d;
    --gradientlr: linear-gradient(
        90deg,
        rgb(var(--bs-primary-rgb)) -49.61%,
        rgb(var(--bs-secondary-rgb)) 47.01%,
        rgb(var(--tertiary)) 123.72%
    );
    --gradienttd: linear-gradient(
        179.97deg,
        rgb(var(--bs-primary-rgb)) 0.03%,
        rgb(var(--bs-secondary-rgb)) 56.13%,
        rgb(var(--tertiary)) 100.67%
    );
    --gradientrl: linear-gradient(
        90deg,
        rgb(var(--tertiary)) -49.61%,
        rgb(var(--bs-secondary-rgb)) 47.01%,
        rgb(var(--bs-primary-rgb)) 123.72%
    );

    /* END: custom colors v2 */
/* START Taehee colors */

--gradient: linear-gradient(90deg, #E6007E 0%, #E50798 16.67%, #E117D1 33.33%, #AE2BDD 50%, #7B3ED8 66.67%, #5E4CD4 83.33%, #5552D3 100%);
--gradient-25: linear-gradient(90deg, rgba(230, 0, 126, 0.05) 0%, rgba(229, 7, 152, 0.05) 16.67%, rgba(225, 23, 209, 0.05) 33.33%, rgba(174, 43, 221, 0.05) 50%, rgba(123, 62, 216, 0.05) 66.67%, rgba(94, 76, 212, 0.05) 83.33%, rgba(85, 82, 211, 0.05) 100%); 
--gradient-50: linear-gradient(90deg, rgba(230, 0, 126, 0.05) 0%, rgba(229, 7, 152, 0.05) 16.67%, rgba(225, 23, 209, 0.05) 33.33%, rgba(174, 43, 221, 0.05) 50%, rgba(123, 62, 216, 0.05) 66.67%, rgba(94, 76, 212, 0.05) 83.33%, rgba(85, 82, 211, 0.05) 100%); 

/* END Taehee colors */


    --google: #4285f4;
    --fb: #3c5a99;
    --apple: #000000;
    --border-color: rgba(0, 0, 0, 0.1);
    --pink: var(--primary);
    --white: #fff;
    --gradient: linear-gradient(90deg, rgba(230, 1, 126, 1) 0%, rgba(85, 82, 212, 1) 55%);
    --green: #5b9324;
    --pinkbg: #f2cde8;
    --greenbg: #e0f3d6;
    --vbg: #d9dbf7;
    --v: #5552d3;
    --v1bg: #e3d8f8;
    --v1: #8d43d7;
    --violat: #5552d3;
    --active: #fce5f2;
    --cmtbg: #f4f5f9;
    --gray: #ceced0;
    --dark-pink: #6a7289;
}

body {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    color: var(--neutral90);
}
 


/* START::For metronic */
#kt_body {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.menu-item.disabled,
.menu-link.disabled {
    cursor: not-allowed;
}

/* END::For metronic */

/* * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
} */

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

input:focus {
    outline: none;
}

::-moz-selection {
    color: white;
    background: #ff7675;
}

::selection {
    color: white;
    background: #ff7675;
}

::-webkit-selection {
    color: white;
    background: #ff7675;
}

/* Scrollbar Appearence */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 3px 3px 3px 3px;
}

::-webkit-scrollbar-thumb {
    border-radius: 14px;
    background: #c2c9d2;
}

/* Responsive Fontsize Classes */
.fs-7 {
    font-size: 0.875rem;
    /* 14px */
    line-height: 1.375rem;
    font-style: normal;
    font-weight: 500;
}

.fs-8 {
    font-size: 0.813rem;
    /* 13px */
    line-height: 1rem;
    font-style: normal;
    font-weight: 500;
}

.fs-9 {
    font-size: 0.75rem;
    /* 12px */
    line-height: 1.125rem;
    font-style: normal;
    font-weight: 500;
}
.fs-42 {
    font-size: 42px;
}

.fs-10 {
    font-size: 0.625rem;
    /* 10px */
    line-height: 0.875rem;
    font-style: normal;
    font-weight: 500;
}

/* Opacity Classes */
.opacity-0 {
    opacity: 0;
}

.opacity-25 {
    opacity: 0.25;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-70 {
    opacity: 0.7;
}

.opacity-100 {
    opacity: 1;
}

.t85 {
    opacity: 0.85;
}

/* Should be changed for opacity-85 */

/* Position Classes */
.set-relative {
    position: relative;
}

.set-absolute {
    position: absolute;
}

.sticky-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Premade Responsive Margin Classes */
.mt-6 {
    margin-top: 4rem;
}

.mt-7 {
    margin-top: 5rem;
}

.mt-8 {
    margin-top: 6rem;
}

.mt-9 {
    margin-top: 7rem;
}

.focusedInput:focus {
    margin-top: 7rem;
}

/*  
END - Root Settings
=================================================
*/

/* START - Login */
.title-spacing {
    letter-spacing: -0.5px;
}

@media (min-width: 1200px) {
    .title-spacing {
        letter-spacing: -0.5px;
    }

.truncate-cell {
        max-width: 300px;
    }
}

/* START - Dashboard */

.cleaninput {
    border: none;
}

/* START - Main Layout */

.admin-button {
    position: absolute;
    font-weight: bold;
}

/* START - Course sales page css */

.hero_container {
    background: -webkit-gradient(linear, left top, right top, color-stop(40%, rgba(113, 95, 118, 1)), color-stop(70%, rgba(4, 106, 143, 0.1))),
        url(https://i.imgur.com/kCSV8xf.png);
    background: linear-gradient(to right, rgba(113, 95, 118, 1) 40%, rgba(4, 106, 143, 0.1) 70%),
        url(https://i.imgur.com/kCSV8xf.png);
    background-repeat: no-repeat;
    background-position: 0% 0%;
    background-size: cover;
    display: block;
    min-height: 30vh;
}

.accordion-button:not(.collapsed) {
    font-style: normal;
    font-weight: bold;
    color: black;
    background-color: white;
    -webkit-box-shadow: inset 0 -1px 0 rgb(0 0 0 / 0%);
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 0%);
}

.timeline-border {
    position: absolute;
    z-index: 0;
    width: 100px;
    border: 2px solid #f0f3fe;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.timeline-number {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    /* identical to box height, or 150% */
    text-align: center;
    color: #6a7289;
}

.lessonNumber {
    height: 25px;
    width: 25px;
    background-color: white;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.lesson-time {
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 14px;
    /* identical to box height, or 117% */
    color: #6a7289;
}

.body-large {
    /* Used in Purchase Heading */
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 24px;
    /* identical to box height, or 160% */
    text-align: center;
}

/* Responsive Margin Top for Purchase Bar */
.m-sidebar {
    margin-top: 6.5rem;
}

/* Div Style for Sidebar Header */
.header-sidebar {
    padding: 2.25rem 2em;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    border-width: 0px;
    background-color: #333c56;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .header-sidebar {
        padding: 0.75rem 1rem;
        border-top-right-radius: 6px;
        border-top-left-radius: 6px;
        border-width: 0px;
        background-color: #333c56;
    }
}

/* Font size style for Purchase Course Title */
.purchase_btn {
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
}

/* Div style for Purchase Course Btn in the Sidebar */
.sidebar_btn_style {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    border-width: 0px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #e60076;
}

/* Div style for Purchase Course Btn at the bottom */
.bottom_btn_style {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    border-width: 0px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #e60076;
}

/* Class created for Expanding Arrow in the middle of container */
/* .arrow-button:not(.collapsed)::after {
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e);
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}

.arrow-button::after {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 50%;
    content: "";
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='50 50 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e);
    background-repeat: no-repeat;
    background-size: 1.25rem;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
} */

/* Class for Div in Sticky Top Sidebar so there's always a space when you scroll */
.space-wrap {
    background: #f0f4fe;
    padding: 0.75rem 0 0;
    /*12px*/
}

/* Class for Div in Bottom Sidebar so there's always a space when you scroll */
.space-bottom {
    background: #f0f4fe;
    padding: 6.813em;
}

.space-left {
    float: left;
    width: 300px;
}

/* [ Responsive Content My Sales Page CSS - @Media ] */

/* Responsive format for Hero Text */
@media only screen and (min-width: 1401px) {
    .hero-text-wrap {
        max-width: 565px;
    }

    .header-wrapper span {
        font-size: 26px;
        right: -195px;
    }
}

/* END - Course sales page css */

/* START - Dashboard CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

.main-left-link ul {
    list-style-type: none;
    padding: 0; 
    margin: 0;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    border-radius: 20px 20px 0 0;
    background: rgba(0, 0, 0, 0.5);
    display: block;
    text-align: center;
    padding-top: 8px;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 5px;
    bottom: 5px;
    /*display: none; */
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.scrolltotop:hover {
    background: #000;
    color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

/*-- header area start --*/

.header-wrapper p {
    font-size: 16px;
    font-weight: 600;
}

.header-wrapper span {
    font-size: 26px;
    right: 22px;
    top: -6px;
    cursor: pointer;
}

/*-- header area end --*/

/*-- main area start --*/
.main-wrapper #leftbar {
    width: 280px;
}

.main-wrapper #rightbar {
    width: calc(100% - 280px);
}

.main-left-logo img {
    width: 180px;
}

.main-left-man

/*img */ {
    width: 130px;
}

.user-avatar-wrap {
    --b: 1px;
    /* border width*/
    display: block;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    position: relative;
    z-index: 0;
    height: var(--size);
    width: var(--size);
    padding: var(--padding);
}

.user-avatar-wrap:after {
    content: '';
    display: inline-block;
    padding-top: 100%;
}

.user-avatar-wrap:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(20deg, rgba(230, 0, 126, 0.3) 0%, rgba(230, 0, 126, 0.1) 100%);
    padding: var(--b);
    border-radius: 50%;
    -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.user-avatar {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
    -webkit-box-shadow: 0px 20px 15px 1px rgba(76, 101, 166, 0.25);
    box-shadow: 0px 20px 15px 1px rgba(76, 101, 166, 0.25);
    /* this shadow stays behind content so you barely see it */
}
.navigation-btn {
    padding-left: 50px;
}

.navigation-li a {
    display: block;
    text-decoration: none;
    font-size: 16px;
    color: #6a7289;
    font-weight: 500;
    padding: 18px 0 18px 50px;
    position: relative;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.navigation-li a:after {
    content: '';
    display: block;
    width: 5px;
    height: 100%;
    background: rgba(var(--bs-primary-rgb));
    position: absolute;
    left: 0;
    top: 0%;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
}

.navigation-li.active a:after {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.navigation-li a:hover:after {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.navigation-li a:hover:before {
    height: 50%;
}

.navigation-li a:hover {
    background: var(--primarylight);
    color: #151b2d;
    font-weight: 700;
}

.navigation-li a span {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.3);
    position: relative;
    margin-right: 20px;
}

.navigation-li a span i {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.navigation-li.active {
    /* background: rgba(var(--primary), 0.05); */
    /* background: var(--primarylight); */
    background: var(--primarylight);
}

.navigation-li.active a {
    color: #151b2d;
    font-weight: 700;
}

.navigation-li.active a span {
    color: rgba(var(--bs-primary-rgb));
}

.navigation-li a:hover span {
    color: rgba(var(--bs-primary-rgb));
}

.main-left-link {
    padding-right: 40px;
}

.main-left-link span#m-bar {
    width: 185px;
    height: 1px;
    background: #dde1e9;
    margin-left: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.main {
    padding-top: 20px;
    /*40px;*/
    padding-bottom: 0px;
    /*70px;*/
}

.main-right-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 35px;
    padding-left: 20px;
}

.main-right-heading h3 {
    color: #151b2d;
    font-size: 32px;
    font-weight: 700;
}

.main-right-heading p {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.3);
    padding: 5px 9px;
    cursor: pointer;
    position: relative;
}

.main-right-heading p span {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #eb3d3d;
    border-radius: 50%;
    position: absolute;
    border: 2px solid #fff;
    top: 5px;
    right: 6px;
}

/*--xpcards area start--*/

.xpcard-one span {
    /* Circle */
    display: inline-block;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: #fff;
    font-size: 16px;
    font-weight: 500;
    color: #6a7289;
    padding: 7px 15px;
}

.xpcard-one {
    /* Number Of circle */
    position: relative;
    width: 20%;
    text-align: center;
    z-index: 9;
}

.xpcard-one:after {
    /* White bar After */
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    left: 50%;
    top: 20px;
    background: #fff;
    z-index: -1;
}

.xpcard-one-re span {
    /*Gray Circle (done) */
    border-color: #cccdce;
    color: #cccdce;
}

.xpcard-one-re:after {
    /* Gray bar after (done) */
    background: -webkit-gradient(linear, left top, right top, color-stop(40%, rgba(204, 205, 206, 1)), to(rgba(230, 0, 126, 1)));
    background: linear-gradient(90deg, rgba(204, 205, 206, 1) 40%, rgba(230, 0, 126, 1) 100%);
}

.xpcard-two-re span {
    /* Pink Circle */
    background: rgba(var(--bs-primary-rgb));
    border-color: rgba(var(--bs-primary-rgb));
    color: #fff;
}

.xpcard-two-re:after {
    /* Pink Bar */
    background: -webkit-gradient(linear, left top, right top, from(rgba(230, 0, 126, 1)), color-stop(60%, rgba(255, 255, 255, 1)));
    background: linear-gradient(90deg, rgba(230, 0, 126, 1) 0%, rgba(255, 255, 255, 1) 60%);
}

.xpcard-five:after {
    content: none;
}

/* CLEAN UP CSS */
.xp-lectureCircle {
    /* Circle Number */
    position: relative;
    width: 42px;
    height: 42px;
    background: var(--white);
    font-size: 16px;
    color: var(--dark-pink);
    font-weight: 500;
    border: 1px solid transparent;
    display: block;
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 9px -3px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 9px -3px rgba(0, 0, 0, 0.2);
    padding: 7.5px 0;
    z-index: 9999;
    margin: auto;
    text-align: center;
}

.xp-lectureNumber {
    /* Width of Div Number */
    position: relative;
    width: 40%;
    text-align: center;
    margin-left: auto;
}

.xp-lineAfter {
    position: relative;
    z-index: -2;
    background: transparent;
    content: none;
}

.xp-lineAfter:after {
    /* White bar After */
    content: '';
    display: inline-block;
    width: 100%;
    height: 3px;
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--white);
    z-index: -5;
}

.xp-grayCircle {
    /*Gray Circle (done) */
    border-color: var(--gray);
    color: var(--gray);
}

.xp-pinkCircle {
    /* Pink Circle */
    background: rgba(var(--bs-primary-rgb));
    border-color: rgba(var(--bs-primary-rgb));
    color: var(--white);
}

.xp-grayLine:after {
    /* Gray bar after (done) */
    background: -webkit-gradient(linear, left top, right top, color-stop(40%, rgba(204, 205, 206, 1)), to(rgba(230, 0, 126, 1)));
    background: linear-gradient(90deg, rgba(204, 205, 206, 1) 40%, rgba(230, 0, 126, 1) 100%);
}

.xp-pinkLine:after {
    /* Pink Bar */
    background: -webkit-gradient(linear, left top, right top, from(rgba(230, 0, 126, 1)), color-stop(60%, rgba(255, 255, 255, 1)));
    background: linear-gradient(90deg, rgba(230, 0, 126, 1) 0%, rgba(255, 255, 255, 1) 60%);
}

.xpcard-progress {
    margin-top: 25px;
}

.xpcard-items {
    padding-left: 20px;
    padding-right: 35px;
    margin-top: 32px;
}

.cardbodyxp-one p {
    font-size: 15px;
    color: #8c8c8c;
    margin-top: 8px;
}

.cardbodyxp-one p#gift span {
    width: 35px;
    height: 35px;
    border: 1px solid #d1d1d1;
    border-radius: 8px;
    color: #d1d1d1;
    padding: 4px 9px;
}

.cardbodyxp-one {
    height: 100px;
    margin-top: 10px;
}

.cardbodyxp-one-link a {
    border: 1px solid #d1d1d1;
    border-radius: 8px;
    color: #d1d1d1;
    text-decoration: none;
    font-size: 15px;
    padding: 5px 15px;
}

.xpcard-items-one .card {
    border-radius: 10px;
}

.xp2play-button button {
    display: inline-block;
    border: 0;
    outline: none;
    background: none;
    margin-bottom: 2px;
    background-color: white;
    border-radius: 100%;
}

.xp2play-button button img {
    display: inline-block;
    width: 32px;
}

.xp2play-bar {
    width: 100%;
    height: 7px;
    background: #facce5;
}

.xp2play-bar span {
    display: block;
    width: 30%;
    height: 100%;
    background: rgba(var(--bs-primary-rgb));
}

.xp2play {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 4px;
    padding-left: 10px;
    padding-right: 10px;
}

.cardbodyxp-two p {
    display: block;
    font-size: 14px;
    color: #151b2d;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 0;
}

.cardbodyxp-two {
    padding-top: 15px;
}

.cardbodyxp-two-para p {
    margin-bottom: 0;
    font-size: 14px;
    color: #6a7289;
    padding-top: 5px;
}

.card-height-two {
    height: 109px;
}

.cardbodyxp-one-link-two a {
    background: var(--primarylight);
    color: rgba(var(--bs-primary-rgb));
    font-weight: 600;
    border-color: var(--primarylight);
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.cardbodyxp-one-link-two a:hover {
    opacity: 0.7;
}

.cardbodyxp-one-link a#buynow {
    background: rgba(var(--bs-primary-rgb));
    color: #fff;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.cardbodyxp-one-link a#buynow:hover {
    opacity: 0.7;
}

/*--xpcards area end--*/

/*--yourc area start--*/
.yourc-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.yourc-heading-left h3 {
    color: #151b2d;
    font-size: 32px;
    font-weight: 700;
}

.yourc-heading-right ul li {
    display: inline-block;
}

.yourc {
    padding-right: 35px;
    padding-left: 20px;
    margin-top: 5px;
    /*-- 75px; */
}

.yourc-heading-right ul li span {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.3);
    padding: 8px 12px;
    cursor: pointer;
}

.yourc-heading-right ul li:last-child span {
    margin-left: 10px;
    color: rgba(var(--bs-primary-rgb));
}

.yourc-slide-one span {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    padding: 6px 15px;
    position: absolute;
    right: 20px;
    top: 20px;
}

.yourc-slide-one-wrapper {
    position: relative;
    background: #fff;
    -webkit-box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1);
    box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1);
    border-radius: 8px;
}

/*css for svg circullar*/
.rating-container {
    position: relative;
    width: 50px;
    height: 50px;
}

.rating-container .walk-container,
.rating-container .transit-container,
.rating-container .bike-container {
    height: 50px;
    width: 50px;
    display: inline-block;
    position: relative;
    background: #fff;
    border-radius: 50%;
    left: -3px;
    top: -3px;
}

.rating-container .walk-container a,
.rating-container .transit-container a,
.rating-container .bike-container a {
    position: absolute;
    width: 100px;
    color: #727272;
    text-decoration: none;
    border-bottom: none;
    bottom: 35px;
    right: 0;
    text-align: center;
    font-weight: light;
    font-size: 12px;
}

.rating-container .walk-container a:hover,
.rating-container .transit-container a:hover,
.rating-container .bike-container a:hover {
    text-decoration: underline;
}

.rating-container svg {
    height: 50px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    width: 50px;
}

.rating-container svg .rating-progress-background {
    fill: none;
    /* stroke: rgba(230, 0, 126, 1);  */
    stroke: var(--primarylight);
    stroke-width: 4;
}

.rating-container svg .rating-progress {
    fill: none;
    stroke: rgba(var(--bs-primary-rgb));
    stroke-dasharray: 100 100;
    stroke-dashoffset: 100;
    stroke-linecap: round;
    stroke-width: 4;
    -webkit-transition: all 1.2s cubic-bezier(0.99, 0.01, 0.62, 0.94);
    transition: all 1.2s cubic-bezier(0.99, 0.01, 0.62, 0.94);
}

.rating-container #progress-display,
.rating-container #transit-score,
.rating-container #bike-score {
    position: absolute;
    width: 100px;
    color: black;
    bottom: 16px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    left: -25px;
}

.rating-container .transit-icon .fa,
.rating-container .bike-icon .fa,
.rating-container .walk-icon .fa {
    position: absolute;
    bottom: 50px;
    right: 0;
    width: 100px;
    text-align: center;
    font-size: 40px;
}

.yourc-slide-oval {
    background: #fff;
    padding: 6px;
    display: block;
    border-radius: 50%;
    height: 56px;
    width: 56px;
    margin-left: auto;
    position: relative;
    z-index: 99;
    left: 28px;
    top: -25px;
}

.yourc-slide-heading {
    max-width: 310px;
    position: relative;
    z-index: 99999;
    height: 135px;
    margin-top: -34px;
}

.youcslide-content {
    padding: 0px 25px 25px;
}

.yourc-slide-one {
    position: relative;
}

.yourc-slide-heading h4 {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 600;
    max-width: 70%;
}

.yourc-slide-heading p {
    margin-bottom: 0;
    font-size: 15px;
    color: #6a7289;
    margin-top: 10px;
}

.yourc-slide-link a {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(var(--bs-primary-rgb));
    border: 1px solid rgba(230, 0, 126, 0.3);
    text-decoration: none;
    border-radius: 8px;
    padding: 10px 18px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.yourc-slide-link a:hover {
    background: rgba(var(--bs-primary-rgb));
    color: #fff;
}

/*css for svg circullar*/

.yourc-slider {
    margin-top: 25px;
}

/*--yourc area end--*/

/*-- audio area start --*/
.audio {
    padding-right: 35px;
    padding-left: 20px;
    margin-top: 75px;
}

.audio-heading h3 {
    color: #151b2d;
    font-size: 32px;
    font-weight: 700;
}

.audio-heading span {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 9px;
    font-size: 13px;
    color: #000000;
    font-weight: 600;
    padding: 9px 8px;
    -webkit-box-shadow: 0px 0px 5px -4px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 5px -4px rgba(0, 0, 0, 0.3);
    margin-left: 10px;
    position: relative;
    top: -2px;
}

.audio-one {
    background: #ffffff;
    -webkit-box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1);
    box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1);
    border-radius: 8px;
    padding: 10px;
    margin-top: 30px;
}

.audio-one p {
    font-size: 14px;
    font-weight: 600;
    color: #151b2d;
    padding-top: 10px;
    padding-left: 5px;
    height: 55px;
}

.audio-wrapper .col-lg {
    max-width: 20%;
    width: 20%;
    -webkit-box-flex: 20%;
    -ms-flex: 20%;
    flex: 20%;
}

.audio-link a {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: rgba(var(--bs-primary-rgb));
    border-radius: 8px;
    padding: 12px 50px;
    text-decoration: none;
    margin-top: 45px;
    margin-bottom: 25px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.audio-link a:hover {
    opacity: 0.7;
}

/*-- audio area end --*/

.main-full-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0px 15px;
}

.main-full-menu-left a img {
    display: inline-block;
    width: 175px;
}

.main-full-menu-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-full-menu-right p {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.3);
    padding: 5px 9px;
    cursor: pointer;
    position: relative;
    margin-bottom: 0;
}

.main-full-menu-right p span {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #eb3d3d;
    border-radius: 50%;
    position: absolute;
    border: 2px solid #fff;
    top: 5px;
    right: 6px;
}

.menutigger {
    width: 32px;
    border-radius: 8px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.3);
    padding: 9px 11px;
    height: 32px;
    margin-left: 20px;
    cursor: pointer;
}

.menutigger span {
    display: block;
    width: 11px;
    height: 2px;
    background: #000000;
    margin: 2px 0px;
}

#pre {
    position: relative;
}

#post {
    left: 100%;
    position: relative;
    top: -35px;
}

#menulefthide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#menulefthide .menutigger {
    margin-left: 0;
    margin-right: 20px;
}

.smenu-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 35px 15px;
}

.smenu-header p {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 8px -2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 8px -2px rgba(0, 0, 0, 0.3);
    padding: 5px 9px;
    cursor: pointer;
    position: relative;
    margin-bottom: 0;
}

.smenu-header p span {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #eb3d3d;
    border-radius: 50%;
    position: absolute;
    border: 2px solid #fff;
    top: 5px;
    right: 6px;
}

.smenu-header-right span {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 8px -2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 8px -2px rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    font-size: 20px;
    margin-left: 20px;
    cursor: pointer;
}

.smenu-logout {
    margin-left: 15px;
    margin-right: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #dbdbdb;
}

.smenu-logout-left {
    width: 150px;
}

.smenu-logout-left span {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 8px -2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 8px -2px rgba(0, 0, 0, 0.3);
    position: relative;
    margin-right: 20px;
}

.smenu-logout-left span i {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.smenu-logout-left a {
    text-decoration: none;
    font-size: 16px;
    color: #6a7289;
    font-weight: 500;
    position: relative;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.smenu-logout-right img {
    display: block;
    width: 120px;
    margin-bottom: -18px;
}

.smenu-link .main-left-link {
    padding-right: 0;
}

.smenu-body {
    padding: 0;
}

.smenu-link {
    padding-left: 6px;
    padding-right: 10px;
    margin-top: 35px;
}

.smenu-link .navigation-li a {
    padding: 15px 0 15px 25px;
}

.smallmenu {
    height: inherit;
}

.smenu-link .navigation-li a span {
    -webkit-box-shadow: 0px 0px 8px -2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 8px -2px rgba(0, 0, 0, 0.3);
}

.yourc-slide-link a:last-child {
    background: rgba(var(--bs-primary-rgb));
    color: #fff;
    padding-left: 30px;
    padding-right: 30px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.yourc-slide-link a:last-child:hover {
    opacity: 0.7;
}

.babu {
    width: 85%;
    background: #fff;
    margin-top: -56px;
    position: relative;
}

.xpcard-scroll {
    overflow-y: hidden;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.xpcard-scroll::-webkit-scrollbar {
    display: none;
}

.notif-wraper {
    min-width: 20rem !important;
}

.notif-wraper h4 {
    padding: 0px;
}

.notif-wraper p {
    all: unset;
    margin-bottom: 0;
    font-size: 13px;
    color: #151b2d;
    line-height: 15px;
}

.notif-wraper p:hover {
    background-color: inherit;
    background-image: inherit;
    color: inherit;
}

.notif-wraper span {
    display: inline-block;
    font-size: 13px;
    color: rgba(var(--bs-primary-rgb));
    background: var(--primarylight);
    border-radius: 4px;
    padding: 5px 10px;
    font-weight: 500;
}

/* START - Responsive Style  "Dashboard" */

/*
====================================
XXL Screen
====================================
*/

@media screen and (min-width: 1350px) and (max-width: 1650px) {
    .yourc-slide-heading h4 {
        margin-bottom: 0;
        font-size: 24px;
        font-weight: 600;
        max-width: 90%;
    }
}

/*
====================================
Medium Screen - Others
====================================
*/

@media screen and (min-width: 1930px) {
    .main-wrapper #rightbar {
        max-width: calc(1740px - 280px);
        margin: auto;
    }
}

/* XXL */
@media screen and (min-width: 1350px) and (max-width: 1650px) {
    .natilist {
        position: absolute;
        width: 300px;
        left: -106px;
        top: 58px;
        background: #fff;
        z-index: 9999999999999999999;
        display: none;
        border-radius: 5px;
        -webkit-box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.4);
        box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.4);
    }

    .natilist:after {
        content: '';
        display: block;
        width: 2px;
        height: 2px;
        border-left: 16px solid transparent;
        border-bottom: 18px solid #fff;
        border-right: 16px solid transparent;
        position: absolute;
        top: -17px;
        right: 50px;
        z-index: 99999;
    }

    .main-full-menu {
        padding-right: 35px;
    }

    .cardbodyxp-two a {
        font-size: 12px;
    }

    .cardbodyxp-two-para p {
        font-size: 12px;
    }

    .cardbodyxp-one-link a {
        font-size: 12px;
        padding: 4px 6px;
    }

    .cardbodyxp-one-link a#buynow {
        font-size: 12px;
        font-weight: 600;
        color: #fff;
        background: rgba(var(--bs-primary-rgb));
        padding: 5px 20px;
    }

    .yourc-slide-heading h4 {
        margin-top: 10px;
    }

    .yourc-slide-oval {
        right: 13px;
        bottom: 14px;
    }

    .cardbodyxp-two p {
        font-size: 12px;
        padding-right: 15px;
    }

    .cardbodyxp-two p br {
        display: none;
    }

    .cardbodyxp-one-link {
        margin-top: 10px;
    }

    .youcslide-content {
        padding-left: 10px;
        padding-right: 10px;
    }

    .yourc-slide-link a {
        padding: 8px;
        font-size: 12px;
    }

    .yourc-slide-link a:last-child {
        padding: 8px 18px;
    }
}

/* XL */
@media screen and (min-width: 1200px) and (max-width: 1350px) {
    /* Kars start */

    /* KARS END */
    .main-wrapper #leftbar {
        width: 210px;
    }

    .main-wrapper #rightbar {
        width: calc(100% - 210px);
    }

    .navigation-li a {
        padding: 12px 0 12px 14px;
    }

    .main-left-logo img {
        width: 150px;
    }

    .main-left-link {
        padding-right: 22px;
    }

    .main-left-link span#bar {
        width: 170px;
    }

    .header-wrapper p {
        font-size: 12px;
    }

    .header-wrapper span {
        font-size: 22px;
        right: 0;
    }

    .main {
        padding-top: 20px;
    }

    .main-right-heading {
        padding: 0px 15px;
        margin-top: 0;
        margin-bottom: 30px;
    }

    .main-right-heading h3 {
        font-size: 24px;
    }

    .xpcard-block,
    .xpcard-items .row {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        width: 1250px;
    }

    .xpcard-one {
        width: 250px;
    }

    .xpcard-items .row .col-lg {
        width: 250px;
    }

    .xpcard-scroll::-webkit-scrollbar {
        display: none;
    }

    .xpcard-scroll {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .xpcard-block {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .xpcard-progress {
        margin-top: 10px;
    }

    .xpcard-items {
        margin-bottom: 20px;
    }

    .yourc-heading-left h3 {
        font-size: 24px;
    }

    .yourc {
        padding: 0px 15px;
        margin-top: 35px;
    }

    .audio {
        padding: 0px 15px;
        margin-top: 40px;
    }

    .audio-heading h3 {
        font-size: 24px;
    }

    .audio-wrapper .col-lg {
        max-width: 50%;
        width: 50%;
        -webkit-box-flex: 50%;
        -ms-flex: 50%;
        flex: 50%;
    }

    .audio-one {
        margin-top: 20px;
    }

    .yourc-slide-oval {
        right: 26px;
        bottom: 10px;
    }

    .yourc-slide-heading h4 {
        margin-bottom: 0;
        font-size: 20px;
        font-weight: 600;
        margin-top: 8px;
    }

    .audio-wrapper .col-lg {
        width: 33%;
        max-width: 33%;
        -webkit-box-flex: 33%;
        -ms-flex: 33%;
        flex: 33%;
    }

    .youcslide-content {
        padding-left: 10px;
        padding-right: 10px;
    }

    .yourc-slide-link a {
        padding: 8px;
        font-size: 12px;
    }

    .yourc-slide-link a:last-child {
        padding: 8px 18px;
    }
}

/* LG */
@media screen and (min-width: 992px) and (max-width: 1200px) {
    .main-wrapper #leftbar {
        width: 210px;
    }

    .main-wrapper #rightbar {
        width: calc(100% - 210px);
    }

    .navigation-li a {
        padding: 12px 0 12px 14px;
    }

    .main-left-logo img {
        width: 150px;
    }

    .main-left-link {
        padding-right: 22px;
    }

    .main-left-link span#bar {
        width: 170px;
    }

    .header-wrapper p {
        font-size: 12px;
    }

    .header-wrapper span {
        font-size: 22px;
        right: 0;
    }

    .main {
        padding-top: 20px;
    }

    .main-right-heading {
        padding: 0px 15px;
        margin-top: 0;
        margin-bottom: 30px;
    }

    .main-right-heading h3 {
        font-size: 24px;
    }

    .xpcard-block,
    .xpcard-items .row {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        width: 1250px;
    }

    .xpcard-one {
        width: 250px;
    }

    .xpcard-items .row .col-lg {
        width: 250px;
    }

    .xpcard-block {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .xpcard-progress {
        margin-top: 10px;
    }

    .xpcard-items {
        margin-bottom: 20px;
    }

    .yourc-heading-left h3 {
        font-size: 24px;
    }

    .yourc {
        padding: 0px 15px;
        margin-top: 35px;
    }

    .audio {
        padding: 0px 15px;
        margin-top: 40px;
    }

    .audio-heading h3 {
        font-size: 24px;
    }

    .audio-wrapper .col-lg {
        max-width: 50%;
        width: 50%;
        -webkit-box-flex: 50%;
        -ms-flex: 50%;
        flex: 50%;
    }

    .audio-one {
        margin-top: 20px;
    }

    .xpcard-scroll::-webkit-scrollbar {
        display: none;
    }

    .xpcard-scroll {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .yourc-slide-oval {
        right: 22px;
        bottom: 10px;
    }

    .yourc-slide-heading h4 {
        margin-bottom: 0;
        font-size: 20px;
        font-weight: 600;
        margin-top: 8px;
    }

    .audio-wrapper .col-lg {
        width: 33%;
        max-width: 33%;
        -webkit-box-flex: 33%;
        -ms-flex: 33%;
        flex: 33%;
    }

    .youcslide-content {
        padding-left: 10px;
        padding-right: 10px;
    }

    .yourc-slide-link a {
        padding: 8px;
        font-size: 12px;
    }

    .yourc-slide-link a:last-child {
        padding: 8px 18px;
    }
}

/*
====================================
Small Screen - Tablate
====================================
*/

/* Tablet (md) */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .main-wrapper #leftbar {
        width: 210px;
    }

    .main-wrapper #rightbar {
        width: calc(100% - 210px);
    }

    .navigation-li a {
        padding: 12px 0 12px 14px;
    }

    .main-left-logo img {
        width: 150px;
    }

    .main-left-link {
        padding-right: 22px;
    }

    .main-left-link span#bar {
        width: 170px;
    }

    .header-wrapper p {
        font-size: 12px;
    }

    .header-wrapper span {
        font-size: 22px;
        right: 0;
    }

    .main {
        padding-top: 20px;
    }

    .main-right-heading {
        padding: 0px 15px;
        margin-top: 0;
        margin-bottom: 30px;
    }

    .main-right-heading h3 {
        font-size: 24px;
    }

    .xpcard-block,
    .xpcard-items .row {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        width: 1250px;
    }

    .xpcard-one {
        width: 250px;
    }

    .xpcard-items .row .col-lg {
        width: 250px;
    }

    .xpcard-block {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .xpcard-progress {
        margin-top: 10px;
    }

    .xpcard-items {
        margin-bottom: 20px;
    }

    .yourc-heading-left h3 {
        font-size: 24px;
    }

    .yourc {
        padding: 0px 15px;
        margin-top: 35px;
    }

    .audio {
        padding: 0px 15px;
        margin-top: 40px;
    }

    .audio-heading h3 {
        font-size: 24px;
    }

    .audio-wrapper .col-lg {
        max-width: 50%;
        width: 50%;
        -webkit-box-flex: 50%;
        -ms-flex: 50%;
        flex: 50%;
    }

    .audio-one {
        margin-top: 20px;
    }

    .xpcard-scroll::-webkit-scrollbar {
        display: none;
    }

    .xpcard-scroll {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .yourc-slide-oval {
        right: 73px;
        bottom: 50px;
    }

    .yourc-slide-oval {
        right: 12%;
        bottom: 12%;
    }
}

/*
====================================
Small Screen - Mobile
====================================
*/

/* SM */
@media screen and (min-width: 576px) and (max-width: 767px) {
    /* body {
        background: url(../assets/img/bg.jpg);
    } */

    .header-wrapper p {
        font-size: 12px;
    }

    .header-wrapper span {
        font-size: 22px;
        right: 0;
    }

    #leftbar {
        display: none;
    }

    .main-wrapper #rightbar {
        width: 100%;
    }

    .main {
        padding-top: 20px;
    }

    .main-right-heading {
        padding: 0px 15px;
        margin-top: 0;
        margin-bottom: 30px;
    }

    .main-right-heading h3 {
        font-size: 24px;
    }

    .xpcard-block,
    .xpcard-items .row {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        width: 1250px;
    }

    .xpcard-one {
        width: 250px;
    }

    .xpcard-items .row .col-lg {
        width: 250px;
    }

    .xpcard-block {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .xpcard-progress {
        margin-top: 10px;
    }

    .xpcard-items {
        margin-bottom: 20px;
    }

    .yourc-heading-left h3 {
        font-size: 24px;
    }

    .yourc {
        padding: 0px 15px;
        margin-top: 35px;
    }

    .audio {
        padding: 0px 15px;
        margin-top: 40px;
    }

    .audio-heading h3 {
        font-size: 24px;
    }

    .audio-wrapper .col-lg {
        max-width: 50%;
        width: 50%;
        -webkit-box-flex: 50%;
        -ms-flex: 50%;
        flex: 50%;
    }

    .audio-one {
        margin-top: 20px;
    }

    .xpcard-scroll::-webkit-scrollbar {
        display: none;
    }

    .xpcard-scroll {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .yourc-slide-oval {
        right: 12%;
        bottom: 12%;
    }
}

/*
====================================
Xtra Small Screen - Small Mobile
====================================
*/

/* XS */
@media screen and (max-width: 576px) {
    body {
        background: url(../assets/img/bg.jpg);
    }

    .header-wrapper p {
        font-size: 12px;
    }

    .header-wrapper span {
        font-size: 22px;
        right: 0;
    }

    #leftbar {
        display: none;
    }

    .main-wrapper #rightbar {
        width: 100%;
    }

    .main {
        padding-top: 20px;
    }

    .main-right-heading {
        padding: 0px 15px;
        margin-top: 0;
        margin-bottom: 30px;
    }

    .main-right-heading h3 {
        font-size: 24px;
    }

    .xpcard-block,
    .xpcard-items .row {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        width: 1250px;
    }

    .xpcard-one {
        width: 250px;
    }

    .xpcard-items .row .col-lg {
        width: 250px;
    }

    .xpcard-block {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .xpcard-progress {
        margin-top: 10px;
    }

    .xpcard-items {
        margin-bottom: 20px;
    }

    .yourc-heading-left h3 {
        font-size: 24px;
    }

    .yourc {
        padding: 0px 15px;
        /*  
margin-top: 35px
*/
    }

    .audio {
        padding: 0px 15px;
        margin-top: 40px;
    }

    .audio-heading h3 {
        font-size: 24px;
    }

    .audio-wrapper .col-lg {
        max-width: 50%;
        width: 50%;
        -webkit-box-flex: 50%;
        -ms-flex: 50%;
        flex: 50%;
    }

    .audio-one {
        margin-top: 20px;
    }

    .xpcard-scroll::-webkit-scrollbar {
        display: none;
    }

    .xpcard-scroll {
        -ms-overflow-style: none;
        scrollbar-width: none;
        overflow: scroll;
    }

    .yourc-slide-oval {
        right: 8%;
        bottom: 10%;
    }
}

/* END - Responsive Style  "My Content Page" */
/*-- END -My Content Page  --*/

/*==============================
        login page start
        ==============================*/

.loginmain {
    background-image: url(../assets/img/bg.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    min-height: 100vh;
    padding: 80px 0px;
}

/*-- login-logo area start --*/
/* .login-logo {
                        padding: 50px;
        } */
.login-logo-wrapper img {
    display: inline-block;
    width: 260px;
}

/*-- login-logo area end --*/

/*-- loginlink area start --*/
.loginlink-wrapper {
    max-width: 550px;
    margin: auto;
    -webkit-box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1);
    box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1);
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
}

.login-logo h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 35px;
    color: var(--apple);
}

.login-logo-items ul li a {
    display: block;
    width: 100%;
    background: var(--google);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
    padding: 13px 0px;
    margin-top: 15px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.login-logo-items ul li a:hover {
    opacity: 0.7;
}

.login-logo-items ul li a img {
    display: inline-block;
    width: 24px;
    margin-right: 15px;
}

.login-logo-items ul li:nth-child(2) a {
    background: var(--fb);
}

.login-logo-items ul li:nth-child(3) a {
    background: var(--apple);
}

.login-or span {
    display: block;
    font-size: 12px;
    color: var(--apple);
    position: relative;
}

.login-or span:after {
    content: '';
    display: block;
    width: 210px;
    position: absolute;
    left: 0;
    top: 10px;
    height: 1px;
    background: var(--border-color);
}

.login-or span:before {
    content: '';
    display: block;
    width: 210px;
    position: absolute;
    right: 0;
    top: 10px;
    height: 1px;
    background: var(--border-color);
}

.login-or {
    margin-top: 30px;
}

.login-form-input label {
    display: block;
    font-size: 15px;
    margin-bottom: 10px;
}

.login-form-input input {
    display: block;
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
    /* New */
}

.login-form-input input::-webkit-input-placeholder {
    opacity: 1;
}

.login-form-input input::-moz-placeholder {
    opacity: 1;
}

.login-form-input input:-ms-input-placeholder {
    opacity: 1;
}

.login-form-input input::-ms-input-placeholder {
    opacity: 1;
}

.login-form-input input::placeholder {
    opacity: 1;
}

.login-form-input {
    margin-top: 25px;
}

.login-form-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 25px;
}

.login-form-checkbox .check-box {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.login-form-checkbox .check-box input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.login-form-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid rgba(var(--bs-primary-rgb));
    border-radius: 4px;
}

.login-form-checkbox .check-box input:checked ~ .checkmark {
    background-color: rgba(var(--bs-primary-rgb));
}

.login-form-checkbox .checkmark:after {
    content: '';
    position: absolute;
    display: none;
}

.login-form-checkbox .check-box input:checked ~ .checkmark:after {
    display: block;
}

.login-form-checkbox .check-box .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.login-forget a {
    display: inline-block;
    color: rgba(var(--bs-primary-rgb));
    font-size: 15px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.login-forget a:hover {
    opacity: 0.7;
}

.login-form-button button {
    display: block;
    width: 100%;
    text-align: center;
    border: 0;
    outline: none;
    color: var(--white);
    background: rgba(var(--bs-primary-rgb));
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
    padding: 12px 0px;
    margin: 25px 0px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.login-form-button button:hover {
    opacity: 0.7;
}

.login-form-para p {
    margin-bottom: 0;
    font-size: 13px;
    color: #6a7289;
    text-align: center;
}

.login-form-para p a {
    display: inline-block;
    color: rgba(var(--bs-primary-rgb));
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.login-form-para p a:hover {
    opacity: 0.7;
}

/*-- loginlink area end --*/

/*==============================
        login page end
        ==============================*/

/*==============================
        inbox page end
        ==============================*/
.inbox-content img {
    display: inline-block;
    width: 65px;
    margin-bottom: 25px;
}

.inbox-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--apple);
}

.inbox-content p {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
}

.inbox-content a {
    display: inline-block;
    color: rgba(var(--bs-primary-rgb));
    font-size: 13px;
    margin-top: 10px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.inbox-content a:hover {
    opacity: 0.7;
}

/*==============================
        inbox page end
        ==============================*/

/*==============================
        sales page start
        ==============================*/

/* -- slogo area start -- */

.slogo {
    margin-top: 50px;
}

.slogo-wrapper a img {
    display: inline-block;
    width: 270px;
}

/* -- slogo area end -- */

/*-- sbannar area start --*/
.sbannar-left span {
    display: inline-block;
    background: var(--gradient);
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 4px 40px;
}

.sbannar-left h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 50px;
}

.sbannar-left h4 {
    font-size: 24px;
    color: var(--neutral80);
    line-height: 1.7;
    margin-top: 20px;
}

.sbannar-left-form-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.sbannar-left-form-wrapper input {
    display: block;
    width: 48%;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: transparent;
    padding: 10px 16px;
}

/* Kars: */
.form-input-1 {
    display: block;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: transparent;
    padding: 10px 16px;
}

.form-submit-button {
    border-radius: 8px;
    border: 0;
    outline: none;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    background: rgba(var(--bs-primary-rgb));
    padding: 17px 20px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    flex-grow: 100;
    -webkit-box-flex: 100;
    -ms-flex-positive: 100;
}

/* -- */
.sbannar-left-form-wrapper button {
    display: block;
    width: 48%;
    border-radius: 8px;
    border: 0;
    outline: none;
    color: var(--white);
    font-weight: 600;
    font-size: 20px;
    background: rgba(var(--bs-primary-rgb));
    padding: 9px 0px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.sbannar-left-form-wrapper button:hover {
    opacity: 0.7;
}

.sbannar-left {
    padding-right: 75px;
}

.sbannar-left-form {
    margin-top: 50px;
}

.sbannar-right img {
    display: block;
    width: 100%;
    margin-left: 50px;
    border-radius: 30px 30px 30px;
    padding: 15px;
}

.sbannar {
    margin-top: 80px;
}

/*-- sbannar area end --*/

/*-- sani area start --*/
.sani-wrapper img {
    display: inline-block;
    width: 12px;
}

.sani {
    margin-top: 70px;
}

/*-- sani area end --*/

/*-- syour area start --*/
.syour-wrapper {
    max-width: 540px;
    margin: auto;
}

.syour-heading-one h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.4;
}

.syour-heading-one p {
    color: var(--neutral80);
    margin: 50px 0px;
}

.syour-heading-one p strong {
    color: rgba(var(--bs-primary-rgb));
}

.syour-sell-img-one img {
    display: block;
    width: 510px;
}

.syour-sell-one-content p {
    color: var(--neutral80);
    margin-top: 25px;
}

.syour-sell-one-content p strong {
    color: var(--green);
}

.syour-sell-one-content p span {
    color: rgba(var(--bs-primary-rgb));
}

.syour-customer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 90px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.syour-customer-left-heading h4 {
    font-size: 15px;
    color: var(--neutral80);
    font-weight: 700;
    text-align: right;
    line-height: 1.5;
}

.syour-customer-left-heading p {
    margin-bottom: 0;
    font-size: 12px;
    text-align: right;
}

.syour-customer-left-heading p span {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: rgba(var(--bs-primary-rgb));
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    top: 3px;
}

.syour-customer-left {
    width: 207px;
}

.syour-customer-left img {
    display: block;
    width: 100%;
    margin-top: 15px;
}

.syour-customer-left h6 {
    margin-bottom: 0;
    text-align: right;
    font-weight: 400;
    font-size: 15px;
    color: #6a7289;
    margin-top: 20px;
    line-height: 2;
}

.syour-customer-left strong {
    font-size: 12px;
    color: rgba(var(--bs-primary-rgb));
    background: #f2cde8;
    border-radius: 5px;
    padding: 4px 8px;
}

.syour-customer-middle {
    padding-left: 30px;
    padding-right: 30px;
}

.syour-customer-middle p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral80);
    top: 200px;
    position: relative;
}

.syour-customer-left h6 span {
    font-size: 12px;
    color: rgba(var(--bs-primary-rgb));
    background: var(--pinkbg);
    border-radius: 5px;
    padding: 4px 8px;
    font-weight: 700;
}

.syour-customer-left h6 span#succ {
    background: var(--greenbg);
    color: var(--green);
}

.syour-customer-left h6 span#ref {
    background: var(--vbg);
    color: var(--v);
}

.syour-customer-left h6 span#rep {
    background: var(--v1bg);
    color: var(--v1);
}

.syour {
    margin-top: 100px;
}

.syour-ani2 {
    margin-top: 80px;
}

.syour-ani2 img {
    display: inline-block;
    width: 12px;
}

/*-- syour area end --*/

/*-- sclass area start --*/
.sclass-wrapper {
    max-width: 540px;
    margin: auto;
}

.sclass-wrapper h3 {
    font-weight: 700;
    font-size: 30px;
}

.sclass-wrapper h3 img {
    display: inline-block;
    width: 214px;
    margin-left: 10px;
    position: relative;
    top: -3px;
}

.sclass-wrapper p {
    max-width: 580px;
    margin-bottom: 0;
    line-height: 1.6;
    color: var(--neutral80);
    margin-top: 35px;
}

.sclass-wrapper p span {
    color: var(--violat);
}

.sclass {
    margin-top: 100px;
}

/*-- sclass area end --*/

/*-- hooked area start --*/
.hooked-img img {
    display: block;
    width: 50%;
    margin: 20px auto auto;
}

.hooked .container {
    /*900px*/
    max-width: 680px;
}

.hooked-two .container {
    max-width: 680px;
}

.hooked-two {
    margin-top: 80px;
}

.hooked {
    margin-top: 80px;
}

/*-- hooked area end --*/

/*-- smart area start --*/
.smart-wrapper {
    max-width: 540px;
    margin: auto;
}

.smart-para p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--neutral80);
    margin-top: 30px;
}

.smart-para p span {
    color: var(--violat);
}

.smart-button {
    -webkit-box-flex: 100;
    -ms-flex-positive: 100;
    flex-grow: 100;
}

.smart-button button {
    display: block;
    width: 100%;
}

.smart-form .sbannar-left-form-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.smart-form .smart-button {
    text-align: center;
}

.smart-form .smart-button p {
    margin-bottom: 0;
    font-size: 12px;
    color: var(--neutral80);
    margin-top: 8px;
}

.smart-ok p {
    font-size: 15px;
    color: var(--neutral80);
    margin-bottom: 30px;
}

.smart-ok {
    margin-top: 55px;
}

.smart {
    margin-top: 100px;
}

.smart-ani {
    margin-top: 55px;
}

.smart-ani img {
    display: inline-block;
    width: 12px;
}

/*-- smart area end --*/

/*-- round-two area start --*/
.round-two-heading {
    max-width: 540px;
    margin: auto;
}

.round-two-heading h2 {
    font-size: 36px;
    font-weight: 700;
}

.round-two-heading h2 span {
    display: inline-block;
    color: var(--green);
    background: var(--greenbg);
    padding: 4px 15px;
    border-radius: 4px;
}

.round-two-heading p {
    margin-bottom: 0;
    margin-top: 25px;
    color: var(--neutral80);
    line-height: 1.6;
    padding-right: 80px;
}

.round-two-block-wrapper {
    max-width: 880px;
    margin: auto;
}

.round-two-block-left h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0px;
}

.succeed-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    background: var(--greenbg);
    border-radius: 4px;
    padding: 4px 15px;
    margin: 8px 0px;
}

.refer-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--v);
    background: var(--vbg);
    border-radius: 4px;
    padding: 4px 15px;
    margin: 8px 0px;
}

.repeat-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--v1);
    background: var(--v1bg);
    border-radius: 4px;
    padding: 4px 15px;
    margin: 8px 0px;
}

.round-two-block-left p {
    margin-bottom: 0;
    color: var(--neutral80);
    line-height: 1.6;
}

.round-two-block-left {
    max-width: 293px;
}

.round-two-block-right img {
    display: block;
    width: 100%;
}

.round-two-block-wrapper {
    margin-top: 120px;
}

.marginleft {
    margin-left: auto;
}

.round-three .round-two-heading span {
    color: var(--v);
    background: var(--vbg);
}

.round-three {
    margin-top: 150px;
}

.round-four {
    margin-top: 150px;
}

.round-four .round-two-heading h2 span {
    background: var(--v1bg);
    color: var(--v1);
}

.round-two-block-left ul li {
    list-style-type: disc;

    color: #6a7289;
    margin-top: 5px;
}

.round-two-block-left ul {
    margin-left: 15px;
}

/*-- round-two area end --*/

/*-- priceing area start --*/
.priceing-wrapper {
    max-width: 540px;
    margin: auto;
}

.priceing-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
}

.priceing-wrapper p {
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 30px;
}

.price-form .sbannar-left-form-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.price-form .sbannar-left-form-wrapper p {
    margin-top: 0px;
    text-align: center;
}

.priceing {
    margin-top: 150px;
    padding-bottom: 50px;
}

.round-two {
    margin-top: 100px;
}

/*-- priceing area end --*/

/*==============================
        sales page end
        ==============================*/

/*==============================
        video page end
        ==============================*/

/*-- video-main area start --*/
/*  #content{
            background-color: #F4F7FE;
        } --*/

.video-main {
    background: #f4f7fe;
    /*! padding-top: 25px; */
    padding-bottom: 65px;
}

.video-tab-link ul {

list-style: none;
padding: 0;
margin: 0;

}

.video-tab-link ul li {
    font-size: 14px;
    color: var(--neutral80);
    padding-left: 30px !important;
    position: relative;
    padding: 14px 0px;
    cursor: pointer;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.video-tab-link ul li:hover {
    background: var(--primarylight);
}

.video-tab-link ul li:after {
    content: '';
    display: block;
    width: 5px;
    height: 100%;
    background: rgba(var(--bs-primary-rgb));
    position: absolute;
    left: 0;
    top: 0%;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
}

.video-tab-link ul li:hover:after {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.video-tab-link ul li.active {
    background: var(--primarylight);
    position: relative;
}

.video-tab-link ul li.active:after {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.video-tab-link ul li span {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 6px;
    display: inline-block;
    -webkit-box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1);
    box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1);
    padding: 8px 11px;
    margin-right: 14px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.video-tab-link ul li.active span {
    color: rgba(var(--bs-primary-rgb));
}

.video-tab-link ul li:hover span {
    color: rgba(var(--bs-primary-rgb));
}

.video-left {
    padding-right: 15px;
    margin-top: 80px;
}

.videoshare-left-wrapper {
    display: -ms-flexbox;
    display: inline-block;
    /* display flex before */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.videoshare-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.videoshare-left-one p {
    margin-bottom: 0;
    font-size: 13px;
    margin-right: 20px;
    margin-left: auto;
    position: relative;
    top: 0px;
}

.videoshare-left-two ul li {
    display: inline-block;
    margin: 0px 5px;
    cursor: pointer;
}

.videoshare-share p {
    margin-bottom: 0;
    font-size: 13px;
    position: relative;
    top: 0px;
}

.videoshare-share p i {
    display: inline-block;
    margin-right: 15px;
    font-size: 16px;
    position: relative;
    top: 1px;
}

.videoshare-share {
    margin-left: 45px;
}

.videoshare-right span {
    display: inline-block;
    font-size: 13px;
    cursor: pointer;
    background: rgba(var(--bs-primary-rgb));
    color: var(--white);
    font-weight: 600;
    border-radius: 5px;
    padding: 8px 25px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    position: relative;
    top: -5px;
}

.videoshare-right span:hover {
    opacity: 0.7;
}

.videoshare {
    padding: 20px 0px;
    border-bottom: 1px solid rgba(21, 27, 45, 0.2);
}

/*-- topinto area start --*/
.topinto h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.topinto p {
    font-size: 14px;
    color: var(--neutral80);
}

.topinto h6 {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    cursor: pointer;
}

.topinto span#hide {
    display: none;
}

/*-- topinto area end --*/

/* -- comment area start -- */
.comment-one-wrapper {
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1);
    box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1);
    padding: 25px;
    margin-top: 45px;
}

.comment-one {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.comment-one-left img {
    display: block;
    width: 60px;
}

.comment-one-left {
    margin-right: 18px;
}

.comment-one-right-up h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 0;
}

.comment-one-right-up span#teacher {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: rgba(var(--bs-primary-rgb));
    background: var(--primarylight);
    border-radius: 4px;
    padding: 3px 8px;
    margin-left: 5px;
}

.comment-one-right-up h6 {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 400;
    color: var(--neutral80);
}

.comment-one-right-up p {
    margin-bottom: 0;
    font-size: 15px;
    color: #151b2d;
    margin-top: 12px;
}

.comment-one-right-up ul li {
    display: inline-block;
    font-size: 14px;
    margin-left: 15px;
}

.comment-one-right-up ul li a {
    display: inline-block;
    color: #151b2d;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.comment-one-right-up ul li a:hover {
    opacity: 0.7;
}

.comment-one-right-up ul {
    margin-top: 20px;
}

.comment-one-right-up ul li i {
    display: inline-block;
    margin-right: 10px;
}

.comment-one-right-up ul li:last-child i {
    font-size: 18px;
}

.comment-one-right {
    width: 100%;
}

.comment-one-right-down {
    background: var(--cmtbg);
    padding: 25px;
    border-radius: 8px;
    margin-left: 76px;
}

.comment-one-right-down .comment-one-left img {
    display: inline-block;
    width: 35px;
}

.comment-one-right-down {
    margin-top: 20px;
}

.topinto {
    margin-top: 30px;
}

.comment-two-wrapper {
    margin-top: 15px;
}

.video-main .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 56.667%;
}

.nati {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 26.667%;
}

/* -- comment area end -- */

/*-- video-progress area start --*/

.video-progress {
    background-color: var(--white);
    border-radius: 8px;
    -webkit-box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1);
    box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1);
    padding: 15px;
}

.video-progress-nati span.ball {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 8px;
    -webkit-box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.3);
    box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.3);
    padding: 4px 8px;
    position: relative;
    color: var(--neutral80);
    cursor: pointer;
}

/* .video-progress-nati span.ball:after {
            content: "";
            display: block;
            width: 12px;
            height: 12px;
            background: rgba(var(--bs-primary-rgb));
            border-radius: 50%;
            border: 2px solid #fff;
            position: absolute;
            top: 3px;
            right: 4px;
        } */

.video-progress-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: -50px;
    margin-bottom: -20px;
}

.video-progress-bar-left img {
    display: inline-block;
    width: 70px;
}

.video-progress-bar-left {
    margin-right: 15px;
}

.video-progress-bar-right p {
    margin-bottom: 0;
    font-size: 13px;
    text-align: start;
    color: rgba(var(--bs-primary-rgb));
}

.videogmbar {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--primarylight);
    margin-top: 6px;
}

.videogmbar_span {
    display: block;
    width: 0%;
    height: 100%;
    background: rgba(var(--bs-primary-rgb));
    border-radius: 4px;
    -webkit-transition: width 0.35s ease-in-out;
    transition: width 0.35s ease-in-out;
}

.video-progress-bar-right {
    width: 100%;
}

/*-- video-progress area end --*/

/*-- nav-sidebar area start --*/

.nav-sidebar {
    margin-top: 18px;
}

.nav-sidebar {
    background: #fff;
    border-radius: 8px;
}

.nav-sidebar .accordion-button:not(.collapsed) {
    color: #151b2d;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
}

.nav-sidebar .accordion-item {
    border: 0;
}

.nav-sidebar .accordion-button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.nav-sidebar .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.nav-sidebar button {
    font-size: 18px;
    font-weight: 700;
}

.nav-sidebar .accordion-body {
    padding-top: 0;
}

/* Start old lecture wrap code */
.lectureWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 9px;
}

/* done */

.lectureNumber {
    width: 25px;
    height: 25px;
    background: var(--white);
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
    border: 1px solid transparent;
    display: inline-block;
    border-radius: 50%;
    padding: 2px 8px;
    -webkit-box-shadow: 0px 0px 9px -3px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 9px -3px rgba(0, 0, 0, 0.2);
    margin-right: 5px;
    /* z-index: 9999; */
}

/* done: put on .circle2 (moved one up) */

.lectureNumber::after {
    position: relative;
    /* z-index: 9999; */
}

.uniqueLesson {
    position: relative;
    z-index: 1;
    background: #fff;
    content: none;
}

.uniqueLesson::before {
    content: none;
}

.uniqueLesson::after {
    content: none;
}

.linebefore {
    position: relative;
    z-index: 0;
    background: #fff;
}

.linebefore::before {
    content: '';
    display: block;
    width: 2px;
    height: 48px;
    background: #ceced0;
    position: absolute;
    left: 12px;
    top: -43px;
    z-index: -2;
}

.lineafter {
    position: relative;
    z-index: 0;
    background: #fff;
}

.lineafter::after {
    content: '';
    display: block;
    width: 2px;
    height: 48px;
    background: #ceced0;
    position: absolute;
    left: 12px;
    top: 22px;
    z-index: -2;
}

.pinkline {
    position: relative;
    z-index: 1;
    background: #fff;
}

.pinkline::before {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(230, 0, 126, 1)), color-stop(58%, rgba(206, 206, 208, 1)));
    background: linear-gradient(360deg, rgba(230, 0, 126, 1) 0%, rgba(206, 206, 208, 1) 58%);
    z-index: -1;
}

.pinkline::after {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(230, 0, 126, 1)), color-stop(58%, rgba(206, 206, 208, 1)));
    background: linear-gradient(180deg, rgba(230, 0, 126, 1) 0%, rgba(206, 206, 208, 1) 58%);
    z-index: -1;
}

.pinkcircle {
    background-color: rgba(var(--bs-primary-rgb));
    color: var(--white);
}

.graycircle {
    background-color: var(--white);
    border: 1px solid var(--gray);
}

/* whole wrapper of right content - NEW: lectureContent */
.lectureThumbnail {
    margin-left: 12px;
}

/* link wrapper inside - NEW:  lectureContentLink*/
.ThumbnailHover {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* new: thumbnailImage */
.ThumbnailImage {
    display: block;
    width: 100px;
}

.pinkborder {
    border: 2px outset rgba(var(--bs-primary-rgb));
    border-radius: 8px;
}

.grayborder {
    border: 2px solid var(--gray);
    border-radius: 8px;
}

.fadeimage {
    opacity: 0.5;
}

/* New: doneIcon */
.doneCheckmark {
    background-image: url(../assets/img/complete.png);
    width: 24px;
    color: transparent;
    display: inline-block;
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

/* End old lecture wrap code */
.ThumbnailTextWraper {
    margin-left: 20px;
}

.ThumbnailTitle {
    margin-bottom: 0;
    font-size: 13px;
    color: #151b2d;
    font-weight: 600;
}

.ThumbnailTitle:hover {
    color: rgba(var(--bs-primary-rgb));
}

.ThumbnailVideoDuration {
    display: inline-block;
    font-size: 13px;
    color: var(--neutral80);
}

.lessonComplete {
    display: block;
    width: 100px;
    opacity: 0.5;
}

.ThumbnailCheckmark {
    background-image: url(/assets/img/complete.png);
    width: 24px;
    color: transparent;
    display: inline-block;
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

.lesson-one {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 9px;
}

.lesson-one-left span {
    width: 25px;
    height: 25px;
    background: #fff;
    font-size: 13px;
    color: #ceced0;
    font-weight: 500;
    border: 1px solid transparent;
    display: inline-block;
    border-radius: 50%;
    padding: 2px 8px;
    -webkit-box-shadow: 0px 0px 9px -3px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 9px -3px rgba(0, 0, 0, 0.2);
    margin-right: 5px;
}

.lesson-one-right {
    margin-left: 12px;
}

.lesson-one-right a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.lesson-one-right-img img#normal {
    display: block;
    width: 100px;
}

.lesson-complete .lesson-one-right-img {
    position: relative;
    opacity: 0.5;
}

.lesson-complete img.complete {
    display: inline-block;
    width: 24px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

.lesson-one-right-text {
    margin-left: 20px;
}

.lesson-one-right-text p {
    margin-bottom: 0;
    font-size: 13px;
    color: #151b2d;
    font-weight: 600;
}

.lesson-one-right-text span {
    display: inline-block;
    font-size: 13px;
    color: var(--neutral80);
}

.first-compl-lesson .lesson-one-left span {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #ceced0;
    position: relative;
    background: #fff;
}

.lesson-one-left span {
    position: relative;
    z-index: 99;
    background: #fff;
}

.lesson-one-left span:after {
    content: '';
    display: block;
    width: 2px;
    height: 54px;
    background: #ceced0;
    position: absolute;
    left: 11px;
    top: 23px;
}

.current-lession .lesson-one-left span {
    background: rgba(var(--bs-primary-rgb));
    color: var(--white);
}

.current-lession .lesson-one-right-text p {
    color: rgba(var(--bs-primary-rgb));
}

.current-lession .lesson-one-left span:after {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(230, 0, 126, 1)), color-stop(58%, rgba(206, 206, 208, 1)));
    background: linear-gradient(180deg, rgba(230, 0, 126, 1) 0%, rgba(206, 206, 208, 1) 58%);
}

.current-lession .lesson-one-left span:before {
    content: '';
    display: block;
    width: 2px;
    height: 54px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(230, 0, 126, 1)), color-stop(58%, rgba(206, 206, 208, 1)));
    background: linear-gradient(360deg, rgba(230, 0, 126, 1) 0%, rgba(206, 206, 208, 1) 58%);
    position: absolute;
    left: 11px;
    top: -46px;
    z-index: -111111111111;
}

.lesson-last .lesson-one-left span:after {
    content: none;
}

/*-- nav-sidebar area end --*/

/*-- video-popup area start --*/

/* .modal-dialog {
    max-width: 800px;
} */

.video-modal-wrapper {
    padding: 15px 25px 25px;
}

.video-modal-heading-left h3 {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 700;
}

.video-modal-heading-right ul li {
    display: inline-block;
}

.video-modal-heading-right ul li a {
    display: inline-block;
    color: #6a7289;
}

.video-modal-heading-right ul li:last-child a {
    font-size: 24px;
    margin-left: 15px;
}

.video-modal-heading-right ul li:first-child a {
    position: relative;
    top: -3px;
}

.video-modal-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 20px;
}

.video-modal-title p {
    margin-bottom: 0;
    font-size: 15px;
}

.video-modal-input input {
    display: block;
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    font-size: 13px;
    color: #6a7289;
    padding: 8px 20px;
    margin-top: 13px;
}

.video-modal-time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    margin-top: 50px;
}

.video-modal-time-left {
    width: 115px;
}

.video-modal-time-left input {
    display: block;
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    outline: none;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 15px 0px;
}

.video-modal-time-middle span {
    display: inline-block;
    color: var(--neutral80);
    margin: 0px 18px;
}

.video-modal-save ul li {
    display: inline-block;
}

.video-modal-save ul li a {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #151b2d;
}

.video-modal-save ul li:last-child a {
    color: var(--white);
    background: rgba(var(--bs-primary-rgb));
    border-radius: 8px;
    padding: 10px 28px;
    margin-left: 45px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.video-modal-save ul li:last-child a:hover {
    opacity: 0.7;
}

.video-modal-save {
    margin-top: 50px;
}

.video-progress-nati {
    position: relative;
}

.natilist {
    position: absolute;
    width: 420px;
    left: -36px;
    top: 58px;
    background: #fff;
    z-index: 9999999999999999999;
    display: none;
    border-radius: 5px;
    -webkit-box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.4);
    box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.4);
}

.active-nati {
    display: block;
}

.natilist-heading {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.natilist-heading h3 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 700;
}

.natilist-heading a {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(var(--bs-primary-rgb));
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.natilist-heading a:hover {
    opacity: 0.7;
}

.natilist-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.natilist-news {
    padding: 0 23px 18px;
}

.natilist-news-one-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.natilist-news-one-heading span {
    display: inline-block;
    font-size: 13px;
    color: rgba(var(--bs-primary-rgb));
    background: var(--primarylight);
    border-radius: 4px;
    padding: 1px 8px;
    font-weight: 500;
}

.natilist-news-one-heading span:last-child {
    background: none;
    color: var(--neutral80);
}

.natilist-news-one-content-left h4 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.natilist-news-one-content-left p {
    margin-bottom: 0;
    font-size: 13px;
    color: #151b2d;
}

.natilist-news-one-content {
    margin-top: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.natilist-news-one-content-right {
    width: 50px;
    text-align: right;
    color: #000;
}

.natilist-news-one-content-right span {
    color: #000;
}

.natilist-news-one {
    margin-top: 25px;
}

.natilist-news-one-content-left-last h6 {
    font-size: 13px;
}

.natilist-news-one-content-left-last ul li {
    font-size: 13px;
    list-style-type: disc;
    margin-left: 18px;
}

.natilist-news-one-content-left-arrow p {
    margin-bottom: 0;
    font-size: 13px;
    text-align: right;
    margin-top: 5px;
}

.natilist-news-one-content-left-arrow p a {
    color: #151b2d;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.natilist-news-one-content-left-arrow p a:hover {
    color: #eb4ba5;
}

.natilist:after {
    content: '';
    display: block;
    width: 2px;
    height: 2px;
    border-left: 16px solid transparent;
    border-bottom: 18px solid #fff;
    border-right: 16px solid transparent;
    position: absolute;
    top: -17px;
    right: 30px;
    z-index: 99999;
}

/*-- video-popup area end --*/

/*-- video-clip area start --*/
.video-clip {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    -webkit-box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1);
    box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1);
}

.video-clip-heading h3 {
    font-size: 24px;
    font-weight: 700;
}

.video-clip-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.video-clip-left span {
    width: 25px;
    height: 25px;
    background: #fff;
    font-size: 13px;
    color: #ceced0;
    font-weight: 500;
    border: 1px solid transparent;
    display: inline-block;
    border-radius: 50%;
    padding: 2px 8px;
    -webkit-box-shadow: 0px 0px 9px -3px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 9px -3px rgba(0, 0, 0, 0.2);
    margin-right: 5px;
    position: relative;
    top: -5px;
}

.video-clip-right p {
    margin-bottom: 0;
    font-size: 12px;
    color: var(--neutral80);
}

.video-clip-right p strong {
    display: inline-block;
    color: #000;
    margin-right: 15px;
    position: relative;
    top: -1px;
}

.video-clip-input input {
    display: block;
    width: 87%;
    border: 1px solid var(--border-color);
    font-size: 13px;
    color: #6a7289;
    border-radius: 8px;
    padding: 9px 25px;
}

.video-clip-right {
    width: 100%;
}

.video-clip-input button {
    display: inline-block;
    border: 0;
    outline: none;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    background: rgba(var(--bs-primary-rgb));
    border-radius: 8px;
    padding: 10px 30px;
    white-space: nowrap;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.video-clip-input button:hover {
    opacity: 0.7;
}

.video-clip-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.video-clip-left {
    margin-right: 15px;
}

.video-clip-right p {
    margin-bottom: 6px;
}

.video-clip-wrapper {
    margin-top: 30px;
}

/*-- video-clip area end --*/

/*-- video-tab-three area start --*/
.video-tab-three {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    -webkit-box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1);
    box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1);
}

.video-tab-three-heading h3 {
    font-size: 24px;
    font-weight: 700;
}

.video-tab-three-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.video-tab-three-name-left img {
    display: inline-block;
    width: 50px;
}

.video-tab-three-name-left {
    margin-right: 20px;
}

.video-tab-three-name-right h6 {
    font-size: 13px;
    font-weight: 700;
    color: #151b2d;
    margin-bottom: 5px;
}

.video-tab-three-name-right span {
    display: inline-block;
    font-size: 13px;
    color: var(--neutral80);
}

.video-tab-three-name-right a {
    font-size: 13px;
    font-weight: 700;
    color: #151b2d;
    margin-bottom: 5px;
}

.video-tab-three-name-right a:hover {
    font-size: 13px;
    font-weight: 700;
    color: rgba(var(--bs-primary-rgb));
    margin-bottom: 5px;
}

.video-tab-three-name {
    padding: 25px 0px;
    border-bottom: 1px solid rgba(145, 145, 145, 0.1);
}

/*-- video-tab-three area end --*/

/*-- video-tab-four area start --*/
.video-tab-four {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    -webkit-box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1);
    box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1);
}

.video-tab-four-ass p {
    font-size: 15px;
    margin-bottom: 10px;
}

textarea {
    display: block;
    width: 100%;
    resize: none;
    height: 120px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    padding: 11px 16px;
}

.video-tab-four-content {
    margin-top: 30px;
}

.video-tab-four-radio p {
    font-size: 15px;
    margin-bottom: 10px;
}

.video-tab-four-radio-items .labl {
    display: block;
    width: 100%;
}

.video-tab-four-radio-items .labl > input {
    visibility: hidden;
    position: absolute;
}

.video-tab-four-radio-items .labl > input + div {
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 3px;
    margin-bottom: 10px;
}

.video-tab-four-radio-items .labl > input:checked + div {
    background-color: var(--primarylight);
    border: 1px solid var(--primarylight);
}

.video-tab-four-radio-items .labl > input:checked + div span {
    background: rgba(var(--bs-primary-rgb));
    color: var(--white);
}

.radio-label p {
    margin-bottom: 0;
}

.radio-label p span {
    display: inline-block;
    width: 37px;
    height: 34px;
    background: #eaedf4;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    padding: 5px 12px;
    margin-right: 10px;
}

.video-tab-four-radio {
    margin-top: 35px;
}

.tabcontent {
    display: none;
}

/*-- video-tab-four area end --*/

/*-- video-main area end --*/

#natilist-mobile {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    left: -100%;
}

.mobile-course h4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    background-color: #fff;
    border-radius: 10px;
    padding: 12px 15px;
    margin: 15px 15px 0;
    cursor: pointer;
}

.mobile-course img {
    display: inline-block;
}

.mobilechpter-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobilechpter-heading p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

.mobilechpter-heading span {
    display: inline-block;
    cursor: pointer;
}

.course-mobile-two {
    height: 73vh;
    overflow: auto;
    margin-left: 12px;
    margin-right: 12px;
    border-radius: 8px 8px 0px 0px;
    -webkit-box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.3);
    box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.3);
    border: 0;
    background: #fff !important;
}

.mobile-course span#comment-number {
    font-weight: 400;
    color: #6a7289;
    position: relative;
}

.comment-pass-mobile {
    height: 73vh;
    overflow: auto;
    margin-left: 12px;
    margin-right: 12px;
    border-radius: 8px 8px 0px 0px;
    -webkit-box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.3);
    box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.3);
    border: 0;
}

.current-lession .lesson-one-right-img img {
    border: 2px solid rgba(var(--bs-primary-rgb));
    border-radius: 8px;
}

.inbox-content span {
    display: inline-block;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(var(--bs-primary-rgb));
    color: var(--white);
    font-size: 24px;
    position: relative;
    margin-bottom: 15px;
}

.inbox-content span i {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* .course-mobile-two {
            margin-right: 28px;
        } */

.course-mobile-two::-webkit-scrollbar {
    width: 8px;
    height: 10px;
    background: inherit;
    border-radius: 3px 3px 3px 3px;
}

.course-mobile-two::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: #c2c9d2;
}

/* code for video page */

.video {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.video-main {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.your-customer-left-heading h6 {
    display: none;
}

.video-hover {
    position: absolute;
    width: 100%;
    height: 25%;
    z-index: 9999;
}

.video-overlay {
    background-image: url(/assets/img/overlay.png);

    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    position: absolute;
    width: 2560px;
    height: 1000px;
    left: 0;
    top: 0;
    z-index: 1;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    display: none;

    pointer-events: none;
}

.video-hover:hover .video-overlay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.video-overly-left img {
    display: inline-block;
    width: 69px;
    position: relative;
    top: -10px;
}

.video-overly-right h5 {
    margin-bottom: 0;
    font-size: 28px;
    color: #fff;
}

.video-overly-right p {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    margin-top: 22px;
}

.video-overly-right p img {
    display: inline-block;
    width: 46px;
    margin-right: 15px;
}

.video-overly-right {
    margin-left: 45px;
}

.vs-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* video control area start */
.video-control-up {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.video-control-up button {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    border: 0;
    outline: none;
    position: relative;
}

.video-control-up button span {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.video-control-up-left button span {
    color: rgba(var(--bs-primary-rgb));
    font-size: 20px;
}

.video-control-up-right ul li {
    display: inline-block;
}

.video-control-up-right ul li button span {
    display: inline-block;
    font-size: 20px;
    color: #6a7289;
}

.video-control-up-right ul li:last-child button {
    margin-left: 15px;
}

.video-control-down {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 4px;
    -webkit-box-shadow: 0px 10px 15px 0px rgb(124, 142, 166, 0.1);
    box-shadow: 0px 10px 15px 0px rgb(124, 142, 166, 0.1);
    padding: 15px 8px;
    margin-top: 16px;
}

.video-control-down-bar {
    width: 100%;
    height: 6px;
    background: #facce5;
}

.video-control-down-bar span {
    display: block;
    width: 30%;
    height: 100%;
    background: rgba(var(--bs-primary-rgb));
    position: relative;
}

.video-control-down-bar span:after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: rgba(var(--bs-primary-rgb));
    border-radius: 50%;
    position: absolute;
    right: -3px;
    top: -5px;
}

.video-control {
    max-width: 795px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-top: -77px;
    left: -75px;
    padding-bottom: 19px;
}

/* video control area end */

/*==============================
        video page end
  ==============================*/

/*==============================
        CMS Start
  ==============================*/

.course-btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: rgba(var(--bs-primary-rgb));
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.edit-chapter-btn {
    font-size: 0.875rem;
    padding: 4px 8px !important;
    background-color: rgba(var(--bs-primary-rgb));
    color: #fff;
}

.edit-chapter-btn span {
    vertical-align: bottom;
    padding: 0px !important;
}

.course-form-input label {
    display: block;
    font-size: 15px;
    margin-bottom: 10px;
}

.course-form-input input {
    display: block;
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
}

.course-form-input input::-webkit-input-placeholder {
    opacity: 1;
}

.course-form-input input::-moz-placeholder {
    opacity: 1;
}

.course-form-input input:-ms-input-placeholder {
    opacity: 1;
}

.course-form-input input::-ms-input-placeholder {
    opacity: 1;
}

.course-form-input input::placeholder {
    opacity: 1;
}

.course-accordion .card-header {
    background-color: var(--neutral90);
}

.course-accordion .card-header button {
    color: white;
    text-decoration: none;
}

.course-accordion input {
    border: none;
    font-weight: 500;
    font-size: 1rem;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.course-accordion input:disabled {
    background: none;
}

.lecture-navtab {
    border-bottom: 0px;
}

.lecture-navtab a {
    font-size: 14px;
    color: var(--neutral80);
    padding-left: 20px !important;
    position: relative;
    padding: 8px 0px;
    cursor: pointer;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.lecture-navtab a:hover {
    background: var(--primarylight);
}

.lecture-navtab a:after {
    content: '';
    display: block;
    width: 5px;
    height: 100%;
    background: rgba(var(--bs-primary-rgb));
    position: absolute;
    left: 0;
    top: 0%;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
}

.lecture-navtab a:hover:after {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.lecture-navtab a.btn.active {
    background: var(--primarylight);
    position: relative;
    color: rgba(var(--bs-primary-rgb));
}

.lecture-navtab a.btn.active:after {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.lecture-navtab a span {
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 6px;
    display: inline-block;
    -webkit-box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1);
    box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1);
    padding: 2px 5px;
    margin-right: 10px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.lecture-navtab a.btn {
    text-align: left;
    border-radius: 0;
    font-size: 14px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.lecture-navtab a.btn:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.lecture-navtab a:hover btn {
    color: rgba(var(--bs-primary-rgb));
}

.tab-content h4:focus {
    outline: 1px solid rgba(0, 0, 0, 0.1);
}

.tab-content textarea:focus {
    outline: 1px solid rgba(0, 0, 0, 0.1);
}

.lectureFile_upload input {
    font-size: 10px;
}

.quiz-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    padding: 5px;
    border-radius: 8px;
    -webkit-box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1);
    box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1);
}

.quiz-check {
    display: inline-block;
    width: 27px;
    height: 24px;
    background: #eaedf4;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    padding: 5px 12px;
    margin-right: 10px;
}

.quiz-form-control {
    font-size: 0.875rem !important;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background: transparent;
}

/* Switch overrides (removing standard bootstrap blue) */

.form-check-input:checked {
    background-color: rgba(var(--bs-primary-rgb));
}

.form-check-input:focus {
    border-style: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:checked {
    background-position: right center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

/*==============================
        CMS End
  ==============================*/

/*==============================
        Check-out Page Start
  ==============================*/

#checkoutLayout {
    /* background: linear-gradient(179.97deg, rgba(var(--bs-primary-rgb)) 0.03%, #8D43D7 56.13%, #5552D3 100.67%) !important; */
    background: var(--gradienttd);
    background-repeat: no-repeat;
}

.access-frame {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--gradientlr);
    border-radius: 8px;
    text-align: center;
}

.access-frame p {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 5px;
}

.checkout-section-1 h3 {
    font-weight: 600;
}

.checkout-section-1 p {
    font-size: 18px;
    line-height: 150%;
}

.checkout-section-1 ul {
    vertical-align: center;
}

.checkout-section-1 ul li {
    /* background:url(../assets/img/check-circle.png) no-repeat 0 4px;  */
    /* padding-left: 40px; the width of your image + some space */
    /* margin: 5px 30px 5px 0px; */
    font-size: 18px;
    line-height: 160%;
    color: #151b2d;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 5px 0px;
}

.checkout-section-1 ul li i {
    color: rgba(var(--bs-primary-rgb));
    margin: 10px 15px 10px 0px;
    display: inline-block;
    vertical-align: center;
}

.quote-cards h5 {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 5px;
}

.quote-cards .fs-10 {
    /* font-style: normal; */
    /* font-weight: 300; */
    font-size: 13px;
    line-height: 15px;
}

.quote-paragraph {
    color: #6a7289;
    margin-right: 15px;
}

.checkout-section-2 h4 {
    font-weight: 800;
    font-size: 16px;
    line-height: 150%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
    color: #333c56;
}

.features-paragraph {
    font-weight: 600;
    font-size: 16px;
    line-height: 160%;
    color: #151b2d;
    margin: 0px 8px;
}

.features-description-paragraph {
    font-weight: normal;
    font-size: 15px;
    line-height: 120%;
    color: #333c56;
    margin: 0px 8px 4px;
}

.old-price-paragraph {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #6a7289;
    text-decoration-line: line-through;
    margin-bottom: 0px;
    text-align: end;
}

.new-price-paragraph {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: rgba(var(--bs-primary-rgb));
    margin-bottom: 0px;
    text-align: end;
}

.new-price-paragraph span {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    background: -webkit-linear-gradient(#5552d3, #8d43d7, rgba(var(--bs-primary-rgb)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-order-wrap {
    border-radius: 8px;
    border: 2px solid var(--neutral80);
}

.feature-order-wrap.active {
    border-radius: 8px;
    border: 2px solid rgba(var(--bs-primary-rgb));
}

.feature-frame {
    display: -webkit-box;
    display: -ms-flexbox;
    display: inside;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--gradientrl);
    border-radius: 8px;
    margin: 10px 0px 10px 10px;
    padding: 0px;
}

.feature-frame p {
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    text-transform: uppercase;
    color: #ffffff;
    margin: 2px !important;
}

.order-paragraph {
    font-weight: 700;
    font-size: 13px;
    line-height: 21px;
}

.recommendation-wrap {
    border-radius: 4px;
    background: #f4f7fe;
}

.recommendation-wrap p {
    font-weight: normal;
    font-size: 13px;
    line-height: 18px;
    color: #6a7289;
}

.annual-payment-wrap {
    border-radius: 4px;
    background: transparent;
}

.checkout-user-form label {
    /* font-size: 16px; */
    line-height: 160%;
    color: #151b2d;
}

.checkout-user-form input.text {
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0.02em;
    color: #6a7289;
    background: transparent;
    border-radius: none;
    -o-border-image: linear-gradient(
        45deg,
        rgba(230, 0, 126, 1) 0%,
        rgba(141, 67, 215, 1) 50%,
        rgba(85, 82, 211, 1) 100%
    );
    border-image: linear-gradient(45deg, rgba(230, 0, 126, 1) 0%, rgba(141, 67, 215, 1) 50%, rgba(85, 82, 211, 1) 100%);
    border-image-slice: 1;
    border: solid;
    border-width: 0px 0px 2px;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-right: 20px;
    width: 100%;
}

.payment-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 10px;
    background: #ffffff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 8px;
    position: static;
    width: 119px;
    height: 69px;
}

.active-payment {
    border: 1.5px solid rgba(var(--bs-primary-rgb));
}

.early-access-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    position: static;
    width: 100%;
    background: rgba(var(--bs-primary-rgb));
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    -ms-flex-positive: 0;
    flex-grow: 0;
    margin: auto;
    color: white;
    text-align: center;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 15px;
    line-height: 26px;
}

.faq-title {
    font-weight: 800;
    font-size: 16px;
    line-height: 150%;
    font-variant: small-caps;
}

.faq-accordion .card-header {
    background-color: transparent;
    border: none;
    padding-left: 0px;
}

.faq-accordion .card-body {
    background-color: transparent;
    border: none;
    padding-left: 0px;
}

.faq-card {
    background-color: transparent;
    border: none;
    padding-left: 0px;
}

.faq-accordion h5 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.015em;
    color: #000000;
}

.pink-icon {
    color: rgba(var(--bs-primary-rgb));
}

.checkout-footer {
    font-weight: bold;
    font-size: 13px;
    line-height: 21px;
    color: rgba(0, 0, 0, 0.65);
}

#input-payment button.nav-link.active {
    background: transparent !important;
    color: rgba(var(--bs-primary-rgb));
    border: 1.5px solid rgba(var(--bs-primary-rgb));
}

#input-payment button.nav-link {
    color: rgba(var(--bs-primary-rgb));
}

/* ------------------------------------
    responsive css-start
    ------------------------------------- */

/*
====================================
XXL - 
====================================
*/
@media screen and (min-width: 1751px) {
    .natilist {
        width: 100%;
        left: 0;
    }

    .natilist::after {
        right: 10px;
    }
}

/*
====================================
Medium Screen - Others
====================================
*/

@media screen and (min-width: 1350px) and (max-width: 1750px) {
    .video-tab-link ul li {
        padding-left: 18px !important;
    }

    .video-left {
        padding-right: 15px;
    }

    .video-main .col-lg-8 {
        width: 55.667%;
    }

    .nati {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 27.667%;
    }

    .natification {
        padding-right: 0px;
    }

    .natilist {
        width: 100%;
        left: 0;
    }

    .natilist::after {
        right: 10px;
    }

    .video-clip-input input {
        display: block;
        width: 81%;
    }

    .video-overlay {
        width: 1800px;
    }

    .natification {
        padding-right: 15px;
    }
}

@media screen and (min-width: 1350px) and (max-width: 1500px) {
    .video-control {
        width: 54.8%;
        left: -5.8%;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1350px) {
    .video-tab-link ul li {
        padding-left: 16px !important;
        font-size: 13px;
    }

    .video-left {
        padding-right: 0;
    }

    .video-tab-link ul li span {
        margin-right: 5px;
    }

    .video-main .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50.667%;
    }

    .nati {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 32.667%;
    }

    .natification {
        padding-right: 0px;
    }

    .lesson-one-right-img img#normal {
        display: block;
        width: 70px;
    }

    .lesson-complete img#complete {
        top: 43%;
    }

    .lesson-one-right-text p {
        font-size: 13px;
        height: 21px;
        white-space: nowrap;
        width: 151px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .tab-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 65%;
    }

    .tab-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 35%;
    }

    .videoshare-right span {
        font-size: 12px;
        padding: 8px 15px;
    }

    .videoshare-share {
        margin-left: 25px;
    }

    .topinto h3 {
        font-size: 22px;
    }

    .natilist {
        position: absolute;
        width: 354px;
        left: inherit;
    }

    .natilist::after {
        right: 5px;
    }

    .video-clip-input input {
        width: 74%;
    }

    .current-lession .lesson-one-left span::before {
        width: 2px;
        height: 30px;
        left: 11px;
        top: -31px;
    }

    .video-overlay {
        padding: 35px !important;
        width: 1380px;
        height: 780px;
    }

    .video-overly-left img {
        display: inline-block;
        width: 40px;
        top: 0px;
    }

    .video-overly-right {
        margin-left: 15px;
    }

    .video-overly-right h5 {
        font-size: 16px;
    }

    .video-overly-right p img {
        width: 30px;
        margin-right: 10px;
    }

    .video-overly-right p {
        font-size: 15px;
        margin-top: 5px;
    }

    .natification {
        padding-right: 15px;
    }

    .video-control {
        width: 50.667%;
        left: -8%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .sbannar-left {
        padding-right: 0px;
    }

    .sbannar-right img {
        margin-left: 0px;
    }

    .sbannar-left h2 {
        font-size: 26px;
        margin-top: 15px;
    }

    .sbannar-left h4 {
        font-size: 15px;
    }

    .sbannar-left-form {
        margin-top: 15px;
    }

    .sbannar-left-form-wrapper button {
        font-size: 15px;
        padding: 11px 0px;
    }

    .video-tab-link ul li {
        padding-left: 16px !important;
        font-size: 13px;
    }

    .video-left {
        padding-right: 0;
    }

    .video-tab-link ul li span {
        margin-right: 5px;
    }

    .video-main .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50.667%;
    }

    .nati {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 32.667%;
    }

    .natification {
        padding-right: 0px;
    }

    .lesson-one-right-img img#normal {
        display: block;
        width: 70px;
    }

    .lesson-complete img#complete {
        top: 43%;
    }

    .lesson-one-right-text p {
        font-size: 13px;
        height: 21px;
        white-space: nowrap;
        width: 121px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .tab-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 65%;
    }

    .tab-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 35%;
    }

    .videoshare-right span {
        font-size: 12px;
        padding: 8px 15px;
    }

    .videoshare-share {
        margin-left: 25px;
    }

    .topinto h3 {
        font-size: 22px;
    }

    .natilist {
        position: absolute;
        width: 318px;
    }

    .natilist::after {
        right: 5px;
    }

    .video-clip-input input {
        width: 68%;
    }

    .current-lession .lesson-one-left span::before {
        width: 2px;
        height: 30px;
        left: 11px;
        top: -31px;
    }

    .video-overlay {
        padding: 35px !important;
        width: 1202px;
        height: 700px;
    }

    .video-overly-left img {
        display: inline-block;
        width: 40px;
        top: 0px;
    }

    .video-overly-right {
        margin-left: 15px;
    }

    .video-overly-right h5 {
        font-size: 16px;
    }

    .video-overly-right p img {
        width: 30px;
        margin-right: 10px;
    }

    .video-overly-right p {
        font-size: 15px;
        margin-top: 5px;
    }

    .natification {
        padding-right: 15px;
    }

    .video-control {
        width: 50.667%;
        left: -8%;
    }
}

/*
  ====================================
  Small Screen - Tablate
  ====================================
  */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .sbannar-left {
        padding-right: 0px;
    }

    .sbannar-right img {
        margin-left: 0px;
    }

    .sbannar-left h2 {
        font-size: 26px;
        margin-top: 15px;
    }

    .sbannar-left h4 {
        font-size: 15px;
    }

    .sbannar-left-form {
        margin-top: 15px;
    }

    .sbannar-left-form-wrapper button {
        font-size: 15px;
        padding: 11px 0px;
    }

    .form-submit-button {
        font-size: 12px;
        padding: 20px 15px;
    }

    .form-control {
        font-size: 12px;
    }

    .smart-button p {
        font-size: 12px;
    }

    /**-----------------------*/

    .video-tab-link ul li span {
        display: none;
    }

    .video-tab-link ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .video-tab-link ul li.active {
        background: none;
    }

    .video-tab-link ul li::after {
        content: none;
    }

    .video-tab-link ul li {
        padding-left: 6px !important;
        padding-right: 6px;
        padding-bottom: 6px;
        padding-top: 0;
        margin-left: 8px;
        margin-right: 8px;
    }

    .video-left {
        padding-right: 0px;
        margin-top: 0;
    }

    .video-tab-link ul li.active {
        border-bottom: 3px solid rgba(var(--bs-primary-rgb));
        color: #151b2d;
        font-weight: 600;
    }

    .video-main .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }

    .nati {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }

    .natification {
        padding-right: 0px;
    }

    .video-progress-bar-right {
        width: 100%;
    }

    .video-progress-nati {
        position: relative;
        margin-bottom: -40px;
    }

    .video-progress-bar-left img {
        width: 60px;
    }

    .video-progress {
        padding-bottom: 8px;
    }

    .videoshare-left {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .videoshare-left-one p {
        margin-right: 0px;
    }

    .videoshare-left-two {
        margin-left: 6px;
    }

    .videoshare-share {
        margin-left: 6px;
        text-align: center;
    }

    .videoshare-share p i {
        display: block;
        margin-right: 0;
    }

    .videoshare-share p {
        font-size: 13px;
        margin-left: 25px;
        position: relative;
        top: 0px;
    }

    .videoshare-right span {
        font-size: 13px;
        border-radius: 7px;
        padding: 8px 12px;
        margin-top: 7px;
    }

    .videoshare {
        margin-left: 15px;
        margin-right: 15px;
    }

    .save-mobile {
        margin-left: 15px;
        margin-right: 15px;
        margin-top: 15px;
    }

    .mobile-course {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .save-popup {
        height: 73vh;
    }

    .video-modal-time {
        display: none;
    }

    .video-modal-save {
        margin-top: 135px;
    }

    .natilist {
        position: fixed;
        height: 100vh;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 9999;
    }

    .topinto {
        margin-left: 15px;
        margin-right: 15px;
    }

    .topinto h3 {
        font-size: 18px;
    }

    .topinto p {
        display: inline;
    }

    .comment-one-left img {
        width: 40px;
    }

    .comment-one-right-up ul li {
        margin-left: 15px;
    }

    .comment-one-right-up ul {
        margin-top: 5px;
    }

    .comment-one-wrapper {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 0;
        margin-top: 0;
        padding: 0 15px 25px;
    }

    .comment-one-right-up span#teacher {
        display: none;
    }

    .comment-one-right-down {
        padding: 15px;
        margin-left: 55px;
    }

    .comment-one-right-down .comment-one-left img {
        width: 22px;
    }

    .comment-one {
        padding-top: 20px;
    }

    .video-main {
        padding-bottom: 30px;
    }

    .video-tab-link {
        margin-bottom: 20px;
    }

    .video-clip-heading h3 {
        font-size: 18px;
        font-weight: 600;
    }

    .video-clip {
        padding: 25px 10px;
        margin: 0px 12px;
    }

    .video-clip-input {
        margin-left: -30px;
    }

    .video-clip-input input {
        padding: 9px 15px;
    }

    .video-clip-input button {
        color: rgba(var(--bs-primary-rgb));
        background: none;
        padding: 10px 10px 10px 22px;
    }

    .video-clip-left {
        margin-right: 10px;
    }

    .video-tab-three {
        padding: 25px 10px;
        margin: 0px 12px;
    }

    .video-tab-three-heading h3 {
        font-size: 18px;
        font-weight: 600;
    }

    .video-tab-three-name-left img {
        width: 42px;
    }

    .video-tab-three-name {
        padding: 15px 0px;
    }

    .natilist {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .video-tab-link ul li:hover {
        background: none;
    }

    .video-modal-wrapper-mb {
        margin-left: 12px;
        margin-right: 12px;
        border-radius: 8px 8px 0px 0px;
        -webkit-box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.3);
        box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.3);
        border-top: 0;
    }

    .video-clip-left span {
        top: -7px;
        position: relative;
    }

    .video-tab-four {
        margin: 0px 12px;
    }

    .video-overlay {
        padding: 35px !important;
        width: 993px;
        height: 570px;
    }

    .video-overly-left img {
        display: inline-block;
        width: 40px;
        top: 0px;
    }

    .video-overly-right {
        margin-left: 15px;
    }

    .video-overly-right h5 {
        font-size: 16px;
    }

    .video-overly-right p img {
        width: 30px;
        margin-right: 10px;
    }

    .video-overly-right p {
        font-size: 15px;
        margin-top: 5px;
    }

    .video-control {
        left: 0;
        margin-top: -64px;
        max-width: 100%;
    }

    .video-control-down {
        background: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        position: relative;
        top: 3px;
    }

    .video-control-down-bar {
        height: 3px;
        position: relative;
        top: 15px;
    }

    .video-control-down-bar span::after {
        content: none;
    }

    .video-control-up {
        padding-left: 20px;
        padding-right: 20px;
    }

    .video-main {
        padding-top: 25px;
    }
}

/*
  ====================================
  Small Screen - Mobile
  ====================================
  */
@media screen and (min-width: 576px) and (max-width: 767px) {
    .loginmain {
        padding: 50px 0px;
    }

    .login-logo-wrapper img {
        width: 175px;
    }

    .loginlink-wrapper {
        padding: 25px 15px;
    }

    .login-logo h3 {
        font-size: 20px;
        margin-bottom: 26px;
    }

    .login-logo-items ul li a {
        margin-top: 8px;
    }

    .login-or span::before {
        width: 44%;
    }

    .login-or span::after {
        width: 44%;
    }

    .login-or {
        margin-top: 15px;
    }

    .login-form-checkbox .check-box {
        font-size: 13px;
    }

    .login-form-checkbox .checkmark {
        top: -2px;
    }

    .login-forget a {
        position: relative;
        top: -5px;
        font-size: 13px;
    }

    .slogo-wrapper a img {
        width: 190px;
    }

    .sbannar {
        margin-top: 50px;
    }

    .sbannar-left {
        padding-right: 0px;
        text-align: left;
    }

    .sbannar-left h2 {
        font-size: 30px;
        margin-top: 18px;
    }

    .sbannar-left h2 br {
        display: none;
    }

    .sbannar-left h4 {
        font-size: 18px;
    }

    .sbannar-left-form-wrapper button {
        font-size: 15px;
    }

    .form-submit-button {
        font-size: 12px;
        padding: 20px 15px;
    }

    .form-control {
        font-size: 12px;
    }

    .smart-button p {
        font-size: 12px;
    }

    .sbannar-left-form-wrapper input {
        font-size: 15px;
        padding: 8px 12px;
    }

    .sbannar-right img {
        margin-left: 0px;
        margin-top: 30px;
    }

    .sani {
        margin-top: 25px;
    }

    .sani-wrapper img {
        width: 10px;
    }

    .syour {
        margin-top: 55px;
        text-align: center;
    }

    .syour-heading-one h2 {
        font-size: 28px;
        text-align: left;
    }

    .syour-heading-one h2 br {
        display: none;
    }

    .syour-heading-one p {
        margin: 30px 0px;
        text-align: left;
    }

    .syour-heading-one p br {
        display: none;
    }

    .syour-sell-img-one img {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .syour-customer-left {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .syour-customer-middle p {
        position: relative;
        top: 42%;
        margin: 30px 0px;
    }

    .syour-ani2 {
        margin-top: 30px;
    }

    .syour-ani2 img {
        width: 10px;
    }

    .sclass {
        margin-top: 40px;
    }

    .sclass-wrapper h3 {
        text-align: left;
    }

    .sclass-wrapper h3 br {
        display: none;
    }

    .sclass-wrapper p {
        margin-top: 18px;
        text-align: left;
    }

    .hooked {
        margin-top: 40px;
    }

    .hooked-img img {
        width: 70%;
        margin: 20px auto auto;
    }

    .hooked-two {
        margin-top: 0px;
    }

    .smart {
        margin-top: 40px;
    }

    .smart-wrapper {
        text-align: center;
    }

    .smart-ok p {
        margin-bottom: 10px;
    }

    .smart-ani {
        margin-top: 30px;
    }

    .smart-ani img {
        width: 10px;
    }

    .round-two {
        margin-top: 50px;
    }

    .round-two-heading h2 {
        font-size: 28px;
    }

    .round-two-heading p {
        padding-right: 0px;
    }

    .round-two-heading {
        text-align: center;
    }

    .round-two-block-wrapper {
        margin-top: 60px;
    }

    .round-two-block-left {
        max-width: 100%;
    }

    .round-two-block-right img {
        margin-top: 40px;
    }

    .priceing {
        margin-top: 70px;
        padding-bottom: 15px;
        text-align: center;
    }

    .priceing-wrapper p br {
        display: none;
    }

    /**-----------------------*/

    .video-tab-link ul li span {
        display: none;
    }

    .video-tab-link ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .video-tab-link ul li.active {
        background: none;
    }

    .video-tab-link ul li::after {
        content: none;
    }

    .video-tab-link ul li {
        padding-left: 6px !important;
        padding-right: 6px;
        padding-bottom: 6px;
        padding-top: 0;
        margin-left: 8px;
        margin-right: 8px;
    }

    .video-left {
        padding-right: 0px;
        margin-top: 0;
    }

    .video-tab-link ul li.active {
        border-bottom: 3px solid rgba(var(--bs-primary-rgb));
        color: #151b2d;
        font-weight: 600;
    }

    .video-main .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }

    .nati {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }

    .natification {
        padding-right: 0px;
    }

    .video-progress-bar-right {
        width: 58%;
    }

    .video-progress-nati {
        position: relative;
        margin-bottom: -40px;
    }

    .video-progress-bar-left img {
        width: 60px;
    }

    .video-progress {
        padding-bottom: 8px;
    }

    .video-progress-bar-right p {
        margin-top: -8px;
    }

    .videoshare-left {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .videoshare-left-one p {
        margin-right: 0px;
    }

    .videoshare-left-two {
        margin-left: 6px;
    }

    .videoshare-share {
        margin-left: 25px;
        text-align: center;
    }

    .videoshare-share p i {
        display: block;
        margin-right: 0;
    }

    .videoshare-share p {
        font-size: 13px;
        margin-left: 10px;
    }

    .videoshare-right span {
        font-size: 13px;
        border-radius: 7px;
        padding: 8px 12px;
        margin-top: 7px;
    }

    .videoshare {
        margin-left: 15px;
        margin-right: 15px;
    }

    .save-mobile {
        margin-left: 15px;
        margin-right: 15px;
        margin-top: 15px;
    }

    .mobile-course {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .save-popup {
        height: 73vh;
    }

    .video-modal-wrapper-mb {
        margin-left: 12px;
        margin-right: 12px;
        border-radius: 8px 8px 0px 0px;
        -webkit-box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.3);
        box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.3);
        border-top: 0;
    }

    .video-modal-time {
        display: none;
    }

    .video-modal-save {
        margin-top: 135px;
    }

    .natilist {
        position: fixed;
        height: 100vh;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 9999;
    }

    .topinto {
        margin-left: 15px;
        margin-right: 15px;
    }

    .topinto h3 {
        font-size: 18px;
    }

    .topinto p {
        display: inline;
    }

    .comment-one-left img {
        width: 40px;
    }

    .comment-one-right-up ul li {
        margin-left: 15px;
    }

    .comment-one-right-up ul {
        margin-top: 5px;
    }

    .comment-one-wrapper {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 0;
        margin-top: 0;
        padding: 0 15px 25px;
    }

    .comment-one-right-up span#teacher {
        display: none;
    }

    .comment-one-right-down {
        padding: 15px;
        margin-left: 55px;
    }

    .comment-one-right-down .comment-one-left img {
        width: 22px;
    }

    .comment-one {
        padding-top: 20px;
    }

    .video-main {
        padding-bottom: 30px;
    }

    .video-tab-link {
        margin-bottom: 20px;
    }

    .video-clip-heading h3 {
        font-size: 18px;
        font-weight: 600;
    }

    .video-clip {
        padding: 25px 10px;
        margin: 0px 12px;
    }

    .video-clip-input {
        margin-left: -30px;
    }

    .video-clip-input input {
        padding: 9px 15px;
    }

    .video-clip-input button {
        color: rgba(var(--bs-primary-rgb));
        background: none;
        padding: 10px 10px 10px 22px;
    }

    .video-clip-left {
        margin-right: 10px;
    }

    .video-tab-three {
        padding: 25px 10px;
        margin: 0px 12px;
    }

    .video-tab-three-heading h3 {
        font-size: 18px;
        font-weight: 600;
    }

    .video-tab-three-name-left img {
        width: 42px;
    }

    .video-tab-three-name {
        padding: 15px 0px;
    }

    .natilist {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .video-tab-link ul li:hover {
        background: none;
    }

    .video-clip-left span {
        top: -7px;
        position: relative;
    }

    .video-tab-four {
        margin: 0px 12px;
    }

    .syour-customer-left-heading h4,
    .syour-customer-left-heading p {
        text-align: left;
    }

    .syour-customer-left h6 {
        text-align: left;
    }

    .video-overlay {
        padding: 15px !important;
        width: 768px;
        height: 450px;
    }

    .video-overly-left img {
        display: inline-block;
        width: 30px;
        top: 0px;
    }

    .video-overly-right {
        margin-left: 15px;
    }

    .video-overly-right h5 {
        font-size: 16px;
    }

    .video-overly-right p img {
        width: 30px;
        margin-right: 10px;
    }

    .video-overly-right p {
        font-size: 15px;
        margin-top: 5px;
    }

    .syour-sell-one-content p {
        text-align: left;
    }

    .smart-para p {
        text-align: left;
    }

    .smart-ok {
        text-align: left;
    }

    .round-two-heading {
        text-align: left;
    }

    .priceing-wrapper {
        text-align: left !important;
    }

    .video-control {
        left: 0;
        margin-top: -64px;
    }

    .video-control-down {
        background: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        position: relative;
        top: 3px;
    }

    .video-control-down-bar {
        height: 3px;
        position: relative;
        top: 15px;
    }

    .video-control-down-bar span::after {
        content: none;
    }

    .video-control-up {
        padding-left: 20px;
        padding-right: 20px;
    }

    .video-main {
        padding-top: 25px;
    }
}

/*
  ====================================
  Xtra Small Screen - Small Mobile
  ====================================
  */
@media screen and (max-width: 576px) {
    .margin-mobile {
        margin-left: 8px;
        margin-right: 8px;
    }

    .loginmain {
        padding: 50px 0px;
    }

    .syour-customer-left h6 {
        text-align: left;
    }

    .login-logo-wrapper img {
        width: 175px;
    }

    .loginlink-wrapper {
        padding: 25px 15px;
    }

    .login-logo h3 {
        font-size: 20px;
        margin-bottom: 26px;
    }

    .login-logo-items ul li a {
        margin-top: 8px;
    }

    .login-or span::before {
        width: 44%;
    }

    .login-or span::after {
        width: 44%;
    }

    .login-or {
        margin-top: 15px;
    }

    .login-form-checkbox .check-box {
        font-size: 13px;
    }

    .login-form-checkbox .checkmark {
        top: -2px;
    }

    .login-forget a {
        position: relative;
        top: -5px;
        font-size: 13px;
    }

    .slogo-wrapper a img {
        width: 190px;
    }

    .sbannar {
        margin-top: 50px;
    }

    .sbannar-left {
        padding-right: 0px;
    }

    .sbannar-left h2 {
        font-size: 27px;
        margin-top: 18px;
    }

    .sbannar-left h2 br {
        display: none;
    }

    .sbannar-left h4 {
        font-size: 18px;
    }

    .sbannar-left-form-wrapper button {
        font-size: 15px;
    }

    .form-submit-button {
        font-size: 12px;
        padding: 20px 8px;
    }

    .form-control {
        font-size: 12px;
    }

    .smart-button p {
        font-size: 12px;
    }

    .sbannar-left-form-wrapper input {
        font-size: 15px;
        padding: 8px 12px;
    }

    .sbannar-right img {
        margin-left: 0px;
        margin-top: 30px;
    }

    .sani {
        margin-top: 25px;
    }

    .sani-wrapper img {
        width: 10px;
    }

    .syour {
        margin-top: 55px;
        text-align: center;
    }

    .syour-heading-one h2 {
        font-size: 26px;
        text-align: left;
    }

    .syour-heading-one h2 br {
        display: none;
    }

    .syour-heading-one p {
        margin: 30px 0px;
        text-align: left;
    }

    .syour-heading-one p br {
        display: none;
    }

    .syour-sell-img-one img {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .syour-customer-left {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .syour-customer-middle p {
        position: relative;
        top: 32%;
        margin: 30px 0px;
    }

    .syour-ani2 {
        margin-top: 30px;
    }

    .syour-ani2 img {
        width: 10px;
    }

    .sclass {
        margin-top: 40px;
    }

    .sclass-wrapper h3 {
        text-align: left;
        font-size: 27px;
    }

    .sclass-wrapper h3 br {
        display: none;
    }

    .sclass-wrapper p {
        margin-top: 18px;
        text-align: left;
    }

    .hooked {
        margin-top: 40px;
    }

    .hooked-img img {
        width: 100%;
        margin: 20px auto auto;
    }

    .hooked-two {
        margin-top: 0px;
    }

    .smart {
        margin-top: 40px;
    }

    .smart-wrapper {
        text-align: center;
    }

    .smart-ok p {
        margin-bottom: 10px;
    }

    .smart-ani {
        margin-top: 30px;
    }

    .smart-ani img {
        width: 10px;
    }

    .round-two {
        margin-top: 50px;
    }

    .round-two-heading h2 {
        font-size: 28px;
    }

    .round-two-heading p {
        padding-right: 0px;
    }

    .round-two-heading {
        text-align: left;
    }

    .round-two-block-wrapper {
        margin-top: 60px;
    }

    .round-two-block-left {
        max-width: 100%;
    }

    .round-two-block-right img {
        margin-top: 40px;
    }

    .priceing {
        margin-top: 70px;
        padding-bottom: 15px;
        text-align: center;
    }

    .priceing-wrapper p br {
        display: none;
    }

    /**-----------------------*/

    .video-tab-link ul li span {
        display: none;
    }

    .video-tab-link ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        overflow-x: scroll;
        overflow-y: scroll;
    }

    .video-tab-link ul li.active {
        background: none;
    }

    .video-tab-link ul li::after {
        content: none;
    }

    .video-tab-link ul li {
        padding-left: 6px !important;
        padding-right: 6px;
        padding-bottom: 6px;
        padding-top: 0;
        margin-left: 2px;
        margin-right: 2px;
    }

    .video-left {
        padding-right: 0px;
        margin-top: 0;
    }

    .video-tab-link ul li.active {
        border-bottom: 3px solid rgba(var(--bs-primary-rgb));
        color: #151b2d;
        font-weight: 600;
    }

    .video-main .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }

    .nati {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }

    .natification {
        padding-right: 0px;
    }

    .video-progress-bar-right {
        width: 58%;
    }

    .video-progress-nati {
        position: relative;
        margin-bottom: -40px;
    }

    .video-progress-bar-left img {
        width: 60px;
    }

    .video-progress {
        padding-bottom: 8px;
    }

    .video-progress-bar-right p {
        margin-top: -20px;
    }

    .videoshare-left {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .videoshare-left-one p {
        margin-right: 0px;
        white-space: nowrap;
    }

    .videoshare-left-two {
        margin-left: 6px;
    }

    .videoshare-share {
        margin-left: 6px;
        text-align: center;
    }

    .videoshare-share p i {
        display: block;
        margin-right: 0;
        font-size: 19px;
    }

    .videoshare-share p {
        font-size: 13px;
        margin-left: 25px;
    }

    .videoshare-right span {
        font-size: 11px;
        border-radius: 7px;
        padding: 9px;
        margin-top: 4px;
        position: relative;
        top: 0px;
    }

    .videoshare {
        margin-left: 15px;
        margin-right: 15px;
    }

    .save-mobile {
        margin-left: 15px;
        margin-right: 15px;
        margin-top: 15px;
    }

    .mobile-course {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .save-popup {
        height: 73vh;
    }

    .video-modal-save {
        margin-top: 135px;
    }

    .natilist {
        position: fixed;
        height: 100vh;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 9999;
    }

    .topinto {
        margin-left: 15px;
        margin-right: 15px;
    }

    .topinto h3 {
        font-size: 18px;
    }

    .topinto p {
        display: inline;
    }

    .comment-one-left img {
        width: 40px;
    }

    .comment-one-right-up ul li {
        margin-left: 15px;
    }

    .comment-one-right-up ul {
        margin-top: 5px;
    }

    .comment-one-wrapper {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 0;
        margin-top: 0;
        padding: 0 15px 25px;
    }

    .comment-one-right-up span#teacher {
        display: none;
    }

    .comment-one-right-down {
        padding: 15px;
        margin-left: 55px;
    }

    .comment-one-right-down .comment-one-left img {
        width: 22px;
    }

    .comment-one {
        padding-top: 20px;
    }

    .video-main {
        padding-bottom: 30px;
        /* background-image: url(/assets/img/mbs.png); */
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .video-tab-link {
        margin-bottom: 20px;
    }

    .video-clip-heading h3 {
        font-size: 18px;
        font-weight: 600;
    }

    .video-clip {
        padding: 25px 10px;
        margin: 0px 12px;
    }

    .video-clip-input {
        margin-left: -30px;
    }

    .video-clip-input input {
        padding: 9px 15px;
    }

    .video-clip-input button {
        color: rgba(var(--bs-primary-rgb));
        background: none;
        padding: 10px 10px 10px 22px;
    }

    .video-clip-left {
        margin-right: 5px;
    }

    .video-tab-three {
        padding: 25px 10px;
        margin: 0px 12px;
    }

    .video-tab-three-heading h3 {
        font-size: 18px;
        font-weight: 600;
    }

    .video-tab-three-name-left img {
        width: 42px;
    }

    .video-tab-three-name {
        padding: 15px 0px;
    }

    .natilist {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .video-tab-link ul li:hover {
        background: none;
    }

    .videoshare-left-two ul li span {
        display: inline-block;
        font-size: 19px;
    }

    .videoshare-left-two ul li {
        margin: 0px 3px;
    }

    .video-tab-link ul::-webkit-scrollbar {
        display: none;
    }

    .video-tab-link ul {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    #chapter {
        background: none;
    }

    .offcanvas-bottom {
        border-top: 0;
    }

    .video-modal-wrapper-mb {
        margin-left: 12px;
        margin-right: 12px;
        border-radius: 8px 8px 0px 0px;
        -webkit-box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.3);
        box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.3);
    }

    .syour-customer-left-heading h4 br {
        display: none;
    }

    .syour-customer-left-heading h4 {
        font-size: 12px;
        text-align: left;
    }

    .video-clip-right p strong {
        margin-right: 2px;
    }

    .video-clip-left span {
        top: -7px;
        position: relative;
    }

    .video-tab-four {
        margin: 0px 12px;
    }

    .syour-customer-left-heading p {
        text-align: left;
    }

    .video-overlay {
        padding: 15px !important;
        width: 577px;
        height: 325px;
    }

    .video-overly-left img {
        display: inline-block;
        width: 30px;
        top: 0px;
    }

    .video-overly-right {
        margin-left: 15px;
    }

    .video-overly-right h5 {
        font-size: 16px;
    }

    .video-overly-right p img {
        width: 30px;
        margin-right: 10px;
    }

    .video-overly-right p {
        font-size: 15px;
        margin-top: 5px;
    }

    .syour-sell-one-content p {
        text-align: left;
    }

    .sclass-wrapper h3 img {
        width: 195px;
    }

    .smart-para {
        text-align: left;
    }

    .smart-ok {
        text-align: left;
    }

    .priceing-wrapper {
        text-align: left !important;
    }

    .syour-customer-middle {
        padding-left: 10px;
        padding-right: 10px;
    }

    .video-control {
        left: 0;
        margin-top: -64px;
    }

    .video-control-down {
        background: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        position: relative;
        top: 3px;
    }

    .video-control-down-bar {
        height: 3px;
        position: relative;
        top: 15px;
    }

    .video-control-down-bar span::after {
        content: none;
    }

    .video-control-up {
        padding-left: 20px;
        padding-right: 20px;
    }

    .video-main {
        padding-top: 25px;
    }
}

.style1 {
    max-width: 310px;
}

/**--CMS --**/
@media (max-width: 991.98px) {
    .offcanvas-collapse {
        position: fixed;
        top: 56px;
        /* Height of navbar */
        bottom: 0;
        left: 100%;
        width: 100%;
        padding-right: 1rem;
        padding-left: 1rem;
        overflow-y: auto;
        visibility: hidden;
        background-color: #343a40;
        -webkit-transition: visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
        transition: visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
        transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
        transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    }

    .offcanvas-collapse.open {
        visibility: visible;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

.nav-scroller .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.nav-underline .nav-link {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.nav-underline .nav-link:hover {
    color: #007bff;
}

.nav-underline .active {
    font-weight: 500;
    color: #343a40;
}



/* Kars start utility classes*/
.outline-primary {
    outline: rgba(var(--bs-primary-rgb)) solid; 
    
}

.box-shadow-tight {
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);


}

.box-shadow-card { 
    -webkit-box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1); 
            box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1); }

.bg-purple {
    background-color: #6f42c1;
}

.bg-neutral100 {
    background-color: var(--neutral100);
}

.bg-neutral90 {
    background-color: var(--neutral90);
}

.bg-neutral80 {
    background-color: var(--neutral80);
}

.bg-neutral40 {
    background-color: var(--neutral40);
}

.bg-pink20 {
   background-color: var(--pink20)
}

.bg-primary {
    background-color: rgba(var(--bs-primary-rgb));
}


.bg-lightshafts-tr {
    background-image: url(../assets/misc/tr-lightshafts.svg);
    background-repeat: no-repeat;
    background-position-y: top;
    background-position-x: right;
}

@media (min-width: 1400px) {
  .bg-lightshafts-tr {
    background-position-y: top;
    background-position-x: right;
  }

.truncate-cell {
        max-width: 400px;
    }
}

.bg-lightshafts-tl {
    background-image: url(../assets/misc/tl-lightshafts.svg);
    background-repeat: no-repeat;
    background-position-y: top;
    background-position-x: left;
}

/* @media (min-width: 1400px) {
  .bg-lightshafts-tl {
    background-position-y: top;
    background-position-x: left;
  }
} */


/* Kars end */



.text-primarylight {
    color: var(--primarylight);
}

.text-pink20 {
    color: var(--pink20);
}

.text-neutral100 {
    color: var(--neutral100);
}

.text-neutral80 {
    color: var(--neutral80);
}

.text-neutral90 {
    color: var(--neutral90);
}

.text-neutral40 {
    color: var(--neutral40);
}

.text-pink {
    color: #e6007e!important;
}

.numbersquare {
    -webkit-font-feature-settings: 'tnum' on, 'lnum' on;
    font-feature-settings: 'tnum' on, 'lnum' on;
}

.text-fw300 {
    font-weight: 300;
}

.text-fw400 {
    font-weight: 400;
}

.text-fw410 {
    font-weight: 410;
}

.text-fw500 {
    font-weight: 500;
}

.text-fw600 {
    font-weight: 600;
}

.text-fw700 {
    font-weight: 700;
}

.text-fw800 {
    font-weight: 800;
}

.rounded-4 {
    border-radius: 8px;
}

.rounded-5 {
    border-radius: 14px;
}

.button-icon-2rem {
    font-size: 2rem;
}

.play-button-wrap {
    /* width: 20px; */
    /* background-color: #fff; */
    width: 2.5rem;
}

.remove-ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
}

/* Bootstrap overrides */

/* primary button */
.btn-unset {
    all: unset;
    cursor: pointer;
}

.btn {
    padding: 0.75rem 1.8rem;
    border-radius: 0.8rem;
    font-weight: 500;
}

.btn-primary {
    --bs-btn-color: #fff !important;
    --bs-btn-bg: rgba(var(--bs-primary-rgb)) !important;
    --bs-btn-border-color: rgba(var(--bs-primary-rgb)) !important;
    --bs-btn-hover-color: rgba(var(--bs-primary-rgb)) !important;
    --bs-btn-hover-bg: #rgba(var(--bs-primary-rgb), 0.8) !important;
    --bs-btn-hover-border-color: rgba(var(--bs-primary-rgb), 0.5) !important;
    --bs-btn-focus-shadow-rgb: 49, 132, 253 !important;
    --bs-btn-active-color: #fff !important;
    --bs-btn-active-bg: rgba(var(--bs-primary-rgb)) !important;
    --bs-btn-active-border-color: rgba(var(--bs-primary-rgb)) !important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) !important;
    --bs-btn-disabled-color: #fff !important;
    --bs-btn-disabled-bg: rgba(var(--bs-primary-rgb)) !important;
    --bs-btn-disabled-border-color: rgba(var(--bs-primary-rgb)) !important;
}

/* secondary button */
.btn-secondary {
    background-color: #fff;
    border-color: rgba(var(--bs-primary-rgb));
    color: rgba(var(--bs-primary-rgb));
}

.btn-secondary:hover {
    background-color: rgb(var(--primary), 0.5);
    border-color: rgba(var(--bs-primary-rgb));
    color: #fff;
}

.btn-outline-primary {
    color: rgba(var(--bs-primary-rgb));
    border-color: rgba(var(--bs-primary-rgb));
    background-color: #fff;
    width: 100%;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: rgba(var(--bs-primary-rgb));
    border-color: rgba(var(--bs-primary-rgb));
}

.btn-check:checked + .btn-outline-primary {
    color: #fff;
    background-color: rgba(var(--bs-primary-rgb));
    border-color: rgba(var(--bs-primary-rgb));
}

.btn-check:focus + .btn-outline-primary,
.btn-outline-primary:focus {
    -webkit-box-shadow: 0 0 0 0.25rem rgb(var(--primary) / 50%);
    box-shadow: 0 0 0 0.25rem rgb(var(--primary) / 50%);
}

.btn-check:active + .btn-outline-primary:focus,
.btn-check:checked + .btn-outline-primary:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus,
.btn-outline-primary:active:focus {
    -webkit-box-shadow: 0 0 0 0.25rem rgb(var(--primary) / 50%);
    box-shadow: 0 0 0 0.25rem rgb(var(--primary) / 50%);
}

.btn-check:active + .btn-outline-primary,
.btn-check:checked + .btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active {
    color: #fff;
    background-color: rgba(var(--bs-primary-rgb));
    border-color: rgba(var(--bs-primary-rgb));
}

.btn-check:active + .btn-primary,
.btn-check:checked + .btn-primary,
.btn-primary.active,
.btn-primary:active,
.show > .btn-primary.dropdown-toggle {
    /* color: #fff; */
    background-color: rgba(var(--bs-primary-rgb));
    border-color: rgba(var(--bs-primary-rgb));
}

.btn-check:active + .btn-primary:focus,
.btn-check:checked + .btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.25rem rgb(var(--primary) / 50%);
    box-shadow: 0 0 0 0.25rem rgb(var(--primary) / 50%);
}

.btn-check:focus + .btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: rgb(var(--primary), 0.5);
    border-color: rgb(var(--primary), 0.5);
    -webkit-box-shadow: 0 0 0 0.25rem rgb(var(--primary) / 50%);
    box-shadow: 0 0 0 0.25rem rgb(var(--primary) / 50%);
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: var(--neutral80);
    border-color: var(--neutral80);
}

.btn-outline-pink {
    color: #e6007e !important;
    border-color: #e6007e !important;
    background-color: #fff !important;
}

.btn-outline-pink:hover {
    color: #fff;
    border-color: #e6007e;
    background-color: #e6007e;
}

.btn-outline-pink:active {
    color: #fff;
    border-color: #e6007e;
    background-color: #e6007e;
}

.btn-outline-pink:focus {
    color: #fff;
    border-color: #e6007e;
    background-color: #e6007e;
}

/* Loading spinner */
.loadingspinner {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.dot {
    width: 10px;
    height: 10px;
    border: 2px solid rgba(var(--bs-primary-rgb));
    border-radius: 50%;
    float: left;
    margin: 0 5px;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-animation: fx 1000ms ease infinite 0ms;
    animation: fx 1000ms ease infinite 0ms;
}

.dot:nth-child(2) {
    -webkit-animation: fx 1000ms ease infinite 300ms;
    animation: fx 1000ms ease infinite 300ms;
}

.dot:nth-child(3) {
    -webkit-animation: fx 1000ms ease infinite 600ms;
    animation: fx 1000ms ease infinite 600ms;
}

@-webkit-keyframes fx {
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fx {
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* start */
.videoTopGrid {
    display: grid;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    grid-template-rows: 0.5fr 1.5fr;
    gap: 0px 1rem;
    grid-auto-flow: row;
    grid-template-areas:
        'backIcon courseTitle'
        'backIcon courseTeacher';
    color: #fff;
}

.courseTitle {
    grid-area: courseTitle;
}

.backIcon {
    grid-area: backIcon;
}

.courseTeacher {
    grid-area: courseTeacher;
}

.video_container {
    position: relative;
    /* width: 100%; */
    margin: auto;
    max-width: 1500px;
}

.video_container .iframe_wrap {
    height: 100%;
    aspect-ratio: 16/9;
}

.video_container iframe {
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
}

.video_container:hover .video_gradientOverlay {
    opacity: 1;
}

.video_gradientOverlay {
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    pointer-events: none;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0) 50%);
}

/* For screens smaller than 768px */
@media (max-width: 767px) {
  .video_gradientOverlay {
    height: 50vh; /* adjust as per your requirement */
  }
}

.video_container:hover .video_overlay {
    opacity: 1;
}

.video_container .video_overlay {
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    /* pointer-events: none; */
    height: 20%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: white;
}

/* end */

.videoWrap {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.videoWrap.videoContent {
    width: 100%;
    display: block;
}

.videoWrap:before {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* End - video watch page */

/* Kars end */

/* Dashboard styles start */

/* body {
  font-size: .875rem;
} */

.dashboard-icon {
    width: 16px;
    height: 16px;
    padding-right: 5px;
}

/*
 * Sidebar
 */

.sidebar {
    position: fixed;
    top: 0;
    /* rtl:raw:
  right: 0;
  */
    bottom: 0;
    /* rtl:remove */
    left: 0;
    z-index: 100;
    /* Behind the navbar */
    padding: 48px 0 0;
    /* Height of navbar */
    -webkit-box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.1);
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.1);
}

@media (max-width: 767.98px) {
    .sidebar {
        top: 5rem;
    }
}

.sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 48px);
    padding-top: 0.5rem;
    overflow-x: hidden;
    overflow-y: auto;
    /* Scrollable contents if viewport is shorter than content. */
}

.sidebar .nav-link {
    font-weight: 500;
    color: #333;
}

.sidebar .nav-link .dashboard-icon {
    margin-right: 4px;
    color: #727272;
}

.sidebar .nav-link.active {
    color: rgba(var(--bs-primary-rgb));
}

.sidebar .nav-link:hover .dashboard-icon,
.sidebar .nav-link.active .dashboard-icon {
    color: inherit;
}

.sidebar-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
}

/*
 * Navbar
 */

.navbar-brand {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 1rem;
}

.navbar .navbar-toggler {
    top: 0.25rem;
    right: 1rem;
}

.navbar .form-control {
    padding: 0.75rem 1rem;
    border-width: 0;
    border-radius: 0;
}

.form-control-dark {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
}

.form-control-dark:focus {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

#home-nav {
    font-weight: 600;
}

.span-bar {
    width: 100%;
    height: 1px;
    background: #dde1e9;
    margin-left: auto;
    margin-top: 8px;
    margin-bottom: 8px;
}

.bar-wrap {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Dashboard styles end */

.style4 {
    font-size: 26px;
    line-height: 1.4;
    font-weight: bold;
}

.webinar-h1 {
    font-size: 22px;
    font-weight: bold;
}

.webinar-h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--neutral80);
}

.buttonoutline-transparent {
    background-color: Transparent;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    overflow: hidden;
    outline: none;
    color: rgba(var(--bs-primary-rgb));
}

.webinar-modal-content {
    background-color: var(--neutral100);
    color: var(--neutral40);
    max-width: 512px;
    margin: auto;
}

.card-outlinetransparent {
    border: none;
}

.option-card {
    padding: 1rem 1.8rem;
    border: 5px solid transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.option-checkmark {
    color: var(--pink20);
}

.option-card-group > input[type='radio']:hover + label {
    border-color: rgba(var(--bs-primary-rgb));
    border-width: 5px;
}

.option-card-group > input[type='radio']:checked + label {
    border-color: rgba(var(--bs-primary-rgb));
    border-width: 5px;
    background: rgb(252 229 242 / 9%);
}

.option-card-group > input[type='radio']:checked + label > div > .option-checkmark {
    color: rgba(var(--bs-primary-rgb));
}

.input-text-dark::-webkit-input-placeholder {
    color: var(--neutral40);
    font-weight: 400;
    opacity: 0.6;
}

.input-text-dark::-moz-placeholder {
    color: var(--neutral40);
    font-weight: 400;
    opacity: 0.6;
}

.input-text-dark:-ms-input-placeholder {
    color: var(--neutral40);
    font-weight: 400;
    opacity: 0.6;
}

.input-text-dark::-ms-input-placeholder {
    color: var(--neutral40);
    font-weight: 400;
    opacity: 0.6;
}

.input-text-dark::placeholder {
    color: var(--neutral40);
    font-weight: 400;
    opacity: 0.6;
}

.input-text-dark {
    background-color: var(--neutral90);
    border-color: var(--neutral90);
    color: var(--neutral40);
}

.h5-responsive {
}

h5 {
    font-size: 1.1rem;
}
@media (min-width: 576px) {
    .h5-responsive {
        font-size: 1.25rem;
    }

.truncate-cell {
        max-width: 125px;
    }
}

@media (max-width: 1350px) {
    .navigation-btn {
        padding-left: 14px;
    }

    .btn {
        padding: 0.7rem 1.2rem;
    }
}

h1 small {
    font-size: 75%;
    line-height: 0.5 !important;
}

/* TAblet and down */
@media (max-width: 992px) {
    .rp-left-wrap {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}
.rp-h1 {
    font-weight: 700;
}

.rp-subtitle {
    font-weight: 500;
}

.rp-h2 {
    font-weight: 600;
}

.rp-h3 {
    font-weight: 600;
}

.rp-h4 {
    font-weight: 600;
}

/* Laptop and up */
@media (min-width: 992px) {
    .rp-left-wrap {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    .rp-h1 {
        font-weight: 700;
    }

    .rp-subtitle {
        font-weight: 500;
    }

    .rp-h2 {
        font-size: 1.7rem;
        font-weight: 600;
   
    }

    .rp-h3 {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .rp-h4 {
        font-size: 1.2rem;
        font-weight: 600;
    }

.char_limit {
        margin-bottom: -28px!important;
    }

.truncate-cell {
        max-width: 250px;
    }

}

.blur-text {
    -webkit-filter: blur(0.3rem);
    filter: blur(0.3rem);
}

/* New Styles - (Brayam Valero)*/
.social-media-list-item {
    display: inline-block;
}
.social-media-list-item a {
    color: var(--neutral80);
}
.social-media-list-item:not(:last-child) {
    margin-right: 0.6rem;
}

/* First */
.reading-page-container {
    overflow: hidden;
}

.reading-page-info {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    max-width: 65ch;
    white-space: normal;
    margin: auto;
    word-break: break-word;
}

/* styling of the actual content */



.reading-page-info h2 {
          font-size: 1.7rem;
        font-weight: 600;
         margin-bottom: 1.5rem;
}

.reading-page-info h3 {
        font-size: 1.5rem;
        font-weight: 600;
         margin-bottom: 1.1rem;
}

.reading-page-info h4 {
     font-size: 1.2rem;
     font-weight: 600;
    margin-bottom: 0.9rem
}

.reading-page-info.locked {
    height: 80vh;
}

/* (K) Set img width to 100% */
.reading-page-info img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.reading-page-left-content {
    height: 100vh;
    /* max-height: 100vh; */
    overflow-y: auto;
    position: fixed;
    padding-left: 0;
}

/* Father */
.reading-page-right-content {
    position: relative !important;
    background: white;
    /* max-height: 100vh; */
    overflow-y: hidden;
    /* Shadow */
    -webkit-box-shadow: inset 10px 0 9px -10px rgb(0 0 0 / 40%);
    box-shadow: inset 10px 0 9px -10px rgb(0 0 0 / 40%);
}

.reading-page-right-content-info p {
    word-break: break-all;
    white-space: normal;
}

.reading-page-right-content-card {
    width: 60vh;
    padding: 1rem;
    border: none;
}

/* Son */
.reading-page-right-content-overlay {
    position: fixed;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50vw;
    height: 100vh;
    max-height: 100vh;
}

.section-spacing {
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-left: auto;
}

.reading-page-unlock-icon {
    background: -webkit-gradient(linear, left top, left bottom, from(#e72c83), to(#5552d3));
    background: linear-gradient(to bottom, #e72c83 0%, #5552d3 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Laptop and Down */
@media (max-width: 992px) {
.reading-page-info {
    padding-left: 3rem;
    padding-right: 3rem;
    white-space: normal;
}

    .reading-page-container {
        padding: unset;
        margin: unset;
    }
    .reading-page-left-content {
        width: 100%;
        max-width: 100%;
        position: relative;
        height: unset;
        /* overflow-y: scroll; */
    }
    /* Father */
    .reading-page-right-content {
        top: 0;
        width: 100%;
        max-width: 100%;
        /* overflow-y: unset; */
    }
    /* Son */
    .reading-page-right-content-overlay {
        position: absolute;
        width: 100vw;
    }

    .reading-page-right-content-card {
        width: 85vw;
        border: none;
    }
    .reading-page-wrapper.active .reading-page-right-content {
        max-height: -webkit-fit-content;
        max-height: -moz-fit-content;
        max-height: fit-content;
    } 
}

/* Badges for metronic dashboard */
.badge-hot {
    color: #FFFFFF;
    background-color: #b1042f;
}

.badge-warm {
    color: #FFFFFF;
    background-color: #c46800;
}

.badge-cold {
    color: #FFFFFF;
    background-color: #007cc4;
}

.btn.home-main-btn {
}

.ks-footer {
    background-color: #F4F7FE;
    -webkit-box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1);
            box-shadow: 0px 10px 36px rgba(124, 142, 166, 0.1);
}


.icon-container {
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
            border-bottom-left-radius: 8px;
            border-bottom-right-radius: 8px;
}

.style6 {
    width: 32px;
    height: 32px;
}


/* FIGMA fonts -- START*/

/* Headings */


/* .fig-display {
    font-weight: 700;
    
    font-size: calc(2.25rem + 1.5vw);
    letter-spacing: -0.02em;
    line-height: 140%;
} */

/* .fig-subtitle {
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 160%;
} */

.fig-h2 {
font-weight: 700;
font-size: 1.75rem;
line-height: 128%;
letter-spacing: -0.02em;
}

.fig-h3 {

font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-size: 24px;
line-height: 129%;
letter-spacing: -0.02em;
}

.fig-h4 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 150%;
}

.fig-button {
font-weight: 600;
font-size: 0.94rem;
line-height: 130%;
letter-spacing: -0.02em;
}

.fig-paragraph {
    font-size: 1rem;
    line-height: 160%;
}

.fig-size20 {
    font-size: 1.25rem;
    line-height: 180%;
    letter-spacing: -0.02em;
    font-weight: 600;
}


/* FIGMA fonts -- END*/


.gradient-text {
    background-color: red;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(230, 1, 126, 1)), color-stop(55%, rgba(85, 82, 212, 1)));
    /* background-image: linear-gradient(90deg, rgba(230, 1, 126, 1) 0%, rgba(85, 82, 212, 1) 55%); */
    background-image: var(--gradient);
    background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.gradient-text del {
    text-decoration: line-through;
}

.bg-gradient2 {
    background-image: var(--gradient-25)
}

.homepage-timeline {
      border-left: 4px solid #e6007e;
      position: relative;
      list-style: none;
    }

    .homepage-timeline .homepage-timeline-item {
      position: relative;
    }

    .homepage-timeline .homepage-timeline-item:after {
      position: absolute;
      display: block;
      top: 0;
      background-color:#e6007e;
      left: -46px;
      border-radius: 50%;
      height: 26px;
      width: 26px;
      content: "";}

.card-numbering {
    font-size: 2rem;
    font-weight: 700;
    line-height: 118%;
}

.card-text {
    font-weight: 500;
    font-size: 1rem;
    line-height: 120%;
}

.homepage-timeline-fase {
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 128%;
    letter-spacing: -0.02em;
}

.homepage-timeline-li {
    font-weight: 500;
    font-size: 1rem;
    line-height: 25.6px;
}

/* section dividers */

.custom-shape-divider-bottom-1661596144 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1661596144 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 90px;
}

.custom-shape-divider-bottom-1661596144 .shape-fill {
    fill: #333C56;
}

.pb-5rem {
    padding-bottom: 5rem;
}

.pt-5rem {
    padding-top: 5rem;
}

.pt-10rem {
    padding-top: 10rem;
}

.custom-shape-divider-top-1662028744 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}

.custom-shape-divider-top-1662028744 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 101px;
}

.custom-shape-divider-top-1662028744 .shape-fill {
    fill: #333C56;
}

.custom-shape-divider-top-1662029506 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1662029506 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 101px;
}

.custom-shape-divider-top-1662029506 .shape-fill {
    fill: #333C56;
}

/* checkout page - orders api START*/

.couponCode-inputWrapper {


}

.couponCode-inputWrapper label {
    /* padding-top: 1rem; */
    display: block;
    height: 1.6rem;
}
.couponCode-inputWrapper .label-text {
         -webkit-transform: translateY(-1.7rem);
         transform: translateY(-1.7rem);
        cursor:pointer;
        color: rgba(var(--bs-primary-rgb));
        font-weight:700;
        -webkit-transition: -webkit-transform 0.2s ease-out;
        transition: -webkit-transform 0.2s ease-out;
        transition: transform 0.2s ease-out;
        transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out
}

.couponCode-inputWrapper label input {
    outline: 0;
    border:0;
    border-bottom: 0px solid rgb(var(--bs-primary-rgb));
    font-weight:700;
    color: rgb(var(--bs-primary-rgb));
}

.couponCode-inputWrapper label input:focus {
    border: 0;
    border-bottom: 2px solid rgba(var(--bs-primary-rgb));
    padding-left: 1rem;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    width: 100%;
    
}

.couponCode-inputWrapper label input:focus + .label-text {
            -webkit-transform: translateX(1rem);
            transform: translateX(1rem) translateY(-1.7rem);
            font-size: 0.8rem;
}

/* When coupon code is active, apply styling to show its active */
.couponCode-inputWrapper label input.is-valid {

/* background-color: var(--neutral80); */

display: inline-block;
}

/* When coupon code input field is not empty, remove text */

.couponCode-inputWrapper label input.input--not-empty + .label-text {
    visibility:hidden;

}
/* checkout page - orders api END*/

.checkout-bgblue {
    background-color: #E1EAFE ;
}

.checkout-bgwhite {
    background-color: #ffffff ;
}

.checkout-step-nav-item  {
    color: var(--neutral80)
}

.checkout-step-nav-item.active {
    font-weight: 600;
    color: var(--neutral90);
}


.absolute-top-right-quote {
    position: absolute;
    left: 93%;
    font-size: 50px;
    color: white;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

/* Home page typing effect */
.typing-wrapper {
    background-color: rgb(var(--bs-primary-rgb), 0.05);
    width: 10ch;
    display: inline-block;
}


.hero-img-animation {
        -webkit-transition: all ease-out 0.3s;
    transition: all ease-out 0.3s;
}
.hero-img-animation:hover {
    scale:1.05;

}

.checkout-ty-h4 {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 150%;
    color: #15D24A;
}

.checkout-ty-h5 {
    font-weight: 700;
    font-size: 0.8125rem;
    line-height: 200%;
    color: var(--neutral100);
}

.checkout-ty-h6 {
    font-size: 0.94rem;
    line-height: 160%;
    color: var(--neutral100);
}

.checkout-ty-p {
    font-size: 0.8125rem;
    line-height: 120%;
    color: var(--neutral90);
}

.checkout-ty-p2 {
    font-size: 0.875rem;
    line-height: 160%;
}

.checkout-ty-p3 {
    font-size: 0.8125rem;
    line-height: 160%;
    font-weight: 500;
    color: var(--neutral90);
}

.checkout-ty-p4 {
    font-size: 0.8125rem;
    line-height: 100%;
    font-weight: 500;
    color: var(--neutral90);
}

.checkout-ty-nb {
    font-size: 0.875rem;
    line-height: 150%;
    font-weight: 500;
    text-align: center;
    color: var(--neutral80);
}

.checkout-ty-bg {
    background-color: var(--neutral40);
    -webkit-box-shadow: 0px 10px 36px 0px rgba(124, 142, 166, 0.1);
            box-shadow: 0px 10px 36px 0px rgba(124, 142, 166, 0.1);
    border-radius: 8px;
}

.icon-hugger{
    background-color: #fff;
    display: inline-block;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
            width: 24px;
            height: 24px;
    border-radius: 50%;
-webkit-box-shadow: 0px 5px 20px rgba(124, 142, 166, 0.2);
        box-shadow: 0px 5px 20px rgba(124, 142, 166, 0.2);
}

.orders-btn{
    background-color: var(--neutral40);
    border-radius: 0.25rem;
}

/* styles for the pagination on the orders cms page */
.orders-limitbtn {
background-color: var(--kt-secondary-light);
color: var(--kt-primary);
}

.orders-limitbtn.active{
background-color: var(--kt-primary);
color: var(--kt-secondary-light);
}

.ks-table-row-active {
    background-color: #dafbd5;
}

/* Disabled input fields */
/* input:disabled {
  cursor: not-allowed;
  pointer-events: all !important;
} */

.bg-gray {
    background-color: #ceced0!important;
}

.pointer {
    cursor: pointer;
}

.char_limit {
    margin-top: 10px;
    margin-bottom: -26px;
    padding-right: 10px;
}

.truncate-cell {
    max-width: 100px;
}

@media (min-width: 768px) {

.truncate-cell {
        max-width: 175px;
    }
}

.icon-fs-20 {
    font-size: 20px!important;
}

.icon-fs-16 {
    font-size: 16px!important;
}

.col-leaderboard {
    max-height: 75vh;
    overflow: auto;
}

.wrapper-100vh {
  height: 100vh;
  max-height: 100vh;
  min-height: 100vh; 
}

.square-36 {
    width: 36px!important;
    height: 36px!important;
    padding-top: 10px;
    padding-bottom: 3px;
    max-width: 36px;
    max-height: 36px;
}

.sub-wrapper-90vh {
  max-height: 90vh!important;
  overflow: auto;
}

.pe-100 {
    padding-right: 100px;
}

.body-c {
    background-color: #F3F6FD!important;
}

.line-through {
    text-decoration: line-through;
}

.card-payment-term .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.card-payment-term .row .right-menu {
    position: relative;
    right: 15%;
}

.inp-number-no-arrows::-webkit-outer-spin-button,
.inp-number-no-arrows::-webkit-inner-spin-button  {
    -webkit-appearance: none;
    margin: 0;
    -moz-appearance: textfield;
}

.xlg-icon-btn {
    font-size: 70px!important;
}

/* 2023-09-05 Admin dashboard styles */

/* Table */

.table-row:hover {
    background-color: rgb(var(--bs-primary-rgb), 0.5);
}