/*

Don't modify this file.
use custom-style.css

*/

:root {
    --blue: #007bff;
    --hov-blue: #1f6dc2;
    --soft-blue: rgba(0, 123, 255, 0.15);
    --secondary-base: #ffc519;
    --hov-secondary-base: #dbaa17;
    --soft-secondary-base: rgba(255, 197, 25, 0.15);
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --soft-white: #b5b5bf;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #f77b0b;
    --hov-primary: #e56f0e;
    --soft-primary: rgba(247, 123, 11, 0.15);
    --secondary: #8f97ab;
    --soft-secondary: rgba(143, 151, 171, 0.15);
    --success: #0abb75;
    --soft-success: rgba(10, 187, 117, 0.15);
    --info: #25bcf1;
    --soft-info: rgba(37, 188, 241, 0.15);
    --warning: #ffc519;
    --soft-warning: rgba(255, 197, 25, 0.15);
    --danger: #ef486a;
    --soft-danger: rgba(239, 72, 106, 0.15);
    --light: #f2f3f8;
    --soft-light: #dfdfe6;
    --dark: #111723;
    --soft-dark: rgba(42, 50, 66, 0.15);
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", "Courier New", monospace;
}

pre {
    white-space: initial;
}

html {
    scroll-behavior: smooth;
}

/* common helper utilites */

.c-scrollbar::-webkit-scrollbar {
    width: 4px;
    background: #1e1e2d;
    border-radius: 3px;
}

.c-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.c-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.c-scrollbar {
    scrollbar-color: rgba(255, 255, 255, 0.2);
    scrollbar-width: thin;
}

.c-scrollbar-light::-webkit-scrollbar,
.uppy-Dashboard-files::-webkit-scrollbar,
.bootstrap-select .dropdown-menu .inner::-webkit-scrollbar {
    width: 4px;
    background: rgba(24, 28, 41, 0.08);
    border-radius: 3px;
}

.c-scrollbar-light::-webkit-scrollbar-track,
.uppy-Dashboard-files::-webkit-scrollbar-track,
.bootstrap-select .dropdown-menu .inner::-webkit-scrollbar-track {
    background: transparent;
}

.c-scrollbar-light::-webkit-scrollbar-thumb,
.uppy-Dashboard-files::-webkit-scrollbar-thumb,
.bootstrap-select .dropdown-menu .inner::-webkit-scrollbar-thumb {
    background: rgba(24, 28, 41, 0.1);
    border-radius: 3px;
}

.c-scrollbar-light,
.uppy-Dashboard-files,
.bootstrap-select .dropdown-menu .inner {
    scrollbar-color: rgba(24, 28, 41, 0.08);
    scrollbar-width: thin;
}

.no-scrollbar::-webkit-scrollbar {
    width: 0;
}

.no-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.no-scrollbar::-webkit-scrollbar-thumb {
    background: transparent;
}

.img-fit {
    max-height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.customer-login-image {
    max-height: 100%;
    width: 100%;
    object-fit: contain;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.6);
}

.overlay.overlay-fixed {
    position: fixed;
}

.hov-overlay .overlay,
.hov-container .hov-box {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0.3s ease, opacity 0.3s ease;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

.hov-overlay:hover .overlay,
.hov-container:hover .hov-box {
    visibility: visible;
    opacity: 1;
}

.hov-scale-img:hover img,
.hov-scale:hover{
    transform: scale(1.05);
}

.fullscreen {
    min-height: 100vh;
}

/*modal 1050
backdrop 1040
fixed-bottom 1030*/

.z--1 {
    z-index: -1 !important;
}

.z-0 {
    z-index: 0 !important;
}

.z-1 {
    z-index: 1 !important;
}

.z-2 {
    z-index: 2 !important;
}

.z-3 {
    z-index: 3 !important;
}

.z-5 {
    z-index: 5 !important;
}

.z-1020 {
    z-index: 1020 !important;
}

.z-1025 {
    z-index: 1025 !important;
}

.z-1035 {
    z-index: 1035 !important;
}

.z-1045 {
    z-index: 1045 !important;
}

.minw-0 {
    min-width: 0;
}

.text-truncate-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.text-truncate-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.text-truncate-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.c-pointer {
    cursor: pointer !important;
}

.c-not-allowed {
    cursor: not-allowed !important;
}

.c-default {
    cursor: default !important;
}

/* Position */

.attached-top,
.attached-bottom {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
}

.attached-top {
    top: 0;
}

.attached-bottom {
    bottom: 0;
}

.separator {
    position: relative;
    text-align: center;
    z-index: 1;
}

.separator:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #ebedf2;
    left: 0;
    right: 0;
    top: 50%;
    z-index: -1;
}

.absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.absolute-full {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.absolute-top-right {
    position: absolute;
    top: 0;
    right: 0;
}

[dir="rtl"] .absolute-top-right {
    right: auto;
    left: 0;
}

.absolute-top-right {
    position: absolute;
    top: 0;
    right: 0;
}

[dir="rtl"] .absolute-top-right {
    right: auto;
    left: 0;
}

.absolute-top-right--2px{
    position: absolute;
    top: -2px;
    right: -2px;
}

.absolute-top-right--5px{
    position: absolute;
    top: -5px;
    right: -5px;
}

.absolute-top-right--10px{
    position: absolute;
    top: -10px;
    right: -6px;
}

.absolute-top-left {
    position: absolute;
    top: 0;
    left: 0;
}

[dir="rtl"] .absolute-top-left {
    left: auto;
    right: 0;
}

.absolute-bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
}

[dir="rtl"] .absolute-bottom-right {
    left: auto;
    right: 0;
}

.absolute-bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
}

[dir="rtl"] .absolute-bottom-left {
    left: auto;
    right: 0;
}

.absolute-top-center {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.sticky-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1020;
}

.recommended-ribbon {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background: #ff0000;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    padding: 5px 30px;
    top: 29px;
    right: -40px;
}

.dot-loader > div {
    display: inline-flex;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    margin: 0 2px;
    background: #777;
    -webkit-animation: loader 1.48s ease-in-out infinite both;
    animation: loader 1.48s ease-in-out infinite both;
}

.dot-loader > div:nth-child(1) {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.dot-loader > div:nth-child(2) {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.attributes-color-container {
    display: block;
    width: 40px;
    height: 25px;
    border: solid 1px #000;
}

@-webkit-keyframes loader {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0.2;
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.8;
    }
}

@keyframes loader {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0.2;
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.8;
    }
}

.hor-swipe {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .mobile-hor-swipe {
        -webkit-overflow-scrolling: touch;
        overflow-x: auto;
        white-space: nowrap;
    }
}

.top-0 {
    top: 0 !important;
}

.top-100 {
    top: 100% !important;
}

.bottom-0 {
    bottom: 0 !important;
}

.bottom-100 {
    bottom: 100% !important;
}

.left-0 {
    left: 0 !important;
}

.left-100 {
    left: 100% !important;
}

.right-0 {
    right: 0 !important;
}

.right-100 {
    right: 100% !important;
}

/*bootstrap extend*/

.fw-100 {
    font-weight: 100 !important;
}

.fw-200 {
    font-weight: 200 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-bold {
    font-weight: bold;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-900 {
    font-weight: 900 !important;
}

.fs-8 {
    font-size: 0.5rem !important;
}

.fs-9 {
    font-size: 0.5625rem !important;
}

.fs-10 {
    font-size: 0.625rem !important;
}

.fs-11 {
    font-size: 0.6875rem !important;
}

.fs-12 {
    font-size: 0.75rem !important;
}

.fs-13 {
    font-size: 0.8125rem !important;
}

.fs-14 {
    font-size: 0.875rem !important;
}

.fs-15 {
    font-size: 0.9375rem !important;
}

.fs-15 {
    font-size: 0.9375rem !important;
}

.fs-16 {
    font-size: 1rem !important;
}

.fs-17 {
    font-size: 1.0625rem !important;
}

.fs-18 {
    font-size: 1.125rem !important;
}

.fs-19 {
    font-size: 1.1875rem !important;
}

.fs-20 {
    font-size: 1.25rem !important;
}

.fs-21 {
    font-size: 1.3125rem !important;
}

.fs-22 {
    font-size: 1.375rem !important;
}

.fs-23 {
    font-size: 1.4375rem !important;
}

.fs-24 {
    font-size: 1.5rem !important;
}

.fs-26 {
    font-size: 1.625rem !important;
}

.fs-28 {
    font-size: 1.75rem !important;
}

.fs-30 {
    font-size: 1.875rem !important;
}

.fs-36 {
    font-size: 2.25rem !important;
}

.lh-1 {
    line-height: 1 !important;
}

.lh-1-1 {
    line-height: 1.1 !important;
}

.lh-1-2 {
    line-height: 1.2 !important;
}

.lh-1-3 {
    line-height: 1.3 !important;
}

.lh-1-4 {
    line-height: 1.4 !important;
}

.lh-1-5 {
    line-height: 1.5 !important;
}

.lh-1-6 {
    line-height: 1.6 !important;
}

.lh-1-7 {
    line-height: 1.7 !important;
}

.lh-1-8 {
    line-height: 1.8 !important;
}

.lh-1-9 {
    line-height: 1.9 !important;
}

.lh-2 {
    line-height: 2 !important;
}

.opacity-0,
.hov-opacity-0:hover {
    opacity: 0 !important;
}

.opacity-10 ,
.hov-opacity-10:hover {
    opacity: 0.1 !important;
}

.opacity-20 ,
.hov-opacity-20:hover {
    opacity: 0.2 !important;
}

.opacity-30 ,
.hov-opacity-30:hover {
    opacity: 0.3 !important;
}

.opacity-40 ,
.hov-opacity-40:hover {
    opacity: 0.4 !important;
}

.opacity-50 ,
.hov-opacity-50:hover {
    opacity: 0.5 !important;
}

.opacity-60 ,
.hov-opacity-60:hover {
    opacity: 0.6 !important;
}

.opacity-70 ,
.hov-opacity-70:hover {
    opacity: 0.7 !important;
}

.opacity-80 ,
.hov-opacity-80:hover {
    opacity: 0.8 !important;
}

.opacity-90 ,
.hov-opacity-90:hover {
    opacity: 0.9 !important;
}

.opacity-100 ,
.hov-opacity-100:hover {
    opacity: 1 !important;
}

.shadow-xs ,
.hov-shadow-xs:hover {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
}

.shadow-sm ,
.hov-shadow-sm:hover {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}

.shadow ,
.hov-shadow:hover {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}

.shadow-md ,
.hov-shadow-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.shadow-lg ,
.hov-shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.shadow-xl ,
.hov-shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.shadow-2xl ,
.hov-shadow-2xl:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.shadow-out ,
.hov-shadow-out:hover {
    z-index: 2 !important;
    box-shadow: 0px 20px 40px rgb(0 0 0 / 16%) !important;
    /* box-shadow: 0px 2px 30px -7px rgb(0 0 0 / 30%) !important; */
}

.shadow-none ,
.hov-shadow-none:hover {
    box-shadow: none !important;
}

.bg-cover {
    background-size: cover;
}

.bg-center {
    background-position: center center;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.bg-primary ,
.hov-bg-primary:hover {
    background-color: var(--primary) !important;
}

.bg-soft-primary,
.hov-bg-soft-primary:hover {
    background-color: var(--soft-primary) !important;
}

.bg-secondary,
.hov-bg-secondary:hover {
    background-color: var(--secondary) !important;
}

.bg-soft-secondary,
.hov-bg-soft-secondary:hover {
    background-color: var(--soft-secondary) !important;
}

.bg-success,
.hov-bg-success:hover {
    background-color: var(--success) !important;
}

.bg-soft-success,
.hov-bg-soft-success:hover {
    background-color: var(--soft-success) !important;
}

.bg-info,
.hov-bg-info:hover {
    background-color: var(--info) !important;
}

.bg-soft-info,
.hov-bg-soft-info:hover {
    background-color: var(--soft-info) !important;
}

.bg-warning,
.hov-bg-warning:hover {
    background-color: var(--warning) !important;
}

.bg-soft-warning,
.hov-bg-soft-warning:hover {
    background-color: var(--soft-warning) !important;
}

.bg-secondary-base,
.hov-bg-secondary-base:hover {
    background-color: var(--secondary-base) !important;
}

.bg-soft-secondary-base,
.hov-bg-soft-secondary-base:hover {
    background-color: var(--soft-secondary-base) !important;
}

.bg-danger,
.hov-bg-danger:hover {
    background-color: var(--danger) !important;
}

.bg-soft-danger,
.hov-bg-soft-danger:hover {
    background-color: var(--soft-danger) !important;
}

.bg-dark,
.hov-bg-dark:hover {
    background-color: var(--dark) !important;
}

.bg-soft-dark,
.hov-bg-soft-dark:hover {
    background-color: var(--soft-dark) !important;
}

.bg-blue ,
.hov-bg-blue:hover {
    background-color: var(--blue) !important;
}

.bg-soft-blue,
.hov-bg-soft-blue:hover {
    background-color: var(--soft-blue) !important;
}

.bg-light,
.hov-bg-light:hover {
    background-color: var(--light) !important;
}

.bg-black,
.hov-bg-black:hover {
    background-color: #17171f !important;
}

.bg-soft-light,
.hov-bg-soft-light:hover {
    background-color: var(--soft-light) !important;
}

.bg-gray,
.hov-bg-gray:hover {
    background-color: var(--gray) !important;
}

.bg-soft-white{
    background-color: var(--soft-white) !important;
}

.hov-bg-white:hover {
    background-color: #fff !important;
}

.bg-black-10,
.hov-bg-black-10:hover{
    background-color: rgb(0 0 0 / 10%) !important;
}

.bg-black-20,
.hov-bg-black-20:hover,
.bg-black-10:hover{
    background-color: rgb(0 0 0 / 20%) !important;
}

.bg-grad-1 {
    background-color: #eb4786;
    background-image: linear-gradient(315deg, #eb4786 0%, #b854a6 74%);
}

.bg-grad-2 {
    background-color: #875fc0;
    background-image: linear-gradient(315deg, #875fc0 0%, #5346ba 74%);
}

.bg-grad-3 {
    background-color: #47c5f4;
    background-image: linear-gradient(315deg, #47c5f4 0%, #6791d9 74%);
}

.bg-grad-4 {
    background-color: #ffb72c;
    background-image: linear-gradient(315deg, #ffb72c 0%, #f57f59 74%);
}

.bg-grad-5 {
    background-color: #f2d470;
    background-image: linear-gradient( 120deg, #f2d470 0%, #f39f3d 100%);
}

/* box-shadow */

.shadow-primary ,
.hov-shadow-primary:hover {
    box-shadow: -5px 5px 18px rgba(1, 158, 247, 0.39);
}

.shadow-secondary ,
.hov-shadow-secondary:hover {
    box-shadow: -2px 5px 15px rgba(0, 0, 0, 0.08);
}

.shadow-success ,
.hov-shadow-success:hover {
    box-shadow: -5px 5px 18px rgba(81, 204, 138, 0.39);
}

[class*="border"],
hr {
    /* border-color: #dfdfe6 !important; */
    border-color: #ededf2 !important;
}

.border-2{
    border: 2px solid !important;
}

.border-3{
    border: 2px solid !important;
}

.border-gray-100 {
    border-color: #f7fafc !important;
}

.border-gray-200 {
    border-color: #edf2f7 !important;
}

.border-gray-300 {
    border-color: #e2e8f0 !important;
}

.border-gray-400 {
    border-color: #cbd5e0 !important;
}

.border-gray-500 {
    border-color: #a0aec0 !important;
}

.border-gray-600 {
    border-color: #718096 !important;
}

.border-gray-700 {
    border-color: #4a5568 !important;
}

.border-gray-800 {
    border-color: #2d3748 !important;
}

.border-gray-900 {
    border-color: #1a202c !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

.border-secondary {
    border-color: var(--secondary) !important;
}

.border-success {
    border-color: var(--success) !important;
}

.border-info {
    border-color: var(--info) !important;
}

.border-warning {
    border-color: var(--warning) !important;
}

.border-secondary-base {
    border-color: var(--secondary-base) !important;
}

.border-danger {
    border-color: var(--danger) !important;
}

.border-light {
    border-color: var(--light) !important;
}

.border-dark {
    border-color: var(--dark) !important;
}

.border-blue {
    border-color: var(--blue) !important;
}

.border-soft-primary {
    border-color: var(--soft-primary) !important;
}

.border-soft-secondary {
    border-color: var(--soft-secondary) !important;
}

.border-soft-success {
    border-color: var(--soft-success) !important;
}

.border-soft-info {
    border-color: var(--soft-info) !important;
}

.border-soft-warning {
    border-color: var(--soft-warning) !important;
}

.border-soft-secondary-base {
    border-color: var(--soft-secondary-base) !important;
}

.border-soft-danger {
    border-color: var(--soft-danger) !important;
}

.border-soft-dark {
    border-color: var(--soft-dark) !important;
}

.border-soft-light {
    border-color: var(--soft-light) !important;
}

.border-soft-blue {
    border-color: var(--soft-blue) !important;
}

.spinner-border {
    border-right-color: transparent !important;
}

.border-width-2 {
    border-width: 2px !important;
}

.border-width-3 {
    border-width: 3px !important;
}

.border-width-4 {
    border-width: 4px !important;
}

.border-bottom-6px {
    border-bottom: 6px solid !important;
    border-bottom-color: var(--soft-light) !important;
}

.done .border-bottom-6px {
    border-bottom-color: var(--success) !important;
}

.active .border-bottom-6px {
    border-bottom-color: var(--primary) !important;
}

.border-dotted {
    border-style: dotted !important;
}

.border-dashed {
    border-style: dashed !important;
}

.border-transparent {
    border-color: transparent !important;
}

.hov-border:hover {
    border-color: #dee2e6 !important;
}

.hov-border-primary:hover {
    border-color: var(--primary) !important;
}

.text-primary,
.hov-text-primary:hover {
    color: var(--primary) !important;
}

.text-soft-primary,
.hov-text-soft-primary:hover {
    color: var(--soft-primary) !important;
}

.text-secondary,
.hov-text-secondary:hover {
    color: var(--secondary) !important;
}

.text-soft-secondary,
.hov-text-soft-secondary:hover {
    color: var(--soft-secondary) !important;
}

.text-success,
.hov-text-success:hover {
    color: var(--success) !important;
}

.text-soft-success,
.hov-text-soft-success:hover {
    color: var(--soft-success) !important;
}

.text-info,
.hov-text-info:hover {
    color: var(--info) !important;
}

.text-soft-info,
.hov-text-soft-info:hover {
    color: var(--soft-info) !important;
}

.text-warning,
.hov-text-warning:hover {
    color: var(--warning) !important;
}

.text-soft-warning,
.hov-text-soft-warning:hover {
    color: var(--soft-warning) !important;
}

.text-secondary-base,
.hov-text-secondary-base:hover {
    color: var(--secondary-base) !important;
}

.text-soft-secondary-base,
.hov-text-soft-secondary-base:hover {
    color: var(--soft-secondary-base) !important;
}

.text-danger,
.hov-text-danger:hover {
    color: var(--danger) !important;
}

.text-soft-danger,
.hov-text-soft-danger:hover {
    color: var(--soft-danger) !important;
}

.text-dark,
.hov-text-dark:hover {
    color: var(--dark) !important;
}

.text-soft-dark,
.hov-text-soft-dark:hover {
    color: var(--soft-dark) !important;
}

.text-gray ,
.hov-text-gray:hover {
    color: var(--gray) !important;
}

.text-gray-dark {
    color: var(--gray-dark) !important;
}

.text-blue ,
.hov-text-blue:hover {
    color: var(--blue) !important;
}

.text-soft-blue,
.hov-text-soft-blue:hover {
    color: var(--soft-blue) !important;
}

.text-light,
.hov-text-light:hover {
    color: var(--light) !important;
}

.text-soft-light{
    color: var(--soft-light) !important;
}

.text-soft-white{
    color: var(--soft-white) !important;
}

.text-blue {
    color: var(--blue) !important;
}

.text-inherit {
    color: inherit !important;
}

.hov-text-white:hover {
    color: #fff !important;
}

.hov-text-bold:hover {
    font-weight: bold !important;
}

.w-auto {
    width: auto;
}

.w-5px,
.size-5px {
    width: 5px;
}

.w-10px,
.size-10px {
    width: 10px;
}

.w-15px,
.size-15px {
    width: 15px;
}

.w-20px,
.size-20px {
    width: 20px;
}

.w-25px,
.size-25px {
    width: 25px;
}

.w-30px,
.size-30px {
    width: 30px;
}

.w-35px,
.size-35px {
    width: 35px;
}

.w-40px,
.size-40px {
    width: 40px;
}

.w-45px,
.size-45px {
    width: 45px;
}

.w-48px,
.size-48px {
    width: 48px;
}

.w-50px,
.size-50px {
    width: 50px;
}

.w-60px,
.size-60px {
    width: 60px;
}

.w-64px,
.size-64px {
    width: 64px;
}

.w-70px,
.size-70px {
    width: 70px;
}

.w-80px,
.size-80px {
    width: 80px;
}

.w-90px,
.size-90px {
    width: 90px;
}

.w-100px,
.size-100px {
    width: 100px;
}

.w-110px,
.size-110px {
    width: 110px;
}

.w-120px,
.size-120px {
    width: 120px;
}

.w-130px,
.size-130px {
    width: 130px;
}

.w-140px,
.size-140px {
    width: 140px;
}

.w-150px,
.size-150px {
    width: 150px;
}

.w-160px,
.size-160px {
    width: 160px;
}

.w-170px,
.size-170px {
    width: 170px;
}

.w-180px,
.size-180px {
    width: 180px;
}

.w-190px,
.size-190px {
    width: 190px;
}

.w-200px,
.size-200px {
    width: 200px;
}

.w-210px,
.size-210px {
    width: 210px;
}

.w-220px,
.size-220px {
    width: 220px;
}

.w-230px,
.size-230px {
    width: 230px;
}

.w-240px,
.size-240px {
    width: 240px;
}

.w-250px,
.size-250px {
    width: 250px;
}

.w-260px,
.size-260px {
    width: 260px;
}

.w-270px,
.size-270px {
    width: 270px;
}

.w-280px,
.size-280px {
    width: 280px;
}

.w-290px,
.size-290px {
    width: 290px;
}

.w-300px,
.size-300px {
    width: 300px;
}

.w-310px,
.size-310px {
    width: 310px;
}

.w-320px,
.size-320px {
    width: 320px;
}

.w-330px,
.size-330px {
    width: 330px;
}

.w-340px,
.size-340px {
    width: 340px;
}

.w-350px,
.size-350px {
    width: 350px;
}

.w-360px,
.size-360px {
    width: 360px;
}

.w-370px,
.size-370px {
    width: 370px;
}

.w-380px,
.size-380px {
    width: 380px;
}

.w-390px,
.size-390px {
    width: 390px;
}

.w-400px,
.size-400px {
    width: 400px;
}

.w-410px,
.size-410px {
    width: 410px;
}

.w-420px,
.size-420px {
    width: 420px;
}

.w-450px,
.size-450px {
    width: 450px;
}

.w-500px,
.size-500px {
    width: 500px;
}

.w-553px,
.size-553px {
    width: 553px;
}

.w-640px,
.size-640px {
    width: 640px;
}

.w-800px,
.size-800px {
    width: 820px;
}

.h-auto {
    height: auto;
}

.h-5px,
.size-5px {
    height: 5px;
}

.h-10px,
.size-10px {
    height: 10px;
}

.h-15px,
.size-15px {
    height: 15px;
}

.h-20px,
.size-20px {
    height: 20px;
}

.h-25px,
.size-25px {
    height: 25px;
}

.h-30px,
.size-30px {
    height: 30px;
}

.h-35px,
.size-35px {
    height: 35px;
}

.h-43px{
    height:43px;
}

.h-40px,
.size-40px {
    height: 40px;
}

.h-45px,
.size-45px {
    height: 45px;
}

.h-48px,
.size-48px {
    height: 48px;
}

.h-50px,
.size-50px {
    height: 50px;
}

.h-60px,
.size-60px {
    height: 60px;
}

.h-64px,
.size-64px {
    height: 64px;
}

.h-70px,
.size-70px {
    height: 70px;
}

.h-80px,
.size-80px {
    height: 80px;
}

.h-90px,
.size-90px {
    height: 90px;
}

.h-100px,
.size-100px {
    height: 100px;
}

.h-110px,
.size-110px {
    height: 110px;
}

.h-120px,
.size-120px {
    height: 120px;
}

.h-130px,
.size-130px {
    height: 130px;
}

.h-140px,
.size-140px {
    height: 140px;
}

.h-150px,
.size-150px {
    height: 150px;
}

.h-160px,
.size-160px {
    height: 160px;
}

.h-170px,
.size-170px {
    height: 170px;
}

.h-180px,
.size-180px {
    height: 180px;
}

.h-190px,
.size-190px {
    height: 190px;
}

.h-200px,
.size-200px {
    height: 200px;
}

.h-210px,
.size-210px {
    height: 210px;
}

.h-220px,
.size-220px {
    height: 220px;
}

.h-230px,
.size-230px {
    height: 230px;
}

.h-240px,
.size-240px {
    height: 240px;
}

.h-250px,
.size-250px {
    height: 250px;
}

.h-260px,
.size-260px {
    height: 260px;
}

.h-270px,
.size-270px {
    height: 270px;
}

.h-280px,
.size-280px {
    height: 280px;
}

.h-290px,
.size-290px {
    height: 290px;
}

.h-300px,
.size-300px {
    height: 300px;
}

.h-310px,
.size-310px {
    height: 310px;
}

.h-320px,
.size-320px {
    height: 320px;
}

.h-330px,
.size-330px {
    height: 330px;
}

.h-340px,
.size-340px {
    height: 340px;
}

.h-350px,
.size-350px {
    height: 350px;
}

.h-360px,
.size-360px {
    height: 360px;
}

.max-h-360px,
.max-size-360px {
    max-height: 360px;
}

.h-370px,
.size-370px {
    height: 370px;
}

.h-380px,
.size-380px {
    height: 380px;
}

.h-390px,
.size-390px {
    height: 390px;
}

.h-400px,
.size-400px {
    height: 400px;
}

.h-410px,
.size-410px {
    height: 410px;
}

.h-420px,
.size-420px {
    height: 420px;
}

.h-450px,
.size-450px {
    height: 450px;
}

.h-460px,
.size-460px {
    height: 460px;
}

.h-475px,
.size-475px {
    height: 475px;
}

.h-485px,
.size-485px {
    height: 485px;
}

.h-490px,
.size-490px {
    height: 490px;
}

.h-500px,
.size-500px {
    height: 500px;
}

.h-553px,
.size-553px {
    height: 553px;
}

.h-640px,
.size-640px {
    height: 640px;
}

.h-800px,
.size-800px {
    height: 820px;
}

.pl-6,
.px-6,
.p-6 {
    padding-left: 4rem;
}

.pl-7,
.px-7,
.p-7 {
    padding-left: 5rem;
}

.pl-8,
.px-8,
.p-8 {
    padding-left: 6rem;
}

.pl-9,
.px-9,
.p-9 {
    padding-left: 8rem;
}

.pl-10,
.px-10,
.p-10 {
    padding-left: 10rem;
}

.pl-11,
.px-11,
.p-11 {
    padding-left: 12rem;
}

.pl-12,
.px-12,
.p-12 {
    padding-left: 16rem;
}

.pl-2rem,
.px-2rem,
.p-2rem {
    padding-left: 2rem !important;
}

.ml-2rem,
.mx-2rem,
.m-2rem {
    margin-left: 2rem;
}

.pr-6,
.px-6,
.p-6 {
    padding-right: 4rem;
}

.pr-7,
.px-7,
.p-7 {
    padding-right: 5rem;
}

.pr-8,
.px-8,
.p-8 {
    padding-right: 6rem;
}

.pr-9,
.px-9,
.p-9 {
    padding-right: 8rem;
}

.pr-10,
.px-10,
.p-10 {
    padding-right: 10rem;
}

.pr-11,
.px-11,
.p-11 {
    padding-right: 12rem;
}

.pr-12,
.px-12,
.p-12 {
    padding-right: 16rem;
}

.pr-2rem,
.px-2rem,
.p-2rem {
    padding-right: 2rem !important;
}

.mr-2rem,
.mx-2rem,
.m-2rem {
    margin-right: 2rem;
}

.pt-6,
.py-6,
.p-6 {
    padding-top: 4rem;
}

.pt-7,
.py-7,
.p-7 {
    padding-top: 5rem;
}

.pt-8,
.py-8,
.p-8 {
    padding-top: 6rem;
}

.pt-9,
.py-9,
.p-9 {
    padding-top: 8rem;
}

.pt-10,
.py-10,
.p-10 {
    padding-top: 10rem;
}

.pt-11,
.py-11,
.p-11 {
    padding-top: 12rem;
}

.pt-12,
.py-12,
.p-12 {
    padding-top: 16rem;
}

.pt-2rem,
.py-2rem,
.p-2rem {
    padding-top: 2rem !important;
}

.mt-2rem,
.my-2rem,
.m-2rem {
    margin-top: 2rem;
}

.pb-6,
.py-6,
.p-6 {
    padding-bottom: 4rem;
}

.pb-7,
.py-7,
.p-7 {
    padding-bottom: 5rem;
}

.pb-8,
.py-8,
.p-8 {
    padding-bottom: 6rem;
}

.pb-9,
.py-9,
.p-9 {
    padding-bottom: 8rem;
}

.pb-10,
.py-10,
.p-10 {
    padding-bottom: 10rem;
}

.pb-11,
.py-11,
.p-11 {
    padding-bottom: 12rem;
}

.pb-12,
.py-12,
.p-12 {
    padding-bottom: 16rem;
}

.pb-2rem,
.py-2rem,
.p-2rem {
    padding-bottom: 2rem !important;
}

.mb-2rem,
.my-2rem,
.m-2rem {
    margin-bottom: 2rem;
}

.pl-5px,
.px-5px,
.p-5px {
    padding-left: 5px;
}

.pl-10px,
.px-10px,
.p-10px {
    padding-left: 10px;
}

.pl-13px,
.px-13px,
.p-13px {
    padding-left: 13px;
}

.pl-14px,
.px-14px,
.p-14px {
    padding-left: 14px;
}

.pl-15px,
.px-15px,
.p-15px {
    padding-left: 15px;
}

.pl-20px,
.px-20px,
.p-20px {
    padding-left: 20px;
}

.pl-25px,
.px-25px,
.p-25px {
    padding-left: 25px;
}

.pl-30px,
.px-30px,
.p-30px {
    padding-left: 30px;
}

.pr-5px,
.px-5px,
.p-5px {
    padding-right: 5px;
}

.pr-10px,
.px-10px,
.p-10px {
    padding-right: 10px;
}

.pr-13px,
.px-13px,
.p-13px {
    padding-right: 13px;
}

.pr-14px,
.px-14px,
.p-14px {
    padding-right: 14px;
}

.pr-15px,
.px-15px,
.p-15px {
    padding-right: 15px;
}

.pr-20px,
.px-20px,
.p-20px {
    padding-right: 20px;
}

.pr-25px,
.px-25px,
.p-25px {
    padding-right: 25px;
}

.pr-30px,
.px-30px,
.p-30px {
    padding-right: 30px;
}

.pt-5px,
.py-5px,
.p-5px {
    padding-top: 5px;
}

.pt-10px,
.py-10px,
.p-10px {
    padding-top: 10px;
}

.pt-13px,
.py-13px,
.p-13px {
    padding-top: 13px;
}

.pt-14px,
.py-14px,
.p-14px {
    padding-top: 14px;
}

.pt-15px,
.py-15px,
.p-15px {
    padding-top: 15px;
}

.pt-20px,
.py-20px,
.p-20px {
    padding-top: 20px;
}

.pt-25px,
.py-25px,
.p-25px {
    padding-top: 25px;
}

.pt-30px,
.py-30px,
.p-30px {
    padding-top: 30px;
}

.pb-5px,
.py-5px,
.p-5px {
    padding-bottom: 5px;
}

.pb-10px,
.py-10px,
.p-10px {
    padding-bottom: 10px;
}

.pb-15px,
.py-15px,
.p-15px {
    padding-bottom: 15px;
}

.pb-15px,
.py-15px,
.p-15px {
    padding-bottom: 15px;
}

.pb-20px,
.py-20px,
.p-20px {
    padding-bottom: 20px;
}

.pb-25px,
.py-25px,
.p-25px {
    padding-bottom: 25px;
}

.pb-30px,
.py-30px,
.p-30px {
    padding-bottom: 30px;
}

.col-xxl-1,
.col-xxl-2,
.col-xxl-3,
.col-xxl-4,
.col-xxl-5,
.col-xxl-6,
.col-xxl-7,
.col-xxl-8,
.col-xxl-9,
.col-xxl-10,
.col-xxl-11,
.col-xxl-12,
.col-xxl,
.col-xxl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.gutters-5 {
    margin-right: -5px;
    margin-left: -5px;
}

.gutters-5 > .col,
.gutters-5 > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
}

.gutters-10 {
    margin-right: -10px;
    margin-left: -10px;
}

.gutters-10 > .col,
.gutters-10 > [class*="col-"] {
    padding-right: 10px;
    padding-left: 10px;
}

.gutters-15 {
    margin-right: -15px;
    margin-left: -15px;
}

.gutters-15 > .col,
.gutters-15 > [class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}

.gutters-16 {
    margin-right: -16px;
    margin-left: -16px;
}

.gutters-16 > .col,
.gutters-16 > [class*="col-"] {
    padding-right: 16px;
    padding-left: 16px;
}

.gutters-17 {
    margin-right: -17px;
    margin-left: -17px;
}

.gutters-17 > .col,
.gutters-17 > [class*="col-"] {
    padding-right: 17px;
    padding-left: 17px;
}

.gutters-20 {
    margin-right: -20px;
    margin-left: -20px;
}

.gutters-20 > .col,
.gutters-20 > [class*="col-"] {
    padding-right: 20px;
    padding-left: 20px;
}

.gutters-25 {
    margin-right: -25px;
    margin-left: -25px;
}

.gutters-25 > .col,
.gutters-25 > [class*="col-"] {
    padding-right: 25px;
    padding-left: 25px;
}

.gutters-30 {
    margin-right: -30px;
    margin-left: -30px;
}

.gutters-30 > .col,
.gutters-30 > [class*="col-"] {
    padding-right: 30px;
    padding-left: 30px;
}

[dir="rtl"] .row-cols-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

[dir="rtl"] .row-cols-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

[dir="rtl"] .row-cols-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

[dir="rtl"] .row-cols-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

[dir="rtl"] .row-cols-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

[dir="rtl"] .row-cols-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

/* sm */

@media (min-width: 576px) {
    .border-sm {
        border: 1px solid #dfdfe6 !important;
    }
    .border-sm-top {
        border-top: 1px solid #dfdfe6 !important;
    }
    .border-sm-right {
        border-right: 1px solid #dfdfe6 !important;
    }
    .border-sm-bottom {
        border-bottom: 1px solid #dfdfe6 !important;
    }
    .border-sm-left {
        border-left: 1px solid #dfdfe6 !important;
    }
    .border-sm-0 {
        border: 0 !important;
    }
    .border-sm-top-0 {
        border-top: 0 !important;
    }
    .border-sm-right-0 {
        border-right: 0 !important;
    }
    .border-sm-bottom-0 {
        border-bottom: 0 !important;
    }
    .border-sm-left-0 {
        border-left: 0 !important;
    }

    .w-sm-25 {
        width: 25% !important;
    }
    .w-sm-50 {
        width: 50% !important;
    }
    .w-sm-75 {
        width: 75% !important;
    }
    .w-sm-100 {
        width: 100% !important;
    }
    .w-sm-auto {
        width: auto !important;
    }

    .pl-sm-6,
    .px-sm-6,
    .p-sm-6 {
        padding-left: 4rem;
    }
    .pl-sm-7,
    .px-sm-7,
    .p-sm-7 {
        padding-left: 5rem;
    }
    .pl-sm-8,
    .px-sm-8,
    .p-sm-8 {
        padding-left: 6rem;
    }
    .pl-sm-9,
    .px-sm-9,
    .p-sm-9 {
        padding-left: 8rem;
    }
    .pl-sm-10,
    .px-sm-10,
    .p-sm-10 {
        padding-left: 10rem;
    }
    .pl-sm-11,
    .px-sm-11,
    .p-sm-11 {
        padding-left: 12rem;
    }
    .pl-sm-12,
    .px-sm-12,
    .p-sm-12 {
        padding-left: 16rem;
    }
    .pl-sm-2rem,
    .px-sm-2rem,
    .p-sm-2rem {
        padding-left: 2rem !important;
    }

    .pr-sm-6,
    .px-sm-6,
    .p-sm-6 {
        padding-right: 4rem;
    }
    .pr-sm-7,
    .px-sm-7,
    .p-sm-7 {
        padding-right: 5rem;
    }
    .pr-sm-8,
    .px-sm-8,
    .p-sm-8 {
        padding-right: 6rem;
    }
    .pr-sm-9,
    .px-sm-9,
    .p-sm-9 {
        padding-right: 8rem;
    }
    .pr-sm-10,
    .px-sm-10,
    .p-sm-10 {
        padding-right: 10rem;
    }
    .pr-sm-11,
    .px-sm-11,
    .p-sm-11 {
        padding-right: 12rem;
    }
    .pr-sm-12,
    .px-sm-12,
    .p-sm-12 {
        padding-right: 16rem;
    }
    .pr-sm-2rem,
    .px-sm-2rem,
    .p-sm-2rem {
        padding-right: 2rem !important;
    }

    .pt-sm-6,
    .py-sm-6,
    .p-sm-6 {
        padding-top: 4rem;
    }
    .pt-sm-7,
    .py-sm-7,
    .p-sm-7 {
        padding-top: 5rem;
    }
    .pt-sm-8,
    .py-sm-8,
    .p-sm-8 {
        padding-top: 6rem;
    }
    .pt-sm-9,
    .py-sm-9,
    .p-sm-9 {
        padding-top: 8rem;
    }
    .pt-sm-10,
    .py-sm-10,
    .p-sm-10 {
        padding-top: 10rem;
    }
    .pt-sm-11,
    .py-sm-11,
    .p-sm-11 {
        padding-top: 12rem;
    }
    .pt-sm-12,
    .py-sm-12,
    .p-sm-12 {
        padding-top: 16rem;
    }
    .pt-sm-2rem,
    .py-sm-2rem,
    .p-sm-2rem {
        padding-top: 2rem !important;
    }

    .pb-sm-6,
    .py-sm-6,
    .p-sm-6 {
        padding-bottom: 4rem;
    }
    .pb-sm-7,
    .py-sm-7,
    .p-sm-7 {
        padding-bottom: 5rem;
    }
    .pb-sm-8,
    .py-sm-8,
    .p-sm-8 {
        padding-bottom: 6rem;
    }
    .pb-sm-9,
    .py-sm-9,
    .p-sm-9 {
        padding-bottom: 8rem;
    }
    .pb-sm-10,
    .py-sm-10,
    .p-sm-10 {
        padding-bottom: 10rem;
    }
    .pb-sm-11,
    .py-sm-11,
    .p-sm-11 {
        padding-bottom: 12rem;
    }
    .pb-sm-12,
    .py-sm-12,
    .p-sm-12 {
        padding-bottom: 16rem;
    }
    .pb-sm-2rem,
    .py-sm-2rem,
    .p-sm-2rem {
        padding-bottom: 2rem !important;
    }

    .pl-sm-5px,
    .px-sm-5px,
    .p-sm-5px {
        padding-left: 5px;
    }
    .pl-sm-10px,
    .px-sm-10px,
    .p-sm-10px {
        padding-left: 10px;
    }
    .pl-sm-13px,
    .px-sm-13px,
    .p-sm-13px {
        padding-left: 13px;
    }
    .pl-sm-14px,
    .px-sm-14px,
    .p-sm-14px {
        padding-left: 14px;
    }
    .pl-sm-15px,
    .px-sm-15px,
    .p-sm-15px {
        padding-left: 15px;
    }
    .pl-sm-20px,
    .px-sm-20px,
    .p-sm-20px {
        padding-left: 20px;
    }
    .pl-sm-25px,
    .px-sm-25px,
    .p-sm-25px {
        padding-left: 25px;
    }
    .pl-sm-30px,
    .px-sm-30px,
    .p-sm-30px {
        padding-left: 30px;
    }

    .pr-sm-5px,
    .px-sm-5px,
    .p-sm-5px {
        padding-right: 5px;
    }
    .pr-sm-10px,
    .px-sm-10px,
    .p-sm-10px {
        padding-right: 10px;
    }
    .pr-sm-15px,
    .px-sm-15px,
    .p-sm-15px {
        padding-right: 15px;
    }
    .pr-sm-13px,
    .px-sm-13px,
    .p-sm-13px {
        padding-right: 13px;
    }
    .pr-sm-14px,
    .px-sm-14px,
    .p-sm-14px {
        padding-right: 14px;
    }
    .pr-sm-20px,
    .px-sm-20px,
    .p-sm-20px {
        padding-right: 20px;
    }
    .pr-sm-25px,
    .px-sm-25px,
    .p-sm-25px {
        padding-right: 25px;
    }
    .pr-sm-30px,
    .px-sm-30px,
    .p-sm-30px {
        padding-right: 30px;
    }

    .pt-sm-5px,
    .py-sm-5px,
    .p-sm-5px {
        padding-top: 5px;
    }
    .pt-sm-10px,
    .py-sm-10px,
    .p-sm-10px {
        padding-top: 10px;
    }
    .pt-sm-13px,
    .py-sm-13px,
    .p-sm-13px {
        padding-top: 13px;
    }
    .pt-sm-14px,
    .py-sm-14px,
    .p-sm-14px {
        padding-top: 14px;
    }
    .pt-sm-15px,
    .py-sm-15px,
    .p-sm-15px {
        padding-top: 15px;
    }
    .pt-sm-20px,
    .py-sm-20px,
    .p-sm-20px {
        padding-top: 20px;
    }
    .pt-sm-25px,
    .py-sm-25px,
    .p-sm-25px {
        padding-top: 25px;
    }
    .pt-sm-30px,
    .py-sm-30px,
    .p-sm-30px {
        padding-top: 30px;
    }

    .pb-sm-5px,
    .py-sm-5px,
    .p-sm-5px {
        padding-bottom: 5px;
    }
    .pb-sm-10px,
    .py-sm-10px,
    .p-sm-10px {
        padding-bottom: 10px;
    }
    .pb-sm-13px,
    .py-sm-13px,
    .p-sm-13px {
        padding-bottom: 13px;
    }
    .pb-sm-14px,
    .py-sm-14px,
    .p-sm-14px {
        padding-bottom: 14px;
    }
    .pb-sm-15px,
    .py-sm-15px,
    .p-sm-15px {
        padding-bottom: 15px;
    }
    .pb-sm-20px,
    .py-sm-20px,
    .p-sm-20px {
        padding-bottom: 20px;
    }
    .pb-sm-25px,
    .py-sm-25px,
    .p-sm-25px {
        padding-bottom: 25px;
    }
    .pb-sm-30px,
    .py-sm-30px,
    .p-sm-30px {
        padding-bottom: 30px;
    }

    .w-sm-auto {
        width: auto;
    }
    .w-sm-5px,
    .size-sm-5px {
        width: 5px;
    }
    .w-sm-10px,
    .size-sm-10px {
        width: 10px;
    }
    .w-sm-15px,
    .size-sm-15px {
        width: 15px;
    }
    .w-sm-20px,
    .size-sm-20px {
        width: 20px;
    }
    .w-sm-25px,
    .size-sm-25px {
        width: 25px;
    }
    .w-sm-30px,
    .size-sm-30px {
        width: 30px;
    }
    .w-sm-35px,
    .size-sm-35px {
        width: 35px;
    }
    .w-sm-40px,
    .size-sm-40px {
        width: 40px;
    }
    .w-sm-45px,
    .size-sm-45px {
        width: 45px;
    }
    .w-sm-48px,
    .size-sm-48px {
        width: 48px;
    }
    .w-sm-50px,
    .size-sm-50px {
        width: 50px;
    }
    .w-sm-60px,
    .size-sm-60px {
        width: 60px;
    }
    .w-sm-64px,
    .size-sm-64px {
        width: 64px;
    }
    .w-sm-70px,
    .size-sm-70px {
        width: 70px;
    }
    .w-sm-80px,
    .size-sm-80px {
        width: 80px;
    }
    .w-sm-90px,
    .size-sm-90px {
        width: 90px;
    }
    .w-sm-100px,
    .size-sm-100px {
        width: 100px;
    }
    .w-sm-110px,
    .size-sm-110px {
        width: 110px;
    }
    .w-sm-120px,
    .size-sm-120px {
        width: 120px;
    }
    .w-sm-130px,
    .size-sm-130px {
        width: 130px;
    }
    .w-sm-140px,
    .size-sm-140px {
        width: 140px;
    }
    .w-sm-150px,
    .size-sm-150px {
        width: 150px;
    }
    .w-sm-160px,
    .size-sm-160px {
        width: 160px;
    }
    .w-sm-170px,
    .size-sm-170px {
        width: 170px;
    }
    .w-sm-180px,
    .size-sm-180px {
        width: 180px;
    }
    .w-sm-190px,
    .size-sm-190px {
        width: 190px;
    }
    .w-sm-200px,
    .size-sm-200px {
        width: 200px;
    }
    .w-sm-210px,
    .size-sm-210px {
        width: 210px;
    }
    .w-sm-220px,
    .size-sm-220px {
        width: 220px;
    }
    .w-sm-230px,
    .size-sm-230px {
        width: 230px;
    }
    .w-sm-240px,
    .size-sm-240px {
        width: 240px;
    }
    .w-sm-250px,
    .size-sm-250px {
        width: 250px;
    }
    .w-sm-260px,
    .size-sm-260px {
        width: 260px;
    }
    .w-sm-270px,
    .size-sm-270px {
        width: 270px;
    }
    .w-sm-280px,
    .size-sm-280px {
        width: 280px;
    }
    .w-sm-290px,
    .size-sm-290px {
        width: 290px;
    }
    .w-sm-300px,
    .size-sm-300px {
        width: 300px;
    }
    .w-sm-310px,
    .size-sm-310px {
        width: 310px;
    }
    .w-sm-320px,
    .size-sm-320px {
        width: 320px;
    }
    .w-sm-330px,
    .size-sm-330px {
        width: 330px;
    }
    .w-sm-340px,
    .size-sm-340px {
        width: 340px;
    }
    .w-sm-350px,
    .size-sm-350px {
        width: 350px;
    }
    .w-sm-360px,
    .size-sm-360px {
        width: 360px;
    }
    .w-sm-370px,
    .size-sm-370px {
        width: 370px;
    }
    .w-sm-380px,
    .size-sm-380px {
        width: 380px;
    }
    .w-sm-390px,
    .size-sm-390px {
        width: 390px;
    }
    .w-sm-400px,
    .size-sm-400px {
        width: 400px;
    }
    .w-sm-410px,
    .size-sm-410px {
        width: 410px;
    }
    .w-sm-420px,
    .size-sm-420px {
        width: 420px;
    }
    .w-sm-450px,
    .size-sm-450px {
        width: 450px;
    }
    .w-sm-500px,
    .size-sm-500px {
        width: 500px;
    }
    .w-sm-553px,
    .size-sm-553px {
        width: 553px;
    }
    .w-sm-640px,
    .size-sm-640px {
        width: 640px;
    }
    .w-sm-800px,
    .size-sm-800px {
        width: 820px;
    }

    .h-sm-auto {
        height: auto;
    }
    .h-sm-5px,
    .size-sm-5px {
        height: 5px;
    }
    .h-sm-10px,
    .size-sm-10px {
        height: 10px;
    }
    .h-sm-15px,
    .size-sm-15px {
        height: 15px;
    }
    .h-sm-20px,
    .size-sm-20px {
        height: 20px;
    }
    .h-sm-25px,
    .size-sm-25px {
        height: 25px;
    }
    .h-sm-30px,
    .size-sm-30px {
        height: 30px;
    }
    .h-sm-35px,
    .size-sm-35px {
        height: 35px;
    }
    .h-sm-40px,
    .size-sm-40px {
        height: 40px;
    }
    .h-sm-45px,
    .size-sm-45px {
        height: 45px;
    }
    .h-sm-48px,
    .size-sm-48px {
        height: 48px;
    }
    .h-sm-50px,
    .size-sm-50px {
        height: 50px;
    }
    .h-sm-60px,
    .size-sm-60px {
        height: 60px;
    }
    .h-sm-64px,
    .size-sm-64px {
        height: 64px;
    }
    .h-sm-70px,
    .size-sm-70px {
        height: 70px;
    }
    .h-sm-80px,
    .size-sm-80px {
        height: 80px;
    }
    .h-sm-90px,
    .size-sm-90px {
        height: 90px;
    }
    .h-sm-100px,
    .size-sm-100px {
        height: 100px;
    }
    .h-sm-110px,
    .size-sm-110px {
        height: 110px;
    }
    .h-sm-120px,
    .size-sm-120px {
        height: 120px;
    }
    .h-sm-130px,
    .size-sm-130px {
        height: 130px;
    }
    .h-sm-140px,
    .size-sm-140px {
        height: 140px;
    }
    .h-sm-150px,
    .size-sm-150px {
        height: 150px;
    }
    .h-sm-160px,
    .size-sm-160px {
        height: 160px;
    }
    .h-sm-170px,
    .size-sm-170px {
        height: 170px;
    }
    .h-sm-180px,
    .size-sm-180px {
        height: 180px;
    }
    .h-sm-190px,
    .size-sm-190px {
        height: 190px;
    }
    .h-sm-200px,
    .size-sm-200px {
        height: 200px;
    }
    .h-sm-210px,
    .size-sm-210px {
        height: 210px;
    }
    .h-sm-220px,
    .size-sm-220px {
        height: 220px;
    }
    .h-sm-230px,
    .size-sm-230px {
        height: 230px;
    }
    .h-sm-240px,
    .size-sm-240px {
        height: 240px;
    }
    .h-sm-250px,
    .size-sm-250px {
        height: 250px;
    }
    .h-sm-260px,
    .size-sm-260px {
        height: 260px;
    }
    .h-sm-270px,
    .size-sm-270px {
        height: 270px;
    }
    .h-sm-280px,
    .size-sm-280px {
        height: 280px;
    }
    .h-sm-290px,
    .size-sm-290px {
        height: 290px;
    }
    .h-sm-300px,
    .size-sm-300px {
        height: 300px;
    }
    .h-sm-310px,
    .size-sm-310px {
        height: 310px;
    }
    .h-sm-320px,
    .size-sm-320px {
        height: 320px;
    }
    .h-sm-330px,
    .size-sm-330px {
        height: 330px;
    }
    .h-sm-340px,
    .size-sm-340px {
        height: 340px;
    }
    .h-sm-350px,
    .size-sm-350px {
        height: 350px;
    }
    .h-sm-360px,
    .size-sm-360px {
        height: 360px;
    }
    .h-sm-370px,
    .size-sm-370px {
        height: 370px;
    }
    .h-sm-380px,
    .size-sm-380px {
        height: 380px;
    }
    .h-sm-390px,
    .size-sm-390px {
        height: 390px;
    }
    .h-sm-400px,
    .size-sm-400px {
        height: 400px;
    }
    .h-sm-410px,
    .size-sm-410px {
        height: 410px;
    }
    .h-sm-420px,
    .size-sm-420px {
        height: 420px;
    }
    .h-sm-450px,
    .size-sm-450px {
        height: 450px;
    }
    .h-sm-460px,
    .size-sm-460px {
        height: 460px;
    }
    .h-sm-475px,
    .size-sm-475px {
        height: 475px;
    }
    .h-sm-485px,
    .size-sm-485px {
        height: 485px;
    }
    .h-sm-490px,
    .size-sm-490px {
        height: 490px;
    }
    .h-sm-500px,
    .size-sm-500px {
        height: 500px;
    }
    .h-sm-553px,
    .size-sm-553px {
        height: 553px;
    }
    .h-sm-640px,
    .size-sm-640px {
        height: 640px;
    }
    .h-sm-800px,
    .size-sm-800px {
        height: 820px;
    }

    .sm-no-gutters {
        margin-right: -0px;
        margin-left: -0px;
    }
    .sm-no-gutters > .col,
    .sm-no-gutters > [class*="col-"] {
        padding-right: 0px;
        padding-left: 0px;
    }
    .sm-gutters-5 {
        margin-right: -5px;
        margin-left: -5px;
    }
    .sm-gutters-5 > .col,
    .sm-gutters-5 > [class*="col-"] {
        padding-right: 5px;
        padding-left: 5px;
    }
    .sm-gutters-10 {
        margin-right: -10px;
        margin-left: -10px;
    }
    .sm-gutters-10 > .col,
    .sm-gutters-10 > [class*="col-"] {
        padding-right: 10px;
        padding-left: 10px;
    }
    .sm-gutters-15 {
        margin-right: -15px;
        margin-left: -15px;
    }
    .sm-gutters-15 > .col,
    .sm-gutters-15 > [class*="col-"] {
        padding-right: 15px;
        padding-left: 15px;
    }
    .sm-gutters-16 {
        margin-right: -16px;
        margin-left: -16px;
    }
    .ub-carousel.sm-gutters-16 .slick-list {
        width: calc(100% + 4px);
    }
    .sm-gutters-16 > .col,
    .sm-gutters-16 > [class*="col-"],
    .ub-carousel.sm-gutters-16 .carousel-box {
        padding-right: 16px;
        padding-left: 16px;
    }
    .sm-gutters-17 {
        margin-right: -17px;
        margin-left: -17px;
    }
    .ub-carousel.sm-gutters-17 .slick-list {
        width: calc(100% + 4px);
    }
    .sm-gutters-17 > .col,
    .sm-gutters-17 > [class*="col-"],
    .ub-carousel.sm-gutters-17 .carousel-box {
        padding-right: 17px;
        padding-left: 17px;
    }
    .sm-gutters-20 {
        margin-right: -20px;
        margin-left: -20px;
    }
    .sm-gutters-20 > .col,
    .sm-gutters-20 > [class*="col-"] {
        padding-right: 20px;
        padding-left: 20px;
    }
    .sm-gutters-25 {
        margin-right: -25px;
        margin-left: -25px;
    }
    .sm-gutters-25 > .col,
    .sm-gutters-25 > [class*="col-"] {
        padding-right: 25px;
        padding-left: 25px;
    }
    .sm-gutters-30 {
        margin-right: -30px;
        margin-left: -30px;
    }
    .sm-gutters-30 > .col,
    .sm-gutters-30 > [class*="col-"] {
        padding-right: 30px;
        padding-left: 30px;
    }

    .flex-grow-sm-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-grow-sm-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-sm-nowrap {
        flex-wrap: nowrap !important;
    }

    [dir="rtl"] .row-cols-sm-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    [dir="rtl"] .row-cols-sm-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    [dir="rtl"] .row-cols-sm-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    [dir="rtl"] .row-cols-sm-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    [dir="rtl"] .row-cols-sm-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
    [dir="rtl"] .row-cols-sm-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
}

/* md */

@media (min-width: 768px) {
    .border-md {
        border: 1px solid #dfdfe6 !important;
    }
    .border-md-top {
        border-top: 1px solid #dfdfe6 !important;
    }
    .border-md-right {
        border-right: 1px solid #dfdfe6 !important;
    }
    .border-md-bottom {
        border-bottom: 1px solid #dfdfe6 !important;
    }
    .border-md-left {
        border-left: 1px solid #dfdfe6 !important;
    }
    .border-md-0 {
        border: 0 !important;
    }
    .border-md-top-0 {
        border-top: 0 !important;
    }
    .border-md-right-0 {
        border-right: 0 !important;
    }
    .border-md-bottom-0 {
        border-bottom: 0 !important;
    }
    .border-md-left-0 {
        border-left: 0 !important;
    }

    .w-md-25 {
        width: 25% !important;
    }
    .w-md-50 {
        width: 50% !important;
    }
    .w-md-75 {
        width: 75% !important;
    }
    .w-md-100 {
        width: 100% !important;
    }
    .w-md-auto {
        width: auto !important;
    }

    .pl-md-6,
    .px-md-6,
    .p-md-6 {
        padding-left: 4rem;
    }
    .pl-md-7,
    .px-md-7,
    .p-md-7 {
        padding-left: 5rem;
    }
    .pl-md-8,
    .px-md-8,
    .p-md-8 {
        padding-left: 6rem;
    }
    .pl-md-9,
    .px-md-9,
    .p-md-9 {
        padding-left: 8rem;
    }
    .pl-md-10,
    .px-md-10,
    .p-md-10 {
        padding-left: 10rem;
    }
    .pl-md-11,
    .px-md-11,
    .p-md-11 {
        padding-left: 12rem;
    }
    .pl-md-12,
    .px-md-12,
    .p-md-12 {
        padding-left: 16rem;
    }
    .pl-md-2rem,
    .px-md-2rem,
    .p-md-2rem {
        padding-left: 2rem !important;
    }

    .pr-md-6,
    .px-md-6,
    .p-md-6 {
        padding-right: 4rem;
    }
    .pr-md-7,
    .px-md-7,
    .p-md-7 {
        padding-right: 5rem;
    }
    .pr-md-8,
    .px-md-8,
    .p-md-8 {
        padding-right: 6rem;
    }
    .pr-md-9,
    .px-md-9,
    .p-md-9 {
        padding-right: 8rem;
    }
    .pr-md-10,
    .px-md-10,
    .p-md-10 {
        padding-right: 10rem;
    }
    .pr-md-11,
    .px-md-11,
    .p-md-11 {
        padding-right: 12rem;
    }
    .pr-md-12,
    .px-md-12,
    .p-md-12 {
        padding-right: 16rem;
    }
    .pr-md-2rem,
    .px-md-2rem,
    .p-md-2rem {
        padding-right: 2rem !important;
    }

    .pt-md-6,
    .py-md-6,
    .p-md-6 {
        padding-top: 4rem;
    }
    .pt-md-7,
    .py-md-7,
    .p-md-7 {
        padding-top: 5rem;
    }
    .pt-md-8,
    .py-md-8,
    .p-md-8 {
        padding-top: 6rem;
    }
    .pt-md-9,
    .py-md-9,
    .p-md-9 {
        padding-top: 8rem;
    }
    .pt-md-10,
    .py-md-10,
    .p-md-10 {
        padding-top: 10rem;
    }
    .pt-md-11,
    .py-md-11,
    .p-md-11 {
        padding-top: 12rem;
    }
    .pt-md-12,
    .py-md-12,
    .p-md-12 {
        padding-top: 16rem;
    }
    .pt-md-2rem,
    .py-md-2rem,
    .p-md-2rem {
        padding-top: 2rem !important;
    }

    .pb-md-6,
    .py-md-6,
    .p-md-6 {
        padding-bottom: 4rem;
    }
    .pb-md-7,
    .py-md-7,
    .p-md-7 {
        padding-bottom: 5rem;
    }
    .pb-md-8,
    .py-md-8,
    .p-md-8 {
        padding-bottom: 6rem;
    }
    .pb-md-9,
    .py-md-9,
    .p-md-9 {
        padding-bottom: 8rem;
    }
    .pb-md-10,
    .py-md-10,
    .p-md-10 {
        padding-bottom: 10rem;
    }
    .pb-md-11,
    .py-md-11,
    .p-md-11 {
        padding-bottom: 12rem;
    }
    .pb-md-12,
    .py-md-12,
    .p-md-12 {
        padding-bottom: 16rem;
    }
    .pb-md-2rem,
    .py-md-2rem,
    .p-md-2rem {
        padding-bottom: 2rem !important;
    }

    .pl-md-5px,
    .px-md-5px,
    .p-md-5px {
        padding-left: 5px;
    }
    .pl-md-10px,
    .px-md-10px,
    .p-md-10px {
        padding-left: 10px;
    }
    .pl-md-14px,
    .px-md-14px,
    .p-md-14px {
        padding-left: 14px;
    }
    .pl-md-15px,
    .px-md-15px,
    .p-md-15px {
        padding-left: 15px;
    }
    .pl-md-20px,
    .px-md-20px,
    .p-md-20px {
        padding-left: 20px;
    }
    .pl-md-25px,
    .px-md-25px,
    .p-md-25px {
        padding-left: 25px;
    }
    .pl-md-30px,
    .px-md-30px,
    .p-md-30px {
        padding-left: 30px;
    }

    .pr-md-5px,
    .px-md-5px,
    .p-md-5px {
        padding-right: 5px;
    }
    .pr-md-10px,
    .px-md-10px,
    .p-md-10px {
        padding-right: 10px;
    }
    .pr-md-14px,
    .px-md-14px,
    .p-md-14px {
        padding-right: 14px;
    }
    .pr-md-15px,
    .px-md-15px,
    .p-md-15px {
        padding-right: 15px;
    }
    .pr-md-20px,
    .px-md-20px,
    .p-md-20px {
        padding-right: 20px;
    }
    .pr-md-25px,
    .px-md-25px,
    .p-md-25px {
        padding-right: 25px;
    }
    .pr-md-30px,
    .px-md-30px,
    .p-md-30px {
        padding-right: 30px;
    }

    .pt-md-5px,
    .py-md-5px,
    .p-md-5px {
        padding-top: 5px;
    }
    .pt-md-10px,
    .py-md-10px,
    .p-md-10px {
        padding-top: 10px;
    }
    .pt-md-14px,
    .py-md-14px,
    .p-md-14px {
        padding-top: 14px;
    }
    .pt-md-15px,
    .py-md-15px,
    .p-md-15px {
        padding-top: 15px;
    }
    .pt-md-20px,
    .py-md-20px,
    .p-md-20px {
        padding-top: 20px;
    }
    .pt-md-25px,
    .py-md-25px,
    .p-md-25px {
        padding-top: 25px;
    }
    .pt-md-30px,
    .py-md-30px,
    .p-md-30px {
        padding-top: 30px;
    }

    .pb-md-5px,
    .py-md-5px,
    .p-md-5px {
        padding-bottom: 5px;
    }
    .pb-md-10px,
    .py-md-10px,
    .p-md-10px {
        padding-bottom: 10px;
    }
    .pb-md-14px,
    .py-md-14px,
    .p-md-14px {
        padding-bottom: 14px;
    }
    .pb-md-15px,
    .py-md-15px,
    .p-md-15px {
        padding-bottom: 15px;
    }
    .pb-md-20px,
    .py-md-20px,
    .p-md-20px {
        padding-bottom: 20px;
    }
    .pb-md-25px,
    .py-md-25px,
    .p-md-25px {
        padding-bottom: 25px;
    }
    .pb-md-30px,
    .py-md-30px,
    .p-md-30px {
        padding-bottom: 30px;
    }

    .w-md-auto {
        width: auto;
    }
    .w-md-5px,
    .size-md-5px {
        width: 5px;
    }
    .w-md-10px,
    .size-md-10px {
        width: 10px;
    }
    .w-md-15px,
    .size-md-15px {
        width: 15px;
    }
    .w-md-20px,
    .size-md-20px {
        width: 20px;
    }
    .w-md-25px,
    .size-md-25px {
        width: 25px;
    }
    .w-md-30px,
    .size-md-30px {
        width: 30px;
    }
    .w-md-35px,
    .size-md-35px {
        width: 35px;
    }
    .w-md-40px,
    .size-md-40px {
        width: 40px;
    }
    .w-md-45px,
    .size-md-45px {
        width: 45px;
    }
    .w-md-48px,
    .size-md-48px {
        width: 48px;
    }
    .w-md-50px,
    .size-md-50px {
        width: 50px;
    }
    .w-md-60px,
    .size-md-60px {
        width: 60px;
    }
    .w-md-64px,
    .size-md-64px {
        width: 64px;
    }
    .w-md-70px,
    .size-md-70px {
        width: 70px;
    }
    .w-md-80px,
    .size-md-80px {
        width: 80px;
    }
    .w-md-90px,
    .size-md-90px {
        width: 90px;
    }
    .w-md-100px,
    .size-md-100px {
        width: 100px;
    }
    .w-md-110px,
    .size-md-110px {
        width: 110px;
    }
    .w-md-120px,
    .size-md-120px {
        width: 120px;
    }
    .w-md-130px,
    .size-md-130px {
        width: 130px;
    }
    .w-md-140px,
    .size-md-140px {
        width: 140px;
    }
    .w-md-150px,
    .size-md-150px {
        width: 150px;
    }
    .w-md-160px,
    .size-md-160px {
        width: 160px;
    }
    .w-md-170px,
    .size-md-170px {
        width: 170px;
    }
    .w-md-180px,
    .size-md-180px {
        width: 180px;
    }
    .w-md-190px,
    .size-md-190px {
        width: 190px;
    }
    .w-md-200px,
    .size-md-200px {
        width: 200px;
    }
    .w-md-210px,
    .size-md-210px {
        width: 210px;
    }
    .w-md-220px,
    .size-md-220px {
        width: 220px;
    }
    .w-md-230px,
    .size-md-230px {
        width: 230px;
    }
    .w-md-240px,
    .size-md-240px {
        width: 240px;
    }
    .w-md-250px,
    .size-md-250px {
        width: 250px;
    }
    .w-md-260px,
    .size-md-260px {
        width: 260px;
    }
    .w-md-270px,
    .size-md-270px {
        width: 270px;
    }
    .w-md-280px,
    .size-md-280px {
        width: 280px;
    }
    .w-md-290px,
    .size-md-290px {
        width: 290px;
    }
    .w-md-300px,
    .size-md-300px {
        width: 300px;
    }
    .w-md-310px,
    .size-md-310px {
        width: 310px;
    }
    .w-md-320px,
    .size-md-320px {
        width: 320px;
    }
    .w-md-330px,
    .size-md-330px {
        width: 330px;
    }
    .w-md-340px,
    .size-md-340px {
        width: 340px;
    }
    .w-md-350px,
    .size-md-350px {
        width: 350px;
    }
    .w-md-360px,
    .size-md-360px {
        width: 360px;
    }
    .w-md-370px,
    .size-md-370px {
        width: 370px;
    }
    .w-md-380px,
    .size-md-380px {
        width: 380px;
    }
    .w-md-390px,
    .size-md-390px {
        width: 390px;
    }
    .w-md-400px,
    .size-md-400px {
        width: 400px;
    }
    .w-md-410px,
    .size-md-410px {
        width: 410px;
    }
    .w-md-420px,
    .size-md-420px {
        width: 420px;
    }
    .w-md-450px,
    .size-md-450px {
        width: 450px;
    }
    .w-md-500px,
    .size-md-500px {
        width: 500px;
    }
    .w-md-553px,
    .size-md-553px {
        width: 553px;
    }
    .w-md-640px,
    .size-md-640px {
        width: 640px;
    }
    .w-md-800px,
    .size-md-800px {
        width: 820px;
    }

    .h-md-auto {
        height: auto;
    }
    .h-md-5px,
    .size-md-5px {
        height: 5px;
    }
    .h-md-10px,
    .size-md-10px {
        height: 10px;
    }
    .h-md-15px,
    .size-md-15px {
        height: 15px;
    }
    .h-md-20px,
    .size-md-20px {
        height: 20px;
    }
    .h-md-25px,
    .size-md-25px {
        height: 25px;
    }
    .h-md-30px,
    .size-md-30px {
        height: 30px;
    }
    .h-md-35px,
    .size-md-35px {
        height: 35px;
    }
    .h-md-40px,
    .size-md-40px {
        height: 40px;
    }
    .h-md-45px,
    .size-md-45px {
        height: 45px;
    }
    .h-md-48px,
    .size-md-48px {
        height: 48px;
    }
    .h-md-50px,
    .size-md-50px {
        height: 50px;
    }
    .h-md-60px,
    .size-md-60px {
        height: 60px;
    }
    .h-md-64px,
    .size-md-64px {
        height: 64px;
    }
    .h-md-70px,
    .size-md-70px {
        height: 70px;
    }
    .h-md-80px,
    .size-md-80px {
        height: 80px;
    }
    .h-md-90px,
    .size-md-90px {
        height: 90px;
    }
    .h-md-100px,
    .size-md-100px {
        height: 100px;
    }
    .h-md-110px,
    .size-md-110px {
        height: 110px;
    }
    .h-md-120px,
    .size-md-120px {
        height: 120px;
    }
    .h-md-130px,
    .size-md-130px {
        height: 130px;
    }
    .h-md-140px,
    .size-md-140px {
        height: 140px;
    }
    .h-md-150px,
    .size-md-150px {
        height: 150px;
    }
    .h-md-160px,
    .size-md-160px {
        height: 160px;
    }
    .h-md-170px,
    .size-md-170px {
        height: 170px;
    }
    .h-md-180px,
    .size-md-180px {
        height: 180px;
    }
    .h-md-190px,
    .size-md-190px {
        height: 190px;
    }
    .h-md-200px,
    .size-md-200px {
        height: 200px;
    }
    .h-md-210px,
    .size-md-210px {
        height: 210px;
    }
    .h-md-220px,
    .size-md-220px {
        height: 220px;
    }
    .h-md-230px,
    .size-md-230px {
        height: 230px;
    }
    .h-md-240px,
    .size-md-240px {
        height: 240px;
    }
    .h-md-250px,
    .size-md-250px {
        height: 250px;
    }
    .h-md-260px,
    .size-md-260px {
        height: 260px;
    }
    .h-md-270px,
    .size-md-270px {
        height: 270px;
    }
    .h-md-280px,
    .size-md-280px {
        height: 280px;
    }
    .h-md-290px,
    .size-md-290px {
        height: 290px;
    }
    .h-md-300px,
    .size-md-300px {
        height: 300px;
    }
    .h-md-310px,
    .size-md-310px {
        height: 310px;
    }
    .h-md-320px,
    .size-md-320px {
        height: 320px;
    }
    .h-md-330px,
    .size-md-330px {
        height: 330px;
    }
    .h-md-340px,
    .size-md-340px {
        height: 340px;
    }
    .h-md-350px,
    .size-md-350px {
        height: 350px;
    }
    .h-md-360px,
    .size-md-360px {
        height: 360px;
    }
    .h-md-370px,
    .size-md-370px {
        height: 370px;
    }
    .h-md-380px,
    .size-md-380px {
        height: 380px;
    }
    .h-md-390px,
    .size-md-390px {
        height: 390px;
    }
    .h-md-400px,
    .size-md-400px {
        height: 400px;
    }
    .h-md-410px,
    .size-md-410px {
        height: 410px;
    }
    .h-md-420px,
    .size-md-420px {
        height: 420px;
    }
    .h-md-450px,
    .size-md-450px {
        height: 450px;
    }
    .h-md-460px,
    .size-md-460px {
        height: 460px;
    }
    .h-md-475px,
    .size-md-475px {
        height: 475px;
    }
    .h-md-485px,
    .size-md-485px {
        height: 485px;
    }
    .h-md-490px,
    .size-md-490px {
        height: 490px;
    }
    .h-md-500px,
    .size-md-500px {
        height: 500px;
    }
    .h-md-553px,
    .size-md-553px {
        height: 553px;
    }
    .h-md-570px {
        height: 570px;
    }
    .h-md-640px,
    .size-md-640px {
        height: 640px;
    }
    .h-md-800px,
    .size-md-800px {
        height: 820px;
    }

    .md-no-gutters {
        margin-right: -0px;
        margin-left: -0px;
    }
    .md-no-gutters > .col,
    .md-no-gutters > [class*="col-"] {
        padding-right: 0px;
        padding-left: 0px;
    }
    .md-gutters-5 {
        margin-right: -5px;
        margin-left: -5px;
    }
    .md-gutters-5 > .col,
    .md-gutters-5 > [class*="col-"] {
        padding-right: 5px;
        padding-left: 5px;
    }
    .md-gutters-10 {
        margin-right: -10px;
        margin-left: -10px;
    }
    .md-gutters-10 > .col,
    .md-gutters-10 > [class*="col-"] {
        padding-right: 10px;
        padding-left: 10px;
    }
    .md-gutters-15 {
        margin-right: -15px;
        margin-left: -15px;
    }
    .md-gutters-15 > .col,
    .md-gutters-15 > [class*="col-"] {
        padding-right: 15px;
        padding-left: 15px;
    }
    .md-gutters-16 {
        margin-right: -16px;
        margin-left: -16px;
    }
    .md-gutters-16 > .col,
    .md-gutters-16 > [class*="col-"] {
        padding-right: 16px;
        padding-left: 16px;
    }
    .md-gutters-17 {
        margin-right: -17px;
        margin-left: -17px;
    }
    .md-gutters-17 > .col,
    .md-gutters-17 > [class*="col-"] {
        padding-right: 17px;
        padding-left: 17px;
    }
    .md-gutters-20 {
        margin-right: -20px;
        margin-left: -20px;
    }
    .md-gutters-20 > .col,
    .md-gutters-20 > [class*="col-"] {
        padding-right: 20px;
        padding-left: 20px;
    }
    .md-gutters-25 {
        margin-right: -25px;
        margin-left: -25px;
    }
    .md-gutters-25 > .col,
    .md-gutters-25 > [class*="col-"] {
        padding-right: 25px;
        padding-left: 25px;
    }
    .md-gutters-30 {
        margin-right: -30px;
        margin-left: -30px;
    }
    .md-gutters-30 > .col,
    .md-gutters-30 > [class*="col-"] {
        padding-right: 30px;
        padding-left: 30px;
    }

    .flex-grow-md-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-grow-md-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-md-nowrap {
        flex-wrap: nowrap !important;
    }

    [dir="rtl"] .row-cols-md-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    [dir="rtl"] .row-cols-md-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    [dir="rtl"] .row-cols-md-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    [dir="rtl"] .row-cols-md-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    [dir="rtl"] .row-cols-md-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
    [dir="rtl"] .row-cols-md-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .absolute-md-top-right{
        position: absolute;
        top: 0;
        right: 0;
        bottom: inherit;
        left: inherit;
    }
}

/* lg */

@media (min-width: 992px) {
    .border-lg {
        border: 1px solid #dfdfe6 !important;
    }
    .border-lg-top {
        border-top: 1px solid #dfdfe6 !important;
    }
    .border-lg-right {
        border-right: 1px solid #dfdfe6 !important;
    }
    .border-lg-bottom {
        border-bottom: 1px solid #dfdfe6 !important;
    }
    .border-lg-left {
        border-left: 1px solid #dfdfe6 !important;
    }
    .border-lg-0 {
        border: 0 !important;
    }
    .border-lg-top-0 {
        border-top: 0 !important;
    }
    .border-lg-right-0 {
        border-right: 0 !important;
    }
    .border-lg-bottom-0 {
        border-bottom: 0 !important;
    }
    .border-lg-left-0 {
        border-left: 0 !important;
    }

    .w-lg-25 {
        width: 25% !important;
    }
    .w-lg-50 {
        width: 50% !important;
    }
    .w-lg-75 {
        width: 75% !important;
    }
    .w-lg-100 {
        width: 100% !important;
    }
    .w-lg-auto {
        width: auto !important;
    }

    .pl-lg-6,
    .px-lg-6,
    .p-lg-6 {
        padding-left: 4rem;
    }
    .pl-lg-7,
    .px-lg-7,
    .p-lg-7 {
        padding-left: 5rem;
    }
    .pl-lg-8,
    .px-lg-8,
    .p-lg-8 {
        padding-left: 6rem;
    }
    .pl-lg-9,
    .px-lg-9,
    .p-lg-9 {
        padding-left: 8rem;
    }
    .pl-lg-10,
    .px-lg-10,
    .p-lg-10 {
        padding-left: 10rem;
    }
    .pl-lg-11,
    .px-lg-11,
    .p-lg-11 {
        padding-left: 12rem;
    }
    .pl-lg-12,
    .px-lg-12,
    .p-lg-12 {
        padding-left: 16rem;
    }
    .pl-lg-2rem,
    .px-lg-2rem,
    .p-lg-2rem {
        padding-left: 2rem !important;
    }

    .pr-lg-6,
    .px-lg-6,
    .p-lg-6 {
        padding-right: 4rem;
    }
    .pr-lg-7,
    .px-lg-7,
    .p-lg-7 {
        padding-right: 5rem;
    }
    .pr-lg-8,
    .px-lg-8,
    .p-lg-8 {
        padding-right: 6rem;
    }
    .pr-lg-9,
    .px-lg-9,
    .p-lg-9 {
        padding-right: 8rem;
    }
    .pr-lg-10,
    .px-lg-10,
    .p-lg-10 {
        padding-right: 10rem;
    }
    .pr-lg-11,
    .px-lg-11,
    .p-lg-11 {
        padding-right: 12rem;
    }
    .pr-lg-12,
    .px-lg-12,
    .p-lg-12 {
        padding-right: 16rem;
    }
    .pr-lg-2rem,
    .px-lg-2rem,
    .p-lg-2rem {
        padding-right: 2rem !important;
    }

    .pt-lg-6,
    .py-lg-6,
    .p-lg-6 {
        padding-top: 4rem;
    }
    .pt-lg-7,
    .py-lg-7,
    .p-lg-7 {
        padding-top: 5rem;
    }
    .pt-lg-8,
    .py-lg-8,
    .p-lg-8 {
        padding-top: 6rem;
    }
    .pt-lg-9,
    .py-lg-9,
    .p-lg-9 {
        padding-top: 8rem;
    }
    .pt-lg-10,
    .py-lg-10,
    .p-lg-10 {
        padding-top: 10rem;
    }
    .pt-lg-11,
    .py-lg-11,
    .p-lg-11 {
        padding-top: 12rem;
    }
    .pt-lg-12,
    .py-lg-12,
    .p-lg-12 {
        padding-top: 16rem;
    }
    .pt-lg-2rem,
    .py-lg-2rem,
    .p-lg-2rem {
        padding-top: 2rem !important;
    }

    .pb-lg-6,
    .py-lg-6,
    .p-lg-6 {
        padding-bottom: 4rem;
    }
    .pb-lg-7,
    .py-lg-7,
    .p-lg-7 {
        padding-bottom: 5rem;
    }
    .pb-lg-8,
    .py-lg-8,
    .p-lg-8 {
        padding-bottom: 6rem;
    }
    .pb-lg-9,
    .py-lg-9,
    .p-lg-9 {
        padding-bottom: 8rem;
    }
    .pb-lg-10,
    .py-lg-10,
    .p-lg-10 {
        padding-bottom: 10rem;
    }
    .pb-lg-11,
    .py-lg-11,
    .p-lg-11 {
        padding-bottom: 12rem;
    }
    .pb-lg-12,
    .py-lg-12,
    .p-lg-12 {
        padding-bottom: 16rem;
    }
    .pb-lg-2rem,
    .py-lg-2rem,
    .p-lg-2rem {
        padding-bottom: 2rem !important;
    }

    .pl-lg-5px,
    .px-lg-5px,
    .p-lg-5px {
        padding-left: 5px;
    }
    .pl-lg-10px,
    .px-lg-10px,
    .p-lg-10px {
        padding-left: 10px;
    }
    .pl-lg-14px,
    .px-lg-14px,
    .p-lg-14px {
        padding-left: 14px;
    }
    .pl-lg-15px,
    .px-lg-15px,
    .p-lg-15px {
        padding-left: 15px;
    }
    .pl-lg-20px,
    .px-lg-20px,
    .p-lg-20px {
        padding-left: 20px;
    }
    .pl-lg-25px,
    .px-lg-25px,
    .p-lg-25px {
        padding-left: 25px;
    }
    .pl-lg-30px,
    .px-lg-30px,
    .p-lg-30px {
        padding-left: 30px;
    }

    .pr-lg-5px,
    .px-lg-5px,
    .p-lg-5px {
        padding-right: 5px;
    }
    .pr-lg-10px,
    .px-lg-10px,
    .p-lg-10px {
        padding-right: 10px;
    }
    .pr-lg-14px,
    .px-lg-14px,
    .p-lg-14px {
        padding-right: 14px;
    }
    .pr-lg-15px,
    .px-lg-15px,
    .p-lg-15px {
        padding-right: 15px;
    }
    .pr-lg-20px,
    .px-lg-20px,
    .p-lg-20px {
        padding-right: 20px;
    }
    .pr-lg-25px,
    .px-lg-25px,
    .p-lg-25px {
        padding-right: 25px;
    }
    .pr-lg-30px,
    .px-lg-30px,
    .p-lg-30px {
        padding-right: 30px;
    }

    .pt-lg-5px,
    .py-lg-5px,
    .p-lg-5px {
        padding-top: 5px;
    }
    .pt-lg-10px,
    .py-lg-10px,
    .p-lg-10px {
        padding-top: 10px;
    }
    .pt-lg-14px,
    .py-lg-14px,
    .p-lg-14px {
        padding-top: 14px;
    }
    .pt-lg-15px,
    .py-lg-15px,
    .p-lg-15px {
        padding-top: 15px;
    }
    .pt-lg-20px,
    .py-lg-20px,
    .p-lg-20px {
        padding-top: 20px;
    }
    .pt-lg-25px,
    .py-lg-25px,
    .p-lg-25px {
        padding-top: 25px;
    }
    .pt-lg-30px,
    .py-lg-30px,
    .p-lg-30px {
        padding-top: 30px;
    }

    .pb-lg-5px,
    .py-lg-5px,
    .p-lg-5px {
        padding-bottom: 5px;
    }
    .pb-lg-10px,
    .py-lg-10px,
    .p-lg-10px {
        padding-bottom: 10px;
    }
    .pb-lg-14px,
    .py-lg-14px,
    .p-lg-14px {
        padding-bottom: 14px;
    }
    .pb-lg-15px,
    .py-lg-15px,
    .p-lg-15px {
        padding-bottom: 15px;
    }
    .pb-lg-20px,
    .py-lg-20px,
    .p-lg-20px {
        padding-bottom: 20px;
    }
    .pb-lg-25px,
    .py-lg-25px,
    .p-lg-25px {
        padding-bottom: 25px;
    }
    .pb-lg-30px,
    .py-lg-30px,
    .p-lg-30px {
        padding-bottom: 30px;
    }

    .w-lg-auto {
        width: auto;
    }
    .w-lg-5px,
    .size-lg-5px {
        width: 5px;
    }
    .w-lg-10px,
    .size-lg-10px {
        width: 10px;
    }
    .w-lg-15px,
    .size-lg-15px {
        width: 15px;
    }
    .w-lg-20px,
    .size-lg-20px {
        width: 20px;
    }
    .w-lg-25px,
    .size-lg-25px {
        width: 25px;
    }
    .w-lg-30px,
    .size-lg-30px {
        width: 30px;
    }
    .w-lg-35px,
    .size-lg-35px {
        width: 35px;
    }
    .w-lg-40px,
    .size-lg-40px {
        width: 40px;
    }
    .w-lg-45px,
    .size-lg-45px {
        width: 45px;
    }
    .w-lg-48px,
    .size-lg-48px {
        width: 48px;
    }
    .w-lg-50px,
    .size-lg-50px {
        width: 50px;
    }
    .w-lg-60px,
    .size-lg-60px {
        width: 60px;
    }
    .w-lg-64px,
    .size-lg-64px {
        width: 64px;
    }
    .w-lg-70px,
    .size-lg-70px {
        width: 70px;
    }
    .w-lg-80px,
    .size-lg-80px {
        width: 80px;
    }
    .w-lg-90px,
    .size-lg-90px {
        width: 90px;
    }
    .w-lg-100px,
    .size-lg-100px {
        width: 100px;
    }
    .w-lg-110px,
    .size-lg-110px {
        width: 110px;
    }
    .w-lg-120px,
    .size-lg-120px {
        width: 120px;
    }
    .w-lg-130px,
    .size-lg-130px {
        width: 130px;
    }
    .w-lg-140px,
    .size-lg-140px {
        width: 140px;
    }
    .w-lg-150px,
    .size-lg-150px {
        width: 150px;
    }
    .w-lg-160px,
    .size-lg-160px {
        width: 160px;
    }
    .w-lg-170px,
    .size-lg-170px {
        width: 170px;
    }
    .w-lg-180px,
    .size-lg-180px {
        width: 180px;
    }
    .w-lg-190px,
    .size-lg-190px {
        width: 190px;
    }
    .w-lg-200px,
    .size-lg-200px {
        width: 200px;
    }
    .w-lg-210px,
    .size-lg-210px {
        width: 210px;
    }
    .w-lg-220px,
    .size-lg-220px {
        width: 220px;
    }
    .w-lg-230px,
    .size-lg-230px {
        width: 230px;
    }
    .w-lg-240px,
    .size-lg-240px {
        width: 240px;
    }
    .w-lg-250px,
    .size-lg-250px {
        width: 250px;
    }
    .w-lg-260px,
    .size-lg-260px {
        width: 260px;
    }
    .w-lg-270px,
    .size-lg-270px {
        width: 270px;
    }
    .w-lg-280px,
    .size-lg-280px {
        width: 280px;
    }
    .w-lg-290px,
    .size-lg-290px {
        width: 290px;
    }
    .w-lg-300px,
    .size-lg-300px {
        width: 300px;
    }
    .w-lg-310px,
    .size-lg-310px {
        width: 310px;
    }
    .w-lg-320px,
    .size-lg-320px {
        width: 320px;
    }
    .w-lg-330px,
    .size-lg-330px {
        width: 330px;
    }
    .w-lg-340px,
    .size-lg-340px {
        width: 340px;
    }
    .w-lg-350px,
    .size-lg-350px {
        width: 350px;
    }
    .w-lg-360px,
    .size-lg-360px {
        width: 360px;
    }
    .w-lg-370px,
    .size-lg-370px {
        width: 370px;
    }
    .w-lg-380px,
    .size-lg-380px {
        width: 380px;
    }
    .w-lg-390px,
    .size-lg-390px {
        width: 390px;
    }
    .w-lg-400px,
    .size-lg-400px {
        width: 400px;
    }
    .w-lg-410px,
    .size-lg-410px {
        width: 410px;
    }
    .w-lg-420px,
    .size-lg-420px {
        width: 420px;
    }
    .w-lg-450px,
    .size-lg-450px {
        width: 450px;
    }
    .w-lg-500px,
    .size-lg-500px {
        width: 500px;
    }
    .w-lg-553px,
    .size-lg-553px {
        width: 553px;
    }
    .w-lg-640px,
    .size-lg-640px {
        width: 640px;
    }
    .w-lg-800px,
    .size-lg-800px {
        width: 820px;
    }

    .h-lg-auto {
        height: auto;
    }
    .h-lg-5px,
    .size-lg-5px {
        height: 5px;
    }
    .h-lg-10px,
    .size-lg-10px {
        height: 10px;
    }
    .h-lg-15px,
    .size-lg-15px {
        height: 15px;
    }
    .h-lg-20px,
    .size-lg-20px {
        height: 20px;
    }
    .h-lg-25px,
    .size-lg-25px {
        height: 25px;
    }
    .h-lg-30px,
    .size-lg-30px {
        height: 30px;
    }
    .h-lg-35px,
    .size-lg-35px {
        height: 35px;
    }
    .h-lg-40px,
    .size-lg-40px {
        height: 40px;
    }
    .h-lg-45px,
    .size-lg-45px {
        height: 45px;
    }
    .h-lg-48px,
    .size-lg-48px {
        height: 48px;
    }
    .h-lg-50px,
    .size-lg-50px {
        height: 50px;
    }
    .h-lg-60px,
    .size-lg-60px {
        height: 60px;
    }
    .h-lg-64px,
    .size-lg-64px {
        height: 64px;
    }
    .h-lg-70px,
    .size-lg-70px {
        height: 70px;
    }
    .h-lg-80px,
    .size-lg-80px {
        height: 80px;
    }
    .h-lg-90px,
    .size-lg-90px {
        height: 90px;
    }
    .h-lg-100px,
    .size-lg-100px {
        height: 100px;
    }
    .h-lg-110px,
    .size-lg-110px {
        height: 110px;
    }
    .h-lg-120px,
    .size-lg-120px {
        height: 120px;
    }
    .h-lg-130px,
    .size-lg-130px {
        height: 130px;
    }
    .h-lg-140px,
    .size-lg-140px {
        height: 140px;
    }
    .h-lg-150px,
    .size-lg-150px {
        height: 150px;
    }
    .h-lg-160px,
    .size-lg-160px {
        height: 160px;
    }
    .h-lg-170px,
    .size-lg-170px {
        height: 170px;
    }
    .h-lg-180px,
    .size-lg-180px {
        height: 180px;
    }
    .h-lg-190px,
    .size-lg-190px {
        height: 190px;
    }
    .h-lg-200px,
    .size-lg-200px {
        height: 200px;
    }
    .h-lg-210px,
    .size-lg-210px {
        height: 210px;
    }
    .h-lg-220px,
    .size-lg-220px {
        height: 220px;
    }
    .h-lg-230px,
    .size-lg-230px {
        height: 230px;
    }
    .h-lg-240px,
    .size-lg-240px {
        height: 240px;
    }
    .h-lg-250px,
    .size-lg-250px {
        height: 250px;
    }
    .h-lg-260px,
    .size-lg-260px {
        height: 260px;
    }
    .h-lg-270px,
    .size-lg-270px {
        height: 270px;
    }
    .h-lg-280px,
    .size-lg-280px {
        height: 280px;
    }
    .h-lg-290px,
    .size-lg-290px {
        height: 290px;
    }
    .h-lg-300px,
    .size-lg-300px {
        height: 300px;
    }
    .h-lg-310px,
    .size-lg-310px {
        height: 310px;
    }
    .h-lg-320px,
    .size-lg-320px {
        height: 320px;
    }
    .h-lg-330px,
    .size-lg-330px {
        height: 330px;
    }
    .h-lg-340px,
    .size-lg-340px {
        height: 340px;
    }
    .h-lg-350px,
    .size-lg-350px {
        height: 350px;
    }
    .h-lg-360px,
    .size-lg-360px {
        height: 360px;
    }
    .h-lg-370px,
    .size-lg-370px {
        height: 370px;
    }
    .h-lg-380px,
    .size-lg-380px {
        height: 380px;
    }
    .h-lg-390px,
    .size-lg-390px {
        height: 390px;
    }
    .h-lg-400px,
    .size-lg-400px {
        height: 400px;
    }
    .h-lg-410px,
    .size-lg-410px {
        height: 410px;
    }
    .h-lg-420px,
    .size-lg-420px {
        height: 420px;
    }
    .h-lg-450px,
    .size-lg-450px {
        height: 450px;
    }
    .h-lg-460px,
    .size-lg-460px {
        height: 460px;
    }
    .h-lg-475px,
    .size-lg-475px {
        height: 475px;
    }
    .h-lg-485px,
    .size-lg-485px {
        height: 485px;
    }
    .h-lg-490px,
    .size-lg-490px {
        height: 490px;
    }
    .h-lg-500px,
    .size-lg-500px {
        height: 500px;
    }
    .h-lg-553px,
    .size-lg-553px {
        height: 553px;
    }
    .h-lg-640px,
    .size-lg-640px {
        height: 640px;
    }
    .h-lg-800px,
    .size-lg-800px {
        height: 820px;
    }

    .lg-no-gutters {
        margin-right: -0px;
        margin-left: -0px;
    }
    .lg-no-gutters > .col,
    .lg-no-gutters > [class*="col-"] {
        padding-right: 0px;
        padding-left: 0px;
    }
    .lg-gutters-5 {
        margin-right: -5px;
        margin-left: -5px;
    }
    .lg-gutters-5 > .col,
    .lg-gutters-5 > [class*="col-"] {
        padding-right: 5px;
        padding-left: 5px;
    }
    .lg-gutters-10 {
        margin-right: -10px;
        margin-left: -10px;
    }
    .lg-gutters-10 > .col,
    .lg-gutters-10 > [class*="col-"] {
        padding-right: 10px;
        padding-left: 10px;
    }
    .lg-gutters-15 {
        margin-right: -15px;
        margin-left: -15px;
    }
    .lg-gutters-15 > .col,
    .lg-gutters-15 > [class*="col-"] {
        padding-right: 15px;
        padding-left: 15px;
    }
    .lg-gutters-16 {
        margin-right: -16px;
        margin-left: -16px;
    }
    .lg-gutters-16 > .col,
    .lg-gutters-16 > [class*="col-"] {
        padding-right: 16px;
        padding-left: 16px;
    }
    .lg-gutters-17 {
        margin-right: -17px;
        margin-left: -17px;
    }
    .lg-gutters-17 > .col,
    .lg-gutters-17 > [class*="col-"] {
        padding-right: 17px;
        padding-left: 17px;
    }
    .lg-gutters-20 {
        margin-right: -20px;
        margin-left: -20px;
    }
    .lg-gutters-20 > .col,
    .lg-gutters-20 > [class*="col-"] {
        padding-right: 20px;
        padding-left: 20px;
    }
    .lg-gutters-25 {
        margin-right: -25px;
        margin-left: -25px;
    }
    .lg-gutters-25 > .col,
    .lg-gutters-25 > [class*="col-"] {
        padding-right: 25px;
        padding-left: 25px;
    }
    .lg-gutters-30 {
        margin-right: -30px;
        margin-left: -30px;
    }
    .lg-gutters-30 > .col,
    .lg-gutters-30 > [class*="col-"] {
        padding-right: 30px;
        padding-left: 30px;
    }

    .flex-grow-lg-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-grow-lg-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-lg-nowrap {
        flex-wrap: nowrap !important;
    }

    [dir="rtl"] .row-cols-lg-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    [dir="rtl"] .row-cols-lg-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    [dir="rtl"] .row-cols-lg-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    [dir="rtl"] .row-cols-lg-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    [dir="rtl"] .row-cols-lg-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
    [dir="rtl"] .row-cols-lg-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
}

/* xl */

@media (min-width: 1200px) {
    .border-xl {
        border: 1px solid #dfdfe6 !important;
    }
    .border-xl-top {
        border-top: 1px solid #dfdfe6 !important;
    }
    .border-xl-right {
        border-right: 1px solid #dfdfe6 !important;
    }
    .border-xl-bottom {
        border-bottom: 1px solid #dfdfe6 !important;
    }
    .border-xl-left {
        border-left: 1px solid #dfdfe6 !important;
    }
    .border-xl-0 {
        border: 0 !important;
    }
    .border-xl-top-0 {
        border-top: 0 !important;
    }
    .border-xl-right-0 {
        border-right: 0 !important;
    }
    .border-xl-bottom-0 {
        border-bottom: 0 !important;
    }
    .border-xl-left-0 {
        border-left: 0 !important;
    }

    .w-xl-25 {
        width: 25% !important;
    }
    .w-xl-50 {
        width: 50% !important;
    }
    .w-xl-75 {
        width: 75% !important;
    }
    .w-xl-100 {
        width: 100% !important;
    }
    .w-xl-auto {
        width: auto !important;
    }

    .pl-xl-6,
    .px-xl-6,
    .p-xl-6 {
        padding-left: 4rem;
    }
    .pl-xl-7,
    .px-xl-7,
    .p-xl-7 {
        padding-left: 5rem;
    }
    .pl-xl-8,
    .px-xl-8,
    .p-xl-8 {
        padding-left: 6rem;
    }
    .pl-xl-9,
    .px-xl-9,
    .p-xl-9 {
        padding-left: 8rem;
    }
    .pl-xl-10,
    .px-xl-10,
    .p-xl-10 {
        padding-left: 10rem;
    }
    .pl-xl-11,
    .px-xl-11,
    .p-xl-11 {
        padding-left: 12rem;
    }
    .pl-xl-12,
    .px-xl-12,
    .p-xl-12 {
        padding-left: 16rem;
    }
    .pl-xl-2rem,
    .px-xl-2rem,
    .p-xl-2rem {
        padding-left: 2rem !important;
    }

    .pr-xl-6,
    .px-xl-6,
    .p-xl-6 {
        padding-right: 4rem;
    }
    .pr-xl-7,
    .px-xl-7,
    .p-xl-7 {
        padding-right: 5rem;
    }
    .pr-xl-8,
    .px-xl-8,
    .p-xl-8 {
        padding-right: 6rem;
    }
    .pr-xl-9,
    .px-xl-9,
    .p-xl-9 {
        padding-right: 8rem;
    }
    .pr-xl-10,
    .px-xl-10,
    .p-xl-10 {
        padding-right: 10rem;
    }
    .pr-xl-11,
    .px-xl-11,
    .p-xl-11 {
        padding-right: 12rem;
    }
    .pr-xl-12,
    .px-xl-12,
    .p-xl-12 {
        padding-right: 16rem;
    }
    .pr-xl-2rem,
    .px-xl-2rem,
    .p-xl-2rem {
        padding-right: 2rem !important;
    }

    .pt-xl-6,
    .py-xl-6,
    .p-xl-6 {
        padding-top: 4rem;
    }
    .pt-xl-7,
    .py-xl-7,
    .p-xl-7 {
        padding-top: 5rem;
    }
    .pt-xl-8,
    .py-xl-8,
    .p-xl-8 {
        padding-top: 6rem;
    }
    .pt-xl-9,
    .py-xl-9,
    .p-xl-9 {
        padding-top: 8rem;
    }
    .pt-xl-10,
    .py-xl-10,
    .p-xl-10 {
        padding-top: 10rem;
    }
    .pt-xl-11,
    .py-xl-11,
    .p-xl-11 {
        padding-top: 12rem;
    }
    .pt-xl-12,
    .py-xl-12,
    .p-xl-12 {
        padding-top: 16rem;
    }
    .pt-xl-2rem,
    .py-xl-2rem,
    .p-xl-2rem {
        padding-top: 2rem !important;
    }

    .pb-xl-6,
    .py-xl-6,
    .p-xl-6 {
        padding-bottom: 4rem;
    }
    .pb-xl-7,
    .py-xl-7,
    .p-xl-7 {
        padding-bottom: 5rem;
    }
    .pb-xl-8,
    .py-xl-8,
    .p-xl-8 {
        padding-bottom: 6rem;
    }
    .pb-xl-9,
    .py-xl-9,
    .p-xl-9 {
        padding-bottom: 8rem;
    }
    .pb-xl-10,
    .py-xl-10,
    .p-xl-10 {
        padding-bottom: 10rem;
    }
    .pb-xl-11,
    .py-xl-11,
    .p-xl-11 {
        padding-bottom: 12rem;
    }
    .pb-xl-12,
    .py-xl-12,
    .p-xl-12 {
        padding-bottom: 16rem;
    }
    .pb-xl-2rem,
    .py-xl-2rem,
    .p-xl-2rem {
        padding-bottom: 2rem !important;
    }

    .pl-xl-5px,
    .px-xl-5px,
    .p-xl-5px {
        padding-left: 5px;
    }
    .pl-xl-10px,
    .px-xl-10px,
    .p-xl-10px {
        padding-left: 10px;
    }
    .pl-xl-14px,
    .px-xl-14px,
    .p-xl-14px {
        padding-left: 14px;
    }
    .pl-xl-15px,
    .px-xl-15px,
    .p-xl-15px {
        padding-left: 15px;
    }
    .pl-xl-20px,
    .px-xl-20px,
    .p-xl-20px {
        padding-left: 20px;
    }
    .pl-xl-25px,
    .px-xl-25px,
    .p-xl-25px {
        padding-left: 25px;
    }
    .pl-xl-30px,
    .px-xl-30px,
    .p-xl-30px {
        padding-left: 30px;
    }

    .pr-xl-5px,
    .px-xl-5px,
    .p-xl-5px {
        padding-right: 5px;
    }
    .pr-xl-10px,
    .px-xl-10px,
    .p-xl-10px {
        padding-right: 10px;
    }
    .pr-xl-14px,
    .px-xl-14px,
    .p-xl-14px {
        padding-right: 14px;
    }
    .pr-xl-15px,
    .px-xl-15px,
    .p-xl-15px {
        padding-right: 15px;
    }
    .pr-xl-20px,
    .px-xl-20px,
    .p-xl-20px {
        padding-right: 20px;
    }
    .pr-xl-25px,
    .px-xl-25px,
    .p-xl-25px {
        padding-right: 25px;
    }
    .pr-xl-30px,
    .px-xl-30px,
    .p-xl-30px {
        padding-right: 30px;
    }

    .pt-xl-5px,
    .py-xl-5px,
    .p-xl-5px {
        padding-top: 5px;
    }
    .pt-xl-10px,
    .py-xl-10px,
    .p-xl-10px {
        padding-top: 10px;
    }
    .pt-xl-14px,
    .py-xl-14px,
    .p-xl-14px {
        padding-top: 14px;
    }
    .pt-xl-15px,
    .py-xl-15px,
    .p-xl-15px {
        padding-top: 15px;
    }
    .pt-xl-20px,
    .py-xl-20px,
    .p-xl-20px {
        padding-top: 20px;
    }
    .pt-xl-25px,
    .py-xl-25px,
    .p-xl-25px {
        padding-top: 25px;
    }
    .pt-xl-30px,
    .py-xl-30px,
    .p-xl-30px {
        padding-top: 30px;
    }

    .pb-xl-5px,
    .py-xl-5px,
    .p-xl-5px {
        padding-bottom: 5px;
    }
    .pb-xl-10px,
    .py-xl-10px,
    .p-xl-10px {
        padding-bottom: 10px;
    }
    .pb-xl-14px,
    .py-xl-14px,
    .p-xl-14px {
        padding-bottom: 14px;
    }
    .pb-xl-15px,
    .py-xl-15px,
    .p-xl-15px {
        padding-bottom: 15px;
    }
    .pb-xl-20px,
    .py-xl-20px,
    .p-xl-20px {
        padding-bottom: 20px;
    }
    .pb-xl-25px,
    .py-xl-25px,
    .p-xl-25px {
        padding-bottom: 25px;
    }
    .pb-xl-30px,
    .py-xl-30px,
    .p-xl-30px {
        padding-bottom: 30px;
    }

    .w-xl-auto {
        width: auto;
    }
    .w-xl-5px,
    .size-xl-5px {
        width: 5px;
    }
    .w-xl-10px,
    .size-xl-10px {
        width: 10px;
    }
    .w-xl-15px,
    .size-xl-15px {
        width: 15px;
    }
    .w-xl-20px,
    .size-xl-20px {
        width: 20px;
    }
    .w-xl-25px,
    .size-xl-25px {
        width: 25px;
    }
    .w-xl-30px,
    .size-xl-30px {
        width: 30px;
    }
    .w-xl-35px,
    .size-xl-35px {
        width: 35px;
    }
    .w-xl-40px,
    .size-xl-40px {
        width: 40px;
    }
    .w-xl-45px,
    .size-xl-45px {
        width: 45px;
    }
    .w-xl-48px,
    .size-xl-48px {
        width: 48px;
    }
    .w-xl-50px,
    .size-xl-50px {
        width: 50px;
    }
    .w-xl-60px,
    .size-xl-60px {
        width: 60px;
    }
    .w-xl-64px,
    .size-xl-64px {
        width: 64px;
    }
    .w-xl-70px,
    .size-xl-70px {
        width: 70px;
    }
    .w-xl-80px,
    .size-xl-80px {
        width: 80px;
    }
    .w-xl-90px,
    .size-xl-90px {
        width: 90px;
    }
    .w-xl-100px,
    .size-xl-100px {
        width: 100px;
    }
    .w-xl-110px,
    .size-xl-110px {
        width: 110px;
    }
    .w-xl-120px,
    .size-xl-120px {
        width: 120px;
    }
    .w-xl-130px,
    .size-xl-130px {
        width: 130px;
    }
    .w-xl-140px,
    .size-xl-140px {
        width: 140px;
    }
    .w-xl-150px,
    .size-xl-150px {
        width: 150px;
    }
    .w-xl-160px,
    .size-xl-160px {
        width: 160px;
    }
    .w-xl-170px,
    .size-xl-170px {
        width: 170px;
    }
    .w-xl-180px,
    .size-xl-180px {
        width: 180px;
    }
    .w-xl-190px,
    .size-xl-190px {
        width: 190px;
    }
    .w-xl-200px,
    .size-xl-200px {
        width: 200px;
    }
    .w-xl-210px,
    .size-xl-210px {
        width: 210px;
    }
    .w-xl-220px,
    .size-xl-220px {
        width: 220px;
    }
    .w-xl-230px,
    .size-xl-230px {
        width: 230px;
    }
    .w-xl-240px,
    .size-xl-240px {
        width: 240px;
    }
    .w-xl-250px,
    .size-xl-250px {
        width: 250px;
    }
    .w-xl-260px,
    .size-xl-260px {
        width: 260px;
    }
    .w-xl-270px,
    .size-xl-270px {
        width: 270px;
    }
    .w-xl-280px,
    .size-xl-280px {
        width: 280px;
    }
    .w-xl-290px,
    .size-xl-290px {
        width: 290px;
    }
    .w-xl-300px,
    .size-xl-300px {
        width: 300px;
    }
    .w-xl-310px,
    .size-xl-310px {
        width: 310px;
    }
    .w-xl-320px,
    .size-xl-320px {
        width: 320px;
    }
    .w-xl-330px,
    .size-xl-330px {
        width: 330px;
    }
    .w-xl-340px,
    .size-xl-340px {
        width: 340px;
    }
    .w-xl-350px,
    .size-xl-350px {
        width: 350px;
    }
    .w-xl-360px,
    .size-xl-360px {
        width: 360px;
    }
    .w-xl-370px,
    .size-xl-370px {
        width: 370px;
    }
    .w-xl-380px,
    .size-xl-380px {
        width: 380px;
    }
    .w-xl-390px,
    .size-xl-390px {
        width: 390px;
    }
    .w-xl-400px,
    .size-xl-400px {
        width: 400px;
    }
    .w-xl-410px,
    .size-xl-410px {
        width: 410px;
    }
    .w-xl-420px,
    .size-xl-420px {
        width: 420px;
    }
    .w-xl-450px,
    .size-xl-450px {
        width: 450px;
    }
    .w-xl-500px,
    .size-xl-500px {
        width: 500px;
    }
    .w-xl-553px,
    .size-xl-553px {
        width: 553px;
    }
    .w-xl-640px,
    .size-xl-640px {
        width: 640px;
    }
    .w-xl-800px,
    .size-xl-800px {
        width: 820px;
    }

    .h-xl-auto {
        height: auto;
    }
    .h-xl-5px,
    .size-xl-5px {
        height: 5px;
    }
    .h-xl-10px,
    .size-xl-10px {
        height: 10px;
    }
    .h-xl-15px,
    .size-xl-15px {
        height: 15px;
    }
    .h-xl-20px,
    .size-xl-20px {
        height: 20px;
    }
    .h-xl-25px,
    .size-xl-25px {
        height: 25px;
    }
    .h-xl-30px,
    .size-xl-30px {
        height: 30px;
    }
    .h-xl-35px,
    .size-xl-35px {
        height: 35px;
    }
    .h-xl-40px,
    .size-xl-40px {
        height: 40px;
    }
    .h-xl-45px,
    .size-xl-45px {
        height: 45px;
    }
    .h-xl-48px,
    .size-xl-48px {
        height: 48px;
    }
    .h-xl-50px,
    .size-xl-50px {
        height: 50px;
    }
    .h-xl-60px,
    .size-xl-60px {
        height: 60px;
    }
    .h-xl-64px,
    .size-xl-64px {
        height: 64px;
    }
    .h-xl-70px,
    .size-xl-70px {
        height: 70px;
    }
    .h-xl-80px,
    .size-xl-80px {
        height: 80px;
    }
    .h-xl-90px,
    .size-xl-90px {
        height: 90px;
    }
    .h-xl-100px,
    .size-xl-100px {
        height: 100px;
    }
    .h-xl-110px,
    .size-xl-110px {
        height: 110px;
    }
    .h-xl-120px,
    .size-xl-120px {
        height: 120px;
    }
    .h-xl-130px,
    .size-xl-130px {
        height: 130px;
    }
    .h-xl-140px,
    .size-xl-140px {
        height: 140px;
    }
    .h-xl-150px,
    .size-xl-150px {
        height: 150px;
    }
    .h-xl-160px,
    .size-xl-160px {
        height: 160px;
    }
    .h-xl-170px,
    .size-xl-170px {
        height: 170px;
    }
    .h-xl-180px,
    .size-xl-180px {
        height: 180px;
    }
    .h-xl-190px,
    .size-xl-190px {
        height: 190px;
    }
    .h-xl-200px,
    .size-xl-200px {
        height: 200px;
    }
    .h-xl-210px,
    .size-xl-210px {
        height: 210px;
    }
    .h-xl-220px,
    .size-xl-220px {
        height: 220px;
    }
    .h-xl-230px,
    .size-xl-230px {
        height: 230px;
    }
    .h-xl-240px,
    .size-xl-240px {
        height: 240px;
    }
    .h-xl-250px,
    .size-xl-250px {
        height: 250px;
    }
    .h-xl-260px,
    .size-xl-260px {
        height: 260px;
    }
    .h-xl-270px,
    .size-xl-270px {
        height: 270px;
    }
    .h-xl-280px,
    .size-xl-280px {
        height: 280px;
    }
    .h-xl-290px,
    .size-xl-290px {
        height: 290px;
    }
    .h-xl-300px,
    .size-xl-300px {
        height: 300px;
    }
    .h-xl-310px,
    .size-xl-310px {
        height: 310px;
    }
    .h-xl-320px,
    .size-xl-320px {
        height: 320px;
    }
    .h-xl-330px,
    .size-xl-330px {
        height: 330px;
    }
    .h-xl-340px,
    .size-xl-340px {
        height: 340px;
    }
    .h-xl-350px,
    .size-xl-350px {
        height: 350px;
    }
    .h-xl-360px,
    .size-xl-360px {
        height: 360px;
    }
    .h-xl-370px,
    .size-xl-370px {
        height: 370px;
    }
    .h-xl-380px,
    .size-xl-380px {
        height: 380px;
    }
    .h-xl-390px,
    .size-xl-390px {
        height: 390px;
    }
    .h-xl-400px,
    .size-xl-400px {
        height: 400px;
    }
    .h-xl-410px,
    .size-xl-410px {
        height: 410px;
    }
    .h-xl-420px,
    .size-xl-420px {
        height: 420px;
    }
    .h-xl-450px,
    .size-xl-450px {
        height: 450px;
    }
    .h-xl-460px,
    .size-xl-460px {
        height: 460px;
    }
    .h-xl-475px,
    .size-xl-475px {
        height: 475px;
    }
    .h-xl-485px,
    .size-xl-485px {
        height: 485px;
    }
    .h-xl-490px,
    .size-xl-490px {
        height: 490px;
    }
    .h-xl-500px,
    .size-xl-500px {
        height: 500px;
    }
    .h-xl-553px,
    .size-xl-553px {
        height: 553px;
    }
    .h-xl-640px,
    .size-xl-640px {
        height: 640px;
    }
    .h-xl-800px,
    .size-xl-800px {
        height: 820px;
    }

    .xl-no-gutters {
        margin-right: -0px;
        margin-left: -0px;
    }
    .xl-no-gutters > .col,
    .xl-no-gutters > [class*="col-"] {
        padding-right: 0px;
        padding-left: 0px;
    }
    .xl-gutters-5 {
        margin-right: -5px;
        margin-left: -5px;
    }
    .xl-gutters-5 > .col,
    .xl-gutters-5 > [class*="col-"] {
        padding-right: 5px;
        padding-left: 5px;
    }
    .xl-gutters-10 {
        margin-right: -10px;
        margin-left: -10px;
    }
    .xl-gutters-10 > .col,
    .xl-gutters-10 > [class*="col-"] {
        padding-right: 10px;
        padding-left: 10px;
    }
    .xl-gutters-15 {
        margin-right: -15px;
        margin-left: -15px;
    }
    .xl-gutters-15 > .col,
    .xl-gutters-15 > [class*="col-"] {
        padding-right: 15px;
        padding-left: 15px;
    }
    .xl-gutters-16 {
        margin-right: -16px;
        margin-left: -16px;
    }
    .xl-gutters-16 > .col,
    .xl-gutters-16 > [class*="col-"] {
        padding-right: 16px;
        padding-left: 16px;
    }
    .xl-gutters-17 {
        margin-right: -17px;
        margin-left: -17px;
    }
    .xl-gutters-17 > .col,
    .xl-gutters-17 > [class*="col-"] {
        padding-right: 17px;
        padding-left: 17px;
    }
    .xl-gutters-20 {
        margin-right: -20px;
        margin-left: -20px;
    }
    .xl-gutters-20 > .col,
    .xl-gutters-20 > [class*="col-"] {
        padding-right: 20px;
        padding-left: 20px;
    }
    .xl-gutters-25 {
        margin-right: -25px;
        margin-left: -25px;
    }
    .xl-gutters-25 > .col,
    .xl-gutters-25 > [class*="col-"] {
        padding-right: 25px;
        padding-left: 25px;
    }
    .xl-gutters-30 {
        margin-right: -30px;
        margin-left: -30px;
    }
    .xl-gutters-30 > .col,
    .xl-gutters-30 > [class*="col-"] {
        padding-right: 30px;
        padding-left: 30px;
    }

    .flex-grow-xl-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-grow-xl-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-xl-nowrap {
        flex-wrap: nowrap !important;
    }

    [dir="rtl"] .row-cols-xl-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    [dir="rtl"] .row-cols-xl-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    [dir="rtl"] .row-cols-xl-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    [dir="rtl"] .row-cols-xl-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    [dir="rtl"] .row-cols-xl-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
    [dir="rtl"] .row-cols-xl-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
}

/* xxl */

@media (min-width: 1500px) {
    .border-xxl {
        border: 1px solid #dfdfe6 !important;
    }
    .border-xxl-top {
        border-top: 1px solid #dfdfe6 !important;
    }
    .border-xxl-right {
        border-right: 1px solid #dfdfe6 !important;
    }
    .border-xxl-bottom {
        border-bottom: 1px solid #dfdfe6 !important;
    }
    .border-xxl-left {
        border-left: 1px solid #dfdfe6 !important;
    }
    .border-xxl-0 {
        border: 0 !important;
    }
    .border-xxl-top-0 {
        border-top: 0 !important;
    }
    .border-xxl-right-0 {
        border-right: 0 !important;
    }
    .border-xxl-bottom-0 {
        border-bottom: 0 !important;
    }
    .border-xxl-left-0 {
        border-left: 0 !important;
    }

    .w-xxl-25 {
        width: 25% !important;
    }
    .w-xxl-50 {
        width: 50% !important;
    }
    .w-xxl-75 {
        width: 75% !important;
    }
    .w-xxl-100 {
        width: 100% !important;
    }
    .w-xxl-auto {
        width: auto !important;
    }

    .container ,
    .container-xxl {
        max-width: 1400px;
    }
    .col-xxl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .row-cols-xxl-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .row-cols-xxl-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .row-cols-xxl-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .row-cols-xxl-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .row-cols-xxl-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
    .row-cols-xxl-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-xxl-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100;
    }
    .col-xxl-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-xxl-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-xxl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xxl-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-xxl-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-xxl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xxl-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-xxl-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-xxl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-xxl-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-xxl-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-xxl-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .offset-xxl-0 {
        margin-left: 0;
    }
    .offset-xxl-1 {
        margin-left: 8.333333%;
    }
    .offset-xxl-2 {
        margin-left: 16.666667%;
    }
    .offset-xxl-3 {
        margin-left: 25%;
    }
    .offset-xxl-4 {
        margin-left: 33.333333%;
    }
    .offset-xxl-5 {
        margin-left: 41.666667%;
    }
    .offset-xxl-6 {
        margin-left: 50%;
    }
    .offset-xxl-7 {
        margin-left: 58.333333%;
    }
    .offset-xxl-8 {
        margin-left: 66.666667%;
    }
    .offset-xxl-9 {
        margin-left: 75%;
    }
    .offset-xxl-10 {
        margin-left: 83.333333%;
    }
    .offset-xxl-11 {
        margin-left: 91.666667%;
    }

    .pl-xxl-6,
    .px-xxl-6,
    .p-xxl-6 {
        padding-left: 4rem;
    }
    .pl-xxl-7,
    .px-xxl-7,
    .p-xxl-7 {
        padding-left: 5rem;
    }
    .pl-xxl-8,
    .px-xxl-8,
    .p-xxl-8 {
        padding-left: 6rem;
    }
    .pl-xxl-9,
    .px-xxl-9,
    .p-xxl-9 {
        padding-left: 8rem;
    }
    .pl-xxl-10,
    .px-xxl-10,
    .p-xxl-10 {
        padding-left: 10rem;
    }
    .pl-xxl-11,
    .px-xxl-11,
    .p-xxl-11 {
        padding-left: 12rem;
    }
    .pl-xxl-12,
    .px-xxl-12,
    .p-xxl-12 {
        padding-left: 16rem;
    }
    .pl-xxl-2rem,
    .px-xxl-2rem,
    .p-xxl-2rem {
        padding-left: 2rem !important;
    }

    .pr-xxl-6,
    .px-xxl-6,
    .p-xxl-6 {
        padding-right: 4rem;
    }
    .pr-xxl-7,
    .px-xxl-7,
    .p-xxl-7 {
        padding-right: 5rem;
    }
    .pr-xxl-8,
    .px-xxl-8,
    .p-xxl-8 {
        padding-right: 6rem;
    }
    .pr-xxl-9,
    .px-xxl-9,
    .p-xxl-9 {
        padding-right: 8rem;
    }
    .pr-xxl-10,
    .px-xxl-10,
    .p-xxl-10 {
        padding-right: 10rem;
    }
    .pr-xxl-11,
    .px-xxl-11,
    .p-xxl-11 {
        padding-right: 12rem;
    }
    .pr-xxl-12,
    .px-xxl-12,
    .p-xxl-12 {
        padding-right: 16rem;
    }
    .pr-xxl-2rem,
    .px-xxl-2rem,
    .p-xxl-2rem {
        padding-right: 2rem !important;
    }

    .pt-xxl-6,
    .py-xxl-6,
    .p-xxl-6 {
        padding-top: 4rem;
    }
    .pt-xxl-7,
    .py-xxl-7,
    .p-xxl-7 {
        padding-top: 5rem;
    }
    .pt-xxl-8,
    .py-xxl-8,
    .p-xxl-8 {
        padding-top: 6rem;
    }
    .pt-xxl-9,
    .py-xxl-9,
    .p-xxl-9 {
        padding-top: 8rem;
    }
    .pt-xxl-10,
    .py-xxl-10,
    .p-xxl-10 {
        padding-top: 10rem;
    }
    .pt-xxl-11,
    .py-xxl-11,
    .p-xxl-11 {
        padding-top: 12rem;
    }
    .pt-xxl-12,
    .py-xxl-12,
    .p-xxl-12 {
        padding-top: 16rem;
    }
    .pt-xxl-2rem,
    .py-xxl-2rem,
    .p-xxl-2rem {
        padding-top: 2rem !important;
    }

    .pb-xxl-6,
    .py-xxl-6,
    .p-xxl-6 {
        padding-bottom: 4rem;
    }
    .pb-xxl-7,
    .py-xxl-7,
    .p-xxl-7 {
        padding-bottom: 5rem;
    }
    .pb-xxl-8,
    .py-xxl-8,
    .p-xxl-8 {
        padding-bottom: 6rem;
    }
    .pb-xxl-9,
    .py-xxl-9,
    .p-xxl-9 {
        padding-bottom: 8rem;
    }
    .pb-xxl-10,
    .py-xxl-10,
    .p-xxl-10 {
        padding-bottom: 10rem;
    }
    .pb-xxl-11,
    .py-xxl-11,
    .p-xxl-11 {
        padding-bottom: 12rem;
    }
    .pb-xxl-12,
    .py-xxl-12,
    .p-xxl-12 {
        padding-bottom: 16rem;
    }
    .pb-xxl-2rem,
    .py-xxl-2rem,
    .p-xxl-2rem {
        padding-bottom: 2rem !important;
    }

    .pl-xxl-5px,
    .px-xxl-5px,
    .p-xxl-5px {
        padding-left: 5px;
    }
    .pl-xxl-10px,
    .px-xxl-10px,
    .p-xxl-10px {
        padding-left: 10px;
    }
    .pl-xxl-14px,
    .px-xxl-14px,
    .p-xxl-14px {
        padding-left: 14px;
    }
    .pl-xxl-15px,
    .px-xxl-15px,
    .p-xxl-15px {
        padding-left: 15px;
    }
    .pl-xxl-20px,
    .px-xxl-20px,
    .p-xxl-20px {
        padding-left: 20px;
    }
    .pl-xxl-25px,
    .px-xxl-25px,
    .p-xxl-25px {
        padding-left: 25px;
    }
    .pl-xxl-30px,
    .px-xxl-30px,
    .p-xxl-30px {
        padding-left: 30px;
    }

    .pr-xxl-5px,
    .px-xxl-5px,
    .p-xxl-5px {
        padding-right: 5px;
    }
    .pr-xxl-10px,
    .px-xxl-10px,
    .p-xxl-10px {
        padding-right: 10px;
    }
    .pr-xxl-14px,
    .px-xxl-14px,
    .p-xxl-14px {
        padding-right: 14px;
    }
    .pr-xxl-15px,
    .px-xxl-15px,
    .p-xxl-15px {
        padding-right: 15px;
    }
    .pr-xxl-20px,
    .px-xxl-20px,
    .p-xxl-20px {
        padding-right: 20px;
    }
    .pr-xxl-25px,
    .px-xxl-25px,
    .p-xxl-25px {
        padding-right: 25px;
    }
    .pr-xxl-30px,
    .px-xxl-30px,
    .p-xxl-30px {
        padding-right: 30px;
    }

    .pt-xxl-5px,
    .py-xxl-5px,
    .p-xxl-5px {
        padding-top: 5px;
    }
    .pt-xxl-10px,
    .py-xxl-10px,
    .p-xxl-10px {
        padding-top: 10px;
    }
    .pt-xxl-14px,
    .py-xxl-14px,
    .p-xxl-14px {
        padding-top: 14px;
    }
    .pt-xxl-15px,
    .py-xxl-15px,
    .p-xxl-15px {
        padding-top: 15px;
    }
    .pt-xxl-20px,
    .py-xxl-20px,
    .p-xxl-20px {
        padding-top: 20px;
    }
    .pt-xxl-25px,
    .py-xxl-25px,
    .p-xxl-25px {
        padding-top: 25px;
    }
    .pt-xxl-30px,
    .py-xxl-30px,
    .p-xxl-30px {
        padding-top: 30px;
    }

    .pb-xxl-5px,
    .py-xxl-5px,
    .p-xxl-5px {
        padding-bottom: 5px;
    }
    .pb-xxl-10px,
    .py-xxl-10px,
    .p-xxl-10px {
        padding-bottom: 10px;
    }
    .pb-xxl-14px,
    .py-xxl-14px,
    .p-xxl-14px {
        padding-bottom: 14px;
    }
    .pb-xxl-15px,
    .py-xxl-15px,
    .p-xxl-15px {
        padding-bottom: 15px;
    }
    .pb-xxl-20px,
    .py-xxl-20px,
    .p-xxl-20px {
        padding-bottom: 20px;
    }
    .pb-xxl-25px,
    .py-xxl-25px,
    .p-xxl-25px {
        padding-bottom: 25px;
    }
    .pb-xxl-30px,
    .py-xxl-30px,
    .p-xxl-30px {
        padding-bottom: 30px;
    }

    .w-xxl-auto {
        width: auto;
    }
    .w-xxl-5px,
    .size-xxl-5px {
        width: 5px;
    }
    .w-xxl-10px,
    .size-xxl-10px {
        width: 10px;
    }
    .w-xxl-15px,
    .size-xxl-15px {
        width: 15px;
    }
    .w-xxl-20px,
    .size-xxl-20px {
        width: 20px;
    }
    .w-xxl-25px,
    .size-xxl-25px {
        width: 25px;
    }
    .w-xxl-30px,
    .size-xxl-30px {
        width: 30px;
    }
    .w-xxl-35px,
    .size-xxl-35px {
        width: 35px;
    }
    .w-xxl-40px,
    .size-xxl-40px {
        width: 40px;
    }
    .w-xxl-45px,
    .size-xxl-45px {
        width: 45px;
    }
    .w-xxl-48px,
    .size-xxl-48px {
        width: 48px;
    }
    .w-xxl-50px,
    .size-xxl-50px {
        width: 50px;
    }
    .w-xxl-60px,
    .size-xxl-60px {
        width: 60px;
    }
    .w-xxl-64px,
    .size-xxl-64px {
        width: 64px;
    }
    .w-xxl-70px,
    .size-xxl-70px {
        width: 70px;
    }
    .w-xxl-80px,
    .size-xxl-80px {
        width: 80px;
    }
    .w-xxl-90px,
    .size-xxl-90px {
        width: 90px;
    }
    .w-xxl-100px,
    .size-xxl-100px {
        width: 100px;
    }
    .w-xxl-110px,
    .size-xxl-110px {
        width: 110px;
    }
    .w-xxl-120px,
    .size-xxl-120px {
        width: 120px;
    }
    .w-xxl-130px,
    .size-xxl-130px {
        width: 130px;
    }
    .w-xxl-140px,
    .size-xxl-140px {
        width: 140px;
    }
    .w-xxl-150px,
    .size-xxl-150px {
        width: 150px;
    }
    .w-xxl-160px,
    .size-xxl-160px {
        width: 160px;
    }
    .w-xxl-170px,
    .size-xxl-170px {
        width: 170px;
    }
    .w-xxl-180px,
    .size-xxl-180px {
        width: 180px;
    }
    .w-xxl-190px,
    .size-xxl-190px {
        width: 190px;
    }
    .w-xxl-200px,
    .size-xxl-200px {
        width: 200px;
    }
    .w-xxl-210px,
    .size-xxl-210px {
        width: 210px;
    }
    .w-xxl-220px,
    .size-xxl-220px {
        width: 220px;
    }
    .w-xxl-230px,
    .size-xxl-230px {
        width: 230px;
    }
    .w-xxl-240px,
    .size-xxl-240px {
        width: 240px;
    }
    .w-xxl-250px,
    .size-xxl-250px {
        width: 250px;
    }
    .w-xxl-260px,
    .size-xxl-260px {
        width: 260px;
    }
    .w-xxl-270px,
    .size-xxl-270px {
        width: 270px;
    }
    .w-xxl-280px,
    .size-xxl-280px {
        width: 280px;
    }
    .w-xxl-290px,
    .size-xxl-290px {
        width: 290px;
    }
    .w-xxl-300px,
    .size-xxl-300px {
        width: 300px;
    }
    .w-xxl-310px,
    .size-xxl-310px {
        width: 310px;
    }
    .w-xxl-320px,
    .size-xxl-320px {
        width: 320px;
    }
    .w-xxl-330px,
    .size-xxl-330px {
        width: 330px;
    }
    .w-xxl-340px,
    .size-xxl-340px {
        width: 340px;
    }
    .w-xxl-350px,
    .size-xxl-350px {
        width: 350px;
    }
    .w-xxl-360px,
    .size-xxl-360px {
        width: 360px;
    }
    .w-xxl-370px,
    .size-xxl-370px {
        width: 370px;
    }
    .w-xxl-380px,
    .size-xxl-380px {
        width: 380px;
    }
    .w-xxl-390px,
    .size-xxl-390px {
        width: 390px;
    }
    .w-xxl-400px,
    .size-xxl-400px {
        width: 400px;
    }
    .w-xxl-410px,
    .size-xxl-410px {
        width: 410px;
    }
    .w-xxl-420px,
    .size-xxl-420px {
        width: 420px;
    }
    .w-xxl-450px,
    .size-xxl-450px {
        width: 450px;
    }
    .w-xxl-500px,
    .size-xxl-500px {
        width: 500px;
    }
    .w-xxl-553px,
    .size-xxl-553px {
        width: 553px;
    }
    .w-xxl-640px,
    .size-xxl-640px {
        width: 640px;
    }
    .w-xxl-800px,
    .size-xxl-800px {
        width: 820px;
    }

    .h-xxl-auto {
        height: auto;
    }
    .h-xxl-5px,
    .size-xxl-5px {
        height: 5px;
    }
    .h-xxl-10px,
    .size-xxl-10px {
        height: 10px;
    }
    .h-xxl-15px,
    .size-xxl-15px {
        height: 15px;
    }
    .h-xxl-20px,
    .size-xxl-20px {
        height: 20px;
    }
    .h-xxl-25px,
    .size-xxl-25px {
        height: 25px;
    }
    .h-xxl-30px,
    .size-xxl-30px {
        height: 30px;
    }
    .h-xxl-35px,
    .size-xxl-35px {
        height: 35px;
    }
    .h-xxl-40px,
    .size-xxl-40px {
        height: 40px;
    }
    .h-xxl-45px,
    .size-xxl-45px {
        height: 45px;
    }
    .h-xxl-48px,
    .size-xxl-48px {
        height: 48px;
    }
    .h-xxl-50px,
    .size-xxl-50px {
        height: 50px;
    }
    .h-xxl-60px,
    .size-xxl-60px {
        height: 60px;
    }
    .h-xxl-64px,
    .size-xxl-64px {
        height: 64px;
    }
    .h-xxl-70px,
    .size-xxl-70px {
        height: 70px;
    }
    .h-xxl-80px,
    .size-xxl-80px {
        height: 80px;
    }
    .h-xxl-90px,
    .size-xxl-90px {
        height: 90px;
    }
    .h-xxl-100px,
    .size-xxl-100px {
        height: 100px;
    }
    .h-xxl-110px,
    .size-xxl-110px {
        height: 110px;
    }
    .h-xxl-120px,
    .size-xxl-120px {
        height: 120px;
    }
    .h-xxl-130px,
    .size-xxl-130px {
        height: 130px;
    }
    .h-xxl-140px,
    .size-xxl-140px {
        height: 140px;
    }
    .h-xxl-150px,
    .size-xxl-150px {
        height: 150px;
    }
    .h-xxl-160px,
    .size-xxl-160px {
        height: 160px;
    }
    .h-xxl-170px,
    .size-xxl-170px {
        height: 170px;
    }
    .h-xxl-180px,
    .size-xxl-180px {
        height: 180px;
    }
    .h-xxl-190px,
    .size-xxl-190px {
        height: 190px;
    }
    .h-xxl-200px,
    .size-xxl-200px {
        height: 200px;
    }
    .h-xxl-210px,
    .size-xxl-210px {
        height: 210px;
    }
    .h-xxl-220px,
    .size-xxl-220px {
        height: 220px;
    }
    .h-xxl-230px,
    .size-xxl-230px {
        height: 230px;
    }
    .h-xxl-240px,
    .size-xxl-240px {
        height: 240px;
    }
    .h-xxl-250px,
    .size-xxl-250px {
        height: 250px;
    }
    .h-xxl-260px,
    .size-xxl-260px {
        height: 260px;
    }
    .h-xxl-270px,
    .size-xxl-270px {
        height: 270px;
    }
    .h-xxl-280px,
    .size-xxl-280px {
        height: 280px;
    }
    .h-xxl-290px,
    .size-xxl-290px {
        height: 290px;
    }
    .h-xxl-300px,
    .size-xxl-300px {
        height: 300px;
    }
    .h-xxl-310px,
    .size-xxl-310px {
        height: 310px;
    }
    .h-xxl-320px,
    .size-xxl-320px {
        height: 320px;
    }
    .h-xxl-330px,
    .size-xxl-330px {
        height: 330px;
    }
    .h-xxl-340px,
    .size-xxl-340px {
        height: 340px;
    }
    .h-xxl-350px,
    .size-xxl-350px {
        height: 350px;
    }
    .h-xxl-360px,
    .size-xxl-360px {
        height: 360px;
    }
    .h-xxl-370px,
    .size-xxl-370px {
        height: 370px;
    }
    .h-xxl-380px,
    .size-xxl-380px {
        height: 380px;
    }
    .h-xxl-390px,
    .size-xxl-390px {
        height: 390px;
    }
    .h-xxl-400px,
    .size-xxl-400px {
        height: 400px;
    }
    .h-xxl-410px,
    .size-xxl-410px {
        height: 410px;
    }
    .h-xxl-420px,
    .size-xxl-420px {
        height: 420px;
    }
    .h-xxl-450px,
    .size-xxl-450px {
        height: 450px;
    }
    .h-xxl-460px,
    .size-xxl-460px {
        height: 460px;
    }
    .h-xxl-475px,
    .size-xxl-475px {
        height: 475px;
    }
    .h-xxl-485px,
    .size-xxl-485px {
        height: 485px;
    }
    .h-xxl-490px,
    .size-xxl-490px {
        height: 490px;
    }
    .h-xxl-500px,
    .size-xxl-500px {
        height: 500px;
    }
    .h-xxl-553px,
    .size-xxl-553px {
        height: 553px;
    }
    .h-xxl-640px,
    .size-xxl-640px {
        height: 640px;
    }
    .h-xxl-800px,
    .size-xxl-800px {
        height: 820px;
    }

    .xxl-no-gutters {
        margin-right: -0px;
        margin-left: -0px;
    }
    .xxl-no-gutters > .col,
    .xxl-no-gutters > [class*="col-"] {
        padding-right: 0px;
        padding-left: 0px;
    }
    .xxl-gutters-5 {
        margin-right: -5px;
        margin-left: -5px;
    }
    .xxl-gutters-5 > .col,
    .xxl-gutters-5 > [class*="col-"] {
        padding-right: 5px;
        padding-left: 5px;
    }
    .xxl-gutters-10 {
        margin-right: -10px;
        margin-left: -10px;
    }
    .xxl-gutters-10 > .col,
    .xxl-gutters-10 > [class*="col-"] {
        padding-right: 10px;
        padding-left: 10px;
    }
    .xxl-gutters-15 {
        margin-right: -15px;
        margin-left: -15px;
    }
    .xxl-gutters-15 > .col,
    .xxl-gutters-15 > [class*="col-"] {
        padding-right: 15px;
        padding-left: 15px;
    }
    .xxl-gutters-16 {
        margin-right: -16px;
        margin-left: -16px;
    }
    .xxl-gutters-16 > .col,
    .xxl-gutters-16 > [class*="col-"] {
        padding-right: 16px;
        padding-left: 16px;
    }
    .xxl-gutters-17 {
        margin-right: -17px;
        margin-left: -17px;
    }
    .xxl-gutters-17 > .col,
    .xxl-gutters-17 > [class*="col-"] {
        padding-right: 17px;
        padding-left: 17px;
    }
    .xxl-gutters-20 {
        margin-right: -20px;
        margin-left: -20px;
    }
    .xxl-gutters-20 > .col,
    .xxl-gutters-20 > [class*="col-"] {
        padding-right: 20px;
        padding-left: 20px;
    }
    .xxl-gutters-25 {
        margin-right: -25px;
        margin-left: -25px;
    }
    .xxl-gutters-25 > .col,
    .xxl-gutters-25 > [class*="col-"] {
        padding-right: 25px;
        padding-left: 25px;
    }
    .xxl-gutters-30 {
        margin-right: -30px;
        margin-left: -30px;
    }
    .xxl-gutters-30 > .col,
    .xxl-gutters-30 > [class*="col-"] {
        padding-right: 30px;
        padding-left: 30px;
    }

    [dir="rtl"] .row-cols-xxl-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    [dir="rtl"] .row-cols-xxl-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    [dir="rtl"] .row-cols-xxl-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    [dir="rtl"] .row-cols-xxl-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    [dir="rtl"] .row-cols-xxl-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
    [dir="rtl"] .row-cols-xxl-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .flex-grow-xxl-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-grow-xxl-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-xxl-nowrap {
        flex-wrap: nowrap !important;
    }
    .flex-xxl-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
}

/*bootstrap, global reset*/

body {
    margin: 0;
    font-family: Poppins, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #1b1b28;
    background-color: #fff;
    max-width: 100vw;
    overflow-x: hidden;
}

a,
button,
input,
textarea,
.btn,
.has-transition {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a {
    color: var(--primary);
}

a:hover {
    text-decoration: none;
    color: var(--hov-primary);
}

:focus,
a:focus,
button:focus,
.page-link:focus,
.custom-file-input:focus ~ .custom-file-label {
    box-shadow: none;
    outline: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

/*ub styles*/

.ub-main-wrapper {
    /* min-height: 100vh; */
    max-width: 100vw;
    background-color: var(--light);
}

.ub-titlebar h1,
.ub-titlebar .title {
    font-size: 1rem;
    font-weight: 500;
}

.ub-content-wrapper {
    padding-left: 0;
    padding-top: 75px;
    height: 100%;
    min-height: 100vh;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.ub-main-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

/* lg */

@media (min-width: 992px) {
    .ub-content-wrapper {
        padding-top: 85px;
    }


}

/* xl */

@media (min-width: 1200px) {
    .ub-content-wrapper {
        padding-left: 280px;
    }
    [dir="rtl"] .ub-content-wrapper {
        padding-left: 0;
        padding-right: 280px;
    }
    .side-menu-closed .ub-content-wrapper {
        padding-left: 0;
    }
    [dir="rtl"] .side-menu-closed .ub-content-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
}

/*siebar nav*/

.ub-sidebar-overlay {
    cursor: pointer;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 98;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0.3s ease, opacity 0.3s ease;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 1199.98px) {
    .side-menu-open .ub-sidebar-overlay {
        visibility: visible;
        opacity: 1;
    }
}

.ub-sidebar.left {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -280px;
    height: 100vh;
    overflow-y: auto;
    z-index: 99;
    background-color: white;
    width: 280px;
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
}

[dir="rtl"] .ub-sidebar.left {
    left: auto;
    right: -280px;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
}

.side-menu-open .ub-sidebar-wrap .left {
    left: 0px;
}

[dir="rtl"] .side-menu-open .ub-sidebar-wrap .left {
    right: 0;
}

.ub-side-nav-logo-wrap a {
    padding: 17px 25px;
}

.ub-side-nav-logo-wrap img {
    height: 31px;
}

.ub-side-nav-logo-wrap {
    background-color: white;
    transition: all 0.3s;
}

.ub-side-nav-logo-wrap:hover {
    /* background-color: #3a3f50; */
}

.ub-side-nav-wrap {
    padding: 15px 0;
}

.ub-side-nav-wrap #menu-search {
    border: 1px solid #3a3f50;
    transition: .4s;
}

.ub-side-nav-wrap #menu-search:focus {
    border: 1px solid #7c8191;
}

.ub-side-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ub-side-nav-list .level-2:not(.mm-show):not(.mm-collapsing),
.ub-side-nav-list .level-3:not(.mm-show):not(.mm-collapsing) {
    visibility: hidden;
    height: 0;
}

.ub-side-nav-list .ub-side-nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 10px 25px;
    font-size: 0.875rem;
    font-weight: 500;
    color: black;
    margin-bottom: 2px;
}

.ub-side-nav-list .ub-side-nav-icon,
.ub-side-nav-list .ub-side-nav-icon > svg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color:black;
    margin-right: 12px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.ub-side-nav-list .ub-side-nav-icon > svg {
    height: auto;
}

[dir="rtl"] .ub-side-nav-list .ub-side-nav-icon {
    margin-right: 0px;
    margin-left: 6px;
}

.ub-side-nav-list .ub-side-nav-icon > svg *{
    fill: #575b6a;
    transition: all 0.3s;
}

.ub-side-nav-list .ub-side-nav-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.ub-side-nav-list .ub-side-nav-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 80%;
}

.ub-side-nav-list .ub-side-nav-link:hover .ub-side-nav-icon {
    color: #9191a0;
}

.ub-side-nav-list .ub-side-nav-arrow::after {
    content: "\f106";
    font-family: "Line Awesome Free";
    font-weight: 900;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

[dir="rtl"] .ub-side-nav-list .ub-side-nav-arrow::after {
    content: "\f106";
}

.ub-side-nav-list [aria-expanded="true"] .ub-side-nav-arrow::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

[dir="rtl"]
    .ub-side-nav-list
    [aria-expanded="true"]
    .ub-side-nav-arrow::after {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.ub-side-nav-list .level-2 .ub-side-nav-link {
    padding: 10px 25px 10px 54px;
    position: relative;
    font-size: 0.8125rem;
}

[dir="rtl"] .ub-side-nav-list .level-2 .ub-side-nav-link {
    padding: 10px 54px 10px 25px;
}

.ub-side-nav-list .level-3 .ub-side-nav-link {
    padding-left: 68px;
}

.set-product-cl{
    justify-content: end;
    display: flex;
}

.product-container {
    display: flex;
    align-items: center
}

.product-card {
    background-color: #b8f1a3;
    border: 2px solid #b7e98e;
    border-radius: 8px;
    margin-left: 20px;
    width: auto;
    padding: 12px;
    font-weight: bold;

}

.ub-side-nav-list .level-2 .ub-side-nav-link:after {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    border: 1px solid #575b6a;
    border-radius: 50%;
    top: calc(50% - 4px);
    left: 40px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.ub-side-nav-list .level-3 .ub-side-nav-link:after {
    left: 54px;
}

[dir="rtl"] .ub-side-nav-list .level-2 .ub-side-nav-link:after {
    left: 0px;
    right: 40px;
}

[dir="rtl"] .ub-side-nav-list .level-3 .ub-side-nav-link:after {
    right: 54px;
}

.ub-side-nav-list .ub-side-nav-linkhover,
.ub-side-nav-list .ub-side-nav-link.level-2-active,
.ub-side-nav-list .ub-side-nav-link.level-3-active,
.ub-side-nav-list .ub-side-nav-link.active {
    color:black;
    background-color: white
}

.ub-side-nav-list .ub-side-nav-link:hover .ub-side-nav-icon > svg *,
.ub-side-nav-list .ub-side-nav-link.level-2-active .ub-side-nav-icon > svg *,
.ub-side-nav-list .ub-side-nav-link.level-3-active .ub-side-nav-icon > svg *,
.ub-side-nav-list .ub-side-nav-link.active .ub-side-nav-icon > svg * {
    fill: black;
}

.ub-side-nav-list .level-2 .ub-side-nav-link:hover:after,
.ub-side-nav-list .level-2 .ub-side-nav-link.active:after {
    background: #cfd4e6;
}

/* xl */

@media (min-width: 1200px) {
    .ub-sidebar.left {
        left: 0px;
    }
    [dir="rtl"] .ub-sidebar.left {
        left: auto;
        right: 0;
    }
    .side-menu-closed .ub-sidebar.left {
        left: -280px;
    }
    [dir="rtl"] .side-menu-closed .ub-sidebar.left {
        left: auto;
        right: -280px;
    }
}

/*dropdown*/

.dropdown-toggle {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.dropdown-toggle::after {
    content: "\f107" !important;
    font-family: "Line Awesome Free" !important;
    border: 0 !important;
    font-weight: 900 !important;
    font-size: 80% !important;
    margin-left: 0.3rem !important;
}

.dropup .dropdown-toggle::after {
    border: 0;
    content: "\f106";
}

.dropdown-toggle.no-arrow::after {
    content: none;
}

.dropdown-menu {
    border-color: #dfdfe6;
    margin: 0;
    border-radius: 0;
    min-width: 14rem;
    font-size: inherit;
    padding: 0;
    -webkit-box-shadow: 0 0 50px 0 rgba(82, 63, 105, 0.15);
    box-shadow: 0 0 50px 0 rgba(82, 63, 105, 0.15);
    padding: 0.5rem 0;
    border-radius: 4px;
    max-width: 100%;
}

.dropdown-menu-animated {
    display: block;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: margin-top 0.3s, visibility 0.3s, opacity 0.3s;
    transition: margin-top 0.3s, visibility 0.3s, opacity 0.3s;
    margin-top: 20px !important;
}

.show.dropdown-menu {
    visibility: visible;
    opacity: 1;
    margin-top: 0 !important;
}

.dropdown-menu.dropdown-menu-xs {
    width: 160px;
    min-width: 160px;
}

.dropdown-menu.dropdown-menu-sm {
    width: 240px;
    min-width: 240px;
}

.dropdown-menu.dropdown-menu-md {
    width: 260px;
    min-width: 260px;
}

.dropdown-menu.dropdown-menu-lg {
    width: 320px;
    min-width: 280px;
}

.dropdown-menu.dropdown-menu-xl {
    width: 380px;
    min-width: 380px;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #74788d;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:active {
    color: #fff !important;
    background-color: var(--primary);
}

.notifications .nav-link{
    border: 0px;
    border-bottom: 2px solid transparent;
}

.notifications .nav-link.active{
    border-bottom-color: #d43533;
}

/*card elements*/

.card {
    -webkit-box-shadow: 0 0 13px 0 rgba(82, 63, 105, 0.05);
    box-shadow: 0 0 13px 0 rgba(82, 63, 105, 0.05);
    background-color: #fff;
    margin-bottom: 20px;
    border-color: #ebedf2;
}

.card .card-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    padding: 12px 25px;
    border-bottom: 1px solid #ebedf2;
    min-height: 50px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background-color: transparent;
}

.card .card-body {
    padding: 20px 25px;
    border-radius: 4px;
}

.card .card-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top: 1px solid #ebedf2;
    background-color: transparent;
    padding: 12px 25px;
}

.card-bordered {
    border: 1px solid #ebedf2;
}

.ub-p-hov-icon button {
    /* display: block; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
    background: #fff;
    margin-top: 5px;
    margin-right: 5px;
    color: #333;
    font-size: 16px;
    box-shadow: 0px 2px 10px rgb(0 0 0 / 15%);
    transform: translateX(calc(100% + 15px));
    -webkit-transform: translateX(calc(100% + 15px));
}

[dir="rtl"] .ub-p-hov-icon button {
    transform: translateX(calc(-100% - 15px));
    -webkit-transform: translateX(calc(-100% - 15px));
    margin-left: 5px;
}

.ub-p-hov-icon button:hover {
    background: var(--primary);
    color: #fff;
}

.ub-p-hov-icon button:nth-child(2) {
    transition-delay: 0.05s;
    -webkit-transition-delay: 0.05s;
}

.ub-p-hov-icon button:nth-child(3) {
    transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
}

.ub-card-box {
    overflow: hidden;
}

.ub-card-box:hover .ub-p-hov-icon button {
    transform: translateX(0);
    -webkit-transform: translateX(0);
}

.ub-card-box .disc-amount{
    margin-right: -37%;
    opacity: 0 !important;
}

.ub-card-box:hover .disc-amount{
    margin-right: 0;
    opacity: 1 !important;
}

.carousel-box .ub-card-box {
    overflow: hidden;
    margin-top: 2px;
    margin-bottom: 2px;
}

.cart-btn{
    background: #000;
    opacity: 0.7;
    transform: translateY(100%);
    transition: 0.3s;
    overflow: hidden;
}

.cart-btn:hover,
.cart-btn.active{
    opacity: 1;
}

.cart-btn .cart-btn-text{
    margin-top: 48px;
    margin-bottom: 20px;
    transition: 0.4s;
}

.cart-btn:hover .cart-btn-text{
    margin-top: -40px;
}

.ub-card-box:hover .cart-btn{
    transform: translateY(0);
}

/*tabs*/

.ub-nav-tabs a.active {
    border-bottom: 2px solid var(--primary);
}

/*ub steps*/

.ub-steps .icon {
    height: 40px;
    width: 40px;
    line-height: 40px;
    margin-left: auto;
    margin-right: auto;
    background: var(--secondary);
    font-size: 20px;
    border-radius: 50%;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.ub-steps > * {
    opacity: 0.4;
}

.ub-steps > *:not(:first-of-type):before {
    position: absolute;
    width: calc(100% - 20px);
    height: 4px;
    background: var(--secondary);
    content: "";
    right: calc(50% + 20px);
    top: 18px;
    z-index: 0;
    opacity: 0.4;
}

[dir="rtl"] .ub-steps> *:not(:first-of-type):before {
    left: calc(50% + 20px);
    right: auto;
}

.ub-steps .title {
    font-size: 15px;
    font-weight: 600;
}

.ub-steps .done .icon,
.ub-steps .done:before {
    background: var(--primary) !important;
}

.ub-steps .done,
.ub-steps .active,
.ub-steps .done:before,
.ub-steps .active:before {
    opacity: 1 !important;
}

.ub-steps .active .icon {
    background: var(--success);
}

.ub-steps.arrow-divider > *:not(:first-of-type) {
    position: relative;
}

.ub-steps.arrow-divider > *:not(:first-of-type):before {
    position: absolute;
    content: "\f105";
    font-family: "Line Awesome Free";
    font-weight: 900;
    top: 5px;
    left: -13px;
    font-size: 22px;
    opacity: 0.2 !important;
    height: auto;
    width: auto;
    background-color: transparent !important;
}

[dir="rtl"] .ub-steps.arrow-divider > *:not(:first-of-type):before {
    left: auto;
    right: -12px;
    content: "\f104";
}

/*countdown*/

.ub-count-down {
    display: flex;
    direction: ltr;
}

.ub-count-down .countdown-item {
    padding: 4px 6px;
    background: var(--primary);
    color: #fff;
    border-radius: 3px;
    margin: 0 3px;
}

.ub-count-down-lg .countdown-item {
    padding: 6px 10px;
    font-size: 16px;
}

/*countdown-box*/

.ub-count-down-box {
    display: flex;
    direction: ltr;
    background: var(--primary);
}

.ub-count-down-box .countdown-item {
    padding: 7px;
    color: #fff;
    border-radius: 3px;
    margin: 0 3px;
    min-width: 52px;
    font-size: 16px;
    font-weight: 700;
}

.ub-count-down-box .countdown-name {
    color: #fff;
    font-size: 8px;
    font-weight: 400;
    text-transform: uppercase;
}

.ub-count-down-box .countdown-separator {
    color: #fff;
    font-size: 14px;
}

/* Countdown Circle */

/* .ub-count-down-circle{
    display: flex;
    justify-content: center;
    min-height: 100%;
    background: #fff;
    padding: 1rem;
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.16);
} */

/*
.ub-count-down-circle#time{
    display: flex;
}
.ub-count-down-circle #time .circle{
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ub-count-down-circle#time .circle svg{
    position: relative;
    width: 70px;
    height: 70px;
    transform: rotate(270deg);
}
.ub-count-down-circle #time .circle svg circle{
    width: 100%;
    height: 100%;
    fill: transparent;
    stroke-width: 1;
    stroke: #f7f2f2;
    stroke-linecap: round;
    transform: translate(5px, 5px);
}
.ub-count-down-circle #time .circle svg circle:nth-child(2){
    stroke: var(--primary);
    stroke-width: 2;
    stroke-dasharray: 190;
    stroke-dashoffset: 190;
}
.ub-count-down-circle #time div{
    position: absolute;
    text-align: center;
    font-weight: 700;
    color: #1b1b28;
    font-size: 14px;
    top: -20px;
}
.ub-count-down-circle #time div span{
    position: absolute;
    transform: translateX(-50%) translateY(-10%);
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
[dir="rtl"] .ub-count-down-circle #time div span{
    transform: translateX(50%) translateY(-10%);
} */

/*form elements*/

.ub-count-down-circle {
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.16);
}

.flash-time-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
}

.ub-count-down-circle .flash-time-container .circle {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
}

.ub-count-down-circle .flash-time-container .circle svg {
    width: 60px;
    height: 60px;
}

.ub-count-down-circle .flash-time-container .circle svg circle {
    fill: transparent;
    stroke-width: 1;
    stroke: #f7f2f2;
    stroke-linecap: round;
}

.ub-count-down-circle .flash-time-container .circle svg circle:nth-child(2) {
    stroke: var(--primary); /* Assuming --primary is a custom CSS variable */
    stroke-width: 2;
    stroke-dasharray: 190;
    stroke-dashoffset: 190;
}

.ub-count-down-circle .flash-time-container .circle div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.form-control {
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    height: calc(1.3125rem + 1.2rem + 2px);
    border: 1px solid #dfdfe6;
    color: #898b92;
}

.form-control-sm {
    height: calc(1.5rem + 0.8rem + 2px);
    padding: 0.4rem 0.7rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    border-radius: 0.25rem;
}

.form-control-lg {
    height: calc(1.5rem + 1.5rem + 2px);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
}

.form-control::-webkit-input-placeholder {
    color: #898b92;
}

.form-control:-ms-input-placeholder {
    color: #898b92;
}

.form-control::placeholder {
    color: #898b92;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #f7f8fa;
    opacity: 1;
    border-color: #dfdfe6;
}

.resize-off {
    resize: none;
}

.custom-file-input:focus ~ .custom-file-label {
    border-color: #dfdfe6;
}

.custom-file {
    height: calc(1.3125rem + 1.2rem + 2px);
    overflow: hidden;
}

.custom-file-input {
    height: 0;
    width: 0;
    opacity: 0;
    position: absolute;
}

.custom-file-name {
    white-space: nowrap;
}

.custom-file-label,
.custom-file-label::after {
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    height: calc(1.3125rem + 1.2rem + 2px);
    border: 1px solid #dfdfe6;
    color: #898b92;
}

.custom-file-label::after {
    height: calc(1.3125rem + 1.2rem);
}

.custom-file-sm {
    height: calc(1.5rem + 0.8rem + 2px);
}

.custom-file-sm .custom-file-label,
.custom-file-sm .custom-file-label::after {
    height: calc(1.5rem + 0.8rem + 2px);
    padding: 0.4rem 0.7rem;
    font-size: 0.8125rem;
    line-height: 1.5;
}

.custom-file-sm .custom-file-label::after {
    height: calc(1.5rem + 0.8rem);
}

.custom-file-lg {
    height: calc(1.5rem + 1.5rem + 2px);
}

.custom-file-lg .custom-file-label,
.custom-file-lg .custom-file-label::after {
    height: calc(1.5rem + 1.5rem + 2px);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

.custom-file-lg .custom-file-label::after {
    height: calc(1.5rem + 1.5rem);
}

/*custom checkbox, radio*/

.ub-checkbox-list {
    padding: 0 0;
}

.ub-checkbox,
.ub-radio {
    display: inline-block;
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 0.875rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

[dir="rtl"] .ub-checkbox
[dir="rtl"] .ub-radio {
    padding-right: 28px;
    padding-left: 0;
}

.ub-checkbox-list .ub-checkbox,
.ub-radio-list .ub-radio {
    display: block;
}

.ub-checkbox.ub-checkbox-disabled,
.ub-radio.ub-radio-disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

.ub-checkbox-inline .ub-checkbox,
.ub-radio-inline .ub-radio {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 5px;
}

.ub-checkbox-inline .ub-checkbox:last-child,
.ub-radio-inline .ub-radio:last-child {
    margin-right: 0;
}

.ub-checkbox > input,
.ub-radio > input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.ub-square-check,
.ub-rounded-check {
    background: 0 0;
    position: relative;
    height: 16px;
    width: 16px;
    border: 1px solid #d1d7e2;
}

.ub-checkbox .ub-square-check,
.ub-checkbox .ub-rounded-check,
.ub-radio .ub-square-check,
.ub-radio .ub-rounded-check{
    position: absolute;
    top: 2px;
    left: 0;
}

[dir="rtl"] .ub-checkbox .ub-square-check,
[dir="rtl"] .ub-checkbox .ub-rounded-check,
[dir="rtl"] .ub-radio .ub-square-check,
[dir="rtl"] .ub-radio .ub-rounded-check {
    left: auto;
    right: 0;
}

.ub-square-check {
    border-radius: 3px;
}

.ub-rounded-check {
    border-radius: 50%;
}

.ub-square-check:after,
.ub-rounded-check:after {
    content: "";
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: 50%;
    left: 50%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.ub-square-check:after {
    margin-left: -2px;
    margin-top: -6px;
    width: 5px;
    height: 10px;
    border-width: 0 2px 2px 0 !important;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border: solid var(--primary);
}

.ub-rounded-check:after {
    margin-left: -5px;
    margin-top: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
}

.ub-checkbox > input:checked ~ .ub-square-check:after,
.ub-radio > input:checked ~ .ub-square-check:after,
.ub-checkbox > input:checked ~ .ub-rounded-check:after,
.ub-radio > input:checked ~ .ub-rounded-check:after {
    visibility: visible;
    opacity: 1;
}

/*ub megabox*/

.ub-megabox {
    position: relative;
    cursor: pointer;
}

.ub-megabox input {
    position: absolute;
    z-index: 1;
    opacity: 0;
}

.ub_payment_box input {
    position: absolute;
    z-index: 1;
    opacity:1;
}

.ub-megabox .ub-megabox-elem {
    border: 1px solid #dfdfe6;
    border-radius: 0.25rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 0.25rem;
}

.ub-megabox > input:checked ~ span .ub-rounded-check:after,
.ub-megabox > input:checked ~ span .ub-square-check:after {
    visibility: visible;
    opacity: 1;
}

.ub-megabox > input:checked ~ .ub-megabox-elem,
.ub-megabox > input:checked ~ .ub-megabox-elem {
    border-color: var(--primary);
}

.ub-megabox > input:checked ~ .ub-megabox-elem.border-transparent {
    border-color: var(--primary) !important;
}

/*input group/ form group*/

.input-group > .input-group-prepend > .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group-text {
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #74788d;
    background-color: #f7f8fa;
    border: 1px solid #dfdfe6;
    border-radius: 4px;
}

.input-group-sm > .custom-select,
.input-group-sm > .form-control:not(textarea) {
    height: calc(1.5em + 0.8rem + 2px);
}

.input-group-sm > .custom-select,
.input-group-sm > .form-control,
.input-group-sm > .input-group-append > .btn,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-prepend > .input-group-text {
    padding: 0.4rem 0.7rem;
    font-size: 0.8125rem;
}

/*input with icon*/

.ub-input-icon {
    position: relative;
}

.ub-input-icon.ub-input-icon--left .form-control {
    padding-left: 2.6rem;
}

.ub-input-icon.ub-input-icon--right .form-control {
    padding-right: 2.6rem;
}

.ub-input-icon > .ub-input-icon__icon {
    position: absolute;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
    width: 2.6rem;
}

.ub-input-icon--left > .ub-input-icon__icon {
    left: 0;
}

.ub-input-icon--right > .ub-input-icon__icon {
    right: 0;
}

/*switch*/

.ub-switch input:empty {
    height: 0;
    width: 0;
    overflow: hidden;
    position: absolute;
    opacity: 0;
}

.ub-switch input:empty ~ span {
    display: inline-block;
    position: relative;
    text-indent: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 24px;
    height: 21px;
    width: 40px;
    border-radius: 12px;
}

.ub-switch input:empty ~ span:after,
.ub-switch input:empty ~ span:before {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    content: " ";
    -webkit-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
    width: 40px;
    border-radius: 12px;
}

.ub-switch input:empty ~ span:before {
    background-color: #e8ebf1;
}

.ub-switch input:empty ~ span:after {
    height: 17px;
    width: 17px;
    line-height: 20px;
    top: 2px;
    bottom: 2px;
    margin-left: 2px;
    font-size: 0.8em;
    text-align: center;
    vertical-align: middle;
    color: #f8f9fb;
    background-color: #fff;
}

.ub-switch input:checked ~ span:after {
    background-color: var(--primary);
    margin-left: 20px;
}

.ub-switch-secondary input:checked ~ span:after {
    background-color: var(--secondary);
}

.ub-switch-success input:checked ~ span:after {
    background-color: var(--success);
}

.ub-switch-info input:checked ~ span:after {
    background-color: var(--info);
}

.ub-switch-warning input:checked ~ span:after {
    background-color: var(--warning);
}

.ub-switch-secondary-base input:checked ~ span:after {
    background-color: var(--secondary-base);
}

.ub-switch-danger input:checked ~ span:after {
    background-color: var(--danger);
}

.ub-switch-light input:checked ~ span:after {
    background-color: var(--light);
}

.ub-switch-dark input:checked ~ span:after {
    background-color: var(--dark);
}

.ub-switch-blue input:checked ~ span:after {
    background-color: var(--blue);
}

/*bootstrap select */

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
    outline: none !important;
}

.bootstrap-select .dropdown-toggle {
    color: #898b92;
    background-color: transparent !important;
    border-color: #dfdfe6;
}

.rounded-0 .dropdown-toggle {
    border-radius: 0 !important;
}

.bootstrap-select.form-control-sm .dropdown-toggle {
    padding: 0.416rem 0.7rem;
    height: calc(1.5rem + 0.8rem + 2px);
}

.bootstrap-select.form-control-lg .dropdown-toggle {
    height: calc(1.5rem + 1.5rem + 2px);
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.bootstrap-select .dropdown-toggle:active,
.bootstrap-select .dropdown-toggle:focus,
.show.bootstrap-select .dropdown-toggle {
    border-color: var(--primary) !important;
}

.bootstrap-select .dropdown-menu .selected span.check-mark {
    right: 12px;
    top: 11px;
}

.bootstrap-select .bs-ok-default:after {
    width: 6px;
    height: 12px;
    border-width: 0 2px 2px 0;
    border-color: #6f6f80;
}

.dropdown-item:hover .bs-ok-default:after {
    border-color: #fff;
}

.bootstrap-select .no-results {
    padding: 8px 10px;
    background: #f5f5f5;
    margin: 0 8px;
    border-radius: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.bootstrap-select .dropdown-menu .notify {
    width: calc(100% - 20px);
    margin: 0 10px;
    min-height: 26px;
    padding: 8px 12px;
    background: #f2f3f8;
    border: 1px solid #e3e3e3;
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1;
}

.bootstrap-select .notify.fadeOut {
    -webkit-animation: bs-notify-fadeOut 2s linear 0.2s;
    -o-animation: bs-notify-fadeOut 2s linear 0.2s;
    animation: bs-notify-fadeOut 2s linear 0.2s;
}

.bootstrap-select .bs-actionsbox .btn-group button:first-child {
    border-right: 1px solid #fff;
}

.bootstrap-select .bs-actionsbox .btn-group button:last-child {
    border-left: 1px solid #fff;
}

.bootstrap-select .bs-actionsbox .btn-group button {
    padding: 0.6rem 0.5rem;
    line-height: 1;
}

.bootstrap-select .dropdown-menu li,
.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bootstrap-select .dropdown-menu li a span.text {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 0;
    vertical-align: bottom;
}

[dir="rtl"] .bootstrap-select .dropdown-toggle .filter-option {
    float: right;
    text-align: right;
}

/*date range*/

.daterangepicker {
    border-color: #dfdfe6;
    -webkit-box-shadow: 0 0 50px 0 rgba(82, 63, 105, 0.15);
    box-shadow: 0 0 50px 0 rgba(82, 63, 105, 0.15);
    font-family: inherit;
}

.daterangepicker:before {
    border-bottom-color: #dfdfe6;
}

.daterangepicker th {
    font-weight: 600;
}

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
    border-width: 0 1px 1px 0;
    border-color: var(--dark);
}

.daterangepicker .calendar-table .next span {
    margin-left: -5px;
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover,
.daterangepicker .ranges li:hover {
    background-color: var(--light);
}

.daterangepicker .calendar-table td,
.daterangepicker .calendar-table th {
    min-width: 30px;
    width: 30px;
    height: 30px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.daterangepicker td.in-range {
    background-color: var(--soft-primary);
}

.daterangepicker td.active,
.daterangepicker td.active:hover,
.daterangepicker .ranges li.active {
    background-color: var(--primary);
}

.daterangepicker .drp-buttons .btn {
    font-weight: 500;
}

.daterangepicker select.monthselect,
.daterangepicker select.yearselect {
    border-color: var(--light);
    padding: 3px;
}

.daterangepicker .calendar-time {
    padding-right: 8px;
    display: -ms-flexbox;
    display: flex;
}

.daterangepicker select.ampmselect,
.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.secondselect {
    background-color: transparent;
    border-color: var(--light);
}

/*time picker*/

.bootstrap-timepicker-widget.timepicker-orient-top {
    margin-top: 6px;
}

.bootstrap-timepicker-widget.timepicker-orient-bottom {
    margin-top: -2px;
}

.bootstrap-timepicker-widget.timepicker-orient-top:before {
    border-bottom-color: #dfdfe6;
}

.bootstrap-timepicker-widget.timepicker-orient-bottom:before {
    border-top-color: #dfdfe6;
}

.bootstrap-timepicker-widget table td a:hover {
    background-color: var(--light);
    border-color: var(--light);
}

.bootstrap-timepicker-widget table td input {
    border: 0;
}

/*button element*/

.btn.focus,
.btn:focus:not(.btn-shadow) {
    box-shadow: none !important;
    outline: none;
}

.btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.875rem;
    color: #2a3242;
    font-weight: inherit;
}

.btn-shadow:hover {
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05), 0px 8px 8px rgba(0, 0, 0, 0.05),
        0px 16px 16px rgba(0, 0, 0, 0.05), 0px 32px 32px rgba(0, 0, 0, 0.05);
}

.btn-circle {
    border-radius: 50em;
}

.btn-icon {
    font-size: 1rem;
    line-height: 1.4;
    padding: 0.6rem;
    width: calc(2.5125rem + 2px);
    height: calc(2.5125rem + 2px);
}

.btn-xs {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
}

.btn-sm {
    padding: 0.416rem 1rem;
    font-size: 0.8125rem;
}

.btn-sm.btn-icon {
    padding: 0.416rem;
    width: calc(2.02rem + 2px);
    height: calc(2.02rem + 2px);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-lg.btn-icon {
    padding: 0.75rem;
    font-size: 1.2rem;
    width: calc(3rem + 2px);
    height: calc(3rem + 2px);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.disabled,
.btn-primary:disabled,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
    background-color: var(--hov-primary);
    border-color: var(--hov-primary);
}

.btn-primary,
.btn-soft-primary:hover,
.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.btn-secondary,
.btn-soft-secondary:hover,
.btn-outline-secondary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.btn-success,
.btn-soft-success:hover,
.btn-outline-success:hover {
    background-color: var(--success);
    border-color: var(--success);
    color: var(--white);
}

.btn-danger,
.btn-soft-danger:hover,
.btn-outline-danger:hover {
    background-color: var(--danger);
    border-color: var(--danger);
    color: var(--white);
}

.btn-warning,
.btn-soft-warning:hover,
.btn-outline-warning:hover {
    background-color: var(--warning);
    border-color: var(--warning);
}

.btn-secondary-base,
.btn-soft-secondary-base:hover,
.btn-outline-secondary-base:hover {
    background-color: var(--secondary-base);
    border-color: var(--secondary-base);
}

.btn-secondary-base:hover{
    background-color: var(--hov-secondary-base);
}

.btn-info,
.btn-soft-info:hover,
.btn-outline-info:hover {
    background-color: var(--info);
    border-color: var(--info);
    color: var(--white);
}

.btn-light,
.btn-outline-light:hover {
    background-color: var(--light);
    border-color: var(--light);
}

.btn-dark,
.btn-soft-dark:hover,
.btn-outline-dark:hover {
    background-color: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.btn-blue,
.btn-soft-blue:hover,
.btn-outline-blue:hover {
    background-color: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.btn-blue:hover{
    background-color: var(--hov-blue);
}

.btn-link {
    color: var(--primary);
}

.btn-link:hover {
    color: var(--hov-primary);
}

.btn-clean:hover {
    background-color: var(--light);
    border-color: var(--light);
}

.btn-topbar{
    width: 32px;
    height: 32px;
}

.btn-topbar > svg *{
    transition: .5s;
}

.btn-topbar:hover > svg *{
    fill: #717580;
}

/* .btn-topbar.btn-light:hover > svg *{
    fill: var(--white);
} */

.btn-install{
    width: 280px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 20px;
    background: linear-gradient(to right, #e90608 0%, #f59e39 100%);
    box-shadow: 0px 8px 16px rgba(255, 88, 0, 0.16);
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    color: #fff !important;
    transition: all 0.5s;
}

.btn-install:hover{
    box-shadow: 0px 8px 40px rgb(255 88 0 / 30%);
    letter-spacing: 0.3px;
}

/*soft buttons*/

.btn-soft-primary {
    background-color: var(--soft-primary);
    color: var(--primary);
}

.btn-soft-secondary {
    background-color: var(--soft-secondary);
    color: var(--dark);
}

.btn-soft-success {
    background-color: var(--soft-success);
    color: var(--success);
}

.btn-soft-danger {
    background-color: var(--soft-danger);
    color: var(--danger);
}

.btn-soft-warning {
    background-color: var(--soft-warning);
    color: var(--warning);
}

.btn-soft-secondary-base {
    background-color: var(--soft-secondary-base);
    color: var(--secondary-base);
}

.btn-soft-info {
    background-color: var(--soft-info);
    color: var(--info);
}

.btn-soft-dark {
    background-color: var(--soft-dark);
    color: var(--dark);
}

.btn-soft-blue {
    background-color: var(--soft-blue);
    color: var(--blue);
}

.btn-soft-white {
    background-color: var(--soft-white);
    color: var(--white);
}

.btn-soft-white:hover {
    background-color: var(--gray);
    color: var(--white);
}

/*outline buttons*/

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-secondary {
    border-color: var(--secondary);
    color: var(--dark);
}

.btn-outline-success {
    border-color: var(--success);
    color: var(--success);
}

.btn-outline-danger {
    border-color: var(--danger);
    color: var(--danger);
}

.btn-outline-warning {
    border-color: var(--warning);
    color: var(--warning);
}

.btn-outline-info {
    border-color: var(--info);
    color: var(--info);
}

.btn-outline-light {
    border-color: var(--light);
    color: var(--dark);
}

.btn-outline-dark {
    border-color: var(--dark);
    color: var(--dark);
}

.btn-outline-blue {
    border-color: var(--blue);
    color: var(--blue);
}

/*notify*/

.ub-notify {
    min-width: 350px;
    max-width: 350px;
    padding-right: 50px;
    border-radius: 0.25rem;
    overflow: hidden;
    border: 0;
    color: var(--white);
    box-shadow: 0 5px 20px 0 rgba(38, 45, 58, 0.2);
    -webkit-box-shadow: 0 5px 20px 0 rgba(38, 45, 58, 0.2);
    padding: 1.25rem 1.25rem;
    font-size: 0.875rem;
    z-index: 1060 !important;
}

[dir="rtl"] .ub-notify {
    text-align: right !important;
}

.ub-notify .close {
    top: 50% !important;
    height: 20px;
    width: 20px;
    margin-top: -10px;
    font-size: 20px;
    line-height: 20px;
    color: var(--white);
    opacity: 0.7;
    right: 15px !important;
    text-shadow: none;
}

[dir="rtl"] .ub-notify .close {
    right: auto !important;
    left: 15px !important;
}

.ub-notify .close:before {
    content: "";
    position: absolute;
    border-radius: 50%;
    background-color: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: -1;
    opacity: 0;
}

.ub-notify .close:hover {
    color: var(--dark);
    opacity: 1;
}

.ub-notify .close:hover:before {
    opacity: 1;
    background-color: #fff;
    width: 170%;
    height: 170%;
    top: -35%;
    left: -35%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.ub-notify .progress {
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    background-color: transparent;
}

.ub-notify .progress-bar {
    background-color: var(--white);
}

.ub-notify.alert-success {
    background-color: var(--success);
}

.ub-notify.alert-danger {
    background-color: var(--danger);
}

.ub-notify.alert-primary {
    background-color: var(--primary);
}

.ub-notify.alert-warning {
    background-color: var(--warning);
}

.ub-notify.alert-secondary-base {
    background-color: var(--secondary-base);
}

.ub-notify.alert-info {
    background-color: var(--info);
}

.ub-notify.alert-dark {
    background-color: var(--dark);
}

.ub-notify.alert-secondary {
    background-color: var(--secondary);
}

.ub-notify.alert-light,
.ub-notify.alert-light .close {
    background-color: var(--light);
    color: var(--dark);
}

.ub-notify.alert-light .progress-bar {
    background-color: var(--primary);
}

@media (max-width: 575px) {
    .ub-notify {
        width: calc(100% - 40px);
        min-width: auto;
    }
    .h-sm-auto {
        height: auto;
    }
}

/*pagination*/

.ub-pagination-center .pagination {
    -ms-flex-pack: center;
    justify-content: center;
}

.ub-pagination-right .pagination {
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.ub-pagination .pagination {
    margin-bottom: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pagination .page-link,
.page-item.disabled .page-link {
    min-width: 36px;
    min-height: 36px;
    line-height: 36px;
    text-align: center;
    padding: 0;
    border: 0;
    font-size: 0.875rem;
    border-radius: 50% !important;
    color: var(--dark);
}

.pagination .page-item {
    margin: 0 10px 0 0;
}

.pagination .active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

.pagination .page-link:hover {
    background-color: var(--primary);
    color: #fff;
}

/*modal*/

.modal.website-popup {
    display: block;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: hidden;
}

.modal-backdrop {
    background-color: #11151d;
}

.modal-content {
    border: 1px solid rgba(20, 20, 35, 0.2);
}

.modal-content .modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    padding: 12px 25px;
    border-bottom: 1px solid #ebedf2;
    min-height: 60px;
    background-color: transparent;
}

.modal-header .close {
    font-size: 0;
}

.modal-header .close:before {
    font-family: "Line Awesome Free";
    font-weight: 900;
    content: "\f00d";
    font-size: 20px;
}

.modal-content .modal-body {
    padding: 20px 25px;
    overflow-y: auto;
    max-height: 70vh;
}

@media (min-width: 768px) {
    .modal-content .modal-body {
        max-height: 80vh;
    }
}

.modal-content .modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: relative;
    padding: 10px 25px;
    border-top: 1px solid #ebedf2;
    min-height: 60px;
    background-color: transparent;
}

.modal.fade .modal-dialog.modal-dialog-zoom {
    -webkit-transform: translate(0, 0) scale(0.8);
    transform: translate(0, 0) scale(0.8);
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.modal.show .modal-dialog.modal-dialog-zoom {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
}

.modal.modal-static .modal-dialog.modal-dialog-zoom {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.modal.fade .modal-dialog-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    margin: 0;
    width: 400px;
    max-width: 80vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    background-color: #fff;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-transform: translate(50px, 0);
    transform: translate(50px, 0);
}

.modal.show .modal-dialog-right {
    -webkit-transform: translate(0px, 0);
    transform: translate(0px, 0);
}

.modal-dialog-right .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
}

.modal-dialog-right .modal-body {
    max-height: 86vh;
}

/*badges*/

.badge {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 0.65rem;
    font-weight: 500;
    line-height: unset;
}

.badge-circle {
    border-radius: 50%;
}

.badge-sm {
    height: 14px;
    width: 14px;
    font-size: 0.55rem;
}

.badge-md-sm{
    height: 18px;
    width: 18px;
    font-size: 0.55rem;
}

.badge-md {
    height: 24px;
    width: 24px;
    font-size: 0.75rem;
}

.badge-lg {
    height: 28px;
    width: 28px;
    font-size: 0.85rem;
}

.badge-sm2  {
    height: 60px;
    width: 28px;
    font-size: 0.85rem;
}

.badge.badge-dot {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 8px;
    width: 8px;
}

.badge-dot.badge-md {
    height: 10px;
    width: 10px;
}

.badge-dot.badge-lg {
    height: 12px;
    width: 12px;
}

.badge-inline {
    width: auto;
}

.badge-status {
    position: absolute;
    top: calc(15% - 4px);
    right: calc(15% - 4px);
    font-size: 1px;
}

.badge-status:before {
    position: absolute;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border: 3px solid #fff;
    top: -3px;
    left: -3px;
    content: "";
    border-radius: 50%;
}

.badge-md.badge-status {
    top: calc(15% - 5px);
    right: calc(15% - 5px);
}

.badge-lg.badge-status {
    top: calc(15% - 6px);
    right: calc(15% - 6px);
}

.badge-primary {
    background-color: var(--primary);
}

.badge-secondary {
    background-color: var(--secondary);
}

.badge-success {
    background-color: var(--success);
}

.badge-danger {
    background-color: var(--danger);
}

.badge-warning {
    background-color: var(--warning);
}

.badge-secondary-base {
    background-color: var(--secondary-base);
}

.badge-info {
    background-color: var(--info);
}

.badge-light {
    background-color: var(--light);
}

.badge-dark {
    background-color: var(--dark);
}

.badge-blue {
    background-color: var(--blue);
}

.badge-gray {
    background-color: var(--gray);
    color: var(--white);
}

.badge-soft-primary {
    background-color: var(--soft-primary);
    color: var(--primary);
}

.badge-soft-secondary {
    background-color: var(--soft-secondary);
    color: var(--secondary);
}

.badge-soft-success {
    background-color: var(--soft-success);
    color: var(--success);
}

.badge-soft-danger {
    background-color: var(--soft-danger);
    color: var(--danger);
}

.badge-soft-warning {
    background-color: var(--soft-warning);
    color: var(--warning);
}

.badge-soft-secondary-base {
    background-color: var(--soft-secondary-base);
    color: var(--secondary-base);
}

.badge-soft-info {
    background-color: var(--soft-info);
    color: var(--info);
}

.badge-soft-light {
    background-color: var(--soft-light);
}

.badge-soft-dark {
    background-color: var(--soft-dark);
    color: var(--dark);
}

.badge-soft-blue {
    background-color: var(--soft-blue);
    color: var(--blue);
}

.list-group-item {
    border-color: #ebedf2;
}

.list-group-raw .list-group-item {
    border: 0;
}

/*range slider - no ui slider*/

.ub-range-slider .noUi-connect {
    background: var(--primary);
}

.ub-range-slider .noUi-target {
    border-color: var(--soft-secondary);
}

/*iti mobile number select*/

.iti {
    display: block;
    width: 100%;
}

.iti--allow-dropdown input {
    padding-left: 95px !important;
}

.iti--separate-dial-code .iti__selected-flag,
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background: #fff;
    margin-left: 2px;
    border-right: 1px solid #dfdfe6;
}

/*avatar*/

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 600;
    font-size: 1.7em;
    position: relative;
}

.avatar img {
    object-fit: cover;
    max-width: 100%;
    width: 100%;
    border-radius: 50%;
    height: 100%;
}

.avatar-xxs {
    width: 20px;
    height: 20px;
    font-size: 0.7em;
}

.avatar-xs {
    width: 32px;
    height: 32px;
    font-size: 0.8em;
}

.avatar-sm {
    width: 48px;
    height: 48px;
    font-size: 1.1em;
}

.avatar-md {
    width: 64px;
    height: 64px;
    font-size: 1.4em;
}

.avatar-lg {
    width: 100px;
    height: 100px;
    font-size: 2em;
}

.avatar-xl {
    width: 120px;
    height: 120px;
    font-size: 2.3em;
}

.avatar-xxl {
    width: 150px;
    height: 150px;
    font-size: 2.6em;
}

.avatar-rounded,
.avatar-rounded img {
    border-radius: 0.3em;
}

.avatar-square,
.avatar-square img {
    border-radius: 0;
}

/*rating*/

.rating i {
    color: #c3c3c5;
    font-size: 1rem;
    letter-spacing: -1px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.rating i.hover,
.rating i.active,
.text-rating {
    color: #ffa707;
}

.bg-rating {
    background-color: #ffa707;
}

.rating i.half {
    position: relative;
}

.rating-space i {
    margin-left: 6px;
}

.rating i.half:after {
    position: absolute;
    content: "\f089";
    top: 0;
    left: 0;
    font-size: inherit;
    color: #ffa707;
    z-index: 1;
}

[dir="rtl"] .rating i.half {
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.rating-sm i {
    font-size: 0.8125rem;
}

.rating-lg i {
    font-size: 1.125rem;
}

.rating-input label {
    cursor: pointer;
}

.rating-input input {
    display: none;
}

.rating-mr-1 i {
    margin-right: 0.5rem;
}

/*social icon colored*/

ul.social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50em;
    line-height: 43px;
    text-align: center;
    font-size: 18px;
    background-color: #d5d5df;
}

ul.social-md a {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50em;
    line-height: 22px;
    text-align: center;
    font-size: 13px;
    background-color: #d5d5df;
}

ul.social a:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

ul.social i {
    color: #171727;
    font-size: 24px;
    font-weight: 700;
}

ul.social a:hover i{
    color: #fff;
}

ul.social.colored i {
    color: #fff;
}

ul.social [class*="facebook"]:hover,
ul.social.colored [class*="facebook"] {
    background-color: #3b5998;
}

ul.social [class*="twitter"]:hover,
ul.social.colored [class*="twitter"] {
    background-color: #1da1f2;
}

ul.social [class*="google"]:hover,
ul.social.colored [class*="google"] {
    background-color: #e62833;
}

ul.social.colored [class*="apple"] {
    background-color: #141414;
}

ul.social [class*="youtube"]:hover,
ul.social.colored [class*="youtube"] {
    background-color: #ff0000;
}

ul.social [class*="instagram"]:hover,
ul.social.colored [class*="instagram"] {
    background-color: #bd32a2;
}

ul.social [class*="tripadvisor"]:hover,
ul.social.colored [class*="tripadvisor"] {
    background-color: #32da9d;
}

ul.social [class*="linkedin"]:hover,
ul.social.colored [class*="linkedin"] {
    background-color: #0070ac;
}

ul.colored-light [class*="facebook"] {
    background-color: #c2d9fd;
}

ul.colored-light [class*="twitter"] {
    background-color: #ace5f3;
}

ul.colored-light [class*="google"] {
    background-color: #ffcbcc;
}

ul.colored-light [class*="youtube"] {
    background-color: #ffcbcc;
}

ul.colored-light [class*="instagram"] {
    background-color: #f7e2f3;
}

ul.colored-light [class*="facebook"]:hover {
    background-color: #3b5998;
}

ul.colored-light [class*="twitter"]:hover {
    background-color: #1da1f2;
}

ul.colored-light [class*="google"]:hover {
    background-color: #ff0000;
}

ul.colored-light [class*="youtube"]:hover {
    background-color: #ff0000;
}

ul.colored-light [class*="instagram"]:hover {
    background-color: #bd32a2;
}

ul.colored-light [class*="facebook"] i {
    color: #3b5998;
}

ul.colored-light [class*="twitter"] i {
    color: #1da1f2;
}

ul.colored-light [class*="google"] i {
    color: #ff0000;
}

ul.colored-light [class*="youtube"] i {
    color: #ff0000;
}

ul.colored-light [class*="instagram"] i {
    color: #bd32a2;
}

ul.colored-light a:hover i{
    color: #ffffff;
}

/*apps icon*/

ul.apps a {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50em;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #b5b5bf;
}

ul.apps a:hover > svg * {
    fill: #171727 !important;
}

ul.apps a:hover {
    background-color: #b5b5bf;
}

ul.apps i {
    color: #b5b5bf;
    font-size: 23px;
}

ul.apps a:hover i{
    color: #171727;
}

.ub-cookie-alert {
    /* position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 300px;
    z-index: 1070; */
    display: none;
}

.ub-cookie-alert.show {
    display: block;
}

/*ub-custom-alert*/

.ub-custom-alert {
    position: fixed;
    max-width: 300px;
    z-index: 1070;
    /* display: none; */
}

.ub-custom-alert.bottom-left {
    bottom: 20px;
    left: 20px;
}

.ub-custom-alert.bottom-right {
    bottom: 20px;
    right: 20px;
}

.ub-custom-alert.top-left {
    top: 20px;
    left: 20px;
}

.ub-custom-alert.top-right {
    top: 20px;
    right: 20px;
}

/*messnger icon mobile*/

.fb_dialog_mobile iframe {
    bottom: 70px !important;
}

/*front pages*/

/*user panel*/

.ub-user-sidenav-wrap {
    -ms-flex: 0 0 315px;
    flex: 0 0 315px;
    max-width: 315px;
    /* -webkit-box-shadow: 0 0 13px 0 rgba(82, 63, 105, 0.05); */
    /* box-shadow: 0 0 13px 0 rgba(82, 63, 105, 0.05); */
    background: #fff;
    border-radius: 4px;
    border: 1px solid #ebedf2;
}

.ub-user-panel {
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-left: 30px;
}

[dir="rtl"] .ub-user-panel {
    padding-right: 30px;
    padding-left: 0;
}

.ub-user-sidenav .ub-side-nav-list .ub-side-nav-link {
    color: #292933;
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 25px;
    padding: 12px 20px 12px 20px;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
}

.ub-user-sidenav .ub-side-nav-list .level-2 .ub-side-nav-link {
    padding: 10px 25px 10px 54px;
}

.ub-user-sidenav .ub-side-nav-list .ub-side-nav-icon {
    width: 28px;
    font-size: 16px;
}

.ub-user-sidenav .ub-side-nav-link.level-2-active,
.ub-user-sidenav .ub-side-nav-link.level-3-active {
    background-color: transparent;
    color: var(--dark);
}

.ub-user-sidenav .level-2-active .ub-side-nav-icon,
.ub-user-sidenav .level-3-active .ub-side-nav-icon {
    color: var(--dark);
}

.ub-user-sidenav .ub-side-nav-link.active,
.ub-user-sidenav .ub-side-nav-link:hover {
    background-color: var(--soft-secondary-base);
}

.ub-user-sidenav .level-2 .ub-side-nav-link:hover:after,
.ub-user-sidenav .level-2 .ub-side-nav-link.active:after {
    background: var(--dark);
}

.ub-user-sidenav .active .ub-side-nav-icon {
    color: var(--dark);
}

.ub-user-sidenav .ub-side-nav-link > svg *{
    transition: 0.3s;
}

.ub-user-sidenav .ub-side-nav-link.active > svg *,
.ub-user-sidenav .ub-side-nav-link:hover > svg *,
.ub-user-sidenav .level-2-active > svg *,
.ub-user-sidenav .level-3-active > svg *{
    fill: var(--dark);
}

@media (max-width: 1199px) {
    .ub-user-sidenav-wrap {
        display: none;
        height: 100vh;
    }
    .ub-user-panel {
        padding-left: 0px;
    }
    .ub-user-sidenav {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }
    [dir="rtl"] .ub-user-panel {
        padding-right: 0px;
    }
}

.ub-mobile-side-nav .ub-user-sidenav-wrap {
    display: block;
    max-width: initial;
    border: 0;
}

.sidebar-cart .cart-toggler {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: var(--primary);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 10px;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.sidebar-cart .cart-toggler .price {
    background: #fff;
    color: var(--primary);
    border-radius: 3px;
    margin-top: 10px;
    font-weight: 500;
    padding: 5px;
}

.cart-item:not(:last-of-type) {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light);
}

@media (max-width: 991px) {
    .front-header-search {
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        left: 0;
        opacity: 0;
        transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
    }
    .front-header-search.active {
        transform: translateY(0%);
        -webkit-transform: translateY(0%);
        opacity: 1;
    }
}

/*slider mobile auto height*/

@media (max-width: 767.98px) {
    .mobile-img-auto-height img {
        height: auto;
    }
}

/*copyright*/

.ub-footer-copyright {
    border-top: 1px solid #283244;
}

[dir="rtl"] .la-angle-right {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

[dir="rtl"] .slick-arrow .la-angle-right {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
}

[dir="rtl"] .la-angle-left {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

[dir="rtl"] .slick-arrow .la-angle-left {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
}

/* collapse side bar*/

.collapse-sidebar-wrap .overlay {
    opacity: 0;
    visibility: hidden;
}

.collapse-sidebar-wrap .overlay {
    opacity: 0;
    visibility: hidden;
}

.sidebar-all {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.sidebar-all .collapse-sidebar {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: fixed;
    width: 340px;
    max-width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    overflow-y: auto;
}

.sidebar-all.sidebar-right .collapse-sidebar {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    left: auto;
    right: 0;
}

.sidebar-all.sidebar-auto .collapse-sidebar {
    width: auto;
    max-width: 100%;
    height: auto;
    -webkit-transform: translate(-50%, -100px);
    transform: translate(-50%, -100px);
    left: 50%;
    top: 0;
}

.sidebar-all.sidebar-full .collapse-sidebar {
    width: 100%;
    max-width: 100%;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    left: auto;
    right: 0;
}

.sidebar-all,
.sidebar-all .collapse-sidebar,
.sidebar-all .overlay {
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 575.98px) {
    .sidebar-sm {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: fixed;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1;
    }
    .sidebar-sm .collapse-sidebar {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: fixed;
        width: 340px;
        max-width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 2;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        overflow-y: auto;
    }
    .sidebar-sm.sidebar-right .collapse-sidebar {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        left: auto;
        right: 0;
    }
    .sidebar-sm.sidebar-auto .collapse-sidebar {
        width: auto;
        max-width: 100%;
        height: auto;
        -webkit-transform: translate(-50%, -100px);
        transform: translate(-50%, -100px);
        left: 50%;
        top: 0;
    }
    .sidebar-sm.sidebar-full .collapse-sidebar {
        width: 100%;
        max-width: 100%;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        left: auto;
        right: 0;
    }
    .sidebar-sm,
    .sidebar-sm .collapse-sidebar,
    .sidebar-sm .overlay {
        opacity: 0;
        visibility: hidden;
    }
    .ub-filter-sidebar .collapse-sidebar {
        overflow-y: auto;
    }
}

@media (max-width: 767.98px) {
    .sidebar-md {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: fixed;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1;
    }
    .sidebar-md .collapse-sidebar {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: fixed;
        width: 400px;
        max-width: 320px;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 2;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        overflow-y: auto;
    }
    .sidebar-md.sidebar-right .collapse-sidebar {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        left: auto;
        right: 0;
    }
    .sidebar-md.sidebar-auto .collapse-sidebar {
        width: auto;
        max-width: 100%;
        height: auto;
        -webkit-transform: translate(-50%, -100px);
        transform: translate(-50%, -100px);
        left: 50%;
        top: 0;
    }
    .sidebar-md.sidebar-full .collapse-sidebar {
        width: 100%;
        max-width: 100%;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        left: auto;
        right: 0;
    }
    .sidebar-md,
    .sidebar-md .collapse-sidebar,
    .sidebar-md .overlay {
        opacity: 0;
        visibility: hidden;
    }
}

@media (max-width: 991.98px) {
    .sidebar-lg {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: fixed;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1;
    }
    .sidebar-lg .collapse-sidebar {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: fixed;
        width: 400px;
        max-width: 320px;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 2;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        overflow-y: auto;
    }
    .sidebar-lg.sidebar-right .collapse-sidebar {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        left: auto;
        right: 0;
    }
    .sidebar-lg.sidebar-auto .collapse-sidebar {
        width: auto;
        max-width: 100%;
        height: auto;
        -webkit-transform: translate(-50%, -100px);
        transform: translate(-50%, -100px);
        left: 50%;
        top: 0;
    }
    .sidebar-lg.sidebar-full .collapse-sidebar {
        width: 100%;
        max-width: 100%;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        left: auto;
        right: 0;
    }
    .sidebar-lg,
    .sidebar-lg .collapse-sidebar,
    .sidebar-lg .overlay {
        opacity: 0;
        visibility: hidden;
    }
}

@media (max-width: 1199.98px) {
    .sidebar-xl {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: fixed;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1;
    }
    .sidebar-xl .collapse-sidebar {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: fixed;
        width: 400px;
        max-width: 320px;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 2;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        /* overflow-y: auto; */
    }
    .sidebar-xl.sidebar-right .collapse-sidebar {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        left: auto;
        right: 0;
    }
    .sidebar-xl.sidebar-auto .collapse-sidebar {
        width: auto;
        max-width: 100%;
        height: auto;
        -webkit-transform: translate(-50%, -100px);
        transform: translate(-50%, -100px);
        left: 50%;
        top: 0;
    }
    .sidebar-xl.sidebar-full .collapse-sidebar {
        width: 100%;
        max-width: 100%;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        left: auto;
        right: 0;
    }
    .sidebar-xl,
    .sidebar-xl .collapse-sidebar,
    .sidebar-xl .overlay {
        opacity: 0;
        visibility: hidden;
    }
}

.collapse-sidebar-wrap.active,
.collapse-sidebar-wrap.active .collapse-sidebar,
.collapse-sidebar-wrap.active .overlay {
    opacity: 1;
    visibility: visible;
}

.collapse-sidebar-wrap.active .collapse-sidebar {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    background-color: #fff;
}

.collapse-sidebar-wrap.active .sidebar-auto {
    -webkit-transform: translate(-50%, 0px);
    transform: translate(-50%, 0px);
}

.dropdown-toggle.filter-section[data-toggle].collapsed:after {
    content: "\f107";
    font-family: "Line Awesome Free";
    color: #b5b5bf;
    font-size: 16px;
}

.dropdown-toggle.filter-section[data-toggle]:not(.collapsed):after {
    font-family: "Line Awesome Free";
    content: "\f106";
    color: #b5b5bf;
    font-size: 16px;
}

.iqty-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 0.25rem;
}

.iqty-btns.vertical {
    -ms-flex-direction: column;
    flex-direction: column;
}

.iqty-btns .form-control {
    border: 0;
    background: transparent;
}

.iqty-btns .form-control,
.iqty-btns .btn {
    width: 30px;
    height: 30px;
    padding: 0;
    text-align: center;
    line-height: 30px;
}

.badge-custom {
    display: inline-block;
    padding: 3px;
    font-size: 11px;
    border-radius: 0 50em 50em 0;
    color: #ff0000;
    font-weight: 600;
    line-height: 26px;
    position: absolute;
    background: #fff;
    z-index: 1;
    top: 20px;
    box-shadow: 2px 1px 6px 2px rgba(0, 0, 0, 0.1),
        0 4px 4px 0px rgba(0, 0, 0, 0.06) !important;
}

.badge-custom .box {
    height: 26px;
    width: 26px;
    background: #ff0000;
    color: #fff;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
}

[dir="rtl"] .badge-custom {
    border-radius: 50em 0 0 50em;
}

.noUi-horizontal {
    height: 10px;
}

.noUi-handle {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50%;
    background: var(--secondary-base);
    cursor: pointer;
    box-shadow: none !important;
}

.noUi-handle:after, .noUi-handle:before {
    content: "";
    display: block;
    position: absolute;
    height: 0;
    width: 0;
    background: #E8E7E6;
    left: 14px;
    top: 6px;
}

/* ---- Nav User Info ---- */

.nav-user-info{
    cursor: pointer;
}

.nav-user-info .nav-user-img{
    transition: all 0.5s;
}

.nav-user-info:hover .nav-user-img{
    border-color: var(--primary) !important;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.16);
}

.nav-user-info .nav-user-img > svg *{
    transition: all 0.5s;
}

.nav-user-info:hover .nav-user-img > svg *{
    fill: var(--primary);
}

/* search input box */

.search-input-box{
    position: relative;
    width: 100%;
  }

.search-input-box > input{
    border-radius: 21px;
    overflow:hidden;
    height: 40px;
}

.search-input-box > svg {
    position: absolute;
    right: 20px;
    top: 10px;
}

[dir="rtl"] .search-input-box > svg {
    right: auto;
    left: 20px;
}

.search-input-box .form-control:focus {
    border-width: 2px !important;
    border-color: var(--primary) !important;
}

/* animate underline */

.animate-underline-gradient,
.animate-underline-primary,
.animate-underline-blue,
.animate-underline-white{
    position: relative;
}

.animate-underline-gradient::after,
.animate-underline-primary::after,
.animate-underline-blue::after,
.animate-underline-white:after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    border-radius: 2px;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .5s cubic-bezier(0,0,.2,1),-webkit-transform .5s cubic-bezier(0,0,.2,1);
}

.animate-underline-gradient::after{
    bottom: -6px;
    background: linear-gradient(144deg, rgba(167,46,184,1) 20%, rgba(247,81,81,1) 82%);
}

.animate-underline-white:after{
    bottom: -5px;
    background: #fff;
}

.animate-underline-primary:after{
    bottom: -3px;
    background: var(--primary);
}

.animate-underline-blue:after{
    bottom: -3px;
    background: var(--blue);
    height: 2px;
}

.animate-underline-gradient:hover::after,
.animate-underline-primary:hover::after,
.animate-underline-blue:hover::after,
.animate-underline-white:hover::after{
    transform: scaleX(1);
    transform-origin: left;
}

/* animate outline */

.hov-animate-outline{
    position: relative;;
}

.hov-animate-outline::before,
.hov-animate-outline::after{
    box-sizing: inherit;
    content: '';
    position: absolute;
    z-index: -1 !important;
    width: 0;
    height: 0;
    transition: color 0.3s;
    border: 2px solid transparent;
}

.hov-animate-outline::before {
    top: 0;
    left: 0;
}

[dir="rtl"] .hov-animate-outline::before {
    left: auto;
    right: 0;
}

.hov-animate-outline::after {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.hov-animate-outline:hover::before,
.hov-animate-outline:hover::after {
    width: 100%;
    height: 100%;
}

.hov-animate-outline:hover::before {
    border-top-color: var(--primary);
    border-right-color: var(--primary);
    transition:
      width 0.3s ease-out,
      height 0.3s ease-out 0.3s;
}

[dir="rtl"] .hov-animate-outline:hover::before {
    border-left-color: var(--primary);
    border-right-color: transparent;
}

.hov-animate-outline:hover::after {
    border-bottom-color: var(--primary);
    border-left-color: var(--primary);
    transition:
      height 0.3s ease-out,
      width 0.3s ease-out 0.3s;
}

[dir="rtl"] .hov-animate-outline:hover::after {
    border-right-color: var(--primary);
    border-left-color: transparent;
}

/* Visit Button */

.btn-visit {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

.btn-visit {
    width: 12rem;
    height: auto;
}

.btn-visit .circle {
    transition: all 0.8s cubic-bezier(0.65,0,.076,1);
    position: relative;
    display: block;
    margin: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--soft-secondary-base);
    border-radius: 1.625rem;
}

.btn-visit .circle .icon {
    transition: all 0.5s cubic-bezier(0.65,0,.076,1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: var(--primary);
}

.btn-visit .circle .icon.arrow {
    transition: all 0.5s cubic-bezier(0.65,0,.076,1);
    left: 0.4rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

[dir="rtl"] .btn-visit .circle .icon.arrow {
    left: 0.5rem;
}

.btn-visit .circle .icon.arrow::before {
    position: absolute;
    content: '';
    top: -0.25rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid var(--primary);
    border-right: 0.125rem solid var(--primary);
    transform: rotate(45deg);
}

[dir="rtl"] .btn-visit .circle .icon.arrow::before {
    transform: rotate(225deg);
}

.btn-visit .button-text {
    transition: all 0.5s cubic-bezier(0.65,0,.076,1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.65rem 0;
    margin: 0 0 0 1.85rem;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}

[dir="rtl"] .btn-visit .button-text {
    margin: 0 0.5rem 0 0;
}

.btn-visit:hover .circle {
    width: 100%;
}

.btn-visit:hover .circle .icon.arrow {
    background: var(--primary);
    transform: translate(1rem, 0);
}

[dir="rtl"] .btn-visit:hover .circle .icon.arrow {
    left: 0;
}

[dir="rtl"] .btn-visit:hover .circle .icon.arrow::before {
    right: auto;
}

.btn-visit:hover .button-text {
    color: var(--primary);
}

/* Slide Button */

.btn-slide{
    background: none;
    border: 2px solid;
    font: inherit;
    line-height: 1;
    padding: 1em 2em;
    color: var(--dark);
    border-color: var(--dark);
    transition: 0.5s;
}

.btn-slide:hover,
.btn-slide:focus{
    color: #fff  !important;
    box-shadow: inset 25em 0 0 0 var(--dark);
}

.btn-slide-primary{
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-slide-primary:hover,
.btn-slide-primary:focus{
    box-shadow: inset 25em 0 0 0 var(--primary) !important;
}

.btn-slide-secondary{
    color: var(--secondary) !important;
    border-color: var(--secondary) !important;
}

.btn-slide-secondary:hover,
.btn-slide-secondary:focus{
    box-shadow: inset 25em 0 0 0 var(--secondary) !important;
}

.btn-slide-warning{
    color: var(--warning) !important;
    border-color: var(--warning) !important;
}

.btn-slide-warning:hover,
.btn-slide-warning:focus{
    box-shadow: inset 25em 0 0 0 var(--warning) !important;
    color: var(--white) !important;
}

.btn-slide-secondary-base{
    color: var(--secondary-base) !important;
    border-color: var(--secondary-base) !important;
}

.btn-slide-secondary-base:hover,
.btn-slide-secondary-base:focus{
    box-shadow: inset 25em 0 0 0 var(--secondary-base) !important;
    color: var(--white) !important;
}

/* Top menu sidebar for mobile */

.ub-top-menu-sidebar{
    opacity: 0;
    visibility: hidden;
}

.ub-top-menu-sidebar.active{
    opacity: 1;
    visibility: visible;
}

.ub-top-menu-sidebar .collapse-sidebar{
    overflow-y: auto;
    transform: translateX(-100%);
    left: 0;
    right: auto;
    transition: all 0.5s;
}

.ub-top-menu-sidebar.active .collapse-sidebar{
    transform: translate(0%, 0%);
}

.ub-top-menu-sidebar ul li{
    list-style-type: none;
}

/* Accordion */

.ub-accordion-wrap{
    margin-bottom: 2px;
}

.ub-accordion-heading .ub-accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px 0;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.ub-accordion-heading.active, .ub-accordion-heading:hover {
    background-color: #ccc;
}

.ub-accordion-heading .ub-accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-size: 18px;
}

.ub-accordion-heading.active .ub-accordion:after {
    content: "\2212";
}

.ub-accordion-panel {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion .card-header i{
    transition: all 0.4s
}

.accordion .card-header[aria-expanded="true"] i{
    transform: rotate(180deg);
}

/* Custom */

/* .home-slider {
    width: 100% !important;
    max-width: 100% !important;
} */

/* .home-slider .slick-slider .slick-list .slick-slide {
    line-height: 0;
} */

.hov-svg-danger > svg *,
.hov-svg-white > svg *,
.hov-svg-dark > svg *{
    transition: 0.5s;
}

.hov-svg-white:hover  > svg *{
    fill: var(--white);
}

.hov-svg-dark:hover  > svg *{
    fill: var(--dark);
}

.hov-svg-danger:hover  > svg *{
    fill: var(--danger);
}

.rounded-content{
    border-radius: 50%;
}

.rounded-1{
    border-radius: 0.25rem !important;
}

.rounded-2{
    border-radius: 0.5rem !important;
}

.rounded-3{
    border-radius: 1rem !important;
}

.rounded-4{
    border-radius: 1.5rem !important;
}

.flash-deal-item:hover .flash-deal-price{
    padding-top: 0 !important;
}

.hov-pl-1:hover{
    padding-left: 0.25rem !important;
}

.hov-pl-2:hover{
    padding-left: 0.5rem !important;
}

.hov-pl-3:hover{
    padding-left: 1rem !important;
}

.hov-column-gap-1{
    transition: all 0.5s;
    column-gap: 0;
}

.hov-column-gap-1:hover{
    column-gap: 0.25rem !important;
}

.hov-icon-opacity-100:hover i{
    opacity: 1 !important;
}

.link-disable{
    pointer-events: none;
    opacity: 0.3;
}

.card-columns{
    column-gap: 2rem;
}

.header_menu_links.active{
    background-color: rgb(0 0 0 / 10%) !important;
}

#spotlight {
    position: fixed;
    top: -1px;
    bottom: -1px;
    width: 100%;
    z-index: 99999;
    color: #fff;
    background-color: rgb(0 0 0 / 80%);
}

.min-w-150px{
    min-width: 150px;
}

.ls-1,
.hov-ls-1:hover{
    letter-spacing: 1px;
}

.less{
    max-height: 140px !important;
    overflow: hidden;
}

.svg-active svg *{
    fill: var(--primary) !important;
}

/* .ub-carousel.product-gallery-thumb .slick-track {
    transform: translate3d(0, 0, 0) !important;
} */

[dir="rtl"] .mr-4 {
    margin-right: inherit !important;
}

#size-chart-show-modal .nav-tabs .nav-link{
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    border-radius: 0 !important;
}

#size-chart-show-modal .nav-tabs .nav-link.active{
    background: #000 !important;
    color: #fff !important;
}

/* image overlay */

.img-overlay{
    position: relative;
}

.img-overlay::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    opacity: 0.3;
    z-index: 1;
    transition: .4s;
}

.img-overlay:hover:after{
    opacity: 0;
}

.ub-megabox .img-overlay{
    border: 4px solid transparent;
}

.image-show-overlay{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
}

.image-show-overlay.show{
    z-index: 1046;
    visibility: visible;
    opacity: 1;
}

.image-show-overlay .btn{
    height: 48px;
    width: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transition: 0.5s;
}

.image-show-overlay .btn:hover{
    background-color: rgba(255, 255, 255, 0.5);
}

.image-show-overlay .overlay-img{
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 50px;
}

/* page side nav */

.page-side-nav{
    width: 268px;
    min-width: 268px;
    min-height: calc(100vh - 180px);
    overflow-y: auto;
    background: #fff;
}

.page-side-nav .nav .nav-item .nav-link{
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    text-align: left;
    color: #9da3ae;
    border: 0;
    padding: 0.45rem 0.5rem;
    margin-bottom: 2px;
    border-radius: 0;
    height: 40px;
    border-radius: 4px;
}

.page-side-nav .nav .nav-item .nav-link:hover,
.page-side-nav .nav .nav-item .nav-link.active {
    background: var(--soft-blue);
    color: var(--blue);
}

.page-side-nav .nav .nav-item .nav-link .badge{
    width: fit-content;
}

@media (max-width: 575px){
    .page-side-nav {
        width: 100%;
        min-width: 100%;
        min-height: 100%;
        overflow-y: hidden;
        background: #fff;
        margin-bottom: 2rem;
    }
    .page-side-nav .nav .nav-item .nav-link{
        margin-bottom: 5px;
        margin-right: 5px;
        background: #f5f5f5;
    }
}

/* language bar */

.language-bar.nav .nav-item .nav-link{
    background-color: var(--white) !important;
    border: 1px solid #f7f7f7 !important;
    position: relative;
}

.language-bar.nav .nav-item .nav-link:after{
    transition: all 0.5s;
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
}

.language-bar.nav .nav-item .nav-link.active:after,
.language-bar.nav .nav-item .nav-link:hover:after{

    background-color: var(--blue);
}

@media (min-width: 576px){
    .ub-mobile-bottom-nav{
        width: 463px !important;
        height: 72px;
        border-radius: 36px;
    }
    .card-columns {
        column-count: 2 !important;
    }

    .image-show-overlay .overlay-img{
        padding-left: 20%;
        padding-right: 20%;
        padding-bottom: 50px;
    }
    .page-content {
        margin-left: -25px;
        margin-right: -25px;
    }
}

@media (min-width: 768px){
    .fs-md-12 {
        font-size: 12px !important;
    }
    .fs-md-13 {
        font-size: 13px !important;
    }
    .fs-md-14 {
        font-size: 14px !important;
    }
    .fs-md-20 {
        font-size: 20px !important;
    }
    .fs-md-24 {
        font-size: 24px !important;
    }
    .gutters-md-16 {
        margin-right: -16px;
        margin-left: -16px;
    }
    .gutters-md-16 > .col,
    .gutters-md-16 > [class*="col-"] {
        padding-right: 16px;
        padding-left: 16px;
    }

    .image-show-overlay .overlay-img{
        padding-left: 20%;
        padding-right: 20%;
        padding-bottom: 50px;
    }
    .page-content {
        margin-left: -25px;
        margin-right: -25px;
    }
}

@media (min-width: 992px){
    .card-columns {
        column-count: 3 !important;
    }
    .arrow-lg-none .slick-arrow {
        display: none !important;
    }
    .sticky-top-lg{
        position: -webkit-sticky;
        position: sticky;
        top: 150px;
    }
}

/* @media (min-width: 1200px){
    .home-slider {
        max-width: calc(100% - 270px) !important;
    }
    .home-slider.slider-full {
        max-width: 100% !important;
    }
    .h-xl-100{
        height: 100% !important;
    }
} */

/* Main category info*/

.main-category-info-icon{
    cursor: pointer;
}

.main-category-info{
    width: max-content;
    right: 0;
    bottom: 20px;
    border-radius: 4px;
}

.main-category-info-icon:hover .main-category-info{
    display: block !important;
}

/* treeview*/

.hummingbird-treeview,
.hummingbird-treeview *
{
    list-style: none;
    font-size: 13px;
    line-height: 12px;
}

.hummingbird-treeview label {
    font-weight: normal;
    width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 20px;
}

[dir="rtl"] .hummingbird-treeview label {
    padding-right: 20px;
    padding-left: auto;
}

.hummingbird-treeview input[type=checkbox] {
    width: 13px;
    height: 12px;
    padding: 0px;
    margin: 0px;
}

.hummingbird-treeview input[type=radio] {
    float: right;
    margin-right: 10px;
}

[dir="rtl"] .hummingbird-treeview input[type=radio] {
    float: left;
    margin-left: 10px;
    margin-right: auto;
}

.hummingbird-treeview ul:not(.hummingbird-base) {
    display: none;
}

.hummingbird-treeview .la {
    font-style: normal;
    cursor: pointer;
}

.hummingbird-treeview .las {
    font-style: normal;
    cursor: pointer;
    position: absolute;
    margin-top: 2px;
}

.hummingbird-base {
    white-space:nowrap;
    padding-inline-start: 0px !important;
}

.hummingbird-base ul {
    padding-inline-start: 15px !important;
}

.hummingbird-base li{
    margin-top: 5px;
    margin-bottom: 5px;
}

.hummingbird-base li[data-id]:not([data-id=""]) {
    position: relative;
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .hummingbird-treeview label {
        width: 180px;
    }
}

@media (max-width: 375px) {
    .hummingbird-treeview label {
        width: 200px;
    }
}

@media (max-width: 345px) {
    .hummingbird-treeview label {
        width: 180px;
    }
}

/* input[type="color"] */

input[type="color"]::-moz-color-swatch {
    border: none;
}

input[type="color"]::-webkit-color-swatch {
    border: none;
}

/* home category banner */

.home-category-banner{
    position: relative;
}

.home-category-banner::before,
.home-category-banner::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transition: all .7s;
    visibility: hidden;
    opacity: 0;
}

.home-category-banner::before{
    top: 0;
    left: 0;
    content: '';
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.home-category-banner::after {
    content: 'View All';
    border-radius: 24px;
    background: rgb(2 0 0 / 80%);
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 36px;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-category-banner:hover::before,
.home-category-banner:hover::after {
    visibility: visible;
    opacity: 1;
}

.home-category-banner .home-category-name{
    position: absolute;
    left: 0;
    right: 0;
    bottom: -40px;
    width: 100%;
    height: fit-content;
    z-index: 2;
    padding: 0 15px;
    transition: all .5s;
}

.home-category-banner .home-category-name span{
    /* border-radius: 8px;
    background: rgb(0 0 0 / 60%); */
    padding: 7px;
    display: block;
}

.home-category-banner:hover .home-category-name{
    bottom: 15px;
}

/* .home-category-name i{
    transition: all 0.5s;
    opacity: 0;
}
.home-category-name:hover i{
    opacity: 1;
} */

/* password-toggle */

.password-toggle{
    display: block !important;
    position: absolute;
    right: 7px;
    left: auto;
    top: 50%;
    cursor: pointer;
    font-size: 20px;
    transform: translateY(-50%);
}

[dir="rtl"] .password-toggle{
    left: 7px;
    right: auto;
}

/* Demo nav */

.ub-demo-nav {
    background-color: #f7f7f7;
    width: 66px;
    min-height: 66px;
    height: auto;
    overflow: hidden;
    z-index: 1046;
    box-shadow: 0 -2px 20px 5px rgba(0,0,0,.15);
    position: fixed;
    border-radius: 8px;
    top: 50%;
    right: 5px;
    transform: translate(0%, -50%);
    transition: all 0.4s;
}

.ub-demo-nav-item{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 12px 6px;
    color: #808080;
    font-size: .75rem;
    font-weight: 600;
    transition: all 500ms;
}

.ub-demo-nav-item:hover{
    color: #808080;
}

.ub-demo-nav-links .ub-demo-nav-item:hover{
    color: #0858cf;
    background: #e2e2e2;
}

.ub-demo-nav-links .ub-demo-nav-item > svg *{
    transition: all 500ms;
}

.ub-demo-nav-links .ub-demo-nav-item:hover > svg *{
    fill: #0858cf;
}

.ub-demo-nav-toggler{
    z-index: 2;
    background: #f7f7f7;
    height: 72px;
}

.ub-demo-nav-toggler:hover{
    letter-spacing: 1px;
}

.ub-demo-nav-toggler .ub-demo-nav-btn  {
    transform: translateX(0px);
    transition: all 500ms;
}

.ub-demo-nav-toggler.show .ub-demo-nav-btn  {
    transform: translateX(7px);
}

.ub-demo-nav-toggler .ub-demo-nav-btn .line {
    padding: 0;
    width: 30px;
    background: #808080;
    height: 2px;
    margin: 5px 0;
    transition: all 500ms cubic-bezier(.9, 0, .33, 1);
}

.ub-demo-nav-toggler .ub-demo-nav-btn .line.line--1 {
    width: 30px;
    transform: rotate(0) translateY(0);
}

.ub-demo-nav-toggler .ub-demo-nav-btn .line.line--1.line-cross {
    width: 30px;
    transform: rotate(45deg) translateY(10px);
    background: rgba(0,0,0,0.6);
}

.ub-demo-nav-toggler .ub-demo-nav-btn .line.line--2 {
    width: 28px;
    transform: translateX(0);
}

.ub-demo-nav-toggler .ub-demo-nav-btn .line.line--2.line-fade-out {
    width: 28px;
    transform: translate(30px);
    opacity: 0;
}

.ub-demo-nav-toggler .ub-demo-nav-btn .line.line--3 {
    width: 20px;
    transform: rotate(0) translateY(0);
}

.ub-demo-nav-toggler .ub-demo-nav-btn .line.line--3.line-cross {
    width: 30px;
    transform: rotate(-45deg) translateY(-10px);
    background: rgba(0,0,0,0.6);
}

/* lds spinner */

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #dfdfe6;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
}

/* ub-refresh */

.ub-refresh{
    position: fixed;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    z-index: -1;
    top: 0;
    left: 0;
    justify-content: center;
    background: #ffffff96;
}

.ub-refresh.active{
    z-index: 5000;
}

.ub-refresh-content,
.ub-refresh-content div {
  box-sizing: border-box;
}

.ub-refresh-content {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.ub-refresh-content div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: currentColor;
  animation: ub-refresh-content 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.ub-refresh-content div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s;
}

.ub-refresh-content div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s;
}

.ub-refresh-content div:nth-child(3) {
  left: 56px;
  animation-delay: 0s;
}

@keyframes ub-refresh-content {
  0% {
    top: 8px;
    height: 64px;
  }
  50%, 100% {
    top: 24px;
    height: 32px;
  }
}

@media (max-width:500px){
    .default_save_btn{
        margin-top: 5px;
    }
}

.size-combination-chart {
    width: 100%;
    overflow-x: auto;
}

.disable-div {
    pointer-events: none;
    opacity: 0.5;
}

.size-combination-chart table thead th {
    min-width: 130px;
}

.resp-table {
    width: 100%;
    overflow-x: auto;
}

.resp-table table thead th {
    min-width: 120px;
}

.hide-alert-ic  .is-invalid {
    background-image: none !important;
}

.set-postion{
    position:absolute;
    right: 0;
}

.set-postion-mobile{
    position:absolute;
    left:-256px
}

@media(max-width: 490px){
    .upload-file-card-responsive{
        width: 100% !important;
    }
    .pos-discount-input{
        left:-115% !important;
        min-width:200px !important;
        padding: 2px !important;
    }
    .flash-time-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Ensure content starts from the top */
        padding: 10px;
        }
}

@media(max-width: 600px){
    .set-postion{
        position:absolute;
        right:0 !important;
    }
}

.pos-category-name{
    display: inline-block;
    width: 100%;
    height:20px;
    line-height:15px;
}

.pos-discount-input{
    padding: 4px !important;
}

.breakWorld{
  word-wrap: break-word;
}

.absolute-bottom-center {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

:root {
    --main: #000000;
    --white: #ffffff;
    --red_1: #db1215;
    --backdrop: rgba(0, 0, 0, 0.5);
    --yellow: #ffb321;
    --main-rgba-1: rgba(0, 0, 0, 0.16);
    --main-rgba-2: rgba(0, 0, 0, 0.15);
    --text: #545454;
    --text-2: #909090;
    --text-3: #868686;
    --line: #ebebeb;
    --line-2: #ececec;
    --bg-1: #fcfbf9;
    --bg-2: #f6f6f6;
    --bg-3: #fcffb2;
    --bg-4: #c9f4aa;
    --bg-5: #ff7b54;
    --bg-6: #8054ff;
    --bg-7: #f1f0ed;
    --bg-8: #f0edf1;
    --bg-9: #edeef1;
    --bg-10: #fcfbf9;
    --bg-11: #f2f2f2;
    --success: #31a56d;
    --bg-load: #d9d9d9;
    --bg-scrollbar-track: #f1f1f1;
    --bg-scrollbar-thumb: #c1c1c1;
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-tabs {
    margin-bottom: 25px;
    border: 0;
}

.nav-tabs .nav-link {
    background-color: #eeeeee;
    font-size: 15px;
    margin: 0 10px;
    color: #444;
    border-radius: 4px;
    padding: 15px 24px;
    transition: background-color 0.2s, color 0.2s;
    font-family: "Spartan", sans-serif;
    font-weight: 600;
    line-height: 1;
    border: 0;
}

.nav-tabs .nav-link:first-child {
    margin-left: 0 !important;
}

.nav-tabs .nav-link.active {
    color: #088178;
    background-color: #fde1bd;
}

.nav-tabs .nav-link:hover {
    color: #088178;
    background-color: #f0f0f0;
}

.fs-10 {
    font-size: 10px !important;
}

.fs-12 {
    font-size: 12px !important;
}

.text-14 {
    font-size: 14px !important;
}

.fs-14 {
    font-size: 14px !important;
    line-height: 22.4px !important;
}

.fs-15 {
    font-size: 15px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-28 {
    font-size: 28px !important;
}

.fs-25 {
    font-size: 25px !important;
}

.fs-22,
.text-22 {
    font-size: 22px !important;
}

.fw-4 {
    font-weight: 400 !important;
}

.fw-5 {
    font-weight: 500 !important;
}

.fw-6 {
    font-weight: 600 !important;
}

.fw-7 {
    font-weight: 700 !important;
}

.fw-8 {
    font-weight: 800 !important;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.gap-4 {
    gap: 4px !important;
}

.gap-5 {
    gap: 5px !important;
}

.gap-6 {
    gap: 6px !important;
}

.gap-8 {
    gap: 8px !important;
}

.gap-10 {
    gap: 10px !important;
}

.gap-12 {
    gap: 12px !important;
}

.gap-14 {
    gap: 14px !important;
}

.gap-15 {
    gap: 15px !important;
}

.gap-16 {
    gap: 16px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

.gap-40 {
    gap: 40px;
}

.pt_0 {
    padding-top: 0px !important;
}

.pb_0 {
    padding-bottom: 0px !important;
}

.pr_0 {
    padding-right: 0px !important;
}

.pt_50 {
    padding-top: 50px !important;
}

.py_15 {
    padding: 15px 0;
}

.py_20 {
    padding: 20px 0;
}

.pb_8 {
    padding-bottom: 8px;
}

.pb_15 {
    padding-bottom: 15px;
}

.pb_20 {
    padding-bottom: 20px;
}

.my_20 {
    margin: 20px 0px;
}

.my_40 {
    margin: 40px 0px;
}

.mt_5 {
    margin-top: 5px;
}

.mt_3 {
    margin-top: 3px;
}

.mt_4 {
    margin-top: 4px;
}

.mt_8 {
    margin-top: 8px;
}

.mt_20 {
    margin-top: 20px;
}

.mt_37 {
    margin-top: 37px;
}

.mt_140 {
    margin-top: 140px;
}

.mb_10 {
    margin-bottom: 10px;
}

.mb_12 {
    margin-bottom: 12px;
}

.mb_15 {
    margin-bottom: 15px;
}

.mb_18 {
    margin-bottom: 18px;
}

.mb_20 {
    margin-bottom: 20px;
}

.mb_24 {
    margin-bottom: 24px !important;
}

.mb_30 {
    margin-bottom: 30px;
}

.mb_40 {
    margin-bottom: 40px;
}

.mb_36 {
    margin-bottom: 36px;
}

.mb_60 {
    margin-bottom: 60px;
}

.mb_200 {
    margin-bottom: 200px;
}

.flat-spacing-1 {
    padding: 70px 0;
}

.flat-spacing-2 {
    padding: 45px 0 70px;
}

.flat-spacing-3 {
    padding: 50px 0;
}

.flat-spacing-4 {
    padding-top: 55px;
    padding-bottom: 100px;
}

.flat-spacing-5 {
    padding:30px 0px;
}

.flat-spacing-6 {
    padding: 45px 0px 100px;
}

.flat-spacing-7 {
    padding-bottom: 60px;
}

.flat-spacing-8 {
    padding-top: 35px;
    padding-bottom: 70px;
}

.flat-spacing-9 {
    padding: 65px 0px;
}

.flat-spacing-10 {
    padding: 40px 0px;
}

.flat-spacing-11 {
    padding-top: 80px;
    padding-bottom: 70px;
}

.flat-spacing-12 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.flat-spacing-13 {
    padding-top: 34px;
    padding-bottom: 40px;
}

.flat-spacing-14 {
    padding-top: 84px;
    padding-bottom: 60px;
}

.flat-spacing-15 {
    padding-top: 78px;
    padding-bottom: 100px;
}

.flat-spacing-16 {
    padding-top: 130px;
    padding-bottom: 65px;
}

.flat-spacing-17 {
    padding-top: 100px;
    padding-bottom: 80px;
}

.flat-spacing-18 {
    padding-top: 80px;
    padding-bottom: 100px;
}

.flat-spacing-19 {
    padding-top: 79px;
    padding-bottom: 91px;
}

.flat-spacing-20 {
    padding-top: 30px;
    padding-bottom: 33px;
}

.flat-spacing-21 {
    padding-top: 60px;
    padding-bottom: 100px;
}

.flat-spacing-22 {
    padding: 30px 0;
}

.flat-spacing-23 {
    padding-top: 100px;
    padding-bottom: 78px;
}

.flat-spacing-24 {
    padding-top: 109px;
    padding-bottom: 132px;
}

.flat-spacing-25 {
    padding-top: 36px;
    padding-bottom: 36px;
}

.flat-spacing-26 {
    padding-top: 65px;
    padding-bottom: 75px;
}

.flat-spacing-27 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.flat-spacing-28 {
    padding-top: 38px;
    padding-bottom: 90px;
}

.flat-spacing-29 {
    padding-top: 26px;
    padding-bottom: 90px;
}

.flat-spacing-30 {
    padding-top: 65px;
    padding-bottom: 42px;
}

.offcanvas-backdrop {
    background-color: var(--backdrop);
    /* cursor: url("../img/cursor-close.svg"), auto; */
}

.offcanvas-backdrop.show {
    opacity: 1;
}

.canvas-wrapper {
    padding: 0;
    isolation: isolate;
    height: 100%;
    width: 100%;
    max-height: none;
    display: grid;
    grid-auto-rows: auto minmax(0, 1fr) auto;
    align-content: start;
    background-color: #25f4ee;
  }

.canvas-wrapper {
    padding: 0;
    isolation: isolate;
    height: 100%;
    width: 100%;
    max-height: none;
    display: grid;
    grid-auto-rows: auto minmax(0, 1fr) auto;
    align-content: start;
  }

.canvas-body {
    background-color: var(--white);
    padding: 15px 20px;
    overscroll-behavior-y: contain;
    overflow-y: auto;
  }

.canvas-body::-webkit-scrollbar {
    width: 5px;
  }

.canvas-body::-webkit-scrollbar-track {
    background-color: var(--bg-scrollbar-track);
  }

.canvas-body::-webkit-scrollbar-thumb {
    background: var(--bg-scrollbar-thumb);
    border-radius: 4px;
  }

.canvas-filter {
    max-width: 300px;
  }

.canvas-filter .filter-icon {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
    color: var(--main);
    text-transform: uppercase;
    line-height: 22px;
    font-size: 12px;
    font-weight: 600;
  }

.canvas-filter .canvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background-color: var(--bg-11);
  }

.canvas-filter .canvas-header .icon-close-popup {
    font-size: 16px;
  }

.canvas-filter .widget-facet:last-child {
    margin-bottom: 0;
  }

.canvas-sidebar .canvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 15px;
    background-color: var(--bg-11);
    min-height: 40px;
  }

.canvas-sidebar .canvas-header .icon-close-popup {
    font-size: 16px;
  }

.canvas-sidebar .canvas-header .title {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
  }

.canvas-sidebar .canvas-body {
    padding: 15px;
  }

.canvas-sidebar.canvas-sidebar-account .canvas-header {
    min-height: 60px;
  }

.canvas-sidebar.canvas-sidebar-account .title {
    font-size: 14px;
  }

.canvas-compare {
    height: max-content !important;
    z-index: 5000;
  }

.canvas-compare .close-popup {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
  }

.canvas-compare .canvas-body {
    padding: 28px 0;
  }

.canvas-compare .canvas-wrapper {
    height: unset;
  }

video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    width: 100%;
}

.h-16 {
    height: 16px;
}

.line-height-0 {
    line-height: 0 !important;
}

.img-contain {
    object-fit: contain !important;
    object-position: top;
}

/*your custom css goes here*/

@media (max-width: 370px) {
    .payment-card-modal {
        padding-left: 5px !important;
    }
}

/* .flash-time-container{
  padding-top: 60px;
  background: #8080804d;
  height: 280px;
} */

.btn-custom-focus:focus {
    color: var(--secondary-base) !important;
}

#buy-product-buttons {
    display: none;
}

.cursor-pointer {
    cursor: pointer;
}

@media (max-width: 350px) {
    #account_delete_confirm .modal-content .modal-footer {
        padding: 0px !important;
    }
}

.hidden {
    display: none;
}

#uc_shooting_lights_bg_addon50448 {
    height: 500px;
    background: var(--soft-dark-primary);
    z-index: -1;
    width: 100%;
    overflow: hidden;
}

.description-text-cl {
    word-wrap: anywhere;
}

.containers {
    position: absolute;
    bottom: 0;
    background-color: white;
    height: 100px;
    margin: 5px;
    animation: floatUp 4s infinite linear;
    box-shadow: #c39a21 0px 0px 25px 5px;
}

.container-full {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0px 15px;
}

@keyframes floatUp {
    0% {
        opacity: var(--light-opacity);
        transform: translateY(0);
    }

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

.containers:nth-child(1) {
    width: 0%;
    height: 30%;
    left: 10%;
    animation-delay: 0s;
}

.containers:nth-child(2) {
    width: 0%;
    height: 50%;
    left: 15%;
    animation-delay: 0.5s;
}

.containers:nth-child(3) {
    width: 0%;
    height: 15%;
    left: 30%;
    animation-delay: 1s;
}

.containers:nth-child(4) {
    width: 0%;
    height: 40%;
    left: 45%;
    animation-delay: 1.5s;
}

.containers:nth-child(5) {
    width: 0%;
    height: 380%;
    left: 60%;
    animation-delay: 2s;
}

.containers:nth-child(6) {
    width: 0%;
    height: 43%;
    left: 20%;
    animation-delay: 2.5s;
}

.containers:nth-child(7) {
    width: 0%;
    height: 30%;
    left: 70%;
    animation-delay: 3s;
}

.containers:nth-child(8) {
    width: 0%;
    height: 15%;
    left: 90%;
    animation-delay: 3.5s;
}

.containers:nth-child(9) {
    width: 0%;
    height: 80%;
    left: 55%;
    animation-delay: 4s;
}

.contact_help_text {
    position: absolute;
    top: 50%; /* Adjust as needed */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    padding: 20px;
    text-align: center;
    color: #ffffff;
    font-family: "Economica", Sans-serif;
    font-size: 56px;
    letter-spacing: 2px;
}

/* use this containter with animation */

/* .container-box {
    padding: 30px;
    margin-top: -250px;
    border-radius: 6px;
    background-color: #ffffff;
  } */

/* use this containter without animation */

.container-box {
    padding: 30px;
    margin-top: -400px;
    border-radius: 6px;
    background-color: #ffffff;
}

/* .shadow-lg {
    -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  } */

/* .box {
    box-shadow: 5px 20px 60px 1px #CECECE;
    padding: 10%;
    border-radius: 15px;
    height: 100%;
  } */

.contact_card_title {
    font-size: 1rem;
    font-weight: 600;
    color: black;
}

.p-font-style {
    font-family: "Economica", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: black;
}

.contact_card_icons {
    font-size: 50px;
}

.mt-40px {
    margin-top: 40px;
}

.header-name-style {
    color: #ffffff;
    font-family: "Economica", Sans-serif;
    font-size: 56px;
    letter-spacing: 2px;
    margin-top: -200px;
}

.contact_card_text {
    font-size: 1.1rem;
    color: black !important;
}

.mail_to_div a {
    color: black;
    font-size: 16px;
}

.message_us_number {
    font-size: 22px;
    font-weight: 500;
}

.message_help {
    font-size: 18px;
    font-weight: 400;
}

.header-styles {
    display: flex;
    justify-content: start;
    align-items: center;
    border-bottom: 1px solid #d5d8dc !important;
    /* border-top: 1px solid #d5d8dc !important; */
}

.header-body-font {
    font-family: "Economica", Sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: var(--bs-primary) !important;
}

.fa-plus,
.fa-minus {
    transition: transform 0.3s ease-in-out;
}

.faq_question_color,
.faq_question_answer {
    color: black;
    font-size: 15px;
}

.set-icon-size {
    font-size: 15px;
    color: black;
}

.contect_us_form_style .form-control:focus,
.contect_us_form_style .form-control:hover,
.contect_us_form_style .form-check-input:focus,
.contect_us_form_style .form-check-input:hover {
    background: var(--soft-primary);
}

.accordion-toggle::after {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    float: right;
}

.accordion-toggle.collapsed::after {
    content: "\f078";
}

@media (max-width: 776px) {
    #uc_shooting_lights_bg_addon50448 {
        height: 250px;
        background-color: #54595f;
    }
    .container-box {
        margin-top: -100px;
    }
    .contact_help_text {
        top: 40%; /* Adjust as needed */
        font-size: 22px;
    }
    .box {
        margin-bottom: 20px;
    }
}

.grecaptcha-badge {
    visibility: hidden !important;
}

.contact_email_break_text {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-left-content {
    background-color: #ffffff73;
    padding: 26px;
    backdrop-filter: blur(10px) brightness(110%);
}

.categories-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.small-card {
    height: 103%;
}

.category-card {
    overflow: hidden; /* Ensure no overflow */
    border-radius: 8px; /* Optional: rounded corners */
}

.category-name-cl {
    bottom: 6px;
    left: 0;
    right: 0;
    text-align: center;
    color: #b2903e;
}

@media (max-width: 766px) {
    .category-res-cl {
        bottom: -27px !important;
    }
}

@media (max-width: 384px) {
    .custom-card {
        width: 100%;
        height: auto;
    }
}

.category-card-cl {
    width: 418px;
    height: 174px;
}

.display-4 {
    font-weight: 600;
    line-height: 1;
}

.links-buttons-cl {
    justify-content: space-evenly;
    display: flex;
}

.header_search_input {
    padding-right: 50px;
}

.word-wrap-break {
    word-wrap: break-word;
}

.hide-alert-ic .is-invalid {
    background-image: none !important;
}

.max-h-600 {
    max-height: 600px !important;
}

.max-h-700 {
    max-height: 700px !important;
}

.overflow-y-auto {
    overflow-y: auto;
}

.currency-switcher {
    max-height: 400px;
    overflow-y: auto;
}

.empty-icon::before {
    content: "\f119";
    font-family: "Line Awesome Free";
    font-weight: 900;
    font-size: 60px;
    opacity: 0.5;
    transform: translate(-50%, 0px);
}

.empty-content::after {
    content: "Nothing Found";
    transform: translate(-50%, 0px);
    font-size: 25px;
    opacity: 0.5;
}

.contact_icon {
    height: 61px;
    width: 61px;
    object-fit: contain;
}

#remove-coupon-form > .input-group > #set_coupon_text {
    text-wrap: nowrap !important;
    overflow: scroll;
}

.green_dot {
    width: 20px !important;
    height: 20px !important;
    background-color: green !important;
    border-radius: 50% !important;
}

.red_dot {
    width: 20px !important;
    height: 20px !important;
    background-color: red !important;
    border-radius: 50% !important;
}

/* testmonial style start */

.inside_div {
    height: 300px;
    display: flex;
    justify-content: center;
}

.testimonial-header {
    width: 95%;
    margin: 0 auto;
}

.responseive_text {
    font-size: 1.5rem;
}

.rounded-more {
    border-radius: 10px;
    border-width: 3px !important;
}

.rounded-md {
    border-radius: 10px;
    border-width: 1px !important;
}

@media (max-width: 1200px) {
    .responseive_text {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .responseive_text {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .responseive_text {
        font-size: 1.1rem;
    }


      .blog-article-item.style-row .article-content {
        gap: 10px;
      }
      .blog-article-item.style-row .article-title a {
        font-size: 16px;
        line-height: 19px;
      }
      .blog-article-item.style-row .article-btn {
        margin-top: 10px;
      }
}

@media (max-width: 576px) {
    .responseive_text {
        font-size: 1rem;
    }
}

.testimonial_name {
    font-weight: 600;
    color: #474747;
    line-height: 1.6rem;
    margin-bottom: 1rem;
    text-align: center;
}

.testimonial_description {
    line-height: 2.2;
    letter-spacing: 1px;
    word-spacing: 3px;
    max-height: 120px;
    font-style: italic;
    text-align: right;
    color: #474747;
    margin-bottom: 1rem;
    overflow: scroll;
}

.testimonial_image {
    display: inline-block;
}

.size-85px {
    width: 85px;
    height: 85px;
}

/* .testimonial_description {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 5;
       Limit to 5 lines
        text-overflow: ellipsis;

    } */

/* testmonial style end */

.testimonial_card {
    position: relative;
    background-color: #ffffff;
}

.rounded_card_more {
    border-radius: 25px;
}

.testimonial_card_name {
    position: relative;
    font-weight: 700;
    font-size: 1.25rem;
    z-index: 2;
}

.Quotes_icon {
    width: 64px;
    height: 64px;
    position: absolute;
    top: -20px;
    left: -2px;
}

.Quotes_icon img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.testimonial_card_description {
    line-height: 2.2;
    font-style: italic;
    margin: 39px 0 0;
    text-align: right;
    letter-spacing: 1px;
    word-spacing: 3px;
    height: 120px;
    overflow: scroll;
}

.discovery-new-item {
    padding: 37px;
    height: 100%;
    border: 1px solid black;
    display: flex;
    flex-direction: column;
    justify-content: end;
    border-radius: 10px;
}

.discovery-new-item h5 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
}

.discovery-new-item a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid black;
    border-radius: 50%;
    font-size: 25px;
    color: black;
    transition: all 0.3s ease;
}

.size-width-20 {
    width: 25px;
    height: 25px;
}

.dot {
    background-color: black;
    width: 06px;
    height: 06px;
    border-radius: 50%;
}

.margin-all {
    margin: 2px;
}

.margin-bottom-zero {
    margin-bottom: 0px !important;
}

.line {
    border-bottom: 1px solid var(--line);
}

.line-black {
    border-bottom: 1px solid var(--main);
}

.tf-social-icon {
    --facebook-cl: rgb(59, 89, 152);
    --twitter-cl: rgb(85, 85, 85);
    --instagram-cl: linear-gradient(#8a3ab9, #e95950, #fccc63);
    --threads-cl: rgb(224, 53, 102);
    --youtube-cl: rgb(205, 32, 31);
    --tiktok-cl: linear-gradient(#25f4ee, #000, #fe2c55);
    --tiktok-cl2: rgb(254, 44, 85);
    --pinterest-cl: rgb(203, 32, 39);
    --tumblr-cl: rgb(55, 69, 92);
    --vimeo-cl: rgb(26, 183, 234);
    --snapchat-cl: rgb(255, 221, 0);
    --whatsapp-cl: rgb(0, 230, 118);
    --linked_in-cl: rgb(23, 106, 255);
    --wechat-cl: rgb(26, 173, 24);
    --reddit-cl: rgb(255, 69, 0);
    --line-cl: rgb(0, 195, 77);
    --spotify-cl: rgb(30, 125, 96);
}

/*------------ box icon ---------------- */

.box-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    cursor: pointer;
}

.box-icon.w_28 {
    width: 28px;
    height: 28px;
}

.box-icon.w_34 {
    width: 34px;
    height: 34px;
}

.box-icon.w_46 {
    width: 46px;
    height: 46px;
}

.box-icon.w_50 {
    width: 50px;
    height: 50px;
}

.box-icon.round {
    border-radius: 50% !important;
}

.tf-social-icon .box-icon {
    color: black;
}

.tf-social-icon .social-facebook:hover {
    background: var(--facebook-cl);
    color: var(--white);
}

.tf-social-icon .social-twiter:hover {
    background: var(--twitter-cl);
    color: var(--white);
}

.tf-social-icon .social-instagram:hover {
    background: var(--instagram-cl);
    color: var(--white);
}

.tf-social-icon .social-tiktok:hover {
    background: var(--tiktok-cl);
    color: var(--white);
}

.tf-social-icon .social-pinterest:hover {
    background: var(--pinterest-cl);
    color: var(--white);
}

.tf-social-icon.style-white li a {
    border-color: var(--white);
    color: var(--white);
}

.tf-social-icon .social-line {
    border: 1px solid var(--main);
}

.tf-social-icon .social-line.social-facebook:hover {
    background: transparent;
    color: var(--facebook-cl);
    border-color: var(--facebook-cl);
}

.tf-social-icon .social-line.social-twiter:hover {
    background: transparent;
    color: var(--twitter-cl);
    border-color: var(--twitter-cl);
}

.tf-social-icon .social-line.social-instagram:hover {
    background: transparent;
    color: var(--threads-cl);
    border-color: var(--threads-cl);
}

.tf-social-icon .social-line.social-tiktok:hover {
    background: transparent;
    color: var(--tiktok-cl2);
    border-color: var(--tiktok-cl2);
}

.tf-social-icon .social-line.social-pinterest:hover {
    background: transparent;
    color: var(--pinterest-cl);
    border-color: var(--pinterest-cl);
}

.tf-social-icon.style-default li {
    display: inline-flex;
}

.tf-social-icon.style-default li a {
    border: 0 !important;
}

.tf-social-icon.style-default li a:hover {
    background: unset !important;
}

.tf-social-icon.style-default li .social-facebook:hover {
    color: var(--facebook-cl);
}

.tf-social-icon.style-default li .social-twiter:hover {
    color: var(--twitter-cl);
}

.tf-social-icon.style-default li .social-instagram:hover {
    color: var(--threads-cl);
}

.tf-social-icon.style-default li .social-tiktok:hover {
    color: var(--tiktok-cl2);
}

.tf-social-icon.style-default li .social-pinterest:hover {
    color: var(--pinterest-cl);
}

.tf-top-bar_item {
    list-style: none;
    padding: 0;
    margin: 0;
}

.top-bar-text {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 14px;
}

.top-bar-text .tf-btn {
    padding: 5px !important;
    color: var(--primary);
    text-decoration: underline !important;
}

.tf-top-bar_wrap {
    padding: 10px 0px;
}

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

.top-bar-language a {
    font-size: 13px !important;
    padding: 0px !important;
}

.tf-cur {
    display: flex;
    gap: 28px;
}

.flat-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
}

.flat-title .title {
    font-size: 22px;
    line-height: 26.4px;
}

.flat-title .sub-title {
    font-size: 20px;
    line-height: 20px;
    text-align: center;
}

.flat-title.mb_1 {
    margin-bottom: 30px;
}

.flat-title .sw-dots {
    margin-top: 0;
}

.flat-title.title-upper .title {
    font-size: 18px;
    line-height: 21.6px;
    font-weight: 800;
    text-transform: uppercase;
}

.testimonial-item.style-column {
    padding: 34px 20px 20px;
    border: 1px solid var(--line);
    border-radius: 10px;
}

.testimonial-item.style-column .rating {
    margin-bottom: 14px;
}

.testimonial-item.style-column .heading {
    margin-bottom: 8px;
}

.testimonial-item.style-column .text {
    margin-bottom: 20px;
}

.testimonial-item.style-column .author {
    margin-bottom: 30px;
}

.testimonial-item.style-column.style-2 {
    background-color: var(--white);
    border: 0;
    border-radius: 0;
    padding: 20px;
}

.testimonial-item.style-column.style-2 .text {
    font-size: 16px;
    line-height: 25.6px;
    margin-bottom: 10px;
}

.testimonial-item.style-column.style-2 .author {
    margin-bottom: 0px;
}

.testimonial-item.style-column.style-2 .author svg {
    color: var(--bg-5);
}

/*------------ carousel ---------------- */

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
    .swiper-pagination-bullet {
    margin: 0px !important;
}

.sw-auto .swiper-slide {
    width: auto;
}

.sw-dots {
    display: flex;
    gap: 8px;
}

.sw-dots.swiper-pagination-bullets .swiper-pagination-bullet {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sw-dots .swiper-pagination-bullet {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sw-dots .swiper-pagination-bullet:before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background-color: var(--main);
    transition: 0.3s;
}

.sw-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: rgba(0, 0, 0, 0.16);
}

.sw-dots.style-2 span::before {
    width: 8px;
    height: 8px;
    background-color: rgba(0, 0, 0, 0.16);
}

.sw-dots.style-2 span.swiper-pagination-bullet-active {
    background-color: transparent;
    border: 2px solid var(--main);
}

.sw-dots.style-2 span.swiper-pagination-bullet-active::before {
    background-color: var(--main);
}

.sw-dots.dots-white span::before {
    background-color: rgba(255, 255, 255, 0.2);
}

.sw-dots.dots-white span.swiper-pagination-bullet-active {
    background-color: transparent;
    border: 2px solid var(--white);
}

.sw-dots.dots-white span.swiper-pagination-bullet-active::before {
    background-color: var(--white);
}

.sw-dots.line-pagination span {
    width: 6px;
    height: 6px;
    background-color: rgb(0, 0, 0);
    opacity: 0.4;
}

.sw-dots.line-pagination span::before {
    content: none;
}

.sw-dots.line-pagination span.swiper-pagination-bullet-active {
    background-color: rgb(0, 0, 0);
    opacity: 1;
    width: 22px;
    border-radius: 9999px;
}

.sw-dots.rectangle-pagination span {
    width: 30px;
    height: 2px;
    background-color: rgb(0, 0, 0);
    opacity: 0.4;
    border-radius: 0;
    border: 0;
}

.sw-dots.rectangle-pagination span::before {
    content: none;
}

.sw-dots.rectangle-pagination span.swiper-pagination-bullet-active {
    background-color: rgb(0, 0, 0);
    opacity: 1;
}

.sw-dots.line-white-pagination span {
    background-color: rgb(255, 255, 255);
    opacity: 0.4;
    width: 6px;
    height: 6px;
}

.sw-dots.line-white-pagination span::before {
    content: none;
}

.sw-dots.line-white-pagination span.swiper-pagination-bullet-active {
    background-color: rgb(255, 255, 255);
    opacity: 1;
    width: 22px;
    border-radius: 9999px;
}

.sw-dots.dots-fill-white .swiper-pagination-bullet::before {
    background-color: var(--white);
}

.sw-dots.dots-fill-white .swiper-pagination-bullet-active {
    background-color: rgba(255, 255, 255, 0.1607843137);
}

.sw-dots:not(.swiper-pagination-lock) {
    margin-top: 15px;
}

.sw-dots.medium span {
    width: 20px;
    height: 20px;
    border-width: 1px !important;
}

.sw-dots.medium span::before {
    width: 6px;
    height: 6px;
}

.sw-dots.medium span.swiper-pagination-bullet-active::before {
    width: 4px;
    height: 4px;
}

.sw-dots.small span {
    width: 16px;
    height: 16px;
    border-width: 1px !important;
}

.sw-dots.small span::before {
    width: 6px;
    height: 6px;
}

.sw-dots.small span.swiper-pagination-bullet-active::before {
    width: 4px;
    height: 4px;
}

.sw-dots.absolute-dots {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 10px;
    z-index: 10;
}

.sw-dots.large .swiper-pagination-bullet::before {
    width: 8px;
    height: 8px;
}

.box-sw-navigation {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-sw {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--main);
    border: 1px solid var(--main);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 12px;
    cursor: pointer;
}

.nav-sw.swiper-button-disabled {
    border-color: rgba(0, 0, 0, 0.14);
    color: rgba(0, 0, 0, 0.4);
}

.nav-sw:hover:not(.swiper-button-disabled) {
    background-color: var(--main);
    color: var(--white);
}

.nav-sw.lg {
    width: 46px;
    height: 46px;
    font-size: 12px;
}

.nav-sw.square {
    width: 30px;
    height: 30px;
    border-radius: 3px;
}

.nav-sw.round {
    border-radius: 999px;
}

.nav-sw.style-not-line {
    border-color: transparent;
}

.nav-sw.style-not-line.swiper-button-disabled {
    background-color: rgba(255, 255, 255, 0.4);
    color: rgb(0, 0, 0);
}

.nav-sw.line-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.nav-sw.line-white:hover:not(.swiper-button-disabled) {
    color: var(--main);
    background-color: var(--white);
    border-color: var(--white);
}

.nav-sw.line-white.swiper-button-disabled {
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.4);
}

.nav-sw.disable-line.swiper-button-disabled {
    border-color: transparent;
    background-color: rgba(255, 255, 255, 0.4);
    color: rgb(0, 0, 0);
}

.nav-sw.style-blue {
    border-color: #1c355e;
    background-color: #1c355e;
}

.nav-sw.style-blue .icon {
    color: var(--white);
}

.nav-sw.style-blue:hover:not(.swiper-button-disabled) {
    border-color: var(--white);
    background-color: var(--white);
}

.nav-sw.style-blue:hover:not(.swiper-button-disabled) .icon {
    color: #1c355e;
}

.nav-sw.style-blue.swiper-button-disabled {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.4);
}

.nav-sw.style-blue.swiper-button-disabled .icon {
    color: #1c355e;
}

.nav-sw.style-white {
    background-color: var(--white);
    border: 0;
}

.nav-sw.style-white-line {
    background-color: var(--white);
}

.nav-sw-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
}

.nav-sw-arrow:hover {
    color: var(--primary);
}

.nav-sw-arrow.swiper-button-disabled {
    color: rgba(0, 0, 0, 0.4);
}

.nav-sw-arrow.type-white {
    color: var(--white);
}

.nav-sw-arrow.type-white:hover {
    color: var(--primary);
}

.hover-sw-nav {
    position: relative;
}

.hover-sw-nav .nav-sw {
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    cursor: pointer;
    visibility: hidden;
    background-color: var(--white);
    border-color: transparent;
}

.hover-sw-nav .nav-sw.nav-next-slider {
    margin-left: 20px;
    left: 13px;
}

.hover-sw-nav .nav-sw.nav-prev-slider {
    right: 13px;
    margin-right: 20px;
}

.hover-sw-nav .nav-sw.w_46 .icon {
    font-size: 12px;
}

.hover-sw-nav .nav-sw.swiper-button-disabled {
    background-color: rgba(0, 0, 0, 0.2);
}

.hover-sw-nav .nav-sw:hover:not(.swiper-button-disabled) {
    background-color: var(--main);
    color: var(--white);
}

.hover-sw-nav .nav-sw.style-2.swiper-button-disabled {
    opacity: 0.4;
    background-color: var(--white);
}

.hover-sw-nav.view-default .nav-sw,
.hover-sw-nav:hover .nav-sw {
    margin: 0;
    visibility: visible;
}

.hover-sw-nav.hover-sw-2 .nav-sw {
    top: 37%;
}

.hover-sw-nav.hover-sw-3 .nav-sw {
    top: 40%;
}

.hover-sw-nav.hover-sw-4 .nav-sw {
    top: 35%;
}

.hover-sw-nav.hover-sw-5 .nav-sw {
    top: 32%;
}

.tf-sw-collection .swiper-slide {
    height: auto;
}

.tf-sw-collection .swiper-slide img {
    height: 100%;
}

.button-style-arrow {
    width: 46px;
    height: 46px;
    background-color: var(--white);
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.button-style-arrow::after {
    font-size: 11px;
    color: var(--main);
    font-weight: 700;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.button-style-arrow:hover {
    background-color: var(--primary);
}

.button-style-arrow:hover::after {
    color: var(--white);
}

.wrap-carousel {
    position: relative;
}

.wrap-carousel .nav-sw {
    z-index: 20;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.wrap-carousel .nav-next-slider {
    left: -84px;
}

.wrap-carousel .nav-prev-slider {
    right: -84px;
}

.wrap-carousel .sw-dots {
    display: none;
}

.wrap-carousel.wrap-sw-2 .nav-sw {
    top: 37%;
}

.wrap-carousel.wrap-sw-3 .nav-sw {
    top: 46%;
}

.sw-wrapper-right {
    margin-right: -15px;
}

/* Cart Css */

.tf-progress-bar {
    height: 4px;
    width: 100%;
    background-color: var(--line);
    position: relative;
}

.tf-progress-bar span {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    background-color: var(--primary);
    border-radius: 3px;
}

.tf-progress-bar .progress-car {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 26px;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 2.5px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-shopping-cart .modal-content {
    max-width: 477px !important;
    cursor: default !important;
}

.modal-shopping-cart .header {
    margin: 0 36px;
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    height: 60px;
}

.modal-shopping-cart .header .title {
    font-size: 20px;
}

.modal-shopping-cart .header .icon-close-popup {
    font-size: 16px;
    padding: 0 6px;
}

.modal-shopping-cart .wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modal-shopping-cart .tf-mini-cart-threshold {
    margin: 0 36px;
    padding: 18px 0 16px;
    border-bottom: 1px solid var(--line);
}

.modal-shopping-cart .tf-mini-cart-threshold .tf-progress-bar {
    margin-top: 14px;
    margin-bottom: 10px;
    height: 4px;
}

.modal-shopping-cart .tf-mini-cart-threshold .tf-progress-msg {
    margin-top: 18px;
    font-size: 16px;
    line-height: 26px;
}

.modal-shopping-cart .tf-mini-cart-wrap {
    flex: 1 1 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modal-shopping-cart .tf-mini-cart-wrap .tf-mini-cart-main {
    flex: 1 1 auto;
    position: relative;
}

.modal-shopping-cart .tf-mini-cart-wrap .tf-mini-cart-main .tf-mini-cart-sroll {
    /* position: absolute; */
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: auto;
}

.modal-shopping-cart
    .tf-mini-cart-wrap
    .tf-mini-cart-main
    .tf-mini-cart-sroll::-webkit-scrollbar {
    width: 6px;
}

.modal-shopping-cart
    .tf-mini-cart-wrap
    .tf-mini-cart-main
    .tf-mini-cart-sroll::-webkit-scrollbar-thumb {
    background: var(--line);
    border-radius: 6px;
}

.modal-shopping-cart .tf-mini-cart-item {
    margin: 0 36px;
    padding: 20px 0;
    display: flex;
    gap: 24px;
}

.modal-shopping-cart .tf-mini-cart-item:not(:last-child) {
    border-bottom: 1px solid var(--line);
}

.modal-shopping-cart .tf-mini-cart-item .tf-mini-cart-image a {
    width: 80px;
    height: 110px;
}

.modal-shopping-cart .tf-mini-cart-item .tf-mini-cart-image a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-shopping-cart .tf-mini-cart-item .tf-mini-cart-info a {
    font-size: 16px;
    line-height: 16px;
    display: block;
}

.modal-shopping-cart .tf-mini-cart-item .tf-mini-cart-info .meta-variant {
    font-size: 12px;
    line-height: 19px;
    margin-top: 6px;
}

.modal-shopping-cart .tf-mini-cart-item .tf-mini-cart-info .price {
    line-height: 14px;
    margin-top: 6px;
}

.modal-shopping-cart .tf-mini-cart-item .tf-mini-cart-info .tf-mini-cart-btns {
    margin-top: 10px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.modal-shopping-cart
    .tf-mini-cart-item
    .tf-mini-cart-info
    .tf-mini-cart-btns
    .wg-quantity {
    width: 86px;
}

.modal-shopping-cart
    .tf-mini-cart-item
    .tf-mini-cart-info
    .tf-mini-cart-btns
    .tf-mini-cart-remove {
    font-size: 12px;
    line-height: 19px;
    color: var(--text);
    text-decoration: underline;
}

.modal-shopping-cart .tf-minicart-recommendations {
    margin: 15px 36px;
    padding: 18px;
    box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.0784313725);
}

.modal-shopping-cart
    .tf-minicart-recommendations
    .tf-minicart-recommendations-heading {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-shopping-cart
    .tf-minicart-recommendations
    .tf-minicart-recommendations-heading
    .tf-minicart-recommendations-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
}

.modal-shopping-cart
    .tf-minicart-recommendations
    .tf-minicart-recommendations-heading
    .sw-dots {
    width: unset;
}

.modal-shopping-cart .tf-minicart-recommendations-item {
    display: flex;
    align-items: center;
}

.modal-shopping-cart
    .tf-minicart-recommendations-item
    .tf-minicart-recommendations-item-image
    a {
    width: 80px;
    height: 110px;
    margin-right: 18px;
}

.modal-shopping-cart
    .tf-minicart-recommendations-item
    .tf-minicart-recommendations-item-infos
    a {
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 16px;
    white-space: nowrap;
}

.modal-shopping-cart
    .tf-minicart-recommendations-item
    .tf-minicart-recommendations-item-infos
    .price {
    margin-top: 4px;
    line-height: 14px;
    font-weight: 600;
}

.modal-shopping-cart
    .tf-minicart-recommendations-item
    .tf-minicart-recommendations-item-quickview
    .quickview {
    margin-left: 15px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--main);
    font-size: 16px;
    color: var(--white);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.modal-shopping-cart
    .tf-minicart-recommendations-item
    .tf-minicart-recommendations-item-quickview
    .quickview:hover {
    background-color: var(--primary);
}

.modal-shopping-cart .tf-mini-cart-tool {
    background-color: rgb(242, 242, 242);
    display: flex;
    justify-content: center;
}

.modal-shopping-cart .tf-mini-cart-tool .tf-mini-cart-tool-btn {
    width: 69px;
    height: 43px;
    line-height: 43px;
    margin: 18px 10px;
    border-radius: 3px;
    cursor: pointer;
    color: var(--main);
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.modal-shopping-cart .tf-mini-cart-tool .tf-mini-cart-tool-btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

.modal-shopping-cart .tf-mini-cart-bottom-wrap {
    padding: 20px 36px 30px;
}

.modal-shopping-cart .tf-mini-cart-bottom-wrap .tf-cart-totals-discounts {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-shopping-cart
    .tf-mini-cart-bottom-wrap
    .tf-cart-totals-discounts
    .tf-cart-total {
    font-size: 20px;
}

.modal-shopping-cart
    .tf-mini-cart-bottom-wrap
    .tf-cart-totals-discounts
    .tf-totals-total-value {
    font-size: 20px;
    line-height: 32px;
    margin-left: 15px;
}

.tf-page-cart-checkout .tf-cart-totals-discounts {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tf-page-cart-checkout .tf-cart-totals-discounts h3 {
    font-size: 20px;
    line-height: 24px;
}

.tf-page-cart-checkout .tf-cart-totals-discounts .total-value {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
}

.modal-shopping-cart .tf-mini-cart-bottom-wrap .tf-cart-tax {
    margin-top: 10px;
    color: var(--text);
}

.modal-shopping-cart .tf-mini-cart-bottom-wrap .tf-cart-tax a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.tf-page-cart-checkout .tf-cart-tax {
    margin-top: 18px;
    color: var(--text);
}

.tf-page-cart-checkout .tf-cart-tax a {
    color: rgba(0, 0, 0, 0.85);
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    text-decoration-line: underline;
    transition: text-decoration-thickness 1s ease;
}

.tf-page-cart-checkout .tf-cart-tax a:hover {
    color: var(--main);
    text-decoration-thickness: 2px;
}

.modal-shopping-cart .tf-mini-cart-bottom-wrap .tf-mini-cart-line {
    border: 1px solid var(--line);
    margin-top: 14px;
    margin-bottom: 14px;
}

.modal-shopping-cart .tf-mini-cart-bottom-wrap .tf-cart-checkbox {
    margin-top: 10px;
}

.modal-shopping-cart .tf-mini-cart-bottom-wrap .tf-mini-cart-view-checkout {
    margin-top: 20px;
    display: flex;
    gap: 14px;
}

.radius-3 {
    border-radius: 3px !important;
}

.modal-shopping-cart .modal-content {
    max-width: 420px !important;
}

.modal-shopping-cart .tf-mini-cart-threshold .tf-progress-msg {
    font-size: 14px;
    line-height: 22.4px;
}

.modal-shopping-cart .tf-mini-cart-item {
    margin: 0 15px;
}

.modal-shopping-cart .tf-mini-cart-item .tf-mini-cart-info a {
    font-size: 14px;
    line-height: 14px;
}

.modal-shopping-cart .tf-minicart-recommendations {
    padding: 15px;
    margin: 15px;
}

.modal-shopping-cart .tf-mini-cart-tool .tf-mini-cart-tool-btn {
    width: 50px;
    height: 38px;
    line-height: 38px;
    margin: 18px 8px;
    font-size: 18px;
}

.modal-shopping-cart .tf-mini-cart-threshold .tf-progress-msg {
    font-size: 13px;
    line-height: 20.8px;
}

.modal-shopping-cart .tf-mini-cart-item {
    gap: 14px;
}

.modal-shopping-cart .tf-mini-cart-item {
    margin: 0 36px;
    padding: 20px 0;
    display: flex;
}

.tf-page-cart-footer .tf-free-shipping-bar .tf-progress-msg {
    margin-top: 28px;
}

.modal.fullRight .modal-dialog {
    transform: translate(100%, 0);
    min-width: 100%;
    height: 100%;
    margin: 0;
    transition: transform 1s ease-out;
}

.modal.fullRight .modal-dialog .modal-content .modal-body {
    overflow: auto;
    padding: 0;
    padding-bottom: 30px;
}

.modal.fullRight .modal-dialog .modal-content {
    border-radius: 0;
    border: 0;
    margin: auto;
    overflow: hidden;
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    padding: 0;
}

.modal.fullRight.show .modal-dialog {
    transform: translate(0, 0);
}

.rtl .modal.fullRight .modal-dialog {
    transform: translate(-100%, 0) !important;
    transition: all 0.3s !important;
}

.rtl .modal.fullRight .modal-dialog .modal-content {
    left: 0;
    right: unset;
}

.rtl .modal.fullRight.show .modal-dialog {
    transform: translate(0, 0) !important;
}

.wg-quantity .quantity-product {
    pointer-events: none;
}

.wg-quantity {
    width: 127px;
    display: flex;
    justify-content: space-between;
    background-color: rgb(242, 242, 242);
    border-radius: 3px;
    overflow: hidden;
}

.wg-quantity input {
    width: 51px;
    height: 46px;
    padding: 0;
    background-color: transparent;
    border: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: var(--main);
}

.wg-quantity .btn-quantity {
    width: 38px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--main);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.wg-quantity .btn-quantity:hover {
    color: var(--primary);
}

.wg-quantity.small {
    width: 109px;
    height: 30px;
}

.wg-quantity.small .btn-quantity {
    width: 27px;
    height: 30px;
    font-size: 20px;
}

.wg-quantity.small input {
    width: 30px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
}

.tf-cart-item .wg-quantity {
    min-width: 86px;
    width: 86px;
    height: 30px;
}

.tf-cart-item .wg-quantity .btn-quantity {
    width: 25px;
    height: 30px;
    line-height: 25px;
}

.tf-cart-item .wg-quantity input {
    width: 30px;
    height: 30px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16.8px;
}

/* End Cart css */

.navigation-sw-dot {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background-color: var(--white);
}

.navigation-sw-dot span {
    width: 9px;
    height: 9px;
    background-color: var(--main);
    border-radius: 50%;
}

.navigation-sw-dot::after,
.navigation-sw-dot::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 9999px;
    animation: ripple 3s infinite;
}

.navigation-sw-dot::after {
    animation-delay: 0.5s;
}

.navigation-sw-dot::before {
    animation-delay: 0.9s;
}

.navigation-sw-dot.swiper-button-disabled {
    width: 36px;
    height: 36px;
}

.navigation-sw-dot.swiper-button-disabled span {
    width: 12px;
    height: 12px;
}

.navigation-sw-dot.type-black::after,
.navigation-sw-dot.type-black::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 9999px;
    animation: ripple_black 3s infinite;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes ripple_black {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.swiper-button-disabled {
    cursor: auto !important;
}

.box-nav-pagination {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    min-width: 70px;
    background-color: var(--white);
    padding: 8px;
    line-height: 0;
    border-radius: 999px;
}

.box-nav-pagination .dots-default {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.nav-arr-default.swiper-button-disabled {
    opacity: 0.35;
}

.dots-default .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: var(--main);
}

.tf-sw-brand .sw-dots:not(.swiper-pagination-lock) {
    margin-top: 35px;
}

.testimonial-item.style-column {
    padding: 34px 20px 20px;
    border: 1px solid var(--line);
    border-radius: 10px;
}

.testimonial-item.style-column .heading {
    margin-bottom: 8px;
}

.testimonial-item .heading {
    font-size: 18px;
    font-weight: 600;
    line-height: 29px;
}

.testimonial-item.style-column .text {
    margin-bottom: 20px;
}

.flat-testimonial .swiper-wrapper {
    height: auto !important;
}

.thumb-tes-brands .swiper-wrapper {
    justify-content: center;
}

.collection-item-circle.circle-line .collection-image {
    padding: 17px;
}

.collection-item-circle .collection-content {
    margin-top: 30px;
}

.collection-item-circle .collection-content .title {
    font-size: 18px;
    line-height: 21.6px;
}

.collection-item-circle.has-bg {
    padding: 20px 0px;
}

.collection-item-circle .tf-shopall-icon .icon {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.collection-item-circle .tf-shopall-icon:hover {
    border-color: var(--primary);
}

.collection-item-circle .tf-shopall-icon:hover .icon {
    color: var(--primary);
}

.collection-item-circle .collection-content {
    margin-top: 45px;
}

.collection-item-circle {
    position: relative;
}

.collection-item-circle .collection-image {
    border-radius: 50%;
    overflow: hidden;
    display: block;
}

.collection-item-circle .collection-content {
    margin-top: 15px;
}

.collection-item-circle .collection-content .title {
    margin-bottom: 5px;
    font-size: 15px;
    line-height: 18px;
    font-weight: 500;
}

.collection-item-circle .collection-content .count {
    color: var(--text);
}

.collection-item-circle .sale-off {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 10px;
    line-height: 19px;
    padding: 0 5px;
    background-color: var(--main);
    border-radius: 999px;
    color: var(--white);
}

.collection-item-circle.has-bg {
    padding: 15px 0;
    background-color: var(--bg-2);
    border-radius: 20px;
}

.collection-item-circle.has-bg .collection-image {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.collection-item-circle.has-bg .collection-content {
    margin-top: 19px;
}

.collection-item-circle.has-bg .collection-content .title {
    margin-bottom: 0;
}

.collection-item-circle.has-bg-2 {
    background-color: #f2f2f2;
    border-radius: 3px;
}

.collection-item-circle.circle-line .collection-image {
    padding: 15px;
    border: 1px solid var(--primary);
}

.collection-item-circle.circle-line .collection-content {
    margin-top: 20px;
}

.collection-item-circle.circle-line .collection-content .title {
    margin: 0;
}

.hover-img .img-style {
    overflow: hidden;
}

.hover-img .img-style img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: transform 2s cubic-bezier(0, 0, 0.44, 1.18);
    transition: transform 1.5s cubic-bezier(0, 0, 0.44, 1.18);
}

.hover-img:hover img {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
}

.hover-img .img-style2 {
    overflow: hidden;
    border-radius: 10px;
}

.hover-img .img-style2 .img-hv {
    width: 100%;
    object-fit: cover;
    -webkit-transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
    transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
    transition: transform 500ms ease;
}

.swiper-slide .tf-icon-box {
    width: 100%;
    height: 100%;
}

.tf-icon-box.style-border-line {
    border: 1px solid #ececec;
    padding: 26px 20px;
    border-radius: 10px;
}

.tf-icon-box img {
    margin-bottom: 34px;
    height: 50px;
}

.tf-icon-box .content .title {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 10px;
}

.tf-icon-box .content p {
    font-size: 14px;
    margin-bottom: 0px;
}

.wrapper-thumbs-testimonial {
    display: flex;
    padding: 0px 100px;
    align-items: center;
}

.wrapper-thumbs-testimonial .box-left {
    width: 47%;
    padding-left: 24px;
    padding-right: 83px;
}

.wrapper-thumbs-testimonial .box-right {
    width: 53%;
}

.wrapper-thumbs-testimonial.wrap-carousel .nav-next-slider {
    left: 0;
}

.wrapper-thumbs-testimonial {
    display: flex;
    padding: 0px 100px;
    align-items: center;
}

.wrapper-thumbs-testimonial.wrap-carousel .nav-next-slider {
    left: 0;
}

.wrapper-thumbs-testimonial.wrap-carousel .nav-prev-slider {
    right: 0;
}

.wrapper-thumbs-testimonial .box-right {
    width: 53%;
}

.wrapper-thumbs-testimonial .img-sw-thumb {
    border-radius: 10px;
    overflow: hidden;
}

.wrapper-thumbs-testimonial-v2 {
    display: flex;
    align-items: center;
}

.wrapper-thumbs-testimonial-v2 .box-left {
    width: 50%;
    padding-right: 60px;
}

.wrapper-thumbs-testimonial-v2 .box-right {
    width: 50%;
}

.wrapper-thumbs-testimonial-v2 .box-right img {
    width: 100%;
}

.wrapper-thumbs-testimonial-v2.type-1 .box-left {
    width: 60%;
}

.wrapper-thumbs-testimonial-v2.type-1 .box-right {
    width: 40%;
}

.tf-countdown-v2 .countdown__timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tf-countdown-v2 .countdown__item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-width: 60px;
    min-height: 60px;
    padding: 6px 10px;
    border: 1px solid var(--main);
    background-color: transparent;
    border-radius: 3px;
}

.tf-countdown-v2 .countdown__value {
    font-size: 16px;
    line-height: 19.2px;
    font-weight: 500;
}

.tf-countdown-v2 .countdown__label {
    font-size: 12px;
    font-weight: 500;
    line-height: 25.6px;
}

.tf-countdown-v3 {
    display: inline-flex;
    align-items: center;
    color: #ff0b0b;
    gap: 13px;
    background-color: rgba(255, 11, 11, 0.1);
    border-radius: 22px;
    padding: 4px 10px;
}

.tf-countdown-v3 .countdown__timer {
    display: inline-flex;
}

.tf-countdown-v3 .countdown__item {
    font-size: 18px;
    line-height: 28.8px;
    font-weight: 600;
}

.tf-countdown-v3 .countdown__item:not(:last-child)::after {
    content: ":";
    margin-left: 10px;
    margin-right: 10px;
}

.tf-content-wrap-v2 .description {
    margin-top: 12px;
    font-size: 16px;
    line-height: 19.2px;
}

.tf-content-wrap-v2 .tf-btn {
    margin-top: 22px;
}

h4 {
    font-size: 42px;
    line-height: 50.4px;
}

.btn-line {
    padding: 0 !important;
    padding-bottom: 7px !important;
    color: var(--main) !important;
    position: relative;
}

.btn-line:hover {
    color: var(--primary) !important;
}

.btn-line::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background-color: var(--main);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-line:hover::after {
    background-color: var(--primary);
  }

img {
    max-width: 100%;
    height: auto;
    transform: scale(1);
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

.icon-img {
    width: 65px;
    height: 65px;
}

.testimonial-item .rating {
    margin-bottom: 16px;
}

.testimonial-item .box-author .box-img {
    width: 70px;
    height: 74px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-item .box-author {
    display: flex;
    gap: 16px;
}

.tf-btn {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    will-change: background-color, color, border;
    pointer-events: auto;
    overflow: hidden;
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
    box-sizing: border-box;
    padding: 14px 24px;
    display: inline-flex;
    border-radius: 3px;
    align-items: center;
    border: 1px solid transparent;
    background-color: transparent;
    cursor: pointer;
}

.tf-btn.hover-icon .icon {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transform: scale(0);
    transform-origin: right;
    width: 0;
    display: inline-block;
    font-size: 9px;
}

.tf-btn.hover-icon:hover .icon {
    transform: scale(1);
    width: 10px;
    min-width: 10px;
    margin-inline-start: 8px;
}

.tf-btn span {
    z-index: 1;
    color: inherit;
}

.tf-btn.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.tf-btn.btn-primary-main {
    background-color: var(--primary);
    color: var(--main);
}

.tf-btn.style-2 {
    padding: 0 24px;
    line-height: 42px;
}

.tf-btn.style-3 {
    padding: 0 24px;
    line-height: 40px;
}

.tf-btn.btn-color-1 {
    background-color: #fcf151;
    border-color: var(--main);
}

.tf-btn.btn-color-2 {
    background-color: #c7fcff;
    border-color: var(--main);
}

.tf-btn.btn-color-3 {
    background-color: #ffb1d2;
    border-color: var(--main);
}

.tf-btn.btn-color-4 {
    background-color: #c1fb9b;
    border-color: var(--main);
}

.tf-btn.btn-color-5 {
    background-color: #e09314;
    color: var(--white);
}

.tf-btn.btn-color-6 {
    background-color: #b46161;
    color: var(--white);
}

.btn-icon .icon {
    margin-inline-start: 8px;
    display: inline-block;
    font-size: 9px;
}

.btn-outline {
    background-color: var(--white);
    border: 1px solid var(--main);
}

.animate-hover-btn {
    position: relative;
    overflow: hidden;
}

.animate-hover-btn:after {
    background-image: linear-gradient(
        90deg,
        transparent,
        rgba(0, 0, 0, 0.25),
        transparent
    );
    content: "";
    left: 150%;
    position: absolute;
    top: 0;
    bottom: 0;
    transform: skew(-20deg);
    width: 200%;
}

.animate-hover-btn.btn-color-6:after,
.animate-hover-btn.btn-color-5:after,
.animate-hover-btn.btn-primary:after,
.animate-hover-btn.btn-fill::after {
    background-image: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
}

.btn-fill {
    background-color: var(--main);
    border: 1px solid var(--main);
    color: var(--white);
}

/* Start Flash Deal */

.flat-spacing-17 {
    padding-top: 100px;
    padding-bottom: 80px;
}

.tf-flash-sale {
    border: 2px solid var(--primary);
    padding: 75px 20px 20px;
    border-radius: 10px;
    position: relative;
}

.tf-flash-sale .heading-flash-sale {
    position: absolute;
    left: 0;
    top: -4%;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    padding: 4px 16px;
    margin-left: 15px;
    color: var(--primary);
    font-weight: 400;
    font-size: 22px;
    line-height: 26.4px;
}

.swiper-pointer-events {
    touch-action: pan-y;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.list-product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.list-product-btn .box-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 3px;
    box-shadow: 0 8px 24px rgba(149, 157, 165, 0.2);
    background-color: rgb(242, 242, 242);
    position: relative;
}

.list-product-btn .box-icon .icon {
    font-size: 14px;
    font-weight: 500;
    height: 13px;
}

.list-product-btn .box-icon .text {
    font-size: 12px;
    font-weight: 700;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: auto;
    line-height: 32px;
}

.list-product-btn .box-icon .tooltip {
    top: -100%;
    margin-top: 5px;
}

.list-product-btn .box-icon .tooltip::before {
    top: unset;
    bottom: -4px;
}

.card-product .card-product-wrapper .on-sale-wrap {
    position: absolute;
    top: 5px;
    right: 5px;
    left: 5px;
    z-index: 5;
}

.card-product .card-product-wrapper img {
    display: block;
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
    transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}

.card-product .card-product-wrapper .on-sale-wrap .on-sale-item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    word-break: break-word;
    padding: 0 6px;
    min-width: 40px;
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    line-height: 22px;
    position: relative;
    background-color: #fc5732;
    color: var(--white);
    border-radius: 999px;
}

.card-product .card-product-wrapper:hover .product-img .img-hover {
    display: block;
    z-index: 1;
    opacity: 1;
    -webkit-transform: scale(1.09);
    transform: scale(1.09);
}

.card-product.style-8 {
    border: 1px solid var(--line-2);
    border-radius: 10px;
    padding: 5px 5px 20px;
}

.card-product.style-8 .card-product-wrapper {
    aspect-ratio: unset;
}

/*------------ slider banner ---------------- */

.wrap-slider {
    position: relative;
}

.wrap-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrap-slider .box-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.wrap-slider .box-content h1 {
    font-size: 68px;
}

.slider-effect.wrap-slider {
    height: auto !important;
}

.slider-effect .img-slider {
    width: 50%;
    margin-left: auto;
}

.slider-effect-fade .swiper-slide .fade-item {
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.slider-effect-fade .swiper-slide .fade-item.fade-item-1 {
    transition-delay: 0.5s;
}

.slider-effect-fade .swiper-slide .fade-item.fade-item-2 {
    transition-delay: 0.6s;
}

.slider-effect-fade .swiper-slide .fade-item.fade-item-3 {
    transition-delay: 0.7s;
}

.slider-effect-fade .swiper-slide .fade-item.fade-item-4 {
    transition-delay: 0.8s;
}

.slider-effect-fade .swiper-slide.swiper-slide-active .fade-item {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.slider-effect {
    position: relative;
}

.slider-effect .content-left {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex !important;
    background-color: rgb(238, 241, 224);
}

.animate-hover-btn {
    position: relative;
    overflow: hidden;
}

.btn-light-icon {
    background-color: var(--white);
}

.swiper-slide.swiper-slide-active .box-content {
    opacity: 1;
}

.slider_h1 {
    font-size: 80px;
    /* line-height: 96px; */
}

.slider_h2 {
    font-size: 68px;
    line-height: 81.6px;
}

.slider-effect .content-left .box-content {
    position: unset;
    transform: unset;
}

.swiper-slide .box-content {
    opacity: 0;
}

.wrap-slider .box-content .heading,
.wrap-slider .box-content h1 {
    margin-bottom: 18px;
}

.wrap-slider .box-content .heading.mb_38,
.wrap-slider .box-content h1.mb_38 {
    margin-bottom: 38px;
}

.wrap-slider .box-content p {
    margin-bottom: 48px;
    font-size: 20px;
    line-height: 24px;
}

.wrap-slider .box-content p.mb_15 {
    margin-bottom: 15px;
}

.wrap-slider .box-content p.sale_off {
    background-color: #ff5c39;
    padding: 5px 20px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
}

.sw-dots {
    display: flex;
    gap: 8px;
}

.flat-testimonial-bg-v2 {
    max-width: 1400px;
    margin: auto;
    padding: 50px 0px 40px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.slider-layout-right {
    width: calc(100vw - (100vw - 1440px) / 2 + 30px);
    margin-right: unset;
    max-width: 100%;
    margin-left: auto;
}

.tf-hero-image-liquid {
    position: relative;
}

.font-caprasimo {
    font-family: "Caprasimo", serif;
}

.o-hidden {
    overflow: hidden;
}

.radius-10 {
    border-radius: 10px !important;
}

.tf-hero-image-liquid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-countdown-v2 .box-content {
    left: 3%;
    right: 3%;
}

.tf-hero-image-liquid .box-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.tf-hero-image-liquid .box-content .heading {
    font-size: 52px;
    line-height: 62.4px;
}

.tf-hero-image-liquid .box-content .tf-btn {
    margin-top: 20px;
}

.tf-countdown .countdown__timer .countdown__item .countdown__value {
    font-size: 32px;
    font-weight: 500;
    line-height: 38.4px;
    color: var(--main);
}

.tf-hero-image-liquid .tf-countdown .countdown__timer {
    justify-content: center;
    gap: 10px;
}

.tf-countdown .countdown__timer .countdown__item {
    width: 90px;
    height: 90px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.tf-countdown .countdown__timer .countdown__item .countdown__value {
    font-size: 32px;
    font-weight: 500;
    line-height: 38.4px;
    color: var(--main);
}

.tf-countdown .countdown__timer .countdown__item .countdown__label {
    font-size: 12px;
    font-weight: 700;
    line-height: 14.4px;
    letter-spacing: 0.5px;
    color: var(--main);
    text-transform: uppercase;
}

.tf-countdown .countdown__timer {
    display: flex;
    gap: 16px;
    justify-content: start !important;
}

.change_view img {
    transition: transform 0.1s ease-in-out;
    cursor: pointer;
}

.change_view img:hover {
    transform: scale(1.15) !important;
}

.container {
    width: 100%;
    margin: auto !important;
}

.icon-arrow-right:before {
    content: "\e906";
}

.h-190px {
    height: 190px;
}

.tf-marquee {
    padding-top: 24px;
    padding-bottom: 24px;
    overflow: hidden;
}

.tf-marquee .wrap-marquee {
    -webkit-animation: slide-har 15s linear infinite;
    animation: slide-har 15s linear infinite;
}

.tf-marquee .marquee-item {
    padding-left: 18px;
    padding-right: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tf-marquee .marquee-item .text {
    font-size: 18px;
    line-height: 21.6px;
    white-space: nowrap;
    margin-bottom: 0px !important;
}

.tf-marquee .marquee-item p {
    white-space: nowrap;
}

.tf-marquee .wrap-marquee {
    display: flex;
    -webkit-animation: slide-har 6s linear infinite;
    animation: slide-har 6s linear infinite;
    transition: animation-duration 300ms;
}

.tf-marquee .wrap-marquee:hover {
    animation-play-state: paused;
}

@keyframes slide-har {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.flat-title-v2 {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 33px;
}

/*------------ collection ---------------- */

.collection-item .collection-inner {
    position: relative;
}

.collection-item .collection-image {
    width: 100%;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.collection-item .collection-content {
    position: absolute;
    z-index: 3;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.collection-item .collection-title {
    line-height: 40px;
    height: 40px;
    font-size: 16px;
    padding: 0px 14px;
    background-color: var(--white);
    border-radius: 3px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.collection-item .collection-title .icon {
    color: var(--white);
    margin: 0;
    font-size: 16px;
}

.collection-item .collection-title:hover {
    background-color: var(--main);
    color: var(--white) !important;
}

.collection-item.style-left .collection-content {
    left: 0;
    transform: unset;
}

.collection-item.style-left .collection-content .collection-title {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.collection-item-v2 .collection-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.collection-item-v2 .collection-image {
    width: 100%;
    height: 100%;
}

.collection-item-v2 .collection-content {
    position: absolute;
    inset: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.collection-item-v2 .collection-content .heading {
    margin-bottom: 7px;
    font-size: 18px;
    line-height: 21.6px;
}

.collection-item-v2 .collection-content .subheading {
    font-size: 16px;
    line-height: 19.2px;
    margin-bottom: 7px;
}

.collection-item-v2.type-small .collection-content .heading {
    font-size: 18px;
    margin-bottom: 0;
}

.collection-item-v2.type-small .collection-content p {
    font-size: 14px;
}

.collection-item-v3 .collection-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}

.collection-item-v3 .collection-image .box-icon {
    position: absolute;
    border-radius: 50%;
    color: var(--main);
    font-size: 10px;
    bottom: 15px;
    right: 15px;
    background-color: var(--white);
    width: 35px;
    height: 35px;
}

.collection-item-v3 .collection-image .box-icon:hover {
    background-color: var(--main);
    color: var(--white);
}

.collection-item-v3 .collection-content {
    margin-top: 15px;
}

.collection-item-v3 .collection-content .title {
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 5px;
}

.collection-item-v3 .collection-content .count {
    font-size: 14px;
    line-height: 22.4px;
}

.collection-item-v4 .collection-inner {
    position: relative;
}

.collection-item-v4 .collection-image {
    display: block;
}

.collection-item-v4 .collection-content {
    text-align: center;
    bottom: 7%;
    position: absolute;
    left: 7%;
    right: 7%;
}

.collection-item-v4 .collection-content .heading {
    font-size: 18px;
    line-height: 21.6px;
    text-transform: capitalize;
}

.collection-item-v4 .collection-content .subheading {
    font-size: 14px;
    line-height: 22.4px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.collection-item-v4 .collection-content .tf-btn {
    margin-top: 14px;
}

.collection-item-v4.style-2 .collection-content {
    bottom: unset;
    top: 50%;
    transform: translateY(-50%);
}

.collection-item-v4.style-2 .collection-content .subtext {
    margin-top: 9px;
}

.collection-item-v4.style-2 .collection-content .heading {
    font-size: 22px;
    line-height: 26.4px;
}

.collection-item-v4.style-3 .collection-content {
    text-align: left;
}

.collection-item-v4.st-lg .collection-content .heading {
    font-size: 28px;
    line-height: 33.6px;
    margin-bottom: 10px;
}

.collection-item-v4.st-lg .collection-content .subtext {
    font-size: 16px;
    line-height: 19.2px;
}

.collection-item-v5 .collection-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.collection-item-v5 .collection-image {
    width: 100%;
    height: 100%;
    display: block;
}

.collection-item-v5 .collection-content {
    position: absolute;
    left: 15px;
    bottom: 15px;
}

.collection-item-v5 .collection-content .collection-title {
    padding: 10px 12px;
    font-size: 15px;
    line-height: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: 3px;
    gap: 5px;
}

.collection-item-v5 .collection-content .collection-title .icon {
    font-size: 12px;
    font-weight: 500;
}

.collection-item-v5 .collection-content .collection-title:hover {
    background-color: var(--main);
    color: var(--white);
}

.collection-item-v6 .collection-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.collection-item-v6 .collection-image {
    width: 100%;
    height: 100%;
    display: block;
}

.collection-item-v6 .collection-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary);
    padding: 14px;
}

.collection-item-v6 .collection-content .heading {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 2px;
}

.collection-item-v6 .collection-content .subheading {
    font-size: 16px;
    line-height: 19.2px;
}

.collection-item-circle {
    position: relative;
}

.collection-item-circle .collection-image {
    border-radius: 50%;
    overflow: hidden;
    display: block;
}

.collection-item-circle .collection-content {
    margin-top: 15px;
}

.collection-item-circle .collection-content .title {
    margin-bottom: 5px;
    font-size: 15px;
    line-height: 18px;
    font-weight: 500;
}

.collection-item-circle .collection-content .count {
    color: var(--text);
}

.collection-item-circle .sale-off {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 10px;
    line-height: 19px;
    padding: 0 5px;
    background-color: var(--main);
    border-radius: 999px;
    color: var(--white);
}

.collection-item-circle.has-bg {
    padding: 15px 0;
    background-color: var(--bg-2);
    border-radius: 20px;
}

.collection-item-circle.has-bg .collection-image {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.collection-item-circle.has-bg .collection-content {
    margin-top: 19px;
}

.collection-item-circle.has-bg .collection-content .title {
    margin-bottom: 0;
}

.collection-item-circle.has-bg-2 {
    background-color: #f2f2f2;
    border-radius: 3px;
}

.collection-item-circle.circle-line .collection-image {
    padding: 15px;
    border: 1px solid var(--primary);
}

.collection-item-circle.circle-line .collection-content {
    margin-top: 20px;
}

.collection-item-circle.circle-line .collection-content .title {
    margin: 0;
}

.c5-category-slider {
    height: 450px;
}

.rounded-full {
    border-radius: 999px !important;
}

.tf-grid-layout {
    display: grid;
    gap: 15px;
}

.tf-grid-layout.tf-col-2 {
    grid-template-columns: 1fr 1fr;
}

.tf-grid-layout.gap30 {
    gap: 30px;
}

.tf-grid-layout.row-gap-10 {
    row-gap: 10px !important;
}

.c6-category-slider .collection-item-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.c6-category-slider .collection-image {
    height: 175px !important;
    width: 175px !important;
}

.c6-category-slider .collection-content {
    margin-top: 30px !important;
}

.tf-banner-collection {
    position: relative;
}

.tf-banner-collection img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.tf-banner-collection .box-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.tf-banner-collection .box-content .sub {
    line-height: 17px;
}

.tf-banner-collection .box-content .heading {
    font-size: 42px;
    line-height: 50px;
    margin-top: 5px;
}

.tf-banner-collection .box-content p {
    font-size: 20px;
    line-height: 32px;
    margin-top: 15px;
    margin-bottom: 26px;
}

.slider-btn-content {
    display: flex;
    flex-direction: column;
}

.slider-btn-content h1 {
    display: inline-block;
}

.slider-btn-content p {
    display: inline-block;
}

.img-text-3 .grid-img-group .item-1 {
    top: 20%;
    width: 39%;
    height: max-content;
}

.img-text-3.img-text-3-style-2 .tf-image-wrap {
    border-radius: 10px;
    overflow: hidden;
}

/* .img-text-3.img-text-3-style-2 .tf-image {
    padding: 30px 0px;
} */

.tf-grid-layout.md-col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-img-group {
    position: relative;
}

.grid-img-group .item-1 {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 1;
    width: 51%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.grid-img-group .item-1:hover {
    z-index: 2;
}

.grid-img-group .item-2 {
    margin-left: auto;
    width: 84%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.grid-img-group .item-2:hover {
    z-index: 2;
    position: relative;
}

.grid-img-group .img-style {
    border-radius: 10px;
}

.grid-img-group.style-ter-1 {
    padding-bottom: 66px;
}

.grid-img-group.style-ter-1 .item-1 {
    width: 53%;
    align-items: end;
}

.grid-img-group.style-ter-1 .item-2 {
    width: 79%;
}

.img-text-3 .grid-img-group .item-2 {
    left: 14%;
    margin-left: unset;
    width: 66.67%;
    height: 500px !important;
}

.img-text-3 .grid-img-group .item-3 {
    position: absolute;
    top: 50%;
    right: 0;
    display: flex;
    align-items: center;
    z-index: 1;
    width: 30%;
}

.img-text-3 .tf-content-wrap {
    padding: 14px 0 0 0;
    text-align: start;
}

.img-text-3 .tf-content-wrap .desc {
    margin-top: 14px;
}

.img-text-3.img-text-3-style-2 .grid-img-group .item-1 {
    top: -8%;
    width: 33%;
    height: 250px;
}

.img-text-3.img-text-3-style-2 .grid-img-group .item-3 {
    width: 50%;
    top: 54%;
    height: 300px;
}

.tf-img-with-text .tf-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tf-content-wrap .heading {
    margin-top: 14px;
    font-size: 24px;
    line-height: 28.8px;
}

.tf-content-wrap .tf-btn {
    margin-top: 16px;
}

.swiper-slide .collection-item-v4, .swiper-slide .collection-item-v4 .collection-inner, .swiper-slide .collection-item-v4 .collection-image {
    height: 100%;
  }

.set-height{
    height: 430px;
  object-fit: cover;
  }

/*start blog post grid style */

.blog-article-item {
    margin-bottom: 37px;
  }

.blog-article-item .article-thumb {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
  }

.blog-article-item .article-thumb a {
    width: 100%;
    height: 100%;
  }

.blog-article-item .article-thumb a img {
    /* width: 100%; */
    /* height: 100%; */
    object-fit: cover;
    transition: all 1s;
  }

.blog-article-item .article-thumb a:hover img {
    transform: scale(1.1);
  }

.blog-article-item .article-thumb.h-460 {
    height: 460px;
  }

.blog-article-item .article-label {
    position: absolute;
    bottom: 18px;
    left: 18px;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
  }

.blog-article-item .article-label a {
    background-color: var(--white);
    color: var(--main);
    font-size: 10px;
    font-weight: 700;
    line-height: 12px;
    padding: 0 16px;
    height: 31px;
    border-color: var(--white);
  }

.blog-article-item .article-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 30px;
  }

.blog-article-item .article-title a {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: var(--main);
  }

.blog-article-item .article-title a:hover {
    color: var(--primary);
  }

.blog-article-item.style-sidebar {
    display: flex;
    gap: 17px;
    margin-bottom: 0;
  }

.blog-article-item.style-sidebar .article-thumb {
    width: 92px;
    flex-shrink: 0;
    height: 100%;
  }

.blog-article-item.style-sidebar .article-thumb a {
    height: 88px;
  }

.blog-article-item.style-sidebar .article-content {
    padding-top: 0;
  }

.blog-article-item.style-sidebar .article-content .article-label {
    position: unset;
  }

.blog-article-item.style-sidebar .article-content .article-label a {
    background-color: rgb(242, 242, 242);
  }

.blog-article-item.style-sidebar .article-content .article-title a {
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
  }

.blog-article-item.style-row {
    display: flex;
    align-items: center;
    gap: 69px;
    margin-bottom: 0;
  }

.blog-article-item.style-row .article-thumb {
    width: 421px;
    height: 406px;
    flex-shrink: 0;
  }

.blog-article-item.style-row .article-thumb a {
    height: 406px;
  }

.blog-article-item.style-row .article-content {
    padding-top: 0;
  }

.blog-article-item.style-row .article-content .article-label {
    position: unset;
  }

.blog-article-item.style-row .article-content .article-label a {
    background-color: var(--white);
    border: 1px solid var(--line);
  }

.wg-pagination {
    display: flex;
    gap: 11px;
  }

.wg-pagination .pagination-item {
    width: 45px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 3px;
    overflow: hidden;
  }

.wg-pagination .active .pagination-item {
    background-color: var(--main);
    color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 10px 0px;
  }

.tf-section-sidebar {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

.tf-section-sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: var(--main);
    padding-bottom: 25px;
    /* margin-bottom: 28px; */
  }

.tf-section-sidebar .sidebar-categories ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style-type: none;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
  }

.tf-section-sidebar .sidebar-categories ul li a {
    font-weight: 500 !important;
    color: var(--main);
    font-size: 14px;
  }

.tf-section-sidebar .sidebar-categories ul li a span {
    margin-left: 5px;
  }

.tf-section-sidebar .sidebar-categories ul li a:hover {
    color: var(--primary);
  }

.tf-section-sidebar .sidebar-post ul {
    display: flex;
    gap: 21px;
    flex-direction: column;
    list-style-type: none;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
  }

.tf-section-sidebar .sidebar-instagram ul {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(3, 1fr);
  }

.tf-section-sidebar .sidebar-instagram ul li {
    border-radius: 5px;
    overflow: hidden;
  }

.tf-section-sidebar .sidebar-instagram ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
  }

.tf-section-sidebar .sidebar-instagram ul li:hover img {
    transform: scale(1.1);
  }

ul.tags-lists {
    display: flex;
    gap: 10px;
    margin-left:0px !important;
    padding-left:0px !important;
  }

ul.tags-lists li a {
    border: 1px solid var(--line);
    padding: 0 14px;
    line-height: 27px;
  }

ul.tags-lists li a:hover {
    color: var(--primary);
    border-color: var(--primary);
  }

.blog-grid-main {
    padding: 36px 0 37px;
  }

.blog-sidebar-main {
    padding: 64px 0 66px;
  }

.blog-sidebar-main .list-blog .blog-article-item {
    margin-bottom: 54px;
  }

.blog-sidebar-main .list-blog .blog-article-item .article-thumb {
    max-height: 625px;
  }

.blog-list-main {
    padding: 64px 0 66px;
  }

.blog-list-main .blog-article-item {
    margin-bottom: 37px;
  }

.text-end {
    text-align: right !important;
  }

.blog-article-item.style-row .article-thumb {
    width: 300px;
    height: 300px;
  }

.blog-list-main .wg-pagination {
    margin-top: 57px;
  }

.blog-detail {
    padding: 30px 0 20px;
  }

.blog-detail .blog-detail-main .blog-detail-main-heading .tags-lists {
    margin-bottom: 20px;
  }

.blog-detail .blog-detail-main .blog-detail-main-heading .tags-lists a {
    font-size: 10px;
    font-weight: 700;
    line-height: 30px;
    display: inline-block;
  }

.blog-detail .blog-detail-main .blog-detail-main-heading .title {
    margin-bottom: 15px;
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    color: var(--main);
    text-align: center;
  }

.blog-detail .blog-detail-main .blog-detail-main-heading .meta {
    margin-bottom: 30px;
    text-align: center;
  }

.blog-detail .blog-detail-main .blog-detail-main-heading .meta span {
    font-weight: 600;
  }

.blog-detail .blog-detail-main .blog-detail-main-heading .image {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }

.blog-detail .blog-detail-main .blog-detail-main-heading .image img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    border-radius: 10px;
  }

.blog-detail .blog-detail-main .grid-image {
    display: flex;
    gap: 35px;
    margin-bottom: 48px;
  }

.blog-detail .blog-detail-main .grid-image img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.blog-detail .blog-detail-main .desc {
    margin-bottom: 30px;
  }

.blog-detail .blog-detail-main .bot {
    margin-bottom: 30px;
  }

.blog-detail .blog-detail-main .bot .tags-lists a {
    border-radius: 3px;
    border-color: var(--main);
  }

.blog-detail .blog-detail-main .bot p {
    font-weight: 600;
  }

.blog-detail .blog-detail-main .bot .tf-social-icon {
    gap: 15px;
  }

.blog-detail .blog-detail-main .tf-article-navigation {
    display: flex;
    padding: 27px 0 23px;
    margin-bottom: 80px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

/* .blog-detail .blog-detail-main .tf-article-navigation .item {
    padding-bottom: 25px;
    padding-left: 15px;
    align-items: center;
    gap: 10px;
  } */

.blog-detail .blog-detail-main .tf-article-navigation .item.prev {
    padding-right: 15px;
    padding-left: 0;
  }

.blog-detail .blog-detail-main .tf-article-navigation .item.prev::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 1px;
    background-color: var(--line);
    top: 0;
    right: 0;
  }

.blog-detail .blog-detail-main .tf-article-navigation .item .inner > a {
    font-size: 10px;
    font-weight: 700;
    line-height: 16px;
  }

.blog-detail .blog-detail-main .tf-article-navigation .item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--main);
    border-radius: 50%;
  }

.blog-detail .blog-detail-main .tf-article-navigation .item .icon:hover {
    background-color: var(--main);
    border-color: var(--main);
    color: var(--white) !important;
  }

.blog-detail .blog-detail-main .tf-article-navigation .icon {
    width: 26px;
    height: 26px;
  }

.blog-detail-main .tf-article-navigation h6 {
    font-size: 16px;
    line-height: 24px;
  }

.blog-detail-main .tf-article-navigation h6 a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
  }

blockquote {
    position: relative;
    padding: 16px 30px 25px;
    margin-bottom: 45px;
    border-left: 2px solid var(--main);
  }

blockquote .icon {
    margin-bottom: 20px;
  }

blockquote .text {
    font-weight: 500;
  }

.tf-page-title {
    padding: 69px 0 65px;
    background-image: url(../images/shop/file/page-title-blog.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

.tf-page-title .heading {
    font-size: 42px;
    font-weight: 400;
    line-height: 50px;
  }

.tf-page-title .breadcrumbs {
    gap: 14px;
    margin-top: 5px;
  }

.tf-page-title .breadcrumbs li {
    color: rgb(84, 84, 84);
  }

.tf-page-title .breadcrumbs i {
    font-size: 10px;
  }

.tf-page-title.style-1 {
    padding: 88px 0;
  }

.tf-page-title.style-2 {
    padding: 80px 0 86px;
  }

.rotate-icon {
    display: inline-block;
    transform: rotate(-45deg);
    transition: transform 0.3s ease-in-out;
}

/*end blog post grid style */

/* start blog side bar style  */

.btn-sidebar-mobile {
    display: none;
    position: fixed;
    top: 30%;
    right: 0;
    z-index: 100;
    width: max-content;
  }

.btn-sidebar-mobile button {
  width: 40px;
  height: 48px;
  display: flex;
  border: 0;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 6px 0px;
}

.btn-sidebar-mobile button i {
  font-size: 17px;
  color: var(--main);
}

.btn-sidebar-mobile button.type-hover {
  padding: 0 11.5px;
}

.btn-sidebar-mobile button.type-hover span {
  display: none;
}

.btn-sidebar-mobile button.type-hover:hover {
  width: max-content;
  padding-right: 24px;
  gap: 11.5px;
}

.btn-sidebar-mobile button.type-hover:hover span {
  display: block;
}

.btn-sidebar-mobile.left {
  right: auto;
  left: 0;
}

.rtl .btn-sidebar-mobile {
   left: 0;
   right: auto;
 }

.rtl .btn-sidebar-mobile.left {
   left: auto;
   right: 0;
 }

.rtl .btn-sidebar-mobile.left button {
   transform: rotateY(180deg);
 }

/* end blog side bar style  */

/*timeline style start */

.tf-timeline-wrap {
  padding-top: 130px;
  padding-bottom: 20px;
}

.tf-timeline-line {
    position: absolute;
    width: 1px;
    border: 1px dashed var(--line);
    height: 95%;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

.tf-timeline-line::after, .tf-timeline-line::before {
  content: "";
  position: absolute;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  z-index: 3;
  background-color: var(--line);
  border-radius: 50%;
}

.tf-timeline-line::before {
  top: 0;
}

.tf-timeline-line::after {
  bottom: 0;
}

.tf-timeline-item::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary);
}

.tf-timeline-inner {
  gap: 30px;
  padding-top: 80px;
  padding-bottom: 80px;
  flex-direction: column;
}

.tf-timeline-time {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main);
    color: var(--white);
    border-radius: 2.5px;
    padding: 0 35px;
    font-size: 20px;
    line-height: 36px;
}

.tf-timeline-content,
.tf-timeline-image {
  max-width: 490px;
}

.tf-timeline-content {
  background-color: var(--white);
  text-align: center;
}

.tf-timeline-content .tf-timeline-label {
  margin-bottom: 7px;
}

.tf-timeline-content .tf-timeline-title {
  margin-bottom: 10px;
}

.tf-timeline-image img {
    width:100%;
    aspect-ratio:4/3;
    object-position: top;
    object-fit: cover;
}

.flat-wrap-countdown .tf-content-wrap-v2 {
    text-align: center;
}

/* timeline style end */

/* banner_with_video start style  */

.tf-slideshow {
    overflow: hidden;
}

.tf-slideshow .wrap-pagination {
  position: absolute;
  z-index: 10;
  bottom: 57px;
  left: 0;
  right: 0;
}

.tf-slideshow .sw-absolute-3 {
  right: 3%;
  left: unset;
  width: auto;
}

.tf-slideshow .sw-absolute-3 .sw-dots {
  flex-direction: column;
}

.tf-slideshow .card-box {
  padding: 64px 48px 70px;
  border-radius: 10px;
  max-width: 550px;
}

.tf-slideshow .card-box .heading {
  margin-bottom: 38px;
}

.tf-slideshow .subheading {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 22.4px;
}

.tf-slideshow .box-content .subheading {
    margin-bottom: 14px;
}

.tf-slideshow .banner-wrapper {
  position: relative;
}

.tf-slideshow .banner-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tf-slideshow .banner-wrapper .description {
  margin-top: 20px;
  font-size: 16px;
  line-height: 19.2px;
}

.tf-slideshow .banner-wrapper .tf-btn {
  margin-top: 30px;
}

.tf-slideshow.about-us-page .text {
  font-size: 68px;
  line-height: 81.6px;
}

.tf-slideshow.about-us-page img {
  max-height: 860px;
}

.tf-slideshow .text-in-right .box-content {
  left: unset;
}

.tf-slideshow .card-box-2 {
    max-width: 400px;
}

.tf-slideshow .card-box-2 .title {
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19.2px;
}

.tf-slideshow .card-box-2 .price {
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-block;
}

.slideshow-tee.tf-slideshow .wrap-slider {
    height: 400px;
}

/* video {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.mega_menu_drop_container_layout_1 {
    display: none;
    visibility: hidden; /* Initially hidden */
    opacity:0; /* Fully transparent */
    position: absolute;
    top: 100%; /* Adjust as needed */
    left: 0;
    background: white;
    overflow: hidden;
    padding: 35px;
    z-index: 1000; /* Ensures it appears above other elements */
    transform: translateY(20px); /* Start slightly below */
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease; /* Smooth transition */
}

.mega_menu_drop_container_layout_1.visible {
    display: block;
    visibility: visible; /* Make it interactable */
    opacity: 1; /* Fully opaque */
    transform: translateY(0); /* Move into place */
}

.mega_menu_drop_container_layout_2 {
    visibility: hidden; /* Prevent interaction initially */
    opacity: 0; /* Fully transparent */
    position: absolute;
    top: 100%; /* Adjust as needed */
    left: 0;
    width: 100%;
    max-height: 0; /* Start with 0 height */
    z-index: 1000; /* Ensures it appears above other elements */
    transform: translateY(-20px); /* Start slightly above */
    overflow-y: scroll;
    overflow-x: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease;
}

.mega_menu_drop_container_layout_2.visible {
    visibility: visible; /* Make it interactable */
    opacity: 1; /* Fully opaque */
    transform: translateY(0); /* Slide into place */
    max-height:360px; /* Expand to 350px */

}

.mega_menu_drop_container_layout_3 {
    display:none;
    visibility:hidden; /* Initially hidden */
    opacity:0; /* Fully transparent */
    position: absolute;
    top: 100%; /* Adjust as needed */
    left: 0;
    background: white;
    overflow: hidden;
    padding: 35px;
    z-index: 1000; /* Ensures it appears above other elements */
    transform: translateY(20px); /* Start slightly below */
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease; /* Smooth transition */
}

.mega_menu_drop_container_layout_3.visible {
    display: block;
    visibility: visible; /* Make it interactable */
    opacity: 1; /* Fully opaque */
    transform: translateY(0); /* Move into place */
}

.mega_menu_drop_container_layout_4 {
    display: none;
    visibility: hidden; /* Initially hidden */
    opacity:0; /* Fully transparent */
    position: absolute;
    top: 100%; /* Adjust as needed */
    left: 0;
    background: white;
    overflow: hidden;
    z-index: 1000; /* Ensures it appears above other elements */
    transform: translateY(20px); /* Start slightly below */
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease; /* Smooth transition */
}

.mega_menu_drop_container_layout_4.visible {
    display: block;
    visibility: visible; /* Make it interactable */
    opacity: 1; /* Fully opaque */
    transform: translateY(0); /* Move into place */
}

/* start header 2 style */

.header-bottom .box-nav-ul{
    list-style-type: none;
}

.header-bottom .box-nav-ul li .item-link{
   color: black;
}

.header-bottom .box-nav-ul .menu-item {
    padding: 20px 0px;
}

.header-bottom .box-nav-ul .menu-item > a::after {
  height: 64px;
}

.header-bottom .header-list-categories .categories-item {
  min-height: auto;
}

.header-bottom .header-list-categories .categories-item a::after {
  content: none;
}

#header .header-bottom .box-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

#header .header-bottom .box-right .phone {
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  color: var(--primary);
}

#header .header-bottom .tf-list-categories {
  position: relative;
}

#header .header-bottom .tf-list-categories .categories-title {
  min-width: 226px;
  height: 40px;
  font-size: 16px;
  line-height: 40px;
  padding: 0 14px;
  margin-inline-end: 35px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

#header .header-bottom .tf-list-categories .list-categories-inner {
    left: 0;
    border-radius: 10px;
    position: absolute;
    background-color: var(--white);
    /* min-width: 367px; */
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.4s ease 0.1s;
    text-align: left;
    box-shadow: rgba(37, 61, 78, 0.08) 0px 4px 8px 0px;
    border: solid 1px var(--line);
    top: 100%;
    margin-top: 10px;
    color: var(--main);
    pointer-events: none;
}

#header .header-bottom .tf-list-categories .list-categories-inner::before {
  height: 20px;
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  content: "";
}

#header .header-bottom .tf-list-categories .list-categories-inner .categories-bottom {
    min-height: 50px;
    padding: 15px 26px;
    background-color: rgba(37, 61, 78, 0.05);
}

#header .header-bottom .tf-list-categories:hover .list-categories-inner {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: all;
}

#header .header-bottom .tf-list-categories .nav-ul-mb {
  height: 440px;
  overflow-y: scroll;
  padding-top: 24px;
  padding-inline-start: 21px;
  padding-inline-end: 20px;
  padding-bottom: 11px;
}

#header .header-bottom .tf-list-categories .nav-mb-item:last-child .tf-category-link::after {
  content: none;
}

#header .header-bottom .tf-list-categories .nav-mb-item:last-child .list-cate.show::after {
  content: none;
}

#header .header-bottom .box-left {
  display: flex;
  align-items: center;
}

#header.header-style-4 .nav-icon .nav-search {
    display: none;
}

#header.header-style-4 .header-bottom .menu-item {
  padding: 28px 0px;
}

#header.header-style-4 .header-bottom .menu-item > a::after {
  height: 80px;
}

.header-default .box-nav-ul {
  gap: 22px;
}

.header-default .wrapper-header {
    min-height: 64px;
}

.header-default .wrapper-header .nav-icon li:last-child .nav-icon-item {
  margin-right: 10px;
}

.header-style-2 .wrapper-header {
    min-height: 60px;
}

.header-style-2 .header-bottom .wrapper-header {
    min-height: 60px;
}

.header-style-3 .wrapper-header {
    min-height: 64px;
}

#header.header-style-4 .header-bottom .wrapper-header {
    min-height: 78px;
}

/* .logo-header img {
    width: 110px;
} */

.tf-md-hidden {
    display: none;
}

.tf-form-search {
    position: relative;
}

.tf-form-search .search-box {
  position: relative;
}

.tf-form-search .search-box .tf-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  background-color: var(--main);
  border-radius: 60px;
  width: 81px;
  height: 36px;
  justify-content: center;
  background-color: #253d4e;
}

.tf-form-search .search-box .tf-btn .icon {
  font-size: 18px;
  color: var(--white);
}

.tf-form-search .search-box .tf-btn:hover {
  background-color: var(--hov-primary);
}

.tf-form-search .search-suggests-results {
  border-radius: 10px;
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  left: 0;
  z-index: 1000;
/* width: 1600px; */
  height: auto;
  background-color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s ease-in-out;
  max-width: 100%;
  box-shadow: 0 1px 5px 2px #ebebeb;
  pointer-events: none;
}

.tf-form-search .search-suggests-results .search-suggests-results-inner {
  overflow: auto;
  overflow-x: hidden;
  padding: 20px;
  max-height: calc(95vh - 183px);
}

.tf-form-search .search-suggests-results .search-suggests-results-inner::-webkit-scrollbar {
  width: 5px;
  border-radius: 5px;
}

.tf-form-search .search-suggests-results .search-suggests-results-inner::-webkit-scrollbar-track {
  background-color: var(--line);
}

.tf-form-search .search-suggests-results .search-suggests-results-inner::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.16);
  border-radius: 10px;
}

.tf-form-search:hover .search-suggests-results {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.tf-form-search .search-suggests-results-inner .search-result-item {
  display: flex;
  gap: 15px;
}

.tf-form-search .search-suggests-results-inner .search-result-item .box-content {
  flex-grow: 1;
}

.tf-form-search .search-suggests-results-inner .search-result-item .box-content .title {
  color: #000000;
}

.tf-form-search .search-suggests-results-inner .search-result-item .box-content .price {
  color: #000000;
  font-weight: 600;
}

.tf-form-search .search-suggests-results-inner .search-result-item .box-content .old-price {
  text-decoration: line-through;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.55);
}

.tf-form-search .search-suggests-results-inner .search-result-item .box-content .new-price {
  color: rgb(219, 18, 21);
  font-weight: 600;
}

.tf-form-search .search-suggests-results-inner .search-result-item .img-box {
  width: 60px;
  height: 84px;
}

.tf-form-search .search-suggests-results-inner .search-result-item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tf-form-search .search-suggests-results-inner li:not(:last-child) .search-result-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px var(--line);
}

.rtl .tf-form-search .search-box .tf-btn {
  left: 5px;
  right: auto;
}

.rtl .tf-form-search .search-box input {
  padding-left: 40px;
  padding-right: 18px;
}

.flat-thumbs-testimonial-v2 .box-left {
  width: 70%;
  padding-right: 30px;
}

.flat-thumbs-testimonial-v2 .box-left .text {
  font-size: 16px;
  line-height: 25.6px;
}

.flat-thumbs-testimonial-v2 .box-left .box-sw-navigation {
  margin-top: 40px;
}

.box-invoice .box-left {
  width: 60%;
}

.wrap-header-left .box-navigation {
    padding-left: 40px;
}

.rtl .wrap-header-left .box-navigation {
    padding-left: 0;
    padding-right: 40px;
}

#header .box-nav-ul .item-link {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
}

#header .box-nav-ul .item-link .icon {
    font-size: 7px;
  }

#header .box-nav-ul .item-link::before {
  content: "";
  width: 0;
  height: 1px;
  top: 99%;
  position: absolute;
  left: auto;
  right: 0;
  z-index: 1;
  -webkit-transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  -o-transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: var(--main);
}

#header .box-nav-ul li:hover .item-link::before {
  width: 100%;
  left: 0;
  right: auto;
}

.box-nav-ul .menu-item {
    padding: 36px 0px;
}

.box-nav-ul .menu-item:hover > .sub-menu {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
    transform: translateX(0px) translateY(0px);
}

.box-nav-ul .menu-item > a::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 94px;
}

.box-nav-ul .menu-item-2 {
  position: relative;
  cursor: pointer;
}

.box-nav-ul .menu-item-2::after {
  position: absolute;
  content: "\e906";
  font-family: "icomoon";
  font-size: 11px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.box-nav-ul .menu-item-2 .sub-menu {
  top: -22px;
  left: calc(100% + 23px);
  min-width: 200px;
}

.box-nav-ul .menu-item-2 .sub-menu::after {
  position: absolute;
  display: block;
  content: "";
  width: 60px;
  height: 45px;
  background-color: transparent;
  left: -18%;
  top: 3px;
}

.box-nav-ul .menu-item-2:hover > .sub-menu {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
  transform: translateX(0px) translateY(0px);
}

.box-nav-ul .sub-menu {
  pointer-events: none;
  position: absolute;
  background-color: var(--white);
  min-width: 268px;
  z-index: 999;
  visibility: hidden;
  text-align: left;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-inline-end: 20px;
  padding-inline-start: 19px;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(0px) translateY(15px);
  box-shadow: 0 4px 8px rgb(235, 235, 235);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.box-nav-ul .mega-menu {
  padding-top: 37px;
  padding-bottom: 42px;
  border: none;
  max-height: calc(100vh - 74px);
  overflow: auto;
  left: 0;
  right: 0;
}

.box-nav-ul .mega-menu .card-product .card-product-wrapper {
  max-height: 290px;
}

.box-nav-ul .mega-menu .wrap-sw-over {
  padding-bottom: 40px;
  margin-bottom: -40px;
}

.box-nav-ul .menu-heading {
  font-size: 12px;
  line-height: 22px;
  font-weight: 700;
  color: var(--main);
  text-transform: uppercase;
  margin-bottom: 17px;
  text-align: start;
}

.box-nav-ul .menu-list li {
  text-align: start;
}

.box-nav-ul .menu-list li:not(:last-child) {
  margin-bottom: 14px;
}

.box-nav-ul .menu-list .demo-label {
  top: -14px;
  right: -35px;
}

.box-nav-ul .submenu-default {
  left: -110px;
}

.header-bottom .box-nav-ul .menu-item {
    padding: 20px 0px;
}

.header-bottom .box-nav-ul .menu-item > a::after {
  height: 64px;
}

.header-style-3 .box-nav-ul .menu-item {
    padding: 32px 0px;
}

.header-style-3 .box-nav-ul .menu-item > a::after {
  height: 88px;
}

.header-white .box-nav-ul .item-link,
.header-white .nav-icon .nav-icon-item {
  color: var(--white);
}

.header-white .box-nav-ul .item-link::before {
  background-color: var(--white) !important;
}

#header.header-uppercase .box-nav-ul .item-link {
    text-transform: uppercase;
    font-size: 12px;
    line-height: 14.4px;
    font-weight: 700;
}

.rtl .box-nav-ul .menu-item-2::after {
    left: 0;
    right: unset;
    content: "\e905";
}

.rtl .box-nav-ul .menu-item-2 .sub-menu {
  right: calc(100% + 23px);
  left: unset;
}

.rtl .box-nav-ul .menu-item-2 .sub-menu::after {
  left: 90%;
}

.box-nav-ul .menu-item {
    padding: 36px 0px;
}

.box-nav-ul .menu-item:hover > .sub-menu {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
  transform: translateX(0px) translateY(0px);
}

.box-nav-ul .menu-item > a::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 94px;
}

.box-nav-ul .menu-item-2 {
  position: relative;
  cursor: pointer;
}

.box-nav-ul .menu-item-2::after {
  position: absolute;
  content: "\e906";
  font-family: "icomoon";
  font-size: 11px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.box-nav-ul .menu-item-2 .sub-menu {
  top: -22px;
  left: calc(100% + 23px);
  min-width: 200px;
}

.box-nav-ul .menu-item-2 .sub-menu::after {
  position: absolute;
  display: block;
  content: "";
  width: 60px;
  height: 45px;
  background-color: transparent;
  left: -18%;
  top: 3px;
}

.box-nav-ul .menu-item-2:hover > .sub-menu {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
  transform: translateX(0px) translateY(0px);
}

.header-bottom .box-nav-ul .menu-item {
    padding: 20px 0px;
}

.header-bottom .box-nav-ul .menu-item > a::after {
  height: 64px;
}

.header-style-3 .box-nav-ul .menu-item {
    padding: 32px 0px;
}

.header-style-3 .box-nav-ul .menu-item > a::after {
  height: 88px;
}

#header.header-style-4 .header-bottom .menu-item {
    padding: 28px 0px;
}

#header.header-style-4 .header-bottom .menu-item > a::after {
  height: 80px;
}

.rtl .box-nav-ul .menu-item-2::after {
    left: 0;
    right: unset;
    content: "\e905";
}

.rtl .box-nav-ul .menu-item-2 .sub-menu {
  right: calc(100% + 23px);
  left: unset;
}

.rtl .box-nav-ul .menu-item-2 .sub-menu::after {
  left: 90%;
}

.header-scroll-white.header-bg .box-nav-ul .item-link,
.header-scroll-white.header-bg .nav-icon .nav-icon-item {
  color: var(--main);
}

.header-scroll-white.header-bg .box-nav-ul .item-link::before {
  background-color: var(--main) !important;
}

.tf-form-search .search-box input {
    width:100% !important;
    border: 1px solid var(--line);
    outline: 0;
    font-size: 16px;
    /* padding-right: 40px; */
    padding-left: 20px;
    color: var(--main);
    border-radius: 60px;
    padding-top: 11px;
    padding-bottom: 11px;
}

.nav-icon{
    list-style-type: none;

}

.nav-icon li a{
    color: black;
}

#header .nav-icon .nav-icon-item .text {
    font-size: 16px;
    line-height: 25.6px;
    font-weight: 500;
    display: inline-block;
}

#header.header-style-4 .header-bottom .wrapper-header {
    min-height: 78px;
}

.toolbar-shop-mobile {
  max-width: min(90%, 430px) !important;
}

.toolbar-shop-mobile .mb-canvas-content {
  max-width: 100%;
  padding-top: 70px;
  padding-left: 0;
}

.toolbar-shop-mobile .mb-body {
  padding: 0 20px 0 21px;
}

.toolbar-shop-mobile ul.nav-ul-mb > li {
  padding: 0 !important;
  border: 0 !important;
}

.toolbar-shop-mobile .tf-category-link {
  gap: 16px;
  min-height: 50px !important;
  padding: 4px 0 6px;
  position: relative;
}

.toolbar-shop-mobile .tf-category-link .image {
  width: 34px;
  height: 34px;
  position: relative;
}

.toolbar-shop-mobile .tf-category-link .image::before {
  position: absolute;
  z-index: 1;
  content: "";
  top: -3px;
  bottom: -3px;
  left: -3px;
  right: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border: solid 1px var(--line);
  margin: auto;
  pointer-events: none;
  border-radius: 50%;
}

.toolbar-shop-mobile .tf-category-link .image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.toolbar-shop-mobile .tf-category-link > span:nth-child(2) {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  flex-grow: 1;
}

.toolbar-shop-mobile .tf-category-link::after {
  position: absolute;
  bottom: 0;
  content: "";
  height: 1px;
  width: calc(100% - 53px);
  right: 0;
  left: 53px;
  background-color: rgba(0, 0, 0, 0.12);
}

.toolbar-shop-mobile .tf-category-link .btn-open-sub {
  width: 40px;
  height: 40px;
  border-left: 1px solid var(--line);
}

.toolbar-shop-mobile .tf-category-link.current::after {
  display: none;
}

.toolbar-shop-mobile .tf-category-link.has-children:not(.collapsed)::after {
  display: none;
}

.toolbar-shop-mobile .sub-nav-menu .tf-category-link {
  padding: 4px 0 4px 15px;
  margin-bottom: 1px;
  min-height: 30px !important;
}

.toolbar-shop-mobile .sub-nav-menu .tf-category-link::after {
  display: none;
}

.toolbar-shop-mobile .mb-bottom {
  min-height: 50px;
  clear: both;
  padding: 15px 26px;
  background-color: rgba(0, 0, 0, 0.05);
}

.toolbar-shop-mobile .mb-bottom a {
  line-height: 13px;
}

.toolbar-shop-mobile .list-cate {
  position: relative;
}

.toolbar-shop-mobile .list-cate.show::after {
  position: absolute;
  bottom: -17px;
  content: "";
  height: 1px;
  width: calc(100% - 53px);
  right: 0;
  left: 53px;
  background-color: rgba(0, 0, 0, 0.12);
}

.nav-ul-mb .nav-mb-item .mb-menu-link {
  min-height: 40px;
  font-weight: 500;
  font-size: 14px;
  color: var(--main);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-ul-mb .nav-mb-item .mb-menu-link:not(.collapsed) .btn-open-sub::before {
  transform: rotate(90deg);
}

#header .nav-icon .count-box {
 position: absolute;
 line-height: 18px;
 height: 18px;
 min-width: 18px;
 text-align: center;
 padding: 0 3px;
 font-size: 10px;
 font-weight: 500;
 border-radius: 9999px;
 white-space: nowrap;
 text-overflow: ellipsis;
 display: block;
 overflow: hidden;
 z-index: 2;
 top: -8px;
 right: -10px;
 color: var(--white);
 background-color: var(--primary);
}

.d-grid {
    display: grid !important
}

#header .nav-icon .nav-icon-item:hover {
    color: var(--primary);
}

@media (max-width: 767px) {
    .top-header-cl{
        margin-left: -72px;
    }
}

.position-relative {
    position: relative;
}

/* end header 2 style */

.category_image_layout{
    aspect-ratio: 1/1.2;
    object-fit: cover;
    object-position: top;
    width: 100%;
}

.line_h_0{
    line-height: 1 !important;
}

.header_1_search_icon{
    position: absolute;
    top: 11px;
    right:11px;
}

.aspect_1_2{
    aspect-ratio:1/1.5;
    object-fit:cover;
    object-position:top;
}

.aspect_2_3{
    aspect-ratio:2/3;
    object-fit:cover;
    object-position:top;
}

.aspect_2_2p4{
    aspect-ratio:2/2.4;
    object-fit:cover;
    object-position:top;
}

.aspect_2_2p5{
    aspect-ratio:2/2.5;
    object-fit:cover;
    object-position:top;
}

.aspect_2_2p6{
    aspect-ratio:2/2.6;
    object-fit:cover;
    object-position:top;
}

.aspect_2_2p7{
    aspect-ratio:2/2.7;
    object-fit:cover;
    object-position:top;
}

.aspect_2_2p8{
    aspect-ratio:2/2.8;
    object-fit:cover;
    object-position:top;
}

.aspect_2_2p9{
    aspect-ratio:2/2.9;
    object-fit:cover;
    object-position:top;
}

.object_fit_cover{
    object-fit: cover;
    object-position: top;
}

.brand_1_img{
    height: 100px !important;
    width: 100px !important;
}

.a_to_button_1{
    border: none !important;
    background-color: transparent !important;
}

.a_to_button_2{
    border: none !important;
    background-color: transparent !important;
}

.a_to_button_2{
    border: none !important;
    background-color: transparent !important;
}

.dark-black-text {
    color: #000 !important;
}

.light-img{
    background-color: white !important;
}

.a_to_button_bordr{
    border: none !important;
}

.custom-placeholder-style::placeholder {
    color: #4a4a4a;
    opacity: 1;
    font-weight: bold;
}

.header_search_input {
    background-color: #ffffff;
    color: #333333;
}

.mw-90{
    width:90px;
}

.underline-none{
    text-decoration: none;
}

.mx-1400{
    max-width: 1400px;
    margin:auto;
}

.grid-4-text{
    width:95%;aspect-ratio:2/1;overflow:scroll;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.responsive-table{
    width:100%;
    overflow-x: scroll;
}

.popup_img{
    width:auto;
    aspect-ratio: 1/2;
    object-fit: cover;
    object-position: top;
    max-height: 500px;

}

.frontend_header_logo{
    width: 80px;
    height: auto;

}

@media (max-width:992px) {
    .frontend_header_logo{
        width: 60px;
        height: auto;
    }
}

@media (max-width:600px) {
    .frontend_header_logo{
        width: 50px;
        height: auto;
    }
}

.slider_with_category{
    width: 100%;
    max-height: 500px;
    border-radius: 10px;
}

.set_h_w_slider{
    aspect-ratio: 16/9;
    max-height: 700px;
    overflow: hidden;
}

.object-fit-top{
    object-fit: cover;
    object-position: top;
}

.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
  }

.table td {
    padding: 0.30rem;
    padding-left:10px;
    line-height: 2;
    border-top: 1px solid #dee2e6;
}

.table th{
    padding: 0.70rem;
    padding-left:10px;
    border-top: 1px solid #dee2e6;
}

/* .user_login_free{
    max-height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
} */

/* end header 2 style */

.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    background-color: transparent;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    background-color: #f8f9fa;
    color: #495057;
    font-weight: 600;
}

.table tbody + tbody {
    border-top: 2px solid #dee2e6;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

/* Custom table styling */

.table-custom {
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.table-custom thead th {
    background-color: #393a3a;
    color: #fff;
    border-bottom: none;
}

.table-custom tbody tr {
    transition: background-color 0.3s ease;
}

.table-custom tbody tr:hover {
    background-color: #f1f1f1;
}

.table-custom tbody td {
    border-top: 1px solid #e9ecef;
}

.table-custom tbody tr:last-child td {
    border-bottom: none;
}

/* Responsive table */

@media (max-width: 767.98px) {
    .table-responsive {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table-responsive > .table {
        margin-bottom: 0;
    }
}

.brand-line-he {
    line-height: 4 !important;
}

/* Product Image */

.tf-cur {
    display: flex;
    gap: 28px;
  }

.tf-payment {
    display: flex;
    gap: 10px;
  }

.tf-toolbar-bottom {
    display: none;
    padding: 0 5px;
    overflow-x: auto;
    overflow-y: hidden;
    position: fixed;
    z-index: 200;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 -4px 10px 0 rgba(0, 0, 0, 0.08);
  }

.tf-toolbar-bottom .toolbar-item {
    flex: 1 0 20%;
    position: relative;
  }

.tf-toolbar-bottom .toolbar-item a {
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    height: 67px;
    gap: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

.tf-toolbar-bottom .toolbar-item a .toolbar-icon {
    width: 18px;
    height: 18px;
    position: relative;
  }

.tf-toolbar-bottom .toolbar-item a .toolbar-icon i {
    font-size: 18px;
    color: var(--main);
  }

.tf-toolbar-bottom .toolbar-item a .toolbar-icon .toolbar-count {
    position: absolute;
    top: -6px;
    right: -12px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 500;
    line-height: 18px;
    color: var(--white);
  }

.tf-toolbar-bottom .toolbar-item a .toolbar-label {
    font-size: 12px;
    font-weight: 600;
    line-height: 12px;
  }

.tf-toolbar-bottom .toolbar-item.active::before {
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
  }

.tf-toolbar-bottom .toolbar-item.active .toolbar-icon i {
    color: var(--primary);
  }

/*------------ tabs ---------------- */

.widget-tabs .widget-menu-tab .item-title:not(.default) {
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    cursor: pointer;
    position: relative;
  }

.widget-tabs .widget-menu-tab .item-title:not(.default)::after {
    position: absolute;
    content: "";
    background-color: var(--main);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

.widget-tabs .widget-content-tab {
    position: relative;
    overflow: hidden;
  }

.widget-tabs .widget-content-tab .widget-content-inner {
    padding: 35px;
    display: block;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    transition-timing-function: ease-in;
    transition-duration: 0.2s;
  }

.widget-tabs .widget-content-tab .widget-content-inner.active {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 2;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    transition-timing-function: ease-out;
    transition-duration: 0.3s;
    transition-delay: 0.3s;
  }

.widget-tabs.style-has-border {
    border: 1px solid var(--line);
  }

.widget-tabs.style-has-border .widget-menu-tab {
    display: flex;
    gap: 10px 50px;
    margin: 0 38px;
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
  }

.widget-tabs.style-has-border .widget-menu-tab .item-title {
    padding: 15px 0;
    min-width: max-content;
  }

.widget-tabs.style-has-border .widget-menu-tab .item-title::after {
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
  }

.widget-tabs.style-has-border .widget-menu-tab .item-title.active::after {
    width: 100%;
  }

/*------------ slider banner ---------------- */

.wrap-slider {
    position: relative;
  }

.wrap-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.wrap-slider .box-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

.wrap-slider .box-content .heading, .wrap-slider .box-content h1 {
    margin-bottom: 18px;
  }

.wrap-slider .box-content .heading.mb_38, .wrap-slider .box-content h1.mb_38 {
    margin-bottom: 38px;
  }

.wrap-slider .box-content p {
    margin-bottom: 48px;
    font-size: 20px;
    line-height: 24px;
  }

.wrap-slider .box-content p.mb_15 {
    margin-bottom: 15px;
  }

.wrap-slider .box-content p.sale_off {
    background-color: #ff5c39;
    padding: 5px 20px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
  }

.tf-slideshow {
    overflow: hidden;
  }

.tf-slideshow .wrap-pagination {
    position: absolute;
    z-index: 10;
    bottom: 57px;
    left: 0;
    right: 0;
  }

.tf-slideshow .sw-absolute-3 {
    right: 3%;
    left: unset;
    width: auto;
  }

.tf-slideshow .sw-absolute-3 .sw-dots {
    flex-direction: column;
  }

.tf-slideshow .card-box {
    padding: 64px 48px 70px;
    border-radius: 10px;
    max-width: 550px;
  }

.tf-slideshow .card-box .heading {
    margin-bottom: 38px;
  }

.tf-slideshow .subheading {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 22.4px;
  }

.slider-skincare .sw-absolute-3 {
    top: 50%;
    transform: translateY(-50%);
    bottom: unset;
  }

.swiper-slide .box-content {
    opacity: 0;
  }

.swiper-slide.swiper-slide-active .box-content {
    opacity: 1;
  }

/*------------ button ---------------- */

.tf-btn {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    will-change: background-color, color, border;
    pointer-events: auto;
    overflow: hidden;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    box-sizing: border-box;
    padding: 14px 24px;
    display: inline-flex;
    border-radius: 3px;
    align-items: center;
    border: 1px solid transparent;
    background-color: transparent;
    cursor: pointer;
  }

.tf-btn.hover-icon .icon {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transform: scale(0);
    transform-origin: right;
    width: 0;
    display: inline-block;
    font-size: 9px;
  }

.tf-btn.hover-icon:hover .icon {
    transform: scale(1);
    width: 10px;
    min-width: 10px;
    margin-inline-start: 8px;
  }

.tf-btn span {
    z-index: 1;
    color: inherit;
  }

.tf-btn.btn-primary {
    background-color: var(--primary);
    color: var(--white);
  }

.tf-btn.btn-primary-main {
    background-color: var(--primary);
    color: var(--main);
  }

.btn-icon .icon {
    margin-inline-start: 8px;
    display: inline-block;
    font-size: 9px;
  }

.btn-xl {
    padding: 0px 30px;
    font-size: 18px;
    line-height: 50px;
  }

.btn-xl .icon {
    font-weight: 600;
    margin-inline-start: 12px;
    font-size: 12px;
  }

.btn-md {
    padding: 0 30px;
    min-height: 46.8px;
  }

.btn-sm {
    padding-left: 18px;
    padding-right: 18px;
  }

.btn-fill {
    background-color: var(--main);
    border: 1px solid var(--main);
    color: var(--white);
  }

.btn-outline {
    background-color: var(--white);
    border: 1px solid var(--main);
  }

.btn-outline-2 {
    background-color: var(--white);
    border: 1px solid #ebebeb;
  }

.btn-outline-dark {
    background-color: transparent;
    border: 1px solid var(--main);
    color: var(--main);
    font-weight: 400;
    gap: 12px;
  }

.btn-outline-dark i {
    font-size: 10px;
  }

.btn-outline-dark:hover {
    color: var(--primary);
    border-color: var(--primary);
  }

.btn-outline-light {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
  }

.btn-outline-light:hover {
    color: var(--primary);
    border-color: var(--primary);
  }

.fill-outline-light {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
  }

.fill-outline-light:hover {
    color: var(--main);
    border-color: var(--white);
    background-color: var(--white);
  }

.btn-line {
    padding: 0;
    padding-bottom: 7px;
    color: var(--main);
    position: relative;
  }

.btn-line .icon {
    margin-inline-start: 8px;
    display: inline-block;
    font-size: 8px;
  }

.btn-line::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background-color: var(--main);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

.btn-line:hover {
    color: var(--primary);
  }

.btn-line:hover::after {
    background-color: var(--primary);
  }

.btn-line.collection-other-link {
    padding-bottom: 4px;
  }

.btn-line-light {
    color: var(--white);
  }

.btn-line-light::after {
    background-color: var(--white);
  }

.btn-light {
    background-color: var(--white);
  }

.btn-light .icon {
    color: var(--white);
  }

.btn-light:hover {
    background-color: var(--main);
  }

.btn-light-icon {
    background-color: var(--white);
  }

.btn-fill-line {
    border: 1px solid var(--main) !important;
  }

.btn-fill-line:hover {
    border-color: transparent !important;
  }

.tf-check-color {
    position: relative;
    cursor: pointer;
    outline: 0;
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    min-width: 16px;
    border: 1px solid transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: box-shadow 0.25s cubic-bezier(0, 0, 0.44, 1.18);
  }

.tf-check-color:checked::before {
    opacity: 1;
    transform: scale(1);
  }

.tf-check-color::before {
    font-family: "icomoon";
    content: "\e911";
    position: absolute;
    color: var(--white);
    opacity: 0;
    font-size: 8px;
    transform: scale(0);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

.tf-check-color.bg_white {
    border-color: var(--line);
  }

.tf-check-color.bg_white::before {
    color: var(--main);
  }

.tf-dropdown-sort {
    border-radius: 3px;
    padding: 6px 8px;
    min-width: 100px;
    border: 1px solid var(--line-2);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

.tf-dropdown-sort .btn-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

.tf-dropdown-sort .btn-select .icon {
    font-size: 7px;
  }

.tf-dropdown-sort .text-sort-value {
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    line-height: 22px;
  }

.tf-dropdown-sort .dropdown-menu {
    margin: 6px !important;
    margin-top: 10px !important;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
    min-width: 180px;
    border: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 0;
    max-height: 68vh;
    isolation: isolate;
    overscroll-behavior-y: contain;
    overflow-y: auto;
  }

.tf-dropdown-sort .dropdown-menu::-webkit-scrollbar {
    width: 5px;
  }

.tf-dropdown-sort .dropdown-menu::-webkit-scrollbar-track {
    background-color: var(--bg-scrollbar-track);
  }

.tf-dropdown-sort .dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--bg-scrollbar-thumb);
    border-radius: 4px;
  }

.tf-dropdown-sort .select-item {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    padding: 0 20px;
    line-height: 30px;
    width: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

.tf-dropdown-sort .select-item::after {
    height: 100%;
    content: "";
    width: 6px;
    position: absolute;
    z-index: 2;
    left: 3px;
    top: 0;
    background-color: var(--white);
  }

.tf-dropdown-sort .select-item::before {
    left: 0;
    width: 3px;
    height: 100%;
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    background-color: var(--white);
    border-radius: 0 3px 3px 0;
  }

.tf-dropdown-sort .select-item.active {
    background-color: var(--bg-11);
    color: var(--main);
  }

.tf-dropdown-sort .select-item.active::before {
    background-color: var(--main);
  }

.tf-dropdown-sort .select-item:hover {
    background-color: var(--bg-11);
    color: var(--main);
  }

.tf-dropdown-sort:hover {
    border-color: var(--main);
  }

.tf-dropdown-sort.full .dropdown-menu {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

.tf-dropdown-sort.full .select-item {
    line-height: 40px;
  }

.tf-dropdown-sort.has-color .select-item {
    display: flex;
    gap: 6px;
    align-items: center;
  }

.tf-dropdown-sort.has-color .box-color {
    width: 15px;
    height: 15px;
  }

.tf-product-form {
    margin-top: 24px;
    border-radius: 5px;
    background-color: var(--bg-11);
    padding: 25px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

.tf-product-form p {
    font-size: 12px;
    line-height: 19px;
  }

.tf-product-form .tf-field textarea {
    height: 163px;
    padding-left: 20px;
  }

.tf-product-form .tf-field textarea + label {
    top: 20px;
  }

.tf-product-form .tf-field input {
    padding-left: 20px;
  }

.tf-product-form .tf-field input[type=date] {
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 16px 0px;
    width: 213px;
    height: 68px;
    padding-top: 28px;
    color: var(--main);
  }

.tf-product-form .tf-field input[type=date] + label {
    top: 20px;
  }

.tf-product-form .tf-field label {
    left: 20px;
    color: var(--text-3);
    font-size: 12px;
  }

#subscribe-form textarea {
    height: 235px;
  }

#subscribe-form.mw-705 button {
    min-width: 215px;
  }

#recover:target ~ #login,
  #recover {
    display: none;
  }

#recover:target {
    display: block;
  }

.select-custom {
    position: relative;
  }

.select-custom .tf-select {
    appearance: none;
    background-color: transparent;
  }

.select-custom::after {
    font-family: "icomoon";
    position: absolute;
    content: "\e904";
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 6px;
    z-index: -1;
  }

.flat-subscrite-wrap .form-newsletter {
    max-width: 520px;
    margin: auto;
  }

.flat-subscrite-wrap .subscribe-content {
    display: flex;
    align-items: center;
    gap: 9px;
  }

.flat-subscrite-wrap .subscribe-content .email {
    flex-grow: 1;
  }

.flat-subscrite-wrap .subscribe-content input {
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 0;
  }

.flat-subscrite-wrap .subscribe-content input:focus {
    border: 1px solid var(--main);
  }

.tf-form-search {
    position: relative;
  }

.tf-form-search .search-box {
    position: relative;
  }

.tf-form-search .search-box .tf-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
    background-color: var(--main);
    border-radius: 60px;
    width: 81px;
    height: 36px;
    justify-content: center;
    outline: none;
    border: 1px solid var(--line);
  }

.tf-form-search .search-box .tf-btn .icon {
    font-size: 18px;
    color: var(--white);
  }

.tf-form-search .search-box .tf-btn:hover {
    background-color: var(--primary);
  }

.tf-form-search .search-suggests-results {
    border-radius: 10px;
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    left: 0;
    z-index: 1000;
    /* width: 1600px; */
    height: auto;
    background-color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: all 0.1s ease-in-out;
    max-width: 100%;
    box-shadow: 0 1px 5px 2px #ebebeb;
    pointer-events: none;
  }

.tf-form-search .search-suggests-results .search-suggests-results-inner {
    overflow: auto;
    overflow-x: hidden;
    padding: 20px;
    max-height: calc(95vh - 183px);
  }

.tf-form-search .search-suggests-results .search-suggests-results-inner::-webkit-scrollbar {
    width: 5px;
    border-radius: 5px;
  }

.tf-form-search .search-suggests-results .search-suggests-results-inner::-webkit-scrollbar-track {
    background-color: var(--line);
  }

.tf-form-search .search-suggests-results .search-suggests-results-inner::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.16);
    border-radius: 10px;
  }

.tf-form-search:hover .search-suggests-results {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

.tf-form-search .search-suggests-results-inner .search-result-item {
    display: flex;
    gap: 15px;
  }

.tf-form-search .search-suggests-results-inner .search-result-item .box-content {
    flex-grow: 1;
  }

.tf-form-search .search-suggests-results-inner .search-result-item .box-content .title {
    color: #000000;
  }

.tf-form-search .search-suggests-results-inner .search-result-item .box-content .price {
    color: #000000;
    font-weight: 600;
  }

.tf-form-search .search-suggests-results-inner .search-result-item .box-content .old-price {
    text-decoration: line-through;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.55);
  }

.tf-form-search .search-suggests-results-inner .search-result-item .box-content .new-price {
    color: rgb(219, 18, 21);
    font-weight: 600;
  }

.tf-form-search .search-suggests-results-inner .search-result-item .img-box {
    width: 60px;
    height: 84px;
  }

.tf-form-search .search-suggests-results-inner .search-result-item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.tf-form-search .search-suggests-results-inner li:not(:last-child) .search-result-item {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: solid 1px var(--line);
  }

.wd-form-address {
    margin: 20px 0px 40px;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid var(--line);
  }

.wd-form-address .title {
    font-size: 28px;
    line-height: 33.6px;
    margin: 20px 0px;
  }

.wd-form-address .box-field {
    margin-bottom: 15px;
  }

.wd-form-address .tf-select {
    height: 50px;
  }

.wd-form-order {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--line);
  }

.wd-form-order .order-head {
    display: flex;
    align-items: center;
    border-bottom: 1px dashed var(--line);
    padding-bottom: 20px;
    margin-bottom: 30px;
    gap: 12px;
  }

.wd-form-order .order-head .img-product {
    width: 80px;
    height: 80px;
    border: 1px solid var(--line);
    border-radius: 3px;
  }

.wd-form-order .order-head .img-product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

.wg-quantity .quantity-product {
    pointer-events: none;
  }

.tab-reviews .tab-reviews-heading {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
  }

.tab-reviews .tab-reviews-heading .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    width: 100%;
    max-width: 597px;
    gap: 30px;
  }

.tab-reviews .tab-reviews-heading .list-star {
    display: flex;
    gap: 2px;
    justify-content: center;
    margin-bottom: 7px;
    margin-top: 1px;
    font-size: 17px;
  }

.tab-reviews .tab-reviews-heading .list-star .icon {
    color: var(--yellow);
  }

.tab-reviews .rating-score {
    width: 100%;
    max-width: 365px;
  }

.tab-reviews .rating-score .item {
    width: 100%;
    display: flex;
    align-items: center;
  }

.tab-reviews .rating-score .item:not(:last-child) {
    margin-bottom: 4px;
  }

.tab-reviews .rating-score .number-1 {
    width: 12px;
    text-align: end;
  }

.tab-reviews .rating-score .icon {
    font-size: 15px;
    margin-left: 4px;
    color: var(--yellow);
  }

.tab-reviews .rating-score .number-2 {
    width: 17px;
  }

.tab-reviews .rating-score .line-bg {
    margin: 0 8px;
    width: 100%;
    height: 8px;
    background-color: var(--line);
  }

.tab-reviews .rating-score .line-bg div {
    height: 100%;
    background-color: var(--yellow);
  }

.write-cancel-review-wrap .write-review-wrap,
  .write-cancel-review-wrap .btn-cancel-review {
    display: none;
  }

.write-cancel-review-wrap.write-review .cancel-review-wrap,
  .write-cancel-review-wrap.write-review .btn-write-review {
    display: none;
  }

.write-cancel-review-wrap.write-review .write-review-wrap,
  .write-cancel-review-wrap.write-review .btn-cancel-review {
    display: block;
  }

.reply-comment .reply-comment-heading {
    margin-bottom: 24px;
  }

.reply-comment .reply-comment-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

.reply-comment .reply-comment-item:not(:last-child) {
    margin-bottom: 20px;
  }

.reply-comment .reply-comment-item:not(:last-child) .content {
    border-bottom: 1px solid var(--line);
  }

.reply-comment .reply-comment-item .user {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

.reply-comment .reply-comment-item h6 {
    margin-bottom: 2px;
  }

.reply-comment .reply-comment-item.type-reply {
    margin-left: 60px;
    border-left: 4px solid var(--line);
    padding-left: 16px;
  }

.reply-comment .reply-comment-item.type-reply .image {
    width: 52px;
    height: 52px;
  }

.reply-comment .reply-comment-item .image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
  }

.reply-comment .reply-comment-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.reply-comment .reply-comment-item .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 20px;
  }

.reply-comment .reply-comment-item .content .text-button {
    color: var(--primary);
  }

/*------------ product ---------------- */

.thumbs-slider1,
  .thumbs-slider2,
  .thumbs-slider3,
  .thumbs-slider4,
  .thumbs-slider {
    display: flex;
    gap: 10px;
  }

.tf-product-media-thumbs {
    width: calc(14% - 10px);
    max-height: 846px;
  }

.tf-product-media-thumbs .swiper-slide {
    height: max-content;
  }

.tf-product-media-thumbs .swiper-slide .item {
    position: relative;
    height: 100%;
  }

.tf-product-media-thumbs .swiper-slide .item img {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.tf-product-media-thumbs .swiper-slide .item::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    border: 2px solid transparent;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 5px;
  }

.tf-product-media-thumbs .swiper-slide.swiper-slide-thumb-active .item::after {
    border: 2px solid var(--main);
  }

.thumbs-bottom .thumbs-slider {
    flex-direction: column;
  }

.thumbs-bottom .thumbs-slider .tf-product-media-thumbs {
    order: 1;
    width: 100%;
  }

.thumbs-bottom .thumbs-slider .tf-product-media-thumbs .swiper-slide {
    width: 119px;
  }

.thumbs-bottom .thumbs-slider .tf-product-media-main {
    width: 100%;
  }

.thumbs-bottom .thumbs-slider1 {
    flex-direction: column;
  }

.thumbs-bottom .thumbs-slider1 .tf-product-media-thumbs {
    order: 1;
    width: 100%;
  }

.thumbs-bottom .thumbs-slider1 .tf-product-media-thumbs .swiper-slide {
    width: 119px;
  }

.thumbs-bottom .thumbs-slider1 .tf-product-media-main1 {
    width: 100%;
  }

.thumbs-bottom .thumbs-slider2 {
    flex-direction: column;
  }

.thumbs-bottom .thumbs-slider2 .tf-product-media-thumbs {
    order: 1;
    width: 100%;
  }

.thumbs-bottom .thumbs-slider2 .tf-product-media-thumbs .swiper-slide {
    width: 119px;
  }

.thumbs-bottom .thumbs-slider2 .tf-product-media-main2 {
    width: 100%;
  }

.thumbs-bottom .thumbs-slider3 {
    flex-direction: column;
  }

.thumbs-bottom .thumbs-slider3 .tf-product-media-thumbs {
    order: 1;
    width: 100%;
  }

.thumbs-bottom .thumbs-slider3 .tf-product-media-thumbs .swiper-slide {
    width: 119px;
  }

.thumbs-bottom .thumbs-slider3 .tf-product-media-main3 {
    width: 100%;
  }

.thumbs-bottom .thumbs-slider4 {
    flex-direction: column;
  }

.thumbs-bottom .thumbs-slider4 .tf-product-media-thumbs {
    order: 1;
    width: 100%;
  }

.thumbs-bottom .thumbs-slider4 .tf-product-media-thumbs .swiper-slide {
    width: 119px;
  }

.thumbs-bottom .thumbs-slider4 .tf-product-media-main4 {
    width: 100%;
  }

.tf-product-media-main1,
  .tf-product-media-main2,
  .tf-product-media-main3,
  .tf-product-media-main4,
  .tf-product-media-main {
    width: 86%;
  }

.tf-product-media-main1 .item,
  .tf-product-media-main2 .item,
  .tf-product-media-main3 .item,
  .tf-product-media-main4 .item,
  .tf-product-media-main .item {
    width: 100%;
    height: 100%;
    max-height: 846px;
  }

.tf-product-media-main1 .item img,
  .tf-product-media-main2 .item img,
  .tf-product-media-main3 .item img,
  .tf-product-media-main4 .item img,
  .tf-product-media-main .item img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.tf-product-info-list {
    padding-left: 25px;
  }

.tf-product-info-list > div:not(:last-child) {
    margin-bottom: 30px;
  }

.tf-product-info-title {
    margin-bottom: 20px !important;
  }

.tf-product-info-badges {
    margin-bottom: 18px !important;
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
  }

.tf-product-info-badges .badges {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--main);
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    line-height: 29px;
  }

.tf-product-info-badges .product-status-content {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

.tf-product-info-badges .product-status-content svg {
    animation: tf-ani-flash 2s infinite;
  }

.tf-product-info-badges .product-status-content i {
    font-size: 20px;
    color: var(--primary);
    animation: tf-ani-flash 2s infinite;
  }

.tf-product-info-price {
    display: flex;
    gap: 10px;
    align-items: center;
  }

.tf-product-info-price .price {
    color: var(--main);
    font-size: 28px;
    line-height: 28px;
  }

.tf-product-info-price .price-on-sale {
    color: var(--primary);
    font-size: 28px;
    line-height: 28px;
  }

.tf-product-info-price .compare-at-price {
    color: rgba(0, 0, 0, 0.55);
    font-size: 20px;
    line-height: 20px;
    text-decoration: line-through;
  }

.tf-product-info-price .badges-on-sale {
    background-color: rgb(252, 87, 50);
    border-radius: 28px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 28px;
    color: var(--white);
  }

.tf-product-info-liveview {
    display: flex;
    gap: 10px;
    align-items: center;
  }

.tf-product-info-liveview .liveview-count {
    display: flex;
    justify-content: center;
    min-width: 34px;
    min-height: 24px;
    line-height: 24px;
    color: var(--white);
    background-color: var(--main);
    border-radius: 3px;
    font-weight: 600;
  }

.tf-product-info-countdown .countdown-wrap {
    display: inline-block;
    padding: 16px 30px;
    border: 1px solid var(--primary);
    border-radius: 2.5px;
    text-align: center;
    min-width: 367px;
  }

.tf-product-info-countdown .countdown-wrap .countdown-title {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }

.tf-product-info-countdown .countdown-wrap .countdown-title i {
    font-size: 14px;
    color: var(--main);
  }

.tf-product-info-countdown .countdown-wrap .countdown-title p {
    font-size: 10px;
    font-weight: 700;
    line-height: 16px;
  }

.tf-ani-tada {
    -webkit-animation: tf-ani-tada 2s infinite;
    animation: tf-ani-tada 2s infinite;
  }

.tf-product-info-variant-picker {
    display: flex;
    gap: 10px;
    flex-direction: column;
  }

.tf-product-item-property input {
    height: 42px;
  }

.tf-product-item-property label {
    font-weight: 400;
    color: var(--text-3);
  }

.tf-product-info-quantity .quantity-title {
    margin-bottom: 5px;
  }

.tf-product-info-buy-button form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

.tf-product-info-buy-button form .btns-full {
    width: 100%;
    margin-top: 10px;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    height: 44px;
    background-color: #ffc520;
    border-radius: 3px;
    font-weight: 500;
    color: rgb(37, 59, 128);
  }

.tf-product-info-buy-button form .btns-full:hover {
    background-color: #f6b600;
  }

.tf-product-info-buy-button form .payment-more-option {
    width: 100%;
    margin-top: 10px;
    text-decoration: underline;
    color: rgb(134, 134, 134);
    text-align: center;
  }

.btns-sold-out {
    opacity: 0.3;
  }

.btns-sold-out::after {
    display: none;
  }

.tf-pickup-availability {
    display: flex;
    gap: 10px;
  }

.tf-pickup-availability a {
    font-size: 12px;
    line-height: 20px;
    text-decoration: underline;
  }

.tf-pickup-availability-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

.tf-pickup-availability-list .tf-pickup-availability-location {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 15px;
  }

.tf-pickup-availability-list .tf-pickup-availability {
    margin-top: 15px;
    margin-bottom: 20px;
  }

.tf-pickup-availability-list .tf-btn {
    margin-top: 14px;
  }

.tf-product-info-extra-link {
    display: flex;
    align-items: center;
    gap: 10px 30px;
    flex-wrap: wrap;
  }

.tf-product-info-extra-link .tf-product-extra-icon {
    display: flex;
    gap: 8px;
    align-items: center;
  }

.tf-product-info-extra-link .tf-product-extra-icon i {
    font-size: 18px;
  }

.tf-product-info-extra-link .tf-product-extra-icon:hover {
    color: var(--primary);
  }

.tf-product-delivery {
    padding: 30px 28px;
    text-align: center;
    display: flex;
    gap: 16px;
    flex-direction: column;
    border-radius: 2.5px;
    border: 1px solid var(--line);
  }

.tf-product-delivery i {
    font-size: 29px;
  }

.tf-product-order {
    display: flex;
    gap: 14px;
    align-items: center;
  }

.tf-product-order .icon i {
    font-size: 24px;
  }

.tf-product-info-trust-seal {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
  }

.tf-product-info-trust-seal .tf-product-trust-mess {
    display: flex;
    gap: 10px;
    align-items: center;
  }

.tf-product-info-trust-seal .tf-product-trust-mess i {
    font-size: 21px;
    color: var(--main);
  }

.find-size {
    text-decoration: underline !important;
    text-underline-offset: 5px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
  }

.find-size:hover {
    color: var(--primary);
  }

/* ------ zoom ---------------- */

.tf-zoom-main {
    position: sticky;
    top: 30px;
    z-index: 50;
  }

.tf-zoom-main .drift-zoom-pane {
    top: 0;
    left: 0;
    height: 520px;
    max-width: 520px;
    width: 100%;
    background: #fff;
    -webkit-transform: translate3d(0, 0, 0);
    box-shadow: 0 1px 5px rgba(127, 127, 127, 0.0196078431), 0 5px 18px rgba(127, 127, 127, 0.2);
    z-index: 3;
  }

.drift-bounding-box.drift-open {
    background: rgba(255, 255, 255, 0.2509803922);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4) inset;
    z-index: 5000;
  }

.drift-zoom-pane {
    z-index: 5000;
  }

.section-image-zoom .other-image-zoom {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

.section-image-zoom.zoom-active .other-image-zoom {
    opacity: 0.3;
  }

.pswp__bg {
    background: var(--white);
  }

.pswp__icn {
    fill: rgb(34, 34, 34);
    color: var(--white);
  }

.pswp__icn .pswp__icn-shadow {
    stroke: var(--white);
    stroke-width: 1px;
    fill: none;
  }

.pswp__counter {
    color: #222;
    text-shadow: 1px 1px 3px #ffffff;
  }

.tf-model-viewer {
    width: 100%;
    height: 100%;
    position: relative;
  }

.tf-model-viewer model-viewer {
    display: block;
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
  }

.tf-model-viewer model-viewer.disabled {
    pointer-events: none;
  }

.tf-model-viewer.active model-viewer {
    pointer-events: all;
  }

.tf-model-viewer.active .wrap-btn-viewer {
    display: none;
  }

.products-detail-actions {
    display: inline-flex;
    width: 100%;
    gap: 10px;
  }

/*.add-to-cart-cl-btn {*/

/*  color: #c19a6b;*/

/*}*/

@media only screen and (max-width: 767px) {
    .blog-article-item.style-row {
        flex-direction: column; 
        align-items: start;
        gap: 15px;
       
      }

      .blog-article-item.style-row .article-thumb {
        width: 100%;
        height: unset;
      }  

    .wrap-carousel .nav-sw {
        display: none;
    }
    .wrapper-thumbs-testimonial .box-right {
        width: 100%;
    }
    .wrapper-thumbs-testimonial .box-left {
        display: none;
    }
    .flat-spacing-1 {
        padding: 52px 0px;
    }

    .flat-spacing-3 {
        padding: 30px 0;
    }

    .flat-spacing-4 {
        padding-top: 33px;
        padding-bottom: 60px;
    }

    .flat-spacing-5 {
        padding: 38px 0px;
    }

    .flat-spacing-6 {
        padding: 30px 0px 70px;
    }

    .flat-spacing-7 {
        padding-bottom: 45px;
    }

    .flat-spacing-8 {
        padding-top: 15px;
        padding-bottom: 35px;
    }

    .flat-spacing-9 {
        padding: 48px 0px;
    }

    .flat-spacing-10 {
        padding: 40px 0px;
    }

    .flat-spacing-11 {
        padding-top: 35px;
        padding-bottom: 22px;
    }

    .flat-spacing-12 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .flat-spacing-13 {
        padding-top: 25px;
        padding-bottom: 30px;
    }

    .flat-spacing-14 {
        padding-top: 42px !important;
        padding-bottom: 30px !important;
    }

    .flat-spacing-15 {
        padding-top: 40px;
        padding-bottom: 50px;
    }

    .flat-spacing-16 {
        padding-top: 65px;
        padding-bottom: 32px;
    }

    .flat-spacing-17 {
        padding-top: 30px;
        padding-bottom: 23px;
    }

    .flat-spacing-18 {
        padding-top: 26px;
        padding-bottom: 30px;
    }

    .flat-spacing-19 {
        padding: 50px 0;
    }

    .flat-spacing-21 {
        padding-top: 28px;
        padding-bottom: 35px;
    }

    .flat-spacing-27 {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .flat-spacing-29 {
        padding-top: 19px;
        padding-bottom: 67px;
    }

    .flat-spacing-30 {
        padding-top: 48px;
        padding-bottom: 50px;
    }

    .wrap-carousel .sw-dots {
        display: flex;
        margin-top: 15px;
    }

    .sw-dots .swiper-pagination-bullet {
        width: 16px;
        height: 16px;
    }

    .sw-dots.style-2 span,
    .sw-dots.medium span {
        width: 16px;
        height: 16px;
        border-width: 1px !important;
    }

    .modal-shopping-cart .modal-content {
        max-width: 90% !important;
    }
    .modal-shopping-cart .tf-mini-cart-threshold {
        padding: 10px 0;
    }
    .modal-shopping-cart
        .tf-mini-cart-bottom-wrap
        .tf-mini-cart-view-checkout
        a {
        height: 39px;
    }
    .tf-btn:not(.btn-xl, .btn-md, .btn-line, .style-2, .style-3) {
        padding: 10px 24px;
    }

    .mobile-height-cart {
        height: 750px;
    }

    .modal.fullRight .modal-dialog .modal-content {
        /* bottom: auto; */
    }

    .slider-effect {
        display: flex;
        flex-direction: column-reverse;
    }

    .slideshow-effect .wrap-pagination {
        bottom: 15px;
    }

    .slider-effect .content-left {
        position: unset;
        padding: 40px 0px;
        text-align: center;
    }

    .slider-effect .box-content .heading {
        font-size: 34px !important;
        line-height: 40.8px !important;
    }

    .slider-effect .box-content .desc {
        display: block;
        margin-bottom: 22px;
        font-size: 16px;
        line-height: 19.2px;
    }

    .slider-effect .img-slider {
        width: 100%;
        height: 300px;
    }

    .slideshow-effect .wrap-pagination .sw-dots {
        justify-content: center;
    }

    .tf-btn.btn-xl {
        font-size: 16px;
        line-height: 40px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .flat-title-v2 {
        margin-bottom: 30px;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .discovery-new-item {
        height: auto;
        margin-top: 12px;
        padding: 10px 15px;
        gap: 15px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .discovery-new-item h5 {
        font-size: 20px;
        margin-bottom: 0px;
    }

    .discovery-new-item a {
        width: 40px;
        height: 40px;
    }

    .c5-category-slider {
        height: 250px;
    }

    .three-img-grid-banner.md-col-2 {
        grid-template-columns: auto !important;
    }

    .img-text-3 .grid-img-group .item-2 {
        height: 300px !important;
    }

    .img-text-3.img-text-3-style-2 .grid-img-group .item-1 {
        height: 180px;
    }

    .img-text-3.img-text-3-style-2 .grid-img-group .item-3 {
        height: 180px;
    }

    .tf-slideshow.about-us-page .text {
        font-size: 24px;
        line-height: 29px;
    }

    .tf-slideshow .wrap-slider {
        height: 450px;
    }
    .tf-slideshow .banner-wrapper {
      height: 500px;
    }
    .tf-slideshow.flat-banner-sock .wrap-slider {
      height: 300px;
    }
    .tf-slideshow.slider-grocery .wrap-slider {
      height: 350px;
    }

    h1 {
        font-size: 34px;
        line-height: 40.8px;
    }

    .tf-hero-image-liquid .box-content {
        text-align: center;
    }

    .tf-hero-image-liquid img{
        aspect-ratio: 1/1.4 !important;
    }

    .blog-detail-main-heading .title {
        font-size: 22px !important;
        line-height: 26px !important;
    }

    .toolbar-shop-mobile .sub-nav-menu {
        margin-left: 17px !important;
    }
    
    .toolbar-shop-mobile .sub-menu-level-2 {
      margin-left: 34px !important;
    }


}

/* ////////////////////////////////////////////////////////////// */

@media (min-width: 768px) {
    .flat-title {
        margin-bottom:0px;
    }
    .tf-marquee {
        padding-top: 26px;
        padding-bottom: 26px;
    }

    .tf-marquee .wrap-marquee {
        -webkit-animation: slide-har 10s linear infinite;
        animation: slide-har 10s linear infinite;
    }

    .flat-title .title {
        font-size: 32px;
        line-height: 38.4px;
    }

    .testimonial-item.style-column {
        padding: 44px 36px 24px;
    }

    .testimonial-item.style-column .text {
        margin-bottom: 26px;
    }

    .testimonial-item .text {
        font-size: 18px;
        line-height: 28.8px;
    }

    .flat-iconbox .wrap-iconbox {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .tf-countdown-v2 .countdown__value {
        font-size: 26px;
        line-height: 31.2px;
    }
    .tf-countdown-v2 .countdown__label {
        font-size: 16px;
        line-height: 25.6px;
    }
    .tf-grid-layout {
        gap: 30px;
    }
    .flat-wrap-countdown .tf-content-wrap-v2 {
        text-align: left;
    }

    .collection-item-circle .collection-content {
        margin-top: 30px;
    }
    .testimonial-item.lg .icon {
        font-size: 34px;
    }
    .flat-testimonial-bg-v2 {
        padding: 90px 0px;
    }
    .container-full,
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .tf-hero-image-liquid .box-content .tf-btn {
        margin-top: 36px;
    }

    .collection-item .collection-content {
        bottom: 80px;
    }

    .collection-item.style-left .collection-content {
        bottom: 30px;
        left: 15px;
    }

    .collection-item .collection-title {
        line-height: 42px;
        height: 42px;
        padding: 0 20px;
    }

    .tf-grid-layout {
        gap: 30px;
    }

    .tf-grid-layout.md-col-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .tf-img-with-text .tf-image-wrap {
        order: 1;
    }

    .img-text-3 .tf-content-wrap {
        padding: 20px 20px 20px 20px;
    }

    .tf-content-wrap .heading {
        font-size: 40px;
        line-height: 48px;
    }

    .tf-content-wrap .tf-btn {
        margin-top: 24px;
    }

    .tf-timeline-inner {
        gap: 100px;
        flex-direction: row;
    }
    .tf-timeline-inner::after, .tf-timeline-inner::before {
      position: absolute;
      content: "";
      width: 20px;
      background-color: var(--line);
      height: 1px;
      z-index: 3;
      top: calc(50% + 5px);
    }
    .tf-timeline-inner::before {
      left: calc(50% + 20px);
      transform: translate(-50%);
    }
    .tf-timeline-inner::after {
      right: calc(50% + 20px);
      transform: translate(50%);
    }
    .tf-timeline-inner.tf-timeline-content-end {
      flex-direction: row-reverse;
    }
    .tf-timeline-inner.tf-timeline-content-end .tf-timeline-content {
      text-align: left;
    }
    .tf-timeline-image {
        width: 50%;
    }

    .tf-timeline-content {
        text-align: right;
        width: 50%;
    }

    .tf-slideshow .card-box-2 .title {
        font-size: 20px;
        line-height: 24px;
    }
    .tf-slideshow .card-box-2 .price {
      margin-bottom: 30px;
    }

    .tf-slideshow .banner-wrapper .description {
        font-size: 20px;
        line-height: 24px;
    }

    .slideshow-tee.tf-slideshow .wrap-slider {
        height: 840px;
    }

    .blog-detail .blog-detail-main .tf-article-navigation .icon {
        width: 30px;
        height: 30px;
    }
    
    .blog-detail .blog-detail-main .tf-article-navigation .item {
      gap: 30px;
    }
    
    .blog-detail-main .tf-article-navigation h6 {
      font-size: 20px;
      line-height: 30px;
    }
    
    /* .logo-header img {
        width: 136px;
    } */


}

/* ////////////////////////////////////////////////////////////// */

@media only screen and (max-width: 1149px) {
    .flat-spacing-4 {
        padding-top: 46px;
        padding-bottom: 85px;
    }

    .flat-spacing-5 {
        padding: 64px 0px;
    }

    .flat-spacing-6 {
        padding: 34px 0px 85px;
    }

    .flat-spacing-7 {
        padding-bottom: 50px;
    }

    .flat-spacing-8 {
        padding-top: 30px;
        padding-bottom: 60px;
    }

    .flat-spacing-9 {
        padding: 55px 0px;
    }

    .flat-spacing-10 {
        padding: 46px 0px;
    }

    .flat-spacing-11 {
        padding-top: 68px;
        padding-bottom: 60px;
    }

    .flat-spacing-12 {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    .flat-spacing-13 {
        padding-top: 28px;
        padding-bottom: 34px;
    }

    .flat-spacing-14 {
        padding-top: 70px;
        padding-bottom: 50px;
    }

    .flat-spacing-15 {
        padding-top: 66px;
        padding-bottom: 85px;
    }

    .flat-spacing-16 {
        padding-top: 100px;
        padding-bottom: 55px;
    }

    .flat-spacing-17 {
        padding-top: 85px;
        padding-bottom: 67px;
    }

    .flat-spacing-18 {
        padding-top: 68px;
        padding-bottom: 80px;
    }

    .flat-spacing-23 {
        padding-top: 68px;
        padding-bottom: 80px;
    }

    .flat-spacing-24 {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .flat-spacing-27 {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .flat-spacing-29 {
        padding-top: 22px;
        padding-bottom: 76px;
    }

    .flat-spacing-30 {
        padding-top: 55px;
        padding-bottom: 35px;
    }
    .modal-shopping-cart .header {
        margin: 0 15px;
    }
    .modal-shopping-cart .tf-mini-cart-threshold {
        margin: 0 15px;
    }
    .modal-shopping-cart .tf-mini-cart-bottom-wrap {
        padding: 10px 15px 15px;
    }
    .modal-shopping-cart .tf-mini-cart-bottom-wrap .tf-mini-cart-view-checkout {
        flex-direction: column;
    }

    .slider-effect .box-content .heading {
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 14px;
    }

    .btn-sidebar-style2,
    .btn-sidebar-mobile {
     display: block;
   }

   #left_side_bar_blog_layout{
    display: none;
   }

   .tf-slideshow .sw-absolute-2 .sw-dots {
    justify-content: center;
  }
  .tf-slideshow .card-box {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    width: max-content;
  }
  .tf-slideshow .card-box .tf-btn {
    font-size: 14px;
    line-height: 46px;
  }
  .tf-slideshow .card-box .heading br {
    display: none;
  }
  .tf-slideshow .sw-absolute-3 {
    left: 0;
    right: 0;
  }
  .tf-slideshow .sw-absolute-3 .sw-dots {
    flex-direction: row;
    justify-content: center;
  }

  .header-style-2 .header-bottom .box-navigation {
    display: none;
  }

  .header-style-3 .box-navigation {
    display: none;
  }

  /* .logo-header {
    display: flex;
    justify-content: center;
  } */

  .wrapper-thumbs-testimonial .box-left {
    padding-right: 33px;
    padding-left: 10px;
  }
}

@media (min-width: 1150px) {
    .tf-marquee .wrap-marquee {
        -webkit-animation: slide-har 15s linear infinite;
        animation: slide-har 15s linear infinite;
    }
    .tf-marquee {
        padding-top: 31px;
        padding-bottom: 31px;
    }
    .lg-px_40 {
        padding-left: 40px;
        padding-right: 40px;
    }
    /* .container {
        padding-left: 50px;
        padding-right: 50px;
    } */

    .flat-title {
        margin-bottom:0px;
    }

    .flat-title .title {
        font-size: 42px;
        line-height: 50.4px;
    }

    .flat-iconbox .wrap-iconbox {
        grid-template-columns: repeat(4, 1fr);
    }
    .wrapper-thumbs-testimonial .box-right {
        padding-right: 80px;
    }
    .tf-countdown-v2 .countdown__item {
        padding: 0px 20px;
        min-height: 84px;
        min-width: 90px;
    }
    .tf-countdown-v2 .countdown__value {
        font-size: 32px;
        line-height: 38.4px;
    }
    .collection-item-circle .collection-content {
        margin-top: 45px;
    }
    .testimonial-item .icon {
        margin-bottom: 40px;
    }

    .testimonial-item .rating {
        margin-bottom: 26px;
    }

    .tf-sticky-btn-atc {
        display: block;
    }
    .flat-testimonial-bg-v2 {
        padding: 106px 0px;
    }

    .animate-hover-btn:hover::after {
        animation: shine 0.75s cubic-bezier(0.01, 0.56, 1, 1) !important;
    }

    @keyframes shine {
        100% {
            left: -200%;
        }
    }

    .collection-item .collection-content {
        bottom: 80px;
    }

    .collection-item .collection-title {
        line-height: 46px;
        height: 46px;
        padding: 0 30px;
        font-size: 18px;
    }

    /* .img-text-3.img-text-3-style-2 .tf-image {
        padding: 50px 0px;
    } */

    .tf-image-wrap {
        position: relative;
    }
    .tf-image-wrap::before {
        content: "";
        position: absolute;
        top: -100%;
        left: 0;
        width: 50%;
        height: 100%;
        background: rgb(0, 0, 0);
        transition: 0.25s;
        z-index: 3;
        opacity: 0.1;
    }
    .tf-image-wrap::after {
        content: "";
        position: absolute;
        bottom: -100%;
        right: 0;
        width: 50%;
        height: 100%;
        background: rgb(0, 0, 0);
        transition: 0.25s;
        z-index: 3;
        opacity: 0.1;
    }
    .tf-image-wrap:hover::after {
        bottom: 0;
        transition-delay: 0.25s;
    }
    .tf-image-wrap:hover::before {
        top: 0;
    }

    .tf-img-with-text .tf-content-wrap {
        place-self: center start;
    }

    .img-text-3 .tf-content-wrap {
        padding: 20px 20px 20px 90px;
    }

    .img-text-3.img-text-3-style-2 .subheading {
        font-size: 18px;
    }

    .img-text-3.img-text-3-style-2 .heading {
        font-size: 46px;
        line-height: 55.2px;
    }

    .tf-content-wrap .heading {
        font-size: 52px;
        line-height: 62.4px;
    }

    .tf-content-wrap .tf-btn {
        margin-top: 34px;
    }

    .blog-sidebar-main,
    .blog-list-main {
        display: flex;
        gap: 30px;
      }
      .blog-sidebar-main > .list-blog,
    .blog-list-main > .list-blog {
        width: calc(75% - 15px);
      }
      .blog-sidebar-main > .tf-section-sidebar,
    .blog-list-main > .tf-section-sidebar {
        width: calc(25% - 15px);
      }

      .tf-timeline-inner {
        gap: 190px;
        padding-top: 90px;
        padding-bottom: 90px;
      }
      .tf-timeline-inner::before, .tf-timeline-inner::after {
        width: 40px;
      }
      .tf-timeline-inner::before {
        left: calc(50% + 35px);
      }
      .tf-timeline-inner::after {
        right: calc(50% + 35px);
      }

      .tf-slideshow .banner-wrapper .tf-btn {
        margin-top: 40px;
      }

      .blog-detail .blog-detail-main .tf-article-navigation .icon {
        width: 46px;
        height: 46px;
      }

      .header-default .wrapper-header {
        min-height: 94px;
      }
    
      .header-style-2 .wrapper-header {
        min-height: 68px;
      }
    
      .header-style-3 .wrapper-header {
        min-height: 86px;
      }
    
      .header-style-4 .wrapper-header {
        min-height: 103px;
      }

      .tf-lg-hidden {
        display: none;
      }
      .tf-md-hidden {
        display: block;
      }

      .flat-thumbs-testimonial-v2 .box-left .text {
        font-size: 28px;
        line-height: 44.8px;
      }
    
}

@media only screen and (max-width: 991px) {

}

@media only screen and (max-width: 1200px) {
    .tf-top-bar_wrap .tf-social-icon,
    .tf-top-bar_wrap .top-bar-language,
    .tf-top-bar_left {
        display: none !important;
    }

    .tf-top-bar .grid-3 {
        grid-template-columns: 1fr;
    }
    .wrapper-header .nav-icon {
        gap: 14px;
    }
}

@media (min-width: 1025px) {
    .tf-flash-sale .heading-flash-sale {
        font-size: 42px;
        line-height: 50.4px;
    }
}

@media (min-width: 1441px) {
    .card-product .card-product-wrapper .list-product-btn.absolute-2 {
        bottom: 25px;
    }
    .tf-flash-sale {
        padding: 60px 40px;
    }
    .tf-flash-sale .heading-flash-sale {
        margin-left: 55px;
        padding: 4px 30px;
        gap: 20px;
    }
    .header-default .box-nav-ul {
        gap: 30px;
    }
    .header-default .box-nav-ul.gap-40 {
      gap: 40px;
    }
}

@media (max-width:560px){
    .set-height {
    height: 260px;
    object-fit: fill;
    }
    .remove-padding{
        padding-right: 0px !important;
        padding-left: 0px !important;
    }
}

@media only screen and (max-width: 1024px) {
    .blog-detail-main-heading .title {
        font-size: 32px !important;
        line-height: 38px !important;
    }
}

/* Start header 3 style */

/* Start Root Variables */

:root {
    --main: #000000;
    --white: #ffffff;
    --red_1: #db1215;
    --backdrop: rgba(0, 0, 0, 0.5);
    --yellow: #ffb321;
    --main-rgba-1: rgba(0, 0, 0, 0.16);
    --main-rgba-2: rgba(0, 0, 0, 0.15);
    --text: #545454;
    --text-2: #909090;
    --text-3: #868686;
    --line: #ebebeb;
    --line-2: #ececec;
    --bg-1: #fcfbf9;
    --bg-2: #f6f6f6;
    --bg-3: #fcffb2;
    --bg-4: #c9f4aa;
    --bg-5: #ff7b54;
    --bg-6: #8054ff;
    --bg-7: #f1f0ed;
    --bg-8: #f0edf1;
    --bg-9: #edeef1;
    --bg-10: #fcfbf9;
    --bg-11: #f2f2f2;
    --success: #31a56d;
    --bg-load: #d9d9d9;
    --bg-scrollbar-track: #f1f1f1;
    --bg-scrollbar-thumb: #c1c1c1;

    /* Start variables for header style 3 */
    --colors-d0: #fff;
    --sizes-headerHeight: 4rem;
    --colors-d1: #f5f5f5;
    --spacing-content: clamp(1.2rem, 3vw, 3vw);
    --sizes-headerHeightDesktop: 4.75rem;
    --colors-headerIconTransparent: var(--colors-d0);
    --sizes-maxContentWidth: 100%;
    --colors-inputBg: var(--colors-d1);
}

/* End Root Variables */

/* Header Styling */

.header_3_container {
    position: relative;
    /* height: var(--sizes-headerHeightDesktop, 80px); */
    /* background-color: rgba(0, 0, 0, 0.5); */

}

.header_style_3 {
    position: absolute;
    top: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--sizes-headerHeightDesktop); /* Default desktop height */
    width: 100%;
    padding-inline: var(--spacing-content, 16px);
    margin: 0;
    color: var(--main); /* Default text color */
    background-color: transparent; /* Transparent by default */
    pointer-events: all;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width:600px){
    .header_style_3{
        height:45px !important ;
    }
}

.header_style_3::before {
    content: "";
    height:0%;
    position: absolute;
    inset: 0; /* Covers the entire header */
    background-color:transparent; /* Transparent by default */
    z-index: 1; /* Places it behind the content */
    transition: height 0.3s ease, background-color 0.3s ease;
}

.header_style_3::after {
    content: "";
    height:100%;
    position: absolute;
    inset: 0; /* Covers the entire header */
    background-color: rgba(0, 0, 0, 0.5); /* Transparent by default */
    z-index:-1; /* Places it behind the content */
    transition: height 0.3s ease, background-color 0.3s ease;
}

.header_style_3:hover::before,
.header_style_3.active::before {
    background-color: var(--white);
    height: 100%; /* Full height on hover or active */
}

.header_3_logo{
    position: relative;
    z-index: 100;
}

/* Icons and links inside the header */

.header_style_3 ul li .header_3_icons {
    position: relative;
    z-index:100;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.header_style_3 ul li .header_3_icons:hover {
    background-color: #d9d9d9;
}

.header_style_3 ul li .header_3_icons.active {
    background-color: #d9d9d9;
}

.header_style_3 ul li a i {
    color: var(--white);
    transition: color 0.3s ease;
}

.header_cart_count_3 {
    position: absolute;
    right: 5px;
    top: 3px;
    color: black;
}

.header_style_3:hover .header_cart_count_3,
.header_style_3.active .header_cart_count_3 {
    color: black;
}

.header_style_3:hover ul li a i,
.header_style_3.active ul li a i {
    color: var(--main); /* Black icons on hover or when active */
}

/* Responsive Header Height for Desktop */

@media (min-width: 1024px) {
    .header_style_3 {
        height: var(--sizes-headerHeightDesktop, 80px);
    }
}

/* Search Modal */

.header_3_search_model {
    position: absolute;
    right: 0;
    top: 80px;
    visibility: hidden;
    width: 500px;
    transform: translateY(20px);
    background: var(--white);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-radius: 20px;
}

.header_3_search_model.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* user Modal */

.header_3_user_model {
    position: absolute;
    right: 0;
    top: 80px;
    visibility: hidden;
    width:550;
    transform: translateY(20px);
    background: var(--white);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-radius: 20px;
}

.header_3_user_model.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/*user Modal */

/* cart Modal */

.header_3_cart_model {
    position: absolute;
    right: 0;
    top: 80px;
    visibility: hidden;
    width: 500px;
    max-height: 500px;
    transform: translateY(20px);
    background: var(--white);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-radius: 20px;
}

@media (max-width:600px){
    .header_form_title{
        font-size: 20px !important;
    }
    .header_3_cart_model{
        width:320px;
        padding-top:20px !important;
    }
}

.header_3_cart_model.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/*cart Modal */

/* category Modal */

.header_3_category_model {
    width:70vw;
    height: 70vh;
    position: absolute;
    right: 0;
    top: 80px;
    visibility: hidden;
    transform: translateY(20px);
    background: var(--white);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
}

.header_3_category_model.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/*category Modal */

/* Search Bar Styling */

.search_3_container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 3.5rem;
    color: var(--main);
    background-color: var(--colors-inputBg);
    border-radius: 3.125rem;
    border: 1px solid transparent;
}

.header_3_search_input {
    width: 100%;
    height: 100%;
    padding-left: 20px;
    font-size: 1rem;
    background-color: transparent;
    border: none;
    border-radius: inherit;
    color: #8d8c8c;
}

.header_3_search_input:focus {
    outline: none;
    border: 0.5px solid #838282;

}

/* Additional styles for hover effects */

.header_3_search_model:hover {
    box-shadow: 0 4px 10px var(--main-rgba-1);
}

@media(max-width:550px){
    .header_3_search_model{
        width:320px;
    }
    .header_3_icon_gap{
        gap: 7px !important;
    }
}

.header_style_3.active::before {
    background-color: var(--white);
    box-shadow: 0 4px 10px var(--main-rgba-2); /* Dark background when active */
    height: 100%;
}

.search_3_container .search_button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0.4375rem;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width:36px;
    height: 36px;
    color: white;
    background-color: #505050;
    border: none;
    border-radius:50%;
}

.header_form_title{
    font-size: clamp(1.75rem,1.9vw,2.125rem);
    font-weight:600;
}

.header_3_register_inputs,
.header_3_login_inputs,
 .header_3_forgot_password_inputs {
    background-color: var(--colors-inputBg); /* Background color from variable */
    border-radius: 3.125rem; /* Rounded corners */
    color: var(--main); /* Text color */
    height: 3.5rem; /* Input height */
    border: none; /* Initial border */
    padding-left: 20px; /* Text padding */
    padding-right: 20px;
    transition: border 0.2s ease; /* Smooth border transition */
    outline: none; /* Remove default outline */
}

.header_3_register_inputs:focus,
.header_3_login_inputs:focus,
.header_3_forgot_password_inputs:focus{
    border-width: 1px; /* Thinner border on focus */
    border-style: solid;
    border-color: black;
    background-color: var(--colors-inputBg);
    outline: none !important; /* Remove default outline */
}

.header_3_register_inputs::placeholder,
.header_3_login_inputs::placeholder {
    font-size: 14px;
    font-weight: 200;
    color: #787878;
    transition: font-size 0.2s ease; /* Smooth placeholder transition */
}

.header_3_login_subtitle{
    color: #505050;
    font-weight: 400;
}

.header_3_forgot_password,
.header_3_register_underline,
.header_3_create_title {
    color: #505050;
    font-weight: 400;
    text-decoration: underline; /* Remove underline */
}

.login_user_btn{
    padding-left: 0px;
}

.header_3_forgot_password:hover,
.header_3_create_title:hover {
    text-decoration: none; /* Ensure underline is removed on hover */
}

.header_3_category_links{
    position: relative;
  font-size:clamp(1.125rem,1.1vw,1.25rem);;
  line-height: 2.05;
  transition: padding-left .2s ease-in-out;
  cursor: pointer;
}

.header_3_category_links:hover,
.header_3_category_links.active {
    padding-left: 14px;
}

.header_3_category_links::before {
    position: absolute;
    left: 0;
    color: transparent;
    transition: color 0.2s ease-in-out;
    content: "|";
}

.header_3_category_links:hover::before,
.header_3_category_links.active::before {
    /* Apply the active hover color */
    color: var(--primary); /* Or any color of your choice */
}

.latest_product_conainer {
    width:800px;
    background-color: #c9f4aa;
    height: 100%;
    position: absolute;
    left: 100%;
    top:0;
    opacity: 0; /* Add this for proper transition */
    visibility: hidden;
    transform: translateY(20px);
    background: var(--white);
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow: scroll;
    scroll-behavior: smooth;
}

.latest_product_conainer.visible,
.latest_product_conainer.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Reset position */
}

.header_3_pages_links {
    display: none;
    width:800px;
    background-color: #c9f4aa;
    height: 100%;
    position: absolute;
    left: 100%;
    top:0;
    opacity: 0; /* Add this for proper transition */
    visibility: hidden;
    transform: translateY(20px);
    background: var(--white);
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow: scroll;
    scroll-behavior: smooth;
}

.header_3_pages_links.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Reset position */
}

.header_3_sign_up_container .btn:hover,
.header_3_login_container .btn:hover,
.forgot-password-container .btn:hover {
   opacity:0.8;
}

.left_category_li_list_3{
   height: 380px;
   overflow: scroll;
   scrollbar-width:none;
   scroll-behavior: smooth;

}

.header_3_cart .header_3_cart_items{
    list-style-type: none;
}

.header_3_cart_img{
    width:100px;
    max-width: 100px;
    max-height: 100px;
    aspect-ratio: 1/1;
    object-position: top;
    object-fit: cover;

}

.cart_3_item_title{
    font-size:18px !important;
    font-weight:500 !important;
}

.cart_3_subtitle{
    font-size: 16px !important;
    color: #505050;
}

.cart_3_list_ul{
    max-height: 180px;
    overflow-y: scroll;
    scrollbar-width: 1px;
}

.cart_3_decreament,.cart_3_increament{
    border-radius: 50%;
}

.header_3_icon_gap{
    gap: 25px;
}

/* end header 3 style */

:root {
    --blue: #3490f3;
    --hov-blue: #2e7fd6;
    --soft-blue: rgba(0, 123, 255, 0.15);
    --gray: #9d9da6;
    --gray-dark: #8d8d8d;
    --secondary: #919199;
    --soft-secondary: rgba(145, 145, 153, 0.15);
    --success: #85b567;
    --soft-success: rgba(133, 181, 103, 0.15);
    --warning: #f3af3d;
    --soft-warning: rgba(243, 175, 61, 0.15);
    --light: #f5f5f5;
    --soft-light: #dfdfe6;
    --soft-white: #b5b5bf;
    --dark: #292933;
    --soft-dark: #1b1b28;
}

/* Pagination */

.pagination .page-link,
.page-item.disabled .page-link {
    min-width: 32px;
    min-height: 32px;
    line-height: 32px;
    text-align: center;
    padding: 0;
    border: 1px solid var(--soft-light);
    font-size: 0.875rem;
    border-radius: 0 !important;
    color: var(--dark);
}

.pagination .page-item {
    margin: 0 5px;
}

/* Carousel */

.ub-carousel.coupon-slider .slick-track {
    margin-left: 0;
}

/* Form Controls */

.form-control:focus {
    border-width: 2px !important;
}

/* Modal */

.modal-content {
    border: 0 !important;
    border-radius: 0 !important;
}

/* Tagify */

.tagify.tagify--focus {
    border-width: 2px;
    border-color: var(--primary);
}

/* Map */

#map, #edit_map {
    width: 100%;
    height: 250px;
}

/* Other styles */

.overflow-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.help-no-cl {
    color: black;
}

.help-no {
    text-align: end;
}

.list-style-cl {
    list-style-type: none;
}

.bg_line {
    background-color: var(--line);
}

.set-position {
    position: absolute;
    left: -3%;
    top: 100%;
    width: 1000px;
    z-index: 2 !important;
    box-shadow: 0px 9px 9px rgba(0, 0, 0, 0.05) !important;
}

.set-max-height {
    max-height: 600px;
    overflow-y: auto;
}

.position-unset {
    position: unset;
}

.attribute-menu {
    max-height: 550px;
    overflow-y: auto;
}

.under_line_bottom {
    border-bottom: 2px solid #f2f2f2;
}

.attribute-drop-down-style {
    max-height: 200px;
    overflow-y: auto;
}

.attribute_filter {
    cursor: pointer;
}

.store_image {
    aspect-ratio: 1/1;
    width: 100px;
}

.store-cl {
    display: inline-block;
    width: 100%;
}

.google-icon-cl {
    font-size: 30px;

}

.play_or_app_store {
    height: 50px;
    display: inline-block;
}

.footer .footer-newsletter-cl form .button-submit button {
    height: 41px;
    padding-top: 0;
    padding-bottom: 0;
}

input {
    width: 100%;
    padding-left: 20px;
}

.footer .footer-newsletter-cl form .button-submit {
    position: absolute;
    top: 7px;
    right: 8px;
}

.btn-icon .icon {
    margin-inline-start: 8px;
    display: inline-block;
    font-size: 9px;
}

.footer .footer-newsletter-cl form .button-submit button {
    height: 41px;
    padding-top: 0;
    padding-bottom: 0;
}

.footer .footer-newsletter-cl form .button-submit {
    position: absolute;
    top: 7px;
    right: 8px;
}

.footer .footer-newsletter-cl form input {
    height: 55px;
    padding-right: 143px;
}

.footer .footer-heading {
    margin-bottom: 25px;
}

.footer .footer-heading h6 {
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
}

.footer .footer-menu_item {
    line-height: 30px;
}

.footer .footer-newsletter-cl form {
    margin-top: 27px;
    margin-bottom: 40px;
    position: relative;
}

.box-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tf-top-bar_item {
    gap: 4px;
}

.box-icon a {
    padding: 10px;
}

.box-icon i {
    font-size: 18px;
}
