/*

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

*/

:root {
    --success: #0abb75;
    --soft-success: rgba(10, 187, 117, 0.15);
    --info: #25bcf1;
    --soft-info: rgba(37, 188, 241, 0.15);
    --warning: #ffc519;
    --soft-warning: rgba(255, 197, 25, 0.15);
    --danger: #ef486a;
    --soft-danger: rgba(239, 72, 106, 0.15);
    --light: #f2f3f8;
    --soft-light: #dfdfe6;
    --dark: #111723;
    --soft-dark: rgba(42, 50, 66, 0.15);
}


    .aiz-carousel.sm-gutters-16 .slick-list {
        width: calc(100% + 4px);
    }
    .sm-gutters-16 > .col,
    .sm-gutters-16 > [class*="col-"],
    .aiz-carousel.sm-gutters-16 .carousel-box {
        padding-right: 16px;
        padding-left: 16px;
    }
    .aiz-carousel.sm-gutters-17 .slick-list {
        width: calc(100% + 4px);
    }
    .sm-gutters-17 > .col,
    .sm-gutters-17 > [class*="col-"],
    .aiz-carousel.sm-gutters-17 .carousel-box {
        padding-right: 17px;
        padding-left: 17px;
    }
.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;
}
[dir="rtl"] .aiz-mobile-toggler span,
[dir="rtl"] .aiz-mobile-toggler span:before,
[dir="rtl"] .aiz-mobile-toggler span:after {
    left: auto;
    right: 0;
}

/*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;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    background-color: #f5f5f5;
}
.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: 280px;
    }
    [dir="rtl"] .aiz-content-wrapper {
        padding-left: 0;
        padding-right: 280px;
    }
    .side-menu-closed .aiz-content-wrapper {
        padding-left: 0;
    }
    [dir="rtl"] .side-menu-closed .aiz-content-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
}

/*topbar*/
.aiz-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);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.aiz-topbar-logo-wrap img {
    height: 30px;
}
.aiz-topbar-user,
.aiz-topbar-user:hover {
    color: var(--gray-dark);
}
.aiz-topbar-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.aiz-topbar-menu{
    margin-left: 1rem;
    margin-right: 1rem;
    color: var(--dark);
    position: relative;
    height: 100%;
}
.aiz-topbar-menu.active{
    color: var(--primary);
}
.aiz-topbar-menu.active:after{
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 50%;
    background-color: var(--primary);
}
.aiz-topbar-menu:hover{
    color: var(--primary);
}

/* lg */
@media (min-width: 992px) {
    .aiz-topbar {
        height: 65px;
    }
}
/* xl */
@media (min-width: 1200px) {
    .aiz-topbar {
        width: calc(100% - 280px);
        left: 280px;
    }
    [dir="rtl"] .aiz-topbar {
        left: auto;
        right: 280px;
    }
    .side-menu-closed .aiz-topbar {
        left: 0;
        width: 100%;
    }
    [dir="rtl"] .side-menu-closed .aiz-topbar {
        left: auto;
        right: 0;
        width: 100%;
    }
}

/*siebar nav*/
.aiz-sidebar-overlay {
    cursor: pointer;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 98;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0.3s ease, opacity 0.3s ease;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 1199.98px) {
    .side-menu-open .aiz-sidebar-overlay {
        visibility: visible;
        opacity: 1;
    }
}
.aiz-sidebar.left {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -280px;
    height: 100vh;
    overflow-y: auto;
    z-index: 99;
    /* background-color: #232734; */
    background-color: #E8F0FD;
    width: 280px;
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
}
[dir="rtl"] .aiz-sidebar.left {
    left: auto;
    right: -280px;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
}
.side-menu-open .aiz-sidebar-wrap .left {
    left: 0px;
}
[dir="rtl"] .side-menu-open .aiz-sidebar-wrap .left {
    right: 0;
}
.aiz-side-nav-logo-wrap a {
    padding: 17px 25px;
}

.aiz-side-nav-logo-wrap img {
    height: 31px;
}
.aiz-side-nav-logo-wrap {
    /* background-color: #232734; */
    background-color: #00a1e1;
    transition: all 0.3s;
}
.aiz-side-nav-logo-wrap:hover {
    /* background-color: #3a3f50; */
    background-color: #00a1e1;
}

.aiz-side-nav-wrap {
    padding: 15px 0;
}
.aiz-side-nav-wrap #menu-search {
    border: 1px solid #3a3f50;
    transition: .4s;
}
.aiz-side-nav-wrap #menu-search:focus {
    border: 1px solid #7c8191;
}
.aiz-side-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.aiz-side-nav-list .level-2:not(.mm-show):not(.mm-collapsing),
.aiz-side-nav-list .level-3:not(.mm-show):not(.mm-collapsing) {
    visibility: hidden;
    height: 0;
}
.aiz-side-nav-list .aiz-side-nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 10px 25px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #000;
    /* color: #cfd4e6; */
    margin-bottom: 2px;
}
.aiz-side-nav-list .aiz-side-nav-icon,
.aiz-side-nav-list .aiz-side-nav-icon > svg {
    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;
}
.aiz-side-nav-list .aiz-side-nav-icon > svg {
    height: auto;
}
[dir="rtl"] .aiz-side-nav-list .aiz-side-nav-icon {
    margin-right: 0px;
    margin-left: 6px;
}
.aiz-side-nav-list .aiz-side-nav-icon > svg *{
    fill: #575b6a;
    transition: all 0.3s;
}
.aiz-side-nav-list .aiz-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;
}
.aiz-side-nav-list .aiz-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%;
}
.aiz-side-nav-list .aiz-side-nav-link:hover .aiz-side-nav-icon {
    color: #9191a0;
}
.aiz-side-nav-list .aiz-side-nav-arrow::after {
    content: "\f106";
    font-family: "Line Awesome Free";
    font-weight: 900;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
[dir="rtl"] .aiz-side-nav-list .aiz-side-nav-arrow::after {
    content: "\f106";
}
.aiz-side-nav-list [aria-expanded="true"] .aiz-side-nav-arrow::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
[dir="rtl"]
    .aiz-side-nav-list
    [aria-expanded="true"]
    .aiz-side-nav-arrow::after {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.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: 8px;
    width: 8px;
    border: 1px solid #575b6a;
    border-radius: 50%;
    top: calc(50% - 4px);
    left: 40px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.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: #3a3f50; */
    background-color: #00a1e1;
}
.aiz-side-nav-list .aiz-side-nav-link:hover .aiz-side-nav-icon > svg *,
.aiz-side-nav-list .aiz-side-nav-link.level-2-active .aiz-side-nav-icon > svg *,
.aiz-side-nav-list .aiz-side-nav-link.level-3-active .aiz-side-nav-icon > svg *,
.aiz-side-nav-list .aiz-side-nav-link.active .aiz-side-nav-icon > svg * {
    fill: #cfd4e6;
}
.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: #cfd4e6;
}

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

/*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: #dfdfe6;
    margin: 0;
    border-radius: 0;
    min-width: 14rem;
    font-size: inherit;
    padding: 0;
    -webkit-box-shadow: 0 0 50px 0 rgba(82, 63, 105, 0.15);
    box-shadow: 0 0 50px 0 rgba(82, 63, 105, 0.15);
    padding: 0.5rem 0;
    border-radius: 4px;
    max-width: 100%;
}
.dropdown-menu-animated {
    display: block;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: margin-top 0.3s, visibility 0.3s, opacity 0.3s;
    transition: margin-top 0.3s, visibility 0.3s, opacity 0.3s;
    margin-top: 20px !important;
}
.show.dropdown-menu {
    visibility: visible;
    opacity: 1;
    margin-top: 0 !important;
}
.dropdown-menu.dropdown-menu-xs {
    width: 160px;
    min-width: 160px;
}
.dropdown-menu.dropdown-menu-sm {
    width: 240px;
    min-width: 240px;
}
.dropdown-menu.dropdown-menu-md {
    width: 260px;
    min-width: 260px;
}
.dropdown-menu.dropdown-menu-lg {
    width: 320px;
    min-width: 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;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:active {
    color: #fff !important;
    background-color: var(--primary);
}

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

/*card elements*/
.card {
    -webkit-box-shadow: 0 0 13px 0 rgba(82, 63, 105, 0.05);
    box-shadow: 0 0 13px 0 rgba(82, 63, 105, 0.05);
    background-color: #fff;
    margin-bottom: 20px;
    border-color: #ebedf2;
}
.card .card-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    padding: 12px 25px;
    border-bottom: 1px solid #ebedf2;
    min-height: 50px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background-color: transparent;
}
.card .card-body {
    padding: 20px 25px;
    border-radius: 4px;
}
.card .card-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top: 1px solid #ebedf2;
    background-color: transparent;
    padding: 12px 25px;
}
.card-bordered {
    border: 1px solid #ebedf2;
}
.aiz-p-hov-icon a {
    display: block;
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
    background: #fff;
    margin-top: 5px;
    margin-right: 5px;
    color: #333;
    font-size: 16px;
    box-shadow: 0px 2px 10px rgb(0 0 0 / 15%);
    transform: translateX(calc(100% + 15px));
    -webkit-transform: translateX(calc(100% + 15px));
}
[dir="rtl"] .aiz-p-hov-icon a {
    transform: translateX(calc(-100% - 15px));
    -webkit-transform: translateX(calc(-100% - 15px));
    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);
}
.aiz-card-box .disc-amount{
    margin-right: -37%;
    opacity: 0 !important;
}
.aiz-card-box:hover .disc-amount{
    margin-right: 0;
    opacity: 1 !important;
}

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

.cart-btn{
    background: #000;
    opacity: 0.7;
    transform: translateY(100%);
    transition: 0.3s;
    overflow: hidden;
}
.cart-btn:hover,
.cart-btn.active{
    opacity: 1;
}
.cart-btn .cart-btn-text{
    margin-top: 48px;
    margin-bottom: 20px;
    transition: 0.4s;
}
.cart-btn:hover .cart-btn-text{
    margin-top: -40px;
}
.aiz-card-box:hover .cart-btn{
    transform: translateY(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: auto;
    right: -12px;
    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;
}

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

/*form elements*/

.form-control {
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    height: calc(1.3125rem + 1.2rem + 2px);
    border: 1px solid #dfdfe6;
    color: #898b92;
}
.form-control-sm {
    height: calc(1.5rem + 0.8rem + 2px);
    padding: 0.4rem 0.7rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    border-radius: 0.25rem;
}
.form-control-lg {
    height: calc(1.5rem + 1.5rem + 2px);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
}
.form-control::-webkit-input-placeholder {
    color: #898b92;
}
.form-control:-ms-input-placeholder {
    color: #898b92;
}
.form-control::placeholder {
    color: #898b92;
}
.form-control:disabled,
.form-control[readonly] {
    background-color: #f7f8fa;
    opacity: 1;
    border-color: #dfdfe6;
}
.resize-off {
    resize: none;
}
.custom-file-input:focus ~ .custom-file-label {
    border-color: #dfdfe6;
}
.custom-file {
    height: calc(1.3125rem + 1.2rem + 2px);
    overflow: hidden;
}
.custom-file-input {
    height: 0;
    width: 0;
    opacity: 0;
    position: absolute;
}
.custom-file-name {
    white-space: nowrap;
}
.custom-file-label,
.custom-file-label::after {
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    height: calc(1.3125rem + 1.2rem + 2px);
    border: 1px solid #dfdfe6;
    color: #898b92;
}
.custom-file-label::after {
    height: calc(1.3125rem + 1.2rem);
}
.custom-file-sm {
    height: calc(1.5rem + 0.8rem + 2px);
}
.custom-file-sm .custom-file-label,
.custom-file-sm .custom-file-label::after {
    height: calc(1.5rem + 0.8rem + 2px);
    padding: 0.4rem 0.7rem;
    font-size: 0.8125rem;
    line-height: 1.5;
}
.custom-file-sm .custom-file-label::after {
    height: calc(1.5rem + 0.8rem);
}

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

/*custom checkbox, radio*/
.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: -5px;
    margin-top: -5px;
    width: 10px;
    height: 10px;
    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 #dfdfe6;
    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);
}

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

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

.input-group-text {
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #74788d;
    background-color: #f7f8fa;
    border: 1px solid #dfdfe6;
    border-radius: 4px;
}
.input-group-sm > .custom-select,
.input-group-sm > .form-control:not(textarea) {
    height: calc(1.5em + 0.8rem + 2px);
}
.input-group-sm > .custom-select,
.input-group-sm > .form-control,
.input-group-sm > .input-group-append > .btn,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-prepend > .input-group-text {
    padding: 0.4rem 0.7rem;
    font-size: 0.8125rem;
}

/*input with icon*/
.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;
}
/*switch*/
.aiz-switch input:empty {
    height: 0;
    width: 0;
    overflow: hidden;
    position: absolute;
    opacity: 0;
}
.aiz-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;
}
.aiz-switch input:empty ~ span:after,
.aiz-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;
}
.aiz-switch input:empty ~ span:before {
    background-color: #e8ebf1;
}
.aiz-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;
}
.aiz-switch input:checked ~ span:after {
    background-color: var(--primary);
    margin-left: 20px;
}
.aiz-switch-secondary input:checked ~ span:after {
    background-color: var(--secondary);
}
.aiz-switch-success input:checked ~ span:after {
    background-color: var(--success);
}
.aiz-switch-info input:checked ~ span:after {
    background-color: var(--info);
}
.aiz-switch-warning input:checked ~ span:after {
    background-color: var(--warning);
}
.aiz-switch-secondary-base input:checked ~ span:after {
    background-color: var(--secondary-base);
}
.aiz-switch-danger input:checked ~ span:after {
    background-color: var(--danger);
}
.aiz-switch-light input:checked ~ span:after {
    background-color: var(--light);
}
.aiz-switch-dark input:checked ~ span:after {
    background-color: var(--dark);
}
.aiz-switch-blue input:checked ~ span:after {
    background-color: var(--blue);
}

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

@media (max-width: 575px) {
    .note-video-clip {
        max-width: 100%;
        height: auto;
    }
    .aiz-card-box .disc-amount{
        margin-right: -60%;
        opacity: 0 !important;
    }
    .px-xs-0{
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
.aiz-editor-data img {
    max-width: 100% !important;
    height: auto !important;
}

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

.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: 8px;
    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 .select-box {
    position: absolute;
    top: 0px;
    left: 9px;
    z-index: 1;
}

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

@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%;
    }
    .modal-md {
        max-width: 600px;
    }
}
@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;
    }

    .aiz-count-down-circle {
        box-shadow: 0px 3px 20px rgb(0 0 0 / 16%);
    }

    .aiz-accordion-panel ul li{
        border-bottom: 1px solid #292933;
        padding-left: 1rem;
    }
    .aiz-accordion-panel ul li:last-child{
        border-bottom: none;
    }
    .aiz-accordion-panel ul li .text-sm-secondary{
        color: var(--secondary) !important;
    }
    .aiz-accordion-panel ul li.active .text-sm-secondary,
    .aiz-accordion-panel ul li .text-sm-secondary:hover{
        color: var(--white) !important;
    }
    .aiz-accordion-panel ul li .animate-underline-white::after{
        position: relative !important;
    }
}

/*footable*/
.aiz-table {
    opacity: 0;
    height: 0;
}
div.footable-loader {
    height: 220px;
}
.aiz-table.footable,
.aiz-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;
}
.aiz-table thead th {
    border-top: 0;
    border-bottom: 1px solid #eceff7;
}
.aiz-table th {
    font-weight: 600;
}
.aiz-table td,
.aiz-table th {
    border-top: 1px solid #eceff7;
}
.aiz-table td,
.aiz-table th {
    padding: 1rem 0.75rem;
}
.aiz-table.table-bordered td,
.aiz-table.table-bordered th {
    border: 1px solid #eceff7;
}
.aiz-table .footable-detail-row > td {
    padding: 0;
}
.aiz-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;
}
.aiz-table .footable-toggle.fooicon-minus {
    color: var(--white);
    background-color: var(--primary);
}
.aiz-table.footable > tbody > tr.footable-empty > td {
    font-size: 20px;
    position: relative;
    padding-top: 100px;
}

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

.aiz-table .footable-page-link,
.aiz-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;
}

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

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

/*notify*/
.aiz-notify {
    min-width: 350px;
    max-width: 350px;
    padding-right: 50px;
    border-radius: 0.25rem;
    overflow: hidden;
    border: 0;
    color: var(--white);
    box-shadow: 0 5px 20px 0 rgba(38, 45, 58, 0.2);
    -webkit-box-shadow: 0 5px 20px 0 rgba(38, 45, 58, 0.2);
    padding: 1.25rem 1.25rem;
    font-size: 0.875rem;
    z-index: 1060 !important;
}
[dir="rtl"] .aiz-notify {
    text-align: right !important;
}
.aiz-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"] .aiz-notify .close {
    right: auto !important;
    left: 15px !important;
}
.aiz-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;
}
.aiz-notify .close:hover {
    color: var(--dark);
    opacity: 1;
}
.aiz-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;
}
.aiz-notify .progress {
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    background-color: transparent;
}
.aiz-notify .progress-bar {
    background-color: var(--white);
}
.aiz-notify.alert-success {
    background-color: var(--success);
}
.aiz-notify.alert-danger {
    background-color: var(--danger);
}
.aiz-notify.alert-primary {
    background-color: var(--primary);
}
.aiz-notify.alert-warning {
    background-color: var(--warning);
}
.aiz-notify.alert-secondary-base {
    background-color: var(--secondary-base);
}
.aiz-notify.alert-info {
    background-color: var(--info);
}
.aiz-notify.alert-dark {
    background-color: var(--dark);
}
.aiz-notify.alert-secondary {
    background-color: var(--secondary);
}
.aiz-notify.alert-light,
.aiz-notify.alert-light .close {
    background-color: var(--light);
    color: var(--dark);
}
.aiz-notify.alert-light .progress-bar {
    background-color: var(--primary);
}
@media (max-width: 575px) {
    .aiz-notify {
        width: calc(100% - 40px);
        min-width: auto;
    }
    .h-sm-auto {
        height: auto;
    }
}

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

/*slick carousel*/
.aiz-carousel > * {
    display: none;
}
.slick-initialized.aiz-carousel > *,
.aiz-carousel > *:first-child {
    display: block;
}
.aiz-carousel.gutters-5 {
    width: calc(100% + 10px);
}
.aiz-carousel.gutters-5 .carousel-box {
    padding-left: 5px;
    padding-right: 5px;
}
.aiz-carousel.gutters-10 {
    width: calc(100% + 20px);
}
.aiz-carousel.gutters-10 .carousel-box {
    padding-left: 10px;
    padding-right: 10px;
}
.aiz-carousel.gutters-15 {
    width: calc(100% + 30px);
}
.aiz-carousel.gutters-15 .carousel-box {
    padding-left: 15px;
    padding-right: 15px;
}
.aiz-carousel.gutters-16{
    width: calc(100% + 32px);
}
.aiz-carousel.gutters-16 .carousel-box {
    padding-left: 16px;
    padding-right: 16px;
}
.aiz-carousel-full * {
    height: 100%;
}
.aiz-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;
}
.aiz-carousel .slick-prev:hover,
.aiz-carousel .slick-next:hover {
    box-shadow: 0 2px 10px rgba(20, 23, 28, 0.13) !important;
}
.aiz-carousel .slick-prev {
    left: 10px;
}
.aiz-carousel.hide-disabled .slick-disabled {
    display: none !important;
}

.aiz-carousel .slick-next {
    right: 10px;
}
.aiz-carousel.arrow-dark .slick-arrow {
    width: 25px;
    height: 60px;
    background: rgb(177 174 174 / 30%) !important;
    border-radius: 0;
    color: #fff;
    box-shadow: none;
}
.aiz-carousel.arrow-x-0 .slick-prev {
    left: 0 !important;
}
.aiz-carousel.arrow-x-0 .slick-next {
    right: 0 !important;
}
.aiz-carousel.arrow-x-15 .slick-prev {
    left: 15px !important;
}
.aiz-carousel.arrow-x-15 .slick-next {
    right: 15px !important;
}
.todays-deal.aiz-carousel .slick-arrow {
    background: transparent;
    box-shadow: none;
    top: 40%;
    color: var(--white);
    font-size: 20px;
    transition: 0.4s;
}
.todays-deal.aiz-carousel .slick-arrow:hover {
    color: var(--secondary-base);
}
.todays-deal.aiz-carousel .slick-prev {
    left: -30px;
}
.todays-deal.aiz-carousel .slick-next {
    right: -30px;
}
.aiz-carousel .slick-dots {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 0;
    padding-left: 0;
}
.aiz-carousel .slick-dots button {
    height: 11px;
    width: 11px;
    padding: 0px;
    color: transparent;
    border: 0;
    background: #ddd;
    border-radius: 50%;
    margin: 0 3px;
}
.aiz-carousel .slick-dots .slick-active button {
    background: var(--primary);
}
.aiz-carousel.dots-inside-bottom .slick-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

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

.aiz-chat .chat-list-wrap {
    height: calc(80vh - 160px);
    max-height: calc(80vh - 160px);
    overflow-y: auto;
}
.aiz-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;
}


.aiz-cookie-alert {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 300px;
    z-index: 1070;
    display: none;
}
.aiz-cookie-alert.show {
    display: block;
}

/*messnger icon mobile*/
.fb_dialog_mobile iframe {
    bottom: 70px !important;
}

/*pages*/
.aiz-auth-form {
    max-width: 480px;
}

/*front pages*/

/*user panel*/
.aiz-user-sidenav-wrap {
    -ms-flex: 0 0 315px;
    flex: 0 0 315px;
    max-width: 315px;
    /* -webkit-box-shadow: 0 0 13px 0 rgba(82, 63, 105, 0.05); */
    /* box-shadow: 0 0 13px 0 rgba(82, 63, 105, 0.05); */
    background: #fff;
    border-radius: 4px;
    border: 1px solid #ebedf2;
}

.aiz-user-panel {
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-left: 30px;
}
[dir="rtl"] .aiz-user-panel {
    padding-right: 30px;
    padding-left: 0;
}
.aiz-user-sidenav .aiz-side-nav-list .aiz-side-nav-link {
    color: #292933;
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 25px;
    padding: 12px 20px 12px 20px;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
}
.aiz-user-sidenav .aiz-side-nav-list .level-2 .aiz-side-nav-link {
    padding: 10px 25px 10px 54px;
}
.aiz-user-sidenav .aiz-side-nav-list .aiz-side-nav-icon {
    width: 28px;
    font-size: 16px;
}
.aiz-user-sidenav .aiz-side-nav-link.level-2-active,
.aiz-user-sidenav .aiz-side-nav-link.level-3-active {
    background-color: transparent;
    color: var(--dark);
}
.aiz-user-sidenav .level-2-active .aiz-side-nav-icon,
.aiz-user-sidenav .level-3-active .aiz-side-nav-icon {
    color: var(--dark);
}
.aiz-user-sidenav .aiz-side-nav-link.active,
.aiz-user-sidenav .aiz-side-nav-link:hover {
    background-color: var(--soft-secondary-base);
}
.aiz-user-sidenav .level-2 .aiz-side-nav-link:hover:after,
.aiz-user-sidenav .level-2 .aiz-side-nav-link.active:after {
    background: var(--dark);
}
.aiz-user-sidenav .active .aiz-side-nav-icon {
    color: var(--dark);
}
.aiz-user-sidenav .aiz-side-nav-link > svg *{
    transition: 0.3s;
}
.aiz-user-sidenav .aiz-side-nav-link.active > svg *,
.aiz-user-sidenav .aiz-side-nav-link:hover > svg *,
.aiz-user-sidenav .level-2-active > svg *,
.aiz-user-sidenav .level-3-active > svg *{
    fill: var(--dark);
}

@media (max-width: 1199px) {
    .aiz-user-sidenav-wrap {
        display: none;
        height: 100vh;
    }
    .aiz-user-panel {
        padding-left: 0px;
    }
    .aiz-user-sidenav {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }
    [dir="rtl"] .aiz-user-panel {
        padding-right: 0px;
    }
}
.aiz-mobile-side-nav .aiz-user-sidenav-wrap {
    display: block;
    max-width: initial;
    border: 0;
}

/*hover category menu*/
.aiz-category-menu .sub-cat-menu {
    /* display: none; */
    position: absolute;
    width: calc(100% - 270px);
    left: calc(270px);
    /* height: calc(100% + 20px); */
    height: 460px;
    overflow: hidden;
    top: 0;
    z-index: -1;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.5s;
    opacity: 0;
}
.aiz-category-menu .sub-cat-menu.more {
    height: 553px;
}
[dir="rtl"] .aiz-category-menu .sub-cat-menu {
    left: auto;
    /* right: calc(25% - 10px); */
    right: 270px;
}
.aiz-category-menu .category-nav-element:hover .sub-cat-menu {
    z-index: 9;
    opacity: 1;
}
.aiz-user-top-menu .user-top-nav-element > a {
    padding-top: 14px;
    padding-bottom: 14px;
}
.aiz-category-menu .category-nav-element > a {
    padding-top: 12px;
    padding-bottom: 12px;
}
.aiz-user-top-menu .user-top-nav-element:hover > a ,
.aiz-category-menu .category-nav-element:hover > a {
    position: relative;
    z-index: 10;
    background: var(--soft-secondary-base);
}
.aiz-user-top-menu .user-top-nav-element:hover > .user-top-menu-name,
.aiz-category-menu .category-nav-element:hover > a .cat-name{
    margin-left: 5px;
}

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

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

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

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

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

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

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

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

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

.aiz-navbar .menu a {
    color: #505050;
    font-weight: 500;
    font-size: 13px;
}
.aiz-navbar .menu a.btn-primary {
    color: #fff;
}
/*footer*/
.aiz-footer {
    background: #151c29;
    padding-top: 70px;
}

.policy-file a > svg *{
    transition: 0.3s;
}
.policy-file:hover a > svg *{
    fill: var(--primary) !important;
}

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

/*copyright*/
.aiz-footer-copyright {
    border-top: 1px solid #283244;
}

@media (max-width: 575.98px) {
    .aiz-filter-sidebar .collapse-sidebar {
        overflow-y: auto;
    }
}

/* Top menu sidebar for mobile */
.aiz-top-menu-sidebar{
    opacity: 0;
    visibility: hidden;
}
.aiz-top-menu-sidebar.active{
    opacity: 1;
    visibility: visible;
}
.aiz-top-menu-sidebar .collapse-sidebar{
    overflow-y: auto;
    transform: translateX(-100%);
    left: 0;
    right: auto;
    transition: all 0.5s;
}
.aiz-top-menu-sidebar.active .collapse-sidebar{
    transform: translate(0%, 0%);
}
.aiz-top-menu-sidebar ul li{
    list-style-type: none;
}

/* Accordion */
.aiz-accordion-wrap{
    margin-bottom: 2px;
}
.aiz-accordion-heading .aiz-accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px 0;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}
.aiz-accordion-heading.active, .aiz-accordion-heading:hover {
    background-color: #ccc;
}
.aiz-accordion-heading .aiz-accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-size: 18px;
}
.aiz-accordion-heading.active .aiz-accordion:after {
    content: "\2212";
}
.aiz-accordion-panel {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

/* Demo nav */
.aiz-demo-nav {
    background-color: #f7f7f7;
    width: 66px;
    min-height: 66px;
    height: auto;
    overflow: hidden;
    z-index: 1046;
    box-shadow: 0 -2px 20px 5px rgba(0,0,0,.15);
    position: fixed;
    border-radius: 8px;
    top: 50%;
    right: 5px;
    transform: translate(0%, -50%);
    transition: all 0.4s;
}
.aiz-demo-nav-item{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 12px 6px;
    color: #808080;
    font-size: .75rem;
    font-weight: 600;
    transition: all 500ms;
}
.aiz-demo-nav-item:hover{
    color: #808080;
}
.aiz-demo-nav-links .aiz-demo-nav-item:hover{
    color: #0858cf;
    background: #e2e2e2;
}
.aiz-demo-nav-links .aiz-demo-nav-item > svg *{
    transition: all 500ms;
}
.aiz-demo-nav-links .aiz-demo-nav-item:hover > svg *{
    fill: #0858cf;
}
.aiz-demo-nav-toggler{
    z-index: 2;
    background: #f7f7f7;
    height: 72px;
}
.aiz-demo-nav-toggler:hover{
    letter-spacing: 1px;
}
.aiz-demo-nav-toggler .aiz-demo-nav-btn  {
    transform: translateX(0px);
    transition: all 500ms;
}
.aiz-demo-nav-toggler.show .aiz-demo-nav-btn  {
    transform: translateX(7px);
}
.aiz-demo-nav-toggler .aiz-demo-nav-btn .line {
    padding: 0;
    width: 30px;
    background: #808080;
    height: 2px;
    margin: 5px 0;
    transition: all 500ms cubic-bezier(.9, 0, .33, 1);
}
.aiz-demo-nav-toggler .aiz-demo-nav-btn .line.line--1 {
    width: 30px;
    transform: rotate(0) translateY(0);
}
.aiz-demo-nav-toggler .aiz-demo-nav-btn .line.line--1.line-cross {
    width: 30px;
    transform: rotate(45deg) translateY(10px);
    background: rgba(0,0,0,0.6);
}
.aiz-demo-nav-toggler .aiz-demo-nav-btn .line.line--2 {
    width: 28px;
    transform: translateX(0);
}
.aiz-demo-nav-toggler .aiz-demo-nav-btn .line.line--2.line-fade-out {
    width: 28px;
    transform: translate(30px);
    opacity: 0;
}
.aiz-demo-nav-toggler .aiz-demo-nav-btn .line.line--3 {
    width: 20px;
    transform: rotate(0) translateY(0);
}
.aiz-demo-nav-toggler .aiz-demo-nav-btn .line.line--3.line-cross {
    width: 30px;
    transform: rotate(-45deg) translateY(-10px);
    background: rgba(0,0,0,0.6);
}

.aiz-demos{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: 0.7s;
}
.aiz-demos.show{
    visibility: visible;
    opacity: 1;
    z-index: 1045;
}
.aiz-demos .aiz-demo-content{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 90%;
    max-width: 760px;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    background: #fff;
    padding: 66px 66px 66px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.aiz-demos .aiz-demo-content::-webkit-scrollbar {
    display: none;
}
.aiz-demos .aiz-demo-content .demo-img-content{
    height: 200px;
    overflow: hidden;
    border: 1px solid #dfdfe6;
    transition: all .7s;
}
.aiz-demos .aiz-demo-content .demo-img-content:hover{
    border-color: #0858cf;
}
.aiz-demos .aiz-demo-content .demo-img-content a{
    display: block;
    position: relative;
}
.aiz-demos .aiz-demo-content .demo-img-content a::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid transparent;
    transition: all .7s;
}
.aiz-demos .aiz-demo-content .demo-img-content a:hover::before{
    border-color: #0858cf;
    background: rgba(0, 0, 0, 0.3);
}
.aiz-demos .aiz-demo-content .demo-img-content a::after{
    position: absolute;
    content: 'Visit';
    top: 50%;
    left: 50%;
    right: 0;
    bottom: 0;
    background: rgba(0, 123, 255, 0.90);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .7s;
    visibility: hidden;
    opacity: 0;
}
.aiz-demos .aiz-demo-content .demo-img-content a:hover::after{
    visibility: visible;
    opacity: 1;
}
.aiz-demos .aiz-demo-content .demo-img-content a img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.aiz-demos .demo-title{
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    color: #313131;
    margin-top: 6px;
}

/* floating button section */
.floating-buttons-section{
    background: transparent;
    height: auto;
    overflow: hidden;
    z-index: 1046;
    position: fixed;
    top: 50%;
    left: 0;
    right: auto;
    padding: 30px;
    transform: translate(0%, -50%);
    transition: all 0.4s;
    overflow: hidden;
}
[dir="rtl"] .floating-buttons-section{
    right: 0;
    left: auto;
}

/* floating button */
.aiz-floating-button{
    margin-bottom: 12px;
    transition: all 0.8s;
}
.floating-buttons-section.show .aiz-floating-button{
    margin-left: 0;
    margin-right: auto;
}
[dir="rtl"] .floating-buttons-section.show .aiz-floating-button{
    margin-right: 0;
    margin-left: auto;
}
.aiz-floating-button a{
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    padding: 0;
    font-size: 16px;
    width: auto;
    height: 50px;
    border-radius: 25px;
    color: #fff;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(105, 105, 105, 0.5);
}
.aiz-floating-button a .circle{
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: var(--primary);
    transition: all 0.8s cubic-bezier(0.65,0,.076,1);
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
    overflow: hidden;
}
.aiz-floating-button a:hover .circle{
    width: 220px;
}
.aiz-floating-button a .circle::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: transparent;
    z-index: 9;
    transition: all 0.7s;
}
.aiz-floating-button a:hover .circle::before{
    background-color: rgb(0 0 0 / 10%);
}
.aiz-floating-button a .circle span{
    width: 50px;
    height: 50px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.aiz-floating-button a .text {
    transition: all 0.7s cubic-bezier(0.65,0,.076,1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 20px;
    margin: 0 0 0 -25rem;
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
}
[dir="rtl"] .aiz-floating-button a .text {
    margin: 0 -25rem 0 0;
}
.aiz-floating-button a:hover .text {
    visibility: visible;
    z-index: 1;
    opacity: 1;
    margin: 0 0 0 1.85rem;
}
[dir="rtl"] .aiz-floating-button a .text > svg{
    transform: rotate(180deg);
}

.error ul li{
    font-size: 12px;
    margin: 0;
}

.footer ul li a.active{
    color:#00a1e1;
}