#results-orders {
    width: 100%;
}
#results-orders [role="button"] {
    cursor: pointer;
}
#results-orders h5 {
    color: #fff;
}

.top-status ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    width: 100%;
}
.error-popup .error-content {
    max-width: calc(100% - 20px);
}
.top-status ul li {
    min-width: 130px;
    height: 130px;
    max-width: 130px;
    max-height: 130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border: 5px solid #959595;
    margin: 10px 5px;
    padding: 11px;
    text-align: center;
}
.top-status ul li:not(.active) {
    cursor: pointer;
}

.top-status ul li img {
    width: 60px;
    height: 60px;
}
.top-status ul li span {
    font-size: 13px;
}

.top-status ul li.active {
    border-color: #ddd;
}

ul.timeline {
    list-style-type: none;
    position: relative;
}

ul.timeline:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 1;
}

ul.timeline>li {
    margin: 20px 0;
    padding-left: 30px;
    margin-left: 40px;
}

ul.timeline>li:before {
    content: '\2713';
    background: #fff;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 0;
    left: 5px;
    width: 50px;
    height: 50px;
    z-index: 1;
    text-align: center;
    line-height: 50px;
    color: #d4d9df;
    font-size: 24px;
    border: 2px solid #d4d9df;
}

ul.timeline>li.active:before {
    content: '\2713';
    background: #28a745;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 0;
    left: 5px;
    width: 50px;
    height: 50px;
    z-index: 400;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-size: 30px;
    border: 2px solid #28a745;
}

/*! CSS Used from: https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css */
:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
::after,
::before {
    box-sizing: border-box;
}

section {
    display: block;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}

h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

ul {
    margin-top: 0;
    margin-bottom: 1rem;
}

strong {
    font-weight: bolder;
}

img {
    vertical-align: middle;
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

table {
    border-collapse: collapse;
}

th {
    text-align: inherit;
}

h4,
h5,
h6 {
    margin-bottom: .5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width:576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1140px;
    }
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.col-lg-12 {
    position: relative;
    width: 100%;
    min-height: 1px;
}

@media (min-width:992px) {
    .col-lg-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

.table td,
.table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 5px;
    background-color: #0f1735;
    transition: opacity .2s;
}

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

.description {
    display: block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
}

.badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    float: unset;
    margin: 0;
}

.badge:empty {
    display: none;
}

.badge-success {
    color: #fff;
    background-color: #28a745;
}

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

.mt-4 {
    margin-top: 1.5rem !important;
}

.my-5 {
    margin-top: 3rem !important;
}

.my-5 {
    margin-bottom: 3rem !important;
}

.p-3 {
    padding: 1.25rem !important;
}

.text-muted {
    color: #afb6d0 !important;
}

.card-order {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card .item {
    display: flex;
    gap: 20px;
    flex-direction: column;
}
.card .item .col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.card .item .col-full {
    flex: 1;
    justify-content: space-between;
}
.card .item .item-quantity {
    text-align: right;
    font-weight: 600;
}

.top-border {
    border-top: 1px solid #fff;
    padding-top: 20px;
}
.card .badge {
    bottom: 2px;
}
.card .item .amount {
    text-align: right;
    font-weight: 600;
    justify-content: flex-end;
}

.card.my-loader {
    animation: glowing 500ms infinite;
}
.card.my-loader * {
    opacity: 0;
}
.card .item-description {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.card .item-description .title {
    font-weight: 500;
}
.card .item-description .text {
    max-width: 500px;
}

@keyframes glowing {
    0% { background-color: #0f1735; }
    50% { background-color: #121b3b; }
    100% { background-color: #0f1735; }
}



@media print {

    *,
    ::after,
    ::before {
        text-shadow: none !important;
        box-shadow: none !important;
    }

    thead {
        display: table-header-group;
    }

    img,
    tr {
        page-break-inside: avoid;
    }

    p {
        orphans: 3;
        widows: 3;
    }

    body {
        min-width: 992px !important;
    }

    .container {
        min-width: 992px !important;
    }

    .badge {
        border: 1px solid #000;
    }

    .table {
        border-collapse: collapse !important;
    }

    .table td,
    .table th {
        background-color: #fff !important;
    }
}

.slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}


.slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.slider {
    position: relative;
}

.slider-list {
    display: flex; /* Для горизонтального расположения элементов */
    user-select: none
}

.custom-scrollbar {
    position: absolute;
    width: 50px; /* Ширина ползунка */
    height: 20px; /* Высота ползунка */
    background: rgba(0, 0, 0, 0.5); /* Цвет ползунка */
    border-radius: 10px; /* Скругление углов */
    bottom: 10px; /* Позиционируем снизу */
    cursor: pointer; /* Указываем, что это интерактивный элемент */
    opacity: 0; /* Скрываем по умолчанию */
    transition: opacity 0.3s; /* Плавный переход */
}

.slider:hover .custom-scrollbar {
    opacity: 1; /* Показываем при наведении */
}