div:where(.swal2-container) button:where(.swal2-styled).swal2-default-outline:focus {
    box-shadow: none;!important;
}

.swal2-popup .swal2-styled:focus {
    box-shadow: none !important;
}

.w-1\/3 {
    width: 33.333333%;
}

.w-3\/5 {
    width: 60%;
}

.p-0 {
    padding: 0;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-uppercase {
    text-transform: uppercase;
}

.m-0 {
    margin: 0;
}

.gap-10 {
    gap: 10px;
}

.flex {
    display: flex;
}

.justify-content-center {
    display: flex;
}

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

.flex-col {
    flex-direction: column;
}

.min-h-screen {
    min-height: calc(100vh - (70px));
}

.h-screen {
    height: 100vh;
}

.w-full {
    width: 100%;
}

.font-bold {
    font-weight: 700;
}


.button-down {
    background-color: white;
    display: inline-block;
    border: 1px solid #c7a756;
    border-right: 0;
    border-radius: 6px 0 0 6px;
    color: #c7a756;
}

.button-up {
    background-color: white;
    display: inline-block;
    border: 1px solid #c7a756;;
    border-radius: 0 6px 6px 0;
    color: #c7a756;
}

.item-qty {
    height: 30px;
}

.last-updated-icon {
    display: none;
}

#catalog-table-container {
    display: block;
}

.catalog-search-block {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.desktop-layout {
    display: block;
}

.mobile-layout {
    display: none;
}

.menu-icon {
    display: none;
}


@media only screen and (max-width: 1240px) {
    .menu {
        padding-top: 15px;
        flex-direction: column;
        background-color: #333333;
        align-items: start;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        z-index: 1;
        transform: scale(1, 0);
        transform-origin: top;
        transition: transform 0.3s ease-in-out;
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
        padding-bottom: 10px;
    }

    .menu a {
        margin-left: 12px;
    }

    .menu li {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 1024px) {
    .menu-icon {
        display: block;!important;
        color: var(--gold);
        font-size: 16px;
        cursor: pointer;
        position: absolute;
        left: calc(84% - 10px);
    }

    .menu-icon:hover {
        color: #b69345;
    }

    .desktop-layout {
        display: none;
    }

    .mobile-layout {
        display: block;
    }
    .catalog-search-block {
        flex-direction: column;
        gap: 10px;
    }

    #catalog-table-container {
        display: none;
    }

    .external-text {
        display: none;
    }

    .header-link.bordered.cart-button {
        padding: 4px;
        font-size: 10px;
    }

    .header-text-img {
        display: none;
    }
}


.responsive-wrapper {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.brand-item {
    padding: 10px 0;
}

.brand-item img {
    width: 100%;
    mix-blend-mode: multiply;
}

.benefit-item {
    padding: 10px;
    max-width: 290px;
    text-align: center;
}

.poster-item {
    padding: 25px;
    text-align: center;
}

.benefit-title, .poster-title {
    font-size: 16px;
    text-transform: uppercase;
    margin: 10px 0;
}

.benefit-body, .poster-body {
    font-size: 12px;
}

.poster-image img {
    object-fit: cover;
    width: 300px;
    height: 400px;
}

/*****************************************************/
.infinite-slider-wrap {
    width: 100%;
    height: 68px;
    position: relative;
    overflow: hidden;
}

.infinite-slide-container {
    position: absolute;
    left: 0;
    height: 100%;
}

.infinite-slide-container .slides {
    display: flex;
    flex: row;
    flex-wrap: no-wrap;
    height: 100%;
    margin: 0;
    padding: 0;
}

.animate {
    animation: moveSlideshow 20s linear infinite;
}

@keyframes moveSlideshow {
    100% {
        transform: translate3d(calc(-100% + 100vw), 0, 0);
    }
}

.infinite-slide-container .slides li {
    display: block;
    box-sizing: border-box;
    width: 33.33vw;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.infinite-slide-container .slides li > div {
    display: flex;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    justify-content: center;
    align-self: center;
}

.infinite-slide-container .slides li span {
    display: block;
    font-weight: 800;
    letter-spacing: -.06em;
    color: #00509A;
}

.btn {
    transition: 0.2s ease-in-out;
    border-radius: 6px;
    padding: 6px 10px;
}

.btn-gold {
    align-self: flex-start;
    border-radius: 8px;
    background-color: #c7a756;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.09);
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    /*text-transform: uppercase;*/
    letter-spacing: 0.32px;
    /*padding: 10px 38px;*/
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn-dark {
    background-color: #333333;
}

.btn-dark:hover {
    color: black;
    background-color: #ffffff;
    border: 1px solid #333333;
}

.btn-gold:hover {
    color: white;
    background-color: #b69345;
}

.shop-button {
    color: black;
    text-decoration: none;
    font-size: 20px;
    transition: 0.2s ease-in-out;
    background-color: #c7a756;
    padding: 10px 40px;
    border: 1px solid #dfb932;
    border-radius: 6px;
}

.shop-button:hover {
    text-decoration: none;
    color: #ffffff;
    background-color: #eac747;

    -webkit-box-shadow: 0 0 20px 2px rgba(223, 185, 50, 0.84);
    -moz-box-shadow: 0 0 20px 2px rgba(223, 185, 50, 0.84);
    box-shadow: 0 0 20px 2px rgba(223, 185, 50, 0.84);
}


.has-error .form-input {
    border-color: #a94442;
    /*border-width: 2px;*/
}

.help-block {
    color: #a94442;
    font-size: 12px;
    margin-top: 5px;
    /*font-weight: bold;*/
}

.form-control {
    border-radius: 6px;
    border: 1px solid #c7a756;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 6px;
}

.form-label {
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    font-weight: bold;
}

.form-input {
    border-radius: 4px;
    min-height: 40px;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.28px;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    font-family: 'Quicksand', sans-serif;
}

.form-input:focus {
    /*box-shadow: 0 0 0 0.2rem rgb(214 171 63 / 25%);*/
    border: 1px solid #c7a756 !important;
    outline: none !important; /* Убирает стандартную черную рамку */
}

.input-group .input-group-addon {
    background-color: #c7a75659;
    border-radius: 0 6px 6px 0;
    border: 1px solid #c7a756;
    text-align: center;
    padding: 6px 12px;
    border-left: none;
}

.image-open {
    position: relative;
    top: 0;
    left: 70px;
    border: 1px solid #ddd;
    transform: scale(4);
    -ms-transform: scale(4);
    -webkit-transform: scale(4);
    z-index: 100;
}

.form-control.disabled, .form-control.readonly {
    background-color: #e9ecef;
    opacity: 1;
}

.badge {
    margin-bottom: 4px;
}

a.asc:after, a.desc:after {
    content: '';
    left: 3px;
    display: inline-block;
    width: 0;
    height: 0;
    border: solid 5px transparent;
    margin: 4px 4px 2px 4px;
    background: transparent;
}

a.asc:after {
    border-bottom: solid 7px #c7a756;
    border-top-width: 0;
}

a.desc:after {
    border-top: solid 7px #c7a756;
    border-bottom-width: 0;
}

#invisible-overlay {
    top: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    opacity: 0;
    z-index: 100;
    transition: all 0.5s;
}

/*.pagination {*/
/*    margin-left: 10px;*/
/*}*/

/*.pagination li:first-child, .pagination li:last-child {*/
/*    font-size: 16px !important;*/
/*    line-height: 22px !important;*/
/*}*/

/*.pagination li:not(:first-child):not(:last-child) a {*/
/*    display: block;*/
/*    text-align: center;*/
/*    width: 38px;*/
/*    height: 38px;*/
/*    font-size: 14px;*/
/*    color: #c7a756;*/
/*    padding: 0.5rem 0.75rem;*/
/*    border: 1px solid #c7a756;*/
/*    border-left: none;*/
/*}*/

/*.pagination li.prev, .pagination li.next {*/
/*    display: block;*/
/*    text-align: center;*/
/*    width: 38px;*/
/*    height: 38px;*/
/*    font-size: 14px;*/
/*    color: #c7a756;*/
/*    padding: 0.5rem 0.75rem;*/
/*    border: 1px solid #c7a756;*/
/*    border-left: none;*/
/*}*/

/*.pagination li.prev, .pagination li.next {*/
/*    display: block;*/
/*    text-align: center;*/
/*    width: 38px;*/
/*    height: 38px;*/
/*    font-size: 14px;*/
/*    color: #c7a756;*/
/*    padding: 0.5rem 0.75rem;*/
/*    border: 1px solid #c7a756;*/
/*    border-left: none;*/
/*}*/

/*.pagination li.next a, .pagination li.prev a {*/
/*    color: #c7a756;*/
/*}*/

/*.pagination li.prev {*/
/*    border: 1px solid #c7a756;*/
/*}*/

/*.pagination li.next.disabled, .pagination li.prev.disabled {*/
/*    border: 1px solid #B9B9B9FF;*/
/*    color: #B9B9B9FF;*/
/*}*/

/*.pagination li:first-child {*/
/*    margin-left: 0;*/
/*    border-top-left-radius: 0.25rem;*/
/*    border-bottom-left-radius: 0.25rem;*/
/*}*/

/*.pagination li:last-child {*/
/*    border-top-right-radius: 0.25rem;*/
/*    border-bottom-right-radius: 0.25rem;*/
/*}*/

/*.pagination li.active:not(:first-child):not(:last-child) a {*/
/*    z-index: 3;*/
/*    color: #fff;*/
/*    background-color: #c7a756;*/
/*}*/

/*.pagination li:not(.disabled):hover {*/
/*    text-decoration: none;*/
/*    background-color: #e9ecef;*/
/*}*/

/*.pagination li a {*/
/*    text-decoration: none;*/
/*}*/

.swal2-popup {
    border: 1px solid #c7a756;
}

button:focus.swal2-close {
    outline: 0;
    box-shadow: none;
}

button:focus.swal2-default-outline {
    outline: 0;
    box-shadow: none;!important;
}

button:focus.swal2-confirm {
    outline: 0;
    box-shadow: none;!important;
}

/* Кастомизация всплывающего окна SweetAlert */
.custom-swal-popup {
    margin-top: 115px;
    background-color: #f7f9fc; /* Светлый фон, подбирайте по своему дизайну */
    color: #494949; /* Цвет текста */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Легкая тень */
    border-radius: 10px; /* Закругленные углы */
    padding: 20px; /* Внутренние отступы */
}

/* Стиль для полосы прогресса */
.custom-swal-timer-progress-bar {
    background-color: #c7a756 !important; /* Цвет полосы, соответствующий вашему стилю */
}

/* Для отступов и выравнивания */
.swal2-title {
    margin: 0; /* Убираем отступы заголовка */
    font-weight: bold; /* Жирный текст заголовка */
}

/* Настройки для мобильных устройств */
@media (max-width: 768px) {
    .custom-swal-popup {
        padding: 15px;
        margin-top: 125px;
    }
}


