/* .product__image img { */
/*     width: auto; */
/*     max-height: 270px; */
/*     margin: 0 auto; */
/* } */

/*.category-page > .container {*/
/*    position: relative;*/
/*}*/

.category-page > .container > .alert {
    position: sticky;
    top: 50px;
    z-index: 5;
    right: 0;
    background: #0a58ca;
    color: white;
    font-weight: bold;
    font-size: 16px;
    opacity: 1;
    transition: opacity .3s;
}

.category-page > .container > .alert.hidden {
    opacity: 0;
}

.category-page__banner {
    width: 100%;
}

.product_favourite.active svg.active-icon {
    display: block;
}
.product_favourite.active svg.inactive-icon {
    display: none;
}
.product_favourite svg.active-icon {
    display: none;
}
.product_favourite svg.inactive-icon {
    display: block;
}

.form__input:not(.is-invalid) ~.invalid-feedback {
    display: none;
}

.invalid-feedback {
    color: red;
}

.popupform#otpModal {
    max-width: 549px;
}

.alert-favadd {
    z-index: 99999;
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    filter: grayscale(10%);
    pointer-events: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.header__social .social__item {
    margin-left: 8px;
    margin-right: 8px;
}

.social__item svg, .social__item img {
    width: 32px;
    height: 32px;
}

@media (max-width: 420px) {
    .social__item svg, .social__item img {
        width: 42px;
        height: 42px;
        max-width: initial;
    }
}

@media (max-width: 575.98px) {
    .cart-product__numbers {
        top: 130px;
    }
}

.form-group.position-relative input {
    padding-right: 32px;
}

.form-clear {
    align-items: center;
    background: #cecece;
    border-radius: 50%;
    bottom: 8px;
    color: rgba(0, 0, 0, .54);
    cursor: pointer;
    display: flex;
    height: 24px;
    justify-content: center;
    position: absolute;
    right: 8px;
    width: 24px;
    z-index: 10;
}

.form-text+.form-clear {
    bottom: calc(1rem + 18px);
}

.form-clear .material-icons {
    font-size: 16px;
    font-weight: 500;
}

.product__subtitle a {
    color: #021a15;
}
.product__subtitle a:hover {
    color: #cc9755;
}

#filters::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
#filters {
    overflow-y: auto;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.filter__wrap.is-open {
    overflow-y: auto;
}

.filter__wrap::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

.filter__wrap::-webkit-scrollbar
{
    width: 4px;
    background-color: #F5F5F5;
}

.filter__wrap::-webkit-scrollbar-thumb
{
    background-color: #000000;
    border: 2px solid #555555;
}



/* Анимация спиннера */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Блокировка прокрутки при показе спиннера */
body.loading-overlay-active {
    overflow: hidden !important;
}

  