: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: #ffc519;
    --soft-warning: rgba(255, 197, 25, 0.15);
    --danger: #ef486a;
    --soft-danger: rgba(239, 72, 106, 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;
}

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


/*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-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

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

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

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

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

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

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

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

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

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

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


/*bootstrap extend*/
.fw-100 {
    font-weight: 100 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.opacity-0 {
    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-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-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;
}

.hov-bg-primary:hover {
    background-color: var(--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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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: #fff !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

.aiz-mobile-toggler span:before,
.aiz-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;
}

.aiz-mobile-toggler.light span,
.aiz-mobile-toggler.light span:before,
.aiz-mobile-toggler.light span:after {
    background: #fff;
}

.aiz-mobile-toggler span:before {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    left: auto;
    left: 0;
    width: 50%;
    top: -8px;
}

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

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

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

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

.aiz-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) {
    .aiz-content-wrapper {
        padding-top: 85px;
    }
}

/* xl */
@media (min-width: 1200px) {
    .aiz-content-wrapper {
        padding-left: 265px;
    }

    [dir="rtl"] .aiz-content-wrapper {
        padding-left: 0;
        padding-right: 265px;
    }
}

@media (min-width: 992px) {
    .aiz-topbar {
        height: 65px;
    }
}

/* xl */
@media (min-width: 1200px) {
    .aiz-topbar {
        width: calc(100% - 265px);
        left: 265px;
    }

    [dir="rtl"] .aiz-topbar {
        left: auto;
        right: 265px;
    }
}



.aiz-side-nav-list .aiz-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"] .aiz-side-nav-list .aiz-side-nav-arrow::after {
    content: "\f104";
}

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

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

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

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

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

.aiz-side-nav-list .level-2 .aiz-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;
}

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

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

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

.aiz-side-nav-list .aiz-side-nav-link:hover,
.aiz-side-nav-list .aiz-side-nav-link.level-2-active,
.aiz-side-nav-list .aiz-side-nav-link.level-3-active,
.aiz-side-nav-list .aiz-side-nav-link.active {
    color: #fff;
    background-color: #181827;
}

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

/* xl */
@media (min-width: 1200px) {
    .aiz-sidebar.left {
        left: 0px;
    }

    [dir="rtl"] .aiz-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.dropdown-menu-xs {
    width: 160px;
    min-width: 160px;
}

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

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

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

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


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

.aiz-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"] .aiz-p-hov-icon a {
    transform: translateX(calc(-100% - 7px));
    -webkit-transform: translateX(calc(-100% - 7px));
    margin-left: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.aiz-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"] .aiz-steps.arrow-divider>*:not(:first-of-type):before {
    left: -5px;
    right: auto;
    content: "\f104";
}

/*countdown*/
.aiz-count-down {
    display: flex;
    direction: ltr;
}

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

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

/*form elements*/

.form-control {
    padding: 0.6rem 1rem;
}

.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*/
.aiz-checkbox-list {
    padding: 0 0;
}

.aiz-checkbox,
.aiz-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"] .aiz-checkbox,
[dir="rtl"] .aiz-radio {
    padding-right: 28px;
    padding-left: 0;
}

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

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

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

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

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

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

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

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

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

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

.aiz-square-check:after,
.aiz-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;
}

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

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

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

/*aiz megabox*/
.aiz-megabox {
    position: relative;
    cursor: pointer;
}

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

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

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

.aiz-megabox>input:checked~.aiz-megabox-elem,
.aiz-megabox>input:checked~.aiz-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*/
.aiz-input-icon {
    position: relative;
}

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

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

.aiz-input-icon>.aiz-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;
}

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

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

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

.aiz-tag-input {
    height: auto;
    padding: 0.465rem 1rem 0.2rem;
}

.aiz-tag-input .tagify__input {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.aiz-tag-input .tagify__input:before {
    line-height: 1;
    position: static;
}

.aiz-tag-input .tagify__tag,
.aiz-tag-input .tagify__input {
    margin: 0px 5px 5px 0px;
}

.aiz-tag-input .tagify__tag__removeBtn {
    font: 12px Serif;
    line-height: 1.5;
}

.aiz-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*/
.aiz-pos-product-list {
    overflow-y: auto;
    max-height: calc(100vh - 365px);
    height: calc(100vh - 365px);
    overflow-x: hidden;
}

.aiz-pos-cart-list {
    overflow-y: auto;
    max-height: calc(100vh - 502px);
    height: calc(100vh - 502px);
    overflow-x: hidden
}

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

.aiz-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="aizuploader"] {
    cursor: pointer;
}

.aiz-uploader-all {
    margin-left: -10px;
    margin-right: -10px;
    overflow-y: auto;
    height: calc(100vh - 303px);
}

.uppy-Dashboard-files {
    max-height: calc(100vh - 363px);
}

.aiz-file-box-wrap {
    padding: 0 10px;
    width: 50%;
    float: left;
}

.aiz-file-box-wrap[aria-hidden="true"] {
    display: none;
}

.aiz-file-box {
    position: relative;
}

.aiz-file-box:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.aiz-file-box .dropdown-file {
    position: absolute;
    top: 6px;
    right: 9px;
    z-index: 1;
}

.aiz-file-box .dropdown-file>a {
    color: #5a5a5a;
    font-size: 22px;
    background: #f5f6fa;
    cursor: pointer;
}

.aiz-file-box .card-file {
    cursor: pointer;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
}

.aiz-file-box .card-file .card-file-thumb {
    position: absolute;
    width: calc(100% - 16px);
    top: 8px;
    left: 8px;
    height: calc(100% - 55px);
}

.aiz-file-box .card-file .card-body {
    position: absolute;
    width: calc(100% - 16px);
    bottom: 5px;
    left: 8px;
}

[data-selected="true"] .aiz-uploader-select {
    border-color: #007bff;
    background: rgb(121 214 157);
}

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

    .aiz-file-box-wrap {
        width: 33.3333%;
    }
}

@media (min-width: 768px) {

    /*md*/
    .modal-adaptive {
        max-width: 720px;
    }

    .aiz-file-box-wrap {
        width: 25%;
    }
}

@media (min-width: 992px) {

    /*lg*/
    .modal-adaptive {
        max-width: 960px;
    }

    .aiz-file-box-wrap {
        width: 20%;
    }
}

@media (min-width: 1200px) {

    /*xl*/
    .modal-adaptive {
        max-width: 1140px;
    }

    .aiz-file-box-wrap {
        width: 16.66666%;
    }
}

@media (min-width: 1500px) {

    /*xxl*/
    .modal-adaptive {
        max-width: 1400px;
    }
}

@media (max-width: 767px) {
    .aiz-uploader-search i {
        font-size: 23px;
        cursor: pointer;
        padding: 4px;
        margin-right: 5px;
        position: relative;
        z-index: 2;
        top: 3px;
    }

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

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

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

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

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

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

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

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

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

.btn-sm.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-secondary,
.btn-soft-secondary:hover,
.btn-outline-secondary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

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

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

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

.btn-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-link {
    color: var(--primary);
}

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

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

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



/*pagination*/
.aiz-pagination-center .pagination {
    -ms-flex-pack: center;
    justify-content: center;
}

.aiz-pagination-right .pagination {
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.aiz-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: #38c66c;
}

.pagination .page-link:hover {
    background-color: var(--dark);
    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;
}


.form-group {
    margin-bottom: 1rem;
}
