.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    border: 16px solid #ACCD76;
    border-radius: 50%;
    border-top: 16px solid #35491E;
    width: 100px;
    height: 100px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
    z-index: 99999;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hide-wrapper {
    display: none;
}

.categories_image {
    object-fit: contain;
}

.active_color {
    border: 1px solid black;
    border-radius: 50%;
    padding: 2px;
}

.contacts-footer__title,
.contacts-menu__title {
    cursor: pointer;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ACCD76;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #35491E;
}

.next-slide,
.prev-slide {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #fff;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border: 1px solid #ACCD76;
}

.next-slide {
    right: 0;
}

.prev-slide.swiper-button-disabled,
.next-slide.swiper-button-disabled {
    display: none;
}

.main-image-card {
    position: relative;
}

@media screen and (max-width: 900px) {
    .tabel-catalog__item {
        background: #fff !important;
    }
}

.quantity-info-main-card__title {
    margin-bottom: 10px;
}

.quantity-info-main-card__content {
    width: 30%;
}

.item-cart-header__price._old {
    font-size: 16px;
    font-weight: 400;
    position: relative;
}

.item-cart-header__price._old:after {
    content: "";
    width: 85%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: #F31E1E;
    display: inline-block;
    -webkit-transform: translate(-50%, -50%) rotate(-17deg);
    -ms-transform: translate(-50%, -50%) rotate(-17deg);
    transform: translate(-50%, -50%) rotate(-17deg);
}

.basket_empty {
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
}

._side-block_bottom {
    bottom: auto !important;
}

.item-cart-header__color,
.product-main-cart__color {
    border-radius: 50%;
    width: 24px;
    height: 24px;
}

.search-result {
    position: relative;
    max-height: 500px;
    overflow-y: scroll;
    width: 1156px;
    margin: auto;
    top: 10px;
    left: -30px;
    z-index: 99999;
}

@media screen and (max-width: 1300px) {
    .search-result {
        width: 100%;
        left: 0;
    }
}

.autocomplete-search {
    display: block;
    text-align: left;
    background-color: white;
    padding: 10px 10px 10px 20px;
    color: #35491E;
}

.tags_div {
    position: absolute;
}

.card .tags_div {
    margin-top: 40px;
}

@media screen and (max-width: 900px) {
    .card .tags_div {
        margin-top: 10px;
    }
}

.product_tag {
    position: relative;
    top: 15px;
    left: 15px;
    z-index: 1;
    border-radius: 4px;
    padding: 4px 6px;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    /* font-weight: 600; */
    line-height: normal;
    /* text-transform: uppercase; */
    margin-bottom: 5px;
    text-align: center;
}

.tags_filter {
    display: flex;
    column-gap: 10px;
    overflow: auto;
    padding-bottom: 5px;
}

.tags_filter div {
    border: 1px solid #dee0e3;
    border-radius: 8px;
    padding: 10px;
    display: block;
    cursor: pointer;
}