html, body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-optical-sizing: auto;
    font-style: normal;
    text-rendering: optimizeLegibility;
    background-color:#f8f9fa;
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

/* overlayscrollbars */
:root {
    --os-size: 6px;
    --os-handle-bg: #888;
    --os-handle-bg-hover: #555;
    --os-track-bg: transparent;
    --os-handle-border-radius: 10px;
}
.os-theme-dark, .os-theme-light {
    --os-viewport-overflow: auto;
}

html,body,p,span,table,th,td,.btn,.card,.fs-normal{font-size: 0.9375rem;}
a {text-decoration: none;color: #000000; font-size: inherit;}
.cursor-default {cursor: default; cursor: -webkit-default;}
.cursor-pointer {cursor: pointer; cursor: -webkit-pointer;}
.cursor-help {cursor: help; cursor: -webkit-help;}
.cursor-grab {cursor: grab; cursor: -webkit-grab;}  
.cursor-move {cursor: move; cursor: -webkit-grabbing;}
.pointer-events-none {pointer-events: none; cursor: not-allowed;}
.bullet-point::before {content: "•";font-weight: bold;}
.media-manager-video-icon {opacity: 1; transition: opacity 0.3s;bottom: 5px;left: 3px;}
.bg-surface {background-color: rgba(253, 253, 253, 1) !important;}
.alert-subscription {background-image: linear-gradient(to right, #16222A 0%, #3A6073  51%, #16222A  100%);color: #fff;}

.fa-spin{--fa-animation-duration: 0.5s !important;}
.fast-spin {animation: fastspin 0.5s linear infinite; -webkit-animation: fastspin 0.5s linear infinite; }
@keyframes fastspin {0% {transform: rotate(0deg); }100% {transform: rotate(360deg); }}

.bg-light-active {background-color: #f1f3f5;}
.hover-danger:hover {background-color: #f8d7da !important;color: #58151c !important}
.hover-light:hover, .card .hover-light:hover {background-color: #f8f9fa;}
.hover-light-active:hover, .card .hover-light-active:hover {background-color: #f1f3f5;}
.hover-secondary:hover, .card .hover-secondary:hover {background-color: #6c757d !important;}
.hover-secondary-subtle:hover, .card .hover-secondary-subtle:hover {background-color: #e2e3e5 !important;}
.hover:hover {background-color: #f1f3f5;color: #000000;border-radius: 1rem;}
.hover-underline:hover {text-decoration: underline;}
.hover-action-arrow{ position: relative; padding-right: 2rem}.hover-action-arrow::after{ font-family: "Font Awesome 6 Pro"; font-weight: 900; content: "\f078"; font-size: 0.7em; position: absolute; top: 50%; right: 0.75rem; transform: translateY(-50%); opacity: 0; transition: opacity 0.2s ease-in-out}.hover-action-arrow:hover::after{ opacity: 1}[dir="rtl"] .hover-action-arrow{ padding-right: 0; padding-left: 2rem}[dir="rtl"] .hover-action-arrow::after{ right: auto; left: 0.75rem}
.hover-with-arrow:hover {background-color: #f1f3f5;color: #000000;border-radius: 1rem;}
.hover-with-arrow:hover::after {
    content: '\f054'; /* Font Awesome right arrow unicode */
    font-family: 'Font Awesome 6 Pro'; /* Specify the Font Awesome font */
    font-weight: 600; /* Use solid style */
    font-size: .875em;
    position: absolute;
    right: 1.5rem;
    opacity: 1;
    color: #6c757d;
}
*[dir=rtl] .hover-with-arrow:hover::after {content: '';} *[dir=rtl] .hover-with-arrow:hover::before {
    content: '\f053'; /* Font Awesome right arrow unicode */
    font-family: 'Font Awesome 6 Pro'; /* Specify the Font Awesome font */
    font-weight: 600; /* Use solid style */
    font-size: .875em;
    position: absolute;
    left: 1.5rem;
    opacity: 1;
    color: #6c757d;
}

.active-with-check::after {
    content: '\f00c'; /* Font Awesome right arrow unicode */
    font-family: 'Font Awesome 6 Pro'; /* Specify the Font Awesome font */
    font-weight: 600; /* Use solid style */
    position: absolute;
    right: 1rem;
    opacity: 1;
    color: #6c757d;
}
*[dir=rtl] .active-with-check::after {content: '';} *[dir=rtl] .active-with-check::before{
    content: '\f00c'; /* Font Awesome right arrow unicode */
    font-family: 'Font Awesome 6 Pro'; /* Specify the Font Awesome font */
    font-weight: 600; /* Use solid style */
    position: absolute;
    left: 1rem;
    opacity: 1;
    color: #6c757d;
}

/* Loading Placeholder */
@-webkit-keyframes placeHolderShimmer {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}
@keyframes placeHolderShimmer {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}
@-webkit-keyframes placeHolderShimmer-rtl {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}
@keyframes placeHolderShimmer-rtl {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}
.loading-placeholder-light {
    background: #f8f9fa;
    background: -webkit-linear-gradient(left, #f8f9fa 8%, #ffffff 18%, #f8f9fa 33%);
    background: linear-gradient(to right, #f8f9fa 8%, #ffffff 18%, #f8f9fa 33%);
    height: 3rem;
    position: relative;
    overflow: hidden;
    background-size: 200% 100%;
    -webkit-animation: placeHolderShimmer 2s infinite ease-out;
    animation: placeHolderShimmer 2s infinite ease-out;
}
.loading-placeholder {
    background: rgba(130, 130, 130, 0.2);
    background: -webkit-linear-gradient(left, rgba(130, 130, 130, 0.2) 8%, rgba(130, 130, 130, 0.3) 18%, rgba(130, 130, 130, 0.2) 33%);
    background: linear-gradient(to right, rgba(130, 130, 130, 0.2) 8%, rgba(130, 130, 130, 0.3) 18%, rgba(130, 130, 130, 0.2) 33%);
    height: 3rem;
    position: relative;
    overflow: hidden;
    background-size: 200% 100%;
    -webkit-animation: placeHolderShimmer 2s infinite ease-out;
    animation: placeHolderShimmer 2s infinite ease-out;
}
/* RTL (Right-to-Left) Styles */
*[dir="rtl"] .loading-placeholder-light {
    background: #f8f9fa;
    background: -webkit-linear-gradient(right, #f8f9fa 8%, #ffffff 18%, #f8f9fa 33%);
    background: linear-gradient(to left, #f8f9fa 8%, #ffffff 18%, #f8f9fa 33%);
    background-size: 200% 100%;
    -webkit-animation: placeHolderShimmer-rtl 2s infinite ease-out;
    animation: placeHolderShimmer-rtl 2s infinite ease-out;
}
*[dir="rtl"] .loading-placeholder {
    background: rgba(130, 130, 130, 0.2);
    background: -webkit-linear-gradient(right, rgba(130, 130, 130, 0.2) 8%, rgba(130, 130, 130, 0.3) 18%, rgba(130, 130, 130, 0.2) 33%);
    background: linear-gradient(to left, rgba(130, 130, 130, 0.2) 8%, rgba(130, 130, 130, 0.3) 18%, rgba(130, 130, 130, 0.2) 33%);
    background-size: 200% 100%;
    -webkit-animation: placeHolderShimmer-rtl 2s infinite ease-out;
    animation: placeHolderShimmer-rtl 2s infinite ease-out;
}

.js-ready-image-loader .image-loader{display:block;position:relative;overflow:hidden;background-color:#e2e3e5;background-image:linear-gradient(to right,#e2e3e5 0%,#ffffff 50%,#e2e3e5 100%);background-size:200% 100%;animation:placeholderShimmer 1.5s linear infinite;}*[dir="rtl"].js-ready-image-loader .image-loader{animation-name:placeholderShimmer-rtl;}@keyframes placeholderShimmer{0%{background-position:100% 0}100%{background-position:-100% 0}}@keyframes placeholderShimmer-rtl{0%{background-position:-100% 0}100%{background-position:100% 0}}.image-loader>img{opacity:1;transition:opacity .5s ease-in-out;}.js-ready-image-loader .image-loader>img{opacity:0;}.js-ready-image-loader .image-loader.is-loaded{background-image:none;background-color:transparent;animation:none;}.js-ready-image-loader .image-loader.is-loaded>img{opacity:1;}.image-loader img,.image-loader video{opacity:1;transition:opacity .5s ease-in-out;}.js-ready-image-loader .image-loader img,.js-ready-image-loader .image-loader video{opacity:0;}.js-ready-image-loader .image-loader.is-loaded img,.js-ready-image-loader .image-loader.is-loaded video{opacity:1;}

.width-0{width:0!important;}.width-0-5{width:.5rem!important;}.width-0-75{width:.75rem!important;}.width-1{width:1rem!important;}.width-1-5{width:1.5rem!important;}.width-2{width:2rem!important;}.width-2-5{width:2.5rem!important;}.width-3{width:3rem!important;}.width-3-5{width:3.5rem!important;}.width-4{width:4rem!important;}.width-4-5{width:4.5rem!important;}.width-5{width:5rem!important;}.width-5-5{width:5.5rem!important;}.width-6{width:6rem!important;}.width-6-5{width:6.5rem!important;}.width-7{width:7rem!important;}.width-7-5{width:7.5rem!important;}.width-8{width:8rem!important;}.width-8-5{width:8.5rem!important;}.width-9{width:9rem!important;}.width-9-5{width:9.5rem!important;}.width-10{width:10rem!important;}.width-10-5{width:10.5rem!important;}.width-11{width:11rem!important;}.width-11-5{width:11.5rem!important;}.width-12{width:12rem!important;}.width-12-5{width:12.5rem!important;}.width-13{width:13rem!important;}.width-13-5{width:13.5rem!important;}.width-14{width:14rem!important;}.width-14-5{width:14.5rem!important;}.width-15{width:15rem!important;}.width-15-5{width:15.5rem!important;}.width-16{width:16rem!important;}.width-16-5{width:16.5rem!important;}.width-17{width:17rem!important;}.width-17-5{width:17.5rem!important;}.width-18{width:18rem!important;}.width-18-5{width:18.5rem!important;}.width-19{width:19rem!important;}.width-19-5{width:19.5rem!important;}.width-20{width:20rem!important;}.width-25{width:25rem!important;}.width-30{width:30rem!important;}.height-0{height:0!important;}.height-0-5{height:.5rem!important;}.height-0-75{height:.75rem!important;}.height-1{height:1rem!important;}.height-1-5{height:1.5rem!important;}.height-2{height:2rem!important;}.height-2-5{height:2.5rem!important;}.height-3{height:3rem!important;}.height-3-5{height:3.5rem!important;}.height-4{height:4rem!important;}.height-4-5{height:4.5rem!important;}.height-5{height:5rem!important;}.height-5-5{height:5.5rem!important;}.height-6{height:6rem!important;}.height-6-5{height:6.5rem!important;}.height-7{height:7rem!important;}.height-7-5{height:7.5rem!important;}.height-8{height:8rem!important;}.height-8-5{height:8.5rem!important;}.height-9{height:9rem!important;}.height-9-5{height:9.5rem!important;}.height-10{height:10rem!important;}.height-10-5{height:10.5rem!important;}.height-11§{height:11rem!important;}.height-11-5{height:11.5rem!important;}.height-12{height:12rem!important;}.height-12-5{height:12.5rem!important;}.height-13{height:13rem!important;}.height-13-5{height:13.5rem!important;}.height-14{height:14rem!important;}.height-14-5{height:14.5rem!important;}.height-15{height:15rem!important;}.height-15-5{height:15.5rem!important;}.height-16{height:16rem!important;}.height-16-5{height:16.5rem!important;}.height-17{height:17rem!important;}.height-17-5{height:17.5rem!important;}.height-18{height:18rem!important;}.height-18-5{height:18.5rem!important;}.height-19{height:19rem!important;}.height-19-5{height:19.5rem!important;}.height-20{height:20rem!important;}.height-25{height:25rem!important;}.height-30{height:30rem!important;}.max-width-0{max-width:0!important;}.max-width-0-5{max-width:.5rem!important;}.max-width-1{max-width:1rem!important;}.max-width-1-5{max-width:1.5rem!important;}.max-width-2{max-width:2rem!important;}.max-width-2-5{max-width:2.5rem!important;}.max-width-3{max-width:3rem!important;}.max-width-3-5{max-width:3.5rem!important;}.max-width-4{max-width:4rem!important;}.max-width-4-5{max-width:4.5rem!important;}.max-width-5{max-width:5rem!important;}.max-width-5-5{max-width:5.5rem!important;}.max-width-6{max-width:6rem!important;}.max-width-6-5{max-width:6.5rem!important;}.max-width-7{max-width:7rem!important;}.max-width-7-5{max-width:7.5rem!important;}.max-width-8{max-width:8rem!important;}.max-width-8-5{max-width:8.5rem!important;}.max-width-9{max-width:9rem!important;}.max-width-9-5{max-width:9.5rem!important;}.max-width-10{max-width:10rem!important;}.max-width-10-5{max-width:10.5rem!important;}.max-width-11{max-width:11rem!important;}.max-width-11-5{max-width:11.5rem!important;}.max-width-12{max-width:12rem!important;}.max-width-12-5{max-width:12.5rem!important;}.max-width-13{max-width:13rem!important;}.max-width-13-5{max-width:13.5rem!important;}.max-width-14{max-width:14rem!important;}.max-width-14-5{max-width:14.5rem!important;}.max-width-15{max-width:15rem!important;}.max-width-15-5{max-width:15.5rem!important;}.max-width-16{max-width:16rem!important;}.max-width-16-5{max-width:16.5rem!important;}.max-width-17{max-width:17rem!important;}.max-width-17-5{max-width:17.5rem!important;}.max-width-18{max-width:18rem!important;}.max-width-18-5{max-width:18.5rem!important;}.max-width-19{max-width:19rem!important;}.max-width-19-5{max-width:19.5rem!important;}.max-width-20{max-width:20rem!important;}.max-width-25{max-width:25rem!important;}.max-width-30{max-width:30rem!important;}.max-height-0{max-height:0!important;}.max-height-0-5{max-height:.5rem!important;}.max-height-1{max-height:1rem!important;}.max-height-1-5{max-height:1.5rem!important;}.max-height-2{max-height:2rem!important;}.max-height-2-5{max-height:2.5rem!important;}.max-height-3{max-height:3rem!important;}.max-height-3-5{max-height:3.5rem!important;}.max-height-4{max-height:4rem!important;}.max-height-4-5{max-height:4.5rem!important;}.max-height-5{max-height:5rem!important;}.max-height-5-5{max-height:5.5rem!important;}.max-height-6{max-height:6rem!important;}.max-height-6-5{max-height:6.5rem!important;}.max-height-7{max-height:7rem!important;}.max-height-7-5{max-height:7.5rem!important;}.max-height-8{max-height:8rem!important;}.max-height-8-5{max-height:8.5rem!important;}.max-height-9{max-height:9rem!important;}.max-height-9-5{max-height:9.5rem!important;}.max-height-10{max-height:10rem!important;}.max-height-10-5{max-height:10.5rem!important;}.max-height-11{max-height:11rem!important;}.max-height-11-5{max-height:11.5rem!important;}.max-height-12{max-height:12rem!important;}.max-height-12-5{max-height:12.5rem!important;}.max-height-13{max-height:13rem!important;}.max-height-13-5{max-height:13.5rem!important;}.max-height-14{max-height:14rem!important;}.max-height-14-5{max-height:14.5rem!important;}.max-height-15{max-height:15rem!important;}.max-height-15-5{max-height:15.5rem!important;}.max-height-16{max-height:16rem!important;}.max-height-16-5{max-height:16.5rem!important;}.max-height-17{max-height:17rem!important;}.max-height-17-5{max-height:17.5rem!important;}.max-height-18{max-height:18rem!important;}.max-height-18-5{max-height:18.5rem!important;}.max-height-19{max-height:19rem!important;}.max-height-19-5{max-height:19.5rem!important;}.max-height-20{max-height:20rem!important;}.max-height-25{max-height:25rem!important;}.max-height-30{max-height:30rem!important;}.max-height-35{max-height:35rem!important;}.max-height-40{max-height:40rem!important;}.min-width-0{min-width:0!important;}.min-width-0-5{min-width:.5rem!important;}.min-width-1{min-width:1rem!important;}.min-width-1-5{min-width:1.5rem!important;}.min-width-2{min-width:2rem!important;}.min-width-2-5{min-width:2.5rem!important;}.min-width-3{min-width:3rem!important;}.min-width-3-5{min-width:3.5rem!important;}.min-width-4{min-width:4rem!important;}.min-width-4-5{min-width:4.5rem!important;}.min-width-5{min-width:5rem!important;}.min-width-5-5{min-width:5.5rem!important;}.min-width-6{min-width:6rem!important;}.min-width-6-5{min-width:6.5rem!important;}.min-width-7{min-width:7rem!important;}.min-width-7-5{min-width:7.5rem!important;}.min-width-8{min-width:8rem!important;}.min-width-8-5{min-width:8.5rem!important;}.min-width-9{min-width:9rem!important;}.min-width-9-5{min-width:9.5rem!important;}.min-width-10{min-width:10rem!important;}.min-width-10-5{min-width:10.5rem!important;}.min-width-11{min-width:11rem!important;}.min-width-11-5{min-width:11.5rem!important;}.min-width-12{min-width:12rem!important;}.min-width-12-5{min-width:12.5rem!important;}.min-width-13{min-width:13rem!important;}.min-width-13-5{min-width:13.5rem!important;}.min-width-14{min-width:14rem!important;}.min-width-14-5{min-width:14.5rem!important;}.min-width-15{min-width:15rem!important;}.min-width-15-5{min-width:15.5rem!important;}.min-width-16{min-width:16rem!important;}.min-width-16-5{min-width:16.5rem!important;}.min-width-17{min-width:17rem!important;}.min-width-17-5{min-width:17.5rem!important;}.min-width-18{min-width:18rem!important;}.min-width-18-5{min-width:18.5rem!important;}.min-width-19{min-width:19rem!important;}.min-width-19-5{min-width:19.5rem!important;}.min-width-20{min-width:20rem!important;}.min-width-25{min-width:25rem!important;}.min-width-30{min-width:30rem!important;}.min-height-0{min-height:0!important;}.min-height-0-5{min-height:.5rem!important;}.min-height-1{min-height:1rem!important;}.min-height-1-5{min-height:1.5rem!important;}.min-height-2{min-height:2rem!important;}.min-height-2-5{min-height:2.5rem!important;}.min-height-3{min-height:3rem!important;}.min-height-3-5{min-height:3.5rem!important;}.min-height-4{min-height:4rem!important;}.min-height-4-5{min-height:4.5rem!important;}.min-height-5{min-height:5rem!important;}.min-height-5-5{min-height:5.5rem!important;}.min-height-6{min-height:6rem!important;}.min-height-6-5{min-height:6.5rem!important;}.min-height-7{min-height:7rem!important;}.min-height-7-5{min-height:7.5rem!important;}.min-height-8{min-height:8rem!important;}.min-height-8-5{min-height:8.5rem!important;}.min-height-9{min-height:9rem!important;}.min-height-9-5{min-height:9.5rem!important;}.min-height-10{min-height:10rem!important;}.min-height-10-5{min-height:10.5rem!important;}.min-height-11{min-height:11rem!important;}.min-height-11-5{min-height:11.5rem!important;}.min-height-12{min-height:12rem!important;}.min-height-12-5{min-height:12.5rem!important;}.min-height-13{min-height:13rem!important;}.min-height-13-5{min-height:13.5rem!important;}.min-height-14{min-height:14rem!important;}.min-height-14-5{min-height:14.5rem!important;}.min-height-15{min-height:15rem!important;}.min-height-15-5{min-height:15.5rem!important;}.min-height-16{min-height:16rem!important;}.min-height-16-5{min-height:16.5rem!important;}.min-height-17{min-height:17rem!important;}.min-height-17-5{min-height:17.5rem!important;}.min-height-18{min-height:18rem!important;}.min-height-18-5{min-height:18.5rem!important;}.min-height-19{min-height:19rem!important;}.min-height-19-5{min-height:19.5rem!important;}.min-height-20{min-height:20rem!important;}.min-height-25{min-height:25rem!important;}.min-height-30{min-height:30rem!important;}.min-height-35{min-height:35rem!important;}.min-height-40{min-height:40rem!important;}
.vh-75 {height: 75vh!important}.min-vh-75 {min-height: 75vh!important}.max-vh-75 {max-height: 75vh!important}.vh-50 {height: 50vh!important}.min-vh-50 {min-height: 50vh!important}.max-vh-50 {max-height: 50vh!important}.vh-25 {height: 25vh!important}.min-vh-25 {min-height: 25vh!important}.max-vh-25 {max-height: 25vh!important}

.page-title{font-size:1.25rem!important;font-weight:500!important;}.page-title-icon{font-size:1.25rem!important;margin:0 1rem 0 .5rem!important;}*[dir=rtl] .page-title-icon{margin:0 .5rem 0 1rem!important;}@media (max-width:767.98px){.page-title{font-size:1.10rem!important;font-weight:600!important}.page-title-icon{font-size:1.10rem!important;margin:0 .75rem 0 .5rem!important}*[dir=rtl] .page-title-icon{margin:0 .5rem 0 .75rem!important;}}

.tiny {font-size: .5em}
.little {font-size: .75em}
.small-important {font-size: .875em !important}
.fs-default {font-size: 1rem !important}
.fs-inherit {font-size: inherit !important;}
.fs-md {font-size: clamp(1.5rem, 4vw + 1rem, 2.5rem) !important;}
.fs-lg {font-size: clamp(2rem, 5vw + 1rem, 3rem) !important;}
.fs-xl {font-size: clamp(2.5rem, 6vw + 1rem, 4rem) !important;}
.fs-xxl {font-size: clamp(3rem, 7vw + 1rem, 5rem) !important;}
.fs-xxxl {font-size: clamp(3.5rem, 8vw + 1rem, 6rem) !important;}
.text-no-wrap {white-space: nowrap !important;}

@media (min-width:768px){.desktop-vh-100{height:100vh}}
@media (max-width:767.98px){.small-md{font-size:.875em}}

@media (max-width:575.98px){.btn-localize-sm{padding:0!important}.btn-localize-sm i{padding:5px 6px 3px 6px!important;font-size:calc(1.325rem + .9vw)!important;}.btn-localize-lg{padding:0!important}.btn-localize-lg i{padding:6px 8px 5px 8px!important;font-size:calc(1.325rem + .9vw)!important;}}

.border-light-emphasis{border-color:rgba(36, 41, 48, 0.08) !important;}
.border-dotted{border-style: dotted !important;}
.border-dashed{border-style: dashed !important;}

.padding-top-above-header{padding-top: 55px !important;}
.fixed-header {position: fixed;top: 0;z-index: 1020;}
@media (min-width: 767.98px) {
    .main_content .fixed-header {width: calc(100% - 250px);}
    .main_content.full_main_content .fixed-header {width: calc(100% - 80px);}
}
@media (max-width: 991px) {
    .main_content .fixed-header {width: 100%}
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .main_content .fixed-header {width: calc(100% - 20%);}
    .main_content.full_main_content .fixed-header {width: calc(100% - 80px);}
}

/* Allow close button to work for toast alert */
#alert .btn-close{pointer-events:auto;}.alert-small{padding:.5rem!important;}.alert-small .btn-close{padding:1rem .5rem!important;}.alert-icon{font-size:1.25rem;margin-right:.5rem;margin-left:.25rem;}.alert .alert-content{flex-grow:1;padding-top:.25rem;}
*[dir=rtl] .alert button.btn-close{left:0; right: unset;}*[dir=rtl] .alert-dismissible{padding-left: 3rem; padding-right:1rem;}

.p-0-5 {padding: 0.12rem;} .ps-0-5 {padding-left: 0.12rem;} .pe-0-5 {padding-right: 0.12rem;} .px-0-5 {padding-left: 0.12rem; padding-right: 0.12rem;} .py-0-5 {padding-top: 0.12rem; padding-bottom: 0.12rem;}
.p-2-5 {padding: 0.75rem;} .ps-2-5 {padding-left: 0.75rem;} .pe-2-5 {padding-right: 0.75rem;} .px-2-5 {padding-left: 0.75rem; padding-right: 0.75rem;} .py-2-5 {padding-top: 0.75rem; padding-bottom: 0.75rem;}
.m-0-5 {padding: 0.12rem;} .ms-0-5 {padding-left: 0.12rem;} .me-0-5 {padding-right: 0.12rem;} .mx-0-5 {padding-left: 0.12rem; padding-right: 0.12rem;} .my-0-5 {padding-top: 0.12rem; padding-bottom: 0.12rem;}
.m-2-5 {margin: 0.75rem;}.ms-2-5 {margin-left: 0.75rem;}.me-2-5 {margin-right: 0.75rem;}.mx-2-5 {margin-left: 0.75rem; margin-right: 0.75rem;}.my-2-5 {margin-top: 0.75rem; margin-bottom: 0.75rem;}
/* RTL */
*[dir=rtl] .ps-0-5 { padding-right: 0.12rem !important; padding-left: unset;}
*[dir=rtl] .pe-0-5 { padding-left: 0.12rem !important; padding-right: unset;}
*[dir=rtl] .ps-2-5 { padding-right: 0.75rem !important; padding-left: unset;}
*[dir=rtl] .pe-2-5 { padding-left: 0.75rem !important; padding-right: unset;}
*[dir=rtl] .ms-0-5 { margin-right: 0.12rem !important; margin-left: unset;}
*[dir=rtl] .me-0-5 { margin-left: 0.12rem !important; margin-right: unset;}
*[dir=rtl] .ms-2-5 { margin-right: 0.75rem !important; margin-left: unset;}
*[dir=rtl] .me-2-5 { margin-left: 0.75rem !important; margin-right: unset;}

.dropdown-menu{ box-shadow:0px 4px 16px rgba(0, 0, 0, 0.04); border: 1px solid #e9ecef; border-radius:1rem; padding: 0.25rem !important;margin-top:0.3rem !important;min-width:15rem; max-width: calc(100vw - 2rem);overflow: hidden auto;max-height: 75vh;scrollbar-width: thin;}
.dropdown-menu-notification{width:20rem; max-width: calc(100vw - 2rem);}
.dropdown-menu-language{margin-top:1rem !important;}
.dropdown-menu-limit{ margin-top:.5rem !important; min-width: 5rem; max-width: 5rem; border-radius:0.375rem;}
.dropdown-menu-sm{ margin-top:.5rem !important; min-width: 5rem; max-width: 5rem; border-radius:0.375rem;}
.dropdown-menu-md{ margin-top:.5rem !important; min-width: 7.5rem; max-width: 7.5rem;}
.dropdown-menu-lg{ margin-top:.5rem !important; min-width: 10rem; max-width: 10rem;}

.dropdown-menu-limit .dropdown-item:active, .dropdown-menu-limit .dropdown-item:hover, .dropdown-menu-limit .dropdown-item:focus, .dropdown-menu-limit .dropdown-item.active { border-radius:0.375rem !important;}
.dropdown-menu li{width:100%;display:block !important;font-size: 0.875rem;}.dropdown-item{padding: 6.667px 12px !important;text-align: left;font-size: 0.875rem;}.dropdown-content{padding: 6.667px 12px;line-height: 1.25;text-align: left;}
.dropdown-item:active, .dropdown-item:hover, .dropdown-item:focus, .dropdown-item.active { background-color:#f1f3f5; color:#000000; border-radius:1rem;}
.dropdown-divider {border-top: 1px solid #e9ecef;margin:0.25rem 0}

.dropdown-menu-sort{min-width: 150px !important;width: max-content !important; padding:0.75rem !important;}
.dropdown-menu-sort .dropdown-item{padding: 0.25rem 0.375rem !important;border-radius:0.5rem !important;}
.dropdown-sort .dropdown-toggle:after{display: none !important;}
.dropdown-menu-autocomplete {width:calc(100% - 2rem) !important;box-shadow:0px 4px 16px rgba(0, 0, 0, 0.10);margin:0 !important}
.dropdown-menu-autocomplete .dropdown-item{white-space: normal !important;}
.dropdown-toggle-without-icon::after {display:none !important;}

/* Google Maps Autocomplete */
.pac-container{ border-radius:1rem; padding: 0.5rem;} .pac-item{ cursor: pointer; border-top: 0; border-bottom: 0; padding-right: 0.5rem; padding-left: 0.5rem; padding-top: 0.1rem; padding-bottom: 0.1rem;} .pac-item:hover{ background-color: #f1f3f5; color: #000; border-radius:0.75rem;} .pac-matched{ font-weight: bold;} .pac-item:last-child{ border-bottom: none;} .pac-icon{ display: none;}
.gm-style-iw button[title="Close"] {display: none !important;}
div.gm-style-iw {width: 150px}
.gm-style .gm-style-iw{font:inherit;}

.popover {border: 1px solid #e9ecef; border-radius:1rem;}
.popover .popover-header {border-bottom: 1px solid #e9ecef; background-color:#f1f3f5;}
.bs-popover-top>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before {border-top-color: #e9ecef}
.bs-popover-end>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before {border-right-color: #e9ecef;}
.bs-popover-bottom>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before {border-bottom-color: #e9ecef;}
.bs-popover-start>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before {border-left-color: #e9ecef;}

.expand {height: 0;overflow: hidden;transition: height 0.3s ease-out;}
.expand.show {height: auto;}

.card{border:1px solid rgba(36,41,48,.08);border-radius:calc(1rem* 1);}.card,.card-header,.card-body{background:#fff;}.card-header{border-bottom:1px solid rgba(36,41,48,.08);}.card-header:first-child{border-radius:calc(1rem* 1) calc(1rem* 1) 0 0;}.card-footer{border-top:1px solid rgba(36,41,48,.08);}.card-footer:last-child{border-radius:0 0 calc(1rem* 1) calc(1rem* 1);}.card-body:last-child{border-radius:calc(1rem* 1);}.card-body{padding:calc(1rem* 1);}@media(max-width:991px){.card-body{padding:calc(1rem* 1)}}

.pickr .pcr-button{height: 3.5rem; width: 3.5rem; border: 1px solid #e9ecef;}.pcr-app{box-shadow:0px 4px 16px rgba(0, 0, 0, 0.04); border: 1px solid #e9ecef; border-radius:1rem; padding: 0.25rem !important;}.pcr-app .pcr-interaction .pcr-type{display: none}.pcr-app .pcr-interaction .pcr-save{border-radius: 0.375rem !important; background-color: #000000 !important;color: #ffffff !important;}.pcr-app .pcr-interaction input{border-radius: 0.375rem !important;}.pcr-app .pcr-interaction input:focus {box-shadow: 0 0 0 1px rgba(255, 255, 255, .85), 0 0 0 3px rgba(0, 0, 0, .75);}

/* Swal alert and Modal */
.swal2-popup, .swal2-modal {padding: 0 0 1em !important; border-radius: 1rem !important;}
.swal2-icon {margin-top: 2em !important;}
.swal2-title {font-size: 1.25rem !important;}
.swal2-html-container {font-size: 1rem !important;}
.swal2-actions {align-items: end !important; justify-content: end !important;border-top: 1px solid rgba(36, 41, 48, 0.08); padding: 1em 1em 0em 1em !important; margin:0 !important; margin-top:1em !important;}
.swal2-close{width: 1em !important;height: 1em !important;}

.modal .modal-content{border-color:rgba(36,41,48,.08);border-radius:calc(1rem - 1px);}.modal .modal-header{border-bottom-color:rgba(36,41,48,.08);border-top-left-radius:calc(1rem - 1px);border-top-right-radius:calc(1rem - 1px);}.modal .modal-footer{border-top-color:rgba(36,41,48,.08);border-bottom-right-radius:calc(1rem - 1px);border-bottom-left-radius:calc(1rem - 1px);}

.modal-help{background:rgb(255,255,255)!important;width:400px;position:fixed!important;bottom:80px!important;right:1rem!important;z-index:10000000;border-radius:1rem!important;transition:width .15s ease-in-out!important;box-shadow:0 6px 6px 0 rgba(0,0,0,.02),0 8px 24px 0 rgba(0,0,0,.12)!important;display:flex;flex-direction:column;}*[dir=rtl] .modal-help{left:1rem!important;right:auto!important;}.modal-help .modal-content{display:flex;flex-direction:column;height:100%;}.modal-help .modal-header{flex-shrink:0;}.modal-help .modal-footer{flex-shrink:0;}.modal-help .modal-body{flex-grow:1;overflow-y:auto;height:580px}@media (max-width:568px){.modal-help{width:100%!important;height:100%!important;bottom:0!important;right:0!important;margin:0!important;box-sizing:border-box;display:flex;flex-direction:column;}*[dir=rtl] .modal-help{left:0!important;right:auto!important;}.modal-help .modal-body{flex-grow:1;overflow-y:auto;box-sizing:border-box;}.modal-help .modal-header,.modal-help .modal-footer{flex-shrink:0!important;border-radius:0!important;}}@media (min-width:569px) and (max-width:768px){.modal-help{width:60%!important;bottom:80px!important;}}

.form-control{font-size:.9375rem;color:#000;background-color:#fff;border:1px solid #ced4da;border-radius:calc(.5rem* 1);}.form-control::-moz-placeholder{color:#adb5bd;opacity:1;}.form-control::placeholder{color:#adb5bd;opacity:1;}.form-control-md{height:calc(2.625rem* 1);}.col-form-label{display:inline-block;font-weight:500;word-break:break-word;cursor:default;color:#000;padding-bottom:0;font-size:.9375rem;}.form-select{font-size:.9375rem;}

.input-set{position:relative;}.input-set .input-set-icon + input{padding-left:30px;}*[dir="rtl"] .input-set .input-set-icon + input{padding-left:10px;padding-right:30px;}.input-set .input-set-text + input{padding-left:50px;}*[dir="rtl"] .input-set .input-set-text + input{padding-left:10px;padding-right:50px;}.input-set-icon{position:absolute;left:10px;top:50%;transform:translateY(-50%)!important;pointer-events:none;}*[dir="rtl"] .input-set-icon{left:auto;right:10px;transform:translateY(-50%)!important;}.input-set-text{position:absolute;left:10px;top:50%;transform:translateY(-50%)!important;pointer-events:none;}*[dir="rtl"] .input-set-text{left:auto;right:10px;transform:translateY(-50%)!important;}

.form-check-input {width: 1.25em;height: 1.25em;margin-top: .10em;}
.form-switch .form-check-input {width: 3em; height: 1.75em;}
.form-check.form-switch + .form-text {margin-top: .5rem;}
.input-group .input-group-text > img {width:20px !important}
img.language-icon {width:20px !important}
.form-select {background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 6l5-5 5 5M3 10l5 5 5-5'/%3e%3c/svg%3e");}
.form-check .form-check-label {padding-left: 0.25rem;}
*[dir=rtl] .form-check .form-check-input {float: right; margin-left: 0;}
*[dir=rtl] .form-check .form-check-label {float: right; padding-right: 0.25rem; padding-left: 0;}
*[dir=rtl] .form-check.form-switch {padding-left: 0;}
*[dir=rtl] .form-check.form-switch .form-check-input {background-position: right center;}
[dir=rtl] .form-check.form-switch .form-check-input:checked {background-position: left center;}

*[dir=rtl] .btn-group>.btn:not(:last-child):not(.dropdown-toggle),*[dir=rtl] .btn-group>.btn.dropdown-toggle-split:first-child,.btn-group>.btn-group:not(:last-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:inherit;border-bottom-right-radius:inherit;}*[dir=rtl] .btn-group>.btn:nth-child(n+3),*[dir=rtl] .btn-group>:not(.btn-check)+.btn,*[dir=rtl] .btn-group>.btn-group:not(:first-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0;border-top-left-radius:inherit;border-bottom-left-radius:inherit;}

.icon-sort {display: inline-block;content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 6l5-5 5 5M3 10l5 5 5-5'/%3e%3c/svg%3e");width: 0.75em;}

.btn-white{--bs-btn-color:#000000;--bs-btn-bg:#ffffff;--bs-btn-border-color:#cccccc;--bs-btn-hover-color:#000000;--bs-btn-hover-bg:#f9f9f9;--bs-btn-hover-border-color:#cccccc;--bs-btn-focus-shadow-rgb:0,0,0;--bs-btn-active-color:#000000;--bs-btn-active-bg:#24293014;--bs-btn-active-border-color:#cccccc;--bs-btn-active-shadow:inset 0 3px 5px rgba(0,0,0,.125);--bs-btn-disabled-color:#000000;--bs-btn-disabled-bg:#f0f0f0;--bs-btn-disabled-border-color:#cccccc;}
.btn-transparent{--bs-btn-color:#000000;--bs-btn-bg:transparent;--bs-btn-border-color:transparent;--bs-btn-hover-color:#000000;--bs-btn-hover-bg:#f1f3f5;--bs-btn-hover-border-color:transparent;--bs-btn-focus-shadow-rgb:0,0,0;--bs-btn-active-color:#000000;--bs-btn-active-bg:#f1f3f5;--bs-btn-active-border-color:transparent;--bs-btn-active-shadow:inset 0 3px 5px rgba(0,0,0,.125);--bs-btn-disabled-color:#000000;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:transparent;}
.btn.btn-white:not(.btn-transparent){box-shadow:0 1px 2px rgba(0,0,0,0.12),0 1px 1px rgba(0,0,0,0.24);}

.password{position:relative;}.password .bi,.password .fa,.password .far,.password .fal{position:absolute;margin-top:-19px;right:10px;transform:translateY(-50%);cursor:pointer;z-index:5;font-size:1rem;}*[dir="rtl"] .password .bi,*[dir="rtl"] .password .fa,*[dir="rtl"] .password .far,*[dir="rtl"] .password .fal {left: 10px; right: auto;}.password .form-control.is-invalid {background-image: none;}.password ::-ms-reveal {display: none;}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {font-weight: 600;}

.pagination .page-item .page-link{font-size:.875rem;}*[dir="rtl"] .pagination{display:flex;padding-right:0;list-style:none;}*[dir="rtl"] .page-item:not(:first-child) .page-link{margin-right:calc(var(--bs-border-width) * -1);}*[dir="rtl"] .page-item:first-child .page-link{border-top-right-radius:var(--bs-pagination-border-radius);border-bottom-right-radius:var(--bs-pagination-border-radius);border-top-left-radius:0;border-bottom-left-radius:0;}*[dir="rtl"] .page-item:last-child .page-link{border-top-left-radius:var(--bs-pagination-border-radius);border-bottom-left-radius:var(--bs-pagination-border-radius);border-top-right-radius:0;border-bottom-right-radius:0;}

div.required .col-form-label:not(span):after,td.required:after{content:' *';color:#F00;font-weight:normal;}

/* .table-responsive {overflow: visible;} */
.table-bordered-bottom tr, .table-bordered-bottom td, .table-bordered-bottom th {border: none;}
.table-bordered-bottom td, .table-bordered-bottom th {border-bottom: 1px solid #dee2e6;}
.table-bordered-bottom tbody tr:last-child td, .table-bordered-bottom tbody tr:last-child th {border-bottom: none;}.table-bordered-bottom thead tr td, .table-bordered-bottom thead tr td span, .table-bordered-bottom thead tr th, .table-bordered-bottom thead tr th span{background-color: transparent; font-size: 0.875rem; color: rgba(33, 37, 41, 0.75);}.rounded-table,.table-rounded{border-radius:1rem;border-collapse:separate;border-spacing:0;overflow:hidden;}.rounded-table thead th,.table-rounded thead th{border-top:1px solid #dee2e6;}.rounded-table td:first-child,.rounded-table th:first-child,.table-rounded td:first-child,.table-rounded th:first-child{border-left:.5px solid #dee2e6;}.rounded-table td:last-child,.rounded-table th:last-child,.table-rounded td:last-child,.table-rounded th:last-child{border-right:.5px solid #dee2e6;}.rounded-table thead th:first-child,.table-rounded thead th:first-child{border-top-left-radius:1rem;}.rounded-table thead th:last-child,.table-rounded thead th:last-child{border-top-right-radius:1rem;}.rounded-table tbody tr:last-child td:first-child,.table-rounded tbody tr:last-child td:first-child{border-bottom-left-radius:1rem;}.rounded-table tbody tr:last-child td:last-child,.table-rounded tbody tr:last-child td:last-child{border-bottom-right-radius:1rem;}.table thead tr td{background-color:#f8f9fa;font-weight:500;position:relative;}.table thead td span[data-toggle='tooltip']:after,label.form-label span:after{font-family:'Font Awesome 6 Pro';font-weight:300;content:"\f059";color:#cec1c2;margin-left:4px;font-size:.75em;}.table a.asc:after,.table span.asc:after{font-family:'Font Awesome 6 Pro';font-weight:300;content:" \f106";font-size:.75em;}.table a.desc:after,.table span.desc:after{font-family:'Font Awesome 6 Pro';font-weight:300;content:" \f107";font-size:.75em;}

/* Clickable on different screen sizes */
.clickable-sm{pointer-events:auto;}@media (min-width:576px){.clickable-sm{pointer-events:none}}.clickable-md{pointer-events:auto;}@media (min-width:768px){.clickable-md{pointer-events:none}}.clickable-lg{pointer-events:auto;}@media (min-width:992px){.clickable-lg{pointer-events:none}}.clickable-xl{pointer-events:auto;}@media (min-width:1200px){.clickable-xl{pointer-events:none}}.clickable-xxl{pointer-events:auto;}@media (min-width:1400px){.clickable-xxl{pointer-events:none}}

/*Products*/
.product-media-sortable-container{display:flex;flex-wrap:wrap;gap:10px;}.product-media-upload-box{display:flex;align-items:center;justify-content:center;border:2px dashed #cccccc;border-radius:10px;cursor:pointer;position:relative;overflow:hidden;background-color:#f1f3f5;}.product-media-upload-box:hover{border-color:#000000;}.product-media-upload-box img{max-width:100%;max-height:100%;object-fit:cover;border-radius:8px;}.product-media-upload-box:hover img{opacity:.5;}.product-media-upload-box.large{width:100px;height:100px;min-width:100px;min-height:100px;padding:2px;}.product-media-upload-box.small{width:100px;height:100px;min-width:100px;min-height:100px;padding:2px;}.product-media-upload-box.little{width:50px;height:50px;min-width:50px;min-height:50px;padding:1px;}.product-media-upload-box.sorting{opacity:.6;}.product-media-upload-box .product-media-remove{position:absolute;top:2px;left:2px;background:rgba(255,0,0,.7);color:white;border:none;border-radius:50%;width:20px;height:20px;font-size:14px;display:none;align-items:center;justify-content:center;cursor:pointer;}.product-media-upload-box .media-sort-icon{position:absolute;top:5px;right:5px;font-size:16px;align-items:center;justify-content:center;cursor:grab;display:none;}.product-media-upload-box .media-video-icon{position:absolute;bottom:5px;left:5px;font-size:16px;align-items:center;justify-content:center;display:none;}.product-media-upload-box.filled:hover .product-media-remove,.product-media-upload-box.filled:hover .media-sort-icon{display:flex;}.product-media-upload-box.filled img.has-video ~ .media-video-icon{display:flex;}.product-media-upload-box .fa-plus{font-size:24px;color:#6c757d;}
#product-variants-options .product-variants-option:first-child {border-top-left-radius: 1rem;border-top-right-radius: 1rem;}#product-variants-options .product-variants-option:last-child {border-bottom-left-radius: 1rem;border-bottom-right-radius: 1rem;}

/* Filemanager Folder Size */
#filemanager .fa-folder.fa-5x {font-size: 10.5em;}

.list-check{list-style:none;}.list-check li::before{font-family:'Font Awesome 6 Solid';content:"\f00c";margin-left:-30px;width:29px;display:inline-block;color:#7ebd38;}.list-check.list-color-blue li::before{color:#02afe9;}

/* metisMenu */
.metismenu .arrow{float:right;line-height:1.42857}*[dir=rtl] .metismenu .arrow{float:left}.metismenu .glyphicon.arrow:before{content:"\e079"}.metismenu .mm-active>a>.glyphicon.arrow:before{content:"\e114"}.metismenu .fa.arrow:before{content:"\f104"}.metismenu .mm-active>a>.fa.arrow:before{content:"\f107"}.metismenu .ion.arrow:before{content:"\f3d2"}.metismenu .mm-active>a>.ion.arrow:before{content:"\f3d0"}.metismenu .plus-times{float:right}*[dir=rtl] .metismenu .plus-times{float:left}.metismenu .fa.plus-times:before{content:"\f067"}.metismenu .mm-active>a>.fa.plus-times{transform:rotate(45deg)}.metismenu .plus-minus{float:right}*[dir=rtl] .metismenu .plus-minus{float:left}.metismenu .fa.plus-minus:before{content:"\f067"}.metismenu .mm-active>a>.fa.plus-minus:before{content:"\f068"}.metismenu .mm-collapse:not(.mm-show){display:none}.metismenu .mm-collapsing{position:relative;height:0;overflow:hidden;transition-timing-function:ease;transition-duration:.35s;transition-property:height,visibility}.metismenu .has-arrow{position:relative}.metismenu .has-arrow::after{position:absolute;content:'';transform:rotate(-90deg) translate(0,-50%);transform-origin:top;top:50%;transition:all .3s ease-out;right:40px;content:"\f107";font-family:"Font Awesome 6 Pro";color:#000000;font-weight:600;font-size:14px}*[dir=rtl] .metismenu .has-arrow::after{right:auto;left:1em;transform:rotate(180deg) translate(0,-50%)}.metismenu .mm-active>.has-arrow::after,.metismenu .has-arrow[aria-expanded=true]::after{transform:rotate(180deg) translate(0,-50%)}*[dir=rtl] .metismenu .mm-active>.has-arrow::after,*[dir=rtl] .metismenu .has-arrow[aria-expanded=true]::after{transform:rotate(180deg) translate(0,-50%)}
/* SideBar */
.metismenu .has-arrow::after{top:50%;}@media only screen and (min-width:992px) and (max-width:1200px){.metismenu .has-arrow::after{right:25px}}.bg_sidebar_active{background-color:#f1f1f1!important;}.sidebar #sidebar_menu{margin:0;padding:0;}.sidebar #sidebar_menu li a img{width:19px;height:auto}.sidebar #sidebar_menu li a .icon_menu{width:34px;height:34px;text-align:center;line-height:32px}.sidebar{height:100vh;left:0;top:0;z-index:99;padding-bottom:50px;position:fixed;width:250px;scrollbar-width:thin;z-index:1021;overflow:hidden;overflow-y:auto;background:#fff;box-shadow:0 12px 30px rgba(80,143,244,.1);transition:.3s;-webkit-transition:.3s;-moz-transition:.3s;-ms-transition:.3s;-o-transition:.3s;}*[dir=rtl] .sidebar{right:0;left:auto}.sidebar .small_logo{display:none}@media only screen and (min-width:992px) and (max-width:1200px){.sidebar.hide_vertical_menu{left:-20%}}@media(min-width:1201px){.sidebar.hide_vertical_menu{left:-250px}*[dir=rtl] .sidebar.hide_vertical_menu{left:auto;right:-250px}}@media(max-width:991px){.sidebar{left:-260px;-webkit-transition:.5s;transition:.5s;top:0;width:260px;background:#fff}*[dir=rtl] .sidebar{right:-260px;left:auto}}@media only screen and (min-width:992px) and (max-width:1200px){.sidebar{width:20%}}.sidebar .logo{margin:0;margin-bottom:0;background:#ffffff;padding:7px 15px 7.5px 15px;border-bottom:1px solid #f1f1f1;}.sidebar .logo .large_logo img{width:100%}@media(max-width:991px){.sidebar .logo{padding:10px 60px 11.5px 14px}*[dir=rtl] .sidebar .logo{padding:10px 10px 11.5px 60px}}.sidebar .menu-text{font-size:12px;color:#b1bdcb;font-weight:600;margin:0;padding:12px 0 12px 24px;text-transform:uppercase}.sidebar .menu-text i{display:none}.sidebar .single_sidebar_tittle i{font-size:18px;margin-right:12px;color:#f8dbdd;-webkit-transition:.5s;transition:.5s}.sidebar .single_sidebar_tittle a{display:block;font-size:14px;font-weight:500;color:#222;padding:10px 25px 10px 40px;width:100%;display:flex;align-items:center;transition:.3s;position:relative;z-index:0;border-top:1px solid transparent;background:0 0}.sidebar .single_sidebar_tittle a::before{position:absolute;right:0;background:#2e4765;width:0;top:0;bottom:0;content:'';opacity:0;transition:.3s;right:0;visibility:hidden}.sidebar .single_sidebar_tittle a.current_active i{color:#2e4765}.sidebar .single_sidebar_tittle a.current_active::before{opacity:1;width:3px;visibility:visible}.sidebar .single_sidebar_tittle a:hover::before{opacity:1;right:0;visibility:visible;width:3px}.sidebar .single_sidebar_tittle a.normal_title{padding:28px 25px 18px 40px;background:#fff7f8;border-top:1px solid #eee1e2}.sidebar .single_sidebar_tittle a.normal_title:after{position:absolute;right:40px;top:55%;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);content:"\f0d8";font-family:"Font Awesome 6 Pro";color:#cec1c2;font-weight:600;font-size:14px}.sidebar .single_sidebar_tittle a.normal_title.collapsed{padding:10px 25px 10px 40px;background:#fff;border-top:1px solid transparent}.sidebar .single_sidebar_tittle a.normal_title.collapsed:after{position:absolute;right:40px;top:50%;transform:translateY(-50%);content:"\f0d7";font-family:"Font Awesome 6 Pro";color:#cec1c2;font-weight:600;font-size:14px}.sidebar .single_sidebar_tittle:hover{background-color:#192434}.sidebar .single_sidebar_tittle:hover i{color:#2e4765}.sidebar .single_menu_item{padding-left:36px;margin:6px 0;line-height:21px}.sidebar .single_menu_item:hover{padding-left:55px!important}.sidebar .sidebar_iner ul li{list-style:none}.sidebar .sidebar_iner ul li .submenu{background:#fff7f8;padding:0 0 0 70px!important;border-bottom:1px solid #eee1e2}.sidebar .sidebar_iner ul li .submenu li a{font-size:13px;line-height:36px;color:#7e7172;font-weight:400}.sidebar .sidebar_iner ul li .submenu li:last-child{padding-bottom:18px}@media(max-width:991px){.active_sidebar{left:0;box-shadow:0 5px 20px rgba(0,0,0,.2)}*[dir=rtl] .active_sidebar{right:0;left:auto}}.sidebar_close_icon i{width:40px;height:40px;display:inline-block;text-align:center;line-height:40px;position:absolute;right:0;font-size:20px;top:7px;cursor:pointer;color:#a1a4b9}*[dir=rtl] .sidebar_close_icon i{right:auto;left:0}.sidebar #sidebar_menu>li{margin-left:0;list-style:none;}.sidebar #sidebar_menu>li ul li{list-style:none;}.sidebar #sidebar_menu>li a{font-size:.9375rem;;font-weight:400;text-decoration:none;color:#000000;padding:0 25px 0 0;background:#fff;transition:.3s;position:relative;z-index:0;display:grid;grid-template-columns:20px auto;grid-gap:10px;align-items:center;position:relative;background:0 0;color:#000000;padding:7px 10px 7px 14px;background:#fff;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;}*[dir=rtl] .sidebar #sidebar_menu>li a{padding:7px 0 7px 10px}.sidebar #sidebar_menu>li a:hover{color:#000000!important;background:#f1f1f1}.sidebar #sidebar_menu>li a.active{color:#000000!important;background:#f1f1f1}.sidebar #sidebar_menu>li a::after{color:#fff;transform:rotate(-90deg) translate(0,-50%);opacity:1;font-size:12px;right:15px;color:#a1a4b9}*[dir=rtl] .sidebar #sidebar_menu>li a::after{transform:rotate(90deg) translate(0,-50%);right:auto;left:15px}.sidebar #sidebar_menu>li a i{font-size:1rem;margin-right:12px;color:#000000;-webkit-transition:.5s;transition:.5s}.sidebar #sidebar_menu>li a:hover::before{width:6px;opacity:1;visibility:visible}.sidebar #sidebar_menu>li>a{color:#000000}.sidebar #sidebar_menu>li.mm-active>a{background:#fff;border-radius:30px;color:#000000;border-radius:0;background:#f1f1f1}.sidebar #sidebar_menu>li.mm-active>a::after{color:#a1a4b9;transform:rotate(0deg) translate(0,-50%);opacity:1;font-size:12px;right:15px}*[dir=rtl] .sidebar #sidebar_menu>li.mm-active>a::after{transform:rotate(0deg) translate(0,-50%);right:auto;left:15px}.sidebar #sidebar_menu>li ul li.mm-active>a{font-weight:600;}.sidebar #sidebar_menu>li ul li.mm-active>a::after{color:#a1a4b9;transform:rotate(0deg) translate(0,-50%);opacity:1;font-size:12px;right:15px}*[dir=rtl] .sidebar #sidebar_menu>li ul li.mm-active>a::after{transform:rotate(0deg) translate(0,-50%);right:auto;left:15px}.sidebar #sidebar_menu>li.mm-active.metis_dropmenu>a{padding-top:29px;padding-bottom:30px;color:#000000}.sidebar #sidebar_menu>li.mm-active>a i{color:#000000}.sidebar #sidebar_menu>li.mm-active>a::before{opacity:1;width:6px;visibility:visible}.sidebar #sidebar_menu>li ul{padding:5px 0 5px 30px;background:0 0;border-radius:0 0 4px 4px;margin-left:0;background:#fbfbfb}*[dir=rtl] .sidebar #sidebar_menu>li ul{padding:5px 30px 5px 0}.sidebar #sidebar_menu>li ul li a{background:#fbfbfb}.sidebar #sidebar_menu>li ul li:last-child a{padding-bottom:30px}.sidebar #sidebar_menu>li ul li a{font-size:14px;color:#000000;font-weight:400;padding:0;white-space:nowrap;padding:0;padding:5px 0 5px 14px!important;margin-top:0;margin-left:0;text-transform:capitalize}*[dir=rtl] .sidebar #sidebar_menu>li ul li a{padding:5px 14px 5px 0!important}.sidebar #sidebar_menu>li ul li a::before{display:none}.sidebar #sidebar_menu>li ul li a.active{color:#000000!important;font-weight:600;background:0 0}.sidebar #sidebar_menu>li ul li a:hover{background:0 0;font-weight:600;color:#000000!important}.sidebar #sidebar_menu>li ul li ul{padding-left:10px}*[dir=rtl] .sidebar #sidebar_menu>li ul li ul{padding-left:0;padding-right:10px}

/* SideBar MiniSidebar */
.sidebar.mini_sidebar{width:80px;z-index:1;overflow:visible!important;min-width:80px;max-width:80px;position:absolute;z-index:9999999;height:auto;top:0;bottom:0;left:0}*[dir=rtl] .sidebar.mini_sidebar{left:auto;right:0}.sidebar.mini_sidebar .menu-text{font-size:12px;color:#000000;font-weight:400;margin:0;padding:12px 0 12px 24px;text-transform:uppercase;text-align:center;padding-left:0}.sidebar.mini_sidebar .menu-text span{display:none}.sidebar.mini_sidebar .menu-text i{display:block}.sidebar.mini_sidebar .mini_logo{display:block;width:80px}.sidebar.mini_sidebar .logo{width:80px;padding:7px 0;margin:0;justify-content:center!important}.sidebar.mini_sidebar .large_logo{display:none}.sidebar.mini_sidebar .small_logo{display:block}.sidebar.mini_sidebar .small_logo img{width:40px;}.sidebar.mini_sidebar .has-arrow::before{display:none}.sidebar.mini_sidebar .sidebar-header{padding-left:11px}.sidebar.mini_sidebar .update_sidebar img{max-width:40px!important}.sidebar.mini_sidebar #sidebar_menu ul li ul{overflow:visible;position:unset!important;z-index:1021;left:100%!important;top:100%;background-color:#fff;}.sidebar.mini_sidebar #sidebar_menu ul li ul li a{font-weight:500;background-color:#fff;}.sidebar.mini_sidebar #sidebar_menu>li{position:relative;width:80px;text-align:center}.sidebar.mini_sidebar #sidebar_menu>li ul{margin-left:0;padding-left:0}*[dir=rtl] .sidebar.mini_sidebar #sidebar_menu>li ul{margin-right:0;padding-right:0}.sidebar.mini_sidebar #sidebar_menu>li ul li a{white-space:nowrap;color:#000000;font-weight:500;width:194px;padding-left:14px!important;}*[dir=rtl] .sidebar.mini_sidebar #sidebar_menu>li ul li a{padding-right:14px;padding-left:0}.sidebar #sidebar_menu>li ul li a.active,.sidebar #sidebar_menu>li ul li a:hover,.sidebar.mini_sidebar #sidebar_menu>li ul li a.active,.sidebar.mini_sidebar #sidebar_menu>li ul li a:hover{font-weight:600;}.sidebar.mini_sidebar #sidebar_menu>li ul li a.active{color:#000000!important}.sidebar.mini_sidebar #sidebar_menu>li>a{background:#ffffff;padding-left:0;display:grid;grid-template-columns:44px auto!important}.sidebar.mini_sidebar #sidebar_menu>li a i{margin-right:0;font-size:1rem;}.sidebar.mini_sidebar #sidebar_menu>li>a.has-arrow::after{display:none}.sidebar.mini_sidebar #sidebar_menu>li>a .nav_icon_small{width:80px}*[dir=rtl] .sidebar #sidebar_menu>li a .nav_title{margin-right:12px;}.sidebar.mini_sidebar #sidebar_menu>li>a .nav_title{display:none}.sidebar.mini_sidebar #sidebar_menu>li>a:hover,.sidebar.mini_sidebar #sidebar_menu>li>a.active{background:#f1f1f1;width:274px}.sidebar.mini_sidebar #sidebar_menu>li>a:hover .nav_icon_small,.sidebar.mini_sidebar #sidebar_menu>li>a.active .nav_icon_small{display:inline-block}.sidebar.mini_sidebar #sidebar_menu>li>a:hover .nav_title,.sidebar.mini_sidebar #sidebar_menu>li>a.active .nav_title{display:inline-block;}.sidebar.mini_sidebar #sidebar_menu>li>a:hover.has-arrow::after,.sidebar.mini_sidebar #sidebar_menu>li>a.active.has-arrow::after{display:inline-block}.sidebar.mini_sidebar #sidebar_menu>li:hover>a,.sidebar.mini_sidebar #sidebar_menu>li.mm-active>a{width:274px!important}.sidebar.mini_sidebar #sidebar_menu>li:hover>a:hover,.sidebar.mini_sidebar #sidebar_menu>li:hover>a.active,.sidebar.mini_sidebar #sidebar_menu>li.mm-active>a:hover,.sidebar.mini_sidebar #sidebar_menu>li.mm-active>a.active{width:274px;opacity:1;background:#f1f1f1!important;color:#000000!important;}.sidebar.mini_sidebar #sidebar_menu>li:hover>a:hover .nav_icon_small,.sidebar.mini_sidebar #sidebar_menu>li:hover>a.active .nav_icon_small,.sidebar.mini_sidebar #sidebar_menu>li.mm-active>a:hover .nav_icon_small,.sidebar.mini_sidebar #sidebar_menu>li.mm-active>a.active .nav_icon_small{display:inline-block}.sidebar.mini_sidebar #sidebar_menu>li:hover>a:hover .nav_title,.sidebar.mini_sidebar #sidebar_menu>li:hover>a.active .nav_title,.sidebar.mini_sidebar #sidebar_menu>li.mm-active>a:hover .nav_title,.sidebar.mini_sidebar #sidebar_menu>li.mm-active>a.active .nav_title{display:inline-block;}.sidebar.mini_sidebar #sidebar_menu>li:hover>a:hover.has-arrow::after,.sidebar.mini_sidebar #sidebar_menu>li:hover>a.active.has-arrow::after,.sidebar.mini_sidebar #sidebar_menu>li.mm-active>a:hover.has-arrow::after,.sidebar.mini_sidebar #sidebar_menu>li.mm-active>a.active.has-arrow::after{display:inline-block}.sidebar.mini_sidebar #sidebar_menu>li.mm-active:hover{overflow:visible}.sidebar.mini_sidebar #sidebar_menu>li.mm-active>a{background:#f1f1f1}.sidebar.mini_sidebar #sidebar_menu>li.mm-active>a .nav_icon_small{display:inline-block}.sidebar.mini_sidebar #sidebar_menu>li>a .nav_title{margin-left:40px;font-weight:600;text-align:left;}*[dir=rtl] .sidebar.mini_sidebar #sidebar_menu>li>a .nav_title{margin-left:0;margin-right:40px;text-align:right;}.sidebar.mini_sidebar #sidebar_menu>li.mm-active>a .nav_title{display:inline-block;}.sidebar.mini_sidebar #sidebar_menu>li.mm-active>a.has-arrow::after{display:inline-block}.sidebar.mini_sidebar #sidebar_menu>li.mm-active ul{left:80px;position:absolute;top:100%;width:194px;z-index:1000;margin-left:0;padding-left:0;border-bottom:1px solid #f1f1f1;}*[dir=rtl] .sidebar.mini_sidebar #sidebar_menu>li.mm-active ul{left:auto;right:80px;}#main-content.mini_main_content{margin-left:70px;width:calc(100% - 70px)}*[dir=rtl] #main-content.mini_main_content{margin-left:0;margin-right:70px;}@media(max-width:1370px){#main-content.mini_main_content{width:calc(100% - 70px)}}@media(min-width:1200px){#main-content.mini_main_content{padding:30px}}@media(max-width:991px){#main-content.mini_main_content{width:100%;margin-top:0}}.sidebar.mini_sidebar ul li ul{background:#144339;opacity:1;position:absolute;left:100%}.collaspe_icon.open_miniSide{position:absolute;left:0;top:50%;transform:translateY(-50%)}@media(max-width:991px){.collaspe_icon.open_miniSide{display:none}}.collaspe_icon.open_miniSide i{color:#144339;cursor:pointer;font-size:18px;margin-right:15px}.sidebar.mini_sidebar #sidebar_menu>li.metis_submenu_up_collaspe ul{top:auto;bottom:100%}.sidebar.mini_sidebar #sidebar_menu li ul li.metis_submenu{position:relative}.sidebar.mini_sidebar #sidebar_menu li ul li.metis_submenu ul{top:100%;left:0!important;position:relative;background:rgba(0,0,0,.05)}.sidebar_icon{position:absolute;top:50%;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);right:auto;left:20px}*[dir=rtl] .sidebar_icon{right:20px;left:auto}@media(max-width:575.98px){.sidebar_icon{right:auto;left:20px}*[dir=rtl] .sidebar_icon{right:20px;left:auto}}@media only screen and (min-width:576px) and (max-width:991px){.sidebar_icon{right:auto;left:20px}*[dir=rtl] .sidebar_icon{right:20px;left:auto}}.sidebar_icon i{font-size:20px;color:#000}

/* Main Content */
.main_content{padding-left:250px;width:100%;padding-top:0;transition:.5s;position:relative;min-height:100vh;padding-bottom:70px;overflow:hidden}*[dir=rtl] .main_content{padding-left:0;padding-right:250px}.main_content.full_main_content{padding-left:80px}*[dir=rtl] .main_content.full_main_content{padding-left:0;padding-right:80px}.main_content.main_content_padding_hide{padding-left:0;padding-top:100px!important}@media(max-width:991px){.main_content{padding:90px 0 100px}*[dir=rtl] .main_content{padding:90px 0 100px}}@media(max-width:575.98px){.main_content{padding:120px 0 100px}*[dir=rtl] .main_content{padding:120px 0 100px}}@media only screen and (min-width:576px) and (max-width:991px){.main_content{padding:120px 0 100px}*[dir=rtl] .main_content{padding:120px 0 100px}}@media only screen and (min-width:768px) and (max-width:991px){.main_content{padding:120px 0 100px}*[dir=rtl] .main_content{padding:120px 0 100px}}@media only screen and (min-width:992px) and (max-width:1200px){.main_content{padding-left:20%}*[dir=rtl] .main_content{padding-left:0;padding-right:20%}}.main_content.default_content .main_content_iner{margin:0;border-radius:0}.main_content .main_content_iner{min-height:68vh;transition:.5s;position:relative;margin:0;border-radius:0;padding:15px 0;}.main_content .main_content_iner.default_main_contaner_iner{background:#fff}.main_content .main_content_iner.default_main_contaner_iner::before{display:none}@media(max-width:991px){.main_content .main_content_iner{margin:0;padding:15px 0}}@media(min-width:1200px) and (max-width:1500px){.main_content .main_content_iner.main_content_iner_padding{padding:0 30px}}@media only screen and (min-width:1440px) and (max-width:1679px){.main_content .main_content_iner.main_content_iner_padding{padding:0 60px}}@media(min-width:1680px){.main_content .main_content_iner.main_content_iner_padding{padding:0 135px}}@media(max-width:575.98px){.main_content .main_content_iner{margin-bottom:20px}}

/* Header */
.header_iner{top:0;z-index:99;padding:7px 14px 7px 28px;position:relative;border-radius:0;margin:0;background:#fff;border-radius:0;margin:0;border-radius:0;border-bottom:1px solid #f1f1f1;}*[dir=rtl] .header_iner{padding:7px 28px 7px 14px;}.header_iner.default_header{background:#f65365;border-radius:0}@media(max-width:575.98px){.header_iner{justify-content:flex-end!important}}@media only screen and (min-width:576px) and (max-width:991px){.header_iner{justify-content:flex-end!important}}@media(max-width:991px){.header_iner{padding:7px;margin:0}}@media(max-width:575.98px){.header_iner{margin:0}}@media only screen and (min-width:576px) and (max-width:991px){.header_iner{margin:0}}.header_iner .page_tittle h3{font-size:18px;font-weight:500;text-transform:capitalize;color:#222;margin-bottom:2px}@media(max-width:991px){.header_iner .page_tittle h3{margin-right:15px}}.header_iner .page_tittle .page_subtitle{font-size:12px;font-weight:300;color:#7e7172;margin-bottom:0}.header_iner .page_tittle .page_subtitle .page_subtitle_inenr{color:#7e7172}.header_iner .page_tittle .page_subtitle .page_subtitle_inenr.active_subcat{color:#fe1724;white-space:nowrap}.header_iner .page_tittle .page_subtitle .page_subtitle_inenr i{margin-left:10px;margin-right:7px;font-size:12px}.header_iner .page_tittle .page_subtitle .page_subtitle_inenr svg{position:relative;margin:0 7px 0 10px;top:-1px}@media(max-width:575.98px){.header_iner .page_tittle .page_subtitle .page_subtitle_inenr svg{margin:0 2px}}.header_iner .btn_1{margin:0 30px}@media(max-width:991px){.header_iner .notification{margin:0 10px}}.header_iner .notification i{color:#707070;position:relative;font-size:20px}.header_iner .notification i:after{position:absolute;content:"";right:-1px;top:0;height:9px;width:9px;background-color:#2e4765;border-radius:50%}.header_iner .serach_field-area{margin-right:auto;margin-left:40px;width:230px}@media(max-width:767.98px){.header_iner .serach_field-area{display:none!important}}@media only screen and (min-width:768px) and (max-width:991px){.header_iner .serach_field-area{width:auto;left:40px}}@media only screen and (min-width:768px) and (max-width:991px){.header_iner .serach_field-area{width:auto;margin-right:70px}}@media only screen and (min-width:992px) and (max-width:1200px){.header_iner .serach_field-area{width:auto;margin-right:70px}}.header_iner .header_right .header_notification_warp{margin-right:5px;margin-left:5px}.header_iner .header_right .header_notification_warp li{display:inline-block;position:relative}.header_iner .header_right .header_notification_warp li .serach_button{width:32px;height:32px;background:#373063;border-radius:50%;text-align:center;line-height:32px;cursor:pointer;margin-right:20px;position:relative}.header_iner .header_right .header_notification_warp li .serach_button i{color:#fff;font-size:.9375rem;;line-height:32px}.header_iner .header_right .header_notification_warp li .serach_button .serach_field-area{position:absolute;right:0;top:0;top:0;background:#fff;border-radius:10px;opacity:0;transition:.3s;visibility:hidden;right:50px;top:-4px}.header_iner .header_right .header_notification_warp li .serach_button .serach_field-area.active{opacity:1;visibility:visible}.header_iner .header_right .header_notification_warp li .serach_button .serach_field-area i{color:rgba(137,80,252,.7)}.header_iner .header_right .header_notification_warp li .serach_button .serach_field-area input{border-radius:10px}.header_iner .header_right .header_notification_warp li:last-child a{margin-right:0}.header_iner .header_right .header_notification_warp li>a .headerIcon{position:relative;margin-right:10px;width:40px;height:40px;background:0 0;text-align:center;border-radius:50%;display:inline-block;display:flex;align-content:center;justify-content:center;align-items:center;flex:47px 0 0;background:#f9f9f9}.header_iner .header_right .header_notification_warp li>a img{width:75%}.header_iner .header_right .header_notification_warp li>a .headerIconNotify{position:absolute;width:22px;height:22px;text-align:center;color:#fff;display:inline-block;background:#fff;font-size:7px;border-radius:50%;right:-5px;top:-7px;background:#000000;line-height:22px;border:6px solid #fff}@media(max-width:575.98px){.header_iner .header_right .select_style{display:none!important}}@media only screen and (min-width:576px) and (max-width:991px){.header_iner .header_right .select_style{display:none!important}}.header_iner .nice_Select{color:#929bb5}

/* Footer */
.footer_part{text-align:center;padding-bottom:15px;padding-top:15px;background:0 0;padding-left:250px;left:0;right:0;bottom:0;}*[dir=rtl] .footer_part{padding-left:0;padding-right:250px;}.footer_part.fixed_footer{position:fixed;z-index:99;border-radius:0;padding-bottom:0;background:0 0}.footer_part.fixed_footer .footer_iner{border-top:2px solid #373063;background:#fff!important}.footer_part.full_footer{padding-left:80px}*[dir=rtl] .footer_part.full_footer{padding-left:0;padding-right:80px}.footer_part.default_footer{background:#f5f6ff}.footer_part.default_footer .footer_iner{background:0 0!important}@media only screen and (min-width:320px) and (max-width:768px){.footer_part{padding-left:0!important}}@media only screen and (min-width:992px) and (max-width:1200px){.footer_part{padding-left:20%}}.footer_part .footer_iner.text-center{background:#fff;padding:27px 0;margin:0 15px;border-radius:15px;background:0 0;font-size:.9375rem;}.footer_part p{font-size:.9375rem;;font-weight:400;color:#474d58}.footer_part p span{margin:0 10px}.footer_part p a{color:#373063}.footer_part p a:hover{text-decoration:underline}

/* BackToTop */
#back-top{position:fixed;right:20px;bottom:30px;cursor:pointer;z-index:9999999;display:none}#back-top a{display:inline-block;height:40px;width:40px;text-align:center;display:block;color:#000000;line-height:40px;background:#ffffff;font-size:15px;border-radius:30px;-webkit-transition:.3s;-moz-transition:.3s;-ms-transition:.3s;-o-transition:.3s;transition:.3s;-webkit-box-shadow:0 10px 20px 0 rgba(0,0,0,.4);-moz-box-shadow:0 10px 20px 0rgba 62,217,124,.4;box-shadow:0 10px 20px 0 rgba(0,0,0,.4)}

/* MenuBuilder */
.menu-builder-drag-handle{ cursor: grab; color: #000000; padding: 0 0.5rem;} .menu-builder-item-content{ display: flex; align-items: center; gap: 0.75rem; border: 1px solid rgba(227, 227, 227, 1); border-radius: 0.5rem; background-color: #fff; padding: 0.5rem 0.5rem;} .menu-builder-item{ position: relative; padding: 0.25rem 0;} .sortable-ghost{ background-color: #f1f3f5; border-radius: 0.375rem;} .sortable-ghost >*{ visibility: hidden;} .menu-builder-item-children{ margin-left: 1.25rem; padding-left: 1.25rem;} .menu-builder-item-children >.menu-builder-item{ position: relative;} .menu-builder-item-children >.menu-builder-item::before{ content: ''; position: absolute; top: 0rem; left: -1.25rem; width: 1px; height: calc(100% + 0.5rem); background-color: rgba(227, 227, 227, 1);} .menu-builder-item-children >.menu-builder-item::after{ content: ''; position: absolute; top: 2rem; left: -1.25rem; width: 1.25rem; height: 1px; background-color: rgba(227, 227, 227, 1);} .menu-builder-item-children >.menu-builder-item:last-child::before{ height: 2rem;} .btn-menu-builder{display: flex;align-items: center;gap: 0.25rem;border: 1px solid rgba(227, 227, 227, 1);border-radius: 0.5rem;background-color: #fff; color: #000000;padding: 0.75rem 0.75rem;font-weight: 600;cursor:pointer} .btn-menu-builder:hover{background-color: #f1f3f5} .dropdown-menu-menu-builder{width:calc(100% - 2rem) !important;box-shadow:0px 4px 16px rgba(0, 0, 0, 0.10);margin:0 !important; padding: 0 !important} .dropdown-menu-menu-builder .menu-builder-link-type-option{white-space: normal !important; border: 0 !important; padding: 0.5rem 0.75rem !important} .dropdown-menu-menu-builder .menu-builder-link-type-option-search{white-space: normal !important; border: 0 !important} .dropdown-menu-menu-builder .menu-builder-link-type-option:active, .dropdown-menu-menu-builder .menu-builder-link-type-option:hover, .dropdown-menu-menu-builder .menu-builder-link-type-option:focus, .dropdown-menu-menu-builder .menu-builder-link-type-option.active, .dropdown-menu-menu-builder .menu-builder-link-type-option-search:active, .dropdown-menu-menu-builder .menu-builder-link-type-option-search:hover, .dropdown-menu-menu-builder .menu-builder-link-type-option-search:focus, .dropdown-menu-menu-builder .menu-builder-link-type-option-search.active{ background-color:#f1f3f5 !important; color:#000000 !important} .menu-builder-link-type-option .icon-wrapper{width: 1.5rem;display: inline-flex;justify-content: center;align-items: center} .menu-builder-item-inputs{ display: flex; gap: 0.75rem; flex-grow: 1; align-items: center;} .menu-builder-item-inputs >*{flex: 1} .menu-builder-input-group{ display: flex; align-items: center; border: 1px solid #ced4da; border-radius: 0.375rem; background-color: #fff; cursor: pointer; transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;} .menu-builder-input-group.show{ border-color: #000000} .menu-builder-input-group .input-group-text{ background-color: transparent; border: none;} .menu-builder-input-group .form-control{ border: none; box-shadow: none; padding-left: 0;} .menu-builder-collapse-toggle{ padding-inline: 0.25rem;} .menu-builder-collapse-toggle >.far{ transition: transform 0.2s ease-in-out;} .menu-builder-item.collapsed >.menu-builder-item-children, .menu-builder-item.collapsed >.menu-builder-add-child-wrapper{ display: none;} .menu-builder-item:not(.collapsed) >.menu-builder-item-content .menu-builder-collapse-toggle >.far{ transform: rotate(90deg);} .menu-builder-add-child-wrapper{ margin-left: 1.25rem; padding-left: 1.25rem; padding-top: 0.25rem;}
*[dir="rtl"] .menu-builder-item-children{ margin-left: 0; margin-right: 1.25rem; padding-left: 0; padding-right: 1.25rem}*[dir="rtl"] .menu-builder-item-children >.menu-builder-item::before{ left: auto; right: -1.25rem}*[dir="rtl"] .menu-builder-item-children >.menu-builder-item::after{ left: auto; right: -1.25rem}*[dir="rtl"] .menu-builder-add-child-wrapper{ margin-left: 0; margin-right: 1.25rem; padding-left: 0; padding-right: 1.25rem}*[dir="rtl"] .menu-builder-collapse-toggle >.far{ transform: scaleX(-1)}*[dir="rtl"] .menu-builder-item:not(.collapsed) >.menu-builder-item-content .menu-builder-collapse-toggle >.far{ transform: scaleX(-1) rotate(90deg)}*[dir="rtl"] .menu-builder-input-group .form-control{ padding-left: 0.75rem; padding-right: 0}

/* rtl bs5 */
*[dir=rtl] .position-start{left:auto!important;right:0!important;}*[dir=rtl] .position-end{left:0!important;right:auto!important;}*[dir=rtl] .border-start{border-right:1px solid!important;}*[dir=rtl] .border-end{border-left:1px solid!important;}*[dir=rtl] .flex-row{flex-direction:row-reverse!important;}*[dir=rtl] .float-start{float:right!important;}*[dir=rtl] .float-end{float:left!important;}*[dir=rtl] .text-start{text-align:right!important;}*[dir=rtl] .text-end{text-align:left!important;}*[dir=rtl] .me-auto{margin-left:auto!important;margin-right:0!important;}*[dir=rtl] .ms-auto{margin-right:auto!important;margin-left:0!important;}*[dir=rtl] .me-0{margin-left:0!important;}*[dir=rtl] .me-1{margin-left:.25rem!important;margin-right:0!important;}*[dir=rtl] .me-2{margin-left:.5rem!important;margin-right:0!important;}*[dir=rtl] .me-3{margin-left:1rem!important;margin-right:0!important;}*[dir=rtl] .me-4{margin-left:1.5rem!important;margin-right:0!important;}*[dir=rtl] .me-5{margin-left:3rem!important;margin-right:0!important;}*[dir=rtl] .ms-0{margin-right:0!important;}*[dir=rtl] .ms-1{margin-right:.25rem!important;margin-left:0!important;}*[dir=rtl] .ms-2{margin-right:.5rem!important;margin-left:0!important;}*[dir=rtl] .ms-3{margin-right:1rem!important;margin-left:0!important;}*[dir=rtl] .ms-4{margin-right:1.5rem!important;margin-left:0!important;}*[dir=rtl] .ms-5{margin-right:3rem!important;margin-left:0!important;}*[dir=rtl] .pe-0{padding-left:0!important;}*[dir=rtl] .pe-1{padding-left:.25rem!important;padding-right:0!important;}*[dir=rtl] .pe-2{padding-left:.5rem!important;padding-right:0!important;}*[dir=rtl] .pe-3{padding-left:1rem!important;padding-right:0!important;}*[dir=rtl] .pe-4{padding-left:1.5rem!important;padding-right:0!important;}*[dir=rtl] .pe-5{padding-left:3rem!important;padding-right:0!important;}*[dir=rtl] .ps-0{padding-right:0!important;}*[dir=rtl] .ps-1{padding-right:.25rem!important;padding-left:0!important;}*[dir=rtl] .ps-2{padding-right:.5rem!important;padding-left:0!important;}*[dir=rtl] .ps-3{padding-right:1rem!important;padding-left:0!important;}*[dir=rtl] .ps-4{padding-right:1.5rem!important;padding-left:0!important;}*[dir=rtl] .ps-5{padding-right:3rem!important;padding-left:0!important;}

*[dir=rtl] ol,*[dir=rtl] ul {padding-right: 2rem; padding-left: unset;}*[dir=rtl] .list-unstyled {padding-right: 0; padding-left: unset;} *[dir=rtl] .list-group {padding-right: 0; padding-left: unset;} 

*[dir=rtl] .dropdown-item, *[dir=rtl] .dropdown-content, *[dir=rtl] .dropdown-header {text-align: right}
*[dir=rtl] .header_iner .header_right .header_notification_warp li>a .headerIcon {margin-left:10px; margin-right:0px}

*[dir=rtl] .modal-header .btn-close {margin: calc(-0.5* var(--bs-modal-header-padding-y)) auto calc(-0.5* var(--bs-modal-header-padding-y)) calc(-0.5* var(--bs-modal-header-padding-x));}

*[dir=rtl] .offcanvas.offcanvas-start {right: 0 !important;left: auto !important; border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); border-right: 0; transform: translateX(100%);}
*[dir=rtl] .offcanvas.offcanvas-end { left: 0 !important; right: auto !important; border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); border-left: 0; transform: translateX(-100%);}
*[dir=rtl] .offcanvas.showing,.offcanvas.show:not(.hiding) { transform: none; }
*[dir=rtl] .offcanvas-header .btn-close {padding: calc(var(--bs-offcanvas-padding-y)* 0.5) calc(var(--bs-offcanvas-padding-x)* 0.5); margin: calc(-0.5* var(--bs-offcanvas-padding-y)) auto calc(-0.5* var(--bs-offcanvas-padding-y)) calc(-0.5* var(--bs-offcanvas-padding-x));}

*[dir=rtl] .form-select {background-position: left .75rem center;padding: .375rem .75rem .375rem 2.25rem;}

*[dir=rtl] .was-validated .form-control:invalid, *[dir=rtl] .form-control.is-invalid {background-position: left calc(0.375em + 0.1875rem) center; padding-left: calc(1.5em + 0.75rem); padding-right: 0.75rem;}

*[dir=rtl] .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating), *[dir=rtl] .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3), *[dir=rtl] .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control, *[dir=rtl] .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select {border-top-left-radius: 0;border-bottom-left-radius: 0; border-top-right-radius: 0.375rem; border-bottom-right-radius: 0.375rem;}
*[dir=rtl] .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {border-top-right-radius: 0;border-bottom-right-radius: 0; border-top-left-radius: 0.375rem; border-bottom-left-radius: 0.375rem;}

/* Flip both Bootstrap Icons (bi) and Font Awesome Icons (fa) when in RTL layout */
*[dir=rtl] .bi::before,*[dir=rtl] .fa:not(.no-rtl),*[dir=rtl] .fat:not(.no-rtl),*[dir=rtl] .fal:not(.no-rtl),*[dir=rtl] .far:not(.no-rtl),*[dir=rtl] .fas:not(.no-rtl),*[dir=rtl] .fad:not(.no-rtl),*[dir=rtl] .fadl:not(.no-rtl),*[dir=rtl] .fadr:not(.no-rtl),*[dir=rtl] .fadt:not(.no-rtl),*[dir=rtl] .fab:not(.no-rtl),*[dir=rtl] .fasl:not(.no-rtl),*[dir=rtl] .fasr:not(.no-rtl),*[dir=rtl] .fass:not(.no-rtl),*[dir=rtl] .fast:not(.no-rtl),*[dir=rtl] .fasdl:not(.no-rtl),*[dir=rtl] .fasdr:not(.no-rtl),*[dir=rtl] .fasdt:not(.no-rtl),*[dir=rtl] .fasds:not(.no-rtl),*[dir=rtl] .fa-thin:not(.no-rtl),*[dir=rtl] .fa-light:not(.no-rtl),*[dir=rtl] .fa-regular:not(.no-rtl),*[dir=rtl] .fa-solid:not(.no-rtl),*[dir=rtl] .fa-duotone:not(.no-rtl),*[dir=rtl] .fa-brands:not(.no-rtl),*[dir=rtl] .fa-sharp:not(.no-rtl),*[dir=rtl] .fa-classic:not(.no-rtl),*[dir=rtl] .fa-sharp-duotone:not(.no-rtl){transform:scaleX(-1);}
.bi.bi-fw-medium::before{font-weight:500!important;}.bi.bi-fw-semibold::before{font-weight:600!important;}.bi.bi-fw-bold::before{font-weight:700!important;}.bi.bi-fw-bolder::before{font-weight:bolder!important;}

@media (min-width:576px){*[dir=rtl] .position-sm-start{left:auto!important;right:0!important}*[dir=rtl] .position-sm-end{left:0!important;right:auto!important}*[dir=rtl] .border-sm-start{border-right:1px solid!important}*[dir=rtl] .border-sm-end{border-left:1px solid!important}*[dir=rtl] .flex-sm-row{flex-direction:row-reverse!important}*[dir=rtl] .float-sm-start{float:right!important}*[dir=rtl] .float-sm-end{float:left!important}*[dir=rtl] .text-sm-start{text-align:right!important}*[dir=rtl] .text-sm-end{text-align:left!important}*[dir=rtl] .me-sm-auto{margin-left:auto!important;margin-right:0!important}*[dir=rtl] .ms-sm-auto{margin-right:auto!important;margin-left:0!important}*[dir=rtl] .me-sm-0{margin-left:0!important;}*[dir=rtl] .me-sm-1{margin-left:.25rem!important;margin-right:0!important}*[dir=rtl] .me-sm-2{margin-left:.5rem!important;margin-right:0!important}*[dir=rtl] .me-sm-3{margin-left:1rem!important;margin-right:0!important}*[dir=rtl] .me-sm-4{margin-left:1.5rem!important;margin-right:0!important}*[dir=rtl] .me-sm-5{margin-left:3rem!important;margin-right:0!important}*[dir=rtl] .ms-sm-0{margin-right:0!important;}*[dir=rtl] .ms-sm-1{margin-right:.25rem!important;margin-left:0!important}*[dir=rtl] .ms-sm-2{margin-right:.5rem!important;margin-left:0!important}*[dir=rtl] .ms-sm-3{margin-right:1rem!important;margin-left:0!important}*[dir=rtl] .ms-sm-4{margin-right:1.5rem!important;margin-left:0!important}*[dir=rtl] .ms-sm-5{margin-right:3rem!important;margin-left:0!important}*[dir=rtl] .pe-sm-0{padding-left:0!important;}*[dir=rtl] .pe-sm-1{padding-left:.25rem!important;padding-right:0!important}*[dir=rtl] .pe-sm-2{padding-left:.5rem!important;padding-right:0!important}*[dir=rtl] .pe-sm-3{padding-left:1rem!important;padding-right:0!important}*[dir=rtl] .pe-sm-4{padding-left:1.5rem!important;padding-right:0!important}*[dir=rtl] .pe-sm-5{padding-left:3rem!important;padding-right:0!important}*[dir=rtl] .ps-sm-0{padding-right:0!important;}*[dir=rtl] .ps-sm-1{padding-right:.25rem!important;padding-left:0!important}*[dir=rtl] .ps-sm-2{padding-right:.5rem!important;padding-left:0!important}*[dir=rtl] .ps-sm-3{padding-right:1rem!important;padding-left:0!important}*[dir=rtl] .ps-sm-4{padding-right:1.5rem!important;padding-left:0!important}*[dir=rtl] .ps-sm-5{padding-right:3rem!important;padding-left:0!important}}

@media (min-width:768px){*[dir=rtl] .position-md-start{left:auto!important;right:0!important}*[dir=rtl] .position-md-end{left:0!important;right:auto!important}*[dir=rtl] .border-md-start{border-right:1px solid!important}*[dir=rtl] .border-md-end{border-left:1px solid!important}*[dir=rtl] .flex-md-row{flex-direction:row-reverse!important}*[dir=rtl] .float-md-start{float:right!important}*[dir=rtl] .float-md-end{float:left!important}*[dir=rtl] .text-md-start{text-align:right!important}*[dir=rtl] .text-md-end{text-align:left!important}*[dir=rtl] .me-md-auto{margin-left:auto!important;margin-right:0!important}*[dir=rtl] .ms-md-auto{margin-right:auto!important;margin-left:0!important}*[dir=rtl] .me-md-0{margin-left:0!important;}*[dir=rtl] .me-md-1{margin-left:.25rem!important;margin-right:0!important}*[dir=rtl] .me-md-2{margin-left:.5rem!important;margin-right:0!important}*[dir=rtl] .me-md-3{margin-left:1rem!important;margin-right:0!important}*[dir=rtl] .me-md-4{margin-left:1.5rem!important;margin-right:0!important}*[dir=rtl] .me-md-5{margin-left:3rem!important;margin-right:0!important}*[dir=rtl] .ms-md-0{margin-right:0!important;}*[dir=rtl] .ms-md-1{margin-right:.25rem!important;margin-left:0!important}*[dir=rtl] .ms-md-2{margin-right:.5rem!important;margin-left:0!important}*[dir=rtl] .ms-md-3{margin-right:1rem!important;margin-left:0!important}*[dir=rtl] .ms-md-4{margin-right:1.5rem!important;margin-left:0!important}*[dir=rtl] .ms-md-5{margin-right:3rem!important;margin-left:0!important}*[dir=rtl] .pe-md-0{padding-left:0!important;}*[dir=rtl] .pe-md-1{padding-left:.25rem!important;padding-right:0!important}*[dir=rtl] .pe-md-2{padding-left:.5rem!important;padding-right:0!important}*[dir=rtl] .pe-md-3{padding-left:1rem!important;padding-right:0!important}*[dir=rtl] .pe-md-4{padding-left:1.5rem!important;padding-right:0!important}*[dir=rtl] .pe-md-5{padding-left:3rem!important;padding-right:0!important}*[dir=rtl] .ps-md-0{padding-right:0!important;}*[dir=rtl] .ps-md-1{padding-right:.25rem!important;padding-left:0!important}*[dir=rtl] .ps-md-2{padding-right:.5rem!important;padding-left:0!important}*[dir=rtl] .ps-md-3{padding-right:1rem!important;padding-left:0!important}*[dir=rtl] .ps-md-4{padding-right:1.5rem!important;padding-left:0!important}*[dir=rtl] .ps-md-5{padding-right:3rem!important;padding-left:0!important}}

@media (min-width:992px){*[dir=rtl] .position-lg-start{left:auto!important;right:0!important}*[dir=rtl] .position-lg-end{left:0!important;right:auto!important}*[dir=rtl] .border-lg-start{border-right:1px solid!important}*[dir=rtl] .border-lg-end{border-left:1px solid!important}*[dir=rtl] .flex-lg-row{flex-direction:row-reverse!important}*[dir=rtl] .float-lg-start{float:right!important}*[dir=rtl] .float-lg-end{float:left!important}*[dir=rtl] .text-lg-start{text-align:right!important}*[dir=rtl] .text-lg-end{text-align:left!important}*[dir=rtl] .me-lg-auto{margin-left:auto!important;margin-right:0!important}*[dir=rtl] .ms-lg-auto{margin-right:auto!important;margin-left:0!important}*[dir=rtl] .me-lg-0{margin-left:0!important;}*[dir=rtl] .me-lg-1{margin-left:.25rem!important;margin-right:0!important}*[dir=rtl] .me-lg-2{margin-left:.5rem!important;margin-right:0!important}*[dir=rtl] .me-lg-3{margin-left:1rem!important;margin-right:0!important}*[dir=rtl] .me-lg-4{margin-left:1.5rem!important;margin-right:0!important}*[dir=rtl] .me-lg-5{margin-left:3rem!important;margin-right:0!important}*[dir=rtl] .ms-lg-0{margin-right:0!important;}*[dir=rtl] .ms-lg-1{margin-right:.25rem!important;margin-left:0!important}*[dir=rtl] .ms-lg-2{margin-right:.5rem!important;margin-left:0!important}*[dir=rtl] .ms-lg-3{margin-right:1rem!important;margin-left:0!important}*[dir=rtl] .ms-lg-4{margin-right:1.5rem!important;margin-left:0!important}*[dir=rtl] .ms-lg-5{margin-right:3rem!important;margin-left:0!important}*[dir=rtl] .pe-lg-0{padding-left:0!important;}*[dir=rtl] .pe-lg-1{padding-left:.25rem!important;padding-right:0!important}*[dir=rtl] .pe-lg-2{padding-left:.5rem!important;padding-right:0!important}*[dir=rtl] .pe-lg-3{padding-left:1rem!important;padding-right:0!important}*[dir=rtl] .pe-lg-4{padding-left:1.5rem!important;padding-right:0!important}*[dir=rtl] .pe-lg-5{padding-left:3rem!important;padding-right:0!important}*[dir=rtl] .ps-lg-0{padding-right:0!important;}*[dir=rtl] .ps-lg-1{padding-right:.25rem!important;padding-left:0!important}*[dir=rtl] .ps-lg-2{padding-right:.5rem!important;padding-left:0!important}*[dir=rtl] .ps-lg-3{padding-right:1rem!important;padding-left:0!important}*[dir=rtl] .ps-lg-4{padding-right:1.5rem!important;padding-left:0!important}*[dir=rtl] .ps-lg-5{padding-right:3rem!important;padding-left:0!important}}

@media (min-width:1200px){*[dir=rtl] .position-xl-start{left:auto!important;right:0!important}*[dir=rtl] .position-xl-end{left:0!important;right:auto!important}*[dir=rtl] .border-xl-start{border-right:1px solid!important}*[dir=rtl] .border-xl-end{border-left:1px solid!important}*[dir=rtl] .flex-xl-row{flex-direction:row-reverse!important}*[dir=rtl] .float-xl-start{float:right!important}*[dir=rtl] .float-xl-end{float:left!important}*[dir=rtl] .text-xl-start{text-align:right!important}*[dir=rtl] .text-xl-end{text-align:left!important}*[dir=rtl] .me-xl-auto{margin-left:auto!important;margin-right:0!important}*[dir=rtl] .ms-xl-auto{margin-right:auto!important;margin-left:0!important}*[dir=rtl] .me-xl-0{margin-left:0!important;}*[dir=rtl] .me-xl-1{margin-left:.25rem!important;margin-right:0!important}*[dir=rtl] .me-xl-2{margin-left:.5rem!important;margin-right:0!important}*[dir=rtl] .me-xl-3{margin-left:1rem!important;margin-right:0!important}*[dir=rtl] .me-xl-4{margin-left:1.5rem!important;margin-right:0!important}*[dir=rtl] .me-xl-5{margin-left:3rem!important;margin-right:0!important}*[dir=rtl] .ms-xl-0{margin-right:0!important;}*[dir=rtl] .ms-xl-1{margin-right:.25rem!important;margin-left:0!important}*[dir=rtl] .ms-xl-2{margin-right:.5rem!important;margin-left:0!important}*[dir=rtl] .ms-xl-3{margin-right:1rem!important;margin-left:0!important}*[dir=rtl] .ms-xl-4{margin-right:1.5rem!important;margin-left:0!important}*[dir=rtl] .ms-xl-5{margin-right:3rem!important;margin-left:0!important}*[dir=rtl] .pe-xl-0{padding-left:0!important;}*[dir=rtl] .pe-xl-1{padding-left:.25rem!important;padding-right:0!important}*[dir=rtl] .pe-xl-2{padding-left:.5rem!important;padding-right:0!important}*[dir=rtl] .pe-xl-3{padding-left:1rem!important;padding-right:0!important}*[dir=rtl] .pe-xl-4{padding-left:1.5rem!important;padding-right:0!important}*[dir=rtl] .pe-xl-5{padding-left:3rem!important;padding-right:0!important}*[dir=rtl] .ps-xl-0{padding-right:0!important;}*[dir=rtl] .ps-xl-1{padding-right:.25rem!important;padding-left:0!important}*[dir=rtl] .ps-xl-2{padding-right:.5rem!important;padding-left:0!important}*[dir=rtl] .ps-xl-3{padding-right:1rem!important;padding-left:0!important}*[dir=rtl] .ps-xl-4{padding-right:1.5rem!important;padding-left:0!important}*[dir=rtl] .ps-xl-5{padding-right:3rem!important;padding-left:0!important}}

@media (min-width:1400px){*[dir=rtl] .position-xxl-start{left:auto!important;right:0!important}*[dir=rtl] .position-xxl-end{left:0!important;right:auto!important}*[dir=rtl] .border-xxl-start{border-right:1px solid!important}*[dir=rtl] .border-xxl-end{border-left:1px solid!important}*[dir=rtl] .flex-xxl-row{flex-direction:row-reverse!important}*[dir=rtl] .float-xxl-start{float:right!important}*[dir=rtl] .float-xxl-end{float:left!important}*[dir=rtl] .text-xxl-start{text-align:right!important}*[dir=rtl] .text-xxl-end{text-align:left!important}*[dir=rtl] .me-xxl-auto{margin-left:auto!important;margin-right:0!important}*[dir=rtl] .ms-xxl-auto{margin-right:auto!important;margin-left:0!important}*[dir=rtl] .me-xxl-0{margin-left:0!important;}*[dir=rtl] .me-xxl-1{margin-left:.25rem!important;margin-right:0!important}*[dir=rtl] .me-xxl-2{margin-left:.5rem!important;margin-right:0!important}*[dir=rtl] .me-xxl-3{margin-left:1rem!important;margin-right:0!important}*[dir=rtl] .me-xxl-4{margin-left:1.5rem!important;margin-right:0!important}*[dir=rtl] .me-xxl-5{margin-left:3rem!important;margin-right:0!important}*[dir=rtl] .ms-xxl-0{margin-right:0!important;}*[dir=rtl] .ms-xxl-1{margin-right:.25rem!important;margin-left:0!important}*[dir=rtl] .ms-xxl-2{margin-right:.5rem!important;margin-left:0!important}*[dir=rtl] .ms-xxl-3{margin-right:1rem!important;margin-left:0!important}*[dir=rtl] .ms-xxl-4{margin-right:1.5rem!important;margin-left:0!important}*[dir=rtl] .ms-xxl-5{margin-right:3rem!important;margin-left:0!important}*[dir=rtl] .pe-xxl-0{padding-left:0!important;}*[dir=rtl] .pe-xxl-1{padding-left:.25rem!important;padding-right:0!important}*[dir=rtl] .pe-xxl-2{padding-left:.5rem!important;padding-right:0!important}*[dir=rtl] .pe-xxl-3{padding-left:1rem!important;padding-right:0!important}*[dir=rtl] .pe-xxl-4{padding-left:1.5rem!important;padding-right:0!important}*[dir=rtl] .pe-xxl-5{padding-left:3rem!important;padding-right:0!important}*[dir=rtl] .ps-xxl-0{padding-right:0!important;}*[dir=rtl] .ps-xxl-1{padding-right:.25rem!important;padding-left:0!important}*[dir=rtl] .ps-xxl-2{padding-right:.5rem!important;padding-left:0!important}*[dir=rtl] .ps-xxl-3{padding-right:1rem!important;padding-left:0!important}*[dir=rtl] .ps-xxl-4{padding-right:1.5rem!important;padding-left:0!important}*[dir=rtl] .ps-xxl-5{padding-right:3rem!important;padding-left:0!important}}

.btn-xl,.btn-group-xl>.btn{--bs-btn-padding-y:.75rem;--bs-btn-padding-x:1.5rem;--bs-btn-font-size:1.5rem;--bs-btn-border-radius:var(--bs-border-radius-xl,.6rem)}.btn-xl + .dropdown-toggle-split,.btn-group-xl>.btn + .dropdown-toggle-split{padding-right:1rem;padding-left:1rem;}.btn-xxl,.btn-group-xxl>.btn{--bs-btn-padding-y:1rem;--bs-btn-padding-x:2rem;--bs-btn-font-size:1.75rem;--bs-btn-border-radius:var(--bs-border-radius-xxl,.75rem)}.btn-xxl + .dropdown-toggle-split,.btn-group-xxl>.btn + .dropdown-toggle-split{padding-right:1.25rem;padding-left:1.25rem;}

.form-check-input-danger:checked{background-color:var(--bs-danger);border-color:var(--bs-danger);}.form-check-input-success:checked{background-color:var(--bs-success);border-color:var(--bs-success);}.form-check-input-warning:checked{background-color:var(--bs-warning);border-color:var(--bs-warning);}.form-check-input-info:checked{background-color:var(--bs-info);border-color:var(--bs-info);}.form-check-input:checked::before{background-color:#fff;}

/*BS Overrides*/
:root {
  --bs-info: #d5ebff;
  --bs-info-rgb: 213, 235, 255;
  --bs-info-text-emphasis: #003a5a;
  --bs-info-bg-subtle: #e6f0ff;
  --bs-info-border-subtle: #add8f2;
}

/* BS CUSTOM COLOR CLASSES */
:root{--bs-blue:#0d6efd;--bs-blue-rgb:13,110,253;--bs-blue-text:#0a58ca;--bs-blue-bg-subtle:#cfe2ff;--bs-blue-border-subtle:#9ec5fe;}
/* BLUE */
.table-blue{--bs-table-color:#000;--bs-table-bg:#cfe2ff;--bs-table-border-color:#bacbe6;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color);}.btn-outline-blue{--bs-btn-color:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0d6efd;--bs-btn-hover-border-color:#0d6efd;--bs-btn-focus-shadow-rgb:13,110,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0d6efd;--bs-btn-active-border-color:#0d6efd;--bs-btn-active-shadow:inset 0 3px 5px rgba(0,0,0,.125);--bs-btn-disabled-color:#0d6efd;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0d6efd;--bs-gradient:none;}.alert-blue{--bs-alert-color:var(--bs-blue-text);--bs-alert-bg:var(--bs-blue-bg-subtle);--bs-alert-border-color:var(--bs-blue-border-subtle);--bs-alert-link-color:var(--bs-blue-text);}.list-group-item-blue{--bs-list-group-color:var(--bs-blue-text);--bs-list-group-bg:var(--bs-blue-bg-subtle);--bs-list-group-border-color:var(--bs-blue-border-subtle);}.list-group-item-blue.list-group-item-action:hover,.list-group-item-blue.list-group-item-action:focus{--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-blue-border-subtle);}.list-group-item-blue.list-group-item-action:active{--bs-list-group-active-color:var(--bs-emphasis-color);--bs-list-group-active-bg:var(--bs-blue-text);--bs-list-group-active-border-color:var(--bs-blue-text);}.text-bg-blue{color:#fff!important;background-color:RGBA(13,110,253,var(--bs-bg-opacity,1))!important;}.link-blue{color:#0d6efd!important;}.link-blue:hover,.link-blue:focus{color:#0a58ca!important;}.border-blue{--bs-border-opacity:1;border-color:rgba(var(--bs-blue-rgb),var(--bs-border-opacity))!important;}.border-blue-subtle{border-color:var(--bs-blue-border-subtle)!important;}.text-blue{--bs-text-opacity:1;color:rgba(var(--bs-blue-rgb),var(--bs-text-opacity))!important;}.text-blue-emphasis{color:var(--bs-blue-text)!important;}.bg-blue{--bs-bg-opacity:1;background-color:rgba(var(--bs-blue-rgb),var(--bs-bg-opacity))!important;}.bg-blue-subtle{background-color:var(--bs-blue-bg-subtle)!important;}

/* Negative Margin */
.m-n0-5{margin:-.125rem!important}.m-n1{margin:-.25rem!important}.m-n2{margin:-.5rem!important}.m-n3{margin:-1rem!important}.m-n4{margin:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n0-5{margin-top:-.125rem!important}.mt-n1{margin-top:-.25rem!important}.mt-n2{margin-top:-.5rem!important}.mt-n3{margin-top:-1rem!important}.mt-n4{margin-top:-1.5rem!important}.mt-n5{margin-top:-3rem!important}.mb-n0-5{margin-bottom:-.125rem!important}.mb-n1{margin-bottom:-.25rem!important}.mb-n2{margin-bottom:-.5rem!important}.mb-n3{margin-bottom:-1rem!important}.mb-n4{margin-bottom:-1.5rem!important}.mb-n5{margin-bottom:-3rem!important}.ml-n0-5{margin-left:-.125rem!important}.ms-n1{margin-left:-.25rem!important}.ms-n2{margin-left:-.5rem!important}.ms-n3{margin-left:-1rem!important}.ms-n4{margin-left:-1.5rem!important}.ms-n5{margin-left:-3rem!important}.me-n0-5{margin-right:-.125rem!important}.me-n1{margin-right:-.25rem!important}.me-n2{margin-right:-.5rem!important}.me-n3{margin-right:-1rem!important}.me-n4{margin-right:-1.5rem!important}.me-n5{margin-right:-3rem!important}.mx-n0-5{margin-left:-.125rem!important;margin-right:-.125rem!important;}.mx-n1{margin-left:-.25rem!important;margin-right:-.25rem!important;}.mx-n2{margin-left:-.5rem!important;margin-right:-.5rem!important;}.mx-n3{margin-left:-1rem!important;margin-right:-1rem!important;}.mx-n4{margin-left:-1.5rem!important;margin-right:-1.5rem!important;}.mx-n5{margin-left:-3rem!important;margin-right:-3rem!important;}.my-n0-5{margin-top:-.125rem!important;margin-bottom:-.125rem!important;}.my-n1{margin-top:-.25rem!important;margin-bottom:-.25rem!important;}.my-n2{margin-top:-.5rem!important;margin-bottom:-.5rem!important;}.my-n3{margin-top:-1rem!important;margin-bottom:-1rem!important;}.my-n4{margin-top:-1.5rem!important;margin-bottom:-1.5rem!important;}.my-n5{margin-top:-3rem!important;margin-bottom:-3rem!important;}
*[dir="rtl"] .ms-n0-5{margin-right:-.125rem!important}*[dir="rtl"] .ms-n1{margin-right:-.25rem!important}*[dir="rtl"] .ms-n2{margin-right:-.5rem!important}*[dir="rtl"] .ms-n3{margin-right:-1rem!important}*[dir="rtl"] .ms-n4{margin-right:-1.5rem!important}*[dir="rtl"] .ms-n5{margin-right:-3rem!important}*[dir="rtl"] .me-n0-5{margin-left:-.125rem!important}*[dir="rtl"] .me-n1{margin-left:-.25rem!important}*[dir="rtl"] .me-n2{margin-left:-.5rem!important}*[dir="rtl"] .me-n3{margin-left:-1rem!important}*[dir="rtl"] .me-n4{margin-left:-1.5rem!important}*[dir="rtl"] .me-n5{margin-left:-3rem!important}

.underline-dashed {border-bottom: 1px dashed rgba(33, 37, 41, 0.75);cursor: help;}.truncate-1-line {display: -webkit-box;-webkit-line-clamp: 1;-webkit-box-orient: vertical;  overflow: hidden;cursor: pointer;} .truncate-2-lines {display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;  overflow: hidden;cursor: pointer;}.truncate-3-lines {display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;  overflow: hidden;cursor: pointer;}
.truncate-4-lines {display: -webkit-box;-webkit-line-clamp: 4;-webkit-box-orient: vertical;  overflow: hidden;cursor: pointer;}

.wms .available i, .wms .badge i:first-of-type, .wms .totals i { opacity: 0; transform: translateX(5px); transition: opacity 0.2s ease, transform 0.2s ease; }
.wms .available:hover i, .wms .badge:hover i:first-of-type, .wms .totals:hover i { opacity: 1; transform: translateX(0); }
#assign-btn-wrapper .qty-btn { width:30px; height:30px; border-radius:8px; font-size:1rem; border:none; background:#f4f4f4; }
#assign-btn-wrapper .qty-input { width:55px; text-align:center; font-size:1rem; border:1px solid #ddd; border-radius:8px; }
#assign-btn-wrapper .qty-input::-webkit-inner-spin-button, #assign-btn-wrapper .qty-input::-webkit-outer-spin-button { -webkit-appearance:none; margin:0; }
#assign-btn-wrapper .qty-input[type="number"] { -moz-appearance:textfield; }
.wms_layout_table tr:last-child td { border-bottom:none !important; }