:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #377dff;
    --hov-primary: #0069d9;
    --soft-primary: rgba(55, 125, 255, 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: #ef922e;
    --soft-warning: rgba(255, 197, 25, 0.15);
    --danger: #c10f06;
    --soft-danger: rgba(193, 15, 6, 0.15);
    --light: #f2f3f8;
    --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;
}
.tagify {
    --tags-border-color: #e2e5ec;
    --tag-bg: #e2e5ec;
    --tag-hover: #d9e6ff;
    --tag-text-color: #212529;
    --tag-text-color--edit: #212529;
    --tag-pad: 0.3rem 0.5rem;
    --tag-inset-shadow-size: 1.1em;
    --tag-invalid-color: #d39494;
    --tag-invalid-bg: rgba(253, 57, 75, 0.5);
    --tag-remove-bg: rgba(253, 57, 75, 0.3);
    --tag-remove-btn-bg: none;
    --tag-remove-btn-bg--hover: #fd394b;
    --tag--min-width: 1ch;
    --tag--max-width: auto;
    --tag-hide-transition: 0.3s;
    --loader-size: 0.8em;
}
pre {
    white-space: initial;
}

/* 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;
}

.img-contain {
    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 {
    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 {
    visibility: visible;
    opacity: 1;
}
.fullscreen {
    min-height: 100vh;
}

.point-location {
    position: absolute;
    -webkit-transform: translate(-50%, -100%);
    -moz-transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
    -o-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
}
.point-location-toggle {
    width: 20px;
    height: 20px;
    background-image: url('https://sportmarine.skwebline.net/public/assets/img/location-icon.png');
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    background-size: contain;
}
.point-location-popup {
    position: absolute;
    left: 50%;
    -webkit-transform: scale(1) translateX(-50%);
    -moz-transform: scale(1) translateX(-50%);
    -ms-transform: scale(1) translateX(-50%);
    -o-transform: scale(1) translateX(-50%);
    transform: scale(1) translateX(-50%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform-origin: bottom left;
    -moz-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    -o-transform-origin: bottom left;
    transform-origin: bottom left;
    bottom: calc(100% + 15px);
    width: 180px;
}
.point-location-popup.bottom {
    top: calc(100% + 15px);
    bottom: auto;
    -webkit-transform-origin: top left;
    -moz-transform-origin: top left;
    -ms-transform-origin: top left;
    -o-transform-origin: top left;
    transform-origin: top left;
}
.point-location-popup::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    margin: auto;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--white);
    width: 0;
}
.point-location-popup.bottom::before {
    border-top: none;
    border-bottom: 10px solid var(--white);
    top: -10px;
    bottom: auto;
}
.point-location-popup-wrap {
    background-color: var(--white);
}
.point-location-popup-image {
    position: relative;
    padding-top: 70%;
}
.point-location.active {
    z-index: 1;
}
.point-location:not(.active) .point-location-popup {
    -webkit-transform: scale(0) translateX(-50%);
    -moz-transform: scale(0) translateX(-50%);
    -ms-transform: scale(0) translateX(-50%);
    -o-transform: scale(0) translateX(-50%);
    transform: scale(0) translateX(-50%);
    pointer-events: none;
}
@media (min-width: 768px) {
    .point-location-toggle {
        width: 35px;
        height: 40px;
    }
}
/*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-1020 {z-index: 1020 !important;}
.z-1035 {z-index: 1035 !important;}
.z-1045 {z-index: 1045 !important;}



.minw-0 {
    min-width: 0;
}
.text-truncate {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
}
.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;
}
.text-truncate-4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.text-truncate-5 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.c-pointer {
    cursor: pointer !important;
}
.c-default {
    cursor: default !important;
}

.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-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;
}

@-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;
    }
}
@media (max-width: 991.98px){
    .mobile-hor-swipe {
        -webkit-overflow-scrolling: touch;
        overflow-x: auto;
        white-space: nowrap;
    }
}
.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; }


.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    max-width: none;
}
.container {
    padding-right: 15px;
    padding-left: 15px;
}
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    padding-right: 0;
    padding-left: 0;
}
.container-right {
    padding-right: 15px;
}
.container-left {
    padding-left: 15px;
}

.small-container {
    padding-right: 10px;
    padding-left: 10px;
}
.small-container-right {
    padding-right: 10px;
}
.small-container-left {
    padding-left: 10px;
}

/*bootstrap extend*/
.fw-100 { font-weight: 100 !important; }
.fw-200 { font-weight: 200 !important; }
.fw-300 { font-weight: 300 !important; }
.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-body-size { font-size: var(--body-size) !important; }
.fs-1em { font-size: 1em !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-25 { font-size: 25px !important; }
.fs-26 { font-size: 26px !important; }
.fs-27 { font-size: 27px !important; }
.fs-28 { font-size: 28px !important; }
.fs-29 { font-size: 29px !important; }
.fs-30 { font-size: 30px !important; }
.fs-31 { font-size: 31px !important; }
.fs-32 { font-size: 32px !important; }
.fs-33 { font-size: 33px !important; }
.fs-34 { font-size: 34px !important; }
.fs-35 { font-size: 35px !important; }
.fs-36 { font-size: 36px !important; }
.fs-37 { font-size: 37px !important; }
.fs-38 { font-size: 38px !important; }
.fs-39 { font-size: 39px !important; }
.fs-40 { font-size: 40px !important; }
.fs-41 { font-size: 41px !important; }
.fs-42 { font-size: 42px !important; }
.fs-45 { font-size: 45px !important; }
.fs-50 { font-size: 50px !important; }
.fs-53 { font-size: 53px !important; }
.fs-55 { font-size: 55px !important; }
.fs-60 { font-size: 60px !important; }
.fs-65 { font-size: 65px !important; }
.fs-70 { font-size: 70px !important; }
.fs-75 { font-size: 75px !important; }
.fs-80 { font-size: 80px !important; }
.fs-87 { font-size: 87px !important; }
.fs-90 { font-size: 90px !important; }
.fs-100 { font-size: 100px !important; }
.fs-110 { font-size: 110px !important; }
.fs-115 { font-size: 115px !important; }
.fs-120 { font-size: 120px !important; }
.fs-140 { font-size: 140px !important; }
.fs-150 { font-size: 150px !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; }
.lh-2-5 { line-height: 2.5 !important; }

.opacity-0 { opacity: 0 !important; }
.opacity-10 { opacity: 0.1 !important; }
.opacity-20 { opacity: 0.2 !important; }
.opacity-30 { opacity: 0.3 !important; }
.opacity-40 { opacity: 0.4 !important; }
.opacity-50 { opacity: 0.5 !important; }
.opacity-60 { opacity: 0.6 !important; }
.opacity-70 { opacity: 0.7 !important; }
.opacity-80 { opacity: 0.8 !important; }
.opacity-90 { opacity: 0.9 !important; }
.opacity-100 { opacity: 1 !important; }

.hov-opacity-0:hover { opacity: 0 !important; }
.hov-opacity-10:hover { opacity: 0.1 !important; }
.hov-opacity-20:hover { opacity: 0.2 !important; }
.hov-opacity-30:hover { opacity: 0.3 !important; }
.hov-opacity-40:hover { opacity: 0.4 !important; }
.hov-opacity-50:hover { opacity: 0.5 !important; }
.hov-opacity-60:hover { opacity: 0.6 !important; }
.hov-opacity-70:hover { opacity: 0.7 !important; }
.hov-opacity-80:hover { opacity: 0.8 !important; }
.hov-opacity-90:hover { opacity: 0.9 !important; }
.hov-opacity-100:hover { opacity: 1 !important; }

.shadow-xs { box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; }
.shadow{ 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 { 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 { 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 { 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 { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; }
.shadow-none { box-shadow: none !important; }

.hov-shadow-xs:hover { box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important; }
.hov-shadow-sm:hover { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; }
.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; }
.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; }
.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; }
.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; }
.hov-shadow-2xl:hover { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; }
.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-default { background-color: var(--default) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-soft-primary { background-color: var(--soft-primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-soft-secondary { background-color: var(--soft-secondary) !important; }
.bg-tertiary { background-color: var(--tertiary) !important; }
.bg-quaternary { background-color: var(--quaternary) !important; }
.bg-quinary { background-color: var(--quinary) !important; }
.bg-success { background-color: var(--success) !important; }
.bg-soft-success { background-color: var(--soft-success) !important; }
.bg-info { background-color: var(--info) !important; }
.bg-soft-info { background-color: var(--soft-info) !important; }
.bg-warning { background-color: var(--warning) !important; }
.bg-soft-warning { background-color: var(--soft-warning) !important; }
.bg-danger { background-color: var(--danger) !important; }
.bg-soft-danger { background-color: var(--soft-danger) !important; }
.bg-dark { background-color: var(--dark) !important; }
.bg-soft-dark { background-color: var(--soft-dark) !important; }
.bg-light { background-color: var(--light) !important; }
.bg-black { background-color: #0d111b !important; }
.bg-yellow { background-color: var(--yellow) !important; }
.bg-gray { background-color: var(--gray) !important; }
.bg-gold { background-color: var(--gold) !important; }

.bg-default-07 { background-color: rgba(35,31,32,0.07) !important; }
.bg-default-10 { background-color: rgba(35,31,32,0.1) !important; }
.bg-default-15 { background-color: rgba(35,31,32,0.15) !important; }
.bg-default-20 { background-color: rgba(35,31,32,0.2) !important; }
.bg-default-30 { background-color: rgba(35,31,32,0.3) !important; }
.bg-default-40 { background-color: rgba(35,31,32,0.4) !important; }
.bg-default-50 { background-color: rgba(35,31,32,0.5) !important; }
.bg-default-60 { background-color: rgba(35,31,32,0.6) !important; }
.bg-default-70 { background-color: rgba(35,31,32,0.7) !important; }
.bg-default-80 { background-color: rgba(35,31,32,0.8) !important; }
.bg-default-90 { background-color: rgba(35,31,32,0.9) !important; }

.bg-secondary-07 { background-color: rgba(239,239,239,0.07) !important; }
.bg-secondary-10 { background-color: rgba(239,239,239,0.1) !important; }
.bg-secondary-20 { background-color: rgba(239,239,239,0.2) !important; }
.bg-secondary-30 { background-color: rgba(239,239,239,0.3) !important; }
.bg-secondary-40 { background-color: rgba(239,239,239,0.4) !important; }
.bg-secondary-50 { background-color: rgba(239,239,239,0.5) !important; }
.bg-secondary-60 { background-color: rgba(239,239,239,0.6) !important; }
.bg-secondary-70 { background-color: rgba(239,239,239,0.7) !important; }
.bg-secondary-80 { background-color: rgba(239,239,239,0.8) !important; }
.bg-secondary-90 { background-color: rgba(239,239,239,0.9) !important; }

.bg-tertiary-10 { background-color: rgba(119,118,116,0.1) !important; }
.bg-tertiary-20 { background-color: rgba(119,118,116,0.2) !important; }
.bg-tertiary-30 { background-color: rgba(119,118,116,0.3) !important; }
.bg-tertiary-40 { background-color: rgba(119,118,116,0.4) !important; }
.bg-tertiary-50 { background-color: rgba(119,118,116,0.5) !important; }
.bg-tertiary-60 { background-color: rgba(119,118,116,0.6) !important; }
.bg-tertiary-70 { background-color: rgba(119,118,116,0.7) !important; }
.bg-tertiary-80 { background-color: rgba(119,118,116,0.8) !important; }
.bg-tertiary-90 { background-color: rgba(119,118,116,0.9) !important; }

.bg-quaternary-10 { background-color: rgba(109,107,100,0.1) !important; }
.bg-quaternary-20 { background-color: rgba(109,107,100,0.2) !important; }
.bg-quaternary-30 { background-color: rgba(109,107,100,0.3) !important; }
.bg-quaternary-40 { background-color: rgba(109,107,100,0.4) !important; }
.bg-quaternary-50 { background-color: rgba(109,107,100,0.5) !important; }
.bg-quaternary-60 { background-color: rgba(109,107,100,0.6) !important; }
.bg-quaternary-70 { background-color: rgba(109,107,100,0.7) !important; }
.bg-quaternary-80 { background-color: rgba(109,107,100,0.8) !important; }
.bg-quaternary-90 { background-color: rgba(109,107,100,0.9) !important; }

.bg-black-07 { background-color: rgba(0,0,0,0.07) !important; }
.bg-black-10 { background-color: rgba(0,0,0,0.1) !important; }
.bg-black-20 { background-color: rgba(0,0,0,0.2) !important; }
.bg-black-30 { background-color: rgba(0,0,0,0.3) !important; }
.bg-black-40 { background-color: rgba(0,0,0,0.4) !important; }
.bg-black-50 { background-color: rgba(0,0,0,0.5) !important; }
.bg-black-60 { background-color: rgba(0,0,0,0.6) !important; }
.bg-black-70 { background-color: rgba(0,0,0,0.7) !important; }
.bg-black-80 { background-color: rgba(0,0,0,0.8) !important; }
.bg-black-90 { background-color: rgba(0,0,0,0.9) !important; }

.bg-white-10 { background-color: rgba(255,255,255,0.1) !important; }
.bg-white-20 { background-color: rgba(255,255,255,0.2) !important; }
.bg-white-30 { background-color: rgba(255,255,255,0.3) !important; }
.bg-white-40 { background-color: rgba(255,255,255,0.4) !important; }
.bg-white-50 { background-color: rgba(255,255,255,0.5) !important; }
.bg-white-60 { background-color: rgba(255,255,255,0.6) !important; }
.bg-white-70 { background-color: rgba(255,255,255,0.7) !important; }
.bg-white-80 { background-color: rgba(255,255,255,0.8) !important; }
.bg-white-90 { background-color: rgba(255,255,255,0.9) !important; }

.hov-bg-primary:hover { background-color: var(--primary) !important; }
.hov-bg-hov-primary:hover { background-color: var(--hov-primary) !important; }
.hov-bg-soft-primary:hover { background-color: var(--soft-primary) !important; }
.hov-bg-secondary:hover { background-color: var(--secondary) !important; }
.hov-bg-soft-secondary:hover { background-color: var(--soft-secondary) !important; }
.hov-bg-success:hover { background-color: var(--success) !important; }
.hov-bg-soft-success:hover { background-color: var(--soft-success) !important; }
.hov-bg-info:hover { background-color: var(--info) !important; }
.hov-bg-soft-info:hover { background-color: var(--soft-info) !important; }
.hov-bg-warning:hover { background-color: var(--warning) !important; }
.hov-bg-soft-warning:hover { background-color: var(--soft-warning) !important; }
.hov-bg-danger:hover { background-color: var(--danger) !important; }
.hov-bg-soft-danger:hover { background-color: var(--soft-danger) !important; }
.hov-bg-dark:hover { background-color: var(--dark) !important; }
.hov-bg-soft-dark:hover { background-color: var(--soft-dark) !important; }
.hov-bg-light:hover { background-color: var(--light) !important; }
.hov-bg-black:hover { background-color: #0d111b !important; }
.hov-bg-white:hover { background-color: #fff !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%); }


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

.spinner-border, .hov-spinner-border:hover{ 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-width-5 { border-width: 5px !important }
.border-width-10 { border-width: 10px !important }
.border-width-15 { border-width: 15px !important }

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

.text-primary { color: var(--primary) !important; }
.text-soft-primary { color: var(--soft-primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-soft-secondary { color: var(--soft-secondary) !important; }
.text-success { color: var(--success) !important; }
.text-soft-success { color: var(--soft-success) !important; }
.text-info { color: var(--info) !important; }
.text-soft-info { color: var(--soft-info) !important; }
.text-warning { color: var(--warning) !important; }
.text-soft-warning { color: var(--soft-warning) !important; }
.text-danger { color: var(--danger) !important; }
.text-soft-danger { color: var(--soft-danger) !important; }
.text-dark { color: var(--dark) !important; }
.text-soft-dark { color: var(--soft-dark) !important; }
.text-light { color: var(--light) !important; }
.text-inherit { color: inherit !important; }
.text-default { color: var(--default) !important; }
.text-black { color: var(--black) !important; }
.text-tertiary { color: var(--tertiary) !important; }
.text-quaternary { color: var(--quaternary) !important; }
.text-yellow { color: var(--yellow) !important; }
.text-green { color: var(--green) !important; }
.text-error { color: var(--error) !important; }
.text-gray { color: var(--gray) !important; }
.text-orange { color: var(--orange) !important; }
.text-gold { color: var(--gold) !important; }

.text-black-10 { color: rgba(0,0,0,0.1) !important; }
.text-black-20 { color: rgba(0,0,0,0.2) !important; }
.text-black-30 { color: rgba(0,0,0,0.3) !important; }
.text-black-40 { color: rgba(0,0,0,0.4) !important; }
.text-black-50 { color: rgba(0,0,0,0.5) !important; }
.text-black-60 { color: rgba(0,0,0,0.6) !important; }
.text-black-70 { color: rgba(0,0,0,0.7) !important; }
.text-black-80 { color: rgba(0,0,0,0.8) !important; }
.text-black-90 { color: rgba(0,0,0,0.9) !important; }

.text-default-10 { color: rgba(35,31,32,0.1) !important; }
.text-default-20 { color: rgba(35,31,32,0.2) !important; }
.text-default-30 { color: rgba(35,31,32,0.3) !important; }
.text-default-40 { color: rgba(35,31,32,0.4) !important; }
.text-default-50 { color: rgba(35,31,32,0.5) !important; }
.text-default-60 { color: rgba(35,31,32,0.6) !important; }
.text-default-70 { color: rgba(35,31,32,0.7) !important; }
.text-default-80 { color: rgba(35,31,32,0.8) !important; }
.text-default-90 { color: rgba(35,31,32,0.9) !important; }

.text-secondary-10 { color: rgba(239,239,239,0.1) !important; }
.text-secondary-20 { color: rgba(239,239,239,0.2) !important; }
.text-secondary-30 { color: rgba(239,239,239,0.3) !important; }
.text-secondary-40 { color: rgba(239,239,239,0.4) !important; }
.text-secondary-50 { color: rgba(239,239,239,0.5) !important; }
.text-secondary-60 { color: rgba(239,239,239,0.6) !important; }
.text-secondary-70 { color: rgba(239,239,239,0.7) !important; }
.text-secondary-80 { color: rgba(239,239,239,0.8) !important; }
.text-secondary-90 { color: rgba(239,239,239,0.9) !important; }

.text-tertiary-10 { color: rgba(119,118,116,0.1) !important; }
.text-tertiary-20 { color: rgba(119,118,116,0.2) !important; }
.text-tertiary-30 { color: rgba(119,118,116,0.3) !important; }
.text-tertiary-40 { color: rgba(119,118,116,0.4) !important; }
.text-tertiary-50 { color: rgba(119,118,116,0.5) !important; }
.text-tertiary-60 { color: rgba(119,118,116,0.6) !important; }
.text-tertiary-70 { color: rgba(119,118,116,0.7) !important; }
.text-tertiary-80 { color: rgba(119,118,116,0.8) !important; }
.text-tertiary-90 { color: rgba(119,118,116,0.9) !important; }

.text-quaternary-10 { color: rgba(109,107,100,0.1) !important; }
.text-quaternary-20 { color: rgba(109,107,100,0.2) !important; }
.text-quaternary-30 { color: rgba(109,107,100,0.3) !important; }
.text-quaternary-40 { color: rgba(109,107,100,0.4) !important; }
.text-quaternary-50 { color: rgba(109,107,100,0.5) !important; }
.text-quaternary-60 { color: rgba(109,107,100,0.6) !important; }
.text-quaternary-70 { color: rgba(109,107,100,0.7) !important; }
.text-quaternary-80 { color: rgba(109,107,100,0.8) !important; }
.text-quaternary-90 { color: rgba(109,107,100,0.9) !important; }

.text-white-10 { color: rgba(255,255,255,0.1) !important; }
.text-white-20 { color: rgba(255,255,255,0.2) !important; }
.text-white-30 { color: rgba(255,255,255,0.3) !important; }
.text-white-40 { color: rgba(255,255,255,0.4) !important; }
.text-white-50 { color: rgba(255,255,255,0.5) !important; }
.text-white-60 { color: rgba(255,255,255,0.6) !important; }
.text-white-70 { color: rgba(255,255,255,0.7) !important; }
.text-white-80 { color: rgba(255,255,255,0.8) !important; }
.text-white-90 { color: rgba(255,255,255,0.9) !important; }

.text-gray-10 { color: rgba(249,249,249,0.1) !important; }
.text-gray-20 { color: rgba(249,249,249,0.2) !important; }
.text-gray-30 { color: rgba(249,249,249,0.3) !important; }
.text-gray-40 { color: rgba(249,249,249,0.4) !important; }
.text-gray-50 { color: rgba(249,249,249,0.5) !important; }
.text-gray-60 { color: rgba(249,249,249,0.6) !important; }
.text-gray-70 { color: rgba(249,249,249,0.7) !important; }
.text-gray-80 { color: rgba(249,249,249,0.8) !important; }
.text-gray-90 { color: rgba(249,249,249,0.9) !important; }

.hov-text-primary:hover,.text-secondary.hov-text-primary:hover { color: var(--primary) !important; }
.hov-text-soft-primary:hover { color: var(--soft-primary) !important; }
.hov-text-secondary:hover { color: var(--secondary) !important; }
.hov-text-soft-secondary:hover { color: var(--soft-secondary) !important; }
.hov-text-success:hover { color: var(--success) !important; }
.hov-text-soft-success:hover { color: var(--soft-success) !important; }
.hov-text-info:hover { color: var(--info) !important; }
.hov-text-soft-info:hover { color: var(--soft-info) !important; }
.hov-text-warning:hover { color: var(--warning) !important; }
.hov-text-soft-warning:hover { color: var(--soft-warning) !important; }
.hov-text-danger:hover { color: var(--danger) !important; }
.hov-text-soft-danger:hover { color: var(--soft-danger) !important; }
.hov-text-dark:hover { color: var(--dark) !important; }
.hov-text-soft-dark:hover { color: var(--soft-dark) !important; }
.hov-text-light:hover { color: var(--light) !important; }
.hov-text-white:hover { color: var(--white) !important; }
.hov-text-default:hover { color: var(--default) !important; }
.hov-text-black:hover { color: var(--black) !important; }
.hov-text-tertiary:hover { color: var(--tertiary) !important; }

.w-1em,.size-1em { width: 1em; }
.w-5px,.size-5px { width: 5px; }
.w-7px,.size-7px { width: 7px; }
.w-10px,.size-10px { width: 10px; }
.w-13px,.size-13px { width: 13px; }
.w-15px,.size-15px { width: 15px; }
.w-17px,.size-17px { width: 17px; }
.w-20px,.size-20px { width: 20px; }
.w-22px,.size-22px { width: 22px; }
.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-50px,.size-50px { width: 50px; }
.w-55px,.size-55px { width: 55px; }
.w-60px,.size-60px { width: 60px; }
.w-65px,.size-65px { width: 65px; }
.w-70px,.size-70px { width: 70px; }
.w-75px,.size-75px { width: 75px; }
.w-80px,.size-80px { width: 80px; }
.w-85px,.size-85px { width: 85px; }
.w-90px,.size-90px { width: 90px; }
.w-95px,.size-95px { width: 95px; }
.w-100px,.size-100px { width: 100px; }
.w-110px,.size-110px { width: 110px; }
.w-120px,.size-120px { width: 120px; }
.w-125px,.size-125px { width: 125px; }
.w-130px,.size-130px { width: 130px; }
.w-140px,.size-140px { width: 140px; }
.w-150px,.size-150px { width: 150px; }
.w-155px,.size-155px { width: 155px; }
.w-160px,.size-160px { width: 160px; }
.w-165px,.size-165px { width: 165px; }
.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-600px,.size-600px { width: 600px; }

.h-1em,.size-1em { height: 1em; }
.h-5px,.size-5px { height: 5px; }
.h-7px,.size-7px { height: 7px; }
.h-10px,.size-10px { height: 10px; }
.h-13px,.size-13px { height: 13px; }
.h-15px,.size-15px { height: 15px; }
.h-17px,.size-17px { height: 17px; }
.h-20px,.size-20px { height: 20px; }
.h-22px,.size-22px { height: 22px; }
.h-25px,.size-25px { height: 25px; }
.h-30px,.size-30px { height: 30px; }
.h-35px,.size-35px { height: 35px; }
.h-40px,.size-40px { height: 40px; }
.h-45px,.size-45px { height: 45px; }
.h-50px,.size-50px { height: 50px; }
.h-55px,.size-55px { height: 55px; }
.h-60px,.size-60px { height: 60px; }
.h-65px,.size-65px { height: 65px; }
.h-70px,.size-70px { height: 70px; }
.h-75px,.size-75px { height: 75px; }
.h-80px,.size-80px { height: 80px; }
.h-85px,.size-85px { height: 85px; }
.h-90px,.size-90px { height: 90px; }
.h-95px,.size-95px { height: 95px; }
.h-100px,.size-100px { height: 100px; }
.h-110px,.size-110px { height: 110px; }
.h-120px,.size-120px { height: 120px; }
.h-125px,.size-125px { height: 125px; }
.h-130px,.size-130px { height: 130px; }
.h-140px,.size-140px { height: 140px; }
.h-150px,.size-150px { height: 150px; }
.h-155px,.size-155px { height: 155px; }
.h-160px,.size-160px { height: 160px; }
.h-165px,.size-165px { height: 165px; }
.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; }
.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-600px,.size-600px { height: 600px; }
.h-auto { height: auto; }

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

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

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

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

.pl-2px,.px-2px,.p-2px { padding-left: 2px !important; }
.pl-3px,.px-3px,.p-3px { padding-left: 3px !important; }
.pl-5px,.px-5px,.p-5px { padding-left: 5px !important; }
.pl-7px,.px-7px,.p-7px { padding-left: 7px !important; }
.pl-10px,.px-10px,.p-10px { padding-left: 10px !important; }
.pl-13px,.px-13px,.p-13px { padding-left: 13px !important; }
.pl-15px,.px-15px,.p-15px { padding-left: 15px !important; }
.pl-20px,.px-20px,.p-20px { padding-left: 20px !important; }
.pl-25px,.px-25px,.p-25px { padding-left: 25px !important; }
.pl-30px,.px-30px,.p-30px { padding-left: 30px !important; }
.pl-35px,.px-35px,.p-35px { padding-left: 35px !important; }
.pl-40px,.px-40px,.p-40px { padding-left: 40px !important; }
.pl-50px,.px-50px,.p-50px { padding-left: 50px !important; }
.pl-60px,.px-60px,.p-60px { padding-left: 60px !important; }
.pl-65px,.px-65px,.p-65px { padding-left: 65px !important; }
.pl-70px,.px-70px,.p-70px { padding-left: 70px !important; }
.pl-75px,.px-75px,.p-75px { padding-left: 75px !important; }
.pl-90px,.px-90px,.p-90px { padding-left: 90px !important; }
.pl-100px,.px-100px,.p-100px { padding-left: 100px !important; }
.pl-125px,.px-125px,.p-125px { padding-left: 125px !important; }
.pl-130px,.px-130px,.p-130px { padding-left: 130px !important; }
.pl-140px,.px-140px,.p-140px { padding-left: 140px !important; }
.pl-150px,.px-150px,.p-150px { padding-left: 150px !important; }
.pl-160px,.px-160px,.p-160px { padding-left: 160px !important; }
.pl-170px,.px-170px,.p-170px { padding-left: 170px !important; }
.pl-175px,.px-175px,.p-175px { padding-left: 175px !important; }
.pl-180px,.px-180px,.p-180px { padding-left: 180px !important; }
.pl-200px,.px-200px,.p-200px { padding-left: 200px !important; }
.pl-250px,.px-250px,.p-250px { padding-left: 250px !important; }
.pl-300px,.px-300px,.p-300px { padding-left: 300px !important; }
.pl-350px,.px-350px,.p-350px { padding-left: 350px !important; }
.pl-400px,.px-400px,.p-400px { padding-left: 400px !important; }

.pr-2px,.px-2px,.p-2px { padding-right: 2px !important; }
.pr-3px,.px-3px,.p-3px { padding-right: 3px !important; }
.pr-5px,.px-5px,.p-5px { padding-right: 5px !important; }
.pr-7px,.px-7px,.p-7px { padding-right: 7px !important; }
.pr-10px,.px-10px,.p-10px { padding-right: 10px !important; }
.pr-13px,.px-13px,.p-13px { padding-right: 13px !important; }
.pr-15px,.px-15px,.p-15px { padding-right: 15px !important; }
.pr-20px,.px-20px,.p-20px { padding-right: 20px !important; }
.pr-25px,.px-25px,.p-25px { padding-right: 25px !important; }
.pr-30px,.px-30px,.p-30px { padding-right: 30px !important; }
.pr-35px,.px-35px,.p-35px { padding-right: 35px !important; }
.pr-40px,.px-40px,.p-40px { padding-right: 40px !important; }
.pr-50px,.px-50px,.p-50px { padding-right: 50px !important; }
.pr-60px,.px-60px,.p-60px { padding-right: 60px !important; }
.pr-65px,.px-65px,.p-65px { padding-right: 65px !important; }
.pr-70px,.px-70px,.p-70px { padding-right: 70px !important; }
.pr-75px,.px-75px,.p-75px { padding-right: 75px !important; }
.pr-90px,.px-90px,.p-90px { padding-right: 90px !important; }
.pr-100px,.px-100px,.p-100px { padding-right: 100px !important; }
.pr-125px,.px-125px,.p-125px { padding-right: 125px !important; }
.pr-130px,.px-130px,.p-130px { padding-right: 130px !important; }
.pr-140px,.px-140px,.p-140px { padding-right: 140px !important; }
.pr-150px,.px-150px,.p-150px { padding-right: 150px !important; }
.pr-160px,.px-160px,.p-160px { padding-right: 160px !important; }
.pr-170px,.px-170px,.p-170px { padding-right: 170px !important; }
.pr-175px,.px-175px,.p-175px { padding-right: 175px !important; }
.pr-180px,.px-180px,.p-180px { padding-right: 180px !important; }
.pr-200px,.px-200px,.p-200px { padding-right: 200px !important; }
.pr-250px,.px-250px,.p-250px { padding-right: 250px !important; }
.pr-300px,.px-300px,.p-300px { padding-right: 300px !important; }
.pr-350px,.px-350px,.p-350px { padding-right: 350px !important; }
.pr-400px,.px-400px,.p-400px { padding-right: 400px !important; }

.pt-2px,.py-2px,.p-2px { padding-top: 2px !important; }
.pt-3px,.py-3px,.p-3px { padding-top: 3px !important; }
.pt-5px,.py-5px,.p-5px { padding-top: 5px !important; }
.pt-7px,.py-7px,.p-7px { padding-top: 7px !important; }
.pt-10px,.py-10px,.p-10px { padding-top: 10px !important; }
.pt-13px,.py-13px,.p-13px { padding-top: 13px !important; }
.pt-15px,.py-15px,.p-15px { padding-top: 15px !important; }
.pt-20px,.py-20px,.p-20px { padding-top: 20px !important; }
.pt-25px,.py-25px,.p-25px { padding-top: 25px !important; }
.pt-30px,.py-30px,.p-30px { padding-top: 30px !important; }
.pt-35px,.py-35px,.p-35px { padding-top: 35px !important; }
.pt-40px,.py-40px,.p-40px { padding-top: 40px !important; }
.pt-50px,.py-50px,.p-50px { padding-top: 50px !important; }
.pt-60px,.py-60px,.p-60px { padding-top: 60px !important; }
.pt-65px,.py-65px,.p-65px { padding-top: 65px !important; }
.pt-70px,.py-70px,.p-70px { padding-top: 70px !important; }
.pt-75px,.py-75px,.p-75px { padding-top: 75px !important; }
.pt-90px,.py-90px,.p-90px { padding-top: 90px !important; }
.pt-100px,.py-100px,.p-100px { padding-top: 100px !important; }
.pt-125px,.py-125px,.p-125px { padding-top: 125px !important; }
.pt-130px,.py-130px,.p-130px { padding-top: 130px !important; }
.pt-140px,.py-140px,.p-140px { padding-top: 140px !important; }
.pt-150px,.py-150px,.p-150px { padding-top: 150px !important; }
.pt-160px,.py-160px,.p-160px { padding-top: 160px !important; }
.pt-170px,.py-170px,.p-170px { padding-top: 170px !important; }
.pt-175px,.py-175px,.p-175px { padding-top: 175px !important; }
.pt-180px,.py-180px,.p-180px { padding-top: 180px !important; }
.pt-200px,.py-200px,.p-200px { padding-top: 200px !important; }
.pt-250px,.py-250px,.p-250px { padding-top: 250px !important; }
.pt-300px,.py-300px,.p-300px { padding-top: 300px !important; }
.pt-350px,.py-350px,.p-350px { padding-top: 350px !important; }
.pt-400px,.py-400px,.p-400px { padding-top: 400px !important; }

.pb-2px,.py-2px,.p-2px { padding-bottom: 2px !important; }
.pb-3px,.py-3px,.p-3px { padding-bottom: 3px !important; }
.pb-5px,.py-5px,.p-5px { padding-bottom: 5px !important; }
.pb-7px,.py-7px,.p-7px { padding-bottom: 7px !important; }
.pb-10px,.py-10px,.p-10px { padding-bottom: 10px !important; }
.pb-13px,.py-13px,.p-13px { padding-bottom: 13px !important; }
.pb-15px,.py-15px,.p-15px { padding-bottom: 15px !important; }
.pb-20px,.py-20px,.p-20px { padding-bottom: 20px !important; }
.pb-25px,.py-25px,.p-25px { padding-bottom: 25px !important; }
.pb-30px,.py-30px,.p-30px { padding-bottom: 30px !important; }
.pb-35px,.py-35px,.p-35px { padding-bottom: 35px !important; }
.pb-40px,.py-40px,.p-40px { padding-bottom: 40px !important; }
.pb-50px,.py-50px,.p-50px { padding-bottom: 50px !important; }
.pb-60px,.py-60px,.p-60px { padding-bottom: 60px !important; }
.pb-65px,.py-65px,.p-65px { padding-bottom: 65px !important; }
.pb-70px,.py-70px,.p-70px { padding-bottom: 70px !important; }
.pb-75px,.py-75px,.p-75px { padding-bottom: 75px !important; }
.pb-90px,.py-90px,.p-90px { padding-bottom: 90px !important; }
.pb-100px,.py-100px,.p-100px { padding-bottom: 100px !important; }
.pb-125px,.py-125px,.p-125px { padding-bottom: 125px !important; }
.pb-130px,.py-130px,.p-130px { padding-bottom: 130px !important; }
.pb-140px,.py-140px,.p-140px { padding-bottom: 140px !important; }
.pb-150px,.py-150px,.p-150px { padding-bottom: 150px !important; }
.pb-160px,.py-160px,.p-160px { padding-bottom: 160px !important; }
.pb-170px,.py-170px,.p-170px { padding-bottom: 170px !important; }
.pb-175px,.py-175px,.p-175px { padding-bottom: 175px !important; }
.pb-180px,.py-180px,.p-180px { padding-bottom: 180px !important; }
.pb-200px,.py-200px,.p-200px { padding-bottom: 200px !important; }
.pb-250px,.py-250px,.p-250px { padding-bottom: 250px !important; }
.pb-300px,.py-300px,.p-300px { padding-bottom: 300px !important; }
.pb-350px,.py-350px,.p-350px { padding-bottom: 350px !important; }
.pb-400px,.py-400px,.p-400px { padding-bottom: 400px !important; }

.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-1 {
    margin-right: -1px;
    margin-left: -1px;
}
.gutters-1 > .col,
.gutters-1 > [class*="col-"] {
    padding-right: 1px;
    padding-left: 1px;
}
.gutters-2 {
    margin-right: -2px;
    margin-left: -2px;
}
.gutters-2 > .col,
.gutters-2 > [class*="col-"] {
    padding-right: 2px;
    padding-left: 2px;
}
.gutters-3 {
    margin-right: -3px;
    margin-left: -3px;
}
.gutters-3 > .col,
.gutters-3 > [class*="col-"] {
    padding-right: 3px;
    padding-left: 3px;
}
.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-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;
}
.gutters-35 {
    margin-right: -35px;
    margin-left: -35px;
}
.gutters-35 > .col,
.gutters-35 > [class*="col-"] {
    padding-right: 35px;
    padding-left: 35px;
}
.gutters-40 {
    margin-right: -40px;
    margin-left: -40px;
}
.gutters-40 > .col,
.gutters-40 > [class*="col-"] {
    padding-right: 40px;
    padding-left: 40px;
}
.gutters-50 {
    margin-right: -50px;
    margin-left: -50px;
}
.gutters-50 > .col,
.gutters-50 > [class*="col-"] {
    padding-right: 50px;
    padding-left: 50px;
}
.gutters-60 {
    margin-right: -60px;
    margin-left: -60px;
}
.gutters-60 > .col,
.gutters-60 > [class*="col-"] {
    padding-right: 60px;
    padding-left: 60px;
}
.gutters-80 {
    margin-right: -80px;
    margin-left: -80px;
}
.gutters-80 > .col,
.gutters-80 > [class*="col-"] {
    padding-right: 80px;
    padding-left: 80px;
}
.gutters-90 {
    margin-right: -90px;
    margin-left: -90px;
}
.gutters-90 > .col,
.gutters-90 > [class*="col-"] {
    padding-right: 90px;
    padding-left: 90px;
}
.gutters-100 {
    margin-right: -100px;
    margin-left: -100px;
}
.gutters-100 > .col,
.gutters-100 > [class*="col-"] {
    padding-right: 100px;
    padding-left: 100px;
}

[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%;
}
.row-cols-7 > * {
    -ms-flex: 0 0 14.2857143%;
    flex: 0 0 14.2857143%;
    max-width: 14.2857143%;
}
.row-cols-8 > * {
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%;
}
.row-cols-9 > * {
    -ms-flex: 0 0 11.1111111%;
    flex: 0 0 11.1111111%;
    max-width: 11.1111111%;
}
.row-cols-10 > * {
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%;
}
.row-cols-15 > * {
    -ms-flex: 0 0 6.66666667%;
    flex: 0 0 6.66666667%;
    max-width: 6.66666667%;
}
/* sm */
@media (min-width: 576px) {
    .container,
    .container-sm {
        padding-right: 30px;
        padding-left: 30px;
    }
    .container-right,
    .container-sm-right {
        padding-right: 30px;
    }
    .container-left,
    .container-sm-left {
        padding-left: 30px;
    }

    .sm-absolute-center {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .sm-absolute-full {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }
    .sm-absolute-top-right {
        position: absolute;
        top: 0;
        right: 0;
    }

    .sm-fw-100 { font-weight: 100 !important; }
    .sm-fw-200 { font-weight: 200 !important; }
    .sm-fw-300 { font-weight: 300 !important; }
    .sm-fw-400 { font-weight: 400 !important; }
    .sm-fw-500 { font-weight: 500 !important; }
    .sm-fw-600 { font-weight: 600 !important; }
    .sm-fw-700 { font-weight: 700 !important; }
    .sm-fw-800 { font-weight: 800 !important; }
    .sm-fw-900 { font-weight: 900 !important; }

    .sm-fs-body-size { font-size: var(--body-size) !important; }
    .sm-fs-1em { font-size: 1em !important; }
    .sm-fs-8 { font-size: 0.5rem !important; }
    .sm-fs-9 { font-size: 0.5625rem !important; }
    .sm-fs-10 { font-size: 0.625rem !important; }
    .sm-fs-11 { font-size: 0.6875rem !important; }
    .sm-fs-12 { font-size: 0.75rem !important; }
    .sm-fs-13 { font-size: 0.8125rem !important; }
    .sm-fs-14 { font-size: 0.875rem !important; }
    .sm-fs-15 { font-size: 0.9375rem !important; }
    .sm-fs-15 { font-size: 0.9375rem !important; }
    .sm-fs-16 { font-size: 1rem !important; }
    .sm-fs-17 { font-size: 1.0625rem !important; }
    .sm-fs-18 { font-size: 1.125rem !important; }
    .sm-fs-19 { font-size: 1.1875rem !important; }
    .sm-fs-20 { font-size: 1.25rem !important; }
    .sm-fs-21 { font-size: 1.3125rem !important; }
    .sm-fs-22 { font-size: 1.375rem !important; }
    .sm-fs-23 { font-size: 1.4375rem !important; }
    .sm-fs-24 { font-size: 1.5rem !important; }
    .sm-fs-25 { font-size: 25px !important; }
    .sm-fs-26 { font-size: 26px !important; }
    .sm-fs-27 { font-size: 27px !important; }
    .sm-fs-28 { font-size: 28px !important; }
    .sm-fs-29 { font-size: 29px !important; }
    .sm-fs-30 { font-size: 30px !important; }
    .sm-fs-31 { font-size: 31px !important; }
    .sm-fs-32 { font-size: 32px !important; }
    .sm-fs-33 { font-size: 33px !important; }
    .sm-fs-34 { font-size: 34px !important; }
    .sm-fs-35 { font-size: 35px !important; }
    .sm-fs-36 { font-size: 36px !important; }
    .sm-fs-37 { font-size: 37px !important; }
    .sm-fs-38 { font-size: 38px !important; }
    .sm-fs-39 { font-size: 39px !important; }
    .sm-fs-40 { font-size: 40px !important; }
    .sm-fs-41 { font-size: 41px !important; }
    .sm-fs-42 { font-size: 42px !important; }
    .sm-fs-45 { font-size: 45px !important; }
    .sm-fs-50 { font-size: 50px !important; }
    .sm-fs-53 { font-size: 53px !important; }
    .sm-fs-55 { font-size: 55px !important; }
    .sm-fs-60 { font-size: 60px !important; }
    .sm-fs-65 { font-size: 65px !important; }
    .sm-fs-70 { font-size: 70px !important; }
    .sm-fs-75 { font-size: 75px !important; }
    .sm-fs-80 { font-size: 80px !important; }
    .sm-fs-87 { font-size: 87px !important; }
    .sm-fs-90 { font-size: 90px !important; }
    .sm-fs-100 { font-size: 100px !important; }
    .sm-fs-110 { font-size: 110px !important; }
    .sm-fs-115 { font-size: 115px !important; }
    .sm-fs-120 { font-size: 120px !important; }
    .sm-fs-140 { font-size: 140px !important; }
    .sm-fs-150 { font-size: 150px !important; }

    .sm-lh-0-7 { line-height: 0.7 !important; }
    .sm-lh-1 { line-height: 1 !important; }
    .sm-lh-1-1 { line-height: 1.1 !important; }
    .sm-lh-1-2 { line-height: 1.2 !important; }
    .sm-lh-1-25 { line-height: 1.25 !important; }
    .sm-lh-1-3 { line-height: 1.3 !important; }
    .sm-lh-1-4 {line-height: 1.4 !important; }
    .sm-lh-1-5 {line-height: 1.5 !important; }
    .sm-lh-1-6 {line-height: 1.6 !important; }
    .sm-lh-1-7 { line-height: 1.7 !important; }
    .sm-lh-1-8 { line-height: 1.8 !important; }
    .sm-lh-1-9 { line-height: 1.9 !important; }
    .sm-lh-2 { line-height: 2 !important; }
    .sm-lh-2-5 { line-height: 2.5 !important; }
    .sm-lh-3 { line-height: 3 !important; }
    .sm-lh-3-5 { line-height: 3.5 !important; }

    .border-sm { border: 1px solid #e2e5ec !important; }
    .border-sm-top { border-top: 1px solid #e2e5ec !important; }
    .border-sm-right { border-right: 1px solid #e2e5ec !important; }
    .border-sm-bottom { border-bottom: 1px solid #e2e5ec !important; }
    .border-sm-left { border-left: 1px solid #e2e5ec !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; }

    .border-sm-width-2 { border-width: 2px !important }
    .border-sm-width-3 { border-width: 3px !important }
    .border-sm-width-4 { border-width: 4px !important }
    .border-sm-width-5 { border-width: 5px !important }
    .border-sm-width-10 { border-width: 10px !important }
    .border-sm-width-15 { border-width: 15px !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-0,
    .px-sm-0,
    .p-sm-0 {
        padding-left: 0 !important;
    }
    .pl-sm-6,
    .px-sm-6,
    .p-sm-6 {
        padding-left: 4rem !important;
    }
    .pl-sm-7,
    .px-sm-7,
    .p-sm-7 {
        padding-left: 5rem !important;
    }
    .pl-sm-8,
    .px-sm-8,
    .p-sm-8 {
        padding-left: 6rem !important;
    }
    .pl-sm-9,
    .px-sm-9,
    .p-sm-9 {
        padding-left: 8rem !important;
    }
    .pl-sm-10,
    .px-sm-10,
    .p-sm-10 {
        padding-left: 10rem !important;
    }
    .pl-sm-11,
    .px-sm-11,
    .p-sm-11 {
        padding-left: 12rem !important;
    }
    .pl-sm-12,
    .px-sm-12,
    .p-sm-12 {
        padding-left: 16rem !important;
    }

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

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

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

    .pl-sm-2px,
    .px-sm-2px,
    .p-sm-2px {
        padding-left: 2px !important;
    }
    .pl-sm-3px,
    .px-sm-3px,
    .p-sm-3px {
        padding-left: 3px !important;
    }
    .pl-sm-5px,
    .px-sm-5px,
    .p-sm-5px {
        padding-left: 5px !important;
    }
    .pl-sm-10px,
    .px-sm-10px,
    .p-sm-10px {
        padding-left: 10px !important;
    }
    .pl-sm-13px,
    .px-sm-13px,
    .p-sm-13px {
        padding-left: 13px !important;
    }
    .pl-sm-15px,
    .px-sm-15px,
    .p-sm-15px {
        padding-left: 15px !important;
    }
    .pl-sm-20px,
    .px-sm-20px,
    .p-sm-20px {
        padding-left: 20px !important;
    }
    .pl-sm-25px,
    .px-sm-25px,
    .p-sm-25px {
        padding-left: 25px !important;
    }
    .pl-sm-30px,
    .px-sm-30px,
    .p-sm-30px {
        padding-left: 30px !important;
    }
    .pl-sm-35px,
    .px-sm-35px,
    .p-sm-35px {
        padding-left: 35px !important;
    }
    .pl-sm-40px,
    .px-sm-40px,
    .p-sm-40px {
        padding-left: 40px !important;
    }
    .pl-sm-50px,
    .px-sm-50px,
    .p-sm-50px {
        padding-left: 50px !important;
    }
    .pl-sm-60px,
    .px-sm-60px,
    .p-sm-60px {
        padding-left: 60px !important;
    }
    .pl-sm-65px,
    .px-sm-65px,
    .p-sm-65px {
        padding-left: 65px !important;
    }
    .pl-sm-70px,
    .px-sm-70px,
    .p-sm-70px {
        padding-left: 70px !important;
    }
    .pl-sm-75px,
    .px-sm-75px,
    .p-sm-75px {
        padding-left: 75px !important;
    }
    .pl-sm-90px,
    .px-sm-90px,
    .p-sm-90px {
        padding-left: 90px !important;
    }
    .pl-sm-100px,
    .px-sm-100px,
    .p-sm-100px {
        padding-left: 100px !important;
    }
    .pl-sm-125px,
    .px-sm-125px,
    .p-sm-125px {
        padding-left: 125px !important;
    }
    .pl-sm-130px,
    .px-sm-130px,
    .p-sm-130px {
        padding-left: 130px !important;
    }
    .pl-sm-140px,
    .px-sm-140px,
    .p-sm-140px {
        padding-left: 140px !important;
    }
    .pl-sm-150px,
    .px-sm-150px,
    .p-sm-150px {
        padding-left: 150px !important;
    }
    .pl-sm-160px,
    .px-sm-160px,
    .p-sm-160px {
        padding-left: 160px !important;
    }
    .pl-sm-170px,
    .px-sm-170px,
    .p-sm-170px {
        padding-left: 170px !important;
    }
    .pl-sm-175px,
    .px-sm-175px,
    .p-sm-175px {
        padding-left: 175px !important;
    }
    .pl-sm-180px,
    .px-sm-180px,
    .p-sm-180px {
        padding-left: 180px !important;
    }
    .pl-sm-200px,
    .px-sm-200px,
    .p-sm-200px {
        padding-left: 200px !important;
    }
    .pl-sm-250px,
    .px-sm-250px,
    .p-sm-250px {
        padding-left: 250px !important;
    }
    .pl-sm-300px,
    .px-sm-300px,
    .p-sm-300px {
        padding-left: 300px !important;
    }
    .pl-sm-350px,
    .px-sm-350px,
    .p-sm-350px {
        padding-left: 350px !important;
    }
    .pl-sm-400px,
    .px-sm-400px,
    .p-sm-400px {
        padding-left: 400px !important;
    }

    .pr-sm-2px,
    .px-sm-2px,
    .p-sm-2px {
        padding-right: 2px !important;
    }
    .pr-sm-3px,
    .px-sm-3px,
    .p-sm-3px {
        padding-right: 3px !important;
    }
    .pr-sm-5px,
    .px-sm-5px,
    .p-sm-5px {
        padding-right: 5px !important;
    }
    .pr-sm-10px,
    .px-sm-10px,
    .p-sm-10px {
        padding-right: 10px !important;
    }
    .pr-sm-13px,
    .px-sm-13px,
    .p-sm-13px {
        padding-right: 13px !important;
    }
    .pr-sm-15px,
    .px-sm-15px,
    .p-sm-15px {
        padding-right: 15px !important;
    }
    .pr-sm-20px,
    .px-sm-20px,
    .p-sm-20px {
        padding-right: 20px !important;
    }
    .pr-sm-25px,
    .px-sm-25px,
    .p-sm-25px {
        padding-right: 25px !important;
    }
    .pr-sm-30px,
    .px-sm-30px,
    .p-sm-30px {
        padding-right: 30px !important;
    }
    .pr-sm-35px,
    .px-sm-35px,
    .p-sm-35px {
        padding-right: 35px !important;
    }
    .pr-sm-40px,
    .px-sm-40px,
    .p-sm-40px {
        padding-right: 40px !important;
    }
    .pr-sm-50px,
    .px-sm-50px,
    .p-sm-50px {
        padding-right: 50px !important;
    }
    .pr-sm-60px,
    .px-sm-60px,
    .p-sm-60px {
        padding-right: 60px !important;
    }
    .pr-sm-65px,
    .px-sm-65px,
    .p-sm-65px {
        padding-right: 65px !important;
    }
    .pr-sm-70px,
    .px-sm-70px,
    .p-sm-70px {
        padding-right: 70px !important;
    }
    .pr-sm-75px,
    .px-sm-75px,
    .p-sm-75px {
        padding-right: 75px !important;
    }
    .pr-sm-90px,
    .px-sm-90px,
    .p-sm-90px {
        padding-right: 90px !important;
    }
    .pr-sm-100px,
    .px-sm-100px,
    .p-sm-100px {
        padding-right: 100px !important;
    }
    .pr-sm-125px,
    .px-sm-125px,
    .p-sm-125px {
        padding-right: 125px !important;
    }
    .pr-sm-130px,
    .px-sm-130px,
    .p-sm-130px {
        padding-right: 130px !important;
    }
    .pr-sm-140px,
    .px-sm-140px,
    .p-sm-140px {
        padding-right: 140px !important;
    }
    .pr-sm-150px,
    .px-sm-150px,
    .p-sm-150px {
        padding-right: 150px !important;
    }
    .pr-sm-160px,
    .px-sm-160px,
    .p-sm-160px {
        padding-right: 160px !important;
    }
    .pr-sm-170px,
    .px-sm-170px,
    .p-sm-170px {
        padding-right: 170px !important;
    }
    .pr-sm-175px,
    .px-sm-175px,
    .p-sm-175px {
        padding-right: 175px !important;
    }
    .pr-sm-180px,
    .px-sm-180px,
    .p-sm-180px {
        padding-right: 180px !important;
    }
    .pr-sm-200px,
    .px-sm-200px,
    .p-sm-200px {
        padding-right: 200px !important;
    }
    .pr-sm-250px,
    .px-sm-250px,
    .p-sm-250px {
        padding-right: 250px !important;
    }
    .pr-sm-300px,
    .px-sm-300px,
    .p-sm-300px {
        padding-right: 300px !important;
    }
    .pr-sm-350px,
    .px-sm-350px,
    .p-sm-350px {
        padding-right: 350px !important;
    }
    .pr-sm-400px,
    .px-sm-400px,
    .p-sm-400px {
        padding-right: 400px !important;
    }

    .pt-sm-2px,
    .py-sm-2px,
    .p-sm-2px {
        padding-top: 2px !important;
    }
    .pt-sm-3px,
    .py-sm-3px,
    .p-sm-3px {
        padding-top: 3px !important;
    }
    .pt-sm-5px,
    .py-sm-5px,
    .p-sm-5px {
        padding-top: 5px !important;
    }
    .pt-sm-10px,
    .py-sm-10px,
    .p-sm-10px {
        padding-top: 10px !important;
    }
    .pt-sm-13px,
    .py-sm-13px,
    .p-sm-13px {
        padding-top: 13px !important;
    }
    .pt-sm-15px,
    .py-sm-15px,
    .p-sm-15px {
        padding-top: 15px !important;
    }
    .pt-sm-20px,
    .py-sm-20px,
    .p-sm-20px {
        padding-top: 20px !important;
    }
    .pt-sm-25px,
    .py-sm-25px,
    .p-sm-25px {
        padding-top: 25px !important;
    }
    .pt-sm-30px,
    .py-sm-30px,
    .p-sm-30px {
        padding-top: 30px !important;
    }
    .pt-sm-35px,
    .py-sm-35px,
    .p-sm-35px {
        padding-top: 35px !important;
    }
    .pt-sm-40px,
    .py-sm-40px,
    .p-sm-40px {
        padding-top: 40px !important;
    }
    .pt-sm-50px,
    .py-sm-50px,
    .p-sm-50px {
        padding-top: 50px !important;
    }
    .pt-sm-60px,
    .py-sm-60px,
    .p-sm-60px {
        padding-top: 60px !important;
    }
    .pt-sm-65px,
    .py-sm-65px,
    .p-sm-65px {
        padding-top: 65px !important;
    }
    .pt-sm-70px,
    .py-sm-70px,
    .p-sm-70px {
        padding-top: 70px !important;
    }
    .pt-sm-75px,
    .py-sm-75px,
    .p-sm-75px {
        padding-top: 75px !important;
    }
    .pt-sm-90px,
    .py-sm-90px,
    .p-sm-90px {
        padding-top: 90px !important;
    }
    .pt-sm-100px,
    .py-sm-100px,
    .p-sm-100px {
        padding-top: 100px !important;
    }
    .pt-sm-125px,
    .py-sm-125px,
    .p-sm-125px {
        padding-top: 125px !important;
    }
    .pt-sm-130px,
    .py-sm-130px,
    .p-sm-130px {
        padding-top: 130px !important;
    }
    .pt-sm-140px,
    .py-sm-140px,
    .p-sm-140px {
        padding-top: 140px !important;
    }
    .pt-sm-150px,
    .py-sm-150px,
    .p-sm-150px {
        padding-top: 150px !important;
    }
    .pt-sm-160px,
    .py-sm-160px,
    .p-sm-160px {
        padding-top: 160px !important;
    }
    .pt-sm-170px,
    .py-sm-170px,
    .p-sm-170px {
        padding-top: 170px !important;
    }
    .pt-sm-175px,
    .py-sm-175px,
    .p-sm-175px {
        padding-top: 175px !important;
    }
    .pt-sm-180px,
    .py-sm-180px,
    .p-sm-180px {
        padding-top: 180px !important;
    }
    .pt-sm-200px,
    .py-sm-200px,
    .p-sm-200px {
        padding-top: 200px !important;
    }
    .pt-sm-250px,
    .py-sm-250px,
    .p-sm-250px {
        padding-top: 250px !important;
    }
    .pt-sm-300px,
    .py-sm-300px,
    .p-sm-300px {
        padding-top: 300px !important;
    }
    .pt-sm-350px,
    .py-sm-350px,
    .p-sm-350px {
        padding-top: 350px !important;
    }
    .pt-sm-400px,
    .py-sm-400px,
    .p-sm-400px {
        padding-top: 400px !important;
    }

    .pb-sm-2px,
    .py-sm-2px,
    .p-sm-2px {
        padding-bottom: 2px !important;
    }
    .pb-sm-3px,
    .py-sm-3px,
    .p-sm-3px {
        padding-bottom: 3px !important;
    }
    .pb-sm-5px,
    .py-sm-5px,
    .p-sm-5px {
        padding-bottom: 5px !important;
    }
    .pb-sm-10px,
    .py-sm-10px,
    .p-sm-10px {
        padding-bottom: 10px !important;
    }
    .pb-sm-13px,
    .py-sm-13px,
    .p-sm-13px {
        padding-bottom: 13px !important;
    }
    .pb-sm-15px,
    .py-sm-15px,
    .p-sm-15px {
        padding-bottom: 15px !important;
    }
    .pb-sm-20px,
    .py-sm-20px,
    .p-sm-20px {
        padding-bottom: 20px !important;
    }
    .pb-sm-25px,
    .py-sm-25px,
    .p-sm-25px {
        padding-bottom: 25px !important;
    }
    .pb-sm-30px,
    .py-sm-30px,
    .p-sm-30px {
        padding-bottom: 30px !important;
    }
    .pb-sm-35px,
    .py-sm-35px,
    .p-sm-35px {
        padding-bottom: 35px !important;
    }
    .pb-sm-40px,
    .py-sm-40px,
    .p-sm-40px {
        padding-bottom: 40px !important;
    }
    .pb-sm-50px,
    .py-sm-50px,
    .p-sm-50px {
        padding-bottom: 50px !important;
    }
    .pb-sm-60px,
    .py-sm-60px,
    .p-sm-60px {
        padding-bottom: 60px !important;
    }
    .pb-sm-65px,
    .py-sm-65px,
    .p-sm-65px {
        padding-bottom: 65px !important;
    }
    .pb-sm-70px,
    .py-sm-70px,
    .p-sm-70px {
        padding-bottom: 70px !important;
    }
    .pb-sm-75px,
    .py-sm-75px,
    .p-sm-75px {
        padding-bottom: 75px !important;
    }
    .pb-sm-90px,
    .py-sm-90px,
    .p-sm-90px {
        padding-bottom: 90px !important;
    }
    .pb-sm-100px,
    .py-sm-100px,
    .p-sm-100px {
        padding-bottom: 100px !important;
    }
    .pb-sm-125px,
    .py-sm-125px,
    .p-sm-125px {
        padding-bottom: 125px !important;
    }
    .pb-sm-130px,
    .py-sm-130px,
    .p-sm-130px {
        padding-bottom: 130px !important;
    }
    .pb-sm-140px,
    .py-sm-140px,
    .p-sm-140px {
        padding-bottom: 140px !important;
    }
    .pb-sm-150px,
    .py-sm-150px,
    .p-sm-150px {
        padding-bottom: 150px !important;
    }
    .pb-sm-160px,
    .py-sm-160px,
    .p-sm-160px {
        padding-bottom: 160px !important;
    }
    .pb-sm-170px,
    .py-sm-170px,
    .p-sm-170px {
        padding-bottom: 170px !important;
    }
    .pb-sm-175px,
    .py-sm-175px,
    .p-sm-175px {
        padding-bottom: 175px !important;
    }
    .pb-sm-180px,
    .py-sm-180px,
    .p-sm-180px {
        padding-bottom: 180px !important;
    }
    .pb-sm-200px,
    .py-sm-200px,
    .p-sm-200px {
        padding-bottom: 200px !important;
    }
    .pb-sm-250px,
    .py-sm-250px,
    .p-sm-250px {
        padding-bottom: 250px !important;
    }
    .pb-sm-300px,
    .py-sm-300px,
    .p-sm-300px {
        padding-bottom: 300px !important;
    }
    .pb-sm-350px,
    .py-sm-350px,
    .p-sm-350px {
        padding-bottom: 350px !important;
    }
    .pb-sm-400px,
    .py-sm-400px,
    .p-sm-400px {
        padding-bottom: 400px !important;
    }

    .w-sm-1em,.size-sm-1em { width: 1em; }
    .w-sm-5px,.size-sm-5px { width: 5px; }
    .w-sm-7px,.size-sm-7px { width: 7px; }
    .w-sm-10px,.size-sm-10px { width: 10px; }
    .w-sm-15px,.size-sm-15px { width: 15px; }
    .w-sm-17px,.size-sm-17px { width: 17px; }
    .w-sm-20px,.size-sm-20px { width: 20px; }
    .w-sm-22px,.size-sm-22px { width: 22px; }
    .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-50px,.size-sm-50px { width: 50px; }
    .w-sm-55px,.size-sm-55px { width: 55px; }
    .w-sm-60px,.size-sm-60px { width: 60px; }
    .w-sm-65px,.size-sm-65px { width: 65px; }
    .w-sm-70px,.size-sm-70px { width: 70px; }
    .w-sm-75px,.size-sm-75px { width: 75px; }
    .w-sm-80px,.size-sm-80px { width: 80px; }
    .w-sm-85px,.size-sm-85px { width: 85px; }
    .w-sm-90px,.size-sm-90px { width: 90px; }
    .w-sm-95px,.size-sm-95px { width: 95px; }
    .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-125px,.size-sm-125px { width: 125px; }
    .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-155px,.size-sm-155px { width: 155px; }
    .w-sm-160px,.size-sm-160px { width: 160px; }
    .w-sm-165px,.size-sm-165px { width: 165px; }
    .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-600px,.size-sm-600px { width: 600px; }

    .h-sm-1em,.size-sm-1em { height: 1em; }
    .h-sm-5px,.size-sm-5px { height: 5px; }
    .h-sm-7px,.size-sm-7px { height: 7px; }
    .h-sm-10px,.size-sm-10px { height: 10px; }
    .h-sm-15px,.size-sm-15px { height: 15px; }
    .h-sm-17px,.size-sm-17px { height: 17px; }
    .h-sm-20px,.size-sm-20px { height: 20px; }
    .h-sm-22px,.size-sm-22px { height: 22px; }
    .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-50px,.size-sm-50px { height: 50px; }
    .h-sm-55px,.size-sm-55px { height: 55px; }
    .h-sm-60px,.size-sm-60px { height: 60px; }
    .h-sm-65px,.size-sm-65px { height: 65px; }
    .h-sm-70px,.size-sm-70px { height: 70px; }
    .h-sm-75px,.size-sm-75px { height: 75px; }
    .h-sm-80px,.size-sm-80px { height: 80px; }
    .h-sm-85px,.size-sm-85px { height: 85px; }
    .h-sm-90px,.size-sm-90px { height: 90px; }
    .h-sm-95px,.size-sm-95px { height: 95px; }
    .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-125px,.size-sm-125px { height: 125px; }
    .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-155px,.size-sm-155px { height: 155px; }
    .h-sm-160px,.size-sm-160px { height: 160px; }
    .h-sm-165px,.size-sm-165px { height: 165px; }
    .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-600px,.size-sm-600px { height: 600px; }
    .h-sm-auto { height: auto; }

    .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-1 {
        margin-right: -1px;
        margin-left: -1px;
    }
    .sm-gutters-1 > .col,
    .sm-gutters-1 > [class*="col-"] {
        padding-right: 1px;
        padding-left: 1px;
    }
    .sm-gutters-2 {
        margin-right: -2px;
        margin-left: -2px;
    }
    .sm-gutters-2 > .col,
    .sm-gutters-2 > [class*="col-"] {
        padding-right: 2px;
        padding-left: 2px;
    }
    .sm-gutters-3 {
        margin-right: -3px;
        margin-left: -3px;
    }
    .sm-gutters-3 > .col,
    .sm-gutters-3 > [class*="col-"] {
        padding-right: 3px;
        padding-left: 3px;
    }
    .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-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;
    }
    .sm-gutters-35 {
        margin-right: -35px;
        margin-left: -35px;
    }
    .sm-gutters-35 > .col,
    .sm-gutters-35 > [class*="col-"] {
        padding-right: 35px;
        padding-left: 35px;
    }
    .sm-gutters-40 {
        margin-right: -40px;
        margin-left: -40px;
    }
    .sm-gutters-40 > .col,
    .sm-gutters-40 > [class*="col-"] {
        padding-right: 40px;
        padding-left: 40px;
    }
    .sm-gutters-50 {
        margin-right: -50px;
        margin-left: -50px;
    }
    .sm-gutters-50 > .col,
    .sm-gutters-50 > [class*="col-"] {
        padding-right: 50px;
        padding-left: 50px;
    }
    .sm-gutters-60 {
        margin-right: -60px;
        margin-left: -60px;
    }
    .sm-gutters-60 > .col,
    .sm-gutters-60 > [class*="col-"] {
        padding-right: 60px;
        padding-left: 60px;
    }
    .sm-gutters-80 {
        margin-right: -80px;
        margin-left: -80px;
    }
    .sm-gutters-80 > .col,
    .sm-gutters-80 > [class*="col-"] {
        padding-right: 80px;
        padding-left: 80px;
    }
    .sm-gutters-90 {
        margin-right: -90px;
        margin-left: -90px;
    }
    .sm-gutters-90 > .col,
    .sm-gutters-90 > [class*="col-"] {
        padding-right: 90px;
        padding-left: 90px;
    }
    .sm-gutters-100 {
        margin-right: -100px;
        margin-left: -100px;
    }
    .sm-gutters-100 > .col,
    .sm-gutters-100 > [class*="col-"] {
        padding-right: 100px;
        padding-left: 100px;
    }

    .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;
    }
    [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%;
    }
    .row-cols-sm-8 > * {
        -ms-flex: 0 0 12.5%;
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
    .row-cols-sm-9 > * {
        -ms-flex: 0 0 11.1111111%;
        flex: 0 0 11.1111111%;
        max-width: 11.1111111%;
    }
    .row-cols-sm-7 > * {
        -ms-flex: 0 0 14.2857143%;
        flex: 0 0 14.2857143%;
        max-width: 14.2857143%;
    }
    .row-cols-sm-10 > * {
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
        max-width: 10%;
    }
    .row-cols-sm-15 > * {
        -ms-flex: 0 0 6.66666667%;
        flex: 0 0 6.66666667%;
        max-width: 6.66666667%;
    }
}
/* md */
@media (min-width: 768px) {
    .container,
    .container-md {
        padding-right: calc((100vw - 700px) / 2);
        padding-left: calc((100vw - 700px) / 2);
    }
    .container-right,
    .container-md-right {
        padding-right: calc((100vw - 700px) / 2);
    }
    .container-left,
    .container-md-left {
        padding-left: calc((100vw - 700px) / 2);
    }

    .md-absolute-center {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .md-absolute-full {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }
    .md-absolute-top-right {
        position: absolute;
        top: 0;
        right: 0;
    }

    .md-fw-100 { font-weight: 100 !important; }
    .md-fw-200 { font-weight: 200 !important; }
    .md-fw-300 { font-weight: 300 !important; }
    .md-fw-400 { font-weight: 400 !important; }
    .md-fw-500 { font-weight: 500 !important; }
    .md-fw-600 { font-weight: 600 !important; }
    .md-fw-700 { font-weight: 700 !important; }
    .md-fw-800 { font-weight: 800 !important; }
    .md-fw-900 { font-weight: 900 !important; }

    .md-fs-body-size { font-size: var(--body-size) !important; }
    .md-fs-1em { font-size: 1em !important; }
    .md-fs-8 { font-size: 0.5rem !important; }
    .md-fs-9 { font-size: 0.5625rem !important; }
    .md-fs-10 { font-size: 0.625rem !important; }
    .md-fs-11 { font-size: 0.6875rem !important; }
    .md-fs-12 { font-size: 0.75rem !important; }
    .md-fs-13 { font-size: 0.8125rem !important; }
    .md-fs-14 { font-size: 0.875rem !important; }
    .md-fs-15 { font-size: 0.9375rem !important; }
    .md-fs-15 { font-size: 0.9375rem !important; }
    .md-fs-16 { font-size: 1rem !important; }
    .md-fs-17 { font-size: 1.0625rem !important; }
    .md-fs-18 { font-size: 1.125rem !important; }
    .md-fs-19 { font-size: 1.1875rem !important; }
    .md-fs-20 { font-size: 1.25rem !important; }
    .md-fs-21 { font-size: 1.3125rem !important; }
    .md-fs-22 { font-size: 1.375rem !important; }
    .md-fs-23 { font-size: 1.4375rem !important; }
    .md-fs-24 { font-size: 1.5rem !important; }
    .md-fs-25 { font-size: 25px !important; }
    .md-fs-26 { font-size: 26px !important; }
    .md-fs-27 { font-size: 27px !important; }
    .md-fs-28 { font-size: 28px !important; }
    .md-fs-29 { font-size: 29px !important; }
    .md-fs-30 { font-size: 30px !important; }
    .md-fs-31 { font-size: 31px !important; }
    .md-fs-32 { font-size: 32px !important; }
    .md-fs-33 { font-size: 33px !important; }
    .md-fs-34 { font-size: 34px !important; }
    .md-fs-35 { font-size: 35px !important; }
    .md-fs-36 { font-size: 36px !important; }
    .md-fs-37 { font-size: 37px !important; }
    .md-fs-38 { font-size: 38px !important; }
    .md-fs-39 { font-size: 39px !important; }
    .md-fs-40 { font-size: 40px !important; }
    .md-fs-41 { font-size: 41px !important; }
    .md-fs-42 { font-size: 42px !important; }
    .md-fs-45 { font-size: 45px !important; }
    .md-fs-50 { font-size: 50px !important; }
    .md-fs-53 { font-size: 53px !important; }
    .md-fs-55 { font-size: 55px !important; }
    .md-fs-60 { font-size: 60px !important; }
    .md-fs-65 { font-size: 65px !important; }
    .md-fs-70 { font-size: 70px !important; }
    .md-fs-75 { font-size: 75px !important; }
    .md-fs-80 { font-size: 80px !important; }
    .md-fs-87 { font-size: 87px !important; }
    .md-fs-90 { font-size: 90px !important; }
    .md-fs-100 { font-size: 100px !important; }
    .md-fs-110 { font-size: 110px !important; }
    .md-fs-115 { font-size: 115px !important; }
    .md-fs-120 { font-size: 120px !important; }
    .md-fs-140 { font-size: 140px !important; }
    .md-fs-150 { font-size: 150px !important; }

    .md-lh-0-7 { line-height: 0.7 !important; }
    .md-lh-1 { line-height: 1 !important; }
    .md-lh-1-1 { line-height: 1.1 !important; }
    .md-lh-1-2 { line-height: 1.2 !important; }
    .md-lh-1-25 { line-height: 1.25 !important; }
    .md-lh-1-3 { line-height: 1.3 !important; }
    .md-lh-1-4 {line-height: 1.4 !important; }
    .md-lh-1-5 {line-height: 1.5 !important; }
    .md-lh-1-6 {line-height: 1.6 !important; }
    .md-lh-1-7 { line-height: 1.7 !important; }
    .md-lh-1-8 { line-height: 1.8 !important; }
    .md-lh-1-9 { line-height: 1.9 !important; }
    .md-lh-2 { line-height: 2 !important; }
    .md-lh-2-5 { line-height: 2.5 !important; }
    .md-lh-3 { line-height: 3 !important; }
    .md-lh-3-5 { line-height: 3.5 !important; }

    .border-md { border: 1px solid #e2e5ec !important; }
    .border-md-top { border-top: 1px solid #e2e5ec !important; }
    .border-md-right { border-right: 1px solid #e2e5ec !important; }
    .border-md-bottom { border-bottom: 1px solid #e2e5ec !important; }
    .border-md-left { border-left: 1px solid #e2e5ec !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; }

    .border-md-width-2 { border-width: 2px !important }
    .border-md-width-3 { border-width: 3px !important }
    .border-md-width-4 { border-width: 4px !important }
    .border-md-width-5 { border-width: 5px !important }
    .border-md-width-10 { border-width: 10px !important }
    .border-md-width-15 { border-width: 15px !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-0,
    .px-md-0,
    .p-md-0 {
        padding-left: 0 !important;
    }
    .pl-md-6,
    .px-md-6,
    .p-md-6 {
        padding-left: 4rem !important;
    }
    .pl-md-7,
    .px-md-7,
    .p-md-7 {
        padding-left: 5rem !important;
    }
    .pl-md-8,
    .px-md-8,
    .p-md-8 {
        padding-left: 6rem !important;
    }
    .pl-md-9,
    .px-md-9,
    .p-md-9 {
        padding-left: 8rem !important;
    }
    .pl-md-10,
    .px-md-10,
    .p-md-10 {
        padding-left: 10rem !important;
    }
    .pl-md-11,
    .px-md-11,
    .p-md-11 {
        padding-left: 12rem !important;
    }
    .pl-md-12,
    .px-md-12,
    .p-md-12 {
        padding-left: 16rem !important;
    }

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

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

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

    .pl-md-2px,
    .px-md-2px,
    .p-md-2px {
        padding-left: 2px !important;
    }
    .pl-md-3px,
    .px-md-3px,
    .p-md-3px {
        padding-left: 3px !important;
    }
    .pl-md-5px,
    .px-md-5px,
    .p-md-5px {
        padding-left: 5px !important;
    }
    .pl-md-10px,
    .px-md-10px,
    .p-md-10px {
        padding-left: 10px !important;
    }
    .pl-md-13px,
    .px-md-13px,
    .p-md-13px {
        padding-left: 13px !important;
    }
    .pl-md-15px,
    .px-md-15px,
    .p-md-15px {
        padding-left: 15px !important;
    }
    .pl-md-20px,
    .px-md-20px,
    .p-md-20px {
        padding-left: 20px !important;
    }
    .pl-md-25px,
    .px-md-25px,
    .p-md-25px {
        padding-left: 25px !important;
    }
    .pl-md-30px,
    .px-md-30px,
    .p-md-30px {
        padding-left: 30px !important;
    }
    .pl-md-35px,
    .px-md-35px,
    .p-md-35px {
        padding-left: 35px !important;
    }
    .pl-md-40px,
    .px-md-40px,
    .p-md-40px {
        padding-left: 40px !important;
    }
    .pl-md-50px,
    .px-md-50px,
    .p-md-50px {
        padding-left: 50px !important;
    }
    .pl-md-60px,
    .px-md-60px,
    .p-md-60px {
        padding-left: 60px !important;
    }
    .pl-md-65px,
    .px-md-65px,
    .p-md-65px {
        padding-left: 65px !important;
    }
    .pl-md-70px,
    .px-md-70px,
    .p-md-70px {
        padding-left: 70px !important;
    }
    .pl-md-75px,
    .px-md-75px,
    .p-md-75px {
        padding-left: 75px !important;
    }
    .pl-md-90px,
    .px-md-90px,
    .p-md-90px {
        padding-left: 90px !important;
    }
    .pl-md-100px,
    .px-md-100px,
    .p-md-100px {
        padding-left: 100px !important;
    }
    .pl-md-125px,
    .px-md-125px,
    .p-md-125px {
        padding-left: 125px !important;
    }
    .pl-md-130px,
    .px-md-130px,
    .p-md-130px {
        padding-left: 130px !important;
    }
    .pl-md-140px,
    .px-md-140px,
    .p-md-140px {
        padding-left: 140px !important;
    }
    .pl-md-150px,
    .px-md-150px,
    .p-md-150px {
        padding-left: 150px !important;
    }
    .pl-md-160px,
    .px-md-160px,
    .p-md-160px {
        padding-left: 160px !important;
    }
    .pl-md-170px,
    .px-md-170px,
    .p-md-170px {
        padding-left: 170px !important;
    }
    .pl-md-175px,
    .px-md-175px,
    .p-md-175px {
        padding-left: 175px !important;
    }
    .pl-md-180px,
    .px-md-180px,
    .p-md-180px {
        padding-left: 180px !important;
    }
    .pl-md-200px,
    .px-md-200px,
    .p-md-200px {
        padding-left: 200px !important;
    }
    .pl-md-250px,
    .px-md-250px,
    .p-md-250px {
        padding-left: 250px !important;
    }
    .pl-md-300px,
    .px-md-300px,
    .p-md-300px {
        padding-left: 300px !important;
    }
    .pl-md-350px,
    .px-md-350px,
    .p-md-350px {
        padding-left: 350px !important;
    }
    .pl-md-400px,
    .px-md-400px,
    .p-md-400px {
        padding-left: 400px !important;
    }

    .pr-md-2px,
    .px-md-2px,
    .p-md-2px {
        padding-right: 2px !important;
    }
    .pr-md-3px,
    .px-md-3px,
    .p-md-3px {
        padding-right: 3px !important;
    }
    .pr-md-5px,
    .px-md-5px,
    .p-md-5px {
        padding-right: 5px !important;
    }
    .pr-md-10px,
    .px-md-10px,
    .p-md-10px {
        padding-right: 10px !important;
    }
    .pr-md-13px,
    .px-md-13px,
    .p-md-13px {
        padding-right: 13px !important;
    }
    .pr-md-15px,
    .px-md-15px,
    .p-md-15px {
        padding-right: 15px !important;
    }
    .pr-md-20px,
    .px-md-20px,
    .p-md-20px {
        padding-right: 20px !important;
    }
    .pr-md-25px,
    .px-md-25px,
    .p-md-25px {
        padding-right: 25px !important;
    }
    .pr-md-30px,
    .px-md-30px,
    .p-md-30px {
        padding-right: 30px !important;
    }
    .pr-md-35px,
    .px-md-35px,
    .p-md-35px {
        padding-right: 35px !important;
    }
    .pr-md-40px,
    .px-md-40px,
    .p-md-40px {
        padding-right: 40px !important;
    }
    .pr-md-50px,
    .px-md-50px,
    .p-md-50px {
        padding-right: 50px !important;
    }
    .pr-md-60px,
    .px-md-60px,
    .p-md-60px {
        padding-right: 60px !important;
    }
    .pr-md-65px,
    .px-md-65px,
    .p-md-65px {
        padding-right: 65px !important;
    }
    .pr-md-70px,
    .px-md-70px,
    .p-md-70px {
        padding-right: 70px !important;
    }
    .pr-md-75px,
    .px-md-75px,
    .p-md-75px {
        padding-right: 75px !important;
    }
    .pr-md-90px,
    .px-md-90px,
    .p-md-90px {
        padding-right: 90px !important;
    }
    .pr-md-100px,
    .px-md-100px,
    .p-md-100px {
        padding-right: 100px !important;
    }
    .pr-md-125px,
    .px-md-125px,
    .p-md-125px {
        padding-right: 125px !important;
    }
    .pr-md-130px,
    .px-md-130px,
    .p-md-130px {
        padding-right: 130px !important;
    }
    .pr-md-140px,
    .px-md-140px,
    .p-md-140px {
        padding-right: 140px !important;
    }
    .pr-md-150px,
    .px-md-150px,
    .p-md-150px {
        padding-right: 150px !important;
    }
    .pr-md-160px,
    .px-md-160px,
    .p-md-160px {
        padding-right: 160px !important;
    }
    .pr-md-170px,
    .px-md-170px,
    .p-md-170px {
        padding-right: 170px !important;
    }
    .pr-md-175px,
    .px-md-175px,
    .p-md-175px {
        padding-right: 175px !important;
    }
    .pr-md-180px,
    .px-md-180px,
    .p-md-180px {
        padding-right: 180px !important;
    }
    .pr-md-200px,
    .px-md-200px,
    .p-md-200px {
        padding-right: 200px !important;
    }
    .pr-md-250px,
    .px-md-250px,
    .p-md-250px {
        padding-right: 250px !important;
    }
    .pr-md-300px,
    .px-md-300px,
    .p-md-300px {
        padding-right: 300px !important;
    }
    .pr-md-350px,
    .px-md-350px,
    .p-md-350px {
        padding-right: 350px !important;
    }
    .pr-md-400px,
    .px-md-400px,
    .p-md-400px {
        padding-right: 400px !important;
    }

    .pt-md-2px,
    .py-md-2px,
    .p-md-2px {
        padding-top: 2px !important;
    }
    .pt-md-3px,
    .py-md-3px,
    .p-md-3px {
        padding-top: 3px !important;
    }
    .pt-md-5px,
    .py-md-5px,
    .p-md-5px {
        padding-top: 5px !important;
    }
    .pt-md-10px,
    .py-md-10px,
    .p-md-10px {
        padding-top: 10px !important;
    }
    .pt-md-13px,
    .py-md-13px,
    .p-md-13px {
        padding-top: 13px !important;
    }
    .pt-md-15px,
    .py-md-15px,
    .p-md-15px {
        padding-top: 15px !important;
    }
    .pt-md-20px,
    .py-md-20px,
    .p-md-20px {
        padding-top: 20px !important;
    }
    .pt-md-25px,
    .py-md-25px,
    .p-md-25px {
        padding-top: 25px !important;
    }
    .pt-md-30px,
    .py-md-30px,
    .p-md-30px {
        padding-top: 30px !important;
    }
    .pt-md-35px,
    .py-md-35px,
    .p-md-35px {
        padding-top: 35px !important;
    }
    .pt-md-40px,
    .py-md-40px,
    .p-md-40px {
        padding-top: 40px !important;
    }
    .pt-md-50px,
    .py-md-50px,
    .p-md-50px {
        padding-top: 50px !important;
    }
    .pt-md-60px,
    .py-md-60px,
    .p-md-60px {
        padding-top: 60px !important;
    }
    .pt-md-65px,
    .py-md-65px,
    .p-md-65px {
        padding-top: 65px !important;
    }
    .pt-md-70px,
    .py-md-70px,
    .p-md-70px {
        padding-top: 70px !important;
    }
    .pt-md-75px,
    .py-md-75px,
    .p-md-75px {
        padding-top: 75px !important;
    }
    .pt-md-90px,
    .py-md-90px,
    .p-md-90px {
        padding-top: 90px !important;
    }
    .pt-md-100px,
    .py-md-100px,
    .p-md-100px {
        padding-top: 100px !important;
    }
    .pt-md-125px,
    .py-md-125px,
    .p-md-125px {
        padding-top: 125px !important;
    }
    .pt-md-130px,
    .py-md-130px,
    .p-md-130px {
        padding-top: 130px !important;
    }
    .pt-md-140px,
    .py-md-140px,
    .p-md-140px {
        padding-top: 140px !important;
    }
    .pt-md-150px,
    .py-md-150px,
    .p-md-150px {
        padding-top: 150px !important;
    }
    .pt-md-160px,
    .py-md-160px,
    .p-md-160px {
        padding-top: 160px !important;
    }
    .pt-md-170px,
    .py-md-170px,
    .p-md-170px {
        padding-top: 170px !important;
    }
    .pt-md-175px,
    .py-md-175px,
    .p-md-175px {
        padding-top: 175px !important;
    }
    .pt-md-180px,
    .py-md-180px,
    .p-md-180px {
        padding-top: 180px !important;
    }
    .pt-md-200px,
    .py-md-200px,
    .p-md-200px {
        padding-top: 200px !important;
    }
    .pt-md-250px,
    .py-md-250px,
    .p-md-250px {
        padding-top: 250px !important;
    }
    .pt-md-300px,
    .py-md-300px,
    .p-md-300px {
        padding-top: 300px !important;
    }
    .pt-md-350px,
    .py-md-350px,
    .p-md-350px {
        padding-top: 350px !important;
    }
    .pt-md-400px,
    .py-md-400px,
    .p-md-400px {
        padding-top: 400px !important;
    }

    .pb-md-2px,
    .py-md-2px,
    .p-md-2px {
        padding-bottom: 2px !important;
    }
    .pb-md-3px,
    .py-md-3px,
    .p-md-3px {
        padding-bottom: 3px !important;
    }
    .pb-md-5px,
    .py-md-5px,
    .p-md-5px {
        padding-bottom: 5px !important;
    }
    .pb-md-10px,
    .py-md-10px,
    .p-md-10px {
        padding-bottom: 10px !important;
    }
    .pb-md-13px,
    .py-md-13px,
    .p-md-13px {
        padding-bottom: 13px !important;
    }
    .pb-md-15px,
    .py-md-15px,
    .p-md-15px {
        padding-bottom: 15px !important;
    }
    .pb-md-20px,
    .py-md-20px,
    .p-md-20px {
        padding-bottom: 20px !important;
    }
    .pb-md-25px,
    .py-md-25px,
    .p-md-25px {
        padding-bottom: 25px !important;
    }
    .pb-md-30px,
    .py-md-30px,
    .p-md-30px {
        padding-bottom: 30px !important;
    }
    .pb-md-35px,
    .py-md-35px,
    .p-md-35px {
        padding-bottom: 35px !important;
    }
    .pb-md-40px,
    .py-md-40px,
    .p-md-40px {
        padding-bottom: 40px !important;
    }
    .pb-md-50px,
    .py-md-50px,
    .p-md-50px {
        padding-bottom: 50px !important;
    }
    .pb-md-60px,
    .py-md-60px,
    .p-md-60px {
        padding-bottom: 60px !important;
    }
    .pb-md-65px,
    .py-md-65px,
    .p-md-65px {
        padding-bottom: 65px !important;
    }
    .pb-md-70px,
    .py-md-70px,
    .p-md-70px {
        padding-bottom: 70px !important;
    }
    .pb-md-75px,
    .py-md-75px,
    .p-md-75px {
        padding-bottom: 75px !important;
    }
    .pb-md-90px,
    .py-md-90px,
    .p-md-90px {
        padding-bottom: 90px !important;
    }
    .pb-md-100px,
    .py-md-100px,
    .p-md-100px {
        padding-bottom: 100px !important;
    }
    .pb-md-125px,
    .py-md-125px,
    .p-md-125px {
        padding-bottom: 125px !important;
    }
    .pb-md-130px,
    .py-md-130px,
    .p-md-130px {
        padding-bottom: 130px !important;
    }
    .pb-md-140px,
    .py-md-140px,
    .p-md-140px {
        padding-bottom: 140px !important;
    }
    .pb-md-150px,
    .py-md-150px,
    .p-md-150px {
        padding-bottom: 150px !important;
    }
    .pb-md-160px,
    .py-md-160px,
    .p-md-160px {
        padding-bottom: 160px !important;
    }
    .pb-md-170px,
    .py-md-170px,
    .p-md-170px {
        padding-bottom: 170px !important;
    }
    .pb-md-175px,
    .py-md-175px,
    .p-md-175px {
        padding-bottom: 175px !important;
    }
    .pb-md-180px,
    .py-md-180px,
    .p-md-180px {
        padding-bottom: 180px !important;
    }
    .pb-md-200px,
    .py-md-200px,
    .p-md-200px {
        padding-bottom: 200px !important;
    }
    .pb-md-250px,
    .py-md-250px,
    .p-md-250px {
        padding-bottom: 250px !important;
    }
    .pb-md-300px,
    .py-md-300px,
    .p-md-300px {
        padding-bottom: 300px !important;
    }
    .pb-md-350px,
    .py-md-350px,
    .p-md-350px {
        padding-bottom: 350px !important;
    }
    .pb-md-400px,
    .py-md-400px,
    .p-md-400px {
        padding-bottom: 400px !important;
    }

    .w-md-1em,.size-md-1em { width: 1em; }
    .w-md-5px,.size-md-5px { width: 5px; }
    .w-md-7px,.size-md-7px { width: 7px; }
    .w-md-10px,.size-md-10px { width: 10px; }
    .w-md-15px,.size-md-15px { width: 15px; }
    .w-md-17px,.size-md-17px { width: 17px; }
    .w-md-20px,.size-md-20px { width: 20px; }
    .w-md-22px,.size-md-22px { width: 22px; }
    .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-50px,.size-md-50px { width: 50px; }
    .w-md-55px,.size-md-55px { width: 55px; }
    .w-md-60px,.size-md-60px { width: 60px; }
    .w-md-65px,.size-md-65px { width: 65px; }
    .w-md-70px,.size-md-70px { width: 70px; }
    .w-md-75px,.size-md-75px { width: 75px; }
    .w-md-80px,.size-md-80px { width: 80px; }
    .w-md-85px,.size-md-85px { width: 85px; }
    .w-md-90px,.size-md-90px { width: 90px; }
    .w-md-95px,.size-md-95px { width: 95px; }
    .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-125px,.size-md-125px { width: 125px; }
    .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-155px,.size-md-155px { width: 155px; }
    .w-md-160px,.size-md-160px { width: 160px; }
    .w-md-165px,.size-md-165px { width: 165px; }
    .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-600px,.size-md-600px { width: 600px; }

    .h-md-1em,.size-md-1em { height: 1em; }
    .h-md-5px,.size-md-5px { height: 5px; }
    .h-md-7px,.size-md-7px { height: 7px; }
    .h-md-10px,.size-md-10px { height: 10px; }
    .h-md-15px,.size-md-15px { height: 15px; }
    .h-md-17px,.size-md-17px { height: 17px; }
    .h-md-20px,.size-md-20px { height: 20px; }
    .h-md-22px,.size-md-22px { height: 22px; }
    .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-50px,.size-md-50px { height: 50px; }
    .h-md-55px,.size-md-55px { height: 55px; }
    .h-md-60px,.size-md-60px { height: 60px; }
    .h-md-65px,.size-md-65px { height: 65px; }
    .h-md-70px,.size-md-70px { height: 70px; }
    .h-md-75px,.size-md-75px { height: 75px; }
    .h-md-80px,.size-md-80px { height: 80px; }
    .h-md-85px,.size-md-85px { height: 85px; }
    .h-md-90px,.size-md-90px { height: 90px; }
    .h-md-95px,.size-md-95px { height: 95px; }
    .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-125px,.size-md-125px { height: 125px; }
    .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-155px,.size-md-155px { height: 155px; }
    .h-md-160px,.size-md-160px { height: 160px; }
    .h-md-165px,.size-md-165px { height: 165px; }
    .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-600px,.size-md-600px { height: 600px; }
    .h-md-auto { height: auto; }

    .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-1 {
        margin-right: -1px;
        margin-left: -1px;
    }
    .md-gutters-1 > .col,
    .md-gutters-1 > [class*="col-"] {
        padding-right: 1px;
        padding-left: 1px;
    }
    .md-gutters-2 {
        margin-right: -2px;
        margin-left: -2px;
    }
    .md-gutters-2 > .col,
    .md-gutters-2 > [class*="col-"] {
        padding-right: 2px;
        padding-left: 2px;
    }
    .md-gutters-3 {
        margin-right: -3px;
        margin-left: -3px;
    }
    .md-gutters-3 > .col,
    .md-gutters-3 > [class*="col-"] {
        padding-right: 3px;
        padding-left: 3px;
    }
    .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-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;
    }
    .md-gutters-35 {
        margin-right: -35px;
        margin-left: -35px;
    }
    .md-gutters-35 > .col,
    .md-gutters-35 > [class*="col-"] {
        padding-right: 35px;
        padding-left: 35px;
    }
    .md-gutters-40 {
        margin-right: -40px;
        margin-left: -40px;
    }
    .md-gutters-40 > .col,
    .md-gutters-40 > [class*="col-"] {
        padding-right: 40px;
        padding-left: 40px;
    }
    .md-gutters-50 {
        margin-right: -50px;
        margin-left: -50px;
    }
    .md-gutters-50 > .col,
    .md-gutters-50 > [class*="col-"] {
        padding-right: 50px;
        padding-left: 50px;
    }
    .md-gutters-60 {
        margin-right: -60px;
        margin-left: -60px;
    }
    .md-gutters-60 > .col,
    .md-gutters-60 > [class*="col-"] {
        padding-right: 60px;
        padding-left: 60px;
    }
    .md-gutters-80 {
        margin-right: -80px;
        margin-left: -80px;
    }
    .md-gutters-80 > .col,
    .md-gutters-80 > [class*="col-"] {
        padding-right: 80px;
        padding-left: 80px;
    }
    .md-gutters-90 {
        margin-right: -90px;
        margin-left: -90px;
    }
    .md-gutters-90 > .col,
    .md-gutters-90 > [class*="col-"] {
        padding-right: 90px;
        padding-left: 90px;
    }
    .md-gutters-100 {
        margin-right: -100px;
        margin-left: -100px;
    }
    .md-gutters-100 > .col,
    .md-gutters-100 > [class*="col-"] {
        padding-right: 100px;
        padding-left: 100px;
    }

    .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;
    }

    [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%;
    }
    .row-cols-md-7 > * {
        -ms-flex: 0 0 14.2857143%;
        flex: 0 0 14.2857143%;
        max-width: 14.2857143%;
    }
    .row-cols-md-8 > * {
        -ms-flex: 0 0 12.5%;
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
    .row-cols-md-9 > * {
        -ms-flex: 0 0 11.1111111%;
        flex: 0 0 11.1111111%;
        max-width: 11.1111111%;
    }
    .row-cols-md-10 > * {
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
        max-width: 10%;
    }
    .row-cols-md-15 > * {
        -ms-flex: 0 0 6.66666667%;
        flex: 0 0 6.66666667%;
        max-width: 6.66666667%;
    }
}
/* lg */
@media (min-width: 992px) {
    .container,
    .container-lg {
        padding-right: calc((100vw - 920px) / 2);
        padding-left: calc((100vw - 920px) / 2);
    }
    .container-right,
    .container-lg-right {
        padding-right: calc((100vw - 920px) / 2);
    }
    .container-left,
    .container-lg-left {
        padding-left: calc((100vw - 920px) / 2);
    }

    .lg-absolute-center {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .lg-absolute-full {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }
    .lg-absolute-top-right {
        position: absolute;
        top: 0;
        right: 0;
    }

    .lg-fw-100 { font-weight: 100 !important; }
    .lg-fw-200 { font-weight: 200 !important; }
    .lg-fw-300 { font-weight: 300 !important; }
    .lg-fw-400 { font-weight: 400 !important; }
    .lg-fw-500 { font-weight: 500 !important; }
    .lg-fw-600 { font-weight: 600 !important; }
    .lg-fw-700 { font-weight: 700 !important; }
    .lg-fw-800 { font-weight: 800 !important; }
    .lg-fw-900 { font-weight: 900 !important; }

    .lg-fs-body-size { font-size: var(--body-size) !important; }
    .lg-fs-1em { font-size: 1em !important; }
    .lg-fs-8 { font-size: 0.5rem !important; }
    .lg-fs-9 { font-size: 0.5625rem !important; }
    .lg-fs-10 { font-size: 0.625rem !important; }
    .lg-fs-11 { font-size: 0.6875rem !important; }
    .lg-fs-12 { font-size: 0.75rem !important; }
    .lg-fs-13 { font-size: 0.8125rem !important; }
    .lg-fs-14 { font-size: 0.875rem !important; }
    .lg-fs-15 { font-size: 0.9375rem !important; }
    .lg-fs-15 { font-size: 0.9375rem !important; }
    .lg-fs-16 { font-size: 1rem !important; }
    .lg-fs-17 { font-size: 1.0625rem !important; }
    .lg-fs-18 { font-size: 1.125rem !important; }
    .lg-fs-19 { font-size: 1.1875rem !important; }
    .lg-fs-20 { font-size: 1.25rem !important; }
    .lg-fs-21 { font-size: 1.3125rem !important; }
    .lg-fs-22 { font-size: 1.375rem !important; }
    .lg-fs-23 { font-size: 1.4375rem !important; }
    .lg-fs-24 { font-size: 1.5rem !important; }
    .lg-fs-25 { font-size: 25px !important; }
    .lg-fs-26 { font-size: 26px !important; }
    .lg-fs-27 { font-size: 27px !important; }
    .lg-fs-28 { font-size: 28px !important; }
    .lg-fs-29 { font-size: 29px !important; }
    .lg-fs-30 { font-size: 30px !important; }
    .lg-fs-31 { font-size: 31px !important; }
    .lg-fs-32 { font-size: 32px !important; }
    .lg-fs-33 { font-size: 33px !important; }
    .lg-fs-34 { font-size: 34px !important; }
    .lg-fs-35 { font-size: 35px !important; }
    .lg-fs-36 { font-size: 36px !important; }
    .lg-fs-37 { font-size: 37px !important; }
    .lg-fs-38 { font-size: 38px !important; }
    .lg-fs-39 { font-size: 39px !important; }
    .lg-fs-40 { font-size: 40px !important; }
    .lg-fs-41 { font-size: 41px !important; }
    .lg-fs-42 { font-size: 42px !important; }
    .lg-fs-45 { font-size: 45px !important; }
    .lg-fs-50 { font-size: 50px !important; }
    .lg-fs-53 { font-size: 53px !important; }
    .lg-fs-55 { font-size: 55px !important; }
    .lg-fs-60 { font-size: 60px !important; }
    .lg-fs-65 { font-size: 65px !important; }
    .lg-fs-70 { font-size: 70px !important; }
    .lg-fs-75 { font-size: 75px !important; }
    .lg-fs-80 { font-size: 80px !important; }
    .lg-fs-87 { font-size: 87px !important; }
    .lg-fs-90 { font-size: 90px !important; }
    .lg-fs-100 { font-size: 100px !important; }
    .lg-fs-110 { font-size: 110px !important; }
    .lg-fs-115 { font-size: 115px !important; }
    .lg-fs-120 { font-size: 120px !important; }
    .lg-fs-140 { font-size: 140px !important; }
    .lg-fs-150 { font-size: 150px !important; }

    .lg-lh-0-7 { line-height: 0.7 !important; }
    .lg-lh-1 { line-height: 1 !important; }
    .lg-lh-1-1 { line-height: 1.1 !important; }
    .lg-lh-1-2 { line-height: 1.2 !important; }
    .lg-lh-1-25 { line-height: 1.25 !important; }
    .lg-lh-1-3 { line-height: 1.3 !important; }
    .lg-lh-1-4 {line-height: 1.4 !important; }
    .lg-lh-1-5 {line-height: 1.5 !important; }
    .lg-lh-1-6 {line-height: 1.6 !important; }
    .lg-lh-1-7 { line-height: 1.7 !important; }
    .lg-lh-1-8 { line-height: 1.8 !important; }
    .lg-lh-1-9 { line-height: 1.9 !important; }
    .lg-lh-2 { line-height: 2 !important; }
    .lg-lh-2-5 { line-height: 2.5 !important; }
    .lg-lh-3 { line-height: 3 !important; }
    .lg-lh-3-5 { line-height: 3.5 !important; }

    .border-lg { border: 1px solid #e2e5ec !important; }
    .border-lg-top { border-top: 1px solid #e2e5ec !important; }
    .border-lg-right { border-right: 1px solid #e2e5ec !important; }
    .border-lg-bottom { border-bottom: 1px solid #e2e5ec !important; }
    .border-lg-left { border-left: 1px solid #e2e5ec !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; }

    .border-lg-width-2 { border-width: 2px !important }
    .border-lg-width-3 { border-width: 3px !important }
    .border-lg-width-4 { border-width: 4px !important }
    .border-lg-width-5 { border-width: 5px !important }
    .border-lg-width-10 { border-width: 10px !important }
    .border-lg-width-15 { border-width: 15px !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-0,
    .px-lg-0,
    .p-lg-0 {
        padding-left: 0 !important;
    }
    .pl-lg-6,
    .px-lg-6,
    .p-lg-6 {
        padding-left: 4rem !important;
    }
    .pl-lg-7,
    .px-lg-7,
    .p-lg-7 {
        padding-left: 5rem !important;
    }
    .pl-lg-8,
    .px-lg-8,
    .p-lg-8 {
        padding-left: 6rem !important;
    }
    .pl-lg-9,
    .px-lg-9,
    .p-lg-9 {
        padding-left: 8rem !important;
    }
    .pl-lg-10,
    .px-lg-10,
    .p-lg-10 {
        padding-left: 10rem !important;
    }
    .pl-lg-11,
    .px-lg-11,
    .p-lg-11 {
        padding-left: 12rem !important;
    }
    .pl-lg-12,
    .px-lg-12,
    .p-lg-12 {
        padding-left: 16rem !important;
    }

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

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

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

    .pl-lg-2px,
    .px-lg-2px,
    .p-lg-2px {
        padding-left: 2px !important;
    }
    .pl-lg-3px,
    .px-lg-3px,
    .p-lg-3px {
        padding-left: 3px !important;
    }
    .pl-lg-5px,
    .px-lg-5px,
    .p-lg-5px {
        padding-left: 5px !important;
    }
    .pl-lg-10px,
    .px-lg-10px,
    .p-lg-10px {
        padding-left: 10px !important;
    }
    .pl-lg-13px,
    .px-lg-13px,
    .p-lg-13px {
        padding-left: 13px !important;
    }
    .pl-lg-15px,
    .px-lg-15px,
    .p-lg-15px {
        padding-left: 15px !important;
    }
    .pl-lg-20px,
    .px-lg-20px,
    .p-lg-20px {
        padding-left: 20px !important;
    }
    .pl-lg-25px,
    .px-lg-25px,
    .p-lg-25px {
        padding-left: 25px !important;
    }
    .pl-lg-30px,
    .px-lg-30px,
    .p-lg-30px {
        padding-left: 30px !important;
    }
    .pl-lg-35px,
    .px-lg-35px,
    .p-lg-35px {
        padding-left: 35px !important;
    }
    .pl-lg-40px,
    .px-lg-40px,
    .p-lg-40px {
        padding-left: 40px !important;
    }
    .pl-lg-50px,
    .px-lg-50px,
    .p-lg-50px {
        padding-left: 50px !important;
    }
    .pl-lg-60px,
    .px-lg-60px,
    .p-lg-60px {
        padding-left: 60px !important;
    }
    .pl-lg-65px,
    .px-lg-65px,
    .p-lg-65px {
        padding-left: 65px !important;
    }
    .pl-lg-70px,
    .px-lg-70px,
    .p-lg-70px {
        padding-left: 70px !important;
    }
    .pl-lg-75px,
    .px-lg-75px,
    .p-lg-75px {
        padding-left: 75px !important;
    }
    .pl-lg-90px,
    .px-lg-90px,
    .p-lg-90px {
        padding-left: 90px !important;
    }
    .pl-lg-100px,
    .px-lg-100px,
    .p-lg-100px {
        padding-left: 100px !important;
    }
    .pl-lg-125px,
    .px-lg-125px,
    .p-lg-125px {
        padding-left: 125px !important;
    }
    .pl-lg-130px,
    .px-lg-130px,
    .p-lg-130px {
        padding-left: 130px !important;
    }
    .pl-lg-140px,
    .px-lg-140px,
    .p-lg-140px {
        padding-left: 140px !important;
    }
    .pl-lg-150px,
    .px-lg-150px,
    .p-lg-150px {
        padding-left: 150px !important;
    }
    .pl-lg-160px,
    .px-lg-160px,
    .p-lg-160px {
        padding-left: 160px !important;
    }
    .pl-lg-170px,
    .px-lg-170px,
    .p-lg-170px {
        padding-left: 170px !important;
    }
    .pl-lg-175px,
    .px-lg-175px,
    .p-lg-175px {
        padding-left: 175px !important;
    }
    .pl-lg-180px,
    .px-lg-180px,
    .p-lg-180px {
        padding-left: 180px !important;
    }
    .pl-lg-200px,
    .px-lg-200px,
    .p-lg-200px {
        padding-left: 200px !important;
    }
    .pl-lg-250px,
    .px-lg-250px,
    .p-lg-250px {
        padding-left: 250px !important;
    }
    .pl-lg-300px,
    .px-lg-300px,
    .p-lg-300px {
        padding-left: 300px !important;
    }
    .pl-lg-350px,
    .px-lg-350px,
    .p-lg-350px {
        padding-left: 350px !important;
    }
    .pl-lg-400px,
    .px-lg-400px,
    .p-lg-400px {
        padding-left: 400px !important;
    }

    .pr-lg-2px,
    .px-lg-2px,
    .p-lg-2px {
        padding-right: 2px !important;
    }
    .pr-lg-3px,
    .px-lg-3px,
    .p-lg-3px {
        padding-right: 3px !important;
    }
    .pr-lg-5px,
    .px-lg-5px,
    .p-lg-5px {
        padding-right: 5px !important;
    }
    .pr-lg-10px,
    .px-lg-10px,
    .p-lg-10px {
        padding-right: 10px !important;
    }
    .pr-lg-13px,
    .px-lg-13px,
    .p-lg-13px {
        padding-right: 13px !important;
    }
    .pr-lg-15px,
    .px-lg-15px,
    .p-lg-15px {
        padding-right: 15px !important;
    }
    .pr-lg-20px,
    .px-lg-20px,
    .p-lg-20px {
        padding-right: 20px !important;
    }
    .pr-lg-25px,
    .px-lg-25px,
    .p-lg-25px {
        padding-right: 25px !important;
    }
    .pr-lg-30px,
    .px-lg-30px,
    .p-lg-30px {
        padding-right: 30px !important;
    }
    .pr-lg-35px,
    .px-lg-35px,
    .p-lg-35px {
        padding-right: 35px !important;
    }
    .pr-lg-40px,
    .px-lg-40px,
    .p-lg-40px {
        padding-right: 40px !important;
    }
    .pr-lg-50px,
    .px-lg-50px,
    .p-lg-50px {
        padding-right: 50px !important;
    }
    .pr-lg-60px,
    .px-lg-60px,
    .p-lg-60px {
        padding-right: 60px !important;
    }
    .pr-lg-65px,
    .px-lg-65px,
    .p-lg-65px {
        padding-right: 65px !important;
    }
    .pr-lg-70px,
    .px-lg-70px,
    .p-lg-70px {
        padding-right: 70px !important;
    }
    .pr-lg-75px,
    .px-lg-75px,
    .p-lg-75px {
        padding-right: 75px !important;
    }
    .pr-lg-90px,
    .px-lg-90px,
    .p-lg-90px {
        padding-right: 90px !important;
    }
    .pr-lg-100px,
    .px-lg-100px,
    .p-lg-100px {
        padding-right: 100px !important;
    }
    .pr-lg-125px,
    .px-lg-125px,
    .p-lg-125px {
        padding-right: 125px !important;
    }
    .pr-lg-130px,
    .px-lg-130px,
    .p-lg-130px {
        padding-right: 130px !important;
    }
    .pr-lg-140px,
    .px-lg-140px,
    .p-lg-140px {
        padding-right: 140px !important;
    }
    .pr-lg-150px,
    .px-lg-150px,
    .p-lg-150px {
        padding-right: 150px !important;
    }
    .pr-lg-160px,
    .px-lg-160px,
    .p-lg-160px {
        padding-right: 160px !important;
    }
    .pr-lg-170px,
    .px-lg-170px,
    .p-lg-170px {
        padding-right: 170px !important;
    }
    .pr-lg-175px,
    .px-lg-175px,
    .p-lg-175px {
        padding-right: 175px !important;
    }
    .pr-lg-180px,
    .px-lg-180px,
    .p-lg-180px {
        padding-right: 180px !important;
    }
    .pr-lg-200px,
    .px-lg-200px,
    .p-lg-200px {
        padding-right: 200px !important;
    }
    .pr-lg-250px,
    .px-lg-250px,
    .p-lg-250px {
        padding-right: 250px !important;
    }
    .pr-lg-300px,
    .px-lg-300px,
    .p-lg-300px {
        padding-right: 300px !important;
    }
    .pr-lg-350px,
    .px-lg-350px,
    .p-lg-350px {
        padding-right: 350px !important;
    }
    .pr-lg-400px,
    .px-lg-400px,
    .p-lg-400px {
        padding-right: 400px !important;
    }

    .pt-lg-2px,
    .py-lg-2px,
    .p-lg-2px {
        padding-top: 2px !important;
    }
    .pt-lg-3px,
    .py-lg-3px,
    .p-lg-3px {
        padding-top: 3px !important;
    }
    .pt-lg-5px,
    .py-lg-5px,
    .p-lg-5px {
        padding-top: 5px !important;
    }
    .pt-lg-10px,
    .py-lg-10px,
    .p-lg-10px {
        padding-top: 10px !important;
    }
    .pt-lg-13px,
    .py-lg-13px,
    .p-lg-13px {
        padding-top: 13px !important;
    }
    .pt-lg-15px,
    .py-lg-15px,
    .p-lg-15px {
        padding-top: 15px !important;
    }
    .pt-lg-20px,
    .py-lg-20px,
    .p-lg-20px {
        padding-top: 20px !important;
    }
    .pt-lg-25px,
    .py-lg-25px,
    .p-lg-25px {
        padding-top: 25px !important;
    }
    .pt-lg-30px,
    .py-lg-30px,
    .p-lg-30px {
        padding-top: 30px !important;
    }
    .pt-lg-35px,
    .py-lg-35px,
    .p-lg-35px {
        padding-top: 35px !important;
    }
    .pt-lg-40px,
    .py-lg-40px,
    .p-lg-40px {
        padding-top: 40px !important;
    }
    .pt-lg-50px,
    .py-lg-50px,
    .p-lg-50px {
        padding-top: 50px !important;
    }
    .pt-lg-60px,
    .py-lg-60px,
    .p-lg-60px {
        padding-top: 60px !important;
    }
    .pt-lg-65px,
    .py-lg-65px,
    .p-lg-65px {
        padding-top: 65px !important;
    }
    .pt-lg-70px,
    .py-lg-70px,
    .p-lg-70px {
        padding-top: 70px !important;
    }
    .pt-lg-75px,
    .py-lg-75px,
    .p-lg-75px {
        padding-top: 75px !important;
    }
    .pt-lg-90px,
    .py-lg-90px,
    .p-lg-90px {
        padding-top: 90px !important;
    }
    .pt-lg-100px,
    .py-lg-100px,
    .p-lg-100px {
        padding-top: 100px !important;
    }
    .pt-lg-125px,
    .py-lg-125px,
    .p-lg-125px {
        padding-top: 125px !important;
    }
    .pt-lg-130px,
    .py-lg-130px,
    .p-lg-130px {
        padding-top: 130px !important;
    }
    .pt-lg-140px,
    .py-lg-140px,
    .p-lg-140px {
        padding-top: 140px !important;
    }
    .pt-lg-150px,
    .py-lg-150px,
    .p-lg-150px {
        padding-top: 150px !important;
    }
    .pt-lg-160px,
    .py-lg-160px,
    .p-lg-160px {
        padding-top: 160px !important;
    }
    .pt-lg-170px,
    .py-lg-170px,
    .p-lg-170px {
        padding-top: 170px !important;
    }
    .pt-lg-175px,
    .py-lg-175px,
    .p-lg-175px {
        padding-top: 175px !important;
    }
    .pt-lg-180px,
    .py-lg-180px,
    .p-lg-180px {
        padding-top: 180px !important;
    }
    .pt-lg-200px,
    .py-lg-200px,
    .p-lg-200px {
        padding-top: 200px !important;
    }
    .pt-lg-250px,
    .py-lg-250px,
    .p-lg-250px {
        padding-top: 250px !important;
    }
    .pt-lg-300px,
    .py-lg-300px,
    .p-lg-300px {
        padding-top: 300px !important;
    }
    .pt-lg-350px,
    .py-lg-350px,
    .p-lg-350px {
        padding-top: 350px !important;
    }
    .pt-lg-400px,
    .py-lg-400px,
    .p-lg-400px {
        padding-top: 400px !important;
    }

    .pb-lg-2px,
    .py-lg-2px,
    .p-lg-2px {
        padding-bottom: 2px !important;
    }
    .pb-lg-3px,
    .py-lg-3px,
    .p-lg-3px {
        padding-bottom: 3px !important;
    }
    .pb-lg-5px,
    .py-lg-5px,
    .p-lg-5px {
        padding-bottom: 5px !important;
    }
    .pb-lg-10px,
    .py-lg-10px,
    .p-lg-10px {
        padding-bottom: 10px !important;
    }
    .pb-lg-13px,
    .py-lg-13px,
    .p-lg-13px {
        padding-bottom: 13px !important;
    }
    .pb-lg-15px,
    .py-lg-15px,
    .p-lg-15px {
        padding-bottom: 15px !important;
    }
    .pb-lg-20px,
    .py-lg-20px,
    .p-lg-20px {
        padding-bottom: 20px !important;
    }
    .pb-lg-25px,
    .py-lg-25px,
    .p-lg-25px {
        padding-bottom: 25px !important;
    }
    .pb-lg-30px,
    .py-lg-30px,
    .p-lg-30px {
        padding-bottom: 30px !important;
    }
    .pb-lg-35px,
    .py-lg-35px,
    .p-lg-35px {
        padding-bottom: 35px !important;
    }
    .pb-lg-40px,
    .py-lg-40px,
    .p-lg-40px {
        padding-bottom: 40px !important;
    }
    .pb-lg-50px,
    .py-lg-50px,
    .p-lg-50px {
        padding-bottom: 50px !important;
    }
    .pb-lg-60px,
    .py-lg-60px,
    .p-lg-60px {
        padding-bottom: 60px !important;
    }
    .pb-lg-65px,
    .py-lg-65px,
    .p-lg-65px {
        padding-bottom: 65px !important;
    }
    .pb-lg-70px,
    .py-lg-70px,
    .p-lg-70px {
        padding-bottom: 70px !important;
    }
    .pb-lg-75px,
    .py-lg-75px,
    .p-lg-75px {
        padding-bottom: 75px !important;
    }
    .pb-lg-90px,
    .py-lg-90px,
    .p-lg-90px {
        padding-bottom: 90px !important;
    }
    .pb-lg-100px,
    .py-lg-100px,
    .p-lg-100px {
        padding-bottom: 100px !important;
    }
    .pb-lg-125px,
    .py-lg-125px,
    .p-lg-125px {
        padding-bottom: 125px !important;
    }
    .pb-lg-130px,
    .py-lg-130px,
    .p-lg-130px {
        padding-bottom: 130px !important;
    }
    .pb-lg-140px,
    .py-lg-140px,
    .p-lg-140px {
        padding-bottom: 140px !important;
    }
    .pb-lg-150px,
    .py-lg-150px,
    .p-lg-150px {
        padding-bottom: 150px !important;
    }
    .pb-lg-160px,
    .py-lg-160px,
    .p-lg-160px {
        padding-bottom: 160px !important;
    }
    .pb-lg-170px,
    .py-lg-170px,
    .p-lg-170px {
        padding-bottom: 170px !important;
    }
    .pb-lg-175px,
    .py-lg-175px,
    .p-lg-175px {
        padding-bottom: 175px !important;
    }
    .pb-lg-180px,
    .py-lg-180px,
    .p-lg-180px {
        padding-bottom: 180px !important;
    }
    .pb-lg-200px,
    .py-lg-200px,
    .p-lg-200px {
        padding-bottom: 200px !important;
    }
    .pb-lg-250px,
    .py-lg-250px,
    .p-lg-250px {
        padding-bottom: 250px !important;
    }
    .pb-lg-300px,
    .py-lg-300px,
    .p-lg-300px {
        padding-bottom: 300px !important;
    }
    .pb-lg-350px,
    .py-lg-350px,
    .p-lg-350px {
        padding-bottom: 350px !important;
    }
    .pb-lg-400px,
    .py-lg-400px,
    .p-lg-400px {
        padding-bottom: 400px !important;
    }

    .w-lg-1em,.size-lg-1em { width: 1em; }
    .w-lg-5px,.size-lg-5px { width: 5px; }
    .w-lg-7px,.size-lg-7px { width: 7px; }
    .w-lg-10px,.size-lg-10px { width: 10px; }
    .w-lg-15px,.size-lg-15px { width: 15px; }
    .w-lg-17px,.size-lg-17px { width: 17px; }
    .w-lg-20px,.size-lg-20px { width: 20px; }
    .w-lg-22px,.size-lg-22px { width: 22px; }
    .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-50px,.size-lg-50px { width: 50px; }
    .w-lg-55px,.size-lg-55px { width: 55px; }
    .w-lg-60px,.size-lg-60px { width: 60px; }
    .w-lg-65px,.size-lg-65px { width: 65px; }
    .w-lg-70px,.size-lg-70px { width: 70px; }
    .w-lg-75px,.size-lg-75px { width: 75px; }
    .w-lg-80px,.size-lg-80px { width: 80px; }
    .w-lg-85px,.size-lg-85px { width: 85px; }
    .w-lg-90px,.size-lg-90px { width: 90px; }
    .w-lg-95px,.size-lg-95px { width: 95px; }
    .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-125px,.size-lg-125px { width: 125px; }
    .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-155px,.size-lg-155px { width: 155px; }
    .w-lg-160px,.size-lg-160px { width: 160px; }
    .w-lg-165px,.size-lg-165px { width: 165px; }
    .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-600px,.size-lg-600px { width: 600px; }

    .h-lg-1em,.size-lg-1em { height: 1em; }
    .h-lg-5px,.size-lg-5px { height: 5px; }
    .h-lg-7px,.size-lg-7px { height: 7px; }
    .h-lg-10px,.size-lg-10px { height: 10px; }
    .h-lg-15px,.size-lg-15px { height: 15px; }
    .h-lg-17px,.size-lg-17px { height: 17px; }
    .h-lg-20px,.size-lg-20px { height: 20px; }
    .h-lg-22px,.size-lg-22px { height: 22px; }
    .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-50px,.size-lg-50px { height: 50px; }
    .h-lg-55px,.size-lg-55px { height: 55px; }
    .h-lg-60px,.size-lg-60px { height: 60px; }
    .h-lg-65px,.size-lg-65px { height: 65px; }
    .h-lg-70px,.size-lg-70px { height: 70px; }
    .h-lg-75px,.size-lg-75px { height: 75px; }
    .h-lg-80px,.size-lg-80px { height: 80px; }
    .h-lg-85px,.size-lg-85px { height: 85px; }
    .h-lg-90px,.size-lg-90px { height: 90px; }
    .h-lg-95px,.size-lg-95px { height: 95px; }
    .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-125px,.size-lg-125px { height: 125px; }
    .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-155px,.size-lg-155px { height: 155px; }
    .h-lg-160px,.size-lg-160px { height: 160px; }
    .h-lg-165px,.size-lg-165px { height: 165px; }
    .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-600px,.size-lg-600px { height: 600px; }
    .h-lg-auto { height: auto; }

    .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-1 {
        margin-right: -1px;
        margin-left: -1px;
    }
    .lg-gutters-1 > .col,
    .lg-gutters-1 > [class*="col-"] {
        padding-right: 1px;
        padding-left: 1px;
    }
    .lg-gutters-2 {
        margin-right: -2px;
        margin-left: -2px;
    }
    .lg-gutters-2 > .col,
    .lg-gutters-2 > [class*="col-"] {
        padding-right: 2px;
        padding-left: 2px;
    }
    .lg-gutters-3 {
        margin-right: -3px;
        margin-left: -3px;
    }
    .lg-gutters-3 > .col,
    .lg-gutters-3 > [class*="col-"] {
        padding-right: 3px;
        padding-left: 3px;
    }
    .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-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;
    }
    .lg-gutters-35 {
        margin-right: -35px;
        margin-left: -35px;
    }
    .lg-gutters-35 > .col,
    .lg-gutters-35 > [class*="col-"] {
        padding-right: 35px;
        padding-left: 35px;
    }
    .lg-gutters-40 {
        margin-right: -40px;
        margin-left: -40px;
    }
    .lg-gutters-40 > .col,
    .lg-gutters-40 > [class*="col-"] {
        padding-right: 40px;
        padding-left: 40px;
    }
    .lg-gutters-50 {
        margin-right: -50px;
        margin-left: -50px;
    }
    .lg-gutters-50 > .col,
    .lg-gutters-50 > [class*="col-"] {
        padding-right: 50px;
        padding-left: 50px;
    }
    .lg-gutters-60 {
        margin-right: -60px;
        margin-left: -60px;
    }
    .lg-gutters-60 > .col,
    .lg-gutters-60 > [class*="col-"] {
        padding-right: 60px;
        padding-left: 60px;
    }
    .lg-gutters-80 {
        margin-right: -80px;
        margin-left: -80px;
    }
    .lg-gutters-80 > .col,
    .lg-gutters-80 > [class*="col-"] {
        padding-right: 80px;
        padding-left: 80px;
    }
    .lg-gutters-90 {
        margin-right: -90px;
        margin-left: -90px;
    }
    .lg-gutters-90 > .col,
    .lg-gutters-90 > [class*="col-"] {
        padding-right: 90px;
        padding-left: 90px;
    }
    .lg-gutters-100 {
        margin-right: -100px;
        margin-left: -100px;
    }
    .lg-gutters-100 > .col,
    .lg-gutters-100 > [class*="col-"] {
        padding-right: 100px;
        padding-left: 100px;
    }

    .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;
    }
    [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%;
    }
    .row-cols-lg-7 > * {
        -ms-flex: 0 0 14.2857143%;
        flex: 0 0 14.2857143%;
        max-width: 14.2857143%;
    }
    .row-cols-lg-8 > * {
        -ms-flex: 0 0 12.5%;
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
    .row-cols-lg-9 > * {
        -ms-flex: 0 0 11.1111111%;
        flex: 0 0 11.1111111%;
        max-width: 11.1111111%;
    }
    .row-cols-lg-10 > * {
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
        max-width: 10%;
    }
    .row-cols-lg-15 > * {
        -ms-flex: 0 0 6.66666667%;
        flex: 0 0 6.66666667%;
        max-width: 6.66666667%;
    }
}
/* xl */
@media (min-width: 1200px) {
    .container,
    .container-xl {
        padding-right: calc((100vw - 1100px) / 2);
        padding-left: calc((100vw - 1100px) / 2);
    }
    .container-right,
    .container-xl-right {
        padding-right: calc((100vw - 1100px) / 2);
    }
    .container-left,
    .container-xl-left {
        padding-left: calc((100vw - 1100px) / 2);
    }
    .small-container {
        padding-right: 40px;
        padding-left: 40px;
    }
    .small-container-right,
    .small-container-xl-right {
        padding-right: 40px;
    }
    .small-container-left,
    .small-container-xl-left {
        padding-left: 40px;
    }

    .xl-absolute-center {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .xl-absolute-full {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }
    .xl-absolute-top-right {
        position: absolute;
        top: 0;
        right: 0;
    }

    .xl-fw-100 { font-weight: 100 !important; }
    .xl-fw-200 { font-weight: 200 !important; }
    .xl-fw-300 { font-weight: 300 !important; }
    .xl-fw-400 { font-weight: 400 !important; }
    .xl-fw-500 { font-weight: 500 !important; }
    .xl-fw-600 { font-weight: 600 !important; }
    .xl-fw-700 { font-weight: 700 !important; }
    .xl-fw-800 { font-weight: 800 !important; }
    .xl-fw-900 { font-weight: 900 !important; }

    .xl-fs-body-size { font-size: var(--body-size) !important; }
    .xl-fs-1em { font-size: 1em !important; }
    .xl-fs-8 { font-size: 0.5rem !important; }
    .xl-fs-9 { font-size: 0.5625rem !important; }
    .xl-fs-10 { font-size: 0.625rem !important; }
    .xl-fs-11 { font-size: 0.6875rem !important; }
    .xl-fs-12 { font-size: 0.75rem !important; }
    .xl-fs-13 { font-size: 0.8125rem !important; }
    .xl-fs-14 { font-size: 0.875rem !important; }
    .xl-fs-15 { font-size: 0.9375rem !important; }
    .xl-fs-15 { font-size: 0.9375rem !important; }
    .xl-fs-16 { font-size: 1rem !important; }
    .xl-fs-17 { font-size: 1.0625rem !important; }
    .xl-fs-18 { font-size: 1.125rem !important; }
    .xl-fs-19 { font-size: 1.1875rem !important; }
    .xl-fs-20 { font-size: 1.25rem !important; }
    .xl-fs-21 { font-size: 1.3125rem !important; }
    .xl-fs-22 { font-size: 1.375rem !important; }
    .xl-fs-23 { font-size: 1.4375rem !important; }
    .xl-fs-24 { font-size: 1.5rem !important; }
    .xl-fs-25 { font-size: 25px !important; }
    .xl-fs-26 { font-size: 26px !important; }
    .xl-fs-27 { font-size: 27px !important; }
    .xl-fs-28 { font-size: 28px !important; }
    .xl-fs-29 { font-size: 29px !important; }
    .xl-fs-30 { font-size: 30px !important; }
    .xl-fs-31 { font-size: 31px !important; }
    .xl-fs-32 { font-size: 32px !important; }
    .xl-fs-33 { font-size: 33px !important; }
    .xl-fs-34 { font-size: 34px !important; }
    .xl-fs-35 { font-size: 35px !important; }
    .xl-fs-36 { font-size: 36px !important; }
    .xl-fs-37 { font-size: 37px !important; }
    .xl-fs-38 { font-size: 38px !important; }
    .xl-fs-39 { font-size: 39px !important; }
    .xl-fs-40 { font-size: 40px !important; }
    .xl-fs-41 { font-size: 41px !important; }
    .xl-fs-42 { font-size: 42px !important; }
    .xl-fs-45 { font-size: 45px !important; }
    .xl-fs-50 { font-size: 50px !important; }
    .xl-fs-53 { font-size: 53px !important; }
    .xl-fs-55 { font-size: 55px !important; }
    .xl-fs-60 { font-size: 60px !important; }
    .xl-fs-65 { font-size: 65px !important; }
    .xl-fs-70 { font-size: 70px !important; }
    .xl-fs-75 { font-size: 75px !important; }
    .xl-fs-80 { font-size: 80px !important; }
    .xl-fs-87 { font-size: 87px !important; }
    .xl-fs-90 { font-size: 90px !important; }
    .xl-fs-100 { font-size: 100px !important; }
    .xl-fs-110 { font-size: 110px !important; }
    .xl-fs-115 { font-size: 115px !important; }
    .xl-fs-120 { font-size: 120px !important; }
    .xl-fs-140 { font-size: 140px !important; }
    .xl-fs-150 { font-size: 150px !important; }

    .xl-lh-0-7 { line-height: 0.7 !important; }
    .xl-lh-1 { line-height: 1 !important; }
    .xl-lh-1-1 { line-height: 1.1 !important; }
    .xl-lh-1-2 { line-height: 1.2 !important; }
    .xl-lh-1-25 { line-height: 1.25 !important; }
    .xl-lh-1-3 { line-height: 1.3 !important; }
    .xl-lh-1-4 {line-height: 1.4 !important; }
    .xl-lh-1-5 {line-height: 1.5 !important; }
    .xl-lh-1-6 {line-height: 1.6 !important; }
    .xl-lh-1-7 { line-height: 1.7 !important; }
    .xl-lh-1-8 { line-height: 1.8 !important; }
    .xl-lh-1-9 { line-height: 1.9 !important; }
    .xl-lh-2 { line-height: 2 !important; }
    .xl-lh-2-5 { line-height: 2.5 !important; }
    .xl-lh-3 { line-height: 3 !important; }
    .xl-lh-3-5 { line-height: 3.5 !important; }

    .border-xl { border: 1px solid #e2e5ec !important; }
    .border-xl-top { border-top: 1px solid #e2e5ec !important; }
    .border-xl-right { border-right: 1px solid #e2e5ec !important; }
    .border-xl-bottom { border-bottom: 1px solid #e2e5ec !important; }
    .border-xl-left { border-left: 1px solid #e2e5ec !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; }

    .border-xl-width-2 { border-width: 2px !important }
    .border-xl-width-3 { border-width: 3px !important }
    .border-xl-width-4 { border-width: 4px !important }
    .border-xl-width-5 { border-width: 5px !important }
    .border-xl-width-10 { border-width: 10px !important }
    .border-xl-width-15 { border-width: 15px !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-0,
    .px-xl-0,
    .p-xl-0 {
        padding-left: 0 !important;
    }
    .pl-xl-6,
    .px-xl-6,
    .p-xl-6 {
        padding-left: 4rem !important;
    }
    .pl-xl-7,
    .px-xl-7,
    .p-xl-7 {
        padding-left: 5rem !important;
    }
    .pl-xl-8,
    .px-xl-8,
    .p-xl-8 {
        padding-left: 6rem !important;
    }
    .pl-xl-9,
    .px-xl-9,
    .p-xl-9 {
        padding-left: 8rem !important;
    }
    .pl-xl-10,
    .px-xl-10,
    .p-xl-10 {
        padding-left: 10rem !important;
    }
    .pl-xl-11,
    .px-xl-11,
    .p-xl-11 {
        padding-left: 12rem !important;
    }
    .pl-xl-12,
    .px-xl-12,
    .p-xl-12 {
        padding-left: 16rem !important;
    }

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

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

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

    .pl-xl-2px,
    .px-xl-2px,
    .p-xl-2px {
        padding-left: 2px !important;
    }
    .pl-xl-3px,
    .px-xl-3px,
    .p-xl-3px {
        padding-left: 3px !important;
    }
    .pl-xl-5px,
    .px-xl-5px,
    .p-xl-5px {
        padding-left: 5px !important;
    }
    .pl-xl-10px,
    .px-xl-10px,
    .p-xl-10px {
        padding-left: 10px !important;
    }
    .pl-xl-13px,
    .px-xl-13px,
    .p-xl-13px {
        padding-left: 13px !important;
    }
    .pl-xl-15px,
    .px-xl-15px,
    .p-xl-15px {
        padding-left: 15px !important;
    }
    .pl-xl-20px,
    .px-xl-20px,
    .p-xl-20px {
        padding-left: 20px !important;
    }
    .pl-xl-25px,
    .px-xl-25px,
    .p-xl-25px {
        padding-left: 25px !important;
    }
    .pl-xl-30px,
    .px-xl-30px,
    .p-xl-30px {
        padding-left: 30px !important;
    }
    .pl-xl-35px,
    .px-xl-35px,
    .p-xl-35px {
        padding-left: 35px !important;
    }
    .pl-xl-40px,
    .px-xl-40px,
    .p-xl-40px {
        padding-left: 40px !important;
    }
    .pl-xl-50px,
    .px-xl-50px,
    .p-xl-50px {
        padding-left: 50px !important;
    }
    .pl-xl-60px,
    .px-xl-60px,
    .p-xl-60px {
        padding-left: 60px !important;
    }
    .pl-xl-65px,
    .px-xl-65px,
    .p-xl-65px {
        padding-left: 65px !important;
    }
    .pl-xl-70px,
    .px-xl-70px,
    .p-xl-70px {
        padding-left: 70px !important;
    }
    .pl-xl-75px,
    .px-xl-75px,
    .p-xl-75px {
        padding-left: 75px !important;
    }
    .pl-xl-90px,
    .px-xl-90px,
    .p-xl-90px {
        padding-left: 90px !important;
    }
    .pl-xl-100px,
    .px-xl-100px,
    .p-xl-100px {
        padding-left: 100px !important;
    }
    .pl-xl-125px,
    .px-xl-125px,
    .p-xl-125px {
        padding-left: 125px !important;
    }
    .pl-xl-130px,
    .px-xl-130px,
    .p-xl-130px {
        padding-left: 130px !important;
    }
    .pl-xl-140px,
    .px-xl-140px,
    .p-xl-140px {
        padding-left: 140px !important;
    }
    .pl-xl-150px,
    .px-xl-150px,
    .p-xl-150px {
        padding-left: 150px !important;
    }
    .pl-xl-160px,
    .px-xl-160px,
    .p-xl-160px {
        padding-left: 160px !important;
    }
    .pl-xl-170px,
    .px-xl-170px,
    .p-xl-170px {
        padding-left: 170px !important;
    }
    .pl-xl-175px,
    .px-xl-175px,
    .p-xl-175px {
        padding-left: 175px !important;
    }
    .pl-xl-180px,
    .px-xl-180px,
    .p-xl-180px {
        padding-left: 180px !important;
    }
    .pl-xl-200px,
    .px-xl-200px,
    .p-xl-200px {
        padding-left: 200px !important;
    }
    .pl-xl-250px,
    .px-xl-250px,
    .p-xl-250px {
        padding-left: 250px !important;
    }
    .pl-xl-300px,
    .px-xl-300px,
    .p-xl-300px {
        padding-left: 300px !important;
    }
    .pl-xl-350px,
    .px-xl-350px,
    .p-xl-350px {
        padding-left: 350px !important;
    }
    .pl-xl-400px,
    .px-xl-400px,
    .p-xl-400px {
        padding-left: 400px !important;
    }

    .pr-xl-2px,
    .px-xl-2px,
    .p-xl-2px {
        padding-right: 2px !important;
    }
    .pr-xl-3px,
    .px-xl-3px,
    .p-xl-3px {
        padding-right: 3px !important;
    }
    .pr-xl-5px,
    .px-xl-5px,
    .p-xl-5px {
        padding-right: 5px !important;
    }
    .pr-xl-10px,
    .px-xl-10px,
    .p-xl-10px {
        padding-right: 10px !important;
    }
    .pr-xl-13px,
    .px-xl-13px,
    .p-xl-13px {
        padding-right: 13px !important;
    }
    .pr-xl-15px,
    .px-xl-15px,
    .p-xl-15px {
        padding-right: 15px !important;
    }
    .pr-xl-20px,
    .px-xl-20px,
    .p-xl-20px {
        padding-right: 20px !important;
    }
    .pr-xl-25px,
    .px-xl-25px,
    .p-xl-25px {
        padding-right: 25px !important;
    }
    .pr-xl-30px,
    .px-xl-30px,
    .p-xl-30px {
        padding-right: 30px !important;
    }
    .pr-xl-35px,
    .px-xl-35px,
    .p-xl-35px {
        padding-right: 35px !important;
    }
    .pr-xl-40px,
    .px-xl-40px,
    .p-xl-40px {
        padding-right: 40px !important;
    }
    .pr-xl-50px,
    .px-xl-50px,
    .p-xl-50px {
        padding-right: 50px !important;
    }
    .pr-xl-60px,
    .px-xl-60px,
    .p-xl-60px {
        padding-right: 60px !important;
    }
    .pr-xl-65px,
    .px-xl-65px,
    .p-xl-65px {
        padding-right: 65px !important;
    }
    .pr-xl-70px,
    .px-xl-70px,
    .p-xl-70px {
        padding-right: 70px !important;
    }
    .pr-xl-75px,
    .px-xl-75px,
    .p-xl-75px {
        padding-right: 75px !important;
    }
    .pr-xl-90px,
    .px-xl-90px,
    .p-xl-90px {
        padding-right: 90px !important;
    }
    .pr-xl-100px,
    .px-xl-100px,
    .p-xl-100px {
        padding-right: 100px !important;
    }
    .pr-xl-125px,
    .px-xl-125px,
    .p-xl-125px {
        padding-right: 125px !important;
    }
    .pr-xl-130px,
    .px-xl-130px,
    .p-xl-130px {
        padding-right: 130px !important;
    }
    .pr-xl-140px,
    .px-xl-140px,
    .p-xl-140px {
        padding-right: 140px !important;
    }
    .pr-xl-150px,
    .px-xl-150px,
    .p-xl-150px {
        padding-right: 150px !important;
    }
    .pr-xl-160px,
    .px-xl-160px,
    .p-xl-160px {
        padding-right: 160px !important;
    }
    .pr-xl-170px,
    .px-xl-170px,
    .p-xl-170px {
        padding-right: 170px !important;
    }
    .pr-xl-175px,
    .px-xl-175px,
    .p-xl-175px {
        padding-right: 175px !important;
    }
    .pr-xl-180px,
    .px-xl-180px,
    .p-xl-180px {
        padding-right: 180px !important;
    }
    .pr-xl-200px,
    .px-xl-200px,
    .p-xl-200px {
        padding-right: 200px !important;
    }
    .pr-xl-250px,
    .px-xl-250px,
    .p-xl-250px {
        padding-right: 250px !important;
    }
    .pr-xl-300px,
    .px-xl-300px,
    .p-xl-300px {
        padding-right: 300px !important;
    }
    .pr-xl-350px,
    .px-xl-350px,
    .p-xl-350px {
        padding-right: 350px !important;
    }
    .pr-xl-400px,
    .px-xl-400px,
    .p-xl-400px {
        padding-right: 400px !important;
    }

    .pt-xl-2px,
    .py-xl-2px,
    .p-xl-2px {
        padding-top: 2px !important;
    }
    .pt-xl-3px,
    .py-xl-3px,
    .p-xl-3px {
        padding-top: 3px !important;
    }
    .pt-xl-5px,
    .py-xl-5px,
    .p-xl-5px {
        padding-top: 5px !important;
    }
    .pt-xl-10px,
    .py-xl-10px,
    .p-xl-10px {
        padding-top: 10px !important;
    }
    .pt-xl-13px,
    .py-xl-13px,
    .p-xl-13px {
        padding-top: 13px !important;
    }
    .pt-xl-15px,
    .py-xl-15px,
    .p-xl-15px {
        padding-top: 15px !important;
    }
    .pt-xl-20px,
    .py-xl-20px,
    .p-xl-20px {
        padding-top: 20px !important;
    }
    .pt-xl-25px,
    .py-xl-25px,
    .p-xl-25px {
        padding-top: 25px !important;
    }
    .pt-xl-30px,
    .py-xl-30px,
    .p-xl-30px {
        padding-top: 30px !important;
    }
    .pt-xl-35px,
    .py-xl-35px,
    .p-xl-35px {
        padding-top: 35px !important;
    }
    .pt-xl-40px,
    .py-xl-40px,
    .p-xl-40px {
        padding-top: 40px !important;
    }
    .pt-xl-50px,
    .py-xl-50px,
    .p-xl-50px {
        padding-top: 50px !important;
    }
    .pt-xl-60px,
    .py-xl-60px,
    .p-xl-60px {
        padding-top: 60px !important;
    }
    .pt-xl-65px,
    .py-xl-65px,
    .p-xl-65px {
        padding-top: 65px !important;
    }
    .pt-xl-70px,
    .py-xl-70px,
    .p-xl-70px {
        padding-top: 70px !important;
    }
    .pt-xl-75px,
    .py-xl-75px,
    .p-xl-75px {
        padding-top: 75px !important;
    }
    .pt-xl-90px,
    .py-xl-90px,
    .p-xl-90px {
        padding-top: 90px !important;
    }
    .pt-xl-100px,
    .py-xl-100px,
    .p-xl-100px {
        padding-top: 100px !important;
    }
    .pt-xl-125px,
    .py-xl-125px,
    .p-xl-125px {
        padding-top: 125px !important;
    }
    .pt-xl-130px,
    .py-xl-130px,
    .p-xl-130px {
        padding-top: 130px !important;
    }
    .pt-xl-140px,
    .py-xl-140px,
    .p-xl-140px {
        padding-top: 140px !important;
    }
    .pt-xl-150px,
    .py-xl-150px,
    .p-xl-150px {
        padding-top: 150px !important;
    }
    .pt-xl-160px,
    .py-xl-160px,
    .p-xl-160px {
        padding-top: 160px !important;
    }
    .pt-xl-170px,
    .py-xl-170px,
    .p-xl-170px {
        padding-top: 170px !important;
    }
    .pt-xl-175px,
    .py-xl-175px,
    .p-xl-175px {
        padding-top: 175px !important;
    }
    .pt-xl-180px,
    .py-xl-180px,
    .p-xl-180px {
        padding-top: 180px !important;
    }
    .pt-xl-200px,
    .py-xl-200px,
    .p-xl-200px {
        padding-top: 200px !important;
    }
    .pt-xl-250px,
    .py-xl-250px,
    .p-xl-250px {
        padding-top: 250px !important;
    }
    .pt-xl-300px,
    .py-xl-300px,
    .p-xl-300px {
        padding-top: 300px !important;
    }
    .pt-xl-350px,
    .py-xl-350px,
    .p-xl-350px {
        padding-top: 350px !important;
    }
    .pt-xl-400px,
    .py-xl-400px,
    .p-xl-400px {
        padding-top: 400px !important;
    }

    .pb-xl-2px,
    .py-xl-2px,
    .p-xl-2px {
        padding-bottom: 2px !important;
    }
    .pb-xl-3px,
    .py-xl-3px,
    .p-xl-3px {
        padding-bottom: 3px !important;
    }
    .pb-xl-5px,
    .py-xl-5px,
    .p-xl-5px {
        padding-bottom: 5px !important;
    }
    .pb-xl-10px,
    .py-xl-10px,
    .p-xl-10px {
        padding-bottom: 10px !important;
    }
    .pb-xl-13px,
    .py-xl-13px,
    .p-xl-13px {
        padding-bottom: 10px !important;
    }
    .pb-xl-15px,
    .py-xl-15px,
    .p-xl-15px {
        padding-bottom: 15px !important;
    }
    .pb-xl-20px,
    .py-xl-20px,
    .p-xl-20px {
        padding-bottom: 20px !important;
    }
    .pb-xl-25px,
    .py-xl-25px,
    .p-xl-25px {
        padding-bottom: 25px !important;
    }
    .pb-xl-30px,
    .py-xl-30px,
    .p-xl-30px {
        padding-bottom: 30px !important;
    }
    .pb-xl-35px,
    .py-xl-35px,
    .p-xl-35px {
        padding-bottom: 35px !important;
    }
    .pb-xl-40px,
    .py-xl-40px,
    .p-xl-40px {
        padding-bottom: 40px !important;
    }
    .pb-xl-50px,
    .py-xl-50px,
    .p-xl-50px {
        padding-bottom: 50px !important;
    }
    .pb-xl-60px,
    .py-xl-60px,
    .p-xl-60px {
        padding-bottom: 60px !important;
    }
    .pb-xl-65px,
    .py-xl-65px,
    .p-xl-65px {
        padding-bottom: 65px !important;
    }
    .pb-xl-70px,
    .py-xl-70px,
    .p-xl-70px {
        padding-bottom: 70px !important;
    }
    .pb-xl-75px,
    .py-xl-75px,
    .p-xl-75px {
        padding-bottom: 75px !important;
    }
    .pb-xl-90px,
    .py-xl-90px,
    .p-xl-90px {
        padding-bottom: 90px !important;
    }
    .pb-xl-100px,
    .py-xl-100px,
    .p-xl-100px {
        padding-bottom: 100px !important;
    }
    .pb-xl-125px,
    .py-xl-125px,
    .p-xl-125px {
        padding-bottom: 125px !important;
    }
    .pb-xl-130px,
    .py-xl-130px,
    .p-xl-130px {
        padding-bottom: 130px !important;
    }
    .pb-xl-140px,
    .py-xl-140px,
    .p-xl-140px {
        padding-bottom: 140px !important;
    }
    .pb-xl-150px,
    .py-xl-150px,
    .p-xl-150px {
        padding-bottom: 150px !important;
    }
    .pb-xl-160px,
    .py-xl-160px,
    .p-xl-160px {
        padding-bottom: 160px !important;
    }
    .pb-xl-170px,
    .py-xl-170px,
    .p-xl-170px {
        padding-bottom: 170px !important;
    }
    .pb-xl-175px,
    .py-xl-175px,
    .p-xl-175px {
        padding-bottom: 175px !important;
    }
    .pb-xl-180px,
    .py-xl-180px,
    .p-xl-180px {
        padding-bottom: 180px !important;
    }
    .pb-xl-200px,
    .py-xl-200px,
    .p-xl-200px {
        padding-bottom: 200px !important;
    }
    .pb-xl-250px,
    .py-xl-250px,
    .p-xl-250px {
        padding-bottom: 250px !important;
    }
    .pb-xl-300px,
    .py-xl-300px,
    .p-xl-300px {
        padding-bottom: 300px !important;
    }
    .pb-xl-350px,
    .py-xl-350px,
    .p-xl-350px {
        padding-bottom: 350px !important;
    }
    .pb-xl-400px,
    .py-xl-400px,
    .p-xl-400px {
        padding-bottom: 400px !important;
    }

    .w-xl-1em,.size-xl-1em { width: 1em; }
    .w-xl-5px,.size-xl-5px { width: 5px; }
    .w-xl-7px,.size-xl-7px { width: 7px; }
    .w-xl-10px,.size-xl-10px { width: 10px; }
    .w-xl-15px,.size-xl-15px { width: 15px; }
    .w-xl-17px,.size-xl-17px { width: 17px; }
    .w-xl-20px,.size-xl-20px { width: 20px; }
    .w-xl-22px,.size-xl-22px { width: 22px; }
    .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-50px,.size-xl-50px { width: 50px; }
    .w-xl-55px,.size-xl-55px { width: 55px; }
    .w-xl-60px,.size-xl-60px { width: 60px; }
    .w-xl-65px,.size-xl-65px { width: 65px; }
    .w-xl-70px,.size-xl-70px { width: 70px; }
    .w-xl-75px,.size-xl-75px { width: 75px; }
    .w-xl-80px,.size-xl-80px { width: 80px; }
    .w-xl-85px,.size-xl-85px { width: 85px; }
    .w-xl-90px,.size-xl-90px { width: 90px; }
    .w-xl-95px,.size-xl-95px { width: 95px; }
    .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-125px,.size-xl-125px { width: 125px; }
    .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-155px,.size-xl-155px { width: 155px; }
    .w-xl-160px,.size-xl-160px { width: 160px; }
    .w-xl-165px,.size-xl-165px { width: 165px; }
    .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-600px,.size-xl-600px { width: 600px; }

    .h-xl-1em,.size-xl-1em { height: 1em; }
    .h-xl-5px,.size-xl-5px { height: 5px; }
    .h-xl-7px,.size-xl-7px { height: 7px; }
    .h-xl-10px,.size-xl-10px { height: 10px; }
    .h-xl-15px,.size-xl-15px { height: 15px; }
    .h-xl-17px,.size-xl-17px { height: 17px; }
    .h-xl-20px,.size-xl-20px { height: 20px; }
    .h-xl-22px,.size-xl-22px { height: 22px; }
    .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-50px,.size-xl-50px { height: 50px; }
    .h-xl-55px,.size-xl-55px { height: 55px; }
    .h-xl-60px,.size-xl-60px { height: 60px; }
    .h-xl-65px,.size-xl-65px { height: 65px; }
    .h-xl-70px,.size-xl-70px { height: 70px; }
    .h-xl-75px,.size-xl-75px { height: 75px; }
    .h-xl-80px,.size-xl-80px { height: 80px; }
    .h-xl-85px,.size-xl-85px { height: 85px; }
    .h-xl-90px,.size-xl-90px { height: 90px; }
    .h-xl-95px,.size-xl-95px { height: 95px; }
    .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-125px,.size-xl-125px { height: 125px; }
    .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-155px,.size-xl-155px { height: 155px; }
    .h-xl-160px,.size-xl-160px { height: 160px; }
    .h-xl-165px,.size-xl-165px { height: 165px; }
    .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-600px,.size-xl-600px { height: 600px; }
    .h-xl-auto { height: auto; }

    .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-1 {
        margin-right: -1px;
        margin-left: -1px;
    }
    .xl-gutters-1 > .col,
    .xl-gutters-1 > [class*="col-"] {
        padding-right: 1px;
        padding-left: 1px;
    }
    .xl-gutters-2 {
        margin-right: -2px;
        margin-left: -2px;
    }
    .xl-gutters-2 > .col,
    .xl-gutters-2 > [class*="col-"] {
        padding-right: 2px;
        padding-left: 2px;
    }
    .xl-gutters-3 {
        margin-right: -3px;
        margin-left: -3px;
    }
    .xl-gutters-3 > .col,
    .xl-gutters-3 > [class*="col-"] {
        padding-right: 3px;
        padding-left: 3px;
    }
    .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-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;
    }
    .xl-gutters-35 {
        margin-right: -35px;
        margin-left: -35px;
    }
    .xl-gutters-35 > .col,
    .xl-gutters-35 > [class*="col-"] {
        padding-right: 35px;
        padding-left: 35px;
    }
    .xl-gutters-40 {
        margin-right: -40px;
        margin-left: -40px;
    }
    .xl-gutters-40 > .col,
    .xl-gutters-40 > [class*="col-"] {
        padding-right: 40px;
        padding-left: 40px;
    }
    .xl-gutters-50 {
        margin-right: -50px;
        margin-left: -50px;
    }
    .xl-gutters-50 > .col,
    .xl-gutters-50 > [class*="col-"] {
        padding-right: 50px;
        padding-left: 50px;
    }
    .xl-gutters-60 {
        margin-right: -60px;
        margin-left: -60px;
    }
    .xl-gutters-60 > .col,
    .xl-gutters-60 > [class*="col-"] {
        padding-right: 60px;
        padding-left: 60px;
    }
    .xl-gutters-80 {
        margin-right: -80px;
        margin-left: -80px;
    }
    .xl-gutters-80 > .col,
    .xl-gutters-80 > [class*="col-"] {
        padding-right: 80px;
        padding-left: 80px;
    }
    .xl-gutters-90 {
        margin-right: -90px;
        margin-left: -90px;
    }
    .xl-gutters-90 > .col,
    .xl-gutters-90 > [class*="col-"] {
        padding-right: 90px;
        padding-left: 90px;
    }
    .xl-gutters-100 {
        margin-right: -100px;
        margin-left: -100px;
    }
    .xl-gutters-100 > .col,
    .xl-gutters-100 > [class*="col-"] {
        padding-right: 100px;
        padding-left: 100px;
    }

    .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;
    }

    [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%;
    }
    .row-cols-xl-7 > * {
        -ms-flex: 0 0 14.2857143%;
        flex: 0 0 14.2857143%;
        max-width: 14.2857143%;
    }
    .row-cols-xl-8 > * {
        -ms-flex: 0 0 12.5%;
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
    .row-cols-xl-9 > * {
        -ms-flex: 0 0 11.1111111%;
        flex: 0 0 11.1111111%;
        max-width: 11.1111111%;
    }
    .row-cols-xl-10 > * {
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
        max-width: 10%;
    }
    .row-cols-xl-15 > * {
        -ms-flex: 0 0 6.66666667%;
        flex: 0 0 6.66666667%;
        max-width: 6.66666667%;
    }
}

/* xxl */
@media (min-width: 1500px) {
    .d-xxl-none{ display:none!important; }
    .d-xxl-inline{ display:inline!important; }
    .d-xxl-inline-block{ display:inline-block!important; }
    .d-xxl-block{ display:block!important; }
    .d-xxl-table{ display:table!important; }
    .d-xxl-table-row{ display:table-row!important; }
    .d-xxl-table-cell{ display:table-cell!important; }
    .d-xxl-flex{ display:-ms-flexbox!important;display:flex!important; }
    .d-xxl-inline-flex{ display:-ms-inline-flexbox!important;display:inline-flex!important; }

    .container,
    .container-xxl {
        padding-right: calc((100vw - 1400px) / 2);
        padding-left: calc((100vw - 1400px) / 2);
    }
    .container-right,
    .container-xxl-right {
        padding-right: calc((100vw - 1400px) / 2);
    }
    .container-left,
    .container-xxl-left {
        padding-left: calc((100vw - 1400px) / 2);
    }

    .xxl-absolute-center {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .xxl-absolute-full {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }
    .xxl-absolute-top-right {
        position: absolute;
        top: 0;
        right: 0;
    }

    .m-xxl-auto {
        margin:auto!important;
    }
    .mt-xxl-auto,
    .my-xxl-auto {
        margin-top:auto!important;
    }
    .mr-xxl-auto,
    .mx-xxl-auto {
        margin-right:auto!important;
    }
    .mb-xxl-auto,
    .my-xxl-auto {
        margin-bottom:auto!important;
    }
    .ml-xxl-auto,
    .mx-xxl-auto {
        margin-left:auto!important;
    }

    .m-xxl-0 {
        margin:0 !important;
    }
    .mt-xxl-0,
    .my-xxl-0 {
        margin-top:0 !important;
    }
    .mr-xxl-0,
    .mx-xxl-0 {
        margin-right:0 !important;
    }
    .mb-xxl-0,
    .my-xxl-0 {
        margin-bottom:0 !important;
    }
    .ml-xxl-0,
    .mx-xxl-0 {
        margin-left:0 !important;
    }

    .xxl-fw-100 { font-weight: 100 !important; }
    .xxl-fw-200 { font-weight: 200 !important; }
    .xxl-fw-300 { font-weight: 300 !important; }
    .xxl-fw-400 { font-weight: 400 !important; }
    .xxl-fw-500 { font-weight: 500 !important; }
    .xxl-fw-600 { font-weight: 600 !important; }
    .xxl-fw-700 { font-weight: 700 !important; }
    .xxl-fw-800 { font-weight: 800 !important; }
    .xxl-fw-900 { font-weight: 900 !important; }

    .xxl-fs-body-size { font-size: var(--body-size) !important; }
    .xxl-fs-1em { font-size: 1em !important; }
    .xxl-fs-8 { font-size: 0.5rem !important; }
    .xxl-fs-9 { font-size: 0.5625rem !important; }
    .xxl-fs-10 { font-size: 0.625rem !important; }
    .xxl-fs-11 { font-size: 0.6875rem !important; }
    .xxl-fs-12 { font-size: 0.75rem !important; }
    .xxl-fs-13 { font-size: 0.8125rem !important; }
    .xxl-fs-14 { font-size: 0.875rem !important; }
    .xxl-fs-15 { font-size: 0.9375rem !important; }
    .xxl-fs-15 { font-size: 0.9375rem !important; }
    .xxl-fs-16 { font-size: 1rem !important; }
    .xxl-fs-17 { font-size: 1.0625rem !important; }
    .xxl-fs-18 { font-size: 1.125rem !important; }
    .xxl-fs-19 { font-size: 1.1875rem !important; }
    .xxl-fs-20 { font-size: 1.25rem !important; }
    .xxl-fs-21 { font-size: 1.3125rem !important; }
    .xxl-fs-22 { font-size: 1.375rem !important; }
    .xxl-fs-23 { font-size: 1.4375rem !important; }
    .xxl-fs-24 { font-size: 1.5rem !important; }
    .xxl-fs-25 { font-size: 25px !important; }
    .xxl-fs-26 { font-size: 26px !important; }
    .xxl-fs-27 { font-size: 27px !important; }
    .xxl-fs-28 { font-size: 28px !important; }
    .xxl-fs-29 { font-size: 29px !important; }
    .xxl-fs-30 { font-size: 30px !important; }
    .xxl-fs-31 { font-size: 31px !important; }
    .xxl-fs-32 { font-size: 32px !important; }
    .xxl-fs-33 { font-size: 33px !important; }
    .xxl-fs-34 { font-size: 34px !important; }
    .xxl-fs-35 { font-size: 35px !important; }
    .xxl-fs-36 { font-size: 36px !important; }
    .xxl-fs-37 { font-size: 37px !important; }
    .xxl-fs-38 { font-size: 38px !important; }
    .xxl-fs-39 { font-size: 39px !important; }
    .xxl-fs-40 { font-size: 40px !important; }
    .xxl-fs-41 { font-size: 41px !important; }
    .xxl-fs-42 { font-size: 42px !important; }
    .xxl-fs-45 { font-size: 45px !important; }
    .xxl-fs-50 { font-size: 50px !important; }
    .xxl-fs-53 { font-size: 53px !important; }
    .xxl-fs-55 { font-size: 55px !important; }
    .xxl-fs-60 { font-size: 60px !important; }
    .xxl-fs-65 { font-size: 65px !important; }
    .xxl-fs-70 { font-size: 70px !important; }
    .xxl-fs-75 { font-size: 75px !important; }
    .xxl-fs-80 { font-size: 80px !important; }
    .xxl-fs-87 { font-size: 87px !important; }
    .xxl-fs-90 { font-size: 90px !important; }
    .xxl-fs-100 { font-size: 100px !important; }
    .xxl-fs-110 { font-size: 110px !important; }
    .xxl-fs-115 { font-size: 115px !important; }
    .xxl-fs-120 { font-size: 120px !important; }
    .xxl-fs-140 { font-size: 140px !important; }
    .xxl-fs-150 { font-size: 150px !important; }

    .xxl-lh-0-7 { line-height: 0.7 !important; }
    .xxl-lh-1 { line-height: 1 !important; }
    .xxl-lh-1-1 { line-height: 1.1 !important; }
    .xxl-lh-1-2 { line-height: 1.2 !important; }
    .xxl-lh-1-25 { line-height: 1.25 !important; }
    .xxl-lh-1-3 { line-height: 1.3 !important; }
    .xxl-lh-1-4 {line-height: 1.4 !important; }
    .xxl-lh-1-5 {line-height: 1.5 !important; }
    .xxl-lh-1-6 {line-height: 1.6 !important; }
    .xxl-lh-1-7 { line-height: 1.7 !important; }
    .xxl-lh-1-8 { line-height: 1.8 !important; }
    .xxl-lh-1-9 { line-height: 1.9 !important; }
    .xxl-lh-2 { line-height: 2 !important; }
    .xxl-lh-2-5 { line-height: 2.5 !important; }
    .xxl-lh-3 { line-height: 3 !important; }
    .xxl-lh-3-5 { line-height: 3.5 !important; }

    .border-xxl { border: 1px solid #e2e5ec !important; }
    .border-xxl-top { border-top: 1px solid #e2e5ec !important; }
    .border-xxl-right { border-right: 1px solid #e2e5ec !important; }
    .border-xxl-bottom { border-bottom: 1px solid #e2e5ec !important; }
    .border-xxl-left { border-left: 1px solid #e2e5ec !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; }

    .border-xxl-width-2 { border-width: 2px !important }
    .border-xxl-width-3 { border-width: 3px !important }
    .border-xxl-width-4 { border-width: 4px !important }
    .border-xxl-width-5 { border-width: 5px !important }
    .border-xxl-width-10 { border-width: 10px !important }
    .border-xxl-width-15 { border-width: 15px !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;
    }

    .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%;
    }
    .row-cols-xxl-7 > * {
        -ms-flex: 0 0 14.2857143%;
        flex: 0 0 14.2857143%;
        max-width: 14.2857143%;
    }
    .row-cols-xxl-8 > * {
        -ms-flex: 0 0 12.5%;
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
    .row-cols-xxl-9 > * {
        -ms-flex: 0 0 11.1111111%;
        flex: 0 0 11.1111111%;
        max-width: 11.1111111%;
    }
    .row-cols-xxl-10 > * {
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
        max-width: 10%;
    }
    .row-cols-xxl-15 > * {
        -ms-flex: 0 0 6.66666667%;
        flex: 0 0 6.66666667%;
        max-width: 6.66666667%;
    }
    .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-0,
    .px-xxl-0,
    .p-xxl-0 {
        padding-left: 0 !important;
    }
    .pl-xxl-6,
    .px-xxl-6,
    .p-xxl-6 {
        padding-left: 4rem !important;
    }
    .pl-xxl-7,
    .px-xxl-7,
    .p-xxl-7 {
        padding-left: 5rem !important;
    }
    .pl-xxl-8,
    .px-xxl-8,
    .p-xxl-8 {
        padding-left: 6rem !important;
    }
    .pl-xxl-9,
    .px-xxl-9,
    .p-xxl-9 {
        padding-left: 8rem !important;
    }
    .pl-xxl-10,
    .px-xxl-10,
    .p-xxl-10 {
        padding-left: 10rem !important;
    }
    .pl-xxl-11,
    .px-xxl-11,
    .p-xxl-11 {
        padding-left: 12rem !important;
    }
    .pl-xxl-12,
    .px-xxl-12,
    .p-xxl-12 {
        padding-left: 16rem !important;
    }

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

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

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

    .pl-xxl-2px,
    .px-xxl-2px,
    .p-xxl-2px {
        padding-left: 2px !important;
    }
    .pl-xxl-3px,
    .px-xxl-3px,
    .p-xxl-3px {
        padding-left: 3px !important;
    }
    .pl-xxl-5px,
    .px-xxl-5px,
    .p-xxl-5px {
        padding-left: 5px !important;
    }
    .pl-xxl-10px,
    .px-xxl-10px,
    .p-xxl-10px {
        padding-left: 10px !important;
    }
    .pl-xxl-13px,
    .px-xxl-13px,
    .p-xxl-13px {
        padding-left: 13px !important;
    }
    .pl-xxl-15px,
    .px-xxl-15px,
    .p-xxl-15px {
        padding-left: 15px !important;
    }
    .pl-xxl-20px,
    .px-xxl-20px,
    .p-xxl-20px {
        padding-left: 20px !important;
    }
    .pl-xxl-25px,
    .px-xxl-25px,
    .p-xxl-25px {
        padding-left: 25px !important;
    }
    .pl-xxl-30px,
    .px-xxl-30px,
    .p-xxl-30px {
        padding-left: 30px !important;
    }
    .pl-xxl-35px,
    .px-xxl-35px,
    .p-xxl-35px {
        padding-left: 35px !important;
    }
    .pl-xxl-40px,
    .px-xxl-40px,
    .p-xxl-40px {
        padding-left: 40px !important;
    }
    .pl-xxl-50px,
    .px-xxl-50px,
    .p-xxl-50px {
        padding-left: 50px !important;
    }
    .pl-xxl-60px,
    .px-xxl-60px,
    .p-xxl-60px {
        padding-left: 60px !important;
    }
    .pl-xxl-65px,
    .px-xxl-65px,
    .p-xxl-65px {
        padding-left: 65px !important;
    }
    .pl-xxl-70px,
    .px-xxl-70px,
    .p-xxl-70px {
        padding-left: 70px !important;
    }
    .pl-xxl-75px,
    .px-xxl-75px,
    .p-xxl-75px {
        padding-left: 75px !important;
    }
    .pl-xxl-90px,
    .px-xxl-90px,
    .p-xxl-90px {
        padding-left: 90px !important;
    }
    .pl-xxl-100px,
    .px-xxl-100px,
    .p-xxl-100px {
        padding-left: 100px !important;
    }
    .pl-xxl-125px,
    .px-xxl-125px,
    .p-xxl-125px {
        padding-left: 125px !important;
    }
    .pl-xxl-130px,
    .px-xxl-130px,
    .p-xxl-130px {
        padding-left: 130px !important;
    }
    .pl-xxl-140px,
    .px-xxl-140px,
    .p-xxl-140px {
        padding-left: 140px !important;
    }
    .pl-xxl-150px,
    .px-xxl-150px,
    .p-xxl-150px {
        padding-left: 150px !important;
    }
    .pl-xxl-160px,
    .px-xxl-160px,
    .p-xxl-160px {
        padding-left: 160px !important;
    }
    .pl-xxl-170px,
    .px-xxl-170px,
    .p-xxl-170px {
        padding-left: 170px !important;
    }
    .pl-xxl-175px,
    .px-xxl-175px,
    .p-xxl-175px {
        padding-left: 175px !important;
    }
    .pl-xxl-180px,
    .px-xxl-180px,
    .p-xxl-180px {
        padding-left: 180px !important;
    }
    .pl-xxl-200px,
    .px-xxl-200px,
    .p-xxl-200px {
        padding-left: 200px !important;
    }
    .pl-xxl-250px,
    .px-xxl-250px,
    .p-xxl-250px {
        padding-left: 250px !important;
    }
    .pl-xxl-300px,
    .px-xxl-300px,
    .p-xxl-300px {
        padding-left: 300px !important;
    }
    .pl-xxl-350px,
    .px-xxl-350px,
    .p-xxl-350px {
        padding-left: 350px !important;
    }
    .pl-xxl-400px,
    .px-xxl-400px,
    .p-xxl-400px {
        padding-left: 400px !important;
    }

    .pr-xxl-2px,
    .px-xxl-2px,
    .p-xxl-2px {
        padding-right: 2px !important;
    }
    .pr-xxl-3px,
    .px-xxl-3px,
    .p-xxl-3px {
        padding-right: 3px !important;
    }
    .pr-xxl-5px,
    .px-xxl-5px,
    .p-xxl-5px {
        padding-right: 5px !important;
    }
    .pr-xxl-10px,
    .px-xxl-10px,
    .p-xxl-10px {
        padding-right: 10px !important;
    }
    .pr-xxl-13px,
    .px-xxl-13px,
    .p-xxl-13px {
        padding-right: 13px !important;
    }
    .pr-xxl-15px,
    .px-xxl-15px,
    .p-xxl-15px {
        padding-right: 15px !important;
    }
    .pr-xxl-20px,
    .px-xxl-20px,
    .p-xxl-20px {
        padding-right: 20px !important;
    }
    .pr-xxl-25px,
    .px-xxl-25px,
    .p-xxl-25px {
        padding-right: 25px !important;
    }
    .pr-xxl-30px,
    .px-xxl-30px,
    .p-xxl-30px {
        padding-right: 30px !important;
    }
    .pr-xxl-35px,
    .px-xxl-35px,
    .p-xxl-35px {
        padding-right: 35px !important;
    }
    .pr-xxl-40px,
    .px-xxl-40px,
    .p-xxl-40px {
        padding-right: 40px !important;
    }
    .pr-xxl-50px,
    .px-xxl-50px,
    .p-xxl-50px {
        padding-right: 50px !important;
    }
    .pr-xxl-60px,
    .px-xxl-60px,
    .p-xxl-60px {
        padding-right: 60px !important;
    }
    .pr-xxl-65px,
    .px-xxl-65px,
    .p-xxl-65px {
        padding-right: 65px !important;
    }
    .pr-xxl-70px,
    .px-xxl-70px,
    .p-xxl-70px {
        padding-right: 70px !important;
    }
    .pr-xxl-75px,
    .px-xxl-75px,
    .p-xxl-75px {
        padding-right: 75px !important;
    }
    .pr-xxl-90px,
    .px-xxl-90px,
    .p-xxl-90px {
        padding-right: 90px !important;
    }
    .pr-xxl-100px,
    .px-xxl-100px,
    .p-xxl-100px {
        padding-right: 100px !important;
    }
    .pr-xxl-125px,
    .px-xxl-125px,
    .p-xxl-125px {
        padding-right: 125px !important;
    }
    .pr-xxl-130px,
    .px-xxl-130px,
    .p-xxl-130px {
        padding-right: 130px !important;
    }
    .pr-xxl-140px,
    .px-xxl-140px,
    .p-xxl-140px {
        padding-right: 140px !important;
    }
    .pr-xxl-150px,
    .px-xxl-150px,
    .p-xxl-150px {
        padding-right: 150px !important;
    }
    .pr-xxl-160px,
    .px-xxl-160px,
    .p-xxl-160px {
        padding-right: 160px !important;
    }
    .pr-xxl-170px,
    .px-xxl-170px,
    .p-xxl-170px {
        padding-right: 170px !important;
    }
    .pr-xxl-175px,
    .px-xxl-175px,
    .p-xxl-175px {
        padding-right: 175px !important;
    }
    .pr-xxl-180px,
    .px-xxl-180px,
    .p-xxl-180px {
        padding-right: 180px !important;
    }
    .pr-xxl-200px,
    .px-xxl-200px,
    .p-xxl-200px {
        padding-right: 200px !important;
    }
    .pr-xxl-250px,
    .px-xxl-250px,
    .p-xxl-250px {
        padding-right: 250px !important;
    }
    .pr-xxl-300px,
    .px-xxl-300px,
    .p-xxl-300px {
        padding-right: 300px !important;
    }
    .pr-xxl-350px,
    .px-xxl-350px,
    .p-xxl-350px {
        padding-right: 350px !important;
    }
    .pr-xxl-400px,
    .px-xxl-400px,
    .p-xxl-400px {
        padding-right: 400px !important;
    }

    .pt-xxl-2px,
    .py-xxl-2px,
    .p-xxl-2px {
        padding-top: 2px !important;
    }
    .pt-xxl-3px,
    .py-xxl-3px,
    .p-xxl-3px {
        padding-top: 3px !important;
    }
    .pt-xxl-5px,
    .py-xxl-5px,
    .p-xxl-5px {
        padding-top: 5px !important;
    }
    .pt-xxl-10px,
    .py-xxl-10px,
    .p-xxl-10px {
        padding-top: 10px !important;
    }
    .pt-xxl-13px,
    .py-xxl-13px,
    .p-xxl-13px {
        padding-top: 13px !important;
    }
    .pt-xxl-15px,
    .py-xxl-15px,
    .p-xxl-15px {
        padding-top: 15px !important;
    }
    .pt-xxl-20px,
    .py-xxl-20px,
    .p-xxl-20px {
        padding-top: 20px !important;
    }
    .pt-xxl-25px,
    .py-xxl-25px,
    .p-xxl-25px {
        padding-top: 25px !important;
    }
    .pt-xxl-30px,
    .py-xxl-30px,
    .p-xxl-30px {
        padding-top: 30px !important;
    }
    .pt-xxl-35px,
    .py-xxl-35px,
    .p-xxl-35px {
        padding-top: 35px !important;
    }
    .pt-xxl-40px,
    .py-xxl-40px,
    .p-xxl-40px {
        padding-top: 40px !important;
    }
    .pt-xxl-50px,
    .py-xxl-50px,
    .p-xxl-50px {
        padding-top: 50px !important;
    }
    .pt-xxl-60px,
    .py-xxl-60px,
    .p-xxl-60px {
        padding-top: 60px !important;
    }
    .pt-xxl-65px,
    .py-xxl-65px,
    .p-xxl-65px {
        padding-top: 65px !important;
    }
    .pt-xxl-70px,
    .py-xxl-70px,
    .p-xxl-70px {
        padding-top: 70px !important;
    }
    .pt-xxl-75px,
    .py-xxl-75px,
    .p-xxl-75px {
        padding-top: 75px !important;
    }
    .pt-xxl-90px,
    .py-xxl-90px,
    .p-xxl-90px {
        padding-top: 90px !important;
    }
    .pt-xxl-100px,
    .py-xxl-100px,
    .p-xxl-100px {
        padding-top: 100px !important;
    }
    .pt-xxl-125px,
    .py-xxl-125px,
    .p-xxl-125px {
        padding-top: 125px !important;
    }
    .pt-xxl-130px,
    .py-xxl-130px,
    .p-xxl-130px {
        padding-top: 130px !important;
    }
    .pt-xxl-140px,
    .py-xxl-140px,
    .p-xxl-140px {
        padding-top: 140px !important;
    }
    .pt-xxl-150px,
    .py-xxl-150px,
    .p-xxl-150px {
        padding-top: 150px !important;
    }
    .pt-xxl-160px,
    .py-xxl-160px,
    .p-xxl-160px {
        padding-top: 160px !important;
    }
    .pt-xxl-170px,
    .py-xxl-170px,
    .p-xxl-170px {
        padding-top: 170px !important;
    }
    .pt-xxl-175px,
    .py-xxl-175px,
    .p-xxl-175px {
        padding-top: 175px !important;
    }
    .pt-xxl-180px,
    .py-xxl-180px,
    .p-xxl-180px {
        padding-top: 180px !important;
    }
    .pt-xxl-200px,
    .py-xxl-200px,
    .p-xxl-200px {
        padding-top: 200px !important;
    }
    .pt-xxl-250px,
    .py-xxl-250px,
    .p-xxl-250px {
        padding-top: 250px !important;
    }
    .pt-xxl-300px,
    .py-xxl-300px,
    .p-xxl-300px {
        padding-top: 300px !important;
    }
    .pt-xxl-350px,
    .py-xxl-350px,
    .p-xxl-350px {
        padding-top: 350px !important;
    }
    .pt-xxl-400px,
    .py-xxl-400px,
    .p-xxl-400px {
        padding-top: 400px !important;
    }

    .pb-xxl-2px,
    .py-xxl-2px,
    .p-xxl-2px {
        padding-bottom: 2px !important;
    }
    .pb-xxl-3px,
    .py-xxl-3px,
    .p-xxl-3px {
        padding-bottom: 3px !important;
    }
    .pb-xxl-5px,
    .py-xxl-5px,
    .p-xxl-5px {
        padding-bottom: 5px !important;
    }
    .pb-xxl-10px,
    .py-xxl-10px,
    .p-xxl-10px {
        padding-bottom: 10px !important;
    }
    .pb-xxl-13px,
    .py-xxl-13px,
    .p-xxl-13px {
        padding-bottom: 10px !important;
    }
    .pb-xxl-15px,
    .py-xxl-15px,
    .p-xxl-15px {
        padding-bottom: 15px !important;
    }
    .pb-xxl-20px,
    .py-xxl-20px,
    .p-xxl-20px {
        padding-bottom: 20px !important;
    }
    .pb-xxl-25px,
    .py-xxl-25px,
    .p-xxl-25px {
        padding-bottom: 25px !important;
    }
    .pb-xxl-30px,
    .py-xxl-30px,
    .p-xxl-30px {
        padding-bottom: 30px !important;
    }
    .pb-xxl-35px,
    .py-xxl-35px,
    .p-xxl-35px {
        padding-bottom: 35px !important;
    }
    .pb-xxl-40px,
    .py-xxl-40px,
    .p-xxl-40px {
        padding-bottom: 40px !important;
    }
    .pb-xxl-50px,
    .py-xxl-50px,
    .p-xxl-50px {
        padding-bottom: 50px !important;
    }
    .pb-xxl-60px,
    .py-xxl-60px,
    .p-xxl-60px {
        padding-bottom: 60px !important;
    }
    .pb-xxl-65px,
    .py-xxl-65px,
    .p-xxl-65px {
        padding-bottom: 65px !important;
    }
    .pb-xxl-70px,
    .py-xxl-70px,
    .p-xxl-70px {
        padding-bottom: 70px !important;
    }
    .pb-xxl-75px,
    .py-xxl-75px,
    .p-xxl-75px {
        padding-bottom: 75px !important;
    }
    .pb-xxl-90px,
    .py-xxl-90px,
    .p-xxl-90px {
        padding-bottom: 90px !important;
    }
    .pb-xxl-100px,
    .py-xxl-100px,
    .p-xxl-100px {
        padding-bottom: 100px !important;
    }
    .pb-xxl-125px,
    .py-xxl-125px,
    .p-xxl-125px {
        padding-bottom: 125px !important;
    }
    .pb-xxl-130px,
    .py-xxl-130px,
    .p-xxl-130px {
        padding-bottom: 130px !important;
    }
    .pb-xxl-140px,
    .py-xxl-140px,
    .p-xxl-140px {
        padding-bottom: 140px !important;
    }
    .pb-xxl-150px,
    .py-xxl-150px,
    .p-xxl-150px {
        padding-bottom: 150px !important;
    }
    .pb-xxl-160px,
    .py-xxl-160px,
    .p-xxl-160px {
        padding-bottom: 160px !important;
    }
    .pb-xxl-170px,
    .py-xxl-170px,
    .p-xxl-170px {
        padding-bottom: 170px !important;
    }
    .pb-xxl-175px,
    .py-xxl-175px,
    .p-xxl-175px {
        padding-bottom: 175px !important;
    }
    .pb-xxl-180px,
    .py-xxl-180px,
    .p-xxl-180px {
        padding-bottom: 180px !important;
    }
    .pb-xxl-200px,
    .py-xxl-200px,
    .p-xxl-200px {
        padding-bottom: 200px !important;
    }
    .pb-xxl-250px,
    .py-xxl-250px,
    .p-xxl-250px {
        padding-bottom: 250px !important;
    }
    .pb-xxl-300px,
    .py-xxl-300px,
    .p-xxl-300px {
        padding-bottom: 300px !important;
    }
    .pb-xxl-350px,
    .py-xxl-350px,
    .p-xxl-350px {
        padding-bottom: 350px !important;
    }
    .pb-xxl-400px,
    .py-xxl-400px,
    .p-xxl-400px {
        padding-bottom: 400px !important;
    }

    .w-xxl-1em,.size-xxl-1em { width: 1em; }
    .w-xxl-5px,.size-xxl-5px { width: 5px; }
    .w-xxl-7px,.size-xxl-7px { width: 7px; }
    .w-xxl-10px,.size-xxl-10px { width: 10px; }
    .w-xxl-15px,.size-xxl-15px { width: 15px; }
    .w-xxl-17px,.size-xxl-17px { width: 17px; }
    .w-xxl-20px,.size-xxl-20px { width: 20px; }
    .w-xxl-22px,.size-xxl-22px { width: 22px; }
    .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-50px,.size-xxl-50px { width: 50px; }
    .w-xxl-55px,.size-xxl-55px { width: 55px; }
    .w-xxl-60px,.size-xxl-60px { width: 60px; }
    .w-xxl-65px,.size-xxl-65px { width: 65px; }
    .w-xxl-70px,.size-xxl-70px { width: 70px; }
    .w-xxl-75px,.size-xxl-75px { width: 75px; }
    .w-xxl-80px,.size-xxl-80px { width: 80px; }
    .w-xxl-85px,.size-xxl-85px { width: 85px; }
    .w-xxl-90px,.size-xxl-90px { width: 90px; }
    .w-xxl-95px,.size-xxl-95px { width: 95px; }
    .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-125px,.size-xxl-125px { width: 125px; }
    .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-155px,.size-xxl-155px { width: 155px; }
    .w-xxl-160px,.size-xxl-160px { width: 160px; }
    .w-xxl-165px,.size-xxl-165px { width: 165px; }
    .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-600px,.size-xxl-600px { width: 600px; }

    .h-xxl-1em,.size-xxl-1em { height: 1em; }
    .h-xxl-5px,.size-xxl-5px { height: 5px; }
    .h-xxl-7px,.size-xxl-7px { height: 7px; }
    .h-xxl-10px,.size-xxl-10px { height: 10px; }
    .h-xxl-15px,.size-xxl-15px { height: 15px; }
    .h-xxl-17px,.size-xxl-17px { height: 17px; }
    .h-xxl-20px,.size-xxl-20px { height: 20px; }
    .h-xxl-22px,.size-xxl-22px { height: 22px; }
    .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-50px,.size-xxl-50px { height: 50px; }
    .h-xxl-55px,.size-xxl-55px { height: 55px; }
    .h-xxl-60px,.size-xxl-60px { height: 60px; }
    .h-xxl-65px,.size-xxl-65px { height: 65px; }
    .h-xxl-70px,.size-xxl-70px { height: 70px; }
    .h-xxl-75px,.size-xxl-75px { height: 75px; }
    .h-xxl-80px,.size-xxl-80px { height: 80px; }
    .h-xxl-85px,.size-xxl-85px { height: 85px; }
    .h-xxl-90px,.size-xxl-90px { height: 90px; }
    .h-xxl-95px,.size-xxl-95px { height: 95px; }
    .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-125px,.size-xxl-125px { height: 125px; }
    .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-155px,.size-xxl-155px { height: 155px; }
    .h-xxl-160px,.size-xxl-160px { height: 160px; }
    .h-xxl-165px,.size-xxl-165px { height: 165px; }
    .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-600px,.size-xxl-600px { height: 600px; }
    .h-xxl-auto { height: auto; }

    .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-1 {
        margin-right: -1px;
        margin-left: -1px;
    }
    .xxl-gutters-1 > .col,
    .xxl-gutters-1 > [class*="col-"] {
        padding-right: 1px;
        padding-left: 1px;
    }
    .xxl-gutters-2 {
        margin-right: -2px;
        margin-left: -2px;
    }
    .xxl-gutters-2 > .col,
    .xxl-gutters-2 > [class*="col-"] {
        padding-right: 2px;
        padding-left: 2px;
    }
    .xxl-gutters-3 {
        margin-right: -3px;
        margin-left: -3px;
    }
    .xxl-gutters-3 > .col,
    .xxl-gutters-3 > [class*="col-"] {
        padding-right: 3px;
        padding-left: 3px;
    }
    .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-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;
    }
    .xxl-gutters-35 {
        margin-right: -35px;
        margin-left: -35px;
    }
    .xxl-gutters-35 > .col,
    .xxl-gutters-35 > [class*="col-"] {
        padding-right: 35px;
        padding-left: 35px;
    }
    .xxl-gutters-40 {
        margin-right: -40px;
        margin-left: -40px;
    }
    .xxl-gutters-40 > .col,
    .xxl-gutters-40 > [class*="col-"] {
        padding-right: 40px;
        padding-left: 40px;
    }
    .xxl-gutters-50 {
        margin-right: -50px;
        margin-left: -50px;
    }
    .xxl-gutters-50 > .col,
    .xxl-gutters-50 > [class*="col-"] {
        padding-right: 50px;
        padding-left: 50px;
    }
    .xxl-gutters-60 {
        margin-right: -60px;
        margin-left: -60px;
    }
    .xxl-gutters-60 > .col,
    .xxl-gutters-60 > [class*="col-"] {
        padding-right: 60px;
        padding-left: 60px;
    }
    .xxl-gutters-80 {
        margin-right: -80px;
        margin-left: -80px;
    }
    .xxl-gutters-80 > .col,
    .xxl-gutters-80 > [class*="col-"] {
        padding-right: 80px;
        padding-left: 80px;
    }
    .xxl-gutters-90 {
        margin-right: -90px;
        margin-left: -90px;
    }
    .xxl-gutters-90 > .col,
    .xxl-gutters-90 > [class*="col-"] {
        padding-right: 90px;
        padding-left: 90px;
    }
    .xxl-gutters-100 {
        margin-right: -100px;
        margin-left: -100px;
    }
    .xxl-gutters-100 > .col,
    .xxl-gutters-100 > [class*="col-"] {
        padding-right: 100px;
        padding-left: 100px;
    }

    [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;
    }
}

/* xxxl */
@media (min-width: 1750px) {
    .d-xxxl-none{ display:none!important; }
    .d-xxxl-inline{ display:inline!important; }
    .d-xxxl-inline-block{ display:inline-block!important; }
    .d-xxxl-block{ display:block!important; }
    .d-xxxl-table{ display:table!important; }
    .d-xxxl-table-row{ display:table-row!important; }
    .d-xxxl-table-cell{ display:table-cell!important; }
    .d-xxxl-flex{ display:-ms-flexbox!important;display:flex!important; }
    .d-xxxl-inline-flex{ display:-ms-inline-flexbox!important;display:inline-flex!important; }

    .container,
    .container-xxl {
        padding-right: calc((100vw - 1520px) / 2);
        padding-left: calc((100vw - 1520px) / 2);
    }
    .container-right,
    .container-xxl-right {
        padding-right: calc((100vw - 1520px) / 2);
    }
    .container-left,
    .container-xxl-left {
        padding-left: calc((100vw - 1520px) / 2);
    }


    .m-xxxl-auto {
        margin:auto!important;
    }
    .mt-xxxl-auto,
    .my-xxxl-auto {
        margin-top:auto!important;
    }
    .mr-xxxl-auto,
    .mx-xxxl-auto {
        margin-right:auto!important;
    }
    .mb-xxxl-auto,
    .my-xxxl-auto {
        margin-bottom:auto!important;
    }
    .ml-xxxl-auto,
    .mx-xxxl-auto {
        margin-left:auto!important;
    }

    .m-xxxl-0 {
        margin:0 !important;
    }
    .mt-xxxl-0,
    .my-xxxl-0 {
        margin-top:0 !important;
    }
    .mr-xxxl-0,
    .mx-xxxl-0 {
        margin-right:0 !important;
    }
    .mb-xxxl-0,
    .my-xxxl-0 {
        margin-bottom:0 !important;
    }
    .ml-xxxl-0,
    .mx-xxxl-0 {
        margin-left:0 !important;
    }

    .xxxl-absolute-center {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .xxxl-absolute-full {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }
    .xxxl-absolute-top-right {
        position: absolute;
        top: 0;
        right: 0;
    }

    .xxxl-fw-100 { font-weight: 100 !important; }
    .xxxl-fw-200 { font-weight: 200 !important; }
    .xxxl-fw-300 { font-weight: 300 !important; }
    .xxxl-fw-400 { font-weight: 400 !important; }
    .xxxl-fw-500 { font-weight: 500 !important; }
    .xxxl-fw-600 { font-weight: 600 !important; }
    .xxxl-fw-700 { font-weight: 700 !important; }
    .xxxl-fw-800 { font-weight: 800 !important; }
    .xxxl-fw-900 { font-weight: 900 !important; }

    .xxxl-fs-body-size { font-size: var(--body-size) !important; }
    .xxxl-fs-1em { font-size: 1em !important; }
    .xxxl-fs-8 { font-size: 0.5rem !important; }
    .xxxl-fs-9 { font-size: 0.5625rem !important; }
    .xxxl-fs-10 { font-size: 0.625rem !important; }
    .xxxl-fs-11 { font-size: 0.6875rem !important; }
    .xxxl-fs-12 { font-size: 0.75rem !important; }
    .xxxl-fs-13 { font-size: 0.8125rem !important; }
    .xxxl-fs-14 { font-size: 0.875rem !important; }
    .xxxl-fs-15 { font-size: 0.9375rem !important; }
    .xxxl-fs-15 { font-size: 0.9375rem !important; }
    .xxxl-fs-16 { font-size: 1rem !important; }
    .xxxl-fs-17 { font-size: 1.0625rem !important; }
    .xxxl-fs-18 { font-size: 1.125rem !important; }
    .xxxl-fs-19 { font-size: 1.1875rem !important; }
    .xxxl-fs-20 { font-size: 1.25rem !important; }
    .xxxl-fs-21 { font-size: 1.3125rem !important; }
    .xxxl-fs-22 { font-size: 1.375rem !important; }
    .xxxl-fs-23 { font-size: 1.4375rem !important; }
    .xxxl-fs-24 { font-size: 1.5rem !important; }
    .xxxl-fs-25 { font-size: 25px !important; }
    .xxxl-fs-26 { font-size: 26px !important; }
    .xxxl-fs-27 { font-size: 27px !important; }
    .xxxl-fs-28 { font-size: 28px !important; }
    .xxxl-fs-29 { font-size: 29px !important; }
    .xxxl-fs-30 { font-size: 30px !important; }
    .xxxl-fs-31 { font-size: 31px !important; }
    .xxxl-fs-32 { font-size: 32px !important; }
    .xxxl-fs-33 { font-size: 33px !important; }
    .xxxl-fs-34 { font-size: 34px !important; }
    .xxxl-fs-35 { font-size: 35px !important; }
    .xxxl-fs-36 { font-size: 36px !important; }
    .xxxl-fs-37 { font-size: 37px !important; }
    .xxxl-fs-38 { font-size: 38px !important; }
    .xxxl-fs-39 { font-size: 39px !important; }
    .xxxl-fs-40 { font-size: 40px !important; }
    .xxxl-fs-41 { font-size: 41px !important; }
    .xxxl-fs-42 { font-size: 42px !important; }
    .xxxl-fs-45 { font-size: 45px !important; }
    .xxxl-fs-50 { font-size: 50px !important; }
    .xxxl-fs-53 { font-size: 53px !important; }
    .xxxl-fs-55 { font-size: 55px !important; }
    .xxxl-fs-60 { font-size: 60px !important; }
    .xxxl-fs-65 { font-size: 65px !important; }
    .xxxl-fs-70 { font-size: 70px !important; }
    .xxxl-fs-75 { font-size: 75px !important; }
    .xxxl-fs-80 { font-size: 80px !important; }
    .xxxl-fs-87 { font-size: 87px !important; }
    .xxxl-fs-90 { font-size: 90px !important; }
    .xxxl-fs-100 { font-size: 100px !important; }
    .xxxl-fs-110 { font-size: 110px !important; }
    .xxxl-fs-115 { font-size: 115px !important; }
    .xxxl-fs-120 { font-size: 120px !important; }
    .xxxl-fs-140 { font-size: 140px !important; }
    .xxxl-fs-150 { font-size: 150px !important; }

    .xxxl-lh-0-7 { line-height: 0.7 !important; }
    .xxxl-lh-1 { line-height: 1 !important; }
    .xxxl-lh-1-1 { line-height: 1.1 !important; }
    .xxxl-lh-1-2 { line-height: 1.2 !important; }
    .xxxl-lh-1-25 { line-height: 1.25 !important; }
    .xxxl-lh-1-3 { line-height: 1.3 !important; }
    .xxxl-lh-1-4 {line-height: 1.4 !important; }
    .xxxl-lh-1-5 {line-height: 1.5 !important; }
    .xxxl-lh-1-6 {line-height: 1.6 !important; }
    .xxxl-lh-1-7 { line-height: 1.7 !important; }
    .xxxl-lh-1-8 { line-height: 1.8 !important; }
    .xxxl-lh-1-9 { line-height: 1.9 !important; }
    .xxxl-lh-2 { line-height: 2 !important; }
    .xxxl-lh-2-5 { line-height: 2.5 !important; }
    .xxxl-lh-3 { line-height: 3 !important; }
    .xxxl-lh-3-5 { line-height: 3.5 !important; }

    .border-xxxl { border: 1px solid #e2e5ec !important; }
    .border-xxxl-top { border-top: 1px solid #e2e5ec !important; }
    .border-xxxl-right { border-right: 1px solid #e2e5ec !important; }
    .border-xxxl-bottom { border-bottom: 1px solid #e2e5ec !important; }
    .border-xxxl-left { border-left: 1px solid #e2e5ec !important; }
    .border-xxxl-0 { border: 0 !important; }
    .border-xxxl-top-0 { border-top: 0 !important; }
    .border-xxxl-right-0 { border-right: 0 !important; }
    .border-xxxl-bottom-0 { border-bottom: 0 !important; }
    .border-xxxl-left-0 { border-left: 0 !important; }

    .border-xxxl-width-2 { border-width: 2px !important }
    .border-xxxl-width-3 { border-width: 3px !important }
    .border-xxxl-width-4 { border-width: 4px !important }
    .border-xxxl-width-5 { border-width: 5px !important }
    .border-xxxl-width-10 { border-width: 10px !important }
    .border-xxxl-width-15 { border-width: 15px !important }

    .w-xxxl-25 {
        width: 25% !important;
    }
    .w-xxxl-50 {
        width: 50% !important;
    }
    .w-xxxl-75 {
        width: 75% !important;
    }
    .w-xxxl-100 {
        width: 100% !important;
    }
    .w-xxxl-auto {
        width: auto !important;
    }
    .col-xxxl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .row-cols-xxxl-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .row-cols-xxxl-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .row-cols-xxxl-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .row-cols-xxxl-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .row-cols-xxxl-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
    .row-cols-xxxl-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .row-cols-xxxl-7 > * {
        -ms-flex: 0 0 14.2857143%;
        flex: 0 0 14.2857143%;
        max-width: 14.2857143%;
    }
    .row-cols-xxxl-8 > * {
        -ms-flex: 0 0 12.5%;
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
    .row-cols-xxxl-9 > * {
        -ms-flex: 0 0 11.1111111%;
        flex: 0 0 11.1111111%;
        max-width: 11.1111111%;
    }
    .row-cols-xxxl-10 > * {
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
        max-width: 10%;
    }
    .row-cols-xxxl-15 > * {
        -ms-flex: 0 0 6.66666667%;
        flex: 0 0 6.66666667%;
        max-width: 6.66666667%;
    }
    .col-xxxl-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100;
    }
    .col-xxxl-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-xxxl-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-xxxl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xxxl-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-xxxl-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-xxxl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xxxl-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-xxxl-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-xxxl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-xxxl-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-xxxl-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-xxxl-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .offset-xxxl-0 {
        margin-left: 0;
    }
    .offset-xxxl-1 {
        margin-left: 8.333333%;
    }
    .offset-xxxl-2 {
        margin-left: 16.666667%;
    }
    .offset-xxxl-3 {
        margin-left: 25%;
    }
    .offset-xxxl-4 {
        margin-left: 33.333333%;
    }
    .offset-xxxl-5 {
        margin-left: 41.666667%;
    }
    .offset-xxxl-6 {
        margin-left: 50%;
    }
    .offset-xxxl-7 {
        margin-left: 58.333333%;
    }
    .offset-xxxl-8 {
        margin-left: 66.666667%;
    }
    .offset-xxxl-9 {
        margin-left: 75%;
    }
    .offset-xxxl-10 {
        margin-left: 83.333333%;
    }
    .offset-xxxl-11 {
        margin-left: 91.666667%;
    }

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

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

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

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

    .pl-xxxl-2px,
    .px-xxxl-2px,
    .p-xxxl-2px {
        padding-left: 2px !important;
    }
    .pl-xxxl-3px,
    .px-xxxl-3px,
    .p-xxxl-3px {
        padding-left: 3px !important;
    }
    .pl-xxxl-5px,
    .px-xxxl-5px,
    .p-xxxl-5px {
        padding-left: 5px !important;
    }
    .pl-xxxl-10px,
    .px-xxxl-10px,
    .p-xxxl-10px {
        padding-left: 10px !important;
    }
    .pl-xxxl-13px,
    .px-xxxl-13px,
    .p-xxxl-13px {
        padding-left: 13px !important;
    }
    .pl-xxxl-15px,
    .px-xxxl-15px,
    .p-xxxl-15px {
        padding-left: 15px !important;
    }
    .pl-xxxl-20px,
    .px-xxxl-20px,
    .p-xxxl-20px {
        padding-left: 20px !important;
    }
    .pl-xxxl-25px,
    .px-xxxl-25px,
    .p-xxxl-25px {
        padding-left: 25px !important;
    }
    .pl-xxxl-30px,
    .px-xxxl-30px,
    .p-xxxl-30px {
        padding-left: 30px !important;
    }
    .pl-xxxl-35px,
    .px-xxxl-35px,
    .p-xxxl-35px {
        padding-left: 35px !important;
    }
    .pl-xxxl-40px,
    .px-xxxl-40px,
    .p-xxxl-40px {
        padding-left: 40px !important;
    }
    .pl-xxxl-50px,
    .px-xxxl-50px,
    .p-xxxl-50px {
        padding-left: 50px !important;
    }
    .pl-xxxl-60px,
    .px-xxxl-60px,
    .p-xxxl-60px {
        padding-left: 60px !important;
    }
    .pl-xxxl-65px,
    .px-xxxl-65px,
    .p-xxxl-65px {
        padding-left: 65px !important;
    }
    .pl-xxxl-70px,
    .px-xxxl-70px,
    .p-xxxl-70px {
        padding-left: 70px !important;
    }
    .pl-xxxl-75px,
    .px-xxxl-75px,
    .p-xxxl-75px {
        padding-left: 75px !important;
    }
    .pl-xxxl-90px,
    .px-xxxl-90px,
    .p-xxxl-90px {
        padding-left: 90px !important;
    }
    .pl-xxxl-100px,
    .px-xxxl-100px,
    .p-xxxl-100px {
        padding-left: 100px !important;
    }
    .pl-xxxl-125px,
    .px-xxxl-125px,
    .p-xxxl-125px {
        padding-left: 125px !important;
    }
    .pl-xxxl-130px,
    .px-xxxl-130px,
    .p-xxxl-130px {
        padding-left: 130px !important;
    }
    .pl-xxxl-140px,
    .px-xxxl-140px,
    .p-xxxl-140px {
        padding-left: 140px !important;
    }
    .pl-xxxl-150px,
    .px-xxxl-150px,
    .p-xxxl-150px {
        padding-left: 150px !important;
    }
    .pl-xxxl-160px,
    .px-xxxl-160px,
    .p-xxxl-160px {
        padding-left: 160px !important;
    }
    .pl-xxxl-170px,
    .px-xxxl-170px,
    .p-xxxl-170px {
        padding-left: 170px !important;
    }
    .pl-xxxl-175px,
    .px-xxxl-175px,
    .p-xxxl-175px {
        padding-left: 175px !important;
    }
    .pl-xxxl-180px,
    .px-xxxl-180px,
    .p-xxxl-180px {
        padding-left: 180px !important;
    }
    .pl-xxxl-200px,
    .px-xxxl-200px,
    .p-xxxl-200px {
        padding-left: 200px !important;
    }
    .pl-xxxl-250px,
    .px-xxxl-250px,
    .p-xxxl-250px {
        padding-left: 250px !important;
    }
    .pl-xxxl-300px,
    .px-xxxl-300px,
    .p-xxxl-300px {
        padding-left: 300px !important;
    }
    .pl-xxxl-350px,
    .px-xxxl-350px,
    .p-xxxl-350px {
        padding-left: 350px !important;
    }
    .pl-xxxl-400px,
    .px-xxxl-400px,
    .p-xxxl-400px {
        padding-left: 400px !important;
    }

    .pr-xxxl-2px,
    .px-xxxl-2px,
    .p-xxxl-2px {
        padding-right: 2px !important;
    }
    .pr-xxxl-3px,
    .px-xxxl-3px,
    .p-xxxl-3px {
        padding-right: 3px !important;
    }
    .pr-xxxl-5px,
    .px-xxxl-5px,
    .p-xxxl-5px {
        padding-right: 5px !important;
    }
    .pr-xxxl-10px,
    .px-xxxl-10px,
    .p-xxxl-10px {
        padding-right: 10px !important;
    }
    .pr-xxxl-13px,
    .px-xxxl-13px,
    .p-xxxl-13px {
        padding-right: 13px !important;
    }
    .pr-xxxl-15px,
    .px-xxxl-15px,
    .p-xxxl-15px {
        padding-right: 15px !important;
    }
    .pr-xxxl-20px,
    .px-xxxl-20px,
    .p-xxxl-20px {
        padding-right: 20px !important;
    }
    .pr-xxxl-25px,
    .px-xxxl-25px,
    .p-xxxl-25px {
        padding-right: 25px !important;
    }
    .pr-xxxl-30px,
    .px-xxxl-30px,
    .p-xxxl-30px {
        padding-right: 30px !important;
    }
    .pr-xxxl-35px,
    .px-xxxl-35px,
    .p-xxxl-35px {
        padding-right: 35px !important;
    }
    .pr-xxxl-40px,
    .px-xxxl-40px,
    .p-xxxl-40px {
        padding-right: 40px !important;
    }
    .pr-xxxl-50px,
    .px-xxxl-50px,
    .p-xxxl-50px {
        padding-right: 50px !important;
    }
    .pr-xxxl-60px,
    .px-xxxl-60px,
    .p-xxxl-60px {
        padding-right: 60px !important;
    }
    .pr-xxxl-65px,
    .px-xxxl-65px,
    .p-xxxl-65px {
        padding-right: 65px !important;
    }
    .pr-xxxl-70px,
    .px-xxxl-70px,
    .p-xxxl-70px {
        padding-right: 70px !important;
    }
    .pr-xxxl-75px,
    .px-xxxl-75px,
    .p-xxxl-75px {
        padding-right: 75px !important;
    }
    .pr-xxxl-90px,
    .px-xxxl-90px,
    .p-xxxl-90px {
        padding-right: 90px !important;
    }
    .pr-xxxl-100px,
    .px-xxxl-100px,
    .p-xxxl-100px {
        padding-right: 100px !important;
    }
    .pr-xxxl-125px,
    .px-xxxl-125px,
    .p-xxxl-125px {
        padding-right: 125px !important;
    }
    .pr-xxxl-130px,
    .px-xxxl-130px,
    .p-xxxl-130px {
        padding-right: 130px !important;
    }
    .pr-xxxl-140px,
    .px-xxxl-140px,
    .p-xxxl-140px {
        padding-right: 140px !important;
    }
    .pr-xxxl-150px,
    .px-xxxl-150px,
    .p-xxxl-150px {
        padding-right: 150px !important;
    }
    .pr-xxxl-160px,
    .px-xxxl-160px,
    .p-xxxl-160px {
        padding-right: 160px !important;
    }
    .pr-xxxl-170px,
    .px-xxxl-170px,
    .p-xxxl-170px {
        padding-right: 170px !important;
    }
    .pr-xxxl-175px,
    .px-xxxl-175px,
    .p-xxxl-175px {
        padding-right: 175px !important;
    }
    .pr-xxxl-180px,
    .px-xxxl-180px,
    .p-xxxl-180px {
        padding-right: 180px !important;
    }
    .pr-xxxl-200px,
    .px-xxxl-200px,
    .p-xxxl-200px {
        padding-right: 200px !important;
    }
    .pr-xxxl-250px,
    .px-xxxl-250px,
    .p-xxxl-250px {
        padding-right: 250px !important;
    }
    .pr-xxxl-300px,
    .px-xxxl-300px,
    .p-xxxl-300px {
        padding-right: 300px !important;
    }
    .pr-xxxl-350px,
    .px-xxxl-350px,
    .p-xxxl-350px {
        padding-right: 350px !important;
    }
    .pr-xxxl-400px,
    .px-xxxl-400px,
    .p-xxxl-400px {
        padding-right: 400px !important;
    }

    .pt-xxxl-2px,
    .py-xxxl-2px,
    .p-xxxl-2px {
        padding-top: 2px !important;
    }
    .pt-xxxl-3px,
    .py-xxxl-3px,
    .p-xxxl-3px {
        padding-top: 3px !important;
    }
    .pt-xxxl-5px,
    .py-xxxl-5px,
    .p-xxxl-5px {
        padding-top: 5px !important;
    }
    .pt-xxxl-10px,
    .py-xxxl-10px,
    .p-xxxl-10px {
        padding-top: 10px !important;
    }
    .pt-xxxl-13px,
    .py-xxxl-13px,
    .p-xxxl-13px {
        padding-top: 13px !important;
    }
    .pt-xxxl-15px,
    .py-xxxl-15px,
    .p-xxxl-15px {
        padding-top: 15px !important;
    }
    .pt-xxxl-20px,
    .py-xxxl-20px,
    .p-xxxl-20px {
        padding-top: 20px !important;
    }
    .pt-xxxl-25px,
    .py-xxxl-25px,
    .p-xxxl-25px {
        padding-top: 25px !important;
    }
    .pt-xxxl-30px,
    .py-xxxl-30px,
    .p-xxxl-30px {
        padding-top: 30px !important;
    }
    .pt-xxxl-35px,
    .py-xxxl-35px,
    .p-xxxl-35px {
        padding-top: 35px !important;
    }
    .pt-xxxl-40px,
    .py-xxxl-40px,
    .p-xxxl-40px {
        padding-top: 40px !important;
    }
    .pt-xxxl-50px,
    .py-xxxl-50px,
    .p-xxxl-50px {
        padding-top: 50px !important;
    }
    .pt-xxxl-60px,
    .py-xxxl-60px,
    .p-xxxl-60px {
        padding-top: 60px !important;
    }
    .pt-xxxl-65px,
    .py-xxxl-65px,
    .p-xxxl-65px {
        padding-top: 65px !important;
    }
    .pt-xxxl-70px,
    .py-xxxl-70px,
    .p-xxxl-70px {
        padding-top: 70px !important;
    }
    .pt-xxxl-75px,
    .py-xxxl-75px,
    .p-xxxl-75px {
        padding-top: 75px !important;
    }
    .pt-xxxl-90px,
    .py-xxxl-90px,
    .p-xxxl-90px {
        padding-top: 90px !important;
    }
    .pt-xxxl-100px,
    .py-xxxl-100px,
    .p-xxxl-100px {
        padding-top: 100px !important;
    }
    .pt-xxxl-125px,
    .py-xxxl-125px,
    .p-xxxl-125px {
        padding-top: 125px !important;
    }
    .pt-xxxl-130px,
    .py-xxxl-130px,
    .p-xxxl-130px {
        padding-top: 130px !important;
    }
    .pt-xxxl-140px,
    .py-xxxl-140px,
    .p-xxxl-140px {
        padding-top: 140px !important;
    }
    .pt-xxxl-150px,
    .py-xxxl-150px,
    .p-xxxl-150px {
        padding-top: 150px !important;
    }
    .pt-xxxl-160px,
    .py-xxxl-160px,
    .p-xxxl-160px {
        padding-top: 160px !important;
    }
    .pt-xxxl-170px,
    .py-xxxl-170px,
    .p-xxxl-170px {
        padding-top: 170px !important;
    }
    .pt-xxxl-175px,
    .py-xxxl-175px,
    .p-xxxl-175px {
        padding-top: 175px !important;
    }
    .pt-xxxl-180px,
    .py-xxxl-180px,
    .p-xxxl-180px {
        padding-top: 180px !important;
    }
    .pt-xxxl-200px,
    .py-xxxl-200px,
    .p-xxxl-200px {
        padding-top: 200px !important;
    }
    .pt-xxxl-250px,
    .py-xxxl-250px,
    .p-xxxl-250px {
        padding-top: 250px !important;
    }
    .pt-xxxl-300px,
    .py-xxxl-300px,
    .p-xxxl-300px {
        padding-top: 300px !important;
    }
    .pt-xxxl-350px,
    .py-xxxl-350px,
    .p-xxxl-350px {
        padding-top: 350px !important;
    }
    .pt-xxxl-400px,
    .py-xxxl-400px,
    .p-xxxl-400px {
        padding-top: 400px !important;
    }

    .pb-xxxl-2px,
    .py-xxxl-2px,
    .p-xxxl-2px {
        padding-bottom: 2px !important;
    }
    .pb-xxxl-3px,
    .py-xxxl-3px,
    .p-xxxl-3px {
        padding-bottom: 3px !important;
    }
    .pb-xxxl-5px,
    .py-xxxl-5px,
    .p-xxxl-5px {
        padding-bottom: 5px !important;
    }
    .pb-xxxl-10px,
    .py-xxxl-10px,
    .p-xxxl-10px {
        padding-bottom: 10px !important;
    }
    .pb-xxxl-13px,
    .py-xxxl-13px,
    .p-xxxl-13px {
        padding-bottom: 10px !important;
    }
    .pb-xxxl-15px,
    .py-xxxl-15px,
    .p-xxxl-15px {
        padding-bottom: 15px !important;
    }
    .pb-xxxl-20px,
    .py-xxxl-20px,
    .p-xxxl-20px {
        padding-bottom: 20px !important;
    }
    .pb-xxxl-25px,
    .py-xxxl-25px,
    .p-xxxl-25px {
        padding-bottom: 25px !important;
    }
    .pb-xxxl-30px,
    .py-xxxl-30px,
    .p-xxxl-30px {
        padding-bottom: 30px !important;
    }
    .pb-xxxl-35px,
    .py-xxxl-35px,
    .p-xxxl-35px {
        padding-bottom: 35px !important;
    }
    .pb-xxxl-40px,
    .py-xxxl-40px,
    .p-xxxl-40px {
        padding-bottom: 40px !important;
    }
    .pb-xxxl-50px,
    .py-xxxl-50px,
    .p-xxxl-50px {
        padding-bottom: 50px !important;
    }
    .pb-xxxl-60px,
    .py-xxxl-60px,
    .p-xxxl-60px {
        padding-bottom: 60px !important;
    }
    .pb-xxxl-65px,
    .py-xxxl-65px,
    .p-xxxl-65px {
        padding-bottom: 65px !important;
    }
    .pb-xxxl-70px,
    .py-xxxl-70px,
    .p-xxxl-70px {
        padding-bottom: 70px !important;
    }
    .pb-xxxl-75px,
    .py-xxxl-75px,
    .p-xxxl-75px {
        padding-bottom: 75px !important;
    }
    .pb-xxxl-90px,
    .py-xxxl-90px,
    .p-xxxl-90px {
        padding-bottom: 90px !important;
    }
    .pb-xxxl-100px,
    .py-xxxl-100px,
    .p-xxxl-100px {
        padding-bottom: 100px !important;
    }
    .pb-xxxl-125px,
    .py-xxxl-125px,
    .p-xxxl-125px {
        padding-bottom: 125px !important;
    }
    .pb-xxxl-130px,
    .py-xxxl-130px,
    .p-xxxl-130px {
        padding-bottom: 130px !important;
    }
    .pb-xxxl-140px,
    .py-xxxl-140px,
    .p-xxxl-140px {
        padding-bottom: 140px !important;
    }
    .pb-xxxl-150px,
    .py-xxxl-150px,
    .p-xxxl-150px {
        padding-bottom: 150px !important;
    }
    .pb-xxxl-160px,
    .py-xxxl-160px,
    .p-xxxl-160px {
        padding-bottom: 160px !important;
    }
    .pb-xxxl-170px,
    .py-xxxl-170px,
    .p-xxxl-170px {
        padding-bottom: 170px !important;
    }
    .pb-xxxl-175px,
    .py-xxxl-175px,
    .p-xxxl-175px {
        padding-bottom: 175px !important;
    }
    .pb-xxxl-180px,
    .py-xxxl-180px,
    .p-xxxl-180px {
        padding-bottom: 180px !important;
    }
    .pb-xxxl-200px,
    .py-xxxl-200px,
    .p-xxxl-200px {
        padding-bottom: 200px !important;
    }
    .pb-xxxl-250px,
    .py-xxxl-250px,
    .p-xxxl-250px {
        padding-bottom: 250px !important;
    }
    .pb-xxxl-300px,
    .py-xxxl-300px,
    .p-xxxl-300px {
        padding-bottom: 300px !important;
    }
    .pb-xxxl-350px,
    .py-xxxl-350px,
    .p-xxxl-350px {
        padding-bottom: 350px !important;
    }
    .pb-xxxl-400px,
    .py-xxxl-400px,
    .p-xxxl-400px {
        padding-bottom: 400px !important;
    }

    .w-xxxl-1em,.size-xxxl-1em { width: 1em; }
    .w-xxxl-5px,.size-xxxl-5px { width: 5px; }
    .w-xxxl-7px,.size-xxxl-7px { width: 7px; }
    .w-xxxl-10px,.size-xxxl-10px { width: 10px; }
    .w-xxxl-15px,.size-xxxl-15px { width: 15px; }
    .w-xxxl-17px,.size-xxxl-17px { width: 17px; }
    .w-xxxl-20px,.size-xxxl-20px { width: 20px; }
    .w-xxxl-22px,.size-xxxl-22px { width: 22px; }
    .w-xxxl-25px,.size-xxxl-25px { width: 25px; }
    .w-xxxl-30px,.size-xxxl-30px { width: 30px; }
    .w-xxxl-35px,.size-xxxl-35px { width: 35px; }
    .w-xxxl-40px,.size-xxxl-40px { width: 40px; }
    .w-xxxl-45px,.size-xxxl-45px { width: 45px; }
    .w-xxxl-50px,.size-xxxl-50px { width: 50px; }
    .w-xxxl-55px,.size-xxxl-55px { width: 55px; }
    .w-xxxl-60px,.size-xxxl-60px { width: 60px; }
    .w-xxxl-65px,.size-xxxl-65px { width: 65px; }
    .w-xxxl-70px,.size-xxxl-70px { width: 70px; }
    .w-xxxl-75px,.size-xxxl-75px { width: 75px; }
    .w-xxxl-80px,.size-xxxl-80px { width: 80px; }
    .w-xxxl-85px,.size-xxxl-85px { width: 85px; }
    .w-xxxl-90px,.size-xxxl-90px { width: 90px; }
    .w-xxxl-95px,.size-xxxl-95px { width: 95px; }
    .w-xxxl-100px,.size-xxxl-100px { width: 100px; }
    .w-xxxl-110px,.size-xxxl-110px { width: 110px; }
    .w-xxxl-120px,.size-xxxl-120px { width: 120px; }
    .w-xxxl-125px,.size-xxxl-125px { width: 125px; }
    .w-xxxl-130px,.size-xxxl-130px { width: 130px; }
    .w-xxxl-140px,.size-xxxl-140px { width: 140px; }
    .w-xxxl-150px,.size-xxxl-150px { width: 150px; }
    .w-xxxl-155px,.size-xxxl-155px { width: 155px; }
    .w-xxxl-160px,.size-xxxl-160px { width: 160px; }
    .w-xxxl-165px,.size-xxxl-165px { width: 165px; }
    .w-xxxl-170px,.size-xxxl-170px { width: 170px; }
    .w-xxxl-180px,.size-xxxl-180px { width: 180px; }
    .w-xxxl-190px,.size-xxxl-190px { width: 190px; }
    .w-xxxl-200px,.size-xxxl-200px { width: 200px; }
    .w-xxxl-210px,.size-xxxl-210px { width: 210px; }
    .w-xxxl-220px,.size-xxxl-220px { width: 220px; }
    .w-xxxl-230px,.size-xxxl-230px { width: 230px; }
    .w-xxxl-240px,.size-xxxl-240px { width: 240px; }
    .w-xxxl-250px,.size-xxxl-250px { width: 250px; }
    .w-xxxl-260px,.size-xxxl-260px { width: 260px; }
    .w-xxxl-270px,.size-xxxl-270px { width: 270px; }
    .w-xxxl-280px,.size-xxxl-280px { width: 280px; }
    .w-xxxl-290px,.size-xxxl-290px { width: 290px; }
    .w-xxxl-300px,.size-xxxl-300px { width: 300px; }
    .w-xxxl-310px,.size-xxxl-310px { width: 310px; }
    .w-xxxl-320px,.size-xxxl-320px { width: 320px; }
    .w-xxxl-330px,.size-xxxl-330px { width: 330px; }
    .w-xxxl-340px,.size-xxxl-340px { width: 340px; }
    .w-xxxl-350px,.size-xxxl-350px { width: 350px; }
    .w-xxxl-360px,.size-xxxl-360px { width: 360px; }
    .w-xxxl-370px,.size-xxxl-370px { width: 370px; }
    .w-xxxl-380px,.size-xxxl-380px { width: 380px; }
    .w-xxxl-390px,.size-xxxl-390px { width: 390px; }
    .w-xxxl-400px,.size-xxxl-400px { width: 400px; }
    .w-xxxl-410px,.size-xxxl-410px { width: 410px; }
    .w-xxxl-420px,.size-xxxl-420px { width: 420px; }
    .w-xxxl-450px,.size-xxxl-450px { width: 450px; }
    .w-xxxl-600px,.size-xxxl-600px { width: 600px; }

    .h-xxxl-1em,.size-xxxl-1em { height: 1em; }
    .h-xxxl-5px,.size-xxxl-5px { height: 5px; }
    .h-xxxl-7px,.size-xxxl-7px { height: 7px; }
    .h-xxxl-10px,.size-xxxl-10px { height: 10px; }
    .h-xxxl-15px,.size-xxxl-15px { height: 15px; }
    .h-xxxl-17px,.size-xxxl-17px { height: 17px; }
    .h-xxxl-20px,.size-xxxl-20px { height: 20px; }
    .h-xxxl-22px,.size-xxxl-22px { height: 22px; }
    .h-xxxl-25px,.size-xxxl-25px { height: 25px; }
    .h-xxxl-30px,.size-xxxl-30px { height: 30px; }
    .h-xxxl-35px,.size-xxxl-35px { height: 35px; }
    .h-xxxl-40px,.size-xxxl-40px { height: 40px; }
    .h-xxxl-45px,.size-xxxl-45px { height: 45px; }
    .h-xxxl-50px,.size-xxxl-50px { height: 50px; }
    .h-xxxl-55px,.size-xxxl-55px { height: 55px; }
    .h-xxxl-60px,.size-xxxl-60px { height: 60px; }
    .h-xxxl-65px,.size-xxxl-65px { height: 65px; }
    .h-xxxl-70px,.size-xxxl-70px { height: 70px; }
    .h-xxxl-75px,.size-xxxl-75px { height: 75px; }
    .h-xxxl-80px,.size-xxxl-80px { height: 80px; }
    .h-xxxl-85px,.size-xxxl-85px { height: 85px; }
    .h-xxxl-90px,.size-xxxl-90px { height: 90px; }
    .h-xxxl-95px,.size-xxxl-95px { height: 95px; }
    .h-xxxl-100px,.size-xxxl-100px { height: 100px; }
    .h-xxxl-110px,.size-xxxl-110px { height: 110px; }
    .h-xxxl-120px,.size-xxxl-120px { height: 120px; }
    .h-xxxl-125px,.size-xxxl-125px { height: 125px; }
    .h-xxxl-130px,.size-xxxl-130px { height: 130px; }
    .h-xxxl-140px,.size-xxxl-140px { height: 140px; }
    .h-xxxl-150px,.size-xxxl-150px { height: 150px; }
    .h-xxxl-155px,.size-xxxl-155px { height: 155px; }
    .h-xxxl-160px,.size-xxxl-160px { height: 160px; }
    .h-xxxl-165px,.size-xxxl-165px { height: 165px; }
    .h-xxxl-170px,.size-xxxl-170px { height: 170px; }
    .h-xxxl-180px,.size-xxxl-180px { height: 180px; }
    .h-xxxl-190px,.size-xxxl-190px { height: 190px; }
    .h-xxxl-200px,.size-xxxl-200px { height: 200px; }
    .h-xxxl-210px,.size-xxxl-210px { height: 210px; }
    .h-xxxl-220px,.size-xxxl-220px { height: 220px; }
    .h-xxxl-230px,.size-xxxl-230px { height: 230px; }
    .h-xxxl-240px,.size-xxxl-240px { height: 240px; }
    .h-xxxl-250px,.size-xxxl-250px { height: 250px; }
    .h-xxxl-260px,.size-xxxl-260px { height: 260px; }
    .h-xxxl-270px,.size-xxxl-270px { height: 270px; }
    .h-xxxl-280px,.size-xxxl-280px { height: 280px; }
    .h-xxxl-290px,.size-xxxl-290px { height: 290px; }
    .h-xxxl-300px,.size-xxxl-300px { height: 300px; }
    .h-xxxl-310px,.size-xxxl-310px { height: 310px; }
    .h-xxxl-320px,.size-xxxl-320px { height: 320px; }
    .h-xxxl-330px,.size-xxxl-330px { height: 330px; }
    .h-xxxl-340px,.size-xxxl-340px { height: 340px; }
    .h-xxxl-350px,.size-xxxl-350px { height: 350px; }
    .h-xxxl-360px,.size-xxxl-360px { height: 360px; }
    .h-xxxl-370px,.size-xxxl-370px { height: 370px; }
    .h-xxxl-380px,.size-xxxl-380px { height: 380px; }
    .h-xxxl-390px,.size-xxxl-390px { height: 390px; }
    .h-xxxl-400px,.size-xxxl-400px { height: 400px; }
    .h-xxxl-410px,.size-xxxl-410px { height: 410px; }
    .h-xxxl-420px,.size-xxxl-420px { height: 420px; }
    .h-xxxl-450px,.size-xxxl-450px { height: 450px; }
    .h-xxxl-600px,.size-xxxl-600px { height: 600px; }
    .h-xxxl-auto { height: auto; }

    .xxxl-no-gutters {
        margin-right: -0px;
        margin-left: -0px;
    }
    .xxxl-no-gutters > .col,
    .xxxl-no-gutters > [class*="col-"] {
        padding-right: 0px;
        padding-left: 0px;
    }
    .xxxl-gutters-1 {
        margin-right: -1px;
        margin-left: -1px;
    }
    .xxxl-gutters-1 > .col,
    .xxxl-gutters-1 > [class*="col-"] {
        padding-right: 1px;
        padding-left: 1px;
    }
    .xxxl-gutters-2 {
        margin-right: -2px;
        margin-left: -2px;
    }
    .xxxl-gutters-2 > .col,
    .xxxl-gutters-2 > [class*="col-"] {
        padding-right: 2px;
        padding-left: 2px;
    }
    .xxxl-gutters-3 {
        margin-right: -3px;
        margin-left: -3px;
    }
    .xxxl-gutters-3 > .col,
    .xxxl-gutters-3 > [class*="col-"] {
        padding-right: 3px;
        padding-left: 3px;
    }
    .xxxl-gutters-5 {
        margin-right: -5px;
        margin-left: -5px;
    }
    .xxxl-gutters-5 > .col,
    .xxxl-gutters-5 > [class*="col-"] {
        padding-right: 5px;
        padding-left: 5px;
    }
    .xxxl-gutters-10 {
        margin-right: -10px;
        margin-left: -10px;
    }
    .xxxl-gutters-10 > .col,
    .xxxl-gutters-10 > [class*="col-"] {
        padding-right: 10px;
        padding-left: 10px;
    }
    .xxxl-gutters-15 {
        margin-right: -15px;
        margin-left: -15px;
    }
    .xxxl-gutters-15 > .col,
    .xxxl-gutters-15 > [class*="col-"] {
        padding-right: 15px;
        padding-left: 15px;
    }
    .xxxl-gutters-20 {
        margin-right: -20px;
        margin-left: -20px;
    }
    .xxxl-gutters-20 > .col,
    .xxxl-gutters-20 > [class*="col-"] {
        padding-right: 20px;
        padding-left: 20px;
    }
    .xxxl-gutters-25 {
        margin-right: -25px;
        margin-left: -25px;
    }
    .xxxl-gutters-25 > .col,
    .xxxl-gutters-25 > [class*="col-"] {
        padding-right: 25px;
        padding-left: 25px;
    }
    .xxxl-gutters-30 {
        margin-right: -30px;
        margin-left: -30px;
    }
    .xxxl-gutters-30 > .col,
    .xxxl-gutters-30 > [class*="col-"] {
        padding-right: 30px;
        padding-left: 30px;
    }
    .xxxl-gutters-35 {
        margin-right: -35px;
        margin-left: -35px;
    }
    .xxxl-gutters-35 > .col,
    .xxxl-gutters-35 > [class*="col-"] {
        padding-right: 35px;
        padding-left: 35px;
    }
    .xxxl-gutters-40 {
        margin-right: -40px;
        margin-left: -40px;
    }
    .xxxl-gutters-40 > .col,
    .xxxl-gutters-40 > [class*="col-"] {
        padding-right: 40px;
        padding-left: 40px;
    }
    .xxxl-gutters-50 {
        margin-right: -50px;
        margin-left: -50px;
    }
    .xxxl-gutters-50 > .col,
    .xxxl-gutters-50 > [class*="col-"] {
        padding-right: 50px;
        padding-left: 50px;
    }
    .xxxl-gutters-60 {
        margin-right: -60px;
        margin-left: -60px;
    }
    .xxxl-gutters-60 > .col,
    .xxxl-gutters-60 > [class*="col-"] {
        padding-right: 60px;
        padding-left: 60px;
    }
    .xxxl-gutters-80 {
        margin-right: -80px;
        margin-left: -80px;
    }
    .xxxl-gutters-80 > .col,
    .xxxl-gutters-80 > [class*="col-"] {
        padding-right: 80px;
        padding-left: 80px;
    }
    .xxxl-gutters-90 {
        margin-right: -90px;
        margin-left: -90px;
    }
    .xxxl-gutters-90 > .col,
    .xxxl-gutters-90 > [class*="col-"] {
        padding-right: 90px;
        padding-left: 90px;
    }
    .xxxl-gutters-100 {
        margin-right: -100px;
        margin-left: -100px;
    }
    .xxxl-gutters-100 > .col,
    .xxxl-gutters-100 > [class*="col-"] {
        padding-right: 100px;
        padding-left: 100px;
    }

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

    .flex-grow-xxxl-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-grow-xxxl-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
}



.border-gray-100, .hov-border-gray-100:hover { border-color: #f7fafc !important; }
.border-gray-200, .hov-border-gray-200:hover { border-color: #edf2f7 !important; }
.border-gray-300, .hov-border-gray-300:hover { border-color: #e2e8f0 !important; }
.border-gray-400, .hov-border-gray-400:hover { border-color: #cbd5e0 !important; }
.border-gray-500, .hov-border-gray-500:hover { border-color: #a0aec0 !important; }
.border-gray-600, .hov-border-gray-600:hover { border-color: #718096 !important; }
.border-gray-700, .hov-border-gray-700:hover { border-color: #4a5568 !important; }
.border-gray-800, .hov-border-gray-800:hover { border-color: #2d3748 !important; }
.border-gray-900, .hov-border-gray-900:hover { border-color: #1a202c !important; }

.border-inherit, .hov-border-inherit:hover { border-color: initial !important; }
.border-primary, .hov-border-primary:hover { border-color: var(--primary) !important; }
.border-hov-primary, .hov-border-hov-primary:hover { border-color: var(--hov-primary) !important; }
.border-secondary, .hov-border-secondary:hover { border-color: var(--secondary) !important; }
.border-tertiary, .hov-border-tertiary:hover { border-color: var(--tertiary) !important; }
.border-default, .hov-border-default:hover { border-color: var(--default) !important; }
.border-success, .hov-border-success:hover { border-color: var(--success) !important; }
.border-info, .hov-border-info:hover { border-color: var(--info) !important; }
.border-warning, .hov-border-warning:hover { border-color: var(--warning) !important; }
.border-danger, .hov-border-danger:hover { border-color: var(--danger) !important; }
.border-light, .hov-border-light:hover { border-color: var(--light) !important; }
.border-dark, .hov-border-dark:hover { border-color: var(--dark) !important; }
.border-yellow, .hov-border-yellow:hover { border-color: var(--yellow) !important; }
.border-transparent, .hov-border-transparent:hover { border-color: transparent !important; }
.border-black, .hov-border-black:hover { border-color: var(--black) !important; }
.border-white, .hov-border-white:hover { border-color: var(--white) !important; }
.border-gold, .hov-border-gold:hover { border-color: var(--gold) !important; }

.border-default-100, .hov-border-default-100:hover { border-color: rgba(35,31,32,0.1) !important; }
.border-default-200, .hov-border-default-200:hover { border-color: rgba(35,31,32,0.2) !important; }
.border-default-300, .hov-border-default-300:hover { border-color: rgba(35,31,32,0.3) !important; }
.border-default-400, .hov-border-default-400:hover { border-color: rgba(35,31,32,0.4) !important; }
.border-default-500, .hov-border-default-500:hover { border-color: rgba(35,31,32,0.5) !important; }
.border-default-600, .hov-border-default-600:hover { border-color: rgba(35,31,32,0.6) !important; }
.border-default-700, .hov-border-default-700:hover { border-color: rgba(35,31,32,0.7) !important; }
.border-default-800, .hov-border-default-800:hover { border-color: rgba(35,31,32,0.8) !important; }
.border-default-900, .hov-border-default-900:hover { border-color: rgba(35,31,32,0.9) !important; }

.border-secondary-100, .hov-border-secondary-100:hover { border-color: rgba(239,239,239,0.1) !important; }
.border-secondary-200, .hov-border-secondary-200:hover { border-color: rgba(239,239,239,0.2) !important; }
.border-secondary-300, .hov-border-secondary-300:hover { border-color: rgba(239,239,239,0.3) !important; }
.border-secondary-400, .hov-border-secondary-400:hover { border-color: rgba(239,239,239,0.4) !important; }
.border-secondary-500, .hov-border-secondary-500:hover { border-color: rgba(239,239,239,0.5) !important; }
.border-secondary-600, .hov-border-secondary-600:hover { border-color: rgba(239,239,239,0.6) !important; }
.border-secondary-700, .hov-border-secondary-700:hover { border-color: rgba(239,239,239,0.7) !important; }
.border-secondary-800, .hov-border-secondary-800:hover { border-color: rgba(239,239,239,0.8) !important; }
.border-secondary-900, .hov-border-secondary-900:hover { border-color: rgba(239,239,239,0.9) !important; }

.border-tertiary-100, .hov-border-tertiary-100:hover { border-color: rgba(119,118,116,0.1) !important; }
.border-tertiary-200, .hov-border-tertiary-200:hover { border-color: rgba(119,118,116,0.2) !important; }
.border-tertiary-300, .hov-border-tertiary-300:hover { border-color: rgba(119,118,116,0.3) !important; }
.border-tertiary-400, .hov-border-tertiary-400:hover { border-color: rgba(119,118,116,0.4) !important; }
.border-tertiary-500, .hov-border-tertiary-500:hover { border-color: rgba(119,118,116,0.5) !important; }
.border-tertiary-600, .hov-border-tertiary-600:hover { border-color: rgba(119,118,116,0.6) !important; }
.border-tertiary-700, .hov-border-tertiary-700:hover { border-color: rgba(119,118,116,0.7) !important; }
.border-tertiary-800, .hov-border-tertiary-800:hover { border-color: rgba(119,118,116,0.8) !important; }
.border-tertiary-900, .hov-border-tertiary-900:hover { border-color: rgba(119,118,116,0.9) !important; }

.border-black-50, .hov-border-black-50:hover { border-color: rgba(0,0,0,0.05) !important; }
.border-black-70, .hov-border-black-70:hover { border-color: rgba(0,0,0,0.07) !important; }
.border-black-100, .hov-border-black-100:hover { border-color: rgba(0,0,0,0.1) !important; }
.border-black-200, .hov-border-black-200:hover { border-color: rgba(0,0,0,0.2) !important; }
.border-black-300, .hov-border-black-300:hover { border-color: rgba(0,0,0,0.3) !important; }
.border-black-400, .hov-border-black-400:hover { border-color: rgba(0,0,0,0.4) !important; }
.border-black-500, .hov-border-black-500:hover { border-color: rgba(0,0,0,0.5) !important; }
.border-black-600, .hov-border-black-600:hover { border-color: rgba(0,0,0,0.6) !important; }
.border-black-700, .hov-border-black-700:hover { border-color: rgba(0,0,0,0.7) !important; }
.border-black-800, .hov-border-black-800:hover { border-color: rgba(0,0,0,0.8) !important; }
.border-black-900, .hov-border-black-900:hover { border-color: rgba(0,0,0,0.9) !important; }

.border-white-100, .hov-border-white-100:hover { border-color: rgba(255,255,255,0.1) !important; }
.border-white-200, .hov-border-white-200:hover { border-color: rgba(255,255,255,0.2) !important; }
.border-white-300, .hov-border-white-300:hover { border-color: rgba(255,255,255,0.3) !important; }
.border-white-400, .hov-border-white-400:hover { border-color: rgba(255,255,255,0.4) !important; }
.border-white-500, .hov-border-white-500:hover { border-color: rgba(255,255,255,0.5) !important; }
.border-white-600, .hov-border-white-600:hover { border-color: rgba(255,255,255,0.6) !important; }
.border-white-700, .hov-border-white-700:hover { border-color: rgba(255,255,255,0.7) !important; }
.border-white-800, .hov-border-white-800:hover { border-color: rgba(255,255,255,0.8) !important; }
.border-white-900, .hov-border-white-900:hover { border-color: rgba(255,255,255,0.9) !important; }

.border-soft-primary, .hov-border-soft-primary:hover { border-color: var(--soft-primary) !important; }
.border-soft-secondary, .hov-border-soft-secondary:hover { border-color: var(--soft-secondary) !important; }
.border-soft-success, .hov-border-soft-success:hover { border-color: var(--soft-success) !important; }
.border-soft-info, .hov-border-soft-info:hover { border-color: var(--soft-info) !important; }
.border-soft-warning, .hov-border-soft-warning:hover { border-color: var(--soft-warning) !important; }
.border-soft-danger, .hov-border-soft-danger:hover { border-color: var(--soft-danger) !important; }
.border-soft-dark, .hov-border-soft-dark:hover { border-color: var(--soft-dark) !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.3s ease;
    transition: all 0.3s 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;
}

/*mobile toggler*/
.sk-mobile-toggler {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    font-size: 0;
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    background: 0 0;
    outline: 0 !important;
    width: 24px;
    height: 24px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.sk-mobile-toggler span {
    display: block;
    position: absolute;
    top: 11px;
    height: 2px;
    min-height: 2px;
    width: 100%;
    border-radius: 2px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: #484f66;
}

.sk-mobile-toggler span:before,
.sk-mobile-toggler span:after {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    min-height: 2px;
    content: "";
    border-radius: 2px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: #484f66;
}
.sk-mobile-toggler.light span,
.sk-mobile-toggler.light span:before,
.sk-mobile-toggler.light span:after {
    background: #fff;
}
.sk-mobile-toggler span:before {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    left: auto;
    left: 0;
    width: 50%;
    top: -8px;
}

.sk-mobile-toggler span:after {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    left: auto;
    left: 0;
    width: 75%;
    bottom: -9px;
}

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

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

.sk-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;
}
.sk-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) {
    .sk-content-wrapper {
        padding-top: 85px;
    }
}
/* xl */
@media (min-width: 1200px) {
    .sk-content-wrapper {
        padding-left: 265px;
    }
    [dir="rtl"] .sk-content-wrapper {
        padding-left: 0;
        padding-right: 265px;
    }
}

/*topbar*/
.sk-topbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 55px;
    left: 0;
    z-index: 97;
    background-color: #fff;
    -webkit-box-shadow: 0 10px 30px 0 rgba(121, 121, 162, 0.1);
    box-shadow: 0 10px 30px 0 rgba(121, 121, 162, 0.1);
}
.sk-topbar-logo-wrap img {
    height: 30px;
}
.sk-topbar-user,
.sk-topbar-user:hover {
    color: var(--gray-dark);
}
.sk-topbar-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-align: stretch;
    align-items: stretch;
}
/* lg */
@media (min-width: 992px) {
    .sk-topbar {
        height: 65px;
    }
}
/* xl */
@media (min-width: 1200px) {
    .sk-topbar {
        width: calc(100% - 265px);
        left: 265px;
    }
    [dir="rtl"] .sk-topbar {
        left: auto;
        right: 265px;
    }
}

/*siebar nav*/
.sk-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;
}
.open .sk-sidebar-overlay {
    visibility: visible;
    opacity: 1;
}
.sk-sidebar.left {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -265px;
    height: 100vh;
    overflow-y: auto;
    z-index: 99;
    background-color: #141423;
    width: 265px;
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
}
[dir="rtl"] .sk-sidebar.left {
    left: auto;
    right: -265px;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
}
.sk-sidebar-wrap.open .left {
    left: 0px;
}
[dir="rtl"] .sk-sidebar-wrap.open .left {
    right: 0;
}
.sk-side-nav-logo-wrap a {
    padding: 17px 25px;
}

.sk-side-nav-logo-wrap img {
    height: 31px;
}
.sk-side-nav-logo-wrap {
    background-color: #1a1a27;
}

.sk-side-nav-wrap {
    padding: 15px 0;
}
.sk-side-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sk-side-nav-list .level-2:not(.mm-show):not(.mm-collapsing),
.sk-side-nav-list .level-3:not(.mm-show):not(.mm-collapsing) {
    visibility: hidden;
    height: 0;
}
.sk-side-nav-list .sk-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: 400;
    text-transform: capitalize;
    color: #a2a3b7;
}
.sk-side-nav-list .sk-side-nav-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #7a7c9e;
    margin-right: 6px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
[dir="rtl"] .sk-side-nav-list .sk-side-nav-icon {
    margin-right: 0px;
    margin-left: 6px;
}
.sk-side-nav-list .sk-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;
}
.sk-side-nav-list .sk-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%;
}
.sk-side-nav-list .sk-side-nav-link:hover .sk-side-nav-icon {
    color: #9191a0;
}
.sk-side-nav-list .sk-side-nav-arrow::after {
    content: "\f105";
    font-family: "Line Awesome Free";
    font-weight: 900;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
[dir="rtl"] .sk-side-nav-list .sk-side-nav-arrow::after {
    content: "\f104";
}
.sk-side-nav-list [aria-expanded="true"] .sk-side-nav-arrow::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
[dir="rtl"] .sk-side-nav-list [aria-expanded="true"] .sk-side-nav-arrow::after{
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.sk-side-nav-list .level-2 .sk-side-nav-link {
    padding: 10px 25px 10px 54px;
    position: relative;
    font-size: 0.8125rem;
}
[dir="rtl"] .sk-side-nav-list .level-2 .sk-side-nav-link {
    padding: 10px 54px 10px 25px;
}
.sk-side-nav-list .level-3 .sk-side-nav-link {
    padding-left: 68px;
}

.sk-side-nav-list .level-2 .sk-side-nav-link:after {
    position: absolute;
    content: "";
    height: 6px;
    width: 6px;
    border: 1px solid #575979;
    border-radius: 50%;
    top: calc(50% - 3px);
    left: 40px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.sk-side-nav-list .level-3 .sk-side-nav-link:after {
    left: 54px;
}
[dir="rtl"] .sk-side-nav-list .level-2 .sk-side-nav-link:after{
    left: 0px;
    right: 40px;
}
[dir="rtl"] .sk-side-nav-list .level-3 .sk-side-nav-link:after {
    right: 54px;
}

.sk-side-nav-list .sk-side-nav-link:hover,
.sk-side-nav-list .sk-side-nav-link.level-2-active,
.sk-side-nav-list .sk-side-nav-link.level-3-active,
.sk-side-nav-list .sk-side-nav-link.active {
    color: #fff;
    background-color: #181827;
}
.sk-side-nav-list .level-2 .sk-side-nav-link:hover:after,
.sk-side-nav-list .level-2 .sk-side-nav-link.active:after {
    /*background: #575979;*/
}

/* xl */
@media (min-width: 1200px) {
    .sk-sidebar.left {
        left: 0px;
    }
    [dir="rtl"] .sk-sidebar.left {
        left: auto;
        right: 0;
    }
}

/*dropdown*/
.dropdown-toggle {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
.dropdown-toggle::after {
    border: 0;
    content: "\f107";
    font-family: "Line Awesome Free";
    font-weight: 900;
    font-size: 80%;
    margin-left: 0.3rem;
}
.dropup .dropdown-toggle::after {
    border: 0;
    content: "\f106";
}
.dropdown-toggle.no-arrow::after {
    content: none;
}
.dropdown-menu {
    border-color: #e2e5ec;
    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: 225px;
    min-width: 225px;
}
.dropdown-menu.dropdown-menu-md {
    width: 260px;
    min-width: 260px;
}
.dropdown-menu.dropdown-menu-lg {
    width: 320px;
    min-width: 320px;
}
.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;
}
.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:active {
    color: #fff !important;
    background-color: var(--primary);
}
/*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;
}
.sk-p-hov-icon a {
    display: block;
    height: 32px;
    width: 32px;
    line-height: 32px;
    border-radius: 50%;
    text-align: center;
    background: #fff;
    margin-top: 5px;
    margin-right: 5px;
    color: #333;
    font-size: 15px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1), 0 3px 8px rgba(0,0,0,0.12);
    transform: translateX(calc(100% + 7px));
    -webkit-transform: translateX(calc(100% + 7px));
}
[dir="rtl"] .sk-p-hov-icon a {
    transform: translateX(calc(-100% - 7px));
    -webkit-transform: translateX(calc(-100% - 7px));
    margin-left: 5px;
}
.sk-p-hov-icon a:hover {
    background: var(--primary);
    color: #fff;
}
.sk-p-hov-icon a:nth-child(2) {
    transition-delay: 0.05s;
    -webkit-transition-delay: 0.05s;
}
.sk-p-hov-icon a:nth-child(3) {
    transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
}
.sk-card-box{
    overflow: hidden;
}
.sk-card-box:hover .sk-p-hov-icon a {
    transform: translateX(0);
    -webkit-transform: translateX(0);
}

/*tabs*/
.sk-nav-tabs a.active{
    border-bottom: 2px solid var(--primary)
}

/*sk steps*/
.sk-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;
}
.sk-steps > * {
    opacity: 0.4;
}
.sk-steps:not(.sk-steps-without-line) > *: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"] .sk-steps:not(.sk-steps-without-line) > *:not(:first-of-type):before {
    left: calc(50% + 20px);
    right: auto;
}
.sk-steps .title {
    font-size: 15px;
    font-weight: 600;
}
.sk-steps .done .icon,
.sk-steps .done:before {
    background: var(--primary) !important;
}
.sk-steps .done,
.sk-steps .active,
.sk-steps .done:before,
.sk-steps .active:before {
    opacity: 1 !important;
}
.sk-steps .active .icon {
    background: var(--primary);
}
.sk-steps.arrow-divider > *:not(:first-of-type){
    position: relative;
}
.sk-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"] .sk-steps.arrow-divider > *:not(:first-of-type):before{
    left: -5px;
    right: auto;
    content: "\f104";
}

/*countdown*/
.sk-count-down {
    display: flex;
    direction: ltr;
}
.sk-count-down .countdown-item {
    padding:4px 6px;
    background:var(--primary);
    color:#fff;
    border-radius:3px;
    margin:0 3px
}
.sk-count-down-lg .countdown-item{
    padding:6px 10px;
    font-size: 16px;
}

/*form elements*/

.form-control {
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    height: calc(1.3125rem + 1.2rem + 2px);
    border: 1px solid #e2e5ec;
    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: #e2e5ec;
}
.resize-off {
    resize: none;
}
.custom-file-input:focus ~ .custom-file-label {
    border-color: #e2e5ec;
}
.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 #e2e5ec;
    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*/
.sk-checkbox-list {
    padding: 0 0;
}
.sk-checkbox,
.sk-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"] .sk-checkbox,
[dir="rtl"] .sk-radio {
    padding-right: 28px;
    padding-left: 0;
}
.sk-checkbox-list .sk-checkbox,
.sk-radio-list .sk-radio {
    display: block;
}
.sk-checkbox.sk-checkbox-disabled,
.sk-radio.sk-radio-disabled {
    opacity: 0.8;
    cursor: not-allowed;
}
.sk-checkbox-inline .sk-checkbox,
.sk-radio-inline .sk-radio {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 5px;
}
.sk-checkbox-inline .sk-checkbox:last-child,
.sk-radio-inline .sk-radio:last-child {
    margin-right: 0;
}
.sk-checkbox > input,
.sk-radio > input,
.sk-checkbox-switch > input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.sk-square-check,
.sk-rounded-check {
    background: 0 0;
    position: relative;
    height: 16px;
    width: 16px;
    border: 1px solid #d1d7e2;
}
.sk-square-switch {
    width: 18px;
    height: 6px;
    margin: 0;
    border: 1px solid #b3b1b1;
    background-color: var(--white);
    position: relative;
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    vertical-align: middle;
}
.sk-square-switch::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #b3b1b1;
    position: absolute;
    left: -1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sk-checkbox > input:checked ~ .sk-square-switch,
.sk-radio > input:checked ~ .sk-square-switch,
.sk-checkbox-switch > input:checked ~ .sk-square-switch {
    border-color: var(--primary);
}

.sk-checkbox > input:checked ~ .sk-square-switch:after,
.sk-radio > input:checked ~ .sk-square-switch:after,
.sk-checkbox-switch > input:checked ~ .sk-square-switch:after {
    left: calc(100% - 9px);
    background-color: var(--primary);
}

.sk-checkbox .sk-square-check,
.sk-checkbox .sk-rounded-check,
.sk-radio .sk-square-check,
.sk-radio .sk-rounded-check {
    position: absolute;
    top: 2px;
    left: 0;
}
[dir="rtl"] .sk-checkbox .sk-square-check,
[dir="rtl"] .sk-checkbox .sk-rounded-check,
[dir="rtl"] .sk-radio .sk-square-check,
[dir="rtl"] .sk-radio .sk-rounded-check{
    left: auto;
    right: 0
}
.sk-square-check {
    border-radius: 3px;
}
.sk-rounded-check {
    border-radius: 50%;
}
.sk-square-check:after,
.sk-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;
}
.sk-square-check:after {
    margin-left: -2px;
    margin-top: -7px;
    width: 5px;
    height: 10px;
    border-width: 0 2px 2px 0 !important;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border: solid var(--primary);
}
.sk-rounded-check:after {
    margin-left: -3px;
    margin-top: -3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}
.sk-checkbox > input:checked ~ .sk-square-check:after,
.sk-radio > input:checked ~ .sk-square-check:after,
.sk-checkbox > input:checked ~ .sk-rounded-check:after,
.sk-radio > input:checked ~ .sk-rounded-check:after {
    visibility: visible;
    opacity: 1;
}

/*sk megabox*/
.sk-megabox {
    position: relative;
    cursor: pointer;
}
.sk-megabox input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.sk-megabox .sk-megabox-elem {
    border: 1px solid #e2e5ec;
    border-radius: 0.25rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 0.25rem;
}
.sk-megabox > input:checked ~ span .sk-rounded-check:after,
.sk-megabox > input:checked ~ span .sk-square-check:after {
    visibility: visible;
    opacity: 1;
}

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

/*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 #e2e5ec;
    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*/
.sk-input-icon {
    position: relative;
}
.sk-input-icon.sk-input-icon--left .form-control {
    padding-left: 2.6rem;
}
.sk-input-icon.sk-input-icon--right .form-control {
    padding-right: 2.6rem;
}
.sk-input-icon > .sk-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;
}
.sk-input-icon--left > .sk-input-icon__icon {
    left: 0;
}
.sk-input-icon--right > .sk-input-icon__icon {
    right: 0;
}
/*switch*/
.sk-switch input:empty {
    height: 0;
    width: 0;
    overflow: hidden;
    position: absolute;
    opacity: 0;
}
.sk-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;
}
.sk-switch input:empty ~ span:after,
.sk-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;
}
.sk-switch input:empty ~ span:before {
    background-color: #e8ebf1;
}
.sk-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;
}
.sk-switch input:checked ~ span:after {
    background-color: var(--primary);
    margin-left: 20px;
}
.sk-switch-secondary input:checked ~ span:after {
    background-color: var(--secondary);
}
.sk-switch-success input:checked ~ span:after {
    background-color: var(--success);
}
.sk-switch-info input:checked ~ span:after {
    background-color: var(--info);
}
.sk-switch-warning input:checked ~ span:after {
    background-color: var(--warning);
}
.sk-switch-danger input:checked ~ span:after {
    background-color: var(--danger);
}
.sk-switch-light input:checked ~ span:after {
    background-color: var(--light);
}
.sk-switch-dark input:checked ~ span:after {
    background-color: var(--dark);
}

/*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: #e2e5ec;
}
.bootstrap-select.form-control-sm .dropdown-toggle {
    padding: 0.416rem 0.7rem;
    height: calc(1.5rem + 0.8rem + 2px);
}
.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;
}
/*tagify tag input*/

.sk-tag-input {
    height: auto;
    padding: 0.465rem 1rem 0.2rem;
}
.sk-tag-input .tagify__input{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sk-tag-input .tagify__input:before{
    line-height: 1;
    position: static;
}
.sk-tag-input .tagify__tag,
.sk-tag-input .tagify__input {
    margin: 0px 5px 5px 0px;
}
.sk-tag-input .tagify__tag__removeBtn {
    font: 12px Serif;
    line-height: 1.5;
}
.sk-tag-input .tagify__tag__removeBtn:hover + div > span {
    opacity: 1;
}

/*text editor - summernote */
.note-editor.note-frame {
    border: 1px solid #e2e5ec;
    box-shadow: none;
    background: #f7f8fa;
}
.note-editor.note-frame .panel-heading.note-toolbar {
    background: #f7f8fa;
}
.note-editor .card-header.note-toolbar {
    padding: 5px 10px 10px 10px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    display: block;
    min-height: auto;
}
.note-editor.note-frame .note-statusbar {
    border-color: #e2e5ec;
    background-color: #f7f8fa;
}
.note-editor.note-airframe .note-statusbar .note-resizebar .note-icon-bar,
.note-editor.note-frame .note-statusbar .note-resizebar .note-icon-bar {
    border-color: #afafb9;
}
.note-toolbar .note-btn {
    border-color: #e2e5ec;
}
.note-popover
    .popover-content
    .note-color
    .note-dropdown-menu
    .note-palette
    .note-color-reset:hover,
.note-popover
    .popover-content
    .note-color
    .note-dropdown-menu
    .note-palette
    .note-color-select:hover,
.note-toolbar
    .note-color
    .note-dropdown-menu
    .note-palette
    .note-color-reset:hover,
.note-toolbar
    .note-color
    .note-dropdown-menu
    .note-palette
    .note-color-select:hover {
    background-color: var(--primary);
    color: var(--white);
}
.note-popover .popover-content .note-btn-group .note-table,
.note-toolbar .note-btn-group .note-table,
.note-editor .note-toolbar .dropdown-menu {
    min-width: 190px;
}
.note-popover .popover-content .note-color-all .note-dropdown-menu,
.note-toolbar .note-color-all .note-dropdown-menu {
    min-width: 340px;
}
.note-dropdown-menu .dropdown-item > * {
    padding: 0 !important;
}
.note-dropdown-menu .dropdown-item h1 {
    font-size: 2rem;
}
.note-dropdown-menu .dropdown-item h2 {
    font-size: 1.75rem;
}
.note-dropdown-menu .dropdown-item h3 {
    font-size: 1.5rem;
}
.note-dropdown-menu .dropdown-item h4 {
    font-size: 1.25rem;
}
.note-dropdown-menu .dropdown-item h5 {
    font-size: 1rem;
}
.note-dropdown-menu .dropdown-item h6 {
    font-size: 0.875rem;
}
.note-modal .note-group-select-from-files{
    display: none !important;
}
@media(max-width: 575px){
    .note-video-clip{
        max-width: 100%;
        height: auto;
    }
}

/*ecom pos ui*/
.sk-pos-product-list{
    overflow-y: auto;
    max-height: calc(100vh - 365px);
    height: calc(100vh - 365px);
    overflow-x: hidden;
}
.sk-pos-cart-list{
    overflow-y: auto;
    max-height: calc(100vh - 502px);
    height: calc(100vh - 502px);
    overflow-x: hidden
}

/*SK Uploader*/

.uppy-Root *:focus {
    outline: none !important;
}
.uppy-size--md .uppy-DashboardItem-progressIndicator,
.uppy-DashboardContent-bar .uppy-DashboardContent-back {
    visibility: hidden;
    opacity: 0;
}
.uppy-Dashboard-inner {
    width: 100% !important;
    height: 100% !important;
}
.uppy-Root {
    height: 100% !important;
}
.uppy-DashboardContent-addMore svg {
    margin-bottom: 0;
}
.card-file {
    padding: 8px;
    position: relative;
    border-color: rgb(223, 224, 228);
    transition: all 0.2s ease-in-out;
    margin-bottom: 20px;
}

.card-file .card-body h6 {
    font-size: 0.8rem;
    margin-bottom: 0;
}

.card-file .card-body p {
    margin-bottom: 0;
    font-size: 9px;
    color: #8392a5;
}
.card-file .card-file-thumb {
    height: 120px;
    background-color: #f5f6fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-file .card-body {
    padding: 10px 0 0;
}

.card-file .card-file-thumb i {
    font-size: 50px;
    color: #b3becc;
}

.sk-uploader-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
}
[data-toggle="skuploader"] {
    cursor: pointer;
}
.sk-uploader-all {
    margin-left: -10px;
    margin-right: -10px;
    overflow-y: auto;
    height: calc(100vh - 303px);
}
.uppy-Dashboard-files {
    max-height: calc(100vh - 363px);
}
.sk-file-box-wrap {
    padding: 0 10px;
    width: 50%;
    float: left;
}
.sk-file-box-wrap[aria-hidden="true"] {
    display: none;
}
.sk-file-box {
    position: relative;
}
.sk-file-box:before {
    content: "";
    display: block;
    padding-top: 100%;
}
.sk-file-box .dropdown-file {
    position: absolute;
    top: 6px;
    right: 9px;
    z-index: 1;
}
.sk-file-box .dropdown-file > a {
    color: #5a5a5a;
    font-size: 22px;
    background: #f5f6fa;
    cursor: pointer;
}
.sk-file-box .card-file {
    cursor: pointer;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
}
.sk-file-box .card-file .card-file-thumb {
    position: absolute;
    width: calc(100% - 16px);
    top: 8px;
    left: 8px;
    height: calc(100% - 55px);
}

.sk-file-box .card-file .card-body {
    position: absolute;
    width: calc(100% - 16px);
    bottom: 5px;
    left: 8px;
}
[data-selected="true"] .sk-uploader-select {
    border-color: #007bff;
    background: rgba(0, 123, 255, 0.05);
}
.modal-adaptive {
    height: calc(100vh - 60px);
    margin: 30px auto !important;
}

/*File preview + remove*/
.file-preview-item h6 {
    font-size: 13px;
    margin-bottom: 0;
}

.file-preview-item {
    padding: 8px;
    border: 1px solid #ebedf2;
    border-radius: 0.25rem;
}

.file-preview-item p {
    font-size: 10px;
    margin-bottom: 0;
    color: var(--secondary);
}
.file-preview-item .thumb {
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    max-width: 50px;
    height: 45px;
    width: 50px;
    text-align: center;
    background: #f1f2f4;
    font-size: 20px;
    color: #92969b;
    border-radius: 0.25rem;
    overflow: hidden;
}
.file-preview-item .remove {
    -ms-flex: 0 0 52px;
    flex: 0 0 52px;
    max-width: 52px;
    width: 52px;
}
.file-preview-item .body {
    min-width: 0;
}

.file-preview.box a {
    color: inherit;
}
.file-preview.box:after {
    content: "";
    clear: both;
    display: table;
}
.file-preview.box .file-preview-item {
    width: 160px;
    float: left;
    margin-right: 0.5rem;
    padding: 0;
    display: block !important;
    position: relative;
}
.file-preview.box .thumb {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    border-radius: 0;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
.file-preview.box.sm .file-preview-item {
    width: 100px;
}
.file-preview.box.sm .thumb {
    height: 52px;
}

.file-preview.box .body {
    padding: 0;
    padding: 8px 8px 2px;
}
.file-preview.box .remove {
    position: absolute;
    top: -6px;
    right: -6px;
    width: auto;
    max-width: 100%;
}
.file-preview.box .remove .btn {
    padding: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #eaeaea;
}

@media (min-width: 576px) {
    /*sm*/
    .modal-adaptive {
        max-width: 540px;
    }
    .sk-file-box-wrap {
        width: 33.3333%;
    }
}
@media (min-width: 768px) {
    /*md*/
    .modal-adaptive {
        max-width: 720px;
    }
    .sk-file-box-wrap {
        width: 25%;
    }
}
@media (min-width: 992px) {
    /*lg*/
    .modal-adaptive {
        max-width: 960px;
    }
    .sk-file-box-wrap {
        width: 20%;
    }
}
@media (min-width: 1200px) {
    /*xl*/
    .modal-adaptive {
        max-width: 1140px;
    }
    .sk-file-box-wrap {
        width: 16.66666%;
    }
}
@media (min-width: 1500px) {
    /*xxl*/
    .modal-adaptive {
        max-width: 1400px;
    }
}
@media (max-width: 767px) {
    .sk-uploader-search i {
        font-size: 23px;
        cursor: pointer;
        padding: 4px;
        margin-right: 5px;
        position: relative;
        z-index: 2;
        top: 3px;
    }

    .sk-uploader-search input {
        position: absolute;
        z-index: 1;
        top: 0;
        right: 5px;
        left: 5px;
        width: calc(100% - 10px);
        height: 100%;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
    }

    .sk-uploader-search.open input {
        visibility: visible;
        opacity: 1;
    }
}

/*Dots*/
.point-slider-car-dot {
    position: absolute;
    z-index: 5;
    width: 35px;
    height: 35px;
    pointer-events: all;
}
.point-slider-car-dot-circle {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    transition: all .4s ease-in-out;
    -webkit-animation: dotAnimation 1.5s infinite;
    animation: dotAnimation 1.5s infinite;
}
.point-slider-car-dot-circle-circle {
    width: 25px;
    height: 25px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all .4s ease-in-out;
    -webkit-animation: dotAnimation 1.5s infinite;
    animation: dotAnimation 1.5s infinite;
    border-radius: 50%;
}
.point-slider-car-dot-circle-circle .circle {
    width: 15px;
    height: 15px;
    transition: all .4s ease-in-out;
    background-color: var(--white);
    border-radius: 50%;
    -webkit-animation: dotAnimation 1.5s infinite;
    animation: dotAnimation 1.5s infinite;
}
@-webkit-keyframes dotAnimation {
    0%{
        transform:scale(.9);
        box-shadow:0 0 0 0 rgba(255,255,255,1);
    }
    70%{
        transform:scale(1);
        box-shadow:0 0 0 5px rgba(255,255,255,0);
    }
    to{
        transform:scale(.9);
        box-shadow:0 0 0 0 rgba(255,255,255,0);
    }
}
@keyframes dotAnimation {
    0%{
        transform:scale(.9);
        box-shadow:0 0 0 0 rgba(255,255,255,1);
    }
    70%{
        transform:scale(1);
        box-shadow:0 0 0 5px rgba(255,255,255,0);
    }
    to{
        transform:scale(.9);
        box-shadow:0 0 0 0 rgba(255,255,255,0);
    }
}

/*Search Icon*/
.search-icon {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 32px;
    overflow: hidden;
    white-space: nowrap;
    color: transparent;
    z-index: 3;
}
.search-icon:hover {
    color: transparent;
}
.search-icon::before,
.search-icon::after {
    content: "";
    position: absolute;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.search-icon::before {
    top: 7px;
    left: 7px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #686f7a;
}

.border-solid{
    border: 2px solid black;
}

.search-icon::after {
    height: 2px;
    width: 8px;
    background: #686f7a;
    bottom: 10px;
    right: 7px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.search-icon span {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
.search-icon span::before,
.search-icon span::after {
    content: "";
    position: absolute;
    display: inline-block;
    height: 2px;
    width: 18px;
    top: 50%;
    margin-top: -1px;
    left: 50%;
    margin-left: -8px;
    background: #686f7a;
    opacity: 0;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    -moz-transition: opacity 0.3s, -moz-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
}
.search-icon span::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.search-icon span::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.open .search-icon::before,
.open .search-icon::after {
    opacity: 0;
}
.open .search-icon span::before,
.open .search-icon span::after {
    opacity: 1;
}
.open .search-icon span::before {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
.open .search-icon span::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.mobile-search.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
}

/*date range*/
.daterangepicker {
    border-color: #e2e5ec;
    -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: #e2e5ec;
}
.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: #e2e5ec;
}
.bootstrap-timepicker-widget.timepicker-orient-bottom:before {
    border-top-color: #e2e5ec;
}

.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-xs.btn-icon {
    padding: 0.216rem;
    width: calc(1.52rem + 2px);
    height: calc(1.52rem + 2px);
}
.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:not(:disabled):not(.disabled):hover,
.btn-primary:not(:disabled):not(.disabled):focus,
.btn-primary:not(:disabled):not(.disabled):active,
.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,
.btn-yellow:not(:disabled):hover,
.btn-outline-default:not(:disabled):not(.disabled):hover,
.btn-outline-default-50:not(:disabled):not(.disabled):hover,
.btn-white:not(:disabled):not(.disabled):hover,
.btn-outline-black:not(:disabled):not(.disabled):hover,
.btn-default:not(:disabled):not(.disabled):hover,
.btn-default-50:not(:disabled):not(.disabled):hover,
.btn-gray:not(:disabled):not(.disabled):hover,
.btn-black:not(:disabled):not(.disabled):hover {
    background-color: var(--hov-primary);
    border-color: var(--hov-primary);
    color: var(--white)
}
.btn-default {
    background-color: var(--default);
    border-color: var(--default);
    color: var(--white);
}
.btn-default-50 {
    background-color: rgba(35,31,32,0.5);
    color: var(--white);
    border-color: transparent;
}
.btn-quaternary-10 {
    background-color: rgba(109,107,100,0.1);
    color: rgba(35,31,32,0.5);
    border-color: transparent;
}
.btn-gray,
.btn-gray:disabled,
.btn-gray.disabled {
    background-color: var(--secondary);
    color: rgba(0,0,0,0.5);
    border-color: var(--secondary);
}
.btn-primary,
.btn-soft-primary:not(:disabled):not(.disabled):hover,
.btn-outline-primary:not(:disabled):not(.disabled):hover,
.btn-quaternary-10:not(:disabled):not(.disabled):hover,
.btn-gold:not(:disabled):not(.disabled):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: transparent;
    color: var(--white);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #fff;
    background-color: #6c6c6c;
    border-color: #6c6c6c;
}
.btn-success {
    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-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-gold,
.btn-soft-gold:hover,
.btn-outline-gold:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}
.btn-black {
    background-color: var(--black);
    border-color: var(--black);
    color: var(--white);
}
.btn-yellow {
    background-color: var(--yellow);
    border-color: var(--yellow);
    color: var(--secondary);
}
.btn-link {
    color: var(--primary);
}
.btn-link:hover {
    color: var(--hov-primary);
}
.btn-clean:hover {
    background-color: var(--light);
    border-color: var(--light);
}
.btn-white {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--black);
}
.btn-secondary:not(:disabled):hover,
.btn-soft-success:not(:disabled):hover,
.btn-outline-success:not(:disabled):hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.btn-outline-white:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--default);
}
.btn-outline-white-20:hover {
    border-color: transparent;
    background-color: rgba(255,255,255,0.2);
    color: var(--white);
}
.btn-gold {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}
/*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-info {
    background-color: var(--soft-info);
    color: var(--info);
}
.btn-soft-dark {
    background-color: var(--soft-dark);
    color: var(--dark);
}

/*outline buttons*/
.btn-outline-default {
    border-color: var(--default);
    color: var(--default);
}
.btn-outline-default-50 {
    border-color: rgba(35,31,32,0.5);
    color: rgba(35,31,32,0.5);
}
.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-outline-secondary {
    border-color: var(--secondary);
    color: var(--secondary);
}
.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-white {
    border-color: var(--white);
    color: var(--white);
}
.btn-outline-white-20 {
    border-color: rgba(255,255,255,0.2);
    color: var(--white);
}
.btn-outline-black {
    border-color: var(--black);
    color: var(--black);
}
.btn-outline-gold {
    border-color: var(--gold);
    color: var(--gold);
}

/*svg buttons*/
.btn svg {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.btn-primary svg,
.btn-gray:hover svg {
    fill: var(--white);
}
.btn-outline-primary svg {
    fill: var(--primary);
}
.btn-outline-secondary svg {
    fill: var(--secondary);
}
.btn-secondary svg,
.btn-outline-primary:hover svg,
.btn-outline-secondary:hover svg {
    fill: var(--white);
}
.btn-gray svg {
    fill: rgba(0,0,0,0.5);
}
.btn-primary svg.check {
    fill:none;
    stroke:#fff;
    stroke-miterlimit:10;
    stroke-width:6px;
}
.btn-outline-primary svg.check {
    fill:none;
    stroke:var(--primary);
    stroke-miterlimit:10;
    stroke-width:6px;
}
/*footable*/
.sk-table {
    opacity: 0;
    height: 0;
}
div.footable-loader {
    height: 220px;
}
.sk-table.footable,
.sk-table.footable-details {
    opacity: 1;
    height: auto;
}
div.footable-loader > span.fooicon {
    border: 4px solid #1e1e2d;
    border-right-color: transparent;
    border-radius: 50%;
}
div.footable-loader > span.fooicon:before,
div.footable-loader > span.fooicon:after {
    content: none;
}
.sk-table thead th {
    border-top: 0;
    border-bottom: 1px solid #eceff7;
}
.sk-table th {
    font-weight: 600;
}
.sk-table td,
.sk-table th {
    border-top: 1px solid #eceff7;
}
.sk-table td,
.sk-table th {
    padding: 1rem 0.75rem;
}
.sk-table.table-bordered td,
.sk-table.table-bordered th {
    border: 1px solid #eceff7;
}
.sk-table .footable-detail-row > td {
    padding: 0;
}
.sk-table .footable-toggle {
    height: 16px;
    width: 16px;
    line-height: 16px;
    font-size: 16px;
    border-radius: 4px;
    text-align: center;
    opacity: 1;
    color: var(--primary);
    background-color: var(--soft-primary);
    margin-right: 10px;
}
.sk-table .footable-toggle.fooicon-minus {
    color: var(--white);
    background-color: var(--primary);
}
.sk-table.footable > tbody > tr.footable-empty > td {
    font-size: 20px;
    position: relative;
    padding-top: 100px;
}

.sk-table.footable > tbody > tr.footable-empty > td:before {
    content: "\f119";
    font-family: "Line Awesome Free";
    font-weight: 900;
    position: absolute;
    left: 50%;
    top: 20px;
    font-size: 60px;
    opacity: 0.5;
    transform: translate(-50%, 0px);
}
.sk-table .footable-pagination-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.sk-table .footable-page-link,
.sk-table .footable-page.disabled .footable-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);
    display: inline-block;
}

.sk-table .footable-page {
    margin: 0 2px;
}

.sk-table .active .footable-page-link ,
.sk-table .footable-page-link:hover {
    background-color: var(--primary);
    color: #fff;
}

/*notify*/
.sk-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 2.75rem 1.25rem 1.25rem;
    font-size: 0.875rem;
}
[dir="rtl"] .sk-notify {
    text-align: right !important;
}
.sk-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"] .sk-notify .close {
    right: auto !important;
    left: 15px !important;
}
.sk-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;
}
.sk-notify .close:hover {
    color: var(--dark);
    opacity: 1;
}
.sk-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;
}
.sk-notify .progress {
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    background-color: transparent;
}
.sk-notify .progress-bar {
    background-color: var(--white);
}
.sk-notify.alert-success {
    background-color: var(--success);
}
.sk-notify.alert-danger {
    background-color: var(--danger);
}
.sk-notify.alert-primary {
    background-color: var(--primary);
}
.sk-notify.alert-warning {
    background-color: var(--warning);
}
.sk-notify.alert-info {
    background-color: var(--info);
}
.sk-notify.alert-dark {
    background-color: var(--dark);
}
.sk-notify.alert-secondary {
    background-color: var(--secondary);
}
.sk-notify.alert-light,
.sk-notify.alert-light .close {
    background-color: var(--light);
    color: var(--dark);
}
.sk-notify.alert-light .progress-bar {
    background-color: var(--primary);
}
@media (max-width: 575px) {
    .sk-notify {
        width: calc(100% - 40px);
        min-width: auto;
    }
}

/*pagination*/
.sk-pagination-center .pagination {
    -ms-flex-pack: center;
    justify-content: center;
}
.sk-pagination-right .pagination {
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.sk-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 2px;
}

.pagination .active .page-link {
    background-color: var(--primary);
}
.pagination .page-link:hover {
    background-color: var(--primary);
    color: #fff;
}

/*modal*/
.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;
    height: 18px;
    width: 18px;
    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 {
    height: 24px;
    width: 24px;
    font-size: 0.75rem;
}
.badge-lg {
    height: 28px;
    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-tertiary {
    background-color: var(--tertiary);
    color: var(--white);
}
.badge-success {
    background-color: var(--success);
}
.badge-danger {
    background-color: var(--danger);
}
.badge-warning {
    background-color: var(--warning);
}

.badge-info {
    background-color: var(--info);
}
.badge-light {
    background-color: var(--light);
}
.badge-dark {
    background-color: var(--dark);
}
.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-info {
    background-color: var(--soft-info);
    color: var(--info);
}
.badge-soft-dark {
    background-color: var(--soft-dark);
    color: var(--dark);
}

.list-group-item {
    border-color: #ebedf2;
}
.list-group-raw .list-group-item {
    border: 0;
}

/*slick carousel*/
.sk-carousel > * {
    display: none;
}
.slick-initialized.sk-carousel > *,
.sk-carousel > *:first-child {
    display: block;
}
.sk-carousel.gutters-1 {
    width: calc(100% + 2px);
}
.sk-carousel.gutters-1 .carousel-box {
    padding-left: 1px;
    padding-right: 1px;
}
.sk-carousel.gutters-2 {
    width: calc(100% + 4px);
}
.sk-carousel.gutters-2 .carousel-box {
    padding-left: 2px;
    padding-right: 2px;
}
.sk-carousel.gutters-3 {
    width: calc(100% + 6px);
}
.sk-carousel.gutters-3 .carousel-box {
    padding-left: 3px;
    padding-right: 3px;
}
.sk-carousel.gutters-5 {
    width: calc(100% + 10px);
}
.sk-carousel.gutters-5 .carousel-box {
    padding-left: 5px;
    padding-right: 5px;
}
.sk-carousel.gutters-10 {
    width: calc(100% + 20px);
}
.sk-carousel.gutters-10 .carousel-box {
    padding-left: 10px;
    padding-right: 10px;
}
.sk-carousel.gutters-15 {
    width: calc(100% + 30px);
}
.sk-carousel.gutters-15 .carousel-box {
    padding-left: 15px;
    padding-right: 15px;
}
.sk-carousel.gutters-20 {
    width: calc(100% + 40px);
}
.sk-carousel.gutters-20 .carousel-box {
    padding-left: 20px;
    padding-right: 20px;
}
.sk-carousel.gutters-25 {
    width: calc(100% + 50px);
}
.sk-carousel.gutters-25 .carousel-box {
    padding-left: 25px;
    padding-right: 25px;
}
.sk-carousel.gutters-30 {
    width: calc(100% + 60px);
}
.sk-carousel.gutters-30 .carousel-box {
    padding-left: 30px;
    padding-right: 30px;
}
.sk-carousel.gutters-35 {
    width: calc(100% + 70px);
}
.sk-carousel.gutters-35 .carousel-box {
    padding-left: 35px;
    padding-right: 35px;
}
.sk-carousel.gutters-40 {
    width: calc(100% + 80px);
}
.sk-carousel.gutters-40 .carousel-box {
    padding-left: 40px;
    padding-right: 40px;
}
.sk-carousel.gutters-50 {
    width: calc(100% + 100px);
}
.sk-carousel.gutters-50 .carousel-box {
    padding-left: 50px;
    padding-right: 50px;
}
.sk-carousel.gutters-60 {
    width: calc(100% + 120px);
}
.sk-carousel.gutters-60 .carousel-box {
    padding-left: 60px;
    padding-right: 60px;
}
.sk-carousel-full *{
    height: 100%
}
.sk-carousel .slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50em;
    border: 0;
    box-shadow: 0 0 1px 1px rgba(20, 23, 28, 0.1),
        0 3px 1px 0 rgba(20, 23, 28, 0.1);
    font-size: 15px;
    line-height: 40px;
    padding: 0;
    text-align: center;
}
.sk-carousel .slick-prev:hover,
.sk-carousel .slick-next:hover {
    box-shadow: 0 2px 8px 2px rgba(20, 23, 28, 0.15) !important;
}
.sk-carousel .slick-prev {
    left: 10px;
}
.sk-carousel .slick-disabled {
    display: none !important;
}

.sk-carousel .slick-next {
    right: 10px;
}
.sk-carousel .slick-dots{
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 0;
    padding-left: 0;
}
.sk-carousel .slick-dots button{
    height: 11px;
    width: 11px;
    padding: 0px;
    color: transparent;
    border: 0;
    background: #ddd;
    border-radius: 50%;
    margin: 0 3px;
}
.sk-carousel .slick-dots .slick-active button{
    background: var(--primary)
}
.sk-carousel.dots-inside-bottom .slick-dots{
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
.half-outside-arrow .slick-prev {
    left: -10px;
}
.half-outside-arrow .slick-next {
    right: -10px;
}
.slick-vertical .slick-arrow {
    top: auto;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    -webkit-transform: translateX(-50%) rotate(90deg);
}
.slick-vertical .slick-prev {
    top: -10px;
}
.slick-vertical .slick-next {
    bottom: -10px;
}
.slick-vertical .slick-current .carousel-box{
    border-color: var(--primary) !important;
    border-width: 2px !important;
}


/*range slider - no ui slider*/
.sk-range-slider .noUi-connect{
    background: var(--primary)
}
.sk-range-slider .noUi-target{
    border-color: var(--soft-secondary)
}

/*iti mobile number select*/
.iti {
    display: block;
    width: 100%;
}
.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 #e2e5ec;
}
/*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: 44px;
    height: 44px;
    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 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;
}

/*chat*/
.sk-chat {
    overflow: hidden;
    -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;
}
.sk-chat .chat-user-list {
    height: calc(80vh - 44px);
    max-height: calc(80vh - 44px);
    overflow-y: auto;
}
.chat-user-list-wrap .overlay {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.sk-chat .chat-list-wrap {
    height: calc(80vh - 160px);
    max-height: calc(80vh - 160px);
    overflow-y: auto;
}
.sk-chat .chat-list {
    min-height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.chat-box-wrap {
    position: relative;
    padding: 80px 0;
}

.chat-coversation {
    max-width: 450px;
    margin: 10px 0;
}
.chat-coversation .avatar {
    margin-right: 15px;
    margin-bottom: 12px;
}
.chat-coversation .media {
    -ms-flex-align: end;
    align-items: flex-end;
}
.chat-coversation .media-body .text {
    background: var(--light);
    padding: 10px 20px;
    line-height: 1.7;
    border-radius: 4px;
}
.chat-coversation .media-body .time {
    font-size: 10px;
    opacity: 0.5;
    display: block;
}

.chat-coversation.right {
    margin-left: auto;
}
.chat-coversation.right .avatar {
    margin-right: 0px;
    margin-left: 15px;
}
.chat-coversation.right .time {
    text-align: right;
}
.chat-coversation.right .media-body .text {
    background: var(--primary);
    color: #fff;
}

.chat-footer .input-group {
    background: var(--light);
    border: 1px solid #e2e5ec;
    border-radius: 50em;
}

.chat-footer .form-control {
    background: transparent;
    border-color: transparent;
}

.chat-footer .input-group > .input-group-append > .btn {
    border-radius: 50em;
}

.chat-header .active .la-info-circle:before {
    content: "\f00d";
}
.chat-info-wrap {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    width: 100%;
    height: calc(80vh - 154px);
    top: 77px;
    right: 0;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
}
.chat-info-wrap .overlay {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}
.chat-info-wrap .chat-info {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    position: absolute;
    height: 100%;
    width: 400px;
    max-width: 100%;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
}
.chat-info-wrap.active,
.chat-info-wrap.active .overlay,
.chat-info-wrap.active .chat-info {
    opacity: 1;
    visibility: visible;
}
.chat-info-wrap.active .chat-info {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
@media (max-width: 991px) {
    .chat-user-list-wrap {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        z-index: 9;
        opacity: 0;
        visibility: hidden;
    }
    .chat-user-list-wrap .chat-user-list-header {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        position: absolute;
        width: 340px;
        max-width: 100%;
        right: 0;
        top: 0;
        background: #fff;
        opacity: 0;
        visibility: hidden;
        z-index: 1;
    }
    .chat-user-list-wrap .chat-user-list {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        position: absolute;
        height: calc(100% - 44px);
        max-height: none;
        width: 340px;
        max-width: 100%;
        right: 0;
        top: 44px;
        bottom: 0;
        background: #fff;
        opacity: 0;
        visibility: hidden;
        overflow-y: auto;
        z-index: 1;
    }
    .chat-user-list-wrap.active,
    .chat-user-list-wrap.active .overlay,
    .chat-user-list-wrap.active .chat-user-list-header,
    .chat-user-list-wrap.active .chat-user-list {
        opacity: 1;
        visibility: visible;
    }
    .chat-user-list-wrap.active .chat-user-list-header,
    .chat-user-list-wrap.active .chat-user-list {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

/*social icon colored*/
ul.social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50em;
    line-height: 39px;
    text-align: center;
    font-size: 18px;
}
ul.social a:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}
ul.social i {
    color: #171727;
}

ul.social.colored i {
    color: #fff;
}
ul.social.colored [class*="facebook"] {
    background-color: #3b5998;
}
ul.social.colored [class*="twitter"] {
    background-color: #1da1f2;
}
ul.social.colored [class*="google"] {
    background-color: #e62833;
}
ul.social.colored [class*="youtube"] {
    background-color: #ff0000;
}
ul.social.colored [class*="instagram"] {
    background-color: #bd32a2;
}
ul.social.colored [class*="tripadvisor"] {
    background-color: #32da9d;
}
ul.social.colored [class*="linkedin"] {
    background-color: #0070ac;
}

.sk-cookie-alert {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 300px;
    z-index: 1070;
    display: none;
}
.sk-cookie-alert.show{
    display: block;
}
/*messnger icon mobile*/
.fb_dialog_mobile iframe{
    bottom: 70px !important;
}

/*pages*/

.sk-auth-form {
    max-width: 480px;
}

/*front pages*/

/*user panel*/
.sk-user-sidenav-wrap {
    -ms-flex: 0 0 265px;
    flex: 0 0 265px;
    max-width: 265px;
    -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;
    /*max-height: 100vh;
    overflow-y: auto;*/
    border: 1px solid #ebedf2;
}

.sk-user-panel {
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-left: 30px;
}
[dir="rtl"] .sk-user-panel {
    padding-right: 30px;
    padding-left: 0;
}
.sk-user-sidenav .sk-side-nav-list .sk-side-nav-link {
    color: #63666b;
    font-weight: 500;
    font-size:  0.8125rem;
    border-left: 3px solid transparent;
}

.sk-user-sidenav .sk-side-nav-link.level-2-active,
.sk-user-sidenav .sk-side-nav-link.level-3-active {
    background-color: transparent;
    color: var(--primary);
}
.sk-user-sidenav .level-2-active .sk-side-nav-icon,
.sk-user-sidenav .level-3-active .sk-side-nav-icon {
    color: var(--primary);
}
.sk-user-sidenav .sk-side-nav-link.active,
.sk-user-sidenav .sk-side-nav-link:hover {
    background-color: var(--soft-primary);
    border-left-color: var(--primary);
}
.sk-user-sidenav .level-2 .sk-side-nav-link:not(.custom-level):hover:after,
.sk-user-sidenav .level-2 .sk-side-nav-link:not(.custom-level).active:after {
    background: var(--primary);
    border-color: var(--primary);
    color: black!important;
}

/*border-bottom: 1px solid black*/
/*.sk-user-sidenav .active .sk-side-nav-icon {*/
/*    color: var(--primary);*/
/*}*/

@media (max-width: 1199px) {
    .sk-user-sidenav-wrap {
        display: none;
    }
    .sk-user-panel {
        padding-left: 0px;
    }
    [dir="rtl"] .sk-user-panel {
        padding-right: 0px;
    }
}
.sk-mobile-side-nav .sk-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);
}


/*hover category menu*/
.sk-category-menu .sub-cat-menu{
    display: none;
    position: absolute;
    width: calc(100% - 25%);
    left: calc(25% - 10px);
    height: calc(100% + 20px);
    overflow: hidden;
    top: 0;
    z-index: 9;
    background-color: #fff;
    overflow-y: auto;
}
[dir="rtl"] .sk-category-menu .sub-cat-menu{
    left: auto;
    right: calc(25% - 10px);
}
.sk-category-menu .category-nav-element:hover .sub-cat-menu{
    display: block;
}
.sk-category-menu .category-nav-element:hover > a{
    position: relative;
    z-index: 10;
    background: #fff;
    box-shadow: -2px 3px 5px rgb(0 0 0 / 0.1);
}
.hover-category-menu .all-category::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 20px;
    bottom: 100%;
    right: 0;
}
.hover-category-menu .all-category::before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    border-top: 0;
    border-right: 12px solid transparent;
    border-bottom: 12px solid var(--soft-primary);
    border-left: 12px solid transparent;
    top: -12px;
    right: 20px;
}
[dir="rtl"] .hover-category-menu .all-category::before {
    left: 20px;
    right: auto;
}

/*front widgets (footer)*/

/*footer widgets*/
.sk-front-widget .title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}
.sk-front-widget .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sk-front-widget .menu a {
    display: inline-block;
    color: inherit;
    padding: 5px 0;
}

.sk-front-widget .menu a:hover {
    transform: translateX(5px);
    -webkit-transform: translateX(5px);
}

/*header*/
.sk-header {
    box-shadow: 0 10px 30px rgba(34, 44, 62, 0.05);
    border-bottom: 1px solid #edf0f5;
}

/*subheader*/
.sk-subheader {
    border-bottom: 1px solid #edf0f5;
}

.sk-subheader a {
    color: #6f6f6f;
}

.sk-subheader a:hover {
    color: var(--primary);
}

/*navbar*/
.sk-navbar .search .input-group > select,
.sk-navbar .search .bootstrap-select {
    min-width: 160px;
}

.sk-navbar .search .input-group-prepend {
    min-width: 280px;
}

.sk-navbar .menu a {
    color: #505050;
    font-weight: 500;
    font-size: 13px;
}
.sk-navbar .menu a.btn-primary {
    color: #fff;
}

/*slider mobile auto height*/
@media (max-width: 767.98px) {
    .mobile-img-auto-height img{
        height: auto;
    }
}


/*footer*/
.sk-footer {
    background: #151c29;
    padding-top: 70px;
}

.sk-front-widget .title {
    color: #717b8c;
}
.sk-footer .menu a {
    color: #cfd3da;
}
.sk-footer p {
    color: #cbcdd2;
}

/*copyright*/
.sk-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);
}

.category-filter li {
    font-weight: 400;
}

.category-filter a {
    color: inherit;
    display: block;
    padding: 5px 0;
}

.category-filter .go-back {
    font-weight: 500;
}
.category-filter .go-back ~ li:not(.go-back){
    margin-left: 20px;
}
.category-filter .go-back a:before {
    content: "\f104";
    font-family: "Line Awesome Free";
    font-weight: 900;
    text-rendering: optimizeLegibility;
    text-transform: none;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    opacity: 0.7;
    font-size: 90%;
    margin-right: 5px;
}

.category-filter .child a {
    padding-left: 17px;
}

/*workdesk*/
.card-project {
    border-left: 3px solid transparent;
}

.card-project:not(:last-of-type) {
    border-bottom: 1px solid #ebedf2;
}

.card-project:hover {
    border-left-color: var(--primary);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08), 0 2px 4px 0 rgba(0, 0, 0, 0.12);
}

/* 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;
    }
}
@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);
}



.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;
}
/* sm */
@media (min-width: 576px) {
    .sk-carousel.sm-gutters-1 {
        width: calc(100% + 2px);
    }
    .sk-carousel.sm-gutters-1 .carousel-box {
        padding-left: 1px;
        padding-right: 1px;
    }
    .sk-carousel.sm-gutters-2 {
        width: calc(100% + 4px);
    }
    .sk-carousel.sm-gutters-2 .carousel-box {
        padding-left: 2px;
        padding-right: 2px;
    }
    .sk-carousel.sm-gutters-3 {
        width: calc(100% + 6px);
    }
    .sk-carousel.sm-gutters-3 .carousel-box {
        padding-left: 3px;
        padding-right: 3px;
    }
    .sk-carousel.sm-gutters-5 {
        width: calc(100% + 10px);
    }
    .sk-carousel.sm-gutters-5 .carousel-box {
        padding-left: 5px;
        padding-right: 5px;
    }
    .sk-carousel.sm-gutters-10 {
        width: calc(100% + 20px);
    }
    .sk-carousel.sm-gutters-10 .carousel-box {
        padding-left: 10px;
        padding-right: 10px;
    }
    .sk-carousel.sm-gutters-15 {
        width: calc(100% + 30px);
    }
    .sk-carousel.sm-gutters-15 .carousel-box {
        padding-left: 15px;
        padding-right: 15px;
    }
    .sk-carousel.sm-gutters-20 {
        width: calc(100% + 40px);
    }
    .sk-carousel.sm-gutters-20 .carousel-box {
        padding-left: 20px;
        padding-right: 20px;
    }
    .sk-carousel.sm-gutters-25 {
        width: calc(100% + 50px);
    }
    .sk-carousel.sm-gutters-25 .carousel-box {
        padding-left: 25px;
        padding-right: 25px;
    }
}
/* md */
@media (min-width: 768px) {
    .sk-carousel.md-gutters-1 {
        width: calc(100% + 2px);
    }
    .sk-carousel.md-gutters-1 .carousel-box {
        padding-left: 1px;
        padding-right: 1px;
    }
    .sk-carousel.md-gutters-2 {
        width: calc(100% + 4px);
    }
    .sk-carousel.md-gutters-2 .carousel-box {
        padding-left: 2px;
        padding-right: 2px;
    }
    .sk-carousel.md-gutters-3 {
        width: calc(100% + 6px);
    }
    .sk-carousel.md-gutters-3 .carousel-box {
        padding-left: 3px;
        padding-right: 3px;
    }
    .sk-carousel.md-gutters-5 {
        width: calc(100% + 10px);
    }
    .sk-carousel.md-gutters-5 .carousel-box {
        padding-left: 5px;
        padding-right: 5px;
    }
    .sk-carousel.md-gutters-10 {
        width: calc(100% + 20px);
    }
    .sk-carousel.md-gutters-10 .carousel-box {
        padding-left: 10px;
        padding-right: 10px;
    }
    .sk-carousel.md-gutters-15 {
        width: calc(100% + 30px);
    }
    .sk-carousel.md-gutters-15 .carousel-box {
        padding-left: 15px;
        padding-right: 15px;
    }
    .sk-carousel.md-gutters-20 {
        width: calc(100% + 40px);
    }
    .sk-carousel.md-gutters-20 .carousel-box {
        padding-left: 20px;
        padding-right: 20px;
    }
    .sk-carousel.md-gutters-25 {
        width: calc(100% + 50px);
    }
    .sk-carousel.md-gutters-25 .carousel-box {
        padding-left: 25px;
        padding-right: 25px;
    }
    .sk-carousel.md-gutters-30 {
        width: calc(100% + 60px);
    }
    .sk-carousel.md-gutters-30 .carousel-box {
        padding-left: 30px;
        padding-right: 30px;
    }
    .sk-carousel.md-gutters-35 {
        width: calc(100% + 70px);
    }
    .sk-carousel.md-gutters-35 .carousel-box {
        padding-left: 35px;
        padding-right: 35px;
    }
    .sk-carousel.md-gutters-40 {
        width: calc(100% + 80px);
    }
    .sk-carousel.md-gutters-40 .carousel-box {
        padding-left: 40px;
        padding-right: 40px;
    }
    .sk-carousel.md-gutters-50 {
        width: calc(100% + 100px);
    }
    .sk-carousel.md-gutters-50 .carousel-box {
        padding-left: 50px;
        padding-right: 50px;
    }
    .sk-carousel.md-gutters-60 {
        width: calc(100% + 120px);
    }
    .sk-carousel.md-gutters-60 .carousel-box {
        padding-left: 60px;
        padding-right: 60px;
    }
}
/* lg */
@media (min-width: 992px) {
    .sk-carousel.lg-gutters-1 {
        width: calc(100% + 2px);
    }
    .sk-carousel.lg-gutters-1 .carousel-box {
        padding-left: 1px;
        padding-right: 1px;
    }
    .sk-carousel.lg-gutters-2 {
        width: calc(100% + 4px);
    }
    .sk-carousel.lg-gutters-2 .carousel-box {
        padding-left: 2px;
        padding-right: 2px;
    }
    .sk-carousel.lg-gutters-3 {
        width: calc(100% + 6px);
    }
    .sk-carousel.lg-gutters-3 .carousel-box {
        padding-left: 3px;
        padding-right: 3px;
    }
    .sk-carousel.lg-gutters-5 {
        width: calc(100% + 10px);
    }
    .sk-carousel.lg-gutters-5 .carousel-box {
        padding-left: 5px;
        padding-right: 5px;
    }
    .sk-carousel.lg-gutters-10 {
        width: calc(100% + 20px);
    }
    .sk-carousel.lg-gutters-10 .carousel-box {
        padding-left: 10px;
        padding-right: 10px;
    }
    .sk-carousel.lg-gutters-15 {
        width: calc(100% + 30px);
    }
    .sk-carousel.lg-gutters-15 .carousel-box {
        padding-left: 15px;
        padding-right: 15px;
    }
    .sk-carousel.lg-gutters-20 {
        width: calc(100% + 40px);
    }
    .sk-carousel.lg-gutters-20 .carousel-box {
        padding-left: 20px;
        padding-right: 20px;
    }
    .sk-carousel.lg-gutters-25 {
        width: calc(100% + 50px);
    }
    .sk-carousel.lg-gutters-25 .carousel-box {
        padding-left: 25px;
        padding-right: 25px;
    }
    .sk-carousel.lg-gutters-30 {
        width: calc(100% + 60px);
    }
    .sk-carousel.lg-gutters-30 .carousel-box {
        padding-left: 30px;
        padding-right: 30px;
    }
    .sk-carousel.lg-gutters-35 {
        width: calc(100% + 70px);
    }
    .sk-carousel.lg-gutters-35 .carousel-box {
        padding-left: 35px;
        padding-right: 35px;
    }
    .sk-carousel.lg-gutters-40 {
        width: calc(100% + 80px);
    }
    .sk-carousel.lg-gutters-40 .carousel-box {
        padding-left: 40px;
        padding-right: 40px;
    }
    .sk-carousel.lg-gutters-50 {
        width: calc(100% + 100px);
    }
    .sk-carousel.lg-gutters-50 .carousel-box {
        padding-left: 50px;
        padding-right: 50px;
    }
    .sk-carousel.lg-gutters-60 {
        width: calc(100% + 120px);
    }
    .sk-carousel.lg-gutters-60 .carousel-box {
        padding-left: 60px;
        padding-right: 60px;
    }
}
/* xl */
@media (min-width: 1200px) {
    .sk-carousel.xl-gutters-1 {
        width: calc(100% + 2px);
    }
    .sk-carousel.xl-gutters-1 .carousel-box {
        padding-left: 1px;
        padding-right: 1px;
    }
    .sk-carousel.xl-gutters-2 {
        width: calc(100% + 4px);
    }
    .sk-carousel.xl-gutters-2 .carousel-box {
        padding-left: 2px;
        padding-right: 2px;
    }
    .sk-carousel.xl-gutters-3 {
        width: calc(100% + 6px);
    }
    .sk-carousel.xl-gutters-3 .carousel-box {
        padding-left: 3px;
        padding-right: 3px;
    }
    .sk-carousel.xl-gutters-5 {
        width: calc(100% + 10px);
    }
    .sk-carousel.xl-gutters-5 .carousel-box {
        padding-left: 5px;
        padding-right: 5px;
    }
    .sk-carousel.xl-gutters-10 {
        width: calc(100% + 20px);
    }
    .sk-carousel.xl-gutters-10 .carousel-box {
        padding-left: 10px;
        padding-right: 10px;
    }
    .sk-carousel.xl-gutters-15 {
        width: calc(100% + 30px);
    }
    .sk-carousel.xl-gutters-15 .carousel-box {
        padding-left: 15px;
        padding-right: 15px;
    }
    .sk-carousel.xl-gutters-20 {
        width: calc(100% + 40px);
    }
    .sk-carousel.xl-gutters-20 .carousel-box {
        padding-left: 20px;
        padding-right: 20px;
    }
    .sk-carousel.xl-gutters-25 {
        width: calc(100% + 50px);
    }
    .sk-carousel.xl-gutters-25 .carousel-box {
        padding-left: 25px;
        padding-right: 25px;
    }
    .sk-carousel.xl-gutters-30 {
        width: calc(100% + 60px);
    }
    .sk-carousel.xl-gutters-30 .carousel-box {
        padding-left: 30px;
        padding-right: 30px;
    }
    .sk-carousel.xl-gutters-35 {
        width: calc(100% + 70px);
    }
    .sk-carousel.xl-gutters-35 .carousel-box {
        padding-left: 35px;
        padding-right: 35px;
    }
    .sk-carousel.xl-gutters-40 {
        width: calc(100% + 80px);
    }
    .sk-carousel.xl-gutters-40 .carousel-box {
        padding-left: 40px;
        padding-right: 40px;
    }
    .sk-carousel.xl-gutters-50 {
        width: calc(100% + 100px);
    }
    .sk-carousel.xl-gutters-50 .carousel-box {
        padding-left: 50px;
        padding-right: 50px;
    }
    .sk-carousel.xl-gutters-60 {
        width: calc(100% + 120px);
    }
    .sk-carousel.xl-gutters-60 .carousel-box {
        padding-left: 60px;
        padding-right: 60px;
    }
}
/* xxl */
@media (min-width: 1500px) {
    .sk-carousel.xxl-gutters-1 {
        width: calc(100% + 2px);
    }
    .sk-carousel.xxl-gutters-1 .carousel-box {
        padding-left: 1px;
        padding-right: 1px;
    }
    .sk-carousel.xxl-gutters-2 {
        width: calc(100% + 4px);
    }
    .sk-carousel.xxl-gutters-2 .carousel-box {
        padding-left: 2px;
        padding-right: 2px;
    }
    .sk-carousel.xxl-gutters-3 {
        width: calc(100% + 6px);
    }
    .sk-carousel.xxl-gutters-3 .carousel-box {
        padding-left: 3px;
        padding-right: 3px;
    }
    .sk-carousel.xxl-gutters-5 {
        width: calc(100% + 10px);
    }
    .sk-carousel.xxl-gutters-5 .carousel-box {
        padding-left: 5px;
        padding-right: 5px;
    }
    .sk-carousel.xxl-gutters-10 {
        width: calc(100% + 20px);
    }
    .sk-carousel.xxl-gutters-10 .carousel-box {
        padding-left: 10px;
        padding-right: 10px;
    }
    .sk-carousel.xxl-gutters-15 {
        width: calc(100% + 30px);
    }
    .sk-carousel.xxl-gutters-15 .carousel-box {
        padding-left: 15px;
        padding-right: 15px;
    }
    .sk-carousel.xxl-gutters-20 {
        width: calc(100% + 40px);
    }
    .sk-carousel.xxl-gutters-20 .carousel-box {
        padding-left: 20px;
        padding-right: 20px;
    }
    .sk-carousel.xxl-gutters-25 {
        width: calc(100% + 50px);
    }
    .sk-carousel.xxl-gutters-25 .carousel-box {
        padding-left: 25px;
        padding-right: 25px;
    }
    .sk-carousel.xxl-gutters-30 {
        width: calc(100% + 60px);
    }
    .sk-carousel.xxl-gutters-30 .carousel-box {
        padding-left: 30px;
        padding-right: 30px;
    }
    .sk-carousel.xxl-gutters-35 {
        width: calc(100% + 70px);
    }
    .sk-carousel.xxl-gutters-35 .carousel-box {
        padding-left: 35px;
        padding-right: 35px;
    }
    .sk-carousel.xxl-gutters-40 {
        width: calc(100% + 80px);
    }
    .sk-carousel.xxl-gutters-40 .carousel-box {
        padding-left: 40px;
        padding-right: 40px;
    }
    .sk-carousel.xxl-gutters-50 {
        width: calc(100% + 100px);
    }
    .sk-carousel.xxl-gutters-50 .carousel-box {
        padding-left: 50px;
        padding-right: 50px;
    }
    .sk-carousel.xxl-gutters-60 {
        width: calc(100% + 120px);
    }
    .sk-carousel.xxl-gutters-60 .carousel-box {
        padding-left: 60px;
        padding-right: 60px;
    }
}
/* xxxl */
@media (min-width: 1750px) {
    .sk-carousel.xxxl-gutters-1 {
        width: calc(100% + 2px);
    }
    .sk-carousel.xxxl-gutters-1 .carousel-box {
        padding-left: 1px;
        padding-right: 1px;
    }
    .sk-carousel.xxxl-gutters-2 {
        width: calc(100% + 4px);
    }
    .sk-carousel.xxxl-gutters-2 .carousel-box {
        padding-left: 2px;
        padding-right: 2px;
    }
    .sk-carousel.xxxl-gutters-3 {
        width: calc(100% + 6px);
    }
    .sk-carousel.xxxl-gutters-3 .carousel-box {
        padding-left: 3px;
        padding-right: 3px;
    }
    .sk-carousel.xxxl-gutters-5 {
        width: calc(100% + 10px);
    }
    .sk-carousel.xxxl-gutters-5 .carousel-box {
        padding-left: 5px;
        padding-right: 5px;
    }
    .sk-carousel.xxxl-gutters-10 {
        width: calc(100% + 20px);
    }
    .sk-carousel.xxxl-gutters-10 .carousel-box {
        padding-left: 10px;
        padding-right: 10px;
    }
    .sk-carousel.xxxl-gutters-15 {
        width: calc(100% + 30px);
    }
    .sk-carousel.xxxl-gutters-15 .carousel-box {
        padding-left: 15px;
        padding-right: 15px;
    }
    .sk-carousel.xxxl-gutters-20 {
        width: calc(100% + 40px);
    }
    .sk-carousel.xxxl-gutters-20 .carousel-box {
        padding-left: 20px;
        padding-right: 20px;
    }
    .sk-carousel.xxxl-gutters-25 {
        width: calc(100% + 50px);
    }
    .sk-carousel.xxxl-gutters-25 .carousel-box {
        padding-left: 25px;
        padding-right: 25px;
    }
    .sk-carousel.xxxl-gutters-30 {
        width: calc(100% + 60px);
    }
    .sk-carousel.xxxl-gutters-30 .carousel-box {
        padding-left: 30px;
        padding-right: 30px;
    }
    .sk-carousel.xxxl-gutters-35 {
        width: calc(100% + 70px);
    }
    .sk-carousel.xxxl-gutters-35 .carousel-box {
        padding-left: 35px;
        padding-right: 35px;
    }
    .sk-carousel.xxxl-gutters-40 {
        width: calc(100% + 80px);
    }
    .sk-carousel.xxxl-gutters-40 .carousel-box {
        padding-left: 40px;
        padding-right: 40px;
    }
    .sk-carousel.xxxl-gutters-50 {
        width: calc(100% + 100px);
    }
    .sk-carousel.xxxl-gutters-50 .carousel-box {
        padding-left: 50px;
        padding-right: 50px;
    }
    .sk-carousel.xxxl-gutters-60 {
        width: calc(100% + 120px);
    }
    .sk-carousel.xxxl-gutters-60 .carousel-box {
        padding-left: 60px;
        padding-right: 60px;
    }
}
.loader {
    position: relative;
    pointer-events: none;
}
.loader:before,
.loader:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
}
.loader:before {
    content: "";
    background-color: rgba(255,255,255,0.7);
}
.loader:after {
    content: "";
    -webkit-animation:la-spin 2s infinite linear;
    animation:la-spin 2s infinite linear;
    color: var(--primary);
    width: 30px;
    height: 30px;
    margin: auto;
    background-image: url('/public/assets/img/icons/loader.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
