/* start header */
:root {
    --main-color: #FFED00;
    --main-color-hover: #ffe8a2;
    --white-color: #fff;
    --black-color: #000;
}



.header-menu__container {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-menu__item {
    display: inline-block;
    margin: 0 30px 0 0;
}

.header-menu__item:last-child {
    margin: 0;
}

.header-menu__link {}

.header-menu__link:hover,
.header-menu__link:active,
.header-menu__link:focus {}

.header__content {
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__container {
    box-shadow: 0 10px 10px rgb(0 0 0 / 5%);
}

.header__container.home_page {
    box-shadow: none;
}

.header-content__block_1 {
    min-width: 185px;
}

.header-content__block_2 {
    margin-left: 32px;
}

.header-content__block_3 {
    width: 100%;
}

.header-content__block {
    /* flex: 0 0 33%; */
}

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

.header__mail,
.header__telephone {
    font-weight: 700;
    white-space: nowrap;
}

.header__telephone:hover,
.header__telephone:active,
.header__telephone:focus {}

.header__recall {
    background: #C5C6C6;
    padding: 0px 10px;
    white-space: nowrap;
    border-radius: 5px;
}

.header__recall:hover,
.header__recall:active,
.header__recall:focus {
    color: inherit;
    background: var(--main-color);
}

.header__status {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.status__link {
    margin: 0 30px 0 0;
    display: flex;
    align-items: center;
}

.status__link:last-child {
    margin: 0;
}

.status__count_mobile {
    margin: 0 0 0 5px;
    top: 2px;
    display: inline-block;
    position: relative;
    background: #FFED00;
    color: #000;
}

.owl-stage-outer {
    border-radius: 20px;
}

.status__count_mobile_menu {}

.status__count_mobile_cart {
    right: -9px;
}

.button,
.btn {
    border-radius: 8px;
    cursor: pointer;
    padding: 12px;
    position: relative;
    background: #F0F0F0;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    border: none;
}

.add_to_card_btn span {
    display: none;
    font-size: 18px;
}

.catalog_btn.btn {
    background: #000;
    color: #fff;
}

.cart_btn {
    background: var(--main-color);
}

.pchone_btn,
.account_btn,
.wishlist_btn {
    background: #F0F0F0;
}

.btn:hover {
    background: var(--main-color);
    color: #000;
}

.cart_btn:hover {
    background: var(--main-color);
}

.header_phone_box {
    display: flex;
    gap: 10px;
    margin-right: 10px;
}

.header_phone_item {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.header-content__block_4 {
    display: flex;
    align-items: center;
}

@media screen and (min-width: 992px) {

    .cart_btn,
    .catalog_btn {
        padding: 12px 24px;
    }

}

.header-mobile__button svg,
.btn svg {
    width: 16px;
    height: 16px;
}

.svg_text {
    margin-left: 8px;
    font-size: 16px;
    font-weight: 700;
}


.status__image {
    display: flex;
    position: absolute;
    height: 18px;
    width: 18px;
    background: transparent;
    border-radius: 50%;
    right: -7px;
    top: -7px;
    color: #fff;
    text-align: center;
    justify-content: center;
    font-weight: 700;
    font-size: 10px;
    line-height: 1.8;
}

.status__image.is {
    background: #000;
}

.status__price {
    font-size: 12px;
    font-weight: 700;
}

.status-price__text {
    padding: 0 0 0 15px;
}

.header-statusmobile__content {
    width: 100px;
    display: flex;
    justify-content: space-between;
    gap: 0 10px;
}

.header-statusmobile__link {
    margin: 0 30px 0 0;
}

.header-statusmobile__link:last-child {
    margin: 0;
}

.header__catalog {
    background: #080808;
}

.header-catalog__container {
    display: flex;
    justify-content: space-between;
    position: relative;
    height: 50px;
}

.header-catalog__link {
    font-family: Nunito;
    font-weight: 400;
    font-size: 14px;
    display: flex;
    height: 100%;
    align-items: center;
    cursor: pointer;
    padding: 8px 0px;
    transition: 0.2s;
}

.header-catalog__item {
    list-style: none;
}

.catalog_dropdown_menu {
    position: absolute;
    z-index: 9;
    background: #fff;
    padding: 15px;
    box-shadow: 0 5px 15px #00000040;
    border-radius: 15px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    pointer-events: none;
}

.catalog_dropdown_menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.header-catalog__item:hover .header-catalog__link {
    color: var(--main-color);
}

.header-catalog__sub {
    left: 0;
    right: 0;
    position: absolute;
    top: 100%;
}

.header-catalog-sub__container {
    padding: 20px;
    min-width: 200px;
    max-width: 940px;
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 100000 !important;
    /*reset jquery ui*/
    transition-property: opacity, visibility;
    transition-duration: .3s, .3s;
    transition-delay: .3s, .3s;
    background: #fff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.header-catalog__item:hover .header-catalog-sub__container {
    opacity: 1;
    visibility: visible;
}

.header-catalog-sub__content:last-child {
    padding: 0;
}

.header-catalog-sub__item {
    margin: 0 0 10px 0;
}

.header-catalog-sub__item:last-child {
    margin: 0;
}

.header-catalog-sub__link {}

.header__search {
    display: none;
    background: #000;
    padding: 10px 0;
}

@media (max-width: 992px) {
    .header__search {
        display: block !important;
        background: #fff;
    }
}

.header-search__container {
    position: relative;
    display: flex;
}

.header-search__input {
    height: 40px;
    border: 1px solid #d3d3d3;
    border-radius: 8px;
    padding-right: 40px;
}

.header-search__input:hover,
.header-search__input:focus,
.header-search__input:active {
    border-color: #d3d3d3;
}

.header-search__button {
    height: 40px;
    width: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
}


.header__mobile {
    background: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999999;
    box-shadow: 0 10px 10px rgb(0 0 0 / 5%);
}

.header-mobile__container {
    padding: 14px 15px;
    display: flex;
    flex-flow: wrap;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.header-mobile__item_1 {
    flex: 0 0 20%;
    display: flex;
    justify-content: flex-start;
}

.header-mobile__item_2 {
    flex: 0 0 60%;
    max-width: 160px;
    display: flex;
    justify-content: center;
}

.header-mobile__item_3 {
    flex: 0 0 20%;
    display: flex;
    justify-content: flex-end;
}

.header-mobile__button {
    margin: 0 8px 0 0;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header-mobile__button:last-child {
    margin: 0;
}

.header-mobile__button_menu {
    /* background: url('/catalog/view/theme/default/image/header/menu_mobile.svg') no-repeat center center transparent; */
}

.header-mobile__button_search {
    /* background: url('/catalog/view/theme/default/image/header/search_mobile.svg') no-repeat center center transparent; */
}

.header-mobile__button_cart {
    /* background: url('/catalog/view/theme/default/image/header/cart_mobile.svg') no-repeat center center transparent; */
}

.header__menumobile {
    max-height: 480px;
    overflow-y: scroll;
}

.header-menumobile__item {
    padding: 10px 0;
}
.header-menumobile__item .dropdown__container .header-menumobile__item:nth-child(even) {
    background: #ebebeb;
}
.header-menumobile__heading {
    position: relative;
    padding: 0 25px 0 0;
}

.header-menumobile__heading:after {
    transform: rotate(90deg);
}

.header-menumobile__heading:before,
.header-menumobile__heading:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 0;
    width: 10px;
    height: 2px;
    background: #000;
}

.header-menumobile__heading:hover:before,
.header-menumobile__heading:hover:after {
    background: #FFED00;
}

.header-menumobile__heading_active:after {
    visibility: hidden;
}

.header-menumobile__active:after {
    visibility: hidden;
}

.header-menumobile__link {
    color: #000;
    cursor: pointer;
    display: block;
}
.dropdown__container.header-menumobile_sub_js {
    padding: 0;
}
.dropdown__container.header-menumobile_sub_js .header-menumobile__link {
    padding: 10px;
}
.dropdown__container.header-menumobile_sub_js .header-menumobile__item {
    padding: 0;
}
.header-menumobile__link:hover,
.header-menumobile__link:active,
.header-menumobile__link:focus {
    color: #FFED00;
}

/* end header */
/* start footer */
.footer__container {
    padding: 40px 0 0;
    background: #1D1D1B;
    color: #fff;
    margin-top: 30px;
}

.footer__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer__item {
    margin: 0 0 30px;
    flex: 1 0 25%;
}

.footer__item_small {
    display: flex;
    flex-flow: column;
    margin-bottom: 14px;
    background-repeat: no-repeat;
    padding-left: 40px;
}

.footer__item_small_1 {
    background-image: url(/catalog/view/theme/default/image/footer/footer_icon_1.svg);
}

.footer__item_small_2 {
    background-image: url(/catalog/view/theme/default/image/footer/footer_icon_2.svg);
}

.footer__item_small_3 {
    background-image: url(/catalog/view/theme/default/image/footer/footer_icon_3.svg);
}

.footer__item_small_4 {
    background-image: url(/catalog/view/theme/default/image/footer/footer_icon_4.svg);
}

.footer__item_small .title {
    margin-bottom: 5px;
    font-family: Prosto One;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

.footer__item_small_2 span,
.footer_tell,
.footer_mail {
    color: var(--main-color);
    font-family: Prosto One;
}

@media (max-width: 991px) {
    .footer__item {
        flex: 0 0 33%;
    }

    .footer__item_4 {
        flex: 0 0 100%;
    }
}

@media (max-width: 767px) {
    .footer__item {
        flex: 0 0 100%;
    }
}

.footer__heading {
    margin: 0 0 20px 0;
    font-weight: 700;
    font-size: 16px;
}

.footer-menu__item {
    margin: 0 0 10px;
}

.footer-menu__item:last-child {
    margin: 0;
}

.footer-menu__link {
    color: #F0F0F0;
}

.footer__subscribe {
    position: relative;
    margin: 0 0 30px;
}

.footer__subscribe .error,
.footer__subscribe .success_str {
    position: absolute;
    left: 0;
}

.subscribe__content {
    position: relative;
}

.subscribe__input {
    width: 100%;
    padding: 5px 45px 5px 15px;
    border: 1px solid transparent;
    color: #000;
}

.subscribe__input:hover,
.subscribe__input:focus,
.subscribe__input:active {
    border-color: transparent;
}

.subscribe__button {
    position: absolute;
    top: 0;
    right: 0;
    height: 30px;
    width: 40px;
    background: url('/catalog/view/theme/default/image/footer/send.png') no-repeat center center;
    cursor: pointer;
}

.subscribe__button:hover {
    background-image: url('/catalog/view/theme/default/image/footer/send_hover.png');
}

.footer__social {
    display: flex;
    flex-wrap: wrap;
}

.footer-social__item {
    margin: 0 5px 0 0;
    background: no-repeat center center #000;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.footer-social__item:hover {
    background-color: #FFED00;
}

.footer-social__item_1 {
    background-image: url("../image/footer/social_1.png");
}

.footer-social__item_2 {
    background-image: url("../image/footer/social_2.png");
}

.footer-social__item_3 {
    background-image: url("../image/footer/social_3.png");
}

.footer__powered {
    padding: 10px 0 0;
    border-top: 1px solid #2e2e2e;
}

.footer-powered__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #858585;
}

.footer-powered__item {
    margin: 0 0 10px;
}

.footer__payment {
    display: flex;
    flex-wrap: wrap;
}

.footer-payment__item {
    margin: 0 3px 0 0;
    height: 35px;
    width: 57px;
    background: no-repeat center center;
}

.footer-payment__item_1 {
    background-image: url("../image/footer/payment_1.png");
}

.footer-payment__item_2 {
    background-image: url("../image/footer/payment_2.png");
}

.footer-payment__item_3 {
    background-image: url("../image/footer/payment_3.png");
}

/* end footer */
/* start home */
#content.home {
    padding: 0;
}

.home__slideshow {
    margin: 0 auto 50px;
    width: 100%;
}

.home__banner {
    margin: 0 0 100px 0;
}

.home__brands {
    margin: 0 0 100px 0;
}

.home__product {
    margin: 0 0 100px;
}

.home__news {
    margin: 0 0 100px;
}

.home__about {
    margin: 0 0 50px;
}

.home__gallery {
    margin: 0 0 50px 0;
}

@media (max-width: 991px) {
    .home__module {
        margin: 0 0 40px;
    }

    .header-mobile__container {
        padding: 10px 15px;
    }
}


@media (max-width: 450px) {
    .home__module {
        margin: 0 0 30px;
    }

    .header-mobile__item_2 {
        max-width: 110px;
    }

    .header-mobile__button {
        margin: 0 5px 0 0;
        height: 35px;
        width: 35px;
        padding: 0;
        min-width: auto;
    }

    .header-mobile__container {
        padding: 10px 10px;
    }
}

.slideshow__container {
    position: relative;
}

.slideshow__nav_prev {
    left: 20px;
}

.slideshow__nav_next {
    right: 20px;
}

@media(max-width: 1199px) {
    .slideshow__nav_prev {
        left: 10px;
    }

    .slideshow__nav_next {
        right: 10px;
    }
}

.home-banner__content {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.home-banner__item {
    position: relative;
    flex: 1 1 auto;
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
}

.home-banner__item img {
    transition: 0.2s;
}

.home-banner__item:hover img {
    transform: scale(1.2);
}

.home-banner__item:hover a {
    color: inherit;
}

.banner_title {
    font-weight: 400;
    position: absolute;
    bottom: 0;
    padding: 10px;
    max-width: 150px;
    font-family: Prosto One;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    margin: auto;
    left: 0;
    right: 0;
}


@media(max-width: 600px) {
    .home-banner__content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

.adv__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 100px;
}


@media (max-width: 1199px) {
    .adv__item {
        flex: 0 0 50%;
    }
}

@media (max-width: 767px) {
    .adv__item {
        flex: 0 0 100%;
    }
}

.heading_module {
    margin: 0 0 32px 0;
    display: block;
    font-family: Prosto One;
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
}

.heading_module a {
    margin-left: auto;
}

.adv__item {
    padding: 10px;
    display: flex;
    background: #F8F8F8;
    border-radius: 8px;
    align-items: center;
}

.adv__title {
    margin-right: 20px;
}

.adv__descr {
    font-family: Prosto One;
    font-weight: 400;
    font-size: 22px;
    line-height: 100%;

}

/* end home */
/* start category */
.category-menu__buttons {
    display: flex;
    justify-content: space-between;
    margin: 0 0 20px 0;
}

.category-menu__container {
    margin-bottom: 30px;
    border: 1px solid #d3d3d3;
}

.category__banner {
    margin-bottom: 30px;
}

.category__sub {
    margin-bottom: 50px;
}

.category-menu-image__container {
    display: flex;
    flex-flow: wrap;
    gap: 24px;
    margin-bottom: 30px;
}

.category-menu-image__item {
    flex: 0 1 calc((100% - 3 * 24px) / 4);
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    padding: 5px;
}

.category-menu-image__title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
    min-height: 30px;
    text-align: center;
}

.category-menu-image__item img {
    margin: auto;
    transition: 0.3s;
    border: 1px solid #D7D7D7;
    border-radius: 20px;
}

.category-menu-image__item:hover img {
    opacity: 0.8;
    border: 1px solid #FFED00;
    border-radius: 20px;
}

.category__sort {
    margin: 0 0 10px;
    text-align: right;
    display: flex;
    align-items: center;
}

.category-sort__box button {
    color: #bdbdbd;
    transition: 0.2s;
}

.category-sort__box button.active,
.category-sort__box:hover button {
    color: var(--main-color);
}

.category__sort .selectboxit-arrow-container {
    width: 30px;
    position: relative;
    margin: 0 0 0 5px;
}

.sort__item.sort__item_list {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.sort__item {
    display: inline-block;
    line-height: 35px;
}

.category__info {
    display: block;
    margin-top: 40px;
}

.category-sort__select,
.category-sort__select:active,
.category-sort__select:focus,
.selectboxit-container:hover .category-sort__select.selectboxit-btn {
    border-color: transparent;
}

/* end category */
/* start product */
.goods__container {
    margin: 0 0 24px;
}

.goods__container_box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 600px;
    gap: 0 100px;
}

.goods__container_box_item,
.goods__container_right_box {
    background: #F8F8F8;
    padding: 25px 30px;
    border-radius: 15px;
}

.goods__container_right_box_top {
    margin-bottom: 24px;
}

.goods__container_right_box_bottom {
    display: flex;
    gap: 25px;
}

.goods__container_box_item {
    flex: 1 1 50%;
}

.goods__container_box_item_title {
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.goods__container_box_item ul {
    padding-left: 20px;
    list-style: disc;
}

.goods__container_box_item li {
    margin: 0 0 10px;
}

@media screen and (max-width: 991px) {
    .goods__container_box {
        grid-template-columns: 1fr minmax(300px, 600px);

    }
}

@media screen and (max-width: 800px) {
    .goods__container_box {
        grid-template-columns: 1fr minmax(300px, 520px);

    }
}

@media screen and (max-width: 767px) {
    .goods__container_box {
        display: flex;
        flex-flow: column;
    }

    .category-menu-image__item {
        flex: 1 1 calc((100% - 3 * 24px) / 2);
    }
}

.goods__title {
    margin: 0 0 30px;
    font-size: 24px;
    font-family: "Prosto One", sans-serif;
    font-weight: 400;
}

.goods__image {
    position: relative;
    margin: 0 0 20px;
    display: block !important;
    /*fix IE easyzoom*/
}

.goods__images {
    position: relative;
    margin: 0 0 30px;
}

.units__container_carousel,
.goods__images .thumbs_owl_js {
    width: calc(100% - 65px);
    margin: auto;
}

.goods-sticker__container_mobile {
    display: none;
    z-index: 99;
}

@media (max-width: 991px) {
    .goods-sticker__container_mobile {
        display: block;
    }
}

.goods__share {
    margin: 20px 0 30px;
}

.share_box {
    display: flex;
    gap: 10px;
    align-items: center;
}

.goods__property_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.goods__property {
    display: flex;
    flex-flow: column;
    gap: 10px;
}

.property__item {
    font-size: 16px;
}

.property__item_model {
    color: #888883;
}

.property__item_manufacturer {
    flex: 0 0 15%
}

.stock__container {
    position: relative;
}

.stock_in {
    color: #3BB728;

}

.stock_out {
    color: #ea0b0c;
}

@media(max-width: 450px) {
    .property__item {
        flex: 0 0 100%;
        margin: 0 0 15px;
    }

    .property__item:last-child {
        margin: 0;
    }
}

.goods__option {
    margin: 0 0 30px 0;
}

.option__container {
    margin: 0 0 30px;
}

.option__container:last-child {
    margin: 0;
}

.option__title {
    margin: 0 0 15px 0;
    font-weight: 700;
}

.option__item {
    display: block;
    margin: 0 0 5px;
}

.option__item:last-child {
    margin: 0;
}

.option__label {
    margin: 0;
}

.option-color__container {
    display: flex;
    flex-wrap: wrap;
}

.goods-color__item {
    margin: 0 5px 5px 0;
    text-align: center;
    background-color: #fff;
    border: 2px solid transparent;
}

.goods-color__item:hover,
.goods-color__item_active {
    border: 2px solid #FFED00;
}

.option__item_image {
    margin: 5px;
}

.option__radio_image+.option__label:before,
.option__radio_image:checked+.option__label:before {
    /* reset label */
    content: unset;
}

.option__radio_image+.option__label:after,
.option__radio_image:checked+.option__label:after {
    /* reset label */
    content: unset;
}

.option__img {
    border: 1px solid transparent;
}

.option__radio_image:checked+.option__label .option__img,
.option__img:hover {
    border: 1px solid #FFED00;
}

.goods__price {
    position: relative;
    font-size: 28px;
    margin: 0 0 36px 0;
    display: flex;
    align-items: center;
    gap: 25px;
}

.goods-price__item_new {
    color: #000;
    font-weight: 800;
    font-size: 32px;
    line-height: 38.4px;
}

.goods-price__item_old {
    text-decoration: line-through;
    font-weight: 700;
    font-size: 18px;
    color: #888883;
}

.goods__alert {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-size: 14px;
    font-weight: 600;
}

.goods__buttons {
    margin: 0 0 30px 0;
}

.goods-buttons__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}


@media (max-width: 450px) {
    .goods-buttons__item {
        margin: 0 0 15px 0;
        flex: 0 0 100%;
    }
}

.goods__input_js {
    background: inherit;
}

.goods-buttons__button {
    height: 56px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    cursor: pointer;
}

.button-cart_js {
    background: var(--main-color);
}

.goods-buttons__container .wishlist_btn {
    margin-left: 30px;
}

.goods-buttons__button:hover {
    background: var(--main-color-hover);
}

.goods-buttons__button_2 {
    padding: 0 0 0 20px;
    cursor: pointer;
}

.goods-buttons__button_2:hover {
    color: #FFED00;
}

.goods-buttons__button_wishlist {
    background: url('/catalog/view/theme/default/image/product/wishlist.png') no-repeat left center transparent;
}

.goods-buttons__button_wishlist:hover,
.goods-buttons__button_wishlist:focus,
.goods-buttons__button_wishlist:active {
    background-image: url('/catalog/view/theme/default/image/product/wishlist_hover.png');
}

.goods-buttons__button_compare {
    background: url('/catalog/view/theme/default/image/product/compare.png') no-repeat left center transparent;
}

.goods-buttons__button_compare:hover,
.goods-buttons__button_compare:focus,
.goods-buttons__button_compare:active {
    background-image: url('/catalog/view/theme/default/image/product/compare_hover.png');
}

.goods__quantity {
    display: flex;
    height: 56px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #C6C6C6;
    border-radius: 8px;
}

.btn.button-cart_js {
    width: 185px;
}

.goods-quantity__edit {
    position: relative;
    width: 30px;
    height: 50px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .goods-buttons__item {
        width: 100%;
    }

    .btn.button-cart_js {
        width: calc(100% - 66px);
    }
}

.goods-quantity__edit:before,
.goods-quantity__edit:after {
    position: absolute;
    content: '';
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 12px;
    height: 2px;
    background: #d3d3d3;
}

.goods-quantity__edit_plus:after {
    transform: rotate(90deg);
}

.goods-quantity__edit_minus:after {
    width: 0;
}

.goods-quantity__edit:hover:before,
.goods-quantity__edit:hover:after {
    background: #FFED00;
}

.goods-quantity__input,
.goods-quantity__input:hover,
.goods-quantity__input:active,
.goods-quantity__input:focus {
    width: 50px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: none;
    border: 0;
}

.tabs__content {
    border: 1px solid #F8F8F8;
    padding: 32px;
    margin-bottom: 50px;
    border-radius: 0 8px 8px 8px;
}

@media (max-width: 991px) {
    .tabs__content {
        border-bottom: 1px solid #F8F8F8;
        display: block !important;
        border-radius: 8px;
    }
}

.tabs {
    display: table;
    width: 100%;
}

@media (max-width: 991px) {
    .tabs {
        display: none;
    }
}

.tabs__link {
    float: left;
    z-index: 999;
    color: #858585;
    margin: 0 2px -1px 0;
    padding: 12px 32px;
    border-top: 1px solid;
    border-left: 1px solid;
    border-right: 1px solid;
    border-bottom: 1px solid;
    border-color: #F8F8F8;
    border-radius: 8px 8px 0 0;
    background: #F8F8F8;
    font-family: Prosto One;
    font-weight: 400;
    font-size: 16px;
}

.tabs__link.active,
.tabs__link:hover {
    background: #fff;
    border-bottom: 1px solid #fff;
    color: var(--black-color);
}

@media (max-width: 767px) {
    .tabs__link {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 450px) {
    .tabs__link {
        width: 100%;
        text-align: center;
        font-size: 16px;
    }

    .tabs__link.active,
    .tabs__link:hover {
        border-bottom: 1px solid #d3d3d3;
    }
}

.tabs__heading_mobile {
    margin: 0 0 15px;
    font-size: 20px;
    font-weight: 600;
}

.tabs__content_box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.goods__attribute {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 10px;
}

.goods-attribute__str {
    display: flex;
    font-size: 13px;
    justify-content: space-between;
    border-radius: 4px;
}

@media screen and (min-width: 601px) {

    .goods__attribute>.goods-attribute__str:nth-child(4n-3),
    .goods__attribute>.goods-attribute__str:nth-child(4n-2) {
        background-color: #f7f7f7;
    }
}

.goods-attribute__row {
    padding: 8px 16px;
}

.goods-download__item {
    margin: 0 0 15px;
}

.goods-download__item:last-child {
    margin: 0;
}

.goods-download__link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.goods-desc__container {
    border-top: 1px solid #d3d3d3;
}

.goods-desc__container:last-child {
    border-bottom: 1px solid #d3d3d3;
}

.goods-desc__title {
    position: relative;
    padding: 20px 30px 20px 0;
    font-weight: 700;
    cursor: pointer;
}

.goods-desc__title:before {
    top: 21px;
    right: 2px;
}

.goods-desc__title_active:before {
    transform: rotate(45deg);
}

.goods-desc__title_active+.goods-desc__content {
    max-height: 1200px;
    transition: max-height 0.5s ease-in-out;
    margin: 0 0 20px;
}

.goods-desc__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.1s ease-out;
}

.home__video {
    border-radius: 15px;
    overflow: hidden;
    display: flex;
}

video {
    max-width: 100%;
}

.goods__module {
    margin: 0 0 20px;
    padding-bottom: 20px;
}

.goods__module:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.goods__module:last-child {
    margin: 0;
}

@media (max-width: 1199px) {
    .header-menu__item {
        margin: 0 15px 0 0;
    }

    .adv__descr {
        font-size: 16px;
    }

    .unit__price {
        font-size: 14px;
        padding: 2px 10px;
        border-radius: 5px;
    }

    .unit-price__item_special {
        font-size: 14px;
    }

    .unit-price__item_old {
        font-size: 12px;
    }

    .goods-buttons__container .wishlist_btn {
        margin-left: 0;
    }

    .goods__container_box {
        grid-template-columns: minmax(0, 1fr) 550px;
        gap: 0 40px;
    }
}

@media (max-width: 991px) {
    .header__searchmobile_js {
        display: block !important;
        padding-top: 0;
    }

    .goods__module {
        margin: 0 0 40px;
    }

    .wishlist_btn_text {
        display: none;
    }

    .tabs__content_box {
        grid-template-columns: 1fr;
    }

    .adv__content {
        grid-template-columns: repeat(2, 1fr);
    }

    .header__container {
        padding: 80px 0 0 0;
    }

    .unit__price {
        width: 100%;
    }

    .unit__buttons .btn {
        width: calc((100% - 10px) / 3);
        min-width: auto;
    }

    .goods__container_box {
        grid-template-columns: minmax(0, 1fr) 450px;
        gap: 0 20px;
    }

    .goods__container_right_box_bottom {
        flex-flow: column;
    }
}

@media (min-width: 768px) {
    .catalog_btn_mobile_2 {
        display: none;
    }
}

@media (max-width: 767px) {
    .header__container {
        padding: 78px 0 0 0;
    }

    .category-menu-image__title {
        font-size: 14px;
    }

    .units__container {
        gap: 15px;
    }

    .goods__module {
        margin: 0 0 30px;
    }

    .home__video video {
        min-height: 450px;
        object-fit: cover;
    }

    .goods__buttons {
        margin: 0;
    }

    .carousel__nav_continer {
        position: absolute;
        width: 90px;
        right: 0;
        top: -38px;
    }

    .units__container_carousel {
        width: 100%;
    }


    .tabs__content {
        padding: 20px;
        margin-bottom: 24px;
    }

    .catalog_btn_mobile_1 {
        display: none;
    }

    .catalog_btn_mobile_2 {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {

    .goods__attribute,
    .adv__content {
        grid-template-columns: 1fr;
    }

    .goods-attribute__str:nth-child(odd) {
        background-color: #f7f7f7;
    }

    .goods-attribute__row {
        text-align: right;
        display: flex;
        align-items: center;
    }

    .goods-attribute__heading {
        width: 200px;
        text-align: left;
    }
}


.header__logo {
  
  margin-top: -25px;
}
.header__content {
  padding: 25px 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* end product */