@font-face {
    font-family: "CaviarDreamsItalic";
    src: url("./fonts/CaviarDreams/CaviarDreams_Italic-webfont.eot");
    src: url("./fonts/CaviarDreams/CaviarDreams_Italic-webfont.eot?#iefix")
            format("embedded-opentype"),
        url("./fonts/CaviarDreams/CaviarDreams_Italic-webfont.woff")
            format("woff"),
        url("./fonts/CaviarDreams/CaviarDreams_Italic-webfont.ttf")
            format("truetype"),
        url("./fonts/CaviarDreams/CaviarDreams_Italic-webfont.svg#CaviarDreamsItalic")
            format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "CaviarDreamsBoldItalic";
    src: url("./fonts/CaviarDreams/CaviarDreams_BoldItalic-webfont.eot");
    src: url("./fonts/CaviarDreams/CaviarDreams_BoldItalic-webfont.eot?#iefix")
            format("embedded-opentype"),
        url("./fonts/CaviarDreams/CaviarDreams_BoldItalic-webfont.woff")
            format("woff"),
        url("./fonts/CaviarDreams/CaviarDreams_BoldItalic-webfont.ttf")
            format("truetype"),
        url("./fonts/CaviarDreams/CaviarDreams_BoldItalic-webfont.svg#CaviarDreamsBoldItalic")
            format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "CaviarDreamsRegular";
    src: url("./fonts/CaviarDreams/CaviarDreams-webfont.eot");
    src: url("./fonts/CaviarDreams/CaviarDreams-webfont.eot?#iefix")
            format("embedded-opentype"),
        url("./fonts/CaviarDreams/CaviarDreams-webfont.woff") format("woff"),
        url("./fonts/CaviarDreams/CaviarDreams-webfont.ttf") format("truetype"),
        url("./fonts/CaviarDreams/CaviarDreams-webfont.svg#CaviarDreamsRegular")
            format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "CaviarDreamsBold";
    src: url("./fonts/CaviarDreams/Caviar_Dreams_Bold-webfont.eot");
    src: url("./fonts/CaviarDreams/Caviar_Dreams_Bold-webfont.eot?#iefix")
            format("embedded-opentype"),
        url("./fonts/CaviarDreams/Caviar_Dreams_Bold-webfont.woff")
            format("woff"),
        url("./fonts/CaviarDreams/Caviar_Dreams_Bold-webfont.ttf")
            format("truetype"),
        url("./fonts/CaviarDreams/Caviar_Dreams_Bold-webfont.svg#CaviarDreamsBold")
            format("svg");
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #fff;
}

body * {
    font-family: "CaviarDreamsRegular";
}

/* navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    background-color: transparent;
    display: flex;
    padding: 0px;
    margin-bottom: 0px;
    z-index: 1000;
    height: 80px;
    border: 0;
    flex-wrap: wrap;
    padding-left: 220px;
}

.logo_item {
    background-color: #e5d0bf;
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    font-size: 22px;
    font-weight: 500;
    width: 220px;
    min-width: 220px;
    height: 80px;
    min-height: 100%;
    margin: 10px 0px 25px 0px;
}

.logo_item img {
    width: 80%;
    margin: 0px auto;
    object-fit: cover;
    border-radius: 50%;
}

.navbar_content {
    display: inline-flex;
    align-items: center;
    column-gap: 25px;
}

.navbar_content i {
    cursor: pointer;
    font-size: 20px;
    color: var(--grey-color);
}

/* sidebar */
.sidebar {
    background-color: #e5d0bf;
    width: 220px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    padding: 0px;
    z-index: 99999;
    /* overflow-y: scroll; */
    box-shadow: 0 0 1px var(--grey-color-light);
    transition: all 0.5s ease;
}

.sidebar.close-sidebar {
    padding: 60px 0;
    width: 0px;
}

.sidebar::-webkit-scrollbar {
    display: none;
}

.menu_content {
    position: relative;
}

/* .menu_title {
  margin: 15px 0;
  padding: 0 20px;
  font-size: 18px;
}

.sidebar.close-sidebar .menu_title {
  padding: 6px 30px;
} */

/* .menu_title::before {
  color: var(--grey-color);
  white-space: nowrap;
} */

.sidebar li.item {
    position: relative;
    padding-bottom: 10px;
}

.sidebar li.item::after {
    position: absolute;
    display: block;
    background-color: #8fa99e;
    content: " ";
    width: 90px;
    height: 8px;
    bottom: 10px;
    left: calc(50% - 45px);
}

.sidebar.close-sidebar .menu_title::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 18px;
    border-radius: 12px;
    background: var(--grey-color-light);
}

.menu_items {
    height: calc(100vh - 110px);
    overflow: auto;
}
.menu_items::-webkit-scrollbar {
    width: 0px;
}

.navlink_icon {
    position: relative;
    font-size: 22px;
    min-width: 50px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 6px;
}

.navlink_icon::before {
    content: "";
    position: absolute;
    height: 100%;
    width: calc(100% + 100px);
    left: -20px;
}

.sidebar .nav_link {
    font-family: "CaviarDreamsBold";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 4px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    white-space: nowrap;
}

.sidebar .nav_link span {
    font-family: "CaviarDreamsBold";
    text-transform: uppercase;
    font-size: 15px;
    width: 120px;
    text-wrap: wrap;
    text-align: center;
}

.sidebar.close-sidebar .navlink {
    display: none;
}

.nav_link:hover {
    color: #fff;
    background: #d2255e;
}

.sidebar.close-sidebar .nav_link:hover {
    background: #fff;
}

/* .submenu_item {
  cursor: pointer;
}

.submenu {
  display: none;
}

.submenu_item .arrow-left {
  position: absolute;
  right: 10px;
  display: inline-block;
  margin-right: auto;
}

.sidebar.close-sidebar .submenu {
  display: none;
} */

/* .show_submenu~.submenu {
  display: block;
}

.show_submenu .arrow-left {
  transform: rotate(90deg);
}

.submenu .sublink {
  padding: 15px 15px 15px 52px;
} */

.bottom_content {
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 260px;
    cursor: pointer;
    transition: all 0.5s ease;
}

/* .bottom {
  position: absolute;
  display: flex;
  align-items: center;
  left: 0;
  justify-content: space-around;
  padding: 18px 0;
  text-align: center;
  width: 100%;
  color: var(--grey-color);
  border-top: 1px solid var(--grey-color-light);
  background-color: #fff;
}

.bottom i {
  font-size: 20px;
}

.bottom span {
  font-size: 18px;
} */

.sidebar.close-sidebar .bottom_content {
    width: 50px;
    left: 15px;
}

.sidebar.close-sidebar .bottom span {
    display: none;
}

.sidebar.hoverable .collapse_sidebar {
    display: none;
}

@media screen and (max-width: 768px) {
    #sidebarOpen {
        font-size: 25px;
        display: block;
        margin-right: 10px;
        cursor: pointer;
        color: var(--grey-color);
    }

    .sidebar.close-sidebar {
        left: -100%;
    }

    .sidebar.close-sidebar .bottom_content {
        left: -100%;
    }

    .last-cmd-details > .last-cmd-detail::after {
        width: 80% !important;
        height: 5px !important;
        bottom: 0;
        top: initial !important;
        left: 10% !important;
    }

    .last-cmd-details > .last-cmd-detail {
        padding-bottom: 10px;
        margin-bottom: 5px;
    }

    .last-cmd-details > .last-cmd-detail:last-child {
        margin-bottom: 0px;
        padding-bottom: 0px;
    }
}

@media screen and (max-width: 700px) {
    .stepper .step .step-desc .title {
        display: none;
    }
    .stepper .step .step-desc .number {
        margin-right: 0px !important;
    }
}

.phone-btn {
    padding: 0px 10px;
    color: #566f64 !important;
    text-decoration: none !important;
    font-family: "CaviarDreamsRegular";
    font-size: 11pt;
    white-space: nowrap;
}

.support-btn {
    font-family: "CaviarDreamsRegular";
    font-size: 11pt;
    border: 3px solid #cfd6c6;
    padding: 2px 20px;
    border-radius: 5px !important;
    text-transform: uppercase;
    color: #566f64 !important;
    text-align: center;
    text-decoration: none !important;
    white-space: nowrap;
}

.support-btn:hover {
    background-color: #cfd6c6;
    color: #ffffff !important;
}

.bag-container {
    position: relative;
    cursor: pointer;
}

.bag-container #total {
    font-size: 10px;
    background-color: #d2255e;
    width: 15px;
    height: 15px;
    border-radius: 50% !important;
    position: absolute;
    display: block;
    text-align: center;
    top: 14px;
    right: 8px;
    color: #fff;
}

.bag-icon {
    width: 20px;
    margin-right: 15px;
}

.user-menu {
    white-space: nowrap;
    height: 100%;
    align-items: center;
    display: flex;
}

.user-menu:hover .user-menu-options {
    display: block;
}

.user-menu-options {
    display: none;
    position: absolute;
    background-color: #eee;
    top: 40px;
    right: 5px;
    z-index: 9999;
}

.user-menu-options::before {
    position: absolute;
    top: -7px;
    right: 9px;
    display: inline-block !important;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #eee;
    border-left: 7px solid transparent;
    border-bottom-color: #eee;
    content: "";
}

.user-menu-options .user-menu-option {
    padding: 5px 15px;
}

.user-menu-options .user-menu-option:hover {
    background-color: #d2255e;
    color: #fff;
}

.user-menu-options .user-menu-option:hover a {
    color: #fff;
}

.user-menu-options .user-menu-option i {
    margin-right: 5px;
}

.user-menu-options .user-menu-option a {
    text-decoration: none;
    color: #000;
}

.divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

.user-menu-name {
    display: flex;
    align-items: center;
    font-size: 16pt;
}

.user-menu-name i.fa-angle-down {
    font-size: 30px;
    margin-right: 10px;
    color: #d2255e;
}

.custom-navbar {
    position: fixed;
    width: calc(100% - 220px);
    background: red;
    height: 88px;
    right: 0;
    z-index: 10;
}

.custom-sidebar {
    position: fixed;
    width: 220px;
    background: #e4cfbf;
    height: 100%;
    left: 0;
}

.custom-navbar-top {
    background-color: #fff;
}

.custom-navbar-bottom {
    background-color: #cfd6c6;
}

.custom-navbar-top,
.custom-navbar-bottom {
    display: flex;
    height: 50%;
    align-items: center;
    padding: 0px 10px;
    width: 100%;
    justify-content: space-between;
}

.fidelite-btn {
    border: 3px solid #d2255e;
    padding: 2px 20px;
    border-radius: 5px !important;
    text-transform: uppercase;
    color: #d2255e;
    text-align: center;
    text-decoration: none !important;
    white-space: nowrap;
}

.fidelite-btn:hover {
    background-color: #d2255e;
    color: #ffffff !important;
}

.fidelite-btn .fidelite-enabled {
}

.fidelite-btn .fidelite-disabled {
}

.sidebar.page-sidebar-wrapper.speed-in {
    left: 0px !important;
}

.carousel {
    /* height: 45vh; */
}

.carousel .carousel-inner {
    height: 100%;
}

.carousel .carousel-inner .item {
    height: 100%;
}

.carousel .carousel-inner .item a {
    height: 100%;
    display: flex;
    align-items: center;
}

.shortcuts {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0px 20px;
    margin: 10px 0px;
    flex-wrap: wrap;
}

.shortcut {
    display: inline-flex;
    padding: 5px 10px;
    margin: 8px 5px;
    background-color: #eaded5;
    text-transform: uppercase;
    font-family: "CaviarDreamsBold";
    font-size: 11pt;
    text-decoration: none !important;
    color: #566f64 !important;
}

.shortcut.promo {
    color: #eaded5 !important;
    background-color: #566f64;
}

.download-offer,
.cmd-btn {
    background-color: #eaded5;
    text-transform: uppercase;
    font-family: "CaviarDreamsBold";
    color: #000 !important;
    margin-bottom: 10px;
    text-wrap: auto;
}

[class^="col-"],
[class*=" col-"] {
    padding: 0px 5px;
}

.d-flex {
    display: flex !important;
    flex-wrap: wrap;
}

.custom-dashboard-stat {
    border: 6px solid #eaded5;
    border-radius: 8px !important;
    padding: 5px 5px 0px 5px;
    margin: 0px 0px 0px 0px;
    height: 100%;
    border-bottom: none;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.dash-stat-title {
    justify-content: center;
    text-align: center;
    font-size: 15pt;
    text-transform: uppercase;
    display: inline-flex;
    width: 100%;
}

.dash-stat-divider {
    width: 44%;
    height: 10px;
    background: #566f64;
    margin: 15px auto;
    display: inline-flex;
}

.dash-stat-value {
    font-family: "CaviarDreamsBold";
    justify-content: center;
    text-align: center;
    font-size: 30pt;
    display: inline-flex;
    width: 100%;
}

.dash-stat-action {
    font-family: "CaviarDreamsBold";
    font-size: 8pt;
    justify-content: center;
    text-align: center;
    background-color: #eaded5;
    color: #000;
    margin: 0px -5px;
    line-height: 25px;
    display: inline-flex;
    width: calc(100% + 20px);
    align-self: flex-end;
}

.last-cmd-title {
    font-family: "CaviarDreamsBold";
    font-size: 15pt;
}

.last-cmd-details {
    padding: 3px 0px;
    background-color: #bbc4ae;
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
}

.last-cmd-detail {
    text-align: center;
    position: relative;
}

.last-cmd-details > .last-cmd-detail::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 80%;
    right: 0;
    background-color: #fff;
    top: 10%;
}

.last-cmd-details > .last-cmd-detail:last-child::after {
    display: none;
}

.last-cmd-detail-title {
    font-size: 13pt;
}

.last-cmd-detail-value {
    font-family: "CaviarDreamsBold";
    font-size: 11pt;
}
.last-cmd-detail-value::first-letter {
    text-transform: uppercase;
}

.custom-btn {
    color: #000;
    background-color: #eaded5;
    border-color: #eaded5;
}

.stepper {
    display: flex;
    align-items: center;
}

.step-container {
    display: inline-flex;
    min-width: 25%;
    width: 100%;
}

.stepper .step {
    height: 60px;
    width: 110%;
    clip-path: polygon(0% 0%, 84% 0%, 100% 50%, 84% 100%, 0% 100%, 16% 50%);
    background: #e5d0bf;
    border: 5px solid #e5d0bf;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stepper .step-container:last-child .step {
    width: 100%;
}

.stepper .step-container:first-child .step.active {
    clip-path: polygon(0% 0%, 84% 0%, 100% 50%, 84% 100%, 0% 100%, 0% 50%);
}

.stepper .step .step-desc {
    height: 55px;
    width: 100%;
    clip-path: polygon(2% 0%, 85% 0%, 100% 50%, 85% 100%, 2% 100%, 17% 50%);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 15% 0px 20%;
}

.stepper .step-container:first-child .step .step-desc {
    padding-left: 0;
}

.stepper .step.active .step-desc {
    clip-path: polygon(0% 0%, 84% 0%, 100% 50%, 84% 100%, 0% 100%, 0% 50%);
    background: #e5d0bf;
}

.stepper .step .step-desc .number {
    display: inline-block;
    font-family: "CaviarDreamsBold";
    font-size: 16pt;
    background-color: #566f64;
    color: #e5d0bf;
    width: 32px;
    height: 32px;
    max-width: 32px;
    min-width: 32px;
    max-height: 32px;
    min-height: 32px;
    text-align: center;
    border-radius: 30px !important;
    line-height: 32px;
    margin-right: 10px;
}

.stepper .step .step-desc .title {
    font-family: "CaviarDreamsBold";
    font-size: 12pt;
    color: #566f64;
}

.dark-green--bg {
    color: #ffffff !important;
    background-color: #566f64;
}

.btn.pink--bg {
    color: #ffffff;
    background-color: #d2255e;
}

.dark-green--text {
    color: #566f64;
}

.pink--text {
    color: #d2255e;
}

.bold {
    font-family: "CaviarDreamsBold";
}

.uppercase {
    text-transform: uppercase;
}

/* HTML: <div class="loader"></div> */
.loader {
    align-self: center;
    color: #d2255e;
    width: 4px;
    height: 4px;
    margin: 30px auto;
    aspect-ratio: 1;
    border-radius: 50% !important;
    box-shadow: 19px 0 0 7px, 38px 0 0 3px, 57px 0 0 0;
    transform: translateX(-38px);
    animation: l21 0.5s infinite alternate linear;
}

@keyframes l21 {
    50% {
        box-shadow: 19px 0 0 3px, 38px 0 0 7px, 57px 0 0 3px;
    }

    100% {
        box-shadow: 19px 0 0 0, 38px 0 0 3px, 57px 0 0 7px;
    }
}

#products-list {
    min-height: calc(100vh - 325px);
}

.justify-content-space-between {
    justify-content: space-between !important;
}

.promo-badge,
.new-badge {
    font-size: 11pt;
    background-color: #566f64;
    color: #e5d0bf;
    text-transform: uppercase;
    padding: 5px 5px;
    letter-spacing: 2px;
}

.man-badge {
    font-family: "CaviarDreamsBold";
    width: 30px;
    height: 30px;
    border-radius: 50% !important;
    line-height: 30px;
    color: #566f64;
    background-color: #def3ff;
}

.woman-badge {
    font-family: "CaviarDreamsBold";
    width: 30px;
    height: 30px;
    border-radius: 50% !important;
    line-height: 30px;
    color: #566f64;
    background-color: #f2e1f0;
}

.mixte-badge {
    font-family: "CaviarDreamsBold";
    width: 30px;
    height: 30px;
    border-radius: 50% !important;
    line-height: 30px;
    color: #566f64;
    background-color: #fde3c4;
}

.child-badge {
    font-family: "CaviarDreamsBold";
    width: 30px;
    height: 30px;
    border-radius: 50% !important;
    line-height: 30px;
    color: #566f64;
    background-color: #d5fed4;
}

.price {
    font-size: 14pt;
    font-family: "CaviarDreamsBold" !important;
    color: red;
}

.price sup {
    font-size: 11pt;
    font-family: "CaviarDreamsBold" !important;
}

.price-crossed-out {
    font-size: 14px;
}

.align-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-space-evenly {
    justify-content: space-evenly !important;
}

.justify-content-space-around {
    justify-content: space-around !important;
}

.qte_cmd {
    width: 55px;
    padding: 0px;
    text-align: center;
    border: 2px solid #cfd5ca;
    height: 30px;
    font-family: "CaviarDreamsBold";
}

.search-container {
    padding: 0px 20px;
}

.pagination-container {
    text-transform: uppercase;
    margin-bottom: 20px;
}

.custom-pagination {
    width: 80px !important;
    margin-left: 15px !important;
    display: inline-block;
}

.custom-pagination button {
    border: 2px solid #8fa99e !important;
}

.search-input {
    width: 100%;
    border-color: #8fa99e !important;
    border-width: 2px !important;
}

.search-input::placeholder {
    font-style: italic;
}

.product-status-container {
    font-size: 11pt;
    font-style: italic;
    text-transform: uppercase;
}

.product-status {
    font-family: "CaviarDreamsBold";
    font-style: normal;
    padding: 3px;
    text-wrap: nowrap;
}

.on-order {
    background-color: #f2ba8c;
}

.breakup {
    background-color: #f40909;
}

.in-stock {
    background-color: #b0daae;
}

.product-image {
    width: 70%;
}

.breakup-reason {
    color: #f40909;
    font-family: "CaviarDreamsBold";
    text-transform: uppercase;
    font-size: 10px;
    margin-top: 5px;
}

.no-data-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20pt;
    flex-direction: column;
}

.no-data-container .fa.fa-search {
    font-size: 40pt;
}

.products-filter {
    position: fixed;
    top: 156px;
    left: 0;
    z-index: 99999;
    background: #e5d0bf;
    width: 220px;
    padding: 10px 10px 10px 20px;
    height: calc(100vh - 145px);
    transition: all 0.5s ease;
}

.filter-container {
    height: calc((100% / 2) - 55px);
    margin-bottom: 10px;
}

.type-filter-container {
    height: 90px;
}

.filter-title {
    font-family: "CaviarDreamsBold";
    font-size: 14pt;
    text-transform: uppercase;
}

.filter-content {
    height: calc(100% - 27px);
    overflow: hidden auto;
    /* min-height: 100%; */
}

.filter-option-name {
    width: calc(100% - 30px);
    margin-left: 15px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.filter-content::-webkit-scrollbar {
    width: 15px;
    border: 2px solid #000;
}

.filter-content::-webkit-scrollbar-thumb {
    background-color: #566f64;
    border-radius: 0px;
}

.filter-content::-webkit-scrollbar-track {
    background-color: transparent;
}

.flex-no-wrap {
    flex-wrap: nowrap !important;
}

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

.icon-loader-search-container {
    position: absolute;
    right: 10px;
    top: calc(50% - 10px);
}

.loader-search {
    position: relative;
    height: 20px;
    width: 20px;
    display: inline-block;
    animation: around 5.4s infinite;
}

@keyframes around {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-search::after,
.loader-search::before {
    content: "";
    background: white;
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 100%;
    border-width: 2px;
    border-color: #8fa99e #8fa99e transparent transparent;
    border-style: solid;
    border-radius: 20px;
    box-sizing: border-box;
    top: 0;
    left: 0;
    animation: around 0.7s ease-in-out infinite;
}

.loader-search::after {
    animation: around 0.7s ease-in-out 0.1s infinite;
    background: transparent;
}

.custom-checkbox-wrapper {
    box-sizing: border-box;
    --checkbox-height: 20px;
    height: 20px;
}

@-moz-keyframes dothabottomcheck {
    0% {
        height: 0;
    }

    100% {
        height: calc(var(--checkbox-height) / 2);
    }
}

@-webkit-keyframes dothabottomcheck {
    0% {
        height: 0;
    }

    100% {
        height: calc(var(--checkbox-height) / 2);
    }
}

@keyframes dothabottomcheck {
    0% {
        height: 0;
    }

    100% {
        height: calc(var(--checkbox-height) / 2);
    }
}

@keyframes dothatopcheck {
    0% {
        height: 0;
    }

    50% {
        height: 0;
    }

    100% {
        height: calc(var(--checkbox-height) * 1.2);
    }
}

@-webkit-keyframes dothatopcheck {
    0% {
        height: 0;
    }

    50% {
        height: 0;
    }

    100% {
        height: calc(var(--checkbox-height) * 1.2);
    }
}

@-moz-keyframes dothatopcheck {
    0% {
        height: 0;
    }

    50% {
        height: 0;
    }

    100% {
        height: calc(var(--checkbox-height) * 1.2);
    }
}

.custom-checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.custom-checkbox-wrapper .check-box {
    height: var(--checkbox-height);
    width: var(--checkbox-height);
    background-color: transparent;
    border: calc(var(--checkbox-height) * 0.1) solid #000;
    border-radius: 5px;
    position: relative;
    display: inline-block;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: border-color ease 0.2s;
    -o-transition: border-color ease 0.2s;
    -webkit-transition: border-color ease 0.2s;
    transition: border-color ease 0.2s;
    cursor: pointer;
}

.custom-checkbox-wrapper .check-box::before,
.custom-checkbox-wrapper .check-box::after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    height: 0;
    width: calc(var(--checkbox-height) * 0.2);
    background-color: #d2255e;
    display: inline-block;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    border-radius: 5px;
    content: " ";
    -webkit-transition: opacity ease 0.5;
    -moz-transition: opacity ease 0.5;
    transition: opacity ease 0.5;
}

.custom-checkbox-wrapper .check-box::before {
    top: calc(var(--checkbox-height) * 0.72);
    left: calc(var(--checkbox-height) * 0.41);
    box-shadow: 0 0 0 calc(var(--checkbox-height) * 0.05)
        var(--background-color);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.custom-checkbox-wrapper .check-box::after {
    top: calc(var(--checkbox-height) * 0.37);
    left: calc(var(--checkbox-height) * 0.05);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.custom-checkbox-wrapper input[type="checkbox"]:checked + .check-box,
.custom-checkbox-wrapper .check-box.checked {
    border-color: #000;
}

.custom-checkbox-wrapper input[type="checkbox"]:checked + .check-box::after,
.custom-checkbox-wrapper .check-box.checked::after {
    height: calc(var(--checkbox-height) / 2);
    -moz-animation: dothabottomcheck 0.2s ease 0s forwards;
    -o-animation: dothabottomcheck 0.2s ease 0s forwards;
    -webkit-animation: dothabottomcheck 0.2s ease 0s forwards;
    animation: dothabottomcheck 0.2s ease 0s forwards;
}

.custom-checkbox-wrapper input[type="checkbox"]:checked + .check-box::before,
.custom-checkbox-wrapper .check-box.checked::before {
    height: calc(var(--checkbox-height) * 1.2);
    -moz-animation: dothatopcheck 0.4s ease 0s forwards;
    -o-animation: dothatopcheck 0.4s ease 0s forwards;
    -webkit-animation: dothatopcheck 0.4s ease 0s forwards;
    animation: dothatopcheck 0.4s ease 0s forwards;
}

.modal-backdrop {
    z-index: 99999 !important;
}
.modal-scrollable {
    z-index: 100000 !important;
}

#pagination .pagination > .active > a {
    background-color: #d2255e;
    border-color: #d2255e;
    color: #ffffff;
}

#pagination .pagination > li > a,
#pagination .pagination > li > span {
    color: #566f64;
}

#loader-container {
    height: 100%;
    top: 0;
    position: fixed;
    width: calc(100% - 220px);
    display: flex;
    background-color: #00000080;
    z-index: 999;
}
#shadow-filter {
    display: none;
    height: 100%;
    top: 0;
    position: fixed;
    width: 100%;
    background-color: #00000080;
    z-index: 9999;
}
#shadow-filter.is-visible {
    display: block;
}
#filter-toggle {
    display: none;
    position: absolute;
    cursor: pointer;
    right: -40px;
    top: 10px;
    background-color: #e5d0bf;
    font-size: 25px;
    padding: 5px 10px;
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}
#cd-toggle-menu {
    display: none;
    position: absolute;
    cursor: pointer;
    right: -40px;
    top: 155px;
    background-color: #e5d0bf;
    color: #000;
    font-size: 25px;
    padding: 5px 10px;
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}
@media (max-width: 992px) {
    .products-filter {
        left: -220px;
    }
    .products-filter.filter-opened {
        left: 0;
    }
    #cd-toggle-menu,
    #filter-toggle {
        display: block;
    }
    #loader-container {
        width: 100%;
    }
    .table-scrollable .table td {
        max-width: 50%;
    }
}
.modal {
    left: 25%;
}
.warn-me {
    margin-left: 5px;
}
.warn-me img {
    width: 50px;
}
.container-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.support-text-xs {
    display: none;
}
.phone-text-xs {
    display: none;
}

@media (max-width: 570px) {
    .support-text-xs {
        display: block !important;
    }
    .phone-text-xs {
        display: block !important;
    }
    .support-text {
        display: none !important;
    }
    .phone-text {
        display: none !important;
    }
    .phone-btn {
        border: 3px solid #cfd6c6;
        padding: 2px 10px;
        border-radius: 5px !important;
    }
    .support-btn {
        padding: 2px 10px;
        margin-right: 5px;
    }
    .user-menu-name {
        font-size: 13pt;
    }
}
.overflow-x-auto {
    overflow-x: auto !important;
}
#modalDestinataires {
    left: calc(4vw / 2);
    min-width: auto;
    max-width: 100%;
    margin: 0px !important;
    top: 15%;
    width: 96vw !important;
    border-radius: 8px !important;
}
#modalDestinataires > .modal-body {
    border: 8px solid #eaded5;
    padding: 15px 10px;
}
@media (min-width: 768px) {
    #modalDestinataires {
        left: calc(30vw / 2);
        min-width: auto;
        max-width: 100%;
        margin: 0px !important;
        top: 15%;
        width: 70vw !important;
    }
    #modalDestinataires > .modal-body {
        padding: 15px 40px;
    }
}
@media (min-width: 949px) {
    #modalDestinataires {
        left: calc(40vw / 2);
        min-width: auto;
        max-width: 100%;
        margin: 0px !important;
        top: 15%;
        width: 60vw !important;
    }
    #modalDestinataires > .modal-body {
        padding: 15px 40px;
    }
}
@media (min-width: 1200px) {
    #modalDestinataires {
        left: calc(50vw / 2);
        min-width: auto;
        max-width: 100%;
        margin: 0px !important;
        top: 15%;
        width: 50vw !important;
    }
    #modalDestinataires > .modal-body {
        padding: 15px 40px;
    }
}
