@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.cdnfonts.com/css/helvetica-neue-55");
/* ==========================================================================
   FONT CONFIG
   ========================================================================== */
/* Font Weights */
/* Layout */
/* ==========================================================================
   CSS VARIABLES - LIGHT THEME (DEFAULT)
   ========================================================================== */
:root {
    /* Core */
    --primary: #D0FF00;
    --secondary: #111111;
    --white: #FFFFFF;
    --black: #000000;
    --danger: #ff0000;
    /* Blacks */
    --jet-black: #0B0B0B;
    --charcoal-black: #1F1F1F;
    /* Grays */
    --medium-gray: #AAAAAA;
    --soft-gray: #F6F6F6;
    --dark-gray: #666666;
    --cool-gray-light: #D1D5DB;
    /* Accents */
    --greenish-yellow: #F4F6EC;
    --active-light: #D1FAE5;
    --green-active: #038C66;
    --tealish-blue: #ECEEF2;
    --carbon-grey: #585858;
    --bluish-purple: #E4D4F9;
    --barley-white: #F0F7D1;
    --cyan-blue: #CFD6DF;
    --lemon-chiffon: #FFF9BB;
    --brownish-orange: #CB7F23;
    --eggshell: #EAECCA;
    --venom-green: #7C9800;
    --misty-rose: #FFE6EA;
    --solid-pink: #8B2635;
    --papaya-whip: #FEF3C7;
    --russet: #92400E;
    --pink-lace: #F0E6FF;
    --magenta: #5A2D5A;
    --ice-blue: #E6F3FF;
    --royal-blue: #1D6BB9;
    --deep-teal: #2D5A4F;
    --mint-green: #CBE7C4;
    --mint-light: #E3FCE9;
    --rose-light: #FDE6E6;
    --light-green: #DAF0B9;
    --dark-green: #556800;
    --light-organge: #FFE0D2;
    --dark-organge: #F04E05;
    --medium-light-green: #BFDFCF;
    --medium-dark-green: #007554;
    --light-org: #FFE4B5;
    --dark-org: #AA5010;
    /* Status */
    --crimson-red: #DC3545;
    --soft-lime: #C3D478;
    --lime-yellow: #D5ED69;
    --light-lime: #E2ECB8;
    --amber-yellow: #FFC107;
    /* Utility */
    --down-bg: #FFEBEB;
    --red-text: #D30404;
    /* RGB Values */
    --secondary-rgb: 17, 17, 17;
    --white-rgb: 255, 255, 255;
    --black-rgb: 0, 0, 0;
}

/* ==========================================================================
   DARK THEME (ACTIVE WHEN body.dark)
   ========================================================================== */
body.dark {
    /* Core */
    --primary: #D0FF00;
    --secondary: #ffffff;
    --white: #222222;
    --black: #000000;
    --danger: #FF6B6B;
    /* Blacks */
    --jet-black: #000000;
    --charcoal-black: #121212;
    /* Grays */
    --medium-gray: #9CA3AF;
    --soft-gray: #111111;
    --dark-gray: #9CA3AF;
    --cool-gray-light: #6B7280;
    /* Accents */
    --greenish-yellow: #D0FF001F;
    --active-light: #D1FAE5CC;
    --green-active: #111111;
    --tealish-blue: #ECEEF2CC;
    --carbon-grey: #111111;
    --bluish-purple: #E2CEFFCC;
    --barley-white: #D0FF001F;
    --cyan-blue: #CFD6DFCC;
    --lemon-chiffon: #FFF9BBCC;
    --brownish-orange: #111111;
    --eggshell: #DFE587CC;
    --venom-green: #111111;
    --misty-rose: #FFCBD3CC;
    --solid-pink: #111111;
    --papaya-whip: #FFEC9ECC;
    --russet: #111111;
    --pink-lace: #F0E6FFCC;
    --magenta: #111111;
    --ice-blue: #E6F3FFCC;
    --royal-blue: #111111;
    --deep-teal: #A5A5A5;
    --mint-green: #E8FFE3CC;
    --mint-light: #CAFFBE;
    --rose-light: #FFEBEB;
    --light-green: #DAF0B9CC;
    --dark-green: #111111;
    --light-organge: #F18756CC;
    --dark-organge: #111111;
    --medium-light-green: #BFDFCFCC;
    --medium-dark-green: #111111;
    --light-org: #FFDFA7CC;
    --dark-org: #111111;
    /* Status */
    --crimson-red: #F87171;
    --soft-lime: #E2ECB8;
    --lime-yellow: #B5C762;
    --light-lime: #E2ECB8;
    --amber-yellow: #FACC15;
    /* Utility */
    --down-bg: #FECACACC;
    --red-text: #111111;
    /* RGB Values */
    --secondary-rgb: 255, 255, 255;
    --white-rgb: 255, 255, 255;
    --black-rgb: 34, 34, 34;
}

/* ==========================================================================
   SCSS VARIABLE BRIDGE (ORDER MATCHES ABOVE)
   ========================================================================== */
/* Core */
/* Blacks */
/* Grays */
/* Accents */
/* Status */
/* Utility */
/* RGB Values */
/*============  Border Radius Property Mixin Here    =============*/
/*============  Flex Property Mixin Here    =============*/
/*============  Transition Property Mixin Here    =============*/
/*============  Transform Property Mixin Here    =============*/
/*============  Before/After Property Mixin Here    =============*/
/*============  Border/Outline/Shadow/Text-Decoration Property Mixin Here    =============*/
/*============  Fix Widht/Height Property Mixin Here    =============*/
/*============  Text Ellipsis Property Mixin Here    =============*/
/*============  Input Placeholder Color Mixin Here    =============*/
/*============  scroll-bar Mixin Here    =============*/
/*============  Column Count Mixin Here    =============*/
/*============  Sidebar Mixin code here    =============*/
@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    padding: 0 !important;
    margin: 0 !important;
    font-size: 16px;
    line-height: 18px;
    color: var(--secondary);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    text-align: left;
    background-color: var(--soft-gray);
}

    body.dark img {
        filter: brightness(0) invert(1);
    }

a {
    text-decoration: none;
    outline: none;
    box-shadow: none;
    list-style: none;
    text-decoration: none;
}

    a:focus, a:hover {
        outline: none;
        box-shadow: none;
    }

button,
.btn {
    cursor: pointer;
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

    button:focus, button:hover,
    .btn:focus,
    .btn:hover {
        outline: none;
        box-shadow: none;
    }

input,
.form-control {
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

    input:focus, input:hover,
    .form-control:focus,
    .form-control:hover {
        outline: none;
        box-shadow: none;
    }

ul,
ol {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0;
    padding: 0;
}

img {
    width: auto;
    max-width: 100%;
    min-width: auto;
    height: auto;
    max-width: 100%;
    min-height: auto;
}

picture {
    display: inline-block;
    line-height: 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding-bottom: 20px;
}

@media only screen and (max-width: 991px) {
    .section-head {
        padding-bottom: 16px;
    }
}

@media only screen and (max-width: 480px) {
    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

.section-head .common-btn {
    min-width: 80px;
}

.section-head .head-left {
    flex: 1;
    font-size: 14px;
    line-height: 16px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    color: rgba(var(--secondary-rgb), 0.6);
}

    .section-head .head-left .section-title-lg,
    .section-head .head-left .section-title-md {
        padding-bottom: 8px;
    }

@media only screen and (max-width: 767px) {
    .section-head .head-left {
        flex: auto;
        width: 100%;
    }
}

.section-head .head-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.section-title-lg {
    font-size: 24px;
    line-height: 120%;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    color: var(--secondary);
}

@media only screen and (max-width: 991px) {
    .section-title-lg {
        font-size: 22px;
    }
}

@media only screen and (max-width: 480px) {
    .section-title-lg {
        font-size: 20px;
    }
}

.section-title-md {
    font-size: 20px;
    line-height: 120%;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    color: var(--secondary);
}

@media only screen and (max-width: 991px) {
    .section-title-md {
        font-size: 18px;
    }
}

.section-title-xs {
    font-size: 16px;
    line-height: 18px;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    color: var(--secondary);
    padding-bottom: 14px;
}

.view-detail-box {
    padding: 16px;
    background-color: var(--white);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    margin-bottom: 20px;
}

    .view-detail-box:last-child {
        margin-bottom: 0;
    }

.view-single .view-lable {
    display: block;
    font-size: 14px;
    line-height: 112%;
    font-weight: 400;
    color: rgba(var(--secondary-rgb), 0.6);
    padding-bottom: 8px;
}

.view-single .view-containet {
    display: block;
    font-size: 16px;
    line-height: 110%;
    font-weight: 400;
    color: var(--secondary);
    margin-bottom: 8px;
}

@media only screen and (max-width: 1279px) {
    .view-single .view-containet {
        font-size: 14px;
    }
}

.view-single .view-containet:last-child {
    margin-bottom: 0;
}

.view-single .view-containet strong {
    font-weight: 500;
}

.common-white-box {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 20px;
}

    .common-white-box:last-child {
        margin-bottom: 0;
    }

    .common-white-box .box-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        padding: 16px;
        border-bottom: 1px solid rgba(var(--secondary-rgb), 0.1);
    }

@media only screen and (max-width: 767px) {
    .common-white-box .box-head {
        flex-wrap: wrap;
    }
}

.common-white-box .box-head .head-left {
    font-size: 14px;
    line-height: 16px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    color: rgba(var(--secondary-rgb), 0.6);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.common-white-box .box-head.border-bottom-0 {
    border-bottom: none;
}

.common-white-box .box-head .status-btn {
    padding: 6px 14px;
}

.common-white-box .box-body {
    padding: 16px;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

@media only screen and (max-width: 1279px) {
    .grid {
        gap: 20px;
    }
}

@media only screen and (max-width: 991px) {
    .grid {
        gap: 16px;
    }
}

.grid .grid-full {
    width: 100%;
}

.grid-4 > div {
    width: calc(25% - 18px);
}

@media only screen and (max-width: 1279px) {
    .grid-4 > div {
        width: calc(33.33% - 14px);
    }
}

@media only screen and (max-width: 1199px) {
    .grid-4 > div {
        width: calc(50% - 10px);
    }
}

@media only screen and (max-width: 767px) {
    .grid-4 > div {
        width: calc(100% - 0px);
    }
}

.grid-3 > div {
    width: calc(33.33% - 16px);
}

@media only screen and (max-width: 1279px) {
    .grid-3 > div {
        width: calc(50% - 10px);
    }
}

@media only screen and (max-width: 991px) {
    .grid-3 > div {
        width: calc(50% - 8px);
    }
}

@media only screen and (max-width: 767px) {
    .grid-3 > div {
        width: calc(100% - 0px);
    }
}

.grid-3 > div.width2 {
    width: calc(50% - 12px);
}

@media only screen and (max-width: 1279px) {
    .grid-3 > div.width2 {
        width: calc(50% - 10px);
    }
}

@media only screen and (max-width: 991px) {
    .grid-3 > div.width2 {
        width: calc(50% - 8px);
    }
}

@media only screen and (max-width: 767px) {
    .grid-3 > div.width2 {
        width: calc(100% - 0px);
    }
}

.grid-2 > div {
    width: calc(50% - 12px);
}

@media only screen and (max-width: 1279px) {
    .grid-2 > div {
        width: calc(50% - 10px);
    }
}

@media only screen and (max-width: 991px) {
    .grid-2 > div {
        width: calc(50% - 8px);
    }
}

@media only screen and (max-width: 767px) {
    .grid-2 > div {
        width: calc(100% - 0px);
    }
}

.grid-1 > div {
    width: 100%;
}

.clear-all-btn {
    font-size: 14px;
    line-height: 100%;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    color: rgba(var(--secondary-rgb), 0.6);
    padding: 10px 12px;
    border: 1px solid rgba(var(--secondary-rgb), 0.1);
    background-color: rgba(var(--secondary-rgb), 0.02);
}

.steps-list-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

@media only screen and (max-width: 1199px) {
    .steps-list-wrap {
        gap: 10px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .steps-list-wrap {
        flex-wrap: wrap;
    }
}

.steps-list-wrap .steps-value {
    min-width: 186px;
    max-width: 186px;
    font-size: 14px;
    line-height: 120%;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

@media only screen and (max-width: 1199px) {
    .steps-list-wrap .steps-value {
        min-width: 150px;
        max-width: 150px;
        gap: 8px;
    }
}

@media only screen and (max-width: 767px) {
    .steps-list-wrap .steps-value {
        min-width: 100%;
        max-width: 100%;
        gap: 8px;
    }
}

.steps-list-wrap .steps-value .steps-number {
    background-color: var(--white);
    font-size: 14px;
    line-height: 100%;
    color: var(--secondary);
    font-weight: 600;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border: 1.5px solid rgba(var(--secondary-rgb), 0.1);
    height: 40px;
    min-width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.steps-list-wrap .steps-value.current-step .steps-number {
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    background-color: var(--secondary);
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.steps-list-wrap .steps-value.completed-step .steps-number {
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    background-color: var(--secondary);
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

    .steps-list-wrap .steps-value.completed-step .steps-number img {
        height: 12px;
        width: 12px;
    }

.steps-list-wrap .steps-line {
    flex: 1;
    width: 100%;
    height: 1px;
    background-color: rgba(var(--secondary-rgb), 0.1);
    min-width: 50px;
}

@media only screen and (max-width: 767px) {
    .steps-list-wrap .steps-line {
        display: none;
    }
}

.next-prious-btn {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 24px;
}

.checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 14px 24px;
    flex-wrap: wrap;
}

    .checkbox-wrap .checkbox-item {
        width: calc(50% - 12px);
    }

@media only screen and (max-width: 575px) {
    .checkbox-wrap .checkbox-item {
        width: 100%;
    }
}

.box-head .edit-btn {
    height: 36px;
    width: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(var(--secondary-rgb), 0.02);
    border: 1px solid rgba(var(--secondary-rgb), 0.1);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    box-sizing: border-box;
    contain: layout paint;
    max-height: 100%;
    overflow: hidden;
}

    .video-wrapper video {
        width: 100%;
        height: 100%;
        display: block;
        -o-object-fit: cover;
        object-fit: cover;
        border-radius: 10px;
    }

        .video-wrapper video::-webkit-media-controls {
            display: none !important;
        }

.custom-video-controls {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 20px;
    pointer-events: none;
}

    .custom-video-controls button {
        pointer-events: auto;
        color: #fff;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        cursor: pointer;
        border: 1px solid rgba(255, 255, 255, 0.1019607843);
        background: rgba(255, 255, 255, 0.2);
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.video-play-btn img {
    width: 24px;
    height: 24px;
}

.video-play-btn .pause-icon {
    display: none;
}

.video-play-btn.playing .play-icon {
    display: none;
}

.video-play-btn.playing .pause-icon {
    display: block;
}

.newvideoclsadding .modal-content {
    padding: 10px !important;
}

    .newvideoclsadding .modal-content video {
        border-radius: 10px;
        max-height: 100vh !important;
    }

    .newvideoclsadding .modal-content .close-modal {
        right: 22px !important;
        top: 22px !important;
    }

@media only screen and (max-width: 1024px) {
    .detail-media-wrap-cls {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media only screen and (max-width: 767px) {
    .detail-media-wrap-cls {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

.button-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.common-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    white-space: nowrap;
}

    .common-btn.arrow-btn {
        padding: 5px;
        height: 36px;
        width: 36px;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.primary-btn {
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
    color: var(--primary);
}

    .primary-btn:hover {
        background-color: transparent;
        color: var(--secondary);
    }

.filter-btn {
    background-color: rgba(var(--secondary-rgb), 0.02);
    color: rgba(var(--secondary-rgb), 0.6);
    border: 1px solid rgba(var(--secondary-rgb), 0.1);
}

    .filter-btn picture {
        pointer-events: none;
    }

.icon-btn {
    text-decoration: none;
    outline: none;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
    background-color: rgba(var(--secondary-rgb), 0.02);
    border: 1px solid rgba(var(--secondary-rgb), 0.1);
}

    .icon-btn:focus, .icon-btn:hover {
        outline: none;
        box-shadow: none;
    }

.secondry-btn {
    background-color: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

    .secondry-btn:hover {
        background-color: var(--secondary);
        color: var(--primary);
    }

.status-btn {
    text-decoration: none;
    outline: none;
    box-shadow: none;
    min-width: 104px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    padding: 6px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
}

    .status-btn:focus, .status-btn:hover {
        outline: none;
        box-shadow: none;
    }

.active-btn {
    background-color: var(--active-light);
    color: var(--green-active);
    border: 1px solid var(--active-light);
}

    .active-btn.active-progress {
        min-width: auto;
        padding: 4px 10px;
    }

.inactive-btn {
    background-color: var(--tealish-blue);
    color: var(--carbon-grey);
    border: 1px solid var(--tealish-blue);
}

    /*.inactive-btn:hover {
        background-color: #585858;
        color: #FFFFFF;
        border-color: #585858;
    }*/


.upcoming-btn {
    background-color: var(--bluish-purple);
    color: var(--carbon-grey);
    border: 1px solid var(--bluish-purple);
}

.pending-btn {
    background-color: var(--cyan-blue);
    color: var(--carbon-grey);
    border: 1px solid var(--cyan-blue);
}

.transit-btn {
    background-color: var(--lemon-chiffon);
    color: var(--brownish-orange);
    border: 1px solid var(--lemon-chiffon);
}

.completed-btn {
    background-color: var(--eggshell);
    color: var(--venom-green);
    border: 1px solid var(--eggshell);
}

.canceled-btn {
    background-color: var(--misty-rose);
    color: var(--solid-pink);
    border: 1px solid var(--misty-rose);
}

.maintenance-btn {
    background-color: var(--papaya-whip);
    color: var(--russet);
    border: 1px solid var(--papaya-whip);
}

.scheduled-btn {
    background-color: var(--pink-lace);
    color: var(--magenta);
    border: 1px solid var(--pink-lace);
}

.failed-btn {
    background-color: var(--down-bg);
    color: var(--red-text);
    border: 1px solid var(--down-bg);
}

.awaiting-btn {
    background-color: var(--ice-blue);
    color: var(--royal-blue);
    border: 1px solid var(--ice-blue);
}

.status-progress {
    padding: 7px 11px;
    background-color: rgba(var(--secondary-rgb), 0.1);
    color: var(--deep-teal);
    border: 1px solid rgba(var(--secondary-rgb), 0.1);
    border-radius: 10px;
}

.completed-btn {
    background-color: var(--eggshell);
    color: var(--venom-green);
    border: 1px solid var(--eggshell);
}

.active-status {
    background-color: var(--mint-green);
    color: var(--deep-teal);
    border: 1px solid var(--mint-green);
}

.conflict-status {
    background-color: var(--light-organge);
    color: var(--dark-organge);
    border: 1px solid var(--light-organge);
}

.fixed-btn {
    background-color: var(--light-green);
    color: var(--dark-green);
    border: 1px solid var(--light-green);
}

.maintenance-btn {
    background-color: #FEF3C7;
    color: #92400E;
    border: 1px solid #FEF3C7;
}

  /*  .maintenance-btn:hover {
        background-color: #585858;
        color: #FFFFFF;
        border-color: #585858;
    }*/

.scrapped-btn {
    background-color: #c43ddb55;
    color: #37257c;
    border: 1px solid #D1FAE5;
}

    /*.scrapped-btn:hover {
        background-color: #585858;
        color: #FFFFFF;
        border-color: #585858;
    }*/

.medium-btn {
    background-color: var(--medium-light-green);
    color: var(--medium-dark-green);
    border: 1px solid var(--medium-light-green);
}

.awaiting-admin-btn {
    background-color: var(--light-org);
    color: var(--dark-org);
    border: 1px solid var(--light-org);
}

.custom-breadcrumb {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}

@media only screen and (max-width: 991px) {
    .custom-breadcrumb {
        padding-bottom: 16px;
    }
}

.custom-breadcrumb .bcrumb-item {
    font-size: 14px;
    line-height: 110%;
    font-weight: 400;
    color: rgba(var(--secondary-rgb), 0.6);
    padding: 0;
}

    .custom-breadcrumb .bcrumb-item a {
        color: rgba(var(--secondary-rgb), 0.6);
    }

    .custom-breadcrumb .bcrumb-item::after {
        content: "/";
        display: inline-block;
        padding: 0 8px;
    }

    .custom-breadcrumb .bcrumb-item.active {
        color: var(--secondary);
    }

    .custom-breadcrumb .bcrumb-item:last-child::after {
        content: inherit;
    }

@media screen and (max-width: 767px) {
    .custom-breadcrumb {
        display: none;
    }
}

.common-modal .modal-dialog {
    width: 100%;
    margin: auto;
    padding: 15px;
}

    .common-modal .modal-dialog.modal-center {
        display: flex;
        align-items: center;
        min-height: 100%;
    }

.common-modal .modal-content {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    background-color: var(--soft-gray);
    border: none;
    overflow: hidden;
}

    .common-modal .modal-content .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 24px;
        border-bottom: 1px solid rgba(var(--secondary-rgb), 0.1);
        border-radius: 0px;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        -ms-border-radius: 0px;
        -o-border-radius: 0px;
    }

        .common-modal .modal-content .modal-header .modal-title {
            font-size: 24px;
            line-height: 120%;
            color: var(--secondary);
            font-family: "Manrope", sans-serif;
            font-weight: 600;
        }

    .common-modal .modal-content .close-modal {
        position: relative;
        width: 30px;
        min-width: 30px;
        height: 30px;
        min-height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9;
        background: transparent;
        border: none;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }

        .common-modal .modal-content .close-modal::after, .common-modal .modal-content .close-modal::before {
            content: " ";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            background: var(--secondary);
        }

        .common-modal .modal-content .close-modal::after {
            width: 60%;
            height: 2px;
        }

        .common-modal .modal-content .close-modal::before {
            height: 60%;
            width: 2px;
        }

    .common-modal .modal-content .modal-body {
        padding: 24px;
        font-size: 16px;
        line-height: 22px;
        font-weight: 400;
        color: var(--black);
    }

.common-modal.delete-modal .modal-header {
    flex-direction: column;
}

    .common-modal.delete-modal .modal-header .delete-model-title {
        width: 100%;
        padding-bottom: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .common-modal.delete-modal .modal-header p {
        width: 100%;
        font-size: 14px;
        line-height: 110%;
        font-weight: 400;
        color: rgba(var(--secondary-rgb), 0.6);
    }

.common-modal.delete-modal .modal-body {
    text-align: center;
    padding-top: 10px;
}

.common-modal.delete-modal .deletemodal-action {
    padding-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
}

    .common-modal.delete-modal .deletemodal-action .common-btn {
        width: 100%;
    }

.common-modal.delete-modal .bulkmodal-action {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
    padding-top: 14px;
}

@media only screen and (max-width: 767px) {
    .common-modal.delete-modal .bulkmodal-action {
        justify-content: center;
    }
}

.common-modal.delete-modal .bulkmodal-action .common-btn {
    min-width: 156px;
}

.common-modal.confirm-modal .modal-dialog {
    max-width: 508px;
    padding: 0;
}

.common-modal.confirm-modal .modal-header {
    align-items: flex-start;
}

    .common-modal.confirm-modal .modal-header .confirm-model-title {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

        .common-modal.confirm-modal .modal-header .confirm-model-title .modal-title {
            margin-bottom: 10px;
        }

    .common-modal.confirm-modal .modal-header p {
        width: 100%;
        font-size: 14px;
        line-height: 110%;
        font-weight: 400;
        color: rgba(var(--secondary-rgb), 0.6);
    }

.common-modal.confirm-modal .modal-body {
    padding: 24px;
}

    .common-modal.confirm-modal .modal-body .common-form .form-group {
        margin-bottom: 10px;
    }

    .common-modal.confirm-modal .modal-body .common-form .reason-field {
        min-height: 100px;
    }

.common-modal.confirm-modal .confirm-modal-action {
    padding-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    width: 174px;
    margin-left: auto;
}

    .common-modal.confirm-modal .confirm-modal-action .common-btn {
        width: 100%;
    }

.common-modal.test-media-modal .modal-dialog {
    max-width: 730px;
    padding: 0;
}

.common-modal.video-modal .modal-dialog {
    max-width: 990px;
    padding: 0;
}

    .common-modal.video-modal .modal-dialog .modal-content {
        padding: 0 12px;
        background-color: transparent;
    }

        .common-modal.video-modal .modal-dialog .modal-content .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 10;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 10px;
            border-radius: 8px;
            -webkit-border-radius: 8px;
            -moz-border-radius: 8px;
            -ms-border-radius: 8px;
            -o-border-radius: 8px;
            transform: rotate(0);
        }

            .common-modal.video-modal .modal-dialog .modal-content .close-modal::before, .common-modal.video-modal .modal-dialog .modal-content .close-modal::after {
                display: none;
            }

.common-modal.conflict-detected-modal .modal-dialog {
    max-width: 730px;
    padding: 0;
}

.device-list-modal .search-device {
    width: 100%;
    position: relative;
}

    .device-list-modal .search-device .search-control {
        width: 100%;
        text-align: left;
        font-size: 14px;
        line-height: 16px;
        font-family: "Helvetica Neue", Arial, sans-serif;
        font-weight: 400;
        color: var(--secondary);
        background-color: rgba(var(--secondary-rgb), 0.02);
        border: 1px solid rgba(var(--secondary-rgb), 0.1);
        padding: 12px 14px;
        padding-right: 40px;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
    }

        .device-list-modal .search-device .search-control::-moz-placeholder {
            color: rgba(var(--secondary-rgb), 0.6);
        }

        .device-list-modal .search-device .search-control::placeholder {
            color: rgba(var(--secondary-rgb), 0.6);
        }

        .device-list-modal .search-device .search-control:focus {
            border-color: var(--secondary);
        }

    .device-list-modal .search-device .search-btn {
        pointer-events: none;
        position: absolute;
        top: 3px;
        bottom: 3px;
        right: 3px;
        margin: auto 0;
        width: 36px;
        background-color: transparent;
        display: flex;
        justify-content: center;
        align-items: center;
        border: none;
        outline: none;
        box-shadow: none;
        text-decoration: none;
    }

        .device-list-modal .search-device .search-btn:focus, .device-list-modal .search-device .search-btn:hover {
            border: none;
            outline: none;
            box-shadow: none;
        }

.device-list-modal .table-wrapper-main {
    padding: 14px 0;
}

.device-list-modal .device-list-action {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

@media only screen and (max-width: 767px) {
    .device-list-modal .device-list-action {
        justify-content: center;
    }
}

.device-list-modal .device-list-action .common-btn {
    min-width: 156px;
}

.admin-wrrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ========     SideBar Css Start Here...   ===============*/
.sidebar-main {
    max-width: 278px;
    width: 100%;
    min-height: 100vh;
    border-right: 1px solid rgba(var(--secondary-rgb), 0.1);
    background-color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 888;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

@media only screen and (max-width: 991px) {
    .sidebar-main {
        left: -278px;
    }
}

.sidebar-main .sidebar-logo {
    height: 84px;
    padding: 20px 14px;
    text-align: center;
    position: relative;
}

    .sidebar-main .sidebar-logo::before {
        content: " ";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        max-width: 184px;
        width: 100%;
        margin: 0 auto;
        background-color: rgba(var(--secondary-rgb), 0.1);
        height: 2px;
    }

    .sidebar-main .sidebar-logo a {
        display: inline-block;
    }

.sidebar-main .sidebar-menus {
    padding: 20px 14px;
    height: calc(100vh - 84px);
    overflow-x: hidden;
    overflow-y: auto;
}

    .sidebar-main .sidebar-menus::-webkit-scrollbar {
        width: 6px;
    }

        .sidebar-main .sidebar-menus::-webkit-scrollbar:horizontal {
            height: 6px;
        }

    .sidebar-main .sidebar-menus::-webkit-scrollbar-thumb {
        background-color: rgba(var(--secondary-rgb), 0.5);
        border-radius: 4px;
    }

    .sidebar-main .sidebar-menus::-webkit-scrollbar-track {
        background-color: transparent;
    }

    .sidebar-main .sidebar-menus .nav-items {
        padding-bottom: 12px;
    }

        .sidebar-main .sidebar-menus .nav-items:last-child {
            padding-bottom: 0;
        }

        .sidebar-main .sidebar-menus .nav-items .nav-item-link {
            position: relative;
            z-index: 2;
            width: 100%;
            text-align: left;
            font-size: 14px;
            line-height: 16px;
            font-weight: 400;
            color: var(--secondary);
            padding: 15px 10px;
            border-radius: 8px;
            -webkit-border-radius: 8px;
            -moz-border-radius: 8px;
            -ms-border-radius: 8px;
            -o-border-radius: 8px;
            background-color: rgba(var(--secondary-rgb), 0.02);
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            white-space: nowrap;
            margin: 0;
            vertical-align: middle;
        }

            .sidebar-main .sidebar-menus .nav-items .nav-item-link span {
                white-space: nowrap;
                transition: all 0.3s ease;
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -ms-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
                margin-bottom: -4px;
            }

            .sidebar-main .sidebar-menus .nav-items .nav-item-link picture {
                width: 16px;
                min-width: 16px;
                height: 16px;
                min-height: 16px;
                display: flex;
                justify-content: center;
                align-items: center;
            }

                .sidebar-main .sidebar-menus .nav-items .nav-item-link picture img {
                    width: 16px;
                }

            .sidebar-main .sidebar-menus .nav-items .nav-item-link:hover {
                background-color: var(--primary);
            }

            .sidebar-main .sidebar-menus .nav-items .nav-item-link.active {
                background-color: var(--primary);
            }

/* ========     Deshboard Header Css Start Here...   ===============*/
.deshboard-header {
    background-color: var(--white);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    z-index: 777;
}

@media only screen and (min-width: 992px) {
    .deshboard-header {
        margin-left: 278px;
        width: calc(100% - 278px);
    }
}

@media only screen and (max-width: 1199px) {
    .deshboard-header {
        gap: 12px;
    }
}

@media only screen and (max-width: 991px) {
    .deshboard-header {
        padding: 12px 16px;
        padding-left: 48px;
    }
}

@media only screen and (max-width: 767px) {
    .deshboard-header {
        padding-left: 42px;
    }
}

.deshboard-header > div {
    display: flex;
    align-items: center;
    gap: 16px;
}

@media only screen and (max-width: 1199px) {
    .deshboard-header > div {
        gap: 12px;
    }
}

@media only screen and (max-width: 1024px) {
    .deshboard-header > div {
        gap: 10px;
    }
}

.deshboard-header .md-search-btn {
    text-decoration: none;
    outline: none;
    box-shadow: none;
    position: relative;
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(var(--secondary-rgb), 0.1);
    background: rgba(var(--secondary-rgb), 0.02);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

    .deshboard-header .md-search-btn:focus, .deshboard-header .md-search-btn:hover {
        outline: none;
        box-shadow: none;
    }

@media only screen and (min-width: 576px) {
    .deshboard-header .md-search-btn {
        display: none;
    }
}

.deshboard-header .head-left {
    justify-content: flex-start;
}

    .deshboard-header .head-left .search-box-buton {
        width: 400px;
        max-width: 100%;
        position: relative;
    }

@media only screen and (max-width: 1199px) {
    .deshboard-header .head-left .search-box-buton {
        width: 320px;
    }
}

@media only screen and (max-width: 1024px) {
    .deshboard-header .head-left .search-box-buton {
        width: 290px;
    }
}

@media only screen and (max-width: 767px) {
    .deshboard-header .head-left .search-box-buton {
        width: 242px;
    }
}

@media only screen and (max-width: 575px) {
    .deshboard-header .head-left .search-box-buton {
        display: none;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: calc(100% - 12px);
        background-color: var(--white);
        z-index: 9;
        padding-left: 42px;
    }
}

.deshboard-header .head-left .search-box-buton .search-control {
    text-align: left;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    width: 100%;
    padding: 10px 16px;
    background: rgba(var(--secondary-rgb), 0.02);
    border: 1px solid rgba(var(--secondary-rgb), 0.1);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    padding-right: 36px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

    .deshboard-header .head-left .search-box-buton .search-control::-moz-placeholder {
        color: rgba(var(--secondary-rgb), 0.6);
    }

    .deshboard-header .head-left .search-box-buton .search-control::placeholder {
        color: rgba(var(--secondary-rgb), 0.6);
    }

@media only screen and (max-width: 1199px) {
    .deshboard-header .head-left .search-box-buton .search-control {
        padding: 10px;
        padding-right: 36px;
    }
}

.deshboard-header .head-left .search-box-buton .search-control:focus {
    border-color: var(--secondary);
}

.deshboard-header .head-left .search-box-buton .search-btn {
    position: absolute;
    top: 3px;
    bottom: 4px;
    right: 3px;
    margin: auto 0;
    width: 32px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

    .deshboard-header .head-left .search-box-buton .search-btn:focus, .deshboard-header .head-left .search-box-buton .search-btn:hover {
        border: none;
        outline: none;
        box-shadow: none;
    }

@media only screen and (max-width: 575px) {
    .deshboard-header .head-left .search-box-buton .search-btn .search-icon {
        display: none;
    }
}

@media only screen and (min-width: 576px) {
    .deshboard-header .head-left .search-box-buton .search-btn .close-icon {
        display: none;
    }
}

.deshboard-header .head-left .search-box-buton .search-btn .close-icon img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(83%) saturate(4575%) hue-rotate(138deg) brightness(129%) contrast(87%);
}

.deshboard-header .head-left .global-inputs {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .deshboard-header .head-left .global-inputs .custom-input-btn {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        position: relative;
        cursor: pointer;
        font-size: 14px;
        line-height: 16px;
        font-family: "Manrope", sans-serif;
        font-weight: 500;
        color: rgba(var(--secondary-rgb), 0.6);
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
    }

        .deshboard-header .head-left .global-inputs .custom-input-btn .checkmark {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            width: 16px;
            min-width: 16px;
            height: 16px;
            min-height: 16px;
            background-color: var(--white);
            border: 1px solid var(--secondary);
            transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
        }

            .deshboard-header .head-left .global-inputs .custom-input-btn .checkmark::after {
                content: " ";
                position: absolute;
                opacity: 0;
                transition: all 0.3s ease;
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -ms-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
            }

        .deshboard-header .head-left .global-inputs .custom-input-btn input {
            cursor: pointer;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            opacity: 0;
        }

            .deshboard-header .head-left .global-inputs .custom-input-btn input[type=checkbox]:checked ~ .checkmark {
                background: var(--secondary);
                border-color: var(--secondary);
            }

                .deshboard-header .head-left .global-inputs .custom-input-btn input[type=checkbox]:checked ~ .checkmark::after {
                    opacity: 1;
                }

            .deshboard-header .head-left .global-inputs .custom-input-btn input[type=checkbox]:checked ~ .label-text {
                color: var(--danger);
            }

            .deshboard-header .head-left .global-inputs .custom-input-btn input[type=checkbox] + .checkmark {
                border-radius: 3px;
                -webkit-border-radius: 3px;
                -moz-border-radius: 3px;
                -ms-border-radius: 3px;
                -o-border-radius: 3px;
            }

                .deshboard-header .head-left .global-inputs .custom-input-btn input[type=checkbox] + .checkmark::after {
                    top: 0;
                    bottom: 0;
                    left: 0;
                    right: 0;
                    background: url("../../images/check-right-icon.svg") no-repeat center center;
                    filter: brightness(0) saturate(100%) invert(89%) sepia(91%) saturate(3327%) hue-rotate(13deg) brightness(101%) contrast(104%);
                    background-size: calc(100% - 4px);
                }

    .deshboard-header .head-left .global-inputs .info-wrap {
        position: relative;
    }

        .deshboard-header .head-left .global-inputs .info-wrap .info-icon {
            cursor: pointer;
        }

        .deshboard-header .head-left .global-inputs .info-wrap .info-content {
            white-space: nowrap;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            -webkit-transform: translateX(-50%);
            -moz-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            -o-transform: translateX(-50%);
            top: 25px;
            padding: 8px 6px;
            border-radius: 8px;
            -webkit-border-radius: 8px;
            -moz-border-radius: 8px;
            -ms-border-radius: 8px;
            -o-border-radius: 8px;
            background: linear-gradient(0deg, var(--white), var(--white)), linear-gradient(0deg, var(--soft-gray), var(--soft-gray));
            border: 1px solid rgba(var(--secondary-rgb), 0.1);
            font-size: 12px;
            line-height: 12px;
            font-weight: 400;
            color: rgba(var(--secondary-rgb), 0.6);
            display: none;
        }

            .deshboard-header .head-left .global-inputs .info-wrap .info-content::after {
                content: " ";
                position: absolute;
                top: -6px;
                left: 50%;
                transform: translateX(-50%) rotate(-45deg);
                width: 12px;
                min-width: 12px;
                height: 12px;
                min-height: 12px;
                border-top: 1px solid rgba(var(--secondary-rgb), 0.1);
                border-right: 1px solid rgba(var(--secondary-rgb), 0.1);
                background-color: var(--white);
                border-radius: 0 4px 0 0;
            }

        .deshboard-header .head-left .global-inputs .info-wrap:hover .info-content {
            display: block;
        }

.deshboard-header .head-right {
    justify-content: flex-end;
}

    .deshboard-header .head-right .notification-dropdown .notification-toggle {
        text-decoration: none;
        outline: none;
        box-shadow: none;
        position: relative;
        width: 36px;
        min-width: 36px;
        height: 36px;
        min-height: 36px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid rgba(var(--secondary-rgb), 0.1);
        background: rgba(var(--secondary-rgb), 0.02);
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }

        .deshboard-header .head-right .notification-dropdown .notification-toggle:focus, .deshboard-header .head-right .notification-dropdown .notification-toggle:hover {
            outline: none;
            box-shadow: none;
        }

        .deshboard-header .head-right .notification-dropdown .notification-toggle picture {
            position: relative;
        }

        .deshboard-header .head-right .notification-dropdown .notification-toggle .noti-badge {
            position: absolute;
            top: 0px;
            right: 0px;
            background-color: var(--primary);
            color: var(--white);
            font-size: 10px;
            line-height: 1.2;
            width: 7px;
            min-width: 7px;
            height: 7px;
            min-height: 7px;
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
        }

    .deshboard-header .head-right .user-dropdown .user-toggle {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 5px 6px;
        border: 1px solid rgba(var(--secondary-rgb), 0.1);
        background-color: rgba(var(--secondary-rgb), 0.02);
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }

        .deshboard-header .head-right .user-dropdown .user-toggle .user-img {
            display: inline-block;
            width: 24px;
            min-width: 24px;
            height: 24px;
            min-height: 24px;
            border-radius: 4px;
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            -ms-border-radius: 4px;
            -o-border-radius: 4px;
            overflow: hidden;
        }

            .deshboard-header .head-right .user-dropdown .user-toggle .user-img img {
                width: 100%;
                height: 100%;
                -o-object-fit: cover;
                object-fit: cover;
            }

        .deshboard-header .head-right .user-dropdown .user-toggle .user-name {
            display: inline-block;
            font-size: 14px;
            line-height: 100%;
            font-family: "Manrope", sans-serif;
            font-weight: 500;
            color: rgba(var(--secondary-rgb), 0.6);
        }

@media only screen and (max-width: 767px) {
    .deshboard-header .head-right .user-dropdown .user-toggle .user-name {
        display: none;
    }
}

.deshboard-header .head-right .user-dropdown .user-toggle .dropdown-icon {
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .deshboard-header .head-right .user-dropdown .user-toggle .dropdown-icon img {
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        filter: brightness(0) saturate(100%) invert(0%) sepia(83%) saturate(4575%) hue-rotate(138deg) brightness(129%) contrast(87%);
    }

.deshboard-header .head-right .user-dropdown .user-toggle.show {
    border-color: rgba(var(--black-rgb), 0.9);
}

    .deshboard-header .head-right .user-dropdown .user-toggle.show .dropdown-icon img {
        transform: rotateX(180deg);
        -webkit-transform: rotateX(180deg);
        -moz-transform: rotateX(180deg);
        -ms-transform: rotateX(180deg);
        -o-transform: rotateX(180deg);
    }

.deshboard-header .head-right .user-dropdown .dropdown-menu {
    padding: 0;
    background-color: var(--white);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 1px solid rgba(var(--secondary-rgb), 0.1);
    min-width: 200px;
    box-shadow: 0px 2px 10px 0px rgba(var(--black-rgb), 0.149);
    overflow: hidden;
}

    .deshboard-header .head-right .user-dropdown .dropdown-menu li .dropdown-item {
        text-decoration: none;
        outline: none;
        box-shadow: none;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 15px;
        border-bottom: 1px solid rgba(var(--secondary-rgb), 0.1);
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        background-color: transparent;
        font-size: 14px;
        line-height: 100%;
        font-family: "Manrope", sans-serif;
        font-weight: 500;
        color: rgba(var(--secondary-rgb), 0.6);
    }

        .deshboard-header .head-right .user-dropdown .dropdown-menu li .dropdown-item:focus, .deshboard-header .head-right .user-dropdown .dropdown-menu li .dropdown-item:hover {
            outline: none;
            box-shadow: none;
        }

        .deshboard-header .head-right .user-dropdown .dropdown-menu li .dropdown-item:hover {
            background-color: var(--soft-gray);
        }

    .deshboard-header .head-right .user-dropdown .dropdown-menu li:last-child .dropdown-item {
        border-bottom: none;
    }

.deshboard-header.header-sticky {
    box-shadow: 0 4px 10px rgba(var(--black-rgb), 0.05);
}

.sidebar-toggle {
    text-decoration: none;
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    border: 1px solid rgba(var(--secondary-rgb), 0.2);
    border-left: none;
    position: absolute;
    top: 0;
    left: -2px;
    bottom: 0;
    margin: auto 0;
    border-radius: 0 10px 10px 0;
    -o-border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

@media only screen and (max-width: 767px) {
    .sidebar-toggle {
        width: 32px;
        min-width: 32px;
    }
}

.sidebar-toggle img {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    position: relative;
    left: -3px;
}

/* ========     Deshboard Footer Css Start Here...   ===============*/
.deshboard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: var(--white);
}

@media only screen and (min-width: 992px) {
    .deshboard-footer {
        margin-left: 278px;
        width: calc(100% - 278px);
    }
}

@media only screen and (max-width: 480px) {
    .deshboard-footer {
        flex-direction: column;
        gap: 8px;
        padding: 10px 16px;
    }
}

.deshboard-footer .copy-right {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: var(--secondary);
}

    .deshboard-footer .copy-right span {
        margin-bottom: -4px;
    }

.deshboard-footer .powered-by {
    font-size: 12px;
    line-height: 140%;
    font-weight: 400;
    color: rgba(var(--secondary-rgb), 0.6);
}

@media only screen and (min-width: 992px) {
    .sidebar-collapse .sidebar-main {
        max-width: 60px;
    }

        .sidebar-collapse .sidebar-main .sidebar-menus .nav-items > .nav-item-link span {
            animation-name: fadeOut;
            animation-duration: 0.3s;
            animation-fill-mode: both;
            visibility: hidden;
        }

        .sidebar-collapse .sidebar-main .sidebar-menus .nav-items ul {
            height: 0;
            overflow: hidden;
            transition: all 0.5s ease;
            opacity: 0;
            visibility: hidden;
        }

        .sidebar-collapse .sidebar-main .sidebar-menus .sidebar-dropdown button::after {
            animation-name: fadeOut;
            animation-duration: 0.3s;
            animation-fill-mode: both;
            visibility: hidden;
        }

        .sidebar-collapse .sidebar-main:hover {
            max-width: 278px;
        }

            .sidebar-collapse .sidebar-main:hover .sidebar-menus .nav-items > .nav-item-link span {
                animation-name: fadeInt;
                animation-duration: 0.5s;
                animation-fill-mode: both;
                visibility: visible;
            }

            .sidebar-collapse .sidebar-main:hover .sidebar-menus .nav-items ul {
                height: auto;
                overflow: hidden;
                transition: all 0.5s ease;
                opacity: 1;
                visibility: visible;
            }

            .sidebar-collapse .sidebar-main:hover .sidebar-menus .sidebar-dropdown button::after {
                animation-name: fadeInt;
                animation-duration: 0.5s;
                animation-fill-mode: both;
                visibility: visible;
            }

    .sidebar-collapse .deshboard-header {
        margin-left: 60px;
        width: calc(100% - 60px);
    }

        .sidebar-collapse .deshboard-header .sidebar-toggle img {
            transform: rotate(-90deg);
            -webkit-transform: rotate(-90deg);
            -moz-transform: rotate(-90deg);
            -ms-transform: rotate(-90deg);
            -o-transform: rotate(-90deg);
        }

    .sidebar-main .sidebar-toggle {
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    .sidebar-main .sidebar-toggle {
        top: 12px;
        left: calc(100% + 0px);
        margin: 0;
        border-left: 1px solid rgba(var(--secondary-rgb), 0.2);
        background-color: rgba(var(--secondary-rgb), 0.02);
    }

    .sidebar-collapse::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(var(--black-rgb), 0.2);
        z-index: 888;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
    }

    .sidebar-collapse .sidebar-main {
        left: 0;
    }

        .sidebar-collapse .sidebar-main .sidebar-toggle {
            background-color: var(--white);
        }
}

@media only screen and (max-width: 575px) {
    .search-open .deshboard-header .head-left .search-box-buton {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.common-form {
    width: 100%;
}

    .common-form .form-group {
        margin-bottom: 0px;
        position: relative;
    }

        .common-form .form-group .label-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
            padding-bottom: 9px;
        }

            .common-form .form-group .label-row .form-label {
                margin-bottom: 0;
            }

        .common-form .form-group .form-label {
            display: block;
            text-align: left;
            margin-bottom: 9px;
            font-size: 14px;
            line-height: 100%;
            color: var(--secondary);
            font-family: "Manrope", sans-serif;
            font-weight: 600;
        }

        .common-form .form-group .label-info {
            font-size: 14px;
            line-height: 100%;
            color: rgba(var(--secondary-rgb), 0.6);
            font-family: "Manrope", sans-serif;
            font-weight: 400;
            display: inline-block;
        }

@media only screen and (max-width: 767px) {
    .common-form .form-group .label-info {
        font-size: 12px;
    }
}

.common-form .form-group p.label-info {
    display: block;
}

.common-form .form-group .group-input {
    position: relative;
    width: 100%;
}

.common-form .form-group .req-mark {
    color: var(--danger);
    margin-left: 2px;
    font-weight: 400;
}

.common-form .form-group .form-control {
    text-align: left;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: var(--secondary);
    background-color: var(--white);
    border: 1px solid rgba(var(--secondary-rgb), 0.1);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    vertical-align: middle;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

    .common-form .form-group .form-control::-moz-placeholder {
        color: rgba(var(--secondary-rgb), 0.6);
    }

    .common-form .form-group .form-control::placeholder {
        color: rgba(var(--secondary-rgb), 0.6);
    }

    .common-form .form-group .form-control:focus {
        border-color: var(--secondary);
    }

    .common-form .form-group .form-control:disabled {
        background-color: rgba(var(--secondary-rgb), 0.1);
    }

@media only screen and (max-width: 480px) {
    .common-form .form-group .form-control {
        padding: 10px 10px;
    }
}

.common-form .form-group .error-message {
    display: block;
    text-align: left;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: var(--danger);
    margin-top: 4px;
}

@media only screen and (max-width: 767px) {
    .common-form .form-group .error-message {
        font-size: 12px;
        line-height: 16px;
    }
}

.common-form .form-group .input-icon-left {
    position: absolute;
    top: 1px;
    bottom: 1px;
    left: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    pointer-events: none;
    border-radius: 10px 0 0 10px;
    -o-border-radius: 10px 0 0 10px;
}

    .common-form .form-group .input-icon-left + .form-control {
        padding-left: 40px;
    }

.common-form .form-group .input-icon-right {
    position: absolute;
    top: 1px;
    bottom: 1px;
    right: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    pointer-events: none;
    border-radius: 10px 0 0 10px;
    -o-border-radius: 10px 0 0 10px;
}

    .common-form .form-group .input-icon-right + .form-control {
        padding-right: 40px;
    }

.common-form .form-group .input-action {
    position: absolute;
    top: 2px;
    bottom: 2px;
    right: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 38px;
    border: none;
    border-radius: 0px 10px 10px 0px;
    -o-border-radius: 0px 10px 10px 0px;
    background-color: transparent;
    cursor: pointer;
}

    .common-form .form-group .input-action + .form-control {
        padding-right: 50px;
    }

.dropdown.bootstrap-select {
    width: 100% !important;
}

    .dropdown.bootstrap-select .dropdown-toggle.btn-light {
        padding: 12px 16px;
        padding-right: 40px;
        position: relative;
        background-color: var(--white);
        border: 1px solid rgba(var(--secondary-rgb), 0.1);
        font-size: 14px;
        line-height: 16px;
        font-weight: 400;
        color: var(--secondary);
        font-family: "Helvetica Neue", Arial, sans-serif;
        text-decoration: none;
        outline: none;
        box-shadow: none;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
    }

        .dropdown.bootstrap-select .dropdown-toggle.btn-light:focus, .dropdown.bootstrap-select .dropdown-toggle.btn-light:hover {
            outline: none;
            box-shadow: none;
        }

@media only screen and (max-width: 480px) {
    .dropdown.bootstrap-select .dropdown-toggle.btn-light {
        padding: 10px 10px;
    }
}

.dropdown.bootstrap-select .dropdown-toggle.btn-light::after {
    content: " ";
    position: absolute;
    right: 15px;
    top: 0px;
    bottom: 0;
    background: url("../../images/dropdown-icon.svg") no-repeat center center;
    background-size: contain;
    width: 15px;
    height: 15px;
    padding: 0;
    margin: auto 0;
    border: none;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
}

.dropdown.bootstrap-select .dropdown-toggle.btn-light:focus {
    outline: none !important;
    box-shadow: none;
}

.dropdown.bootstrap-select .dropdown-toggle.btn-light.disabled {
    background-color: rgba(var(--secondary-rgb), 0.1);
    opacity: 1;
}

.dropdown.bootstrap-select .dropdown-toggle.btn-light .filter-option-inner-inner {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
}

    .dropdown.bootstrap-select .dropdown-toggle.btn-light .filter-option-inner-inner img {
        width: 20px;
        height: 15px;
        margin-right: 6px;
        position: relative;
        bottom: 2px;
    }

.dropdown.bootstrap-select .dropdown-toggle.btn-light.show {
    border-color: var(--secondary);
}

    .dropdown.bootstrap-select .dropdown-toggle.btn-light.show::after {
        transform: rotateX(180deg);
        -webkit-transform: rotateX(180deg);
        -moz-transform: rotateX(180deg);
        -ms-transform: rotateX(180deg);
        -o-transform: rotateX(180deg);
    }

.dropdown.bootstrap-select .dropdown-toggle.btn-light.bs-placeholder .filter-option-inner-inner {
    color: rgba(var(--secondary-rgb), 0.6);
}

.dropdown.bootstrap-select > .dropdown-menu {
    background: var(--white);
    border: 1px solid rgba(var(--secondary-rgb), 0.1);
    box-shadow: 0px 2px 10px 0px rgba(var(--black-rgb), 0.15);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    width: 100%;
    overflow: hidden;
}

    .dropdown.bootstrap-select > .dropdown-menu .bs-searchbox .form-control {
        text-decoration: none;
        outline: none;
        box-shadow: none;
        padding: 8px 16px;
        border: 1px solid rgba(var(--secondary-rgb), 0.1);
        font-size: 16px;
        line-height: 20px;
        font-weight: 400;
        color: var(--secondary);
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
    }

        .dropdown.bootstrap-select > .dropdown-menu .bs-searchbox .form-control:focus, .dropdown.bootstrap-select > .dropdown-menu .bs-searchbox .form-control:hover {
            outline: none;
            box-shadow: none;
        }

        .dropdown.bootstrap-select > .dropdown-menu .bs-searchbox .form-control:focus {
            border-color: var(--secondary);
        }

    .dropdown.bootstrap-select > .dropdown-menu > .inner::-webkit-scrollbar {
        width: 6px;
    }

        .dropdown.bootstrap-select > .dropdown-menu > .inner::-webkit-scrollbar:horizontal {
            height: 6px;
        }

    .dropdown.bootstrap-select > .dropdown-menu > .inner::-webkit-scrollbar-thumb {
        background-color: rgba(var(--secondary-rgb), 0.5);
        border-radius: 4px;
    }

    .dropdown.bootstrap-select > .dropdown-menu > .inner::-webkit-scrollbar-track {
        background-color: transparent;
    }

    .dropdown.bootstrap-select > .dropdown-menu ul {
        padding: 0 8px;
    }

        .dropdown.bootstrap-select > .dropdown-menu ul li.no-results {
            background-color: var(--soft-gray);
        }

        .dropdown.bootstrap-select > .dropdown-menu ul li a {
            position: relative;
            background: transparent;
            padding: 8px 10px;
            margin: 2px 0;
            font-size: 16px;
            line-height: 20px;
            font-weight: 400;
            color: var(--secondary);
            transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            border-radius: 10px;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            -ms-border-radius: 10px;
            -o-border-radius: 10px;
        }

            .dropdown.bootstrap-select > .dropdown-menu ul li a.selected, .dropdown.bootstrap-select > .dropdown-menu ul li a:hover {
                color: var(--white);
                background-color: rgba(var(--secondary-rgb), 0.7);
            }

            .dropdown.bootstrap-select > .dropdown-menu ul li a .text {
                margin: 0;
                display: -webkit-box;
                -webkit-line-clamp: 1;
                -webkit-box-orient: vertical;
                text-overflow: ellipsis;
                overflow: hidden;
                width: 100%;
            }

                .dropdown.bootstrap-select > .dropdown-menu ul li a .text img {
                    width: 20px;
                    height: 15px;
                    margin-right: 6px;
                }

            .dropdown.bootstrap-select > .dropdown-menu ul li a::before {
                content: " ";
                position: absolute;
                left: 8px;
                right: 8px;
                bottom: 0;
                height: 1px;
                background-color: rgba(var(--secondary-rgb), 0.1);
            }

        .dropdown.bootstrap-select > .dropdown-menu ul li:last-child a::before {
            display: none;
        }

.dropdown.bootstrap-select.checkbox-select > .dropdown-menu ul li a .check-mark {
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border: 1px solid rgba(var(--secondary-rgb), 0.4);
}

    .dropdown.bootstrap-select.checkbox-select > .dropdown-menu ul li a .check-mark::after {
        background: url("../../images/check-right-icon.svg") no-repeat center center;
        background-size: 10px;
        filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(6698%) hue-rotate(181deg) brightness(117%) contrast(94%);
    }

.dropdown.bootstrap-select.radio-select > .dropdown-menu ul li a .check-mark {
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border: 2px solid rgba(var(--secondary-rgb), 0.4);
}

    .dropdown.bootstrap-select.radio-select > .dropdown-menu ul li a .check-mark::after {
        background: url("../../assets/images/rounded-dots.svg") no-repeat center center;
        background-size: 8px;
        filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(6698%) hue-rotate(181deg) brightness(117%) contrast(94%);
    }

.dropdown.bootstrap-select.show-tick > .dropdown-menu ul li a {
    padding-left: 40px;
}

    .dropdown.bootstrap-select.show-tick > .dropdown-menu ul li a .check-mark {
        display: inline-block;
        position: absolute;
        left: 10px;
        top: 0;
        bottom: 0;
        margin: auto 0;
        width: 18px;
        min-width: 18px;
        height: 18px;
        min-height: 18px;
        background-color: transparent;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
    }

        .dropdown.bootstrap-select.show-tick > .dropdown-menu ul li a .check-mark::after {
            content: " ";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            border: none;
            transform: rotate(0deg);
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
        }

    .dropdown.bootstrap-select.show-tick > .dropdown-menu ul li a:hover .check-mark {
        border-color: var(--white);
    }

    .dropdown.bootstrap-select.show-tick > .dropdown-menu ul li a.selected .check-mark {
        border-color: var(--white);
    }

        .dropdown.bootstrap-select.show-tick > .dropdown-menu ul li a.selected .check-mark::after {
            opacity: 1;
        }

.dropdown.bootstrap-select.route-select .dropdown-toggle {
    background-color: rgba(var(--secondary-rgb), 0.02) !important;
    color: rgba(var(--secondary-rgb), 0.5);
    border-color: rgba(var(--secondary-rgb), 0.1) !important;
}

@media only screen and (max-width: 480px) {
    .dropdown.bootstrap-select.route-select .dropdown-toggle {
        padding: 12px 16px;
        padding-right: 40px;
    }
}

.dropdown.bootstrap-select.route-select .dropdown-menu {
    padding: 0;
}

    .dropdown.bootstrap-select.route-select .dropdown-menu ul li a {
        font-size: 14px;
        line-height: 100%;
        font-weight: 500;
        color: rgba(var(--secondary-rgb), 0.6);
        margin: 0;
        border-radius: 0px;
        padding: 10px;
        border-bottom: 1px solid rgba(var(--secondary-rgb), 0.1);
    }

        .dropdown.bootstrap-select.route-select .dropdown-menu ul li a.selected, .dropdown.bootstrap-select.route-select .dropdown-menu ul li a:hover {
            background-color: transparent;
        }

        .dropdown.bootstrap-select.route-select .dropdown-menu ul li a::before {
            display: none;
        }

    .dropdown.bootstrap-select.route-select .dropdown-menu ul li:last-child a {
        border-bottom: none;
    }

.dropdown.bootstrap-select.custom-multiselect .btn {
    background: var(--jet-black);
    border: 1px solid var(--charcoal-black);
    border-radius: 12px;
    color: var(--medium-gray);
    padding: 10px 14px;
}

.selectedTags {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 4px;
}

    .selectedTags .tag {
        padding: 6px 8px;
        font-size: 14px;
        line-height: 16px;
        font-family: "Helvetica Neue", Arial, sans-serif;
        font-weight: 400;
        color: rgba(var(--secondary-rgb), 0.6);
        background-color: var(--greenish-yellow);
        display: flex;
        align-items: center;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }

        .selectedTags .tag .remove-tag {
            margin-left: 8px;
            border: none;
            outline: none;
            box-shadow: none;
            text-decoration: none;
            width: 12px;
            min-width: 12px;
            height: 12px;
            min-height: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

            .selectedTags .tag .remove-tag:focus, .selectedTags .tag .remove-tag:hover {
                border: none;
                outline: none;
                box-shadow: none;
            }

.switch {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 32px;
}

    .switch .slider {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 30px;
        background-color: rgba(var(--secondary-rgb), 0.1);
        cursor: pointer;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        z-index: 9;
        border: 1px solid var(--secondary);
    }

        .switch .slider:before {
            position: absolute;
            left: 8px;
            bottom: 0px;
            top: 0px;
            margin: auto 0;
            width: 16px;
            height: 16px;
            content: "";
            border-radius: 50%;
            background-color: var(--secondary);
            transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
        }

    .switch input {
        opacity: 0;
        touch-action: none;
    }

        .switch input:checked ~ .slider {
            background-color: var(--secondary);
        }

            .switch input:checked ~ .slider:before {
                background-color: var(--primary);
                transform: translate(20px, 0px);
            }

.add-row {
    align-items: flex-end;
    padding-bottom: 14px;
}

    .add-row > div {
        flex: 1;
    }

    .add-row .icon-btn {
        width: 42px;
        min-width: 42px;
        height: 42px;
        min-height: 42px;
    }

@media only screen and (max-width: 480px) {
    .add-row .icon-btn {
        width: 38px;
        min-width: 38px;
        height: 38px;
        min-height: 38px;
    }
}

.buuton-align-end {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 10px;
}

@media only screen and (max-width: 767px) {
    .buuton-align-end {
        padding-top: 6px;
    }
}

@media only screen and (max-width: 480px) {
    .buuton-align-end {
        padding-top: 2px;
    }
}

.buuton-align-center {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.custom-inputs {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.custom-input-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
    cursor: pointer;
    font-size: 14px;
    line-height: 16px;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    color: rgba(var(--secondary-rgb), 0.6);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

    .custom-input-btn .checkmark {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 16px;
        min-width: 16px;
        height: 16px;
        min-height: 16px;
        background-color: var(--white);
        border: 1px solid var(--secondary);
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
    }

        .custom-input-btn .checkmark::after {
            content: " ";
            position: absolute;
            opacity: 0;
            transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
        }

    .custom-input-btn input {
        cursor: pointer;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 0;
    }

        .custom-input-btn input[type=checkbox]:checked ~ .checkmark {
            background: var(--secondary);
            border-color: var(--secondary);
        }

            .custom-input-btn input[type=checkbox]:checked ~ .checkmark::after {
                opacity: 1;
            }

        .custom-input-btn input[type=checkbox]:checked ~ .label-text {
            color: var(--danger);
        }

        .custom-input-btn input[type=checkbox] + .checkmark {
            border-radius: 3px;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            -ms-border-radius: 3px;
            -o-border-radius: 3px;
        }

            .custom-input-btn input[type=checkbox] + .checkmark::after {
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                background: url("../../images/check-right-icon.svg") no-repeat center center;
                filter: brightness(0) saturate(100%) invert(89%) sepia(91%) saturate(3327%) hue-rotate(13deg) brightness(101%) contrast(104%);
                background-size: calc(100% - 5px);
            }

        .custom-input-btn input[type=radio]:checked ~ .checkmark {
            background-color: var(--primary);
        }

            .custom-input-btn input[type=radio]:checked ~ .checkmark::after {
                opacity: 1;
            }

        .custom-input-btn input[type=radio]:checked ~ .label-text {
            color: var(--danger);
        }

        .custom-input-btn input[type=radio] + .checkmark {
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
        }

            .custom-input-btn input[type=radio] + .checkmark::after {
                width: 6px;
                min-width: 6px;
                height: 6px;
                min-height: 6px;
                background: var(--secondary);
                margin: auto;
                border-radius: 50%;
                -webkit-border-radius: 50%;
                -moz-border-radius: 50%;
                -ms-border-radius: 50%;
                -o-border-radius: 50%;
            }

.upload-box {
    width: 100%;
    position: relative;
}

    .upload-box .upload-area {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        border: 2px dashed rgba(var(--secondary-rgb), 0.1);
        border-radius: 8px;
        background-color: var(--white);
        cursor: pointer;
        padding: 14px;
        transition: all 0.3s ease;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        font-size: 16px;
        line-height: 18px;
        font-family: "Helvetica Neue", Arial, sans-serif;
        font-weight: 400;
        color: rgba(var(--secondary-rgb), 0.6);
        text-align: center;
    }

        .upload-box .upload-area .upload-icon {
            margin-bottom: 8px;
        }

        .upload-box .upload-area .or {
            display: block;
            text-align: center;
            margin: 8px 0;
        }

        .upload-box .upload-area .click-text {
            display: block;
            text-align: center;
            font-family: "Manrope", sans-serif;
            font-weight: 600;
            color: var(--secondary);
            text-decoration: underline;
        }

    .upload-box .preview {
        position: relative;
    }

        .upload-box .preview img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            -webkit-border-radius: 8px;
            -moz-border-radius: 8px;
            -ms-border-radius: 8px;
            -o-border-radius: 8px;
            -o-object-fit: cover;
            object-fit: cover;
        }

        .upload-box .preview .remove-btn {
            border: none;
            outline: none;
            box-shadow: none;
            text-decoration: none;
            position: absolute;
            top: 6px;
            right: 6px;
            background: var(--secondary);
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            width: 24px;
            min-width: 24px;
            height: 24px;
            min-height: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
        }

            .upload-box .preview .remove-btn:focus, .upload-box .preview .remove-btn:hover {
                border: none;
                outline: none;
                box-shadow: none;
            }

            .upload-box .preview .remove-btn img {
                width: 80%;
                filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(323deg) brightness(101%) contrast(102%);
            }

.attached-list {
    width: 100%;
    padding: 16px 16px;
    background-color: var(--white);
    border: 1px solid rgba(var(--secondary-rgb), 0.1);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    margin-bottom: 24px;
}

    .attached-list .attached-list-row {
        padding: 16px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 14px;
    }

@media only screen and (max-width: 480px) {
    .attached-list .attached-list-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.attached-list .attached-list-row:first-child {
    padding-top: 0;
}

.attached-list .attached-list-row:last-child {
    padding-bottom: 0;
}

.attached-list .attached-list-row > div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.attached-list .attached-list-row .attached-label {
    font-size: 16px;
    line-height: 18px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    color: var(--secondary);
}

    .attached-list .attached-list-row .attached-label p {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        overflow: hidden;
        width: 100%;
    }

    .attached-list .attached-list-row .attached-label .at-sm-label {
        display: block;
        font-size: 14px;
        line-height: 16px;
        font-family: "Helvetica Neue", Arial, sans-serif;
        font-weight: 400;
        color: rgba(var(--secondary-rgb), 0.6);
        margin-top: 8px;
    }

.attached-list .attached-list-row .attached-right {
    margin-left: auto;
}

.input-range-slider .rangeslider--horizontal {
    background: var(--barley-white);
    height: 8px;
    box-shadow: none;
    cursor: pointer;
    opacity: 1;
}

.input-range-slider .rangeslider__fill {
    background: var(--secondary);
    box-shadow: none;
}

.input-range-slider .rangeslider__handle {
    display: none;
}

.multi-select-option {
    position: relative;
}

    .multi-select-option .filter-option {
        opacity: 1 !important;
    }

    .multi-select-option .chip-overlay {
        position: absolute;
        top: 50%;
        left: 16px;
        transform: translateY(-50%);
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        pointer-events: none;
    }

    .multi-select-option .chip {
        font-size: 14px;
        line-height: 100%;
        font-family: "Helvetica Neue", Arial, sans-serif;
        font-weight: 400;
        color: var(--white);
        background-color: var(--secondary);
        padding: 6px 8px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        pointer-events: auto;
    }

        .multi-select-option .chip .close {
            margin-left: 8px;
            cursor: pointer;
            color: var(--primary);
            font-weight: bold;
        }

    .multi-select-option .dropdown-toggle .filter-option {
        opacity: 0;
    }

.label-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

    .label-tags-wrap .label-tag {
        padding: 6px 8px;
        background-color: var(--greenish-yellow);
        border-radius: 10px;
        font-size: 14px;
        line-height: 16px;
        font-weight: 400;
        color: rgba(var(--secondary-rgb), 0.6);
    }

.lrf-flow-section {
    background-color: var(--secondary);
    min-height: 100vh;
    display: flex;
    gap: 7px;
}

@media (max-width: 767px) {
    .lrf-flow-section {
        position: relative;
        flex-direction: column-reverse;
        gap: 30px;
        padding-bottom: 70px;
    }
}

@media (max-width: 575px) {
    .lrf-flow-section {
        gap: 20px;
    }
}

.lrf-flow-section .lrf-left {
    width: 60%;
    padding: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

@media (min-width: 1536px) {
    .lrf-flow-section .lrf-left {
        width: 50%;
    }
}

@media (min-width: 1600px) {
    .lrf-flow-section .lrf-left {
        width: 53%;
    }
}

@media (min-width: 2300px) {
    .lrf-flow-section .lrf-left {
        width: 45%;
    }
}

@media (max-width: 1279px) {
    .lrf-flow-section .lrf-left {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .lrf-flow-section .lrf-left {
        width: 100%;
        text-align: center;
    }
}

.lrf-flow-section .lrf-left .lrf-img-wrap {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
}

@media (max-width: 1199px) {
    .lrf-flow-section .lrf-left .lrf-img-wrap {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .lrf-flow-section .lrf-left .lrf-img-wrap {
        display: none;
    }
}

.lrf-flow-section .lrf-left .lrf-img-wrap .img-wrap {
    width: 33.23%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

@media (max-width: 1199px) {
    .lrf-flow-section .lrf-left .lrf-img-wrap .img-wrap {
        width: 100%;
        flex-direction: row;
    }
}

.lrf-flow-section .lrf-left .lrf-img-wrap .img-wrap .img-small {
    width: 100%;
    padding-bottom: 103.16%;
}

@media (max-width: 1199px) {
    .lrf-flow-section .lrf-left .lrf-img-wrap .img-wrap .img-small {
        padding-bottom: 40%;
    }
}

.lrf-flow-section .lrf-left .lrf-img-wrap .lrf-img3 {
    flex: 1;
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding-bottom: 68%;
}

    .lrf-flow-section .lrf-left .lrf-img-wrap .lrf-img3 img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

.lrf-flow-section .lrf-left .lrf-info-wrap {
    display: flex;
    gap: 6px;
}

@media (max-width: 1199px) {
    .lrf-flow-section .lrf-left .lrf-info-wrap {
        flex-direction: column-reverse;
    }
}

.lrf-flow-section .lrf-left .lrf-info-wrap .info-box {
    background-color: rgba(var(--white-rgb), 0.08);
    padding: 40px;
    border-radius: 20px;
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

@media (max-width: 1367px) {
    .lrf-flow-section .lrf-left .lrf-info-wrap .info-box {
        padding: 30px;
    }
}

@media (max-width: 1279px) {
    .lrf-flow-section .lrf-left .lrf-info-wrap .info-box {
        padding: 20px;
    }
}

.lrf-flow-section .lrf-left .lrf-info-wrap .info-box .info-title {
    font-size: 40px;
    line-height: 110%;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 28px;
}

@media (max-width: 1367px) {
    .lrf-flow-section .lrf-left .lrf-info-wrap .info-box .info-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
}

@media (max-width: 1280px) {
    .lrf-flow-section .lrf-left .lrf-info-wrap .info-box .info-title {
        font-size: 34px;
    }
}

@media (max-width: 1199px) {
    .lrf-flow-section .lrf-left .lrf-info-wrap .info-box .info-title {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .lrf-flow-section .lrf-left .lrf-info-wrap .info-box .info-title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .lrf-flow-section .lrf-left .lrf-info-wrap .info-box .info-title {
        font-size: 26px;
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .lrf-flow-section .lrf-left .lrf-info-wrap .info-box .info-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
}

.lrf-flow-section .lrf-left .lrf-info-wrap .info-box .info-text {
    font-size: 20px;
    line-height: 120%;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    margin-bottom: 28px;
    color: rgba(var(--white-rgb), 0.6);
}

@media (max-width: 1280px) {
    .lrf-flow-section .lrf-left .lrf-info-wrap .info-box .info-text {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .lrf-flow-section .lrf-left .lrf-info-wrap .info-box .info-text {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

.lrf-flow-section .lrf-left .lrf-info-wrap .info-box .info-text strong {
    color: var(--white);
    font-weight: 600;
}

.lrf-flow-section .lrf-left .lrf-info-wrap .info-box .link-wrap {
    display: flex;
    gap: 10px;
}

@media (max-width: 767px) {
    .lrf-flow-section .lrf-left .lrf-info-wrap .info-box .link-wrap {
        justify-content: center;
    }
}

.lrf-flow-section .lrf-left .lrf-info-wrap .info-box .link-wrap .icon-link {
    padding: 10px 30px;
    background-color: rgba(var(--white-rgb), 0.04);
    border-radius: 40px;
}

@media (max-width: 767px) {
    .lrf-flow-section .lrf-left .lrf-info-wrap .info-box .link-wrap .icon-link {
        padding: 6px 20px;
    }
}

.lrf-flow-section .lrf-left .lrf-info-wrap .info-box .link-wrap .icon-link img {
    height: 20px;
    width: 20px;
    min-width: 20px;
}

.lrf-flow-section .lrf-left .img-small {
    display: block;
    position: relative;
    width: 33.23%;
    padding-bottom: 35.16%;
    border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .lrf-flow-section .lrf-left .img-small {
        width: 100%;
        padding-bottom: 40%;
    }
}

@media (max-width: 767px) {
    .lrf-flow-section .lrf-left .img-small {
        display: none;
    }
}

.lrf-flow-section .lrf-left .img-small img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.lrf-flow-section .lrf-right {
    position: relative;
    display: flex;
    justify-content: center;
    flex: 1;
    height: 100vh;
    padding: 70px 40px;
    align-items: center;
    flex-direction: column;
}

@media (max-width: 1280px) {
    .lrf-flow-section .lrf-right {
        padding: 70px 30px;
    }
}

@media (max-width: 1199px) {
    .lrf-flow-section .lrf-right {
        padding: 70px 12px;
    }
}

@media (max-width: 767px) {
    .lrf-flow-section .lrf-right {
        padding: 40px 12px 0;
        position: unset;
    }
}

@media (max-width: 575px) {
    .lrf-flow-section .lrf-right {
        padding: 20px 12px 0;
    }
}

.lrf-flow-section .lrf-right .lrf-form-wrap {
    max-width: 500px;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 38px;
}

@media (max-width: 1367px) {
    .lrf-flow-section .lrf-right .lrf-form-wrap {
        gap: 30px;
    }
}

@media (max-width: 1199px) {
    .lrf-flow-section .lrf-right .lrf-form-wrap {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .lrf-flow-section .lrf-right .lrf-form-wrap {
        gap: 30px;
    }
}

.lrf-flow-section .lrf-right .lrf-logo {
    width: 240px;
    height: auto;
}

@media (max-width: 1199px) {
    .lrf-flow-section .lrf-right .lrf-logo {
        width: 200px;
    }
}

@media (max-width: 767px) {
    .lrf-flow-section .lrf-right .lrf-logo {
        width: 160px;
        margin: 0 auto;
    }
}

.lrf-flow-section .lrf-right .lrf-logo img {
    height: 100%;
    width: 100%;
}

@media (max-width: 767px) {
    .lrf-flow-section .lrf-right .lrt-title-wrap {
        text-align: center;
    }
}

.lrf-flow-section .lrf-right .lrt-title-wrap .lrt-title {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 6px;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-weight: 400;
}

@media (max-width: 1367px) {
    .lrf-flow-section .lrf-right .lrt-title-wrap .lrt-title {
        font-size: 30px;
        line-height: 42px;
    }
}

@media (max-width: 1279px) {
    .lrf-flow-section .lrf-right .lrt-title-wrap .lrt-title {
        font-size: 28px;
        line-height: 40px;
    }
}

@media (max-width: 1199px) {
    .lrf-flow-section .lrf-right .lrt-title-wrap .lrt-title {
        font-size: 26px;
        line-height: 38px;
    }
}

@media (max-width: 991px) {
    .lrf-flow-section .lrf-right .lrt-title-wrap .lrt-title {
        font-size: 24px;
        line-height: 36px;
    }
}

@media (max-width: 767px) {
    .lrf-flow-section .lrf-right .lrt-title-wrap .lrt-title {
        font-size: 22px;
        line-height: 34px;
    }
}

@media (max-width: 767px) {
    .lrf-flow-section .lrf-right .lrt-title-wrap .lrt-title {
        font-size: 20px;
        line-height: 32px;
    }
}

.lrf-flow-section .lrf-right .lrt-title-wrap .lrt-title strong {
    color: var(--primary);
    font-weight: 600;
}

.lrf-flow-section .lrf-right .lrt-title-wrap p {
    font-size: 16px;
    line-height: 110%;
    font-weight: 400;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: rgba(var(--white-rgb), 0.6);
}

.lrf-flow-section .lrf-right .common-form .form-group {
    margin-bottom: 24px;
}

    .lrf-flow-section .lrf-right .common-form .form-group:last-child {
        margin-bottom: 0;
    }

    .lrf-flow-section .lrf-right .common-form .form-group .form-label {
        color: var(--white);
        margin-bottom: 8px;
    }

    .lrf-flow-section .lrf-right .common-form .form-group .input-wrap {
        position: relative;
    }

        .lrf-flow-section .lrf-right .common-form .form-group .input-wrap .icon {
            position: absolute;
            top: 20px;
            right: 16px;
        }

    .lrf-flow-section .lrf-right .common-form .form-group .form-control {
        font-size: 16px;
        line-height: 24px;
        font-family: "Helvetica Neue", Arial, sans-serif;
        color: var(--white);
        padding: 17px 45px 17px 16px;
        background-color: rgba(var(--white-rgb), 0.1);
        border: 1px solid rgba(var(--white-rgb), 0.2);
    }

        .lrf-flow-section .lrf-right .common-form .form-group .form-control::-moz-placeholder {
            color: rgba(var(--white-rgb), 0.6);
        }

        .lrf-flow-section .lrf-right .common-form .form-group .form-control::placeholder {
            color: rgba(var(--white-rgb), 0.6);
        }

.lrf-flow-section .lrf-right .common-form .forgot-link {
    display: block;
    font-size: 14px;
    line-height: 112%;
    color: var(--white);
    text-decoration: underline;
    text-decoration-color: rgba(var(--white-rgb), 0.3);
    text-underline-offset: 2px;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    margin-left: auto;
    margin-top: 6px;
    width: -moz-fit-content;
    width: fit-content;
}

.lrf-flow-section .lrf-right .lrf-btn {
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 500px;
    font-size: 18px;
    line-height: 100%;
    font-weight: 500;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background-color: var(--primary);
    color: var(--secondary);
    border: 1px solid var(--primary);
    border-radius: 40px;
    transition: all 0.3s ease;
}

    .lrf-flow-section .lrf-right .lrf-btn:hover {
        background-color: var(--white);
        border-color: var(--white);
    }

    .lrf-flow-section .lrf-right .lrf-btn:hover {
        background-color: #FFFFFF !important;
        border-color: #FFFFFF !important;
        color: #111111 !important;
    }

.lrf-flow-section .lrf-right .lrf-footer {
    text-align: center;
    margin-top: auto;
    padding-top: 15px;
}

    .lrf-flow-section .lrf-right .lrf-footer h3 {
        font-family: "Helvetica Neue", Arial, sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 18px;
        color: var(--white);
        margin-bottom: 4px;
    }

    .lrf-flow-section .lrf-right .lrf-footer p {
        font-size: 12px;
        line-height: 14px;
        font-family: "Helvetica Neue", Arial, sans-serif;
        font-weight: 400;
        color: rgba(var(--white-rgb), 0.6);
    }

.tabing-nav {
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: nowrap;
    overflow: auto;
}

    .tabing-nav .nav-link {
        text-decoration: none;
        outline: none;
        box-shadow: none;
        border: none;
        padding: 11px 10px;
        text-align: center;
        background-color: transparent;
        border-radius: 8px 8px 0 0;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        border-bottom: 1px solid rgba(var(--secondary-rgb), 0.1);
        font-size: 14px;
        line-height: 17px;
        font-family: "Helvetica Neue", Arial, sans-serif;
        font-weight: 400;
        color: rgba(var(--secondary-rgb), 0.6);
        min-width: 191px;
        display: flex;
        justify-content: center;
        align-items: center;
        white-space: nowrap;
    }

        .tabing-nav .nav-link:focus, .tabing-nav .nav-link:hover {
            outline: none;
            box-shadow: none;
        }

@media only screen and (max-width: 575px) {
    .tabing-nav .nav-link {
        min-width: 160px;
    }
}

@media only screen and (max-width: 480px) {
    .tabing-nav .nav-link {
        min-width: 140px;
    }
}

@media only screen and (max-width: 359px) {
    .tabing-nav .nav-link {
        min-width: 130px;
    }
}

.tabing-nav .nav-link.active, .tabing-nav .nav-link:hover {
    background-color: var(--secondary);
    color: var(--primary);
    font-weight: 500;
}

.inner-tabing-nav {
    width: 100%;
    background-color: var(--secondary);
    padding: 10px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow: auto;
    margin-bottom: 24px;
}

    .inner-tabing-nav .nav-link {
        text-decoration: none;
        outline: none;
        box-shadow: none;
        border: none;
        padding: 10px 10px;
        text-align: center;
        background-color: transparent;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        font-size: 14px;
        line-height: 16px;
        font-family: "Helvetica Neue", Arial, sans-serif;
        font-weight: 400;
        color: var(--white);
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }

        .inner-tabing-nav .nav-link:focus, .inner-tabing-nav .nav-link:hover {
            outline: none;
            box-shadow: none;
        }

        .inner-tabing-nav .nav-link.active, .inner-tabing-nav .nav-link:hover {
            background-color: var(--primary);
            color: var(--secondary);
            font-weight: 500;
        }

/* ========     Deshboard Containet Css Start Here...   ===============*/
.dashboard-content {
    flex: 1;
    padding: 16px;
}

@media only screen and (min-width: 992px) {
    .dashboard-content {
        margin-left: 278px;
        width: calc(100% - 278px);
    }
}



.table-container-wrap .table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border: 0;
    border-radius: 8px;
}

            .table-container-wrap .table-wrapper table thead {
                background-color: var(--greenish-yellow);
            }

                .table-container-wrap .table-wrapper table thead th {
                    text-align: left;
                    padding: 14px 14px;
                    font-size: 14px;
                    line-height: 112%;
                    color: var(--secondary);
                    font-family: "Manrope", sans-serif;
                    font-weight: 500;
                    border: none;
                    white-space: nowrap;
                }

            .table-container-wrap .table-wrapper table tbody tr {
                border-bottom: 1px solid rgba(var(--secondary-rgb), 0.1);
                transition: background-color 0.2s ease;
            }

                .table-container-wrap .table-wrapper table tbody tr:hover {
                    background-color: var(--greenish-yellow);
                }

                .table-container-wrap .table-wrapper table tbody tr:last-child {
                    border-bottom: 0;
                }

                .table-container-wrap .table-wrapper table tbody tr td {
                    padding: 16px 14px;
                    vertical-align: middle;
                    font-size: 14px;
                    line-height: 16px;
                    color: rgba(var(--secondary-rgb), 0.6);
                    font-weight: 400;
                    border: none;
                }

                    .table-container-wrap .table-wrapper table tbody tr td[contenteditable=true] {
                        background-color: transparent;
                        transition: all 0.3s ease;
                        -webkit-transition: all 0.3s ease;
                        -moz-transition: all 0.3s ease;
                        -ms-transition: all 0.3s ease;
                        -o-transition: all 0.3s ease;
                        outline: none;
                    }

                        .table-container-wrap .table-wrapper table tbody tr td[contenteditable=true]:focus {
                            background-color: rgba(var(--secondary-rgb), 0.1);
                        }

                    .table-container-wrap .table-wrapper table tbody tr td .status-btn {
                        white-space: nowrap;
                    }

            .table-container-wrap .table-wrapper table .text-center {
                text-align: center;
            }

            .table-container-wrap .table-wrapper table .action-btn {
                border: none;
                outline: none;
                box-shadow: none;
                text-decoration: none;
                background-color: transparent;
            }

                .table-container-wrap .table-wrapper table .action-btn:focus, .table-container-wrap .table-wrapper table .action-btn:hover {
                    border: none;
                    outline: none;
                    box-shadow: none;
                }

    .table-container-wrap .table-wrapper table .more-dropdown-menu {
        background: linear-gradient(0deg, var(--white), var(--white)), linear-gradient(0deg, var(--soft-gray), var(--soft-gray));
        border: 1px solid rgba(var(--secondary-rgb), 0.1);
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
        padding: 0;
        z-index: 776;
    }

                .table-container-wrap .table-wrapper table .more-dropdown-menu li .more-item {
                    text-decoration: none;
                    outline: none;
                    box-shadow: none;
                    border: none;
                    background-color: transparent;
                    width: 100%;
                    padding: 8px;
                    border-bottom: 1px solid rgba(var(--secondary-rgb), 0.1);
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    font-size: 14px;
                    line-height: 100%;
                    color: var(--secondary);
                    font-weight: 400;
                }

                    .table-container-wrap .table-wrapper table .more-dropdown-menu li .more-item:focus, .table-container-wrap .table-wrapper table .more-dropdown-menu li .more-item:hover {
                        outline: none;
                        box-shadow: none;
                    }

                .table-container-wrap .table-wrapper table .more-dropdown-menu li:last-child .more-item {
                    border-bottom: 0;
                }

.dataTables_wrapper .table-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 20px 16px 16px;
}

@media only screen and (max-width: 767px) {
    .dataTables_wrapper .table-controls {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
    }
}

.dataTables_wrapper .table-controls:last-child {
    padding-bottom: 0;
}

.dataTables_wrapper .table-controls .dataTables_info,
.dataTables_wrapper .table-controls .dataTables_paginate {
    float: none;
    padding: 0;
    margin: 0;
}

.dataTables_wrapper .table-controls .dataTables_info {
    font-size: 14px;
    line-height: 16px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    color: rgba(var(--secondary-rgb), 0.6);
}

.dataTables_wrapper .table-controls .dataTables_paginate {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .dataTables_wrapper .table-controls .dataTables_paginate .paginate_button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 32px;
        min-width: 32px;
        height: 32px;
        min-height: 32px;
        padding: 0;
        margin: 0;
        text-decoration: none;
        outline: none;
        box-shadow: none;
        background: rgba(var(--secondary-rgb), 0.02) !important;
        border: 1px solid rgba(var(--secondary-rgb), 0.1) !important;
        color: rgba(var(--secondary-rgb), 0.6) !important;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }

        .dataTables_wrapper .table-controls .dataTables_paginate .paginate_button:focus, .dataTables_wrapper .table-controls .dataTables_paginate .paginate_button:hover {
            outline: none;
            box-shadow: none;
        }

    .dataTables_wrapper .table-controls .dataTables_paginate span {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .dataTables_wrapper .table-controls .dataTables_paginate span .paginate_button {
            text-decoration: none;
            border: 1px solid var(--white);
            background: var(--white) !important;
        }

            .dataTables_wrapper .table-controls .dataTables_paginate span .paginate_button.current {
                color: var(--primary) !important;
                font-weight: 500;
                background: var(--secondary) !important;
                border: 1px solid var(--secondary) !important;
            }

.settings-wrapper .inner-tabing-nav {
    margin-top: -20px;
    gap: 14px;
    border-top: 1px solid rgba(var(--white-rgb), 0.2);
}

    .settings-wrapper .inner-tabing-nav .nav-item {
        width: calc(33.33% - 11px);
        min-width: -moz-max-content;
        min-width: max-content;
    }

        .settings-wrapper .inner-tabing-nav .nav-item .nav-link {
            width: 100%;
        }

.settings-wrapper .switch-setting {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 24px;
}

@media only screen and (max-width: 575px) {
    .settings-wrapper .switch-setting {
        flex-direction: column;
        align-items: flex-start;
    }
}

.settings-wrapper .switch-setting:last-child {
    padding-bottom: 0;
}

.settings-wrapper .switch-setting .setting-label {
    font-size: 16px;
    line-height: 18px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    color: rgba(var(--secondary-rgb), 0.6);
}

.settings-wrapper .switch-setting strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 18px;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    color: var(--secondary);
}

    .settings-wrapper .switch-setting strong:last-child {
        margin-bottom: 0;
    }

.settings-wrapper .backup-warning strong {
    display: block;
    margin-bottom: 13px;
    font-size: 16px;
    line-height: 18px;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    color: var(--secondary);
}

    .settings-wrapper .backup-warning strong:last-child {
        margin-bottom: 0;
    }

.settings-wrapper .backup-warning .common-form {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding-bottom: 24px;
}

.settings-wrapper .backup-warning .select-box {
    width: 150px;
}

@media only screen and (max-width: 575px) {
    .settings-wrapper .backup-warning .select-box {
        width: 100%;
    }
}

.settings-wrapper .backup-warning .input-box {
    flex: 1;
}

@media only screen and (max-width: 575px) {
    .settings-wrapper .backup-warning .input-box {
        width: 100%;
        flex: 100%;
    }
}

.settings-wrapper .window-body {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    row-gap: 24px;
}

@media only screen and (max-width: 767px) {
    .settings-wrapper .window-body {
        row-gap: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .settings-wrapper .window-body {
        row-gap: 16px;
    }
}

.profile-img picture {
    width: 100px;
    min-width: 100px;
    height: 100px;
    min-height: 100px;
}

    .profile-img picture img {
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
        width: 100%;
        height: 100%;
    }

.edit-profile-section {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 24px;
}

    .edit-profile-section .upload-side {
        width: 100%;
        max-width: 350px;
    }

        .edit-profile-section .upload-side .upload-box {
            min-height: 220px;
        }

    .edit-profile-section .form-side {
        flex: 1;
    }

.stats-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 20px;
}

@media only screen and (max-width: 1279px) {
    .stats-cards {
        gap: 12px;
    }
}

.stats-cards:last-child {
    padding-bottom: 0;
}

.stats-cards .stat-card {
    background: var(--white);
    border: 1px solid rgba(var(--secondary-rgb), 0.1);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    padding: 16px;
    position: relative;
}

@media only screen and (max-width: 1366px) {
    .stats-cards .stat-card {
        padding: 12px;
    }
}

.stats-cards .stat-card .stat-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

    .stats-cards .stat-card .stat-top .stat-card-title {
        font-size: 32px;
        line-height: 34px;
        font-weight: 400;
        font-family: "Helvetica Neue", Arial, sans-serif;
        color: var(--secondary);
    }

        .stats-cards .stat-card .stat-top .stat-card-title span {
            font-weight: 500;
        }

@media only screen and (max-width: 1366px) {
    .stats-cards .stat-card .stat-top .stat-card-title {
        font-size: 28px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .stats-cards .stat-card .stat-top .stat-card-title {
        font-size: 26px;
        line-height: 28px;
    }
}

@media only screen and (max-width: 767px) {
    .stats-cards .stat-card .stat-top .stat-card-title {
        font-size: 24px;
        line-height: 26px;
    }
}

@media only screen and (max-width: 480px) {
    .stats-cards .stat-card .stat-top .stat-card-title {
        font-size: 22px;
        line-height: 24px;
    }
}

.stats-cards .stat-card .stat-top .stat-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    line-height: 16px;
    padding: 4px;
    font-weight: 400;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: var(--secondary);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

    .stats-cards .stat-card .stat-top .stat-badge.up {
        background: var(--mint-light);
    }

    .stats-cards .stat-card .stat-top .stat-badge.down {
        background: var(--rose-light);
    }

.stats-cards .stat-card .stat-buttom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    font-size: 18px;
    line-height: 20px;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    color: rgba(var(--secondary-rgb), 0.6);
}

@media only screen and (max-width: 1366px) {
    .stats-cards .stat-card .stat-buttom {
        gap: 6px;
        padding-top: 20px;
        font-size: 16px;
        line-height: 18px;
    }
}

@media only screen and (max-width: 991px) {
    .stats-cards .stat-card .stat-buttom {
        padding-top: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .stats-cards .stat-card .stat-buttom {
        padding-top: 12px;
    }
}

@media only screen and (max-width: 480px) {
    .stats-cards .stat-card .stat-buttom {
        font-size: 15px;
        line-height: 17px;
    }
}

.stats-cards .stat-card .stat-buttom .stat-icon {
    width: 20px;
    height: 20px;
}

.stats-cards-2 .stat-card {
    width: calc(50% - 8px);
}

@media only screen and (max-width: 1279px) {
    .stats-cards-2 .stat-card {
        width: calc(50% - 6px);
    }
}

@media only screen and (max-width: 480px) {
    .stats-cards-2 .stat-card {
        width: 100%;
    }
}

.stats-cards-3 .stat-card {
    width: calc(33.33% - 11px);
}

@media only screen and (max-width: 1279px) {
    .stats-cards-3 .stat-card {
        width: calc(33.33% - 8px);
    }
}

@media only screen and (max-width: 767px) {
    .stats-cards-3 .stat-card {
        width: calc(50% - 6px);
    }
}

@media only screen and (max-width: 480px) {
    .stats-cards-3 .stat-card {
        width: 100%;
    }
}

.stats-cards-4 .stat-card {
    width: calc(25% - 12px);
}

@media only screen and (max-width: 1279px) {
    .stats-cards-4 .stat-card {
        width: calc(25% - 9px);
    }
}

@media only screen and (max-width: 1199px) {
    .stats-cards-4 .stat-card {
        width: calc(33.33% - 8px);
    }
}

@media only screen and (max-width: 767px) {
    .stats-cards-4 .stat-card {
        width: calc(50% - 6px);
    }
}

@media only screen and (max-width: 480px) {
    .stats-cards-4 .stat-card {
        width: 100%;
    }
}

.stats-cards-5 .stat-card {
    width: calc(20% - 13px);
}

@media only screen and (max-width: 1279px) {
    .stats-cards-5 .stat-card {
        width: calc(33.33% - 8px);
    }
}

@media only screen and (max-width: 767px) {
    .stats-cards-5 .stat-card {
        width: calc(50% - 6px);
    }
}

@media only screen and (max-width: 480px) {
    .stats-cards-5 .stat-card {
        width: 100%;
    }
}

.filter-bar-wrapper {
    max-width: 400px;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    overflow: auto;
    background-color: var(--soft-gray);
    position: fixed;
    top: 0;
    right: -450px;
    z-index: 999;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 991px) {
    .filter-bar-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

.filter-bar-wrapper .filter-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 24px;
    background: linear-gradient(0deg, var(--greenish-yellow), var(--greenish-yellow)), linear-gradient(0deg, rgba(var(--white-rgb), 0.2), rgba(var(--white-rgb), 0.2));
    border-bottom: 1px solid rgba(var(--secondary-rgb), 0.1);
}

@media only screen and (max-width: 991px) {
    .filter-bar-wrapper .filter-header {
        padding: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .filter-bar-wrapper .filter-header {
        padding: 16px;
    }
}

.filter-bar-wrapper .filter-header .filter-close {
    cursor: pointer;
    display: inline-block;
    background-color: transparent;
    box-shadow: inherit;
    width: 24px;
    height: 24px;
    border-radius: 20px;
    border: none;
    outline: none;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    position: relative;
    box-shadow: none;
}

    .filter-bar-wrapper .filter-header .filter-close::before, .filter-bar-wrapper .filter-header .filter-close::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        left: 0;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
        background: var(--secondary);
    }

    .filter-bar-wrapper .filter-header .filter-close::before {
        width: 18px;
        height: 2px;
    }

    .filter-bar-wrapper .filter-header .filter-close::after {
        width: 2px;
        height: 18px;
    }

.filter-bar-wrapper .filter-body {
    overflow: auto;
    flex: 1;
    padding: 24px 24px 0;
}

    .filter-bar-wrapper .filter-body::-webkit-scrollbar {
        width: 6px;
    }

        .filter-bar-wrapper .filter-body::-webkit-scrollbar:horizontal {
            height: 6px;
        }

    .filter-bar-wrapper .filter-body::-webkit-scrollbar-thumb {
        background-color: rgba(var(--secondary-rgb), 0.5);
        border-radius: 4px;
    }

    .filter-bar-wrapper .filter-body::-webkit-scrollbar-track {
        background-color: transparent;
    }

@media only screen and (max-width: 991px) {
    .filter-bar-wrapper .filter-body {
        padding: 20px 20px 0;
    }
}

@media only screen and (max-width: 480px) {
    .filter-bar-wrapper .filter-body {
        padding: 16px 16px 0;
    }
}

.filter-bar-wrapper .filter-footer {
    margin-top: auto;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

@media only screen and (max-width: 991px) {
    .filter-bar-wrapper .filter-footer {
        padding: 20px;
        gap: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .filter-bar-wrapper .filter-footer {
        padding: 16px;
        gap: 16px;
    }
}

.filter-bar-wrapper .filter-footer .common-btn {
    width: calc(50% - 12px);
}

@media only screen and (max-width: 991px) {
    .filter-bar-wrapper .filter-footer .common-btn {
        width: calc(50% - 10px);
    }
}

@media only screen and (max-width: 480px) {
    .filter-bar-wrapper .filter-footer .common-btn {
        width: calc(50% - 8px);
    }
}

.filter-sidebar-open {
    position: relative;
    overflow: hidden;
}

    .filter-sidebar-open::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(var(--black-rgb), 0.55);
        z-index: 999;
    }

    .filter-sidebar-open .filter-bar-wrapper {
        right: 0;
    }

.device-details-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

    .device-details-wrap .device-left {
        max-width: 300px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

@media only screen and (max-width: 767px) {
    .device-details-wrap .device-left {
        max-width: 100%;
        flex-direction: row;
    }
}

@media only screen and (max-width: 480px) {
    .device-details-wrap .device-left {
        flex-direction: column;
    }
}

.device-details-wrap .device-left .view-detail-box {
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .device-details-wrap .device-left .view-detail-box {
        max-width: 300px;
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .device-details-wrap .device-left .view-detail-box {
        max-width: 100%;
        text-align: center;
    }
}

.device-details-wrap .device-left .device-img img {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.device-details-wrap .device-left .device-qr .qr-inner {
    padding: 9px;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(var(--secondary-rgb), 0.1);
    border-radius: 14px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    -o-border-radius: 14px;
}

    .device-details-wrap .device-left .device-qr .qr-inner img {
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }

    .device-details-wrap .device-left .device-qr .qr-inner .device-name {
        display: block;
        font-size: 14px;
        line-height: 16px;
        font-family: "Helvetica Neue", Arial, sans-serif;
        font-weight: 500;
        color: var(--secondary);
        margin-top: 4px;
    }

.device-details-wrap .device-left .device-qr .common-btn {
    width: 100%;
    margin-top: 12px;
}

.device-details-wrap .device-details {
    flex: 1;
}

@media only screen and (max-width: 767px) {
    .device-details-wrap .device-details {
        flex: 100%;
        width: 100%;
    }
}

.device-details-wrap .device-details .grid > div {
    width: calc(50% - 12px);
}

@media only screen and (max-width: 1279px) {
    .device-details-wrap .device-details .grid > div {
        width: calc(50% - 10px);
    }
}

@media only screen and (max-width: 991px) {
    .device-details-wrap .device-details .grid > div {
        width: calc(50% - 8px);
    }
}

@media only screen and (max-width: 480px) {
    .device-details-wrap .device-details .grid > div {
        width: calc(100% - 0px);
    }
}

.test-list {
    width: 100%;
    background-color: var(--white);
    overflow: hidden;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    margin-bottom: 20px;
}

    .test-list:last-child {
        margin-bottom: 0;
    }

.test-list-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
    border-bottom: 1px solid rgba(var(--secondary-rgb), 0.1);
    padding: 16px;
}

    .test-list-row:last-child {
        border-bottom: none;
    }

@media only screen and (max-width: 480px) {
    .test-list-row {
        flex-direction: column;
        gap: 10px;
    }
}

.test-list-row .row-right {
    flex: 1;
    display: flex;
    gap: 16px;
}

    .test-list-row .row-right .test-info {
        flex: 1;
        font-size: 16px;
        line-height: 18px;
        font-family: "Helvetica Neue", Arial, sans-serif;
        font-weight: 400;
        color: rgba(var(--secondary-rgb), 0.6);
    }

        .test-list-row .row-right .test-info .test-title {
            font-size: 16px;
            line-height: 18px;
            font-family: "Helvetica Neue", Arial, sans-serif;
            font-weight: 400;
            color: var(--secondary);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

            .test-list-row .row-right .test-info .test-title .health-pr {
                font-size: 16px;
                line-height: 18px;
                font-family: "Helvetica Neue", Arial, sans-serif;
                font-weight: 500;
                color: var(--secondary);
                margin-left: auto;
            }

            .test-list-row .row-right .test-info .test-title i {
                font-style: normal;
                font-size: 12px;
                line-height: 13px;
                font-family: "Helvetica Neue", Arial, sans-serif;
                font-weight: 400;
                color: rgba(var(--secondary-rgb), 0.6);
            }

.test-list-row .common-btn {
    margin-left: auto;
    min-width: 88px;
    padding: 10px 11px;
}

.health-list {
    display: flex;
    flex-wrap: wrap;
}

    .health-list > div {
        width: 50%;
    }

@media only screen and (max-width: 767px) {
    .health-list > div {
        width: 100%;
    }
}

.health-list .test-list-row:nth-last-child(2) {
    border-bottom: none;
}

.tabing-nav.screen-tabs .nav-item {
    width: 20%;
    min-width: -moz-max-content;
    min-width: max-content;
}

    .tabing-nav.screen-tabs .nav-item .nav-link {
        width: 100%;
    }

.common-white-box-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

    .common-white-box-wrap .common-white-box {
        width: calc(50% - 7px);
    }

@media (max-width: 1199px) {
    .common-white-box-wrap .common-white-box {
        width: 100%;
    }
}

.common-white-box-wrap .common-white-box:last-child {
    margin-bottom: 20px;
}

.common-white-box-wrap .common-white-box-left {
    width: calc(66% - 7px);
}

@media (max-width: 1199px) {
    .common-white-box-wrap .common-white-box-left {
        width: 100%;
    }
}

.common-white-box-wrap .common-white-box-left .common-white-box {
    width: 100%;
}

.common-white-box-wrap .common-white-box-left .select-device-type {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    white-space: nowrap;
}

    .common-white-box-wrap .common-white-box-left .select-device-type .custom-input-btn {
        flex: 1;
    }

.common-white-box-wrap .common-white-box-right {
    width: calc(34% - 7px);
}

@media (max-width: 1199px) {
    .common-white-box-wrap .common-white-box-right {
        width: 100%;
    }
}

.common-white-box-wrap .common-white-box-right .common-white-box {
    width: 100%;
}

.common-white-box-wrap .common-white-box-right .common-white-box-wrap {
    position: sticky;
    top: 80px;
}

.price-breakdown-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

    .price-breakdown-wrap .breakdown-title {
        font-size: 14px;
        line-height: 16px;
        font-family: "Helvetica Neue", Arial, sans-serif;
        font-weight: 400;
        color: rgba(var(--secondary-rgb), 0.6);
        width: 100%;
    }

    .price-breakdown-wrap .price-breakdown-value {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 10px;
        padding-bottom: 14px;
        margin-bottom: 7px;
        border-bottom: 1px solid rgba(var(--secondary-rgb), 0.1);
    }

        .price-breakdown-wrap .price-breakdown-value:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .price-breakdown-wrap .price-breakdown-value p {
            width: calc(50% - 5px);
            font-size: 14px;
            line-height: 112%;
            font-weight: 400;
            color: rgba(var(--secondary-rgb), 0.7);
        }

            .price-breakdown-wrap .price-breakdown-value p strong {
                font-size: 16px;
                font-weight: 400;
                color: var(--secondary);
            }

@media (max-width: 1279px) {
    .price-breakdown-wrap .price-breakdown-value p strong {
        font-size: 14px;
    }
}

.price-breakdown-wrap .price-breakdown-value span {
    width: calc(50% - 5px);
    font-size: 14px;
    line-height: 112%;
    font-weight: 500;
    color: var(--secondary);
    text-align: right;
}

.price-breakdown-wrap .price-breakdown-value h6 {
    width: calc(50% - 5px);
    font-size: 18px;
    line-height: 112%;
    font-weight: 600;
    color: var(--secondary);
    font-family: "Manrope", sans-serif;
}

@media (max-width: 1199px) {
    .price-breakdown-wrap .price-breakdown-value h6 {
        font-size: 16px;
    }
}

.price-breakdown-wrap .price-breakdown-value h6:last-child {
    text-align: right;
}

.price-breakdown-wrap .price-breakdown-value.vendor-info {
    gap: 25px 12px;
}

    .price-breakdown-wrap .price-breakdown-value.vendor-info span {
        width: calc(68% - 6px);
        word-break: break-all;
    }

    .price-breakdown-wrap .price-breakdown-value.vendor-info p {
        width: calc(32% - 6px);
    }

/* ========     Ad Cards Styling Start Here...   ===============*/
.ad-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Responsive Styles */
}

    .ad-cards-wrapper .ad-card {
        border: 1px solid rgba(var(--secondary-rgb), 0.1);
        border-radius: 6px;
        overflow: hidden;
        transition: all 0.2s ease;
    }

    .ad-cards-wrapper .ad-card-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 16px;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
    }

        .ad-cards-wrapper .ad-card-header[aria-expanded=false] .collapse-toggle img {
            transform: rotate(0deg);
        }

        .ad-cards-wrapper .ad-card-header[aria-expanded=true] .collapse-toggle img {
            transform: rotate(-180deg);
        }

    .ad-cards-wrapper .ad-card-btn {
        text-align: right;
    }

        .ad-cards-wrapper .ad-card-btn .primary-btn {
            width: auto;
            margin-left: auto;
        }

    .ad-cards-wrapper .ad-card-header-left {
        display: flex;
        align-items: center;
        gap: 14px;
        flex: 1;
    }

    .ad-cards-wrapper .drag-handle {
        color: var(--secondary);
        cursor: grab;
        padding: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        transition: color 0.2s ease;
    }

        .ad-cards-wrapper .drag-handle:active {
            cursor: grabbing;
        }

        .ad-cards-wrapper .drag-handle svg {
            width: 20px;
            height: 20px;
        }

    .ad-cards-wrapper .ad-card-title {
        font-size: 15px;
        font-weight: 600;
        color: var(--secondary);
        margin: 0;
        line-height: 1.4;
        font-family: "Manrope", sans-serif;
    }

    .ad-cards-wrapper .ad-card-header-right {
        display: flex;
        gap: 8px;
        align-items: center;
        flex-shrink: 0;
    }

    .ad-cards-wrapper .collapse-toggle {
        transition: color 0.2s ease, transform 0.3s ease;
        width: 36px;
        height: 36px;
    }

        .ad-cards-wrapper .collapse-toggle:hover {
            color: var(--secondary);
        }

        .ad-cards-wrapper .collapse-toggle picture {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ad-cards-wrapper .collapse-toggle img {
            transition: transform 0.3s ease;
        }

    .ad-cards-wrapper .delete-ad-btn {
        background: none;
        border: none;
        padding: 6px;
        cursor: pointer;
        color: var(--dark-gray);
        transition: color 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
    }

        .ad-cards-wrapper .delete-ad-btn:hover {
            color: var(--crimson-red);
        }

        .ad-cards-wrapper .delete-ad-btn picture {
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .ad-cards-wrapper .ad-card-body {
        border-top: 1px solid rgba(var(--secondary-rgb), 0.1);
        background-color: rgba(var(--secondary-rgb), 0.02);
        padding: 14px;
    }

        .ad-cards-wrapper .ad-card-body.collapse {
            display: none;
        }

            .ad-cards-wrapper .ad-card-body.collapse.show {
                display: block;
            }

        .ad-cards-wrapper .ad-card-body .common-form {
            padding: 14px;
            background-color: var(--white);
            border: 1px solid rgba(var(--secondary-rgb), 0.1);
            border-radius: 8px;
        }

    .ad-cards-wrapper .uploaded-file-preview {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 15px 14px;
        border: 1px solid rgba(var(--secondary-rgb), 0.1);
        border-radius: 6px;
        margin-bottom: 16px;
    }

        .ad-cards-wrapper .uploaded-file-preview .file-name {
            font-size: 16px;
            font-weight: 500;
            color: var(--secondary);
            margin-bottom: 4px;
            font-family: "Helvetica Neue", Arial, sans-serif;
        }

        .ad-cards-wrapper .uploaded-file-preview .file-details {
            font-size: 14px;
            color: rgba(var(--secondary-rgb), 0.6);
            font-family: "Helvetica Neue", Arial, sans-serif;
        }

    .ad-cards-wrapper .file-preview-info {
        flex: 1;
    }

    .ad-cards-wrapper .supported-formats {
        margin-top: 10px;
    }

        .ad-cards-wrapper .supported-formats .format-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 12px;
            font-family: "Manrope", sans-serif;
        }

        .ad-cards-wrapper .supported-formats .format-list p {
            font-size: 12px;
            color: rgba(var(--secondary-rgb), 0.6);
            margin-bottom: 6px;
            font-family: "Helvetica Neue", Arial, sans-serif;
            line-height: 120%;
        }

            .ad-cards-wrapper .supported-formats .format-list p:last-child {
                margin-bottom: 0;
            }

            .ad-cards-wrapper .supported-formats .format-list p strong {
                font-weight: 500;
                color: var(--secondary);
            }

@media (max-width: 767px) {
    .ad-cards-wrapper .grid-3 {
        grid-template-columns: 1fr;
    }

    .ad-cards-wrapper .ad-card-header {
        gap: 8px;
    }

    .ad-cards-wrapper .ad-card-header-left {
        order: 1;
        flex-basis: 100%;
    }

    .ad-cards-wrapper .ad-card-header-right {
        order: 2;
        margin-left: auto;
    }
}

/* ========= Pricing Tier Component Styling ========= */
.pricing-tier-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .pricing-tier-wrapper .pricing-tier-row {
        display: flex;
        align-items: center;
        padding: 14px;
        background: var(--white);
        border: 1px solid rgba(var(--secondary-rgb), 0.1);
        border-radius: 8px;
        gap: 14px;
    }

    .pricing-tier-wrapper .tier-left {
        flex: 1;
        min-width: 0;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
    }

        .pricing-tier-wrapper .tier-left .screen-value {
            width: 100%;
            font-size: 16px;
            font-weight: 500;
            color: var(--secondary);
            line-height: 100%;
            font-family: "Helvetica Neue", Arial, sans-serif;
        }

    .pricing-tier-wrapper .location-name {
        font-size: 16px;
        font-weight: 400;
        color: var(--secondary);
        line-height: 100%;
        font-family: "Helvetica Neue", Arial, sans-serif;
    }

    .pricing-tier-wrapper .price-badge {
        display: inline-flex;
        align-items: center;
        padding: 0.35rem 0.75rem;
        background-color: var(--greenish-yellow);
        color: var(--secondary);
        border-radius: 10px;
        font-size: 14px;
        font-weight: 400;
        white-space: nowrap;
        font-family: "Helvetica Neue", Arial, sans-serif;
    }

/* Middle Section: Spacer */
.tier-middle {
    flex: 0.5;
    display: none;
}

/* Right Section: Quantity Controller */
.tier-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

    .tier-right .qty-controller {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .tier-right .qty-btn {
        width: 36px;
        height: 36px;
        padding: 0;
        border: 1px solid rgba(var(--secondary-rgb), 0.1);
        background: rgba(var(--secondary-rgb), 0.02);
        color: var(--secondary);
        border-radius: 6px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        font-weight: 600;
        transition: all 0.2s ease;
        font-family: "Helvetica Neue", Arial, sans-serif;
        text-decoration: none;
        outline: none;
        box-shadow: none;
    }

        .tier-right .qty-btn:focus, .tier-right .qty-btn:hover {
            outline: none;
            box-shadow: none;
        }

            .tier-right .qty-btn:hover:not(:disabled) {
                background-color: rgba(var(--secondary-rgb), 0.02);
                border-color: var(--secondary);
                color: var(--secondary);
            }

        .tier-right .qty-btn:active:not(:disabled) {
            transform: scale(0.95);
        }

        .tier-right .qty-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

            .tier-right .qty-btn:disabled:hover {
                background-color: var(--white);
                border-color: rgba(var(--secondary-rgb), 0.1);
            }

    .tier-right .qty-display {
        font-size: 16px;
        font-weight: 500;
        color: var(--secondary);
        min-width: 50px;
        text-align: center;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        font-family: "Helvetica Neue", Arial, sans-serif;
    }

/* ========= Responsive Design ========= */
@media (max-width: 767px) {
    .pricing-tier-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }

    .tier-left {
        width: 100%;
    }

    .tier-middle {
        display: none;
    }

    .tier-right {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .pricing-tier-wrapper {
        gap: 0.75rem;
    }

    .pricing-tier-row {
        gap: 0.75rem;
        padding: 0.875rem;
    }

    .qty-btn {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .qty-display {
        font-size: 0.85rem;
        min-width: 45px;
    }
}

.overview-head-right {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.progress-bar-component {
    min-width: 175px;
}

    .progress-bar-component .progress-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 4px;
        gap: 1rem;
    }

        .progress-bar-component .progress-header .progress-label {
            font-size: 14px;
            line-height: 16px;
            font-family: "Helvetica Neue", Arial, sans-serif;
            font-weight: 400;
            color: var(--secondary);
        }

        .progress-bar-component .progress-header .progress-value {
            font-size: 14px;
            line-height: 16px;
            font-family: "Helvetica Neue", Arial, sans-serif;
            font-weight: 500;
            color: var(--secondary);
        }

    .progress-bar-component .progress-bar-track {
        width: 100%;
        height: 12px;
        background-color: var(--mint-green);
        border-radius: 10px;
        overflow: hidden;
        position: relative;
    }

    .progress-bar-component .progress-bar-fill {
        height: 100%;
        background-color: var(--secondary);
        border-radius: 10px;
        width: 42%;
        transition: width 0.3s ease;
    }

.head-right.common-form.date-promo {
    width: auto;
}

    .head-right.common-form.date-promo .form-group {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .head-right.common-form.date-promo .form-group .form-label {
            font-weight: 500;
            margin-bottom: 0;
        }

        .head-right.common-form.date-promo .form-group .add-row {
            padding-bottom: 0;
            gap: 10px;
        }

            .head-right.common-form.date-promo .form-group .add-row .input-wrap {
                max-width: 128px;
            }

.promo-box-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

    .promo-box-wrap .promo-box {
        padding: 16px;
        background-color: var(--white);
        border: 1px solid rgba(var(--secondary-rgb), 0.1);
        border-radius: 8px;
        flex: 1;
    }

.chart-white-box .box-head {
    border-bottom: none;
    padding-bottom: 10px;
}

    .chart-white-box .box-head .chart-le-wrap {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
    }

        .chart-white-box .box-head .chart-le-wrap .chart-legend {
            width: auto;
        }

    .chart-white-box .box-head .chart-legend {
        display: flex;
        gap: 8px;
        width: 100%;
        font-size: 14px;
        line-height: 16px;
        font-family: "Helvetica Neue", Arial, sans-serif;
        font-weight: 400;
        color: rgba(var(--secondary-rgb), 0.6);
    }

        .chart-white-box .box-head .chart-legend .legend-icon {
            display: block;
            height: 12px;
            width: 12px;
            min-width: 12px;
            background-color: var(--soft-lime);
        }

        .chart-white-box .box-head .chart-legend .general-icon,
        .chart-white-box .box-head .chart-legend .per-count-icon {
            display: block;
            height: 12px;
            width: 12px;
            min-width: 12px;
            background-color: var(--lime-yellow);
        }

.chart-white-box .box-body .chart-wrapper {
    min-height: 270px;
    position: relative;
}

.chart-white-box .primary-btn:hover img {
    filter: brightness(0);
}

.star-wrap {
    display: flex;
    gap: 8px;
}

.rating-stars {
    color: var(--amber-yellow);
    font-size: 18px;
    letter-spacing: 2px;
}

    .rating-stars .rating-stars.inactive {
        color: var(--cool-gray-light);
    }

.media-detail-wrap {
    display: grid;
    grid-template-columns: calc(27.6% - 12px) calc(72.4% - 12px);
    gap: 24px;
}

@media only screen and (max-width: 1199px) {
    .media-detail-wrap {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.media-detail-wrap .media-video-wrap .view-detail-box video {
    width: 100%;
}

.media-detail-wrap .media-video-wrap .image-box {
    position: relative;
    width: 100%;
}

    .media-detail-wrap .media-video-wrap .image-box img {
        width: 100%;
        height: auto;
    }

.media-detail-wrap .media-video-wrap .primary-btn {
    width: 100%;
}

.common-form .search-group {
    position: relative;
    margin-bottom: 14px;
}

    .common-form .search-group .search-field {
        background-color: rgba(var(--secondary-rgb), 0.02);
        padding: 10px 40px 10px 16px;
    }

    .common-form .search-group .search-btn {
        position: absolute;
        top: 8px;
        right: 16px;
        border: 0;
        background-color: transparent;
        height: 16px;
        width: 16px;
    }

.testing-table-list tr td .common-btn {
    padding: 10px;
}

.conflict-detected-box {
    background-color: var(--light-organge);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    margin-bottom: 14px;
}

    .conflict-detected-box .conflict-title {
        font-size: 14px;
        line-height: 18px;
        font-family: "Helvetica Neue", Arial, sans-serif;
        font-weight: 400;
        color: rgba(var(--secondary-rgb), 0.6);
    }

        .conflict-detected-box .conflict-title h3 {
            font-size: 16px;
            line-height: 20px;
            font-family: "Helvetica Neue", Arial, sans-serif;
            font-weight: 500;
            color: var(--secondary);
            margin-bottom: 5px;
        }

.resolution-options-box .box-head {
    border-bottom: none;
    padding-bottom: 0px;
}

.resolution-options-box .view-detail-box .resolution-options-list {
    font-size: 14px;
    line-height: 20px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    color: rgba(var(--secondary-rgb), 0.6);
    padding-left: 16px;
}

    .resolution-options-box .view-detail-box .resolution-options-list li {
        position: relative;
        margin-bottom: 8px;
    }

        .resolution-options-box .view-detail-box .resolution-options-list li::before {
            content: "";
            position: absolute;
            top: 5px;
            left: -16px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: rgba(var(--secondary-rgb), 0.6);
        }

        .resolution-options-box .view-detail-box .resolution-options-list li:last-child {
            margin-bottom: 0;
        }

.resolutionmodal-action {
    margin-left: auto;
    margin-right: 0;
}

.activity-log-list .activity-log-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    line-height: 16px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    color: rgba(var(--secondary-rgb), 0.6);
    padding: 16px 0;
}

@media only screen and (max-width: 767px) {
    .activity-log-list .activity-log-item {
        padding: 8px 0;
        flex-wrap: wrap;
        gap: 8px;
    }
}

.activity-log-list .activity-log-item:first-child {
    padding-top: 0;
}

.activity-log-list .activity-log-item:last-child {
    padding-bottom: 0;
}

.activity-log-list .activity-log-item h3 {
    font-size: 16px;
    line-height: 20px;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 8px;
}

.activity-log-list .activity-log-item .log-detail {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
}

    .activity-log-list .activity-log-item .log-detail picture {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 38px;
        width: 38px;
        min-width: 38px;
        border-radius: 8px;
        background-color: rgba(var(--secondary-rgb), 0.02);
        border: 1px solid rgba(var(--secondary-rgb), 0.1);
    }

        .activity-log-list .activity-log-item .log-detail picture img {
            height: 20px;
            width: 20px;
        }

    .activity-log-list .activity-log-item .log-detail p {
        width: 100%;
    }

.notification-wrap .notification-item {
    padding: 16px;
    border-radius: 8px;
    background-color: var(--white);
}

    .notification-wrap .notification-item:not(:last-child) {
        margin-bottom: 14px;
    }

    .notification-wrap .notification-item .notification-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 8px;
    }

        .notification-wrap .notification-item .notification-header .notification-title {
            font-size: 16px;
            line-height: 18px;
            font-weight: 500;
            color: var(--secondary);
        }

        .notification-wrap .notification-item .notification-header .notification-date {
            font-size: 14px;
            line-height: 14px;
            font-weight: 400;
            color: rgba(var(--secondary-rgb), 0.6);
        }

    .notification-wrap .notification-item .notification-content {
        font-size: 14px;
        line-height: 14px;
        font-weight: 400;
        color: rgba(var(--secondary-rgb), 0.6);
    }

.dark.filter-sidebar-open::before {
    background-color: rgba(34, 34, 34, 0.8980392157);
    opacity: 1;
}

.dark .modal-backdrop {
    background-color: rgba(34, 34, 34, 0.8980392157);
    opacity: 1;
}

.dark .sidebar-main {
    background-color: #111111;
}

    .dark .sidebar-main .sidebar-menus .nav-items .nav-item-link.active, .dark .sidebar-main .sidebar-menus .nav-items .nav-item-link:hover {
        color: #111111 !important;
    }

        .dark .sidebar-main .sidebar-menus .nav-items .nav-item-link.active img, .dark .sidebar-main .sidebar-menus .nav-items .nav-item-link:hover img {
            filter: none !important;
        }

.dark .primary-btn {
    color: #111111 !important;
    background: #D0FF00 !important;
    border-color: #D0FF00 !important;
}

    .dark .primary-btn img {
        filter: none !important;
    }

.dark .dataTables_wrapper .table-controls .dataTables_paginate span .paginate_button {
    background: rgba(208, 255, 0, 0.1019607843) !important;
    color: #fff !important;
}

    .dark .dataTables_wrapper .table-controls .dataTables_paginate span .paginate_button.current {
        color: #111111 !important;
        background: #D0FF00 !important;
        border-color: #D0FF00 !important;
    }

        .dark .dataTables_wrapper .table-controls .dataTables_paginate span .paginate_button.current img {
            filter: none !important;
        }

.dark .stats-cards .stat-card .stat-top .stat-badge {
    color: #111111 !important;
}

    .dark .stats-cards .stat-card .stat-top .stat-badge img {
        filter: none !important;
    }

.dark .multi-select-option .chip .close {
    color: #111111 !important;
}

    .dark .multi-select-option .chip .close img {
        filter: none !important;
    }

.dark .conflict-detected-box {
    background-color: rgba(255, 224, 210, 0.8);
}

    .dark .conflict-detected-box img {
        filter: brightness(0) saturate(100%) invert(40%) sepia(63%) saturate(7249%) hue-rotate(12deg) brightness(98%) contrast(97%);
    }

    .dark .conflict-detected-box .conflict-title h3,
    .dark .conflict-detected-box .conflict-title p {
        color: #111111 !important;
    }

        .dark .conflict-detected-box .conflict-title h3 img,
        .dark .conflict-detected-box .conflict-title p img {
            filter: none !important;
        }

.dark .inner-tabing-nav {
    background: rgba(208, 255, 0, 0.1019607843) !important;
    color: #fff !important;
}

    .dark .inner-tabing-nav .nav-link {
        color: #fff;
    }

        .dark .inner-tabing-nav .nav-link.active, .dark .inner-tabing-nav .nav-link:hover {
            color: #111111 !important;
        }

            .dark .inner-tabing-nav .nav-link.active img, .dark .inner-tabing-nav .nav-link:hover img {
                filter: none !important;
            }

.dark .deshboard-header .head-left .global-inputs .custom-input-btn {
    color: #fff;
}

    .dark .deshboard-header .head-left .global-inputs .custom-input-btn input[type=checkbox]:checked ~ .checkmark {
        background: #D0FF00 !important;
        border-color: #D0FF00 !important;
    }

        .dark .deshboard-header .head-left .global-inputs .custom-input-btn input[type=checkbox]:checked ~ .checkmark::after {
            filter: none;
        }

    .dark .deshboard-header .head-left .global-inputs .custom-input-btn .checkmark {
        background-color: #fff;
    }

.dark .deshboard-header .head-left .global-inputs .info-wrap .info-content {
    background: #282E0F;
    color: #fff;
}

    .dark .deshboard-header .head-left .global-inputs .info-wrap .info-content::after {
        background: #282E0F;
        color: #fff;
    }

.dark .deshboard-header .head-left .search-box-buton .search-control {
    color: #fff;
}

.dark .deshboard-header .head-right .user-dropdown .user-toggle {
    background: rgba(208, 255, 0, 0.1019607843) !important;
    color: #fff !important;
}

    .dark .deshboard-header .head-right .user-dropdown .user-toggle .user-name {
        color: #fff;
    }

    .dark .deshboard-header .head-right .user-dropdown .user-toggle .user-img img {
        filter: none;
    }

    .dark .deshboard-header .head-right .user-dropdown .user-toggle .dropdown-icon img {
        filter: brightness(0) invert(1);
    }

.dark .deshboard-header .head-right .user-dropdown .dropdown-menu li .dropdown-item {
    background: #282E0F;
    color: #fff;
}

.dark .deshboard-header .head-right .notification-dropdown .notification-toggle {
    background: rgba(208, 255, 0, 0.1019607843) !important;
    color: #fff !important;
}

.dark .custom-input-btn input[type=checkbox]:checked ~ .checkmark {
    background: #D0FF00 !important;
    border-color: #D0FF00 !important;
}

.dark .custom-input-btn input[type=checkbox] + .checkmark::after {
    filter: none;
}

.dark .custom-input-btn input[type=radio] + .checkmark {
    background-color: transparent;
}

    .dark .custom-input-btn input[type=radio] + .checkmark::after {
        background-color: #111111;
    }

.dark .custom-input-btn input[type=radio]:checked ~ .checkmark {
    background: #D0FF00 !important;
}

.dark .custom-input-btn .checkmark {
    background-color: #fff;
}

.dark .selectedTags .tag .remove-tag {
    background-color: transparent;
}

    .dark .selectedTags .tag .remove-tag svg path{
        fill: #fff;
    }

.dark .dropdown.bootstrap-select.show-tick > .dropdown-menu ul li a .check-mark::after,
.upload-box .preview img,
.dark .upload-box .preview .remove-btn img {
    filter: none;
}

.dark .profile-img picture img {
    filter: none;
}

.dark .device-details-wrap .device-left .device-img img {
    filter: none;
}

.dark .device-details-wrap .device-left .device-qr .qr-inner img {
    filter: none;
}

.dark .map-wrap img {
    filter: none;
}

.dark .media-detail-wrap .media-video-wrap .image-box img {
    filter: none;
}

.dark .filter-btn {
    color: #fff !important;
    background: rgba(208, 255, 0, 0.1019607843) !important;
}

.dark .dropdown.bootstrap-select .dropdown-toggle.btn-light::after {
    filter: brightness(0) invert(1);
}

.dark .dropdown.bootstrap-select .dropdown-toggle.btn-light.disabled {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.dark .dropdown.bootstrap-select > .dropdown-menu {
    background: #282E0F;
    color: #fff;
}

.dark .dropdown.bootstrap-select .route-select .dropdown-toggle {
    background-color: rgba(208, 255, 0, 0.1019607843) !important;
    border-color: rgba(208, 255, 0, 0.1019607843) !important;
    color: #ffffff !important;
}

.dark .activity-log-list .activity-log-item .log-detail picture {
    background: rgba(208, 255, 0, 0.1019607843) !important;
    color: #fff !important;
}

.dark .box-head .edit-btn {
    background: rgba(208, 255, 0, 0.1019607843) !important;
    color: #fff !important;
}

.dark .add-row .icon-btn {
    background: rgba(208, 255, 0, 0.1019607843) !important;
    color: #fff !important;
}

.dark .filter-bar-wrapper .dropdown.bootstrap-select .dropdown-toggle.btn-light {
    background-color: #111111;
}

.dark .filter-bar-wrapper .common-form .form-group .form-control {
    background-color: #111111;
}

.dark .filter-bar-wrapper .filter-header {
    background: #282E0F;
    color: #fff;
}

.dark .table-container-wrap .table-wrapper table .more-dropdown-menu {
    background: #282E0F;
    color: #fff;
}

.dark .dropdown-menu {
    background: #282E0F;
    color: #fff;
}

.dark .secondry-btn {
    background: #282E0F;
    color: #fff;
    border-color: #282E0F !important;
}

.dark .attached-right .icon-btn {
    background: #282E0F;
    color: #fff;
}

.dark .ad-card-header-right .icon-btn {
    background: #282E0F;
    color: #fff;
}

.dark .uploaded-file-preview button.icon-btn {
    background: #282E0F;
    color: #fff;
}

.dark .tier-right .qty-btn {
    background: #282E0F;
    color: #fff;
}

.dark .price-breakdown-wrap .price-breakdown-value h6 {
    color: #D0FF00;
}

.dark .tabing-nav .nav-link.active, .dark .tabing-nav .nav-link:hover {
    background-color: rgba(208, 255, 0, 0.1215686275);
    color: #D0FF00;
}

.dark .common-form .form-group .form-control:disabled {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.dark .steps-list-wrap .steps-value .steps-number {
    background-color: #FFFFFF;
    border-color: rgba(17, 17, 17, 0.1019607843);
    color: #111111;
}

.dark .steps-list-wrap .steps-value.current-step .steps-number {
    background-color: #D0FF00;
    border-color: #FFFFFF;
    color: #111111;
}

.dark .steps-list-wrap .steps-value.completed-step .steps-number img {
    filter: brightness(0);
}

.dark .switch input:checked ~ .slider {
    background-color: #D0FF00;
    border-color: #FFFFFF;
    color: #111111;
}

    .dark .switch input:checked ~ .slider::before {
        background-color: #111111;
    }

.dark .active-status {
    background-color: rgba(201, 245, 190, 0.8);
    color: #111111;
    border-color: rgba(201, 245, 190, 0.8);
}

.dark .common-btn.arrow-btn img {
    filter: brightness(0) !important;
}

.starttestModal .inner-preview {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.starttestModal .preview-img,
.starttestModal .preview-video {
    padding: 16px 0px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1019607843);
    margin-bottom: 16px;
}

.starttestModal .combine-img {
    display: flex;
    align-items: center;
    gap: 16px;
}

.starttestModal .common-img-video {
    border-radius: 10px;
    height: 60px;
    -o-object-fit: cover;
    object-fit: cover;
}

.starttestModal .common-type-relative {
    position: relative;
}

.starttestModal .playpausecls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.previewimgcls .modal-body,
.previewvideocls .modal-body {
    padding: 0px !important;
}

.previewimgcls .modal-content,
.previewvideocls .modal-content {
    background: transparent !important;
}

.previewimgcls video,
.previewvideocls video {
    border-radius: 10px;
}

.previewimgcls .close-modal,
.previewvideocls .close-modal {
    position: absolute !important;
    right: 10px !important;
    top: 10px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    color: rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    transform: initial !important;
}

.bg-img-cls .close-modal::before,
.bg-img-cls .close-modal::after {
    transform: rotate(45deg);
    background: #fff !important;
}

/* ============================================ */
/* SCREEN POWER SECTION */
/* ============================================ */
.screen-power-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    margin-bottom: 24px;
}

.screen-power-module {
    display: flex;
    flex-direction: column;
    gap: 0;
}

    .screen-power-module .form-label {
        font-size: 20px;
        line-height: 25px;
        font-weight: 400;
        color: #111111;
        margin-bottom: 0;
    }

/* Power Toggle Button Group */
.power-toggle-group {
    display: flex;
    gap: 7px;
    align-items: center;
    background: #FFFFFF;
    padding: 6px;
    border-radius: 10px;
}

.power-toggle-btn {
    border: none;
    border-radius: 8px;
    padding: 6px;
    font-size: 14px;
    line-height: 19px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
    background-color: rgba(17, 17, 17, 0.1019607843);
    color: #111111;
}

    .power-toggle-btn.active {
        background-color: #111111;
        color: #D0FF00;
    }

    .power-toggle-btn:hover {
        transform: translateY(-2px);
    }

.power-toggle-separator {
    width: 3px;
    height: 24px;
    background-color: rgba(17, 17, 17, 0.6);
    margin: 0 4px;
}

/* ============================================ */
/* Adjust Modal SECTION start here */
/* ============================================ */
.brightness-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.brightness-title {
    font-size: 20px;
    line-height: 25px;
    font-weight: 400;
    color: #111111;
    margin-bottom: 0;
}

.mode-selector {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
}

.mode-option {
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    position: relative;
}

    .mode-option input[type=radio] {
        -moz-appearance: none;
        appearance: none;
        -webkit-appearance: none;
        width: 22px;
        height: 22px;
        border: 1px solid #101010;
        border-radius: 50%;
        outline: none;
        cursor: pointer;
        position: relative;
        transition: all 0.2s ease;
    }

        .mode-option input[type=radio]:checked {
            border-color: #111111;
            background-color: #D0FF00;
        }

            .mode-option input[type=radio]:checked::after {
                content: "";
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 12px;
                height: 12px;
                background-color: #111111;
                border-radius: 50%;
            }

    .mode-option label {
        font-size: 14px;
        font-weight: 400;
        line-height: 19px;
        color: rgba(17, 17, 17, 0.6);
        cursor: pointer;
        margin: 0;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
    }

.slider-container {
    margin-top: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .slider-container.hidden {
        display: none;
        opacity: 0;
    }

.mode-option.active label {
    color: #111111;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.percentage-label {
    font-size: 16px;
    font-weight: 500;
    color: #111;
    line-height: 21px;
}

.slider-track {
    flex: 1;
    position: relative;
}

.adjust-modal input[type=range] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 12px;
    background: transparent;
    outline: none;
    margin: 0;
    padding: 0;
}

    .adjust-modal input[type=range]::-webkit-slider-runnable-track {
        width: 100%;
        height: 12px;
        background: linear-gradient(to right, #000000 0%, #000000 var(--value-percent), #F0F7D1 var(--value-percent), #F0F7D1 100%);
        border-radius: 10px;
    }

    .adjust-modal input[type=range]::-moz-range-track {
        width: 100%;
        height: 12px;
        background: #F0F7D1;
        border-radius: 10px;
    }

    .adjust-modal input[type=range]::-moz-range-progress {
        height: 12px;
        background: #111111;
        border-radius: 10px;
    }

    .adjust-modal input[type=range]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 26px;
        height: 26px;
        background: #101010;
        border: 5px solid #D0FF00;
        border-radius: 50%;
        cursor: pointer;
        margin-top: -9px;
    }

    .adjust-modal input[type=range]::-moz-range-thumb {
        width: 26px;
        height: 26px;
        background: #101010;
        border: 5px solid #D0FF00;
        border-radius: 50%;
        cursor: pointer;
    }

    .adjust-modal input[type=range]::-ms-thumb {
        width: 26px;
        height: 26px;
        background: #101010;
        border: 5px solid #D0FF00;
        border-radius: 50%;
        cursor: pointer;
    }

.wrapeed-cls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrapped-all {
    width: 100%;
}

@media (max-width: 768px) {
    .brightness-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .brightness-title {
        font-size: 24px;
    }

    .mode-selector {
        gap: 25px;
    }

    .mode-option label {
        font-size: 16px;
    }

    .percentage-label {
        font-size: 16px;
        min-width: 40px;
    }
}

@media (max-width: 480px) {
    .brightness-title {
        font-size: 20px;
    }

    .mode-selector {
        gap: 20px;
    }

    .slider-wrapper {
        gap: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .screen-power-inner {
        margin-bottom: 5px;
    }

    .slider-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .slider-wrapper {
        width: 100%;
        gap: 10px;
    }
}
/* ============================================ */
/* Adjust Modal SECTION over here */
/* ============================================ */ /*# sourceMappingURL=style.css.map */


/* Runtime CSS over here .Net */
.show-tick .dropdown-menu .no-results {
    word-wrap: break-word;
    white-space: break-spaces;
    padding: 7px;
}

.dataTables_wrapper .dataTables_info {
    padding: 17px 15px 15px 15px;
}

.dataTables_paginate.paging_simple_numbers {
    padding: 11px 9px 9px 9px;
}

.mt-auto-cls {
    margin-top: auto;
}

.common-auth-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.checkingandforgotcls {
    display: flex;
    gap: 4px;
    align-items: center;
}

.common-auth-flex .commonbacklogincls {
    background: #D0FF001A !important;
    border-color: #D0FF001A !important;
    color: #fff !important;
}

.checkingandforgotcls .form-check-label {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 0px;
    line-height: 17px;
    margin-top: 4px;
}

.newtmpauthcls {
    justify-content: flex-end;
    margin-top: -28px;
}

.commoncheckremove .dropdown .dropdown-menu .inner li .check-mark {
    display: none !important;
}

.commoncheckremove .dropdown .dropdown-menu .inner li .dropdown-item {
    padding-left: 10px;
}

.checkingandforgotcls .form-check-input:checked {
    background-color: #d0ff00;
    border-color: #d0ff00;
}

.checkingandforgotcls .form-check-input:checked {
    background-color: #d0ff00;
    border-color: #d0ff00;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

@media only screen and (max-width: 1024px) {
    .common-auth-flex {
        flex-wrap: wrap;
    }
}

.input-phone {
    position: relative;
}

    .input-phone .input-phone-code {
        position: absolute;
        left: 0;
        top: 0;
        width: 60px;
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    .input-phone .phone-field {
        padding-left: 70px !important;
    }


/*Dashboard new design*/
.activity-log-list .activity-log-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    line-height: 16px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    color: rgba(var(--secondary-rgb), 0.6);
    padding: 16px 0;
}

@media only screen and (max-width: 767px) {
    .activity-log-list .activity-log-item {
        padding: 8px 0;
        flex-wrap: wrap;
        gap: 8px;
    }
}

.activity-log-list .activity-log-item:first-child {
    padding-top: 0;
}

.activity-log-list .activity-log-item:last-child {
    padding-bottom: 0;
}

.activity-log-list .activity-log-item h3 {
    font-size: 16px;
    line-height: 20px;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 8px;
}

.activity-log-list .activity-log-item .log-detail {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
}

    .activity-log-list .activity-log-item .log-detail picture {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 38px;
        width: 38px;
        min-width: 38px;
        border-radius: 8px;
        background-color: rgba(var(--secondary-rgb), 0.02);
        border: 1px solid rgba(var(--secondary-rgb), 0.1);
    }

        .activity-log-list .activity-log-item .log-detail picture img {
            height: 20px;
            width: 20px;
        }

    .activity-log-list .activity-log-item .log-detail p {
        width: 100%;
    }

.common-white-box-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

    .common-white-box-wrap .common-white-box {
        width: calc(50% - 7px);
    }

@media (max-width: 1199px) {
    .common-white-box-wrap .common-white-box {
        width: 100%;
    }
}

.common-white-box-wrap .common-white-box:last-child {
    margin-bottom: 20px;
}

.common-white-box-wrap .common-white-box-left {
    width: calc(66% - 7px);
}

@media (max-width: 1199px) {
    .common-white-box-wrap .common-white-box-left {
        width: 100%;
    }
}

.common-white-box-wrap .common-white-box-left .common-white-box {
    width: 100%;
}

.common-white-box-wrap .common-white-box-left .select-device-type {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    white-space: nowrap;
}

    .common-white-box-wrap .common-white-box-left .select-device-type .custom-input-btn {
        flex: 1;
    }

.common-white-box-wrap .common-white-box-right {
    width: calc(34% - 7px);
}

@media (max-width: 1199px) {
    .common-white-box-wrap .common-white-box-right {
        width: 100%;
    }
}

.common-white-box-wrap .common-white-box-right .common-white-box {
    width: 100%;
}

.common-white-box-wrap .common-white-box-right .common-white-box-wrap {
    position: sticky;
    top: 80px;
}

.price-breakdown-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

    .price-breakdown-wrap .breakdown-title {
        font-size: 14px;
        line-height: 16px;
        font-family: "Helvetica Neue", Arial, sans-serif;
        font-weight: 400;
        color: rgba(var(--secondary-rgb), 0.6);
        width: 100%;
    }

    .price-breakdown-wrap .price-breakdown-value {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 10px;
        padding-bottom: 14px;
        margin-bottom: 7px;
        border-bottom: 1px solid rgba(var(--secondary-rgb), 0.1);
    }

        .price-breakdown-wrap .price-breakdown-value:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .price-breakdown-wrap .price-breakdown-value p {
            width: calc(50% - 5px);
            font-size: 14px;
            line-height: 112%;
            font-weight: 400;
            color: rgba(var(--secondary-rgb), 0.7);
        }

            .price-breakdown-wrap .price-breakdown-value p strong {
                font-size: 16px;
                font-weight: 400;
                color: var(--secondary);
            }

@media (max-width: 1279px) {
    .price-breakdown-wrap .price-breakdown-value p strong {
        font-size: 14px;
    }
}

.price-breakdown-wrap .price-breakdown-value span {
    width: calc(50% - 5px);
    font-size: 14px;
    line-height: 112%;
    font-weight: 500;
    color: var(--secondary);
    text-align: right;
}

.price-breakdown-wrap .price-breakdown-value h6 {
    width: calc(50% - 5px);
    font-size: 18px;
    line-height: 112%;
    font-weight: 600;
    color: var(--secondary);
    font-family: "Manrope", sans-serif;
}

@media (max-width: 1199px) {
    .price-breakdown-wrap .price-breakdown-value h6 {
        font-size: 16px;
    }
}

.price-breakdown-wrap .price-breakdown-value h6:last-child {
    text-align: right;
}

.price-breakdown-wrap .price-breakdown-value.vendor-info {
    gap: 25px 12px;
}

    .price-breakdown-wrap .price-breakdown-value.vendor-info span {
        width: calc(68% - 6px);
        word-break: break-all;
    }

    .price-breakdown-wrap .price-breakdown-value.vendor-info p {
        width: calc(32% - 6px);
    }

.chart-white-box .box-head {
    border-bottom: none;
    padding-bottom: 10px;
}

    .chart-white-box .box-head .chart-le-wrap {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
    }

        .chart-white-box .box-head .chart-le-wrap .chart-legend {
            width: auto;
        }

    .chart-white-box .box-head .chart-legend {
        display: flex;
        gap: 8px;
        width: 100%;
        font-size: 14px;
        line-height: 16px;
        font-family: "Helvetica Neue", Arial, sans-serif;
        font-weight: 400;
        color: rgba(var(--secondary-rgb), 0.6);
    }

        .chart-white-box .box-head .chart-legend .legend-icon {
            display: block;
            height: 12px;
            width: 12px;
            min-width: 12px;
            background-color: var(--soft-lime);
        }

        .chart-white-box .box-head .chart-legend .general-icon,
        .chart-white-box .box-head .chart-legend .per-count-icon {
            display: block;
            height: 12px;
            width: 12px;
            min-width: 12px;
            background-color: var(--lime-yellow);
        }

.chart-white-box .box-body .chart-wrapper {
    min-height: 270px;
    position: relative;
}

.chart-white-box .primary-btn:hover img {
    filter: brightness(0);
}

#toast-container > div {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 8px;
    justify-content: flex-end;
}

#toast-container .toast-close-button {
    margin-top: -4px;
    position: unset;
    float: none;
    line-height: 18px;
    margin-left: auto;
}

.datetime-wrapper {
    position: relative;
}

    .datetime-wrapper input {
        padding-right: 40px;
    }

.icons-common {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 15px;
}

.lrf-flow-section .lrf-right .lrf-btn:hover {
    background-color: rgb(255, 255, 255) !important;
    color: rgb(17, 17, 17) !important;
    border-color: rgb(255, 255, 255) !important;
}

.dropdown-menu .inner {
    max-height: calc(100vh - 440px) !important;
}

.common-price-selected .common-currency-cls {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #111;
    border-radius: 50%;
    padding: 2px 12px 2px 12px;
    margin: 6px 0px 5px 8px;
    font-size: 16px;
    font-weight: 700 !important;
    font-family: "Manrope", sans-serif;
    line-height: 20px;
    width: 30px;
    height: 28px;
}

.common-price-selected .form-control {
    padding-left: 55px !important;
}

.single-row {
    min-height: 190px !important;
    overflow: hidden !important;
}

.commoncheckremove .input-group-text {
    position: absolute;
    right: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    margin: 2px 0 0 0;
    background: transparent;
    border: none;
    cursor: pointer;
    pointer-events: none;
    z-index: 1;
}

.commoncheckremove select {
    padding-right: 40px;
}

/*    .table-container-wrap .table-wrapper {
        overflow-x: auto;
    }*/

.table-container-wrap {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border: 1px solid rgba(var(--secondary-rgb), 0.1);
    /*    overflow: hidden;*/
}

.common-single-phonenumbercls .view-containet .phone-code {
    background-color: #1111111a;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    border-radius: 8px 0px 0px 8px;
}

.common-single-phonenumbercls .view-containet {
    margin-top: 5px;
}

.forall-icon-cls .dropdown.bootstrap-select .dropdown-toggle.btn-light::after {
    content: initial !important;
}

.cls-animation, .cls-animation * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

.forallcommon-form .duration-display {
    height: 38px;
    padding: 12px 16px;
    border: 1px solid rgba(var(--secondary-rgb), 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    background-color: var(--white);
    font-size: 14px;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.forallcommon-form .duration-value.placeholder {
    color: rgba(var(--secondary-rgb), 0.45);
    font-weight: 400;
}

.forallcommon-form .duration-value.filled {
    color: var(--secondary);
    font-weight: 500;
}

.forallcommon-form .duration-unit {
    color: rgba(var(--secondary-rgb), 0.75);
    font-weight: 500;
}

.forallcommon-form .d-none {
    display: none;
}

.forallcommon-form .col-duration {
    margin-left: auto;
    margin-right: 4rem;
}

@media only screen and (max-width: 767px){
    .starttestModal .inner-preview {
        flex-direction: column;
        gap: 10px;
        text-align: left;
    }
}

.common-table-all-cls {
    width: 49%;
}

.table-container-wrap table thead tr th:first-child {
    border-top-left-radius: 8px;
}

.table-container-wrap table thead tr th:last-child {
    border-top-right-radius: 8px;
}

.settings-wrapper .switch-setting .setting-label p {
    font-size: 14px;
    line-height: 17px;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    color: #9f9f9f;
}
.scrapped-btn {
    background-color: #FFE6EA;
    border-color: #FFE6EA;
    color: #8B2635;
}
.dark .scrapped-btn {
    background-color: #FFD4DBCC;
    border-color: #FFD4DBCC;
    color: #111111;
}

.pre-input {
    position: relative;
}

    .pre-input .form-control {
        padding-left: 24px !important;
        height: 42px;
    }

    .pre-input .pre-symbol {
        position: absolute;
        left: 10px;
        top: 13px;
        color: rgba(var(--secondary-rgb), 0.6);
        font-size: 14px;
        pointer-events: none;
        font-weight: 500;
        line-height: 16px;
        display: block;       
    }
.qty-inner {
    text-align: left;
    display: flex;
    justify-content: center;
}
/*    @media (min-width: 1800px){
        .pre-input .pre-symbol {
            margin-top: -1px;
        }
    }*/
@media (max-width: 480px) {
    .pre-input .pre-symbol {
        top: 11px;
    }

    .pre-input .form-control {
        height: 38px;
    }
}
    .pre-input input.filled ~ .pre-symbol {
        color: #111111;
    }
    .dark .pre-input input.filled ~ .pre-symbol {
        color: #fff;
    }
.align-column >div:first-child {
    width: calc(47.9% - 12px);
}
.align-column >div:last-child {
    width: calc(52.1% - 12px);
}
.active-btn.active-progress {
    min-width: 104px;
}
.status-progress {
    min-width: 62px;
    display: inline-block;
    text-align: center;
}
.dark .input-group-text i{
    color: #fff;
}
.top-minus .form-group{
    margin-top: -22px;
}
.percentage-input-cls {
    position: relative;
}

    .percentage-input-cls .form-control {
        padding-right: 30px;
    }

    .percentage-input-cls .percent-symbol {
        position: absolute;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
        color: #666;
        pointer-events: none;
        font-size: 14px;
        font-weight: 500;
    }

.percentage-input-cls .cls-duration {
    width:150px !important;
}
    @media only screen and (max-width: 1280px) {
        .table-container-wrap .table-wrapper {
        overflow-x: auto;
    }
}
@media only screen and (max-width: 1279px) {
    .align-column > div:first-child {
        width: calc(47% - 10px);
    }

    .align-column > div:last-child {
        width: calc(53% - 10px);
    }
}
@media only screen and (max-width: 991px) {
    .align-column > div:first-child {
        width: calc(47% - 8px);
    }

    .align-column > div:last-child {
        width: calc(53% - 8px);
    }
}
@media only screen and (max-width: 767px) {
    .common-table-all-cls {
        width: 100%;
    }
}

.widthcls-adding-minimum thead th:nth-child(1) {
    width: 209px;
}

.text-limit {
    display: inline-block;
    width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media only screen and (max-width: 1280px) {
    .status-progress {
        display: inline-flex;
        margin-top: 5px;
    }

    .common-select-height-content-cls .dropdown-toggle {
        min-height: 85px;
    }
}

.primary-btn {
    cursor: pointer;
}
.dark .starttestModal .common-img-video{
    filter: none;
}
.dark .screen-power-module .form-label,
.dark .mode-option.active label,
.dark .brightness-title,
.dark .percentage-label {
    color: #fff;
}
.dark .mode-option label {
    color: rgba(255,255,255,.7);
}
.dark .mode-option input[type=radio]{
    border-color: #fff;
}
.dark .power-toggle-group {
    background: rgba(var(--secondary-rgb), 0.1);
}
.dark .power-toggle-btn {
    background-color: rgba(17, 17, 17, 0.5);
    color: rgba(255, 255, 255, .8);
}
    .dark .power-toggle-btn.active {
        background-color: #111111;
        color: #D0FF00;
    }
/* DARK MODE RANGE SLIDER */
.dark .adjust-modal input[type=range]::-webkit-slider-runnable-track {
    background: linear-gradient( to right, #D0FF00 0%, /* filled part (value) */
    #D0FF00 var(--value-percent), #2A2A2A var(--value-percent), /* empty part */
    #2A2A2A 100% );
}

.dark .adjust-modal input[type=range]::-moz-range-track {
    background: #2A2A2A;
}

.dark .adjust-modal input[type=range]::-moz-range-progress {
    background: #D0FF00;
}
.dark .starttestModal .playpausecls img{
    filter: none;
}
.input-phone .phone-field {
    padding-left: 100px !important;
}
.input-phone .bootstrap-select {
    position: absolute;
    left: 0;
    width: auto !important;
    padding: 0 !important;
    border: 0 !important;
}
.input-phone .dropdown.bootstrap-select .dropdown-toggle.btn-light::after {
    right: 10px;
    width: 12px;
    height: 12px;
}
.input-phone .dropdown.bootstrap-select .dropdown-toggle.btn-light {
    padding-right: 30px;
    padding-left: 18px;
    min-width: 90px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-phone .dropdown.bootstrap-select > .dropdown-menu {
    min-width: 110px;
}

.input-phone .dropdown-menu .inner {
    max-height: 150px !important;
}
.common-form .form-group.delete-align{
    flex: none;
}
.delete-align-wrap{
    align-items: flex-start !important;
}
.remove-extra, .remove-extra > .dropdown{
    display: flex;
}
    /* When .remove-extra CONTAINS .bs-placeholder */
    .remove-extra:has(.bs-placeholder) .filter-option {
        display: block;
    }

    /* When .remove-extra DOES NOT CONTAIN .bs-placeholder */
    .remove-extra:not(:has(.bs-placeholder)) .filter-option {
        display: none;
    }

.remove-extra .dropdown-toggle {
    min-height: 42px;
}
.install-modal .deletemodal-action {
    grid-template-columns: repeat(1,1fr) !important;
}
#inventorymanagement .text-limit{
    width: 200px;
}

.ad-card {
    position: relative;
}

.common-delete-position-all {
    position: absolute;
    top: 10px;
    right: 16px;
}
.cls-ads-card:has(.common-delete-position-all) .ad-card-header-right {
    padding-right: 44px;
}
.dark .common-delete-position-all {
    background: #282E0F;
    color: #fff;
}

/*Document Preview Start 19-02-2026*/

.cls-preview-doc-modal .modal-dialog {
    max-width: 700px !important;
    width: 100%;
}
.cls-preview-doc-modal .modal-dialog .modal-header {
    padding: 16px;
}
.cls-preview-doc-modal .modal-dialog .modal-header .delete-model-title {
    padding-bottom: 0;
}
body.dark .cls-preview-doc-modal img {
    filter: none;
}

/*Document Preview End 19-02-2026*/




/* Runtime New CSS over here .Net */