* {
    font-family: 'Raleway', sans-serif;
    font-variant-numeric: lining-nums;
}

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

input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}

:root {
    --border-radius: .75rem;
    --bg-glass-values: 255, 255, 255;
    --bg-glass: rgba(var(--bg-glass-values), .1);
    --bg-glass-2: rgba(var(--bg-glass-values), .2);
    --bg-glass-3: rgba(var(--bg-glass-values), .3);
    --bg-glass-4: rgba(var(--bg-glass-values), .4);
    --bg-glass-5: rgba(var(--bg-glass-values), .5);
    --bg-light-dark: #f0f1f2;

    --c-darkviolet: #6c7588;
    --c-orange: #ff7f50;
    --c-ocean: #6495ed;
    --c-violet: #9400d3;
    --c-red: #ed143d;
    --c-salat: #3cb371;
}

.bg-light-dark {
    background: var(--bg-light-dark);
}


.focus-0:focus,
.focus-0 *:focus {
    box-shadow: none;
    border-color: #989898;
}

.text-h-decoration-underline-dark {
    transition: all 150ms ease-in-out;
    text-decoration-color: transparent;
}

.text-h-decoration-underline-dark:hover {
    text-decoration-color: var(--bs-dark);
}

.blur-1 {
    backdrop-filter: blur(1px);
}

.blur-2 {
    backdrop-filter: blur(2px);
}

.blur-3 {
    backdrop-filter: blur(3px);
}

.blur-4 {
    backdrop-filter: blur(4px);
}

.blur-5 {
    backdrop-filter: blur(5px);
}

.bg-glassed {
    background: var(--bg-glass);
}

.bg-glassed-2 {
    background: var(--bg-glass-2);
}

.bg-glassed-3 {
    background: var(--bg-glass-3);
}

.bg-glassed-4 {
    background: var(--bg-glass-4);
}

.bg-glassed-5 {
    background: var(--bg-glass-5);
}

.bg-glassed .form-control,
.bg-glassed .form-select {
    color: white;
    background-color: var(--bg-glass);
    border: none;
    transition: all 150ms ease-in-out;
}

.bg-glassed .form-control::placeholder,
.bg-glassed .form-select::placeholder {
    color: var(--bg-glass-5);
}

.bg-glassed .form-control:focus,
.bg-glassed .form-select:focus {
    background-color: var(--bg-glass-3);
    border-color: rgba(255, 255, 255, 0.75);
    box-shadow: none;
}

.bg-glassed .form-control::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.bg-glassed button.dropdown-toggle {
    color: white !important;
    background-color: var(--bg-glass-3);
    border: 0;
}

.bg-glassed button.dropdown-toggle:focus,
.bg-glassed button.dropdown-toggle:hover {
    color: white;
    background-color: var(--bg-glass-4);
    border: 0;
}

.bg-glassed .dropdown-menu {
    color: white;
    background: rgb(97 96 121);
    border-color: var(--bg-glass-2) !important;
}

.bg-glassed .dropdown-menu.inner {
    background: transparent !important;
}

.bg-glassed .dropdown-item {
    color: white;
}

.bg-glassed .dropdown-item.active {
    text-decoration: none;
    background-color: var(--bg-glass-3);
}

.bg-glassed .dropdown-item:focus {
    text-decoration: none;
    background-color: var(--bg-glass);
}

.bg-glassed .dropdown-menu .inner.show::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: transparent;
}

.bg-glassed .dropdown-menu .inner.show::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: var(--bg-glass);
}

.bg-glassed .dropdown-menu .inner.show::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--bg-glass-5);
}

.rounded-xl {
    border-radius: var(--border-radius);
}

.rounded-top-0 {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.rounded-end-0 {
    border-start-end-radius: 0;
    border-end-end-radius: 0;
}

.rounded-bottom-0 {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.rounded-start-0 {
    border-start-end-radius: 0;
    border-start-start-radius: 0;
}

textarea::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: transparent;
}

textarea::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: var(--bg-glass);
}

textarea::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--bg-glass-5);
}

.scroll-light {
    overflow: auto;
    margin-right: 1px !important;
}

/*.scroll-light.container-custom-mx-h {*/
/*    margin: calc(var(--menu-items-size) / 2);*/
/*    padding-right: 6px !important;*/
/*    margin-right: 6px;*/
/*    overflow-x: hidden;*/
/*}*/
.scroll-light.flex-nowrap {
    padding-right: 0 !important;
}


.scroll-light::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: transparent;
}

.scroll-light::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: var(--bg-light-dark);
}

.scroll-light::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: white;
}

.scroll-dark {
    overflow: overlay;
    padding-right: 8px !important;
}

.scroll-dark.container-custom-mx-h {
    padding-right: 6px !important;
    margin-right: -14px;
}

.scroll-dark.flex-nowrap {
    padding-right: 0 !important;
}

.scroll-dark::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: transparent;
}

.scroll-dark::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #c0c0c0;
}

.scroll-dark::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #d9d9d945;
}

.container-main {
    overflow: hidden;
}


.dataTables_scrollBody.scroll-light,
.dataTables_scrollBody.scroll-dark {
    overflow: overlay !important;
    padding-right: 0 !important;
}

.scroll-ghost {
    overflow: auto;
}

.scroll-ghost::-webkit-scrollbar {
    width: 0;
    height: 0;
    background-color: transparent;
}

.dataTables_wrapper thead th {
    padding-right: 8px !important;
}

.scroll-light::-webkit-scrollbar-corner,
.scroll-dark::-webkit-scrollbar-corner,
.scroll-ghost::-webkit-scrollbar-corner {
    background-color: transparent;
}

body.scroll-light,
body.scroll-dark {
    padding-right: 0 !important;
}

body.scroll-light::-webkit-scrollbar,
body.scroll-dark::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.cart__image {
    aspect-ratio: 1;
    height: inherit;
    object-fit: cover;
}

.category__image {
    aspect-ratio: 1;
    object-fit: cover;
}

.table-rounded table {
    border-radius: var(--border-radius);
}


thead.bg-glassed th {
    background: var(--bg-glass);
}

.table-rounded .dataTables_scrollHead table {
    border-radius: 0;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.table-rounded .dataTables_scrollBody table {
    border-radius: 0;
}

.table-rounded .dataTables_scrollBody {
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.table-rounded thead tr:first-child th:first-child {
    border-top-left-radius: var(--border-radius);
}

.table-rounded thead tr:last-child th:first-child {
    border-bottom-left-radius: var(--border-radius);
}

.table-rounded thead tr:first-child th:last-child {
    border-top-right-radius: var(--border-radius);
}

.table-rounded thead tr:last-child th:last-child {
    border-bottom-right-radius: var(--border-radius);
}

.table-nowrap {
    white-space: nowrap !important;
}

.table-nowrap td, .table-nowrap th {
    vertical-align: middle;
}

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

.product-specs-table td:nth-child(2) {
    padding-right: 1rem;
    font-weight: 600;
}

.input-group .iti {
    flex: auto;
}

.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-ellipsis.text-ellipsis-25,
.text-md-ellipsis.text-ellipsis-25 {
    width: 25%;
}

.text-ellipsis.text-ellipsis-50,
.text-md-ellipsis.text-ellipsis-50 {
    width: 50%;
}

.text-ellipsis.text-ellipsis-75,
.text-md-ellipsis.text-ellipsis-75 {
    width: 75%;
}

.text-ellipsis.text-ellipsis-100,
.text-md-ellipsis.text-ellipsis-100 {
    width: 100%;
}

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

.text-vertical-ellipsis-2 {
    -webkit-line-clamp: 2 !important;
}

.text-vertical-ellipsis-3 {
    -webkit-line-clamp: 3 !important;
}

.opacity-h-100 {
    transition: all 150ms ease-in-out;
}

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

.row-m-reverse > * {
    margin-bottom: var(--bs-gutter-y);
    margin-top: 0;
}

.extend-after-load {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 500ms ease-in-out;
}

.extend-after-load.loaded {
    max-height: 1000px;
    overflow: auto;
    opacity: 100%;
}

@keyframes animate-cascade-fade-scale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
    }
}

@keyframes animate-cascade-fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


.shadow-h {
    transition: box-shadow 150ms ease-in-out,
    transform 150ms ease-in-out;
}

.shadow-h:hover {
    box-shadow: 0 10px 25px -15px rgb(0 0 0 / 20%);
    transform: scale(1.05);
}

._brand div {
    background-color: white;
    color: var(--bs-gray);
    transition: all 150ms ease-in-out;
}

._brand.active div {
    background-color: var(--bs-gray);
    color: white;
}

.c-pointer {
    cursor: pointer;
}

.product_display_grid img,
.h-grow-shadow {
    aspect-ratio: 1;
    object-fit: contain;
    transition: all 150ms ease-in-out;
}

.product_display_grid img:hover,
.h-grow-shadow:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 25px -20px rgb(0 0 0 / 15%);
}

.brand-image {
    min-height: 5rem;
    max-height: 5rem;
}

.dropdown-rounded .dropdown-item {
    padding: 0.375rem 0.75rem;
    transition: all 150ms ease-in-out;
    border-radius: .25rem;
}

.dropdown-rounded .dropdown-item.active,
.dropdown-rounded .dropdown-item:active {
    background-color: var(--bs-dark);
}


.dropdown-rounded .dropdown-menu {
    padding: .25rem;
    min-width: auto;
    left: -8%;
}


.fl-slider {
    position: relative;
    scroll-behavior: smooth;
}

.fl-slider-control {
    cursor: pointer;
    z-index: 2;
    position: absolute;
    margin-top: auto;
    margin-bottom: auto;
    text-align: center;
    top: 20%;
    height: 50%;
    vertical-align: middle;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 150ms ease-in-out;
}

.fl-slider:hover .fl-slider-control {
    opacity: 0.5;
}

.fl-slider:hover .fl-slider-control:hover {
    opacity: 1;
}

.fl-slider-control i {
    background: white;
    padding: 0.3rem 0.7rem;
    border-radius: 50%;
}

.fl-slider-left {
    left: 5px;
    vertical-align: middle;
}

.fl-slider-right {
    right: 5px;
}

.fancy-carousel .fancy-carousel-main {
    --carousel-button-color: #170724;
    --carousel-button-bg: white;
    --carousel-button-shadow: 0 2px 1px -1px rgb(0 0 0 / 20%),
    0 1px 1px 0 rgb(0 0 0 / 14%), 0 1px 3px 0 rgb(0 0 0 / 12%);

    --carousel-button-svg-width: 20px;
    --carousel-button-svg-height: 20px;
    --carousel-button-svg-stroke-width: 2.5;
}

.fancy-carousel .fancy-carousel-main .carousel__slide {
    width: 100%;
    padding: 0;
    border-radius: var(--border-radius);
}

.fancy-carousel .fancy-carousel-main .carousel__button {
    transition: all 150ms ease-in-out;
    box-shadow: none;
    opacity: 0;
}

.fancy-carousel .fancy-carousel-main:hover .carousel__button {
    opacity: 70%;
}

.fancy-carousel .fancy-carousel-main .carousel__button:hover {
    opacity: 100%;
}

.fancy-carousel .fancy-carousel-main .carousel__button.is-prev {
    left: 10px;
}

.fancy-carousel .fancy-carousel-main .carousel__button.is-next {
    right: 10px;
}

.fancy-carousel .fancy-carousel-thumb .carousel__slide {
    opacity: 0.5;
    padding: 0;
    margin: 0.25rem;
    width: 96px;
    height: 64px;
}

.fancy-carousel .fancy-carousel-thumb .carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.fancy-carousel .fancy-carousel-thumb .carousel__slide.is-nav-selected {
    opacity: 1;
}

._cart_product ._cart_remove {
    transition: all 150ms ease-in-out;
}

._cart_product:hover ._cart_remove {
    opacity: .5;
}

._cart_product ._cart_remove:hover {
    opacity: 1;
}

/*fix safari buttons*/
.btn {
    -webkit-appearance: none;
}

.box-shadow-danger:focus {
    box-shadow: 0 6px 12px rgb(246 55 81 / 25%) !important;
}

.box-shadow-dark:focus {
    box-shadow: 0 6px 12px rgba(69, 68, 84, 0.25) !important;
}

.bi {
    vertical-align: middle;
}

.product_main_section img {
    object-fit: contain;
    aspect-ratio: 1;
}


.similar-products-modal-content .modal-body  {
    overflow-y: auto;
    max-height: 516px;
    -webkit-overflow-scrolling: touch;
}

.scroll-arrow {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: #555;
    display: none;
    cursor: pointer;
    z-index: 10;
}

.down_slider {
    font-size: 2rem!important;
}

.scroll-arrow.visible {
    display: block;
}

.similar-products-modal-content .modal-body::-webkit-scrollbar {
    display: block;
    width: 15px;
}

.similar-products-modal-content .modal-body::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

.similar-products-modal-content .modal-body::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

@media (min-width: 768px) and (max-width: 1200px) {
    .similar-products-modal-dialog {
        min-width: 70vw;
    }
}

@media (min-width: 1201px) {
    .similar-products-modal-dialog {
        min-width: 70vw;
    }
}

@media (min-width: 768px) {
    .text-md-vertical-ellipsis {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        overflow-wrap: anywhere;
    }

    .text-md-ellipsis {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .animate-cascade {
        animation-duration: 250ms;
        animation-delay: calc(var(--animation-order) * 50ms);
        animation-fill-mode: both;
        animation-timing-function: ease-in-out;
    }

    .animate-cascade-fade-scale {
        animation-name: animate-cascade-fade-scale;
    }

    .animate-cascade-fade {
        animation-name: animate-cascade-fade;
    }

    .fl-slider .fl-slider-content {
        overflow: hidden;
    }

    ._cart_product ._cart_remove {
        opacity: 0;
    }
}

.container-header > nav {
    box-shadow: 0 6px 12px rgba(53, 58, 64, 0.25);
}

.dropdown-menu .show {
    background: black;
}

@media (max-width: 767.98px) {
    :root {
        --bs-body-font-size: .8rem;
    }

    .c {
        padding-bottom: 52px;
    }


    .header_home {
        width: 100%;
    }

    nav .header-toolbar {
        display: none;
    }

    .dropdown-rounded .dropdown-menu {
        top: unset;
        bottom: 115%;
    }

    .text-vertical-ellipsis-2 {
        -webkit-line-clamp: unset;
    }

    .text-vertical-ellipsis-3 {
        -webkit-line-clamp: unset;
    }

    .fl-slider-control {
        display: none;
    }

    ._cart_product ._cart_remove {
        opacity: .5;
    }
}

.generated_company_cards:empty {
    grid-area: generated_company_cards;
    display: none
}


.form-control:focus, .form-select:focus,
.form-control *:focus {
    box-shadow: none;
    border-color: #989898;
}

.form-check-input:checked {
    background-color: black;
    border-color: black;
}

.form-check-input:focus {
    box-shadow: none;
    border-color: #989898;
}

.table, table tr, tbody {
    border-radius: 15px;
}

/* top-left border-radius */
.table tr:first-child th:first-child {
    border-top-left-radius: 15px;
}

/* top-right border-radius */
.table tr:first-child th:last-child {
    border-top-right-radius: 15px;
}

/* bottom-left border-radius */
.table tr:last-child td:first-child {
    border-bottom-left-radius: 15px;
}

/* bottom-right border-radius */
.table tr:last-child td:last-child {
    border-bottom-right-radius: 15px;
}

.table tr:last-child td {
    border-bottom: 0;
}

body {
    margin: 0;
    padding: 20px;
    font-family: sans-serif;
    overflow-y: scroll;
}

* {
    box-sizing: border-box;
}

.table > :not(:first-child) {
    border-top: 0px;
}

.order-table {
    width: 100%;
    border-collapse: collapse;
}


.order-table td, .order-table th {
    padding: 12px 15px;
    /*border:1px solid #ddd;*/
    text-align: center;
    font-size: 16px;
}

.order-table tbody tr:nth-child(even) {
    background-color: #f5f5f5;
}

/*responsive*/

@media (max-width: 800px) {
    .order-table thead {
        display: none;
    }

    .order-table, .order-table tbody, .order-table tr, .order-table td {
        display: block;
        width: 100%;
    }

    .order-table tr {
        margin-bottom: 15px;
    }

    .order-table td {
        text-align: right;
        padding-left: 50%;
        text-align: right;
        position: relative;
    }

    .order-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 15px;
        font-size: 15px;
        font-weight: bold;
        text-align: left;
    }

    .order-table tr:last-child td {
        border-bottom: 1px;
    }

    tbody {
        padding-top: 15px;
    }

    td {
        border-top: 1px;
        border-style: none;
    }

    .table-hover {
        --bs-table-hover-color: none !important;
        --bs-table-hover-bg: none !important;
    }
}

/* search */

.box {
    position: relative;
}

.input_search {
    padding: 10px;
    width: 35px;
    height: 35px;
    background: none;
    border: 1px solid #9c0808;
    border-radius: 10px;
    box-sizing: border-box;
    color: #9c0808;
    outline: none;
    transition: .5s;
}


.show-input-search {
    width: 350px;
    background: rgba(39, 33, 51, 0.11);
    border-radius: 10px;
    color: #9c0808;
}

.hide-bi-search {
    opacity: 0;
    z-index: 10;
}


.bi-search {
    position: absolute;
    top: 52%;
    left: 19px;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #9c0808;
    transition: .2s;
}

.quantity_counter {
    padding: 0px 0px;
}

.quantity_counter__decrement {
    border: none;
    justify-content: center;
    box-shadow: none !important;
    padding: 4px 4px !important;
    margin-left: 0px !important;
    background: #f0f1f2 !important;
    cursor: pointer !important;
}

.quantity_counter__input {
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    border: none;
    text-align: center !important;
    padding: 1px 1px !important;
}

.quantity_counter__increment {
    border: none;
    justify-content: center !important;
    box-shadow: none !important;
    padding: 4px 4px !important;
    margin-right: 0px !important;
    background: #f0f1f2 !important;
    cursor: pointer !important;
}

.quantity_counter__increment:active {
    background: #c4c5c5 !important;
}

.quantity_counter__decrement:active {
    background: #c4c5c5 !important;
}


.quantity_counter__submit {
    font-weight: 500 !important;
    font-size: 12px !important;
    line-height: 14px;
    justify-content: center !important;
    padding: 5px 5px !important;
}


@-webkit-keyframes marquee {
    0% {
        -webkit-transform: translate(0, 0);
    }
    100% {
        -webkit-transform: translate(-100%, 0);
    }
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0)
    }
}

.btn-close {
    box-shadow: none !important;
}


.pagination > li > a {
    background-color: white;
    color: black;
    font-weight: 500;
}

.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
    color: #5a5a5a;
    background-color: #eee;
    border-color: #ddd;
    box-shadow: none !important;
}

.pagination > .active > a {
    color: white;
    background-color: black !Important;
    border: solid 1px black !Important;
}

.pagination > .active > a:hover {
    background-color: black !Important;
    border: solid 1px black;
}


@media (min-width: 992px) {
    .col-1_5-lg {
        width: 12.499999995% !important;
        flex: 0 0 12.499% !important;
        max-width: 12.499% !important;
    }
}


.material-icons-outlined {
    vertical-align: middle !important;
    font-size: 18px !important;
    height: 18px;
}


/* loader */
.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0%;
}

.loader > div {
    width: 20px;
    height: 20px;
    background: #828282;
    border-radius: 50%;
    margin: 3px;
    animation: loader 0.6s infinite alternate;
}

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

.loader > div:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loader {
    to {
        opacity: 0.1;
        transform: translate(0, -20px);
        background: #c8c8c8;
    }
}


/* tooltip */

/* Change the opacity of the rectangular part of Tooltips/Hotspots */
.tooltip-ex .content .panel {
    opacity: .8;
}

/* Change the opacity of the Tooltip/Hotspot pointer */
.tooltip-ex .content.content-bottom .panel:before, .tooltip-ex .content.content-bottom .panel:after {
    opacity: .9;
    box-shadow: none;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.container {
    padding: 0px;
}


.blured_background {
    --bs-bg-opacity: 0.8;
    backdrop-filter: blur(3px);
}

.navbarOffsetMargin {
    padding-top: 76px;
}

.transparent {
    color: #FFF;
    mix-blend-mode: multiply;
    display: inline-block;
}

.ck-content img {
    object-fit: contain;
    padding: 0.5rem;
    border-radius: 1em;
}


.product_day__old_price {
    text-decoration: line-through;
}

.bottom_navbar {
    display: none;
}
.scroll_top__button {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    color: #9c0808;
    cursor: pointer;
}

.arrow_up__icon:before {
    border-radius: 50%;
    background-color: rgba(var(--bs-white-rgb), 0.5)!important;
    backdrop-filter: blur(3px);
}

@media (max-width: 767.98px) {
    .bottom_navbar {
        display: block;
        background: white;
        position: fixed;
        z-index: 100;
        bottom: 0;
        width: 100%;
        padding: 0.5rem;
        border-radius: 0.7rem 0.7rem 0rem 0rem;
        box-shadow: 0 10px 25px 0px rgb(0 0 0 / 30%);
        overflow: visible;
        height: 50px;
    }

    .product_display_list .product_badge {
        width: 95px;
        height: 23px;
        max-width: inherit;
    }

    .product_display_list .product_badge h6 {
        font-size: 1em !important;
    }

    .scroll_top__button {
        bottom: 65px;
    }
}

.product_badge {
    position: absolute;
    left: 0;
    top: 0;
    border-start-end-radius: 0;
    border-end-start-radius: 0;
    width: 120px;
    height: 40px;
}


.profile-info span {
    font-size: 0.85em;
}


.css-card {
    margin: 10px 0 10px 0;
    transition: 0.3s;
    border-radius: 0.5em;
    height: max-content;
}

.css-card img {
    border-top-left-radius: 0.5em;
    border-top-right-radius: 0.5em;
    height: 12em;
    object-fit: cover;
}

.css-card:hover {
    transform: scale(1.02);
}

.css-card-body .is_file {
    min-height: 8em;
    height: auto;
}

.css-card-title {
    min-height: 4em;
    height:auto;
    font-size:1.14em;
}
.css-card .btn-outline-dark {
    box-shadow: none;
}

.nav-pills {
    border-bottom: solid 1px;
}

.nav-pills .nav-link {
    color: black;
    border-radius: 0px;
}

.nav-pills .nav-link.active{
    background: black;
}


.text_unselectable {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}

#order_check__table thead tr th{
    text-align: center;
}

#order_check__table tbody tr td:nth-child(n+2){
    text-align: end;
}


#order_check__table {
    /*background-color: #E2E8F0!important;*/
    --bs-table-bg: #E2E8F0!important;
    opacity: 0;
}

.orders_range__input{
    border-radius: 6px!important;
    min-width: 250px;
}

.order_check__header {
    background-color: #EDF2F7;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    opacity: 0;
    display: none;
}

.orders_range__date {
    border-top-left-radius: 5px!important;
    border-bottom-left-radius:5px!important;
}

.route-card {
    transition: all .3s ease-in-out;
}

.route-card:hover {
    border:1px solid #9c0808!important;
    transition: all .3s ease-in-out;
}

.conteiner_video {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 40px auto 20px;
}

.description_video {
  width: 100%;
  max-width: 600px;
  height: 337.5px;
}

.close__modal {
    border: none;
    background-color: transparent;
}

.form-check-input[type=checkbox] {
    width: 1.5em;
    height: 1.5em;
}

.select2-container--default .select2-selection--single {
    box-shadow: none;
    border: 1px solid #ced4da;
    border-radius: 4px;
    height: 36px;
    align-content: center;
}

.preorder_item {
    background-color: #eceed0!important;
}

.order_preorder_button {
    border-color: transparent;
}

.custom_arrow {
  border: solid black;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 4px;
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.order_preorder_button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin: 5px;
}

.select2-container--default .select2-selection--single {
    box-shadow: none;
    border: 1px solid #ced4da;
    border-radius: 4px;
    height: 36px;
    align-content: center;
}

.order_filters {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 16px;
    margin: 10px;
}

.order_filters .select2-container .select2-selection--single {
    height: 38px;
}

.select2-selection__arrow {
    margin-top: 5px;
}

@media (min-width: 768px) {
    .order_header_button {
        max-height: 38px
    }
}

.few_color {
    color:  #c34870!important;
}

.not_available_color {
    color: #f80d0d!important;
}

.a_lot_color {
    color: #008000!important;
}

.not_much_color {
    color: #ffa500!important;
}

.too_small_color {
    color: #A6083D!important;
}

.bi-plus,
.bi-dash {
    margin-bottom: 2px;
}

.bi-cart,
.bi-cart-plus {
    margin-bottom: 2px;
}

.order__table .tabs__content .tab__item {
    overflow: auto;
}

.storekeeper__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    width: 100%;
}
.storekeeper__item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    background: #ECF2F5;
    border-radius: 8px;
    width: 100%;
    transition: 0.3s;
}
.storekeeper__item:hover {
    box-shadow: 0 0 0 1px #1C6986;
}
.storekeeper__item img {
    height: 64px;
    width: 64px;
    margin-right: 6px;
}
.storekeeper__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

}
.storekeeper__info .storekeeper__name {
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    color: #1C4360;
}
.storekeeper__info .storekeeper__orders {
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    color: #1C4360;
    margin: 10px 0;
}
.storekeeper__info .storekeeper__orders span {
    font-size: 18px;
    font-weight: 800;
    transition: 0.3s;
}
.storekeeper__info:hover .storekeeper__orders span {
    color: #1C6986;
}
.storekeeper__info .storekeeper__orders_today {
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    color: #1C4360;
}
.storekeeper__info .storekeeper__orders_today span {
    font-size: 18px;
    font-weight: 800;
    transition: 0.3s;
}
.storekeeper__info:hover  .storekeeper__orders_today span {
    color: #1C6986;
}
.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-row-gap: 12px;
    height: 100%;
    padding: 16px 32px;
    background: #FFFFFF;
    border-radius: 8px;
    transition: 0.3s;
}

.order__image{
    width: 100%;
    height: 100%;
    max-height: 150px;
}

.rating:hover  {
    box-shadow: inset rgb(28, 105, 134) 0px 0px 0px 1px;
    color: rgb(28, 105, 134);
}
.rating:hover .average__mark {
    color: rgb(28, 105, 134);
}
.rating .rating__group {
    display: flex;
    align-items: center;
    grid-column-gap: 24px;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: #1C4360;
    text-align: center;
    transition: 0.3s;
}
.rating:hover .rating__group {
    color: rgb(28, 105, 134);
}
.rating .average__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    font-weight: 800;
    line-height: 54px;
    color: #1C4360;
    border-radius: 8px;
    transition: 0.3s;
}
.rating .rating__images {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.rating .rating__image {
    display: flex;
    width: 56px;
    height: 56px;
}
.rating.average__rating {
    background: #ECF2F5;
    grid-column-gap: 24px;
}

.table>:not(caption)>*>* {
    padding: 0.75rem 0.75rem;
}
.order__tables {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}
.order__table {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    /*overflow: hidden;*/
}
.order__table .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: #1c1c1b;
    margin-bottom: 24px;
}
.order__table .table__header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    width: 100%;
    margin-bottom: 24px;
}
.order__table .table__groups {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    grid-column-gap: 16px;
    margin-bottom: 24px;
}
.search__group {
    position: relative;
    max-width: 400px;
    width: 100%;
    margin: 0 auto 24px;
}
.search__group input {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 44px;
    width: 100%;
    padding: 7px 16px;
    background: #FFFFFF;
    border: 1px solid #DCE3EA;
    border-radius: 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    transition: 0.3s;
}
.search__group input:focus {
    border: 1px solid #3d82bf;
}
.search__group .btn__search {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
}
.order__table .table__filter {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 16px;
}
.order__table .filter__item_content {
    width: 100%;
    overflow: hidden;
    height: 38px;
}
.order__table .filter__item {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 38px;
    border-radius: 4px;
    width: 100%;
    background-color: transparent;
    white-space: nowrap;
    transition: 0.3s;
    border: 1px solid #aaa;
}
.order__table .filter__item span {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #838383;
}
.order__table .filter__item p {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: #1c1c1b;
    margin: 0 5px 0 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.order__table .filter__input {
    border-radius: 10px;
    padding: 14px 20px;
    width: 100%;
    background-color: #eff6fb;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: #1c1c1b;
    transition: 0.3s;
}
.order__table .choose__filters {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-row-gap: 10px;
    padding: 18px;
    width: 100%;
    max-width: 320px;
    max-height: 400px;
    min-width: fit-content;
    background: #FFFFFF;
    box-shadow: 0px 12px 36px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    opacity: 0;
    overflow-y: scroll;
    pointer-events: none;
    z-index: 10;
    height: auto;
}
.order__table .choose__filters::-webkit-scrollbar {
    width: 4px;
}
.order__table .choose__filters::-webkit-scrollbar-thumb {
    background-color: #cbd4d8;
    border-radius: 4px;
}
.order__table .choose__filters::-webkit-scrollbar-track {
    background-color: #ffffff;
}
.order__table .filter__item_content.active .choose__filters {
    opacity: 1;
    overflow: visible;
    pointer-events: all;
}
.order__table .choose__filter {
    display: flex;
}
.order__table .choose__filter .checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.order__table .choose__filter .checkbox + label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #1c1c1b;
    cursor: pointer;
}
.order__table .choose__filter .checkbox + label::before {
    content: "";
    display: inline-block;
    width: 20px;
    min-width: 20px;
    height: 20px;
    border: 1.5px solid #D7D7D7;
    border-radius: 6px;
    background: #FFFFFF;
    margin-right: 8px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    transition: 0.3s;
    cursor: pointer;
}
.order__table .choose__filter .checkbox:checked + label::before {
    border: 1.5px solid #018DC1;
    background-color: #018DC1;
    background-image: url('../warehouse/images/icons/checkbox.svg');
}
.order__table .table__item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6fb;
    height: 52px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    color: #1c1c1b;
    text-align: center;
}
.order__table .table__tabs {
    display: flex;
    align-items: center;
    grid-column-gap: 16px;
}
.order__table .table__tabs .tab {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6fb;
    border: 1px solid transparent;
    height: 52px;
    /* width: 50%; */
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    color: #1c1c1b;
    padding: 0 15px;
    text-align: center;
    transition: 0.3s;
}

.order__table .table__tabs .tab.tab__mobile {
    display: none;
}

.order__table .table__tabs .tab img {
    width: 24px;
    height: 24px;
    pointer-events: none;
}
.order__table .table__tabs .tab.active {
    border: 1px solid #3d82bf;
}
.table__sort {
    max-width: 324px;
    width: 100%;
}

.table__group_by {
    max-width: 324px;
    width: 100%;
}
.table__sort .sort__item {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 20px;
    border-radius: 10px;
    width: 100%;
    background-color: #eff6fb;
    white-space: nowrap;
    transition: 0.3s;
}
.table__group_by .group_by__item {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 20px;
    border-radius: 10px;
    width: 100%;
    background-color: #eff6fb;
    white-space: nowrap;
    transition: 0.3s;
}

.table__sort .sort__name {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #838383;
}
.table__group_by .group_by__name {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #838383;
}
.table__sort .sort__label {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: #1c1c1b;
    margin: 0 5px 0 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.table__group_by .group_by__label {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: #1c1c1b;
    margin: 0 5px 0 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.table__sort.active .choose__sorts {
    opacity: 1;
    overflow: visible;
    overflow-y: scroll;
    pointer-events: all;
}
.table__group_by.active .choose__groups {
    opacity: 1;
    overflow: visible;
    overflow-y: scroll;
    pointer-events: all;
}

.table__sort .choose__sorts {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-row-gap: 10px;
    padding: 24px;
    max-height: 208px;
    background: #FFFFFF;
    box-shadow: 0px 12px 36px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    margin-top: 4px;
    opacity: 0;
    overflow-y: scroll;
    pointer-events: none;
    z-index: 3;
}

.table__group_by .choose__groups {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-row-gap: 10px;
    padding: 24px;
    max-height: 208px;
    background: #FFFFFF;
    box-shadow: 0px 12px 36px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    margin-top: 4px;
    opacity: 0;
    overflow-y: scroll;
    pointer-events: none;
    z-index: 3;
}
.table__sort .choose__sorts::-webkit-scrollbar {
    width: 4px;
}
.table__group_by .choose__groups::-webkit-scrollbar {
    width: 4px;
}

.table__sort .choose__sorts::-webkit-scrollbar-thumb {
    background-color: #cbd4d8;
    border-radius: 4px;
}
.table__group_by .choose__groups::-webkit-scrollbar-thumb {
    background-color: #cbd4d8;
    border-radius: 4px;
}

.table__sort .choose__sorts::-webkit-scrollbar-track {
    background-color: #ffffff;
}
.table__group_by .choose__groups::-webkit-scrollbar-track {
    background-color: #ffffff;
}
.order__table .choose__sort .checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.order__table .choose__group_by .checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.order__table .choose__sort .checkbox + label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #1c1c1b;
    cursor: pointer;
}
.order__table .choose__group_by .checkbox + label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #1c1c1b;
    cursor: pointer;
}
.order__table .choose__sort .checkbox + label::before {
    content: "";
    display: inline-block;
    width: 20px;
    min-width: 20px;
    height: 20px;
    border: 1.5px solid #D7D7D7;
    border-radius: 6px;
    background: #FFFFFF;
    margin-right: 8px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    transition: 0.3s;
    cursor: pointer;
}

.order__table .tabs__content {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.order__table .tabs__content .tab__item {
    display: none;
    width: 100%;
}
.order__table .tabs__content .tab__item.active {
    display: flex;
}

.worker__average__mark {
    margin-left: 20px;
}
.table-responsive {
    /* min-height: 300px; */
}
.table-hover>tbody>tr {
    transition: 0.3s;
}
.table-hover>tbody>tr:hover {
    background: #eff6fb;
    --bs-table-accent-bg: transparent;
}
.table-order>tbody>tr.status__unavailable {
    background: rgb(255 172 172);
}
.table-order>tbody>tr.status__unavailable:hover {
    background: rgb(235, 152, 152);
}
.table-order>tbody>tr.status__partially {
    background: rgb(255 216 87 / 72%);
}
.table-order>tbody>tr.status__partially:hover {
    background: rgba(238, 200, 75, 0.72)
}
.table-order tr {
    vertical-align: middle;
}
.table-order tr th {
    font-size: 16px;
    border-bottom: 1px solid #DCE3EA;
    text-align: center;
}
.table>:not(:last-child)>:last-child>* {
    border-bottom-color: #DCE3EA;
}
.table-order tr td {
    font-size: 16px;
    vertical-align: middle;
    border: none;
}
.table-order tr td:first-child {
    border-radius: 10px 0 0 10px;
}
.table-order tr td:last-child {
    border-radius: 0 10px 10px 0;
}
.status__block {
    display: flex;
    align-items: center;
    width: 100%;
    grid-column-gap: 16px;
    padding-top: 24px;
}
.status__block span {
    max-width: 170px;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #1c1c1b;
}
.status__block .status {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 350px;
    width: 100%;
}
.status__block .status__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6fb;
    padding: 18px;
    width: 100%;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    color: #1c1c1b;
}
.status__block .status__list {
    position: absolute;
    top: 100%;
    margin-top: 4px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0;
    width: 100%;
    height: max-content;
    background: #FFFFFF;
    box-shadow: 0px 12px 36px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: 0.3s;
    z-index: 99;
}
.status__block .status__list.show {
    opacity: 1;
    overflow: visible;
    pointer-events: all;
}
.status__block .status__list li {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 8px 24px;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    transition: 0.3s;
    cursor: pointer;
}
.status__block .status__list img {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}
.status__block .status__list li:hover {
        background: #eff6fb;
}
.status__block .status__list li:not(:last-child) {
    margin-bottom: 8px;
}

.select__item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
}

.select__table {
    max-width: 400px;
    width: 100%;
    height: 56px;
    margin: 0 auto;
}

.select__table ~ .select2 {
    margin-bottom: 24px;
}

.order_filters .dropdown {
    position: unset;
}
.order_filters .dropdown .btn-primary {
    width: 100%;
}
.storekeeper__page {
    margin-bottom: 48px;
}
.load__more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #1C6986;
    margin-top: 24px;
}

.reviews__block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 24px;
    color: #1C4360;
    background: #ECF2F5;
    border-radius: 10px;
    margin-top: 36px;
}
.reviews__block:hover {
    transform: translateY(-10px);
    transition: all ease 0.3s;
}
.reviews__block .reviews__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.reviews__block .user__info {
    display: flex;
    align-items: center;
    grid-column-gap: 10px;
    margin-bottom: 16px;
}
.reviews__block .user__sign {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 36px;
    background: #FFFFFF;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #1C6986;
}
.reviews__block .user__group {
    display: flex;
    flex-direction: column;
    grid-row-gap: 2px;
}
.reviews__block .user__name {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #1C4360;
}
.reviews__block .user__phone {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #1C4360;
}
.reviews__block .mark__icns {
    display: flex;
    align-items: center;
    grid-column-gap: 2px;
}
.reviews__block .reviews__text {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #1C4360;
}

.reports {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}
.reports .reports__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-row-gap: 24px;
}
.select__store {
    max-width: 400px;
    width: 100%;
    height: 56px;
}
.select__store~.select2 {
    margin-bottom: 48px;
}
.reports .order__table .table__filter {
    grid-template-columns: repeat(2, 1fr);
}
.reports .btn__export {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    grid-column-gap: 6px;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: #ffffff;
    border-radius: 10px;
    background: #1286b1;
    transition: 0.3s;
}
.reports .btn__export:hover {
    background: #1C6986;
}
.modal__driver {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(25, 25, 25, 0.4);
    height: 100%;
    width: 100%;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: 0.3s;
    z-index: 1001;
}
.modal__driver.show {
    opacity: 1;
    overflow-y: auto;
    pointer-events: all;
}
.modal__driver .modal__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    max-width: 500px;
    margin: auto;
    height: max-content;
    padding: 24px;
    background: #FFFFFF;
    border-radius: 16px;
}
.modal__driver .modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.modal__driver .modal__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #1c1c1b;
    margin: 0;
}
.modal__driver .close__modal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #DCE3EA;
    border-radius: 48px;
    width: 36px;
    height: 36px;
    padding: 6px;
    margin-left: 24px;
}
.modal__driver .modal__main {
    width: 100%;
    margin-top: 24px;
}
.modal__driver .form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}
.modal__driver .form__selector {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 32px;
}
.modal__driver .form__selector label {
    max-width: 74px;
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 36px;
    color: #626C76;
    margin-right: 24px;
}
.modal__driver .select__table {
    width: calc(100% - 98px);
    max-width: 100%;
}
.modal__driver .select__table~.select2 {
    margin-bottom: 0;
}
.modal__driver .form__group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    width: 100%;
}
.modal__driver .form__input {
    display: flex;
    height: 44px;
    width: 100%;
    padding: 7px 16px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #0F181F;
    border-radius: 8px;
    border: 1px solid #DCE3EA;
    transition: 0.3s;
}
.modal__driver .form__input::placeholder {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #626C76;
}
.modal__driver .form__input:focus {
    border: 1px solid #3d82bf;
}
.modal__driver .btn__choose {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 13px 24px;
    border-radius: 10px;
    height: 48px;
    color: #FFFFFF;
    margin: 24px 0 0 auto;
    background: #018DC1;
    transition: 0.3s;
}
.modal__driver .btn__choose:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), #018DC1;
}

.survey__page .header {
    display: flex;
    margin-bottom: 36px;
}
.survey__page .header .logo {
    width: 240px;
    height: 60px;
}
.survey__page .languages__items {
    display: flex;
    align-items: center;
    grid-column-gap: 12px;
    padding: 0 36px 0 44px;
}
.survey__page .language__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 36px;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #1C4360;
    transition: 0.3s;
}
.survey__page .language__item.active {
    font-weight: 600;
    color: #1C6986;
    background: #FFFFFF;
}
.survey__page .feedback__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 750px;
    width: 100%;
    padding: 48px;
    background: #ECF2F5;
    border-radius: 10px;
    margin: 0 auto;
}
.survey__page .feedback__form .form__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #1c1c1b;
    margin-bottom: 16px;
    text-align: center;
}
.survey__page .feedback__form p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #1c1c1b;
    text-align: center;
}
.survey__page .customer__phone {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    grid-column-gap: 36px;
}
.survey__page .form__label {
    max-width: 190px;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #8b8b8b;
    margin-bottom: 6px;
}
.survey__page .form__input {
    display: flex;
    height: 44px;
    width: 100%;
    padding: 7px 16px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #0F181F;
    border-radius: 8px;
    border: 1px solid #DCE3EA;
    transition: 0.3s;
}

.survey__page .form__input::placeholder {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #626C76;
}
.survey__page .form__input:focus {
    border: 1px solid #3d82bf;
}
.survey__page .form__rating {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    grid-column-gap: 36px;
    width: 100%;
    margin: 24px 0;
}
.survey__page .stars {
    font-size: 24px;
    cursor: pointer;
}
.survey__page .star {
    display: inline-block;
    margin-right: 5px;
    color: gray;
}
.survey__page .star.active {
    color: gold;
}
.survey__page .form__review {
    display: flex;
    align-items: flex-start;
    grid-column-gap: 36px;
    width: 100%;
}
.survey__page .textarea {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% - 218px);
    height: 160px;
    padding: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #1c1c1b;
    border-radius: 10px;
    resize: none;
    transition: 0.3s;
}
.survey__page .textarea::placeholder {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #8b8b8b;
}
.survey__page .textarea:focus {
    border: 1px solid #1286b1;
}
.survey__page .textarea:focus-visible {
    border: none;
    box-shadow: none;
    outline: 1px solid #1286b1;;
}
.survey__page .btn__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12pz;
    padding: 0 16px;
    height: 44px;
    color: #ffffff;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    border-radius: 10px;
    background: #1286b1;
    margin: 24px 0 0 auto;
    transition: 0.3s;
}
.survey__page .btn__submit:hover {
    background: #1C6986;
}

.modal__notification {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(25, 25, 25, 0.4);
    height: 100%;
    width: 100%;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: 0.3s;
    z-index: 1001;
}
.modal__notification.show {
    opacity: 1;
    overflow-y: auto;
    pointer-events: all;
}
.modal__notification .modal__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    max-width: 800px;
    margin: auto;
    height: max-content;
    padding: 36px 24px;
    background: #FFFFFF;
    border-radius: 16px;
}
.modal__notification .modal__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.modal__notification .modal__main p {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    color: #ff0000;
    text-align: center;
    margin: 16px 0 0;
}
.modal__notification .modal__main img {
    display: flex;
    width: 36px;
    height: 36px;
}

.accordion__items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-row-gap: 32px;
    width: 100%;
    margin-bottom: 48px;
}
.accordion__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    background: #ECF2F5;
    border-radius: 8px;
}
.accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 32px;
    transition: 0.3s;
}
.accordion__title {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #1C4360;
    margin-right: 12px;
}
.accordion__title img {
    width: 48px;
    height: 48px;
    margin-right: 16px;
}
.accordion__right {
    display: flex;
    align-items: center;
    grid-column-gap: 16px;
}
.accordion__right .average__mark {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    color: #1C4360;
}
.accordion__right .rating__image {
    display: flex;
    width: 48px;
    height: 48px;
}
.accordion__content {
    width: 100%;
    padding: 0 32px;
}
.accordion__content .rating {
    display: none;
}
.products__card {
    position: relative;
    display: none;
    width: 100%;
    padding-bottom: 48px;
    overflow: hidden;
}
.products__card .products__swiper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: visible;
}
.products__card .swiper-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}
.products__card .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    border-radius: 8px;
    border: 1px solid #ECF2F5;
}
.products__card .swiper-slide.status__unavailable {
    background: rgb(255 172 172);
    border: none;
}
.products__card .swiper-slide.status__partially {
    background: rgb(255 216 87 / 72%);
    border: none;
}
.products__card .product__img {
    display: flex;
    max-width: 100%;
    width: 100%;
    height: 300px;
    border-radius: 8px 8px 0 0;
    margin-bottom: 24px;
}
.products__card .product__img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}
.products__card .product__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    width: 100%;
    grid-row-gap: 16px;
    padding: 0 12px 12px;
}
.products__card .products__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.products__card .dropdown {
    width: 160px;
}
.products__card .product__title {
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    color: #1c1c1b;
}
.products__card .product__quantity .product__title {
    font-weight: 800;
    color: red;
}
.products__card .product__name {
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    color: #1c1c1b;
}
.products__card .product__quantity .product__name {
    font-weight: 800;
    color: red;
}
.products__card .pagination__group {
    position: relative;
    margin-top: 10px;
}
.products__card .pagination__group .arrows {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    z-index: 999;
}
.products__card .pagination__group .arrows .arr {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 8px;
    width: 46px;
    height: 46px;
    background: #eff6fb;
    border-radius: 46px;
}
.products__card .pagination__group .arrows .arr:disabled {
    opacity: 0.4;
    pointer-events: none;
}

.products__card .pagination__group .swiper-pagination {
    display: block;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    z-index: -1;
}
.products__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 20px;
    width: 100%;
    margin-bottom: 24px;
}
.products__list .product__info {
    display: flex;
    flex-direction: column;
    grid-row-gap: 6px;
    width: 100%;
    padding: 0 12px 12px 12px;
}
.products__list .products__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    border: 1px solid #ECF2F5;
    border-radius: 8px;
}
.products__list .products__item.status__unavailable {
    background: rgb(255 172 172);
    border: none;
}
.products__list .products__item.status__partially {
    background: rgb(255 216 87 / 72%);
    border: none;
}
.products__list .products__item .product__img {
    width: 100%;
    height: 200px;
    border-radius: 8px 8px 0 0;
    margin-bottom: 12px;
}
.products__list .products__item .product__img img {
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
    object-fit: cover;
}
.checkbox__item__status__mobile {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.products__list .products__group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.products__list .product__title, .products__list .product__name {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #1c1c1b;
}
.products__list .product__quantity .product__title {
    font-weight: 800;
    color: red;
}
.products__list .product__quantity .product__name {
    font-weight: 800;
    color: red;
}

.checkbox-col {
    width: 3%;
    min-width: 24px;
}

.unit-col {
    width: 5%;
}

.pack-q-col {
    width: 3%;
}

.pack-unit-col {
    width: 8%;
}

.cell-col {
    width: 5%;
}

.status-col {
    width: 12%;
}

.image-col {
    width: 25%;
    min-width: 200px;
}

.stock-col {
    width: 3%;
}

.pack-q-col-item {
    text-align: center;
}

.cell-col-item {
    text-align: center;
}

@media(min-width: 1361px) {
    .name-col {
        width: 30%;
        min-width: 200px;
    }

    .article-col {
        width: 15%;
    }

    .q-col {
        width: 5%;
    }

}

@media(max-width: 1441px) {
    .container {
        padding: 0 24px;
    }
    .table__actions .search__group {
        max-width: 186px;
    }
}

@media(max-width: 1360px) {
    .container {
        padding: 0 24px;
    }
    .header {
        display: flex;
    }
    .sidebar {
        z-index: -1;
    }

    .sidebar__container {
        transform: translate3d(-100%, 0, 0);
    }

    .sidebar.show {
        z-index: 999;
        background: rgba(25, 25, 25, 0.4);
    }

    .sidebar.show .sidebar__container {
        transform: translate3d(0, 0, 0);
    }

    .sidebar__header .btn-mobile {
        display: flex;
    }

    .sidebar__header .btn-desktop {
        display: none;
    }

    .sidebar.close~.main {
        left: 0;
        width: 100%;
    }

    .main {
        left: 0;
        width: 100%;
        padding: 0;
    }
}

@media(max-width: 1023px) {
    .order__table .table__groups {
        flex-direction: column;
        align-items: flex-start;
        grid-row-gap: 16px;
    }
    .table-order tr th {
        font-size: 14px;
        padding: 4px;
    }
    .table-order tr td {
        font-size: 14px;
        padding: 4px;
    }
    .storekeeper__page {
        margin-bottom: 90px;
    }
    .dataTables_wrapper {
        padding-bottom: 16px;
        overflow-x: auto;
    }
    .storekeeper__items {
        grid-template-columns: repeat(1, 1fr);
    }
    .name-col {
        min-width: 140px;
    }
    .article-col {
        max-width: 80px;
    }
    .article-col-item {
        max-width: 80px;
        word-wrap: break-word;
        white-space: normal;
    }
    .q-col {
        min-width: 110px;
    }
    .q-col-item {
        text-align: center;
    }
}

@media(min-width: 1361px) and (max-width: 1500px) {
    .table-order tr th {
        font-size: 14px;
        padding: 4px;
    }
    .table-order tr td {
        font-size: 14px;
        padding: 4px;
    }
    .status__block span {
        font-size: 16px;
    }
    .table-status-btn {
        max-width: 80px;
    }
    .status__block .status__btn {
        font-size: 16px;
    }
}

.btn-text-limit {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media(min-width: 768px) and (max-width: 1023px) {
    .order__table .table__groups {
        display: grid;
        grid-template-columns: 68% 25%;
    }
    .reports .order__table .table__groups {
        grid-template-columns: 60% 33%;
    }
    .order__table .table__filter {
        display: grid;
        grid-template-columns: 30% 40% 30%;
        width: 100%;
        grid-row-gap: 16px;
    }
    .order__table .filter__item_content {
        width: 100%;
    }
    .order__table .table__sort {
        max-width: 350px;
        width: 100%;
    }
    .order__table .table__group_by {
        max-width: 350px;
        width: 100%;
    }
    .order__table .filter__item p {
        font-size: 16px;
    }
    .order__table .filter__input {
        text-align: center;
        font-size: 16px;
    }
    .table__sort .sort__label {
        font-size: 16px;
    }
    .table__group_by .group_by__label {
        font-size: 16px;
    }
    .table__actions .search__group {
        max-width: 232px;
    }
    .products__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 12px;
    }
    .sidebar .link {
        display: none;
    }
    .sidebar__container {
        width: 300px;
    }
    .sidebar.close .sidebar__container {
        width: 0px;
    }
    .rating {
        justify-content: unset;
        height: max-content;
    }
    .rating .rating__group {
        grid-row-gap: 12px;
        font-size: 16px;
        line-height: 20px;
        text-align: left;
        margin: 0;
    }
    .rating .average__mark {
        font-size: 32px;
        line-height: 38px;
    }
    .rating .rating__image {
        width: 40px;
        height: 40px;
    }
    .rating.average__rating {
        grid-row-gap: 12px;
    }
    .order__table .table__header {
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 16px;
    }
    .order__table .table__filter {
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 16px;
        width: 100%;
    }
    .order__table .filter__item_content {
        position: relative;
        width: 100%;
        overflow: visible;
    }
    .order__table .choose__filters {
        top: 100% !important;
        margin-top: 4px;
        max-width: 100%;
        width: 100%;
    }
}

@media(max-width: 480px) {
    .modal__driver .modal__content {
        width: auto;
        margin: auto 16px;
    }
    .modal__driver .form__selector {
        flex-direction: column;
        align-items: flex-start;
    }
    .modal__driver .select__table~.select2 {
        width: 100% !important;
    }
    .modal__driver .select2-container--default .select2-selection--single {
        max-width: 100% !important;
    }
    .modal__driver .form__group {
        grid-template-columns: repeat(1, 1fr);
    }
    .accordion__header {
        padding: 24px;
    }
    .accordion__title {
        font-size: 16px;
        line-height: 24px;
        text-align: left;
    }
    .accordion__title img {
        width: 32px;
        height: 32px;
        margin-right: 10px;
    }
    .accordion__content {
        padding: 0 24px 24px;
    }
}

@media(max-width: 360px) {
    .survey__page .stars {
        font-size: 23px;
    }
    .survey__page .star {
        margin-right: 0;
    }
    .survey__page .languages__items {
        grid-column-gap: 6px;
    }
    .survey__page .language__item {
        width: 36px;
        height: 36px;
        border-radius: 36px;
    }
    .survey__page .header .logo {
        width: 180px;
        height: 48px;
    }
    .accordion__header {
        padding: 24px 16px;
    }
    .accordion__content {
        padding: 0 16px 24px;
    }
    .rating {
        padding: 16px;
    }
    .rating.average__rating {
        flex-direction: column;
        grid-row-gap: 12px;
    }
    .rating .rating__group {
        grid-column-gap: 10px;
        font-size: 14px;
        line-height: 18px;
    }
    .rating .average__mark {
        font-size: 22px;
        line-height: 26px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 12px;
    }
    .header .logo {
        width: 180px;
        height: 48px;
    }
    .table__sort .sort__label {
        font-size: 16px;
        line-height: 20px;
    }
    .table__group_by .group_by__label {
        font-size: 16px;
        line-height: 20px;
    }
    .survey__page .feedback__form .form__title {
        font-size: 16px;
        line-height: 24px;
    }
    .survey__page .feedback__form p {
        font-size: 14px;
        line-height: 24px;
    }
    .survey__page .form__rating .rating__text {
        font-size: 14px;
        line-height: 24px;
    }
    .survey__page .stars {
        font-size: 18px;
    }
    .survey__page .review__title {
        font-size: 14px;
        line-height: 24px;
    }
    .accordion__title {
        font-size: 14px;
        line-height: 22px;
    }
}

.select2-container--open .select2-dropdown {
    z-index: 9999 !important;
    max-width: 400px!important;
}

.select2-container--classic .select2-search--inline .select2-search__field  {
    width: 100% !important;
}

.quantity___input {
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: flex;
    align-items: center;
    border: 1px solid #DCDCDC;
    border-radius: 8px;
    background: #eff6fb;
    height: 44px;
    max-width: 400px;
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #1c1c1b;
    transition: 0.3s;
    cursor: pointer;
}

.product__select__container {
    display: flex;
    flex-direction: column;
}

.modal__input__item {
    margin-bottom: 10px;
}

.disabled__selector + .select2-container .select2-selection__arrow {
    display: none;
}

.prev.available {
    display: flex;
    justify-content: center;
    align-items: center;
}

.next.available {
    display: flex;
    justify-content: center;
    align-items: center;
}

.prev.available i {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPAAAADwBAMAAADMe/ShAAAAMFBMVEUAAAD////v7+/f39/Pz8+/v7+vr6+fn5+Pj49/f39fX19PT08/Pz8vLy8fHx8PDw+k1aDSAAADKklEQVR4Xs3dwW1TURCF4X/nKBBFJ7KIQGLhNaEEFq7AJVh0gDugBTpIWqCSCFECBRgJiS0dZJ5iH/68BkafJdtP986cIWd/1n8zPykU3nFQCq+PrBTxDpaQKYBZQqYAXkSmAF5EpgJmJlMBM5PpgGcyHfBMpgOeyXTAM5kWGA7/TfzmCAO5I/4CA7kjvgWWk+mAZzId8EymA57JdMAzmQ54JtMBz2Q64JlMBzyT6YBnMh3wTKYDnsmUwfB7ELfA19tB3AL/yiAuga82vcJvnwL/SE98P4Bb4nfPAgcJHCRwkMBBAgcJHCRwkMBBAgcJHGrg7xnEJfDlAKAFfhgASOAggUML3BN/GMAt8c3jAG6JP54GDhI4SOAggYMEDhI4nB/8rVJ4Bq9SEc/gwzIAEjhI4CCBgwQOEjhI4FAAd8SfBnBLvD4O4JZ4dyZwkMDhfODrz5XCM/hPKuIZvD1D4T44SOAggYMEDhI4SOAggYMEDhI4SODggJeL90+Ar7a9wrfDaWlHPN9pFcQtcJDAQQIHCRwkcJDAQQIHCRwkcJDAQQKHU8CvNpXCM/ghDfEMvkyp8Azuib+2wOGUO62e+L4GDhI4SOAggYMEDhI4SOAggcOzwBepiGfwoVJ4Bq/SEvfBQQIHAfyU+L1V+OZR+qhzVyDLXyf/B0QiE4lMJDKRyCTCH6Pysue/3kpkIpGJRCYSmUhkIpGJRCYSmUjnTSTOgRMRyM6xsX9QLpDlyxCBLF94CWT5UlMgyxfXEplIZCKROc/IbVGcvdByIzQZCW1VNbLfOieQ5fZIgSy3wEpkIpGJRCZCZ7fcvC917xOJTArkTuG1MIQjjB0Jg1YFsj1MJ5DlgckCWRqKvYg3BvyyB58FsjzcLpDlAAOJTDrkojh3J5CNIBI/ekUiE4lMWuTXm2gRSi80NEogy8FgAlkOfxPIcsCfQJZDHCUyqZOlaNKfkcNY/fhZP3C3TF7pocp+jLQfnO1Hhfvh6H4cvB+A70f++0sO/LUO/iKL3CKt7sh+ALvrWfyFNCXySl465K9Z8hdL+au0KuSDvC7NXxDnr8TzlwBqaw//AU26lbQeS4rYAAAAAElFTkSuQmCC');
    background-size: cover;
    display: inline-block;
    width: 16px;
    height: 16px;
    background-position: center;
}

.next.available i {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPAAAADwCAAAAAAbPrZOAAAFnklEQVR42u3dCaSUexgG8Lc9paR7c+fsW037vne3c2933/d933d3390IQhCCEEIIIUSIEBERUU1TZz9nqrN0ls5+Zua96C6ls8x8z+fM9/zf7wHA8GPMfN///y6i/iZReU4DHfH34xqjEjlvCFxfISKRmBlwTamIiOTFjICriuVG8i6YAMcL5d/kxw2AY/nyfwrizoPP3iU3p+Ci4+Az8+TWFF5yGnz6DhEOsT/gU3Pl9hRVOQs+OUeGS1G1o+ATs2X4FFc7CT4+S0ZKSY2D4GMzZeSU1DoHPjpDRktprWPgI9Nl9JTWOQU+PE3GSlmdQ+BDU2XslNc7Az44RTJJeYMj4AOTJbNUNDgB3j9JMs38RgfA+yaKEIo9g/dm4xVZ0EQO3jNBsku0iRq8O1uvSDRBDN4lHrIwQQveKZ6y6DIpeIcIr9gDeLt4zuIrjOBt3sGy5CrjV5pa7OlHCxEvbWb8W0LEy5oJwZi4hfHREhEvbyEEQ+IVrYyvh4h4ZSshmFSMHPEg4lVtjId4iHh1GyEYEq+5RggmFKNXLYh4bTshGBKvaycEQ+L1HYRgSLyhgxDMJfalqAURb+wkBEPiTZ2EYEi8uYsQDIm3dBGCacT+lQ8j4ruvE4Ih8T3XCcGQ+N5uQjAkvq+bEAyJ7+8mBGPiHkIwJK7sIQRD4gd6CMGQ+MFeQjAk3tpLCIbED/USgiHxw32EYEj8SB8hGBI/2kcIxsT9hGBI/Fg/IRgSP95PCIbETwwQgiHxkwOEYEj81AAhGBI/PUAIhsTPDBKCIfGzg4RgSPzcICEYEj8/SAiGxC8MEYIh8YtDhGBI/NIQIRgSvzxECIbEryQJwZD41SQhGBK/liQEQ+LXk4RgSPxGkhAMid9MEYIh8VspQjAkfjtFCIbE76QIwZD43RQhGBK/lyIEQ+L304RgSPxBmhAMiT9ME4Ih8UdpQjAk/iRNCIbEn6YJwZD4szQhGBJ/niYEQ+IvGMGQ+EtGMCT+ihEMib9mBEPibxjBkPhbRjAk/o4RDIm/ZwRD4h8YwZD4R0YwJP6JEQyJf2EEQ+JfGcGQ+DdGMCT+nREMif9gBEPiPxnBkPgvRjAk3haCw690+KNl4PscPniEj5bhy0PgvD+HBwDhEU94iBce05J4GQ/irV21WLtMs3Zdau1C3FrJg7WiFmtlS9YK06yVHiLejwmLS62VD1srELfWAmCtycNaG4+1Ri1rrXjWmi2ttdNaa5i21hJvbeiBtbEW1gaXWBtNY234kLXxUtYGiFkbEWdtCKC1MY/WBnlaG9VqbRivtXHL1gZqWxuZbm0ovrW1B9YWW1hbXWJtOY219UPWFkxZWyFmbUmctTWA1hY9WlvlaW1Zq7V1vNYWLltbqW1taTri3dKldGAWr19gxLt5PL0+gRHvpk6lAyPejePr9QWMeDd0KB2YyusDGPGuH3cvDka869qVDox41+bAi4IR75prSgfm82JgxLu6TenAiHdVjrwIGPGubFU6MKfXOxjxrsid1zMY8S5vUTow4l2WS69HMORtVjow4l2aW68nMOJdclXpwNReL+Dt3r2LryghWHd49S66rJRg3cnr9fi3tMuLd2FCacG6e0LW3mggvJ4fLfdkK442KTVY907MyrsgIF7g9XBfNuL5jUoP1v2TCL3QEc+ByRl6KxrUCbAenJKRt7xeHQHroalsXvQg/vC0Mb1ldeoQWI9MH8NbGiwvfpl2dMbo3lp1DKzHZo7iLQma148L8eOzRvbWqINgPTF7BG9xtToJ1pNzhvUWBdDrU9nSqbnDeavUWbCevvM2b+EldRisZ+ZxeP0rLj0bucVbcFEdB2ss/2ZvXJ0Ha7zwP29+YL2+tgBUFf/jzbugJsBaU3bDG1MjYK2vEJFIkL1+N2o1RiVyXg2BNVF5LtBe/Ru4o+8XMwqpzgAAAABJRU5ErkJggg==');
    background-size: cover;
    display: inline-block;
    width: 16px;
    height: 16px;
}

.grouped_items_content {
    position: relative;
    display: inline-block;
}

.grouped_items__dropdown_content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 9999999;
    top: 100%;
    left: 0;
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
}

.grouped_items__dropdown_content div {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.grouped_items__dropdown_content div:hover {
    background-color: #f1f1f1;
}

.grouped_items_content:hover .grouped_items__dropdown_content {
    display: block;
}

.manager_confirm_block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 24px;
    color: #1C4360;
    background: #ECF2F5;
    border-radius: 10px;
    margin-top: 36px;
}

.manager_confirm_block .manager_confirm_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.manager_confirm_span {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #1c1c1b;
}

#routeSheetSearch {
    flex-grow: 1;
    margin-right: 10px;
    width: 50%;
    padding: 8px;
    background-color: #dae3e6;
    border-radius: 5px;"
}

.search-and-uncheck {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;"
}

.statistics_col {
    text-align: center;
}

.storekeepers_status .dropdown-toggle::after {
    display: none;
}

@media(max-width: 768px) {
    .checkbox_filter {
        zoom: 1.5;
    }
    .search-and-uncheck {
         width: 100%;
    }
    .label_filter {
        font-size:12px!important;
    }
}

.search-order {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: transparent;
}

#search_by_id {
    height: 38px;
    background-color: transparent;
    white-space: nowrap;
    transition: 0.3s;
    border: 1px solid #aaa;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #838383;
}

#search_by_id::placeholder {
    text-align: center;
    color: #888;
}

.order_filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    padding: 10px;
}

.order_filters > * {
    min-width: 150px;
    flex: 1;
}

.search-order input {
    width: 100%;
}

.flatpickr.input-group {
    flex-shrink: 0;
}

.choose__filters {
    max-height: 200px;
    overflow-y: auto;
    position: absolute; /* Prevents affecting layout flow */
    background: white; /* Ensures visibility */
    z-index: 10; /* Ensures it stays on top of other elements */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Adds a shadow */
    border: 1px solid #ddd; /* Optional: Adds a border */
}

.orders-table-container {
    min-height: 350px;
}

.content-404 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50vh;
    text-align: center;
}

.calculator_button {
    border: none;
    background-color: transparent;
    font-size: x-large;
}

.calculator_button:active {
    transform: scale(0.85);
}

.calculator-modal-title {
    text-align: center;
}

.calculator-modal-title-2 {
    text-align: center;
}

.calculator-modal-header,
.calculator-modal-body {
    justify-content: center;
    border: none;
    justify-items: center;
}

.calculator-modal-input {
    height: 36px;
    width: 71%;
}

.calculator-modal-footer {
    justify-content: center;
    border: none;
    margin-bottom: 20px;
}

.calculator-modal-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.calculator-modal-button {
    width: 120px;
}

.bi-star-fill {
    color: #f7e920;
}
.order-check-filters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-row-gap: 16px;
    grid-column-gap: 16px;
}

@media(max-width: 1023px) {
    .order-check-filters {
        grid-template-columns: repeat(1, 1fr);
    }
}

.order-check-table {
    overflow: auto;
}

@media (min-width: 768px) {
    .upload-product-list-modal-dialog {
        max-width: none;
        width: 60%;
    }
}
.custom-upload-modal {
    z-index: 1046;
}

#productsSelectionListView {
    max-height: 50vh;
    overflow-y: scroll;
}

@media (orientation: portrait) and (min-width: 576px) {
    .sort_bar .col-sm-5 {
        flex: 0 0 100% !important;
        width: 100% !important;
    }

    .sort_bar .col-sm-4 {
        width: 70%;
    }

    .sort_bar .col-sm-3 {
        width: 30%;
        justify-items: flex-end;
    }
}

.to_order_days {
    font-size: .8em;
}