/* start header */
@media (max-width: 991px) {
    .header__container {
        padding: 45px 0 0 0;
    }
}

.header__menu {
    background: #f1f1f1;
}

.header-menu__container {
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.header-content__block_3 {
    width: 287px;
}

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

.language {
    display: flex;
    gap: 10px;
}

.info_block_item {
    font-size: 16px;
    color: #4A4B4D;
    cursor: pointer;
    font-weight: 600;
    height: 100px;
    padding: 40px 0;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
}

.info_block_item:hover {
    color: #0066AD;
    border-bottom: 2px solid #0066AD;
}

.container_dropdown_block {
    position: absolute;
    z-index: 9999;
    width: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    pointer-events: none;
    transform: translateY(5px);
}

.container_bg {
    background: #fff;
    padding: 10px 0 30px;
    margin-top: 41px;
    box-shadow: 0px 15px 19px rgb(0 0 0 / 18%);
}

.goods__module_related {
    margin-top: 100px;
}

.dropdown__item_block:hover .container_dropdown_block {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.info_block {
    display: flex;
    align-items: center;
    gap: 37px;
}

.header__content {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.header__telephone {
    font-size: 18px;
    font-weight: 600;
}

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

.header__recall {
    color: #0066AD;
    text-decoration: underline;
}

.header__recall:hover,
.header__recall:active,
.header__recall:focus {
    text-decoration: underline;
}

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

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

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

.status__count {
    position: absolute;
    top: -5px;
    right: -11px;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 3px #fff;
    border: 1px solid #d3d3d3;
    font-size: 12px;
    font-weight: 700;
}

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

.status__count_mobile_menu {}

.status__count_mobile_cart {
    right: -9px;
}

.status__image {
    display: block;
    position: relative;
    height: 30px;
    width: 30px;
}

.status__image_wishlist {
    background: url('/catalog/view/theme/default/image/header/wishlist.png') no-repeat center center transparent;
}

.status__link:hover .status__image_wishlist {
    background-image: url('/catalog/view/theme/default/image/header/wishlist_hover.png');
}

.status__image_cart {
    background: url('/catalog/view/theme/default/image/header/cart.png') no-repeat center center transparent;
}

.status__link:hover .status__image_cart {
    background-image: url('/catalog/view/theme/default/image/header/cart_hover.png');
}

.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;
}

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

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

.header__catalog {
    background: #080808;
}

.header-catalog__container {
    display: flex;
    position: relative;
    gap: 40px;
    margin-left: 150px;
}

.header-catalog__link {
    display: flex;
    align-items: center;
    color: #0066AD;
    font-weight: 600;
    cursor: pointer;
    font-size: 18px;
}

.header-catalog__item:hover .header-catalog__link {
    color: #0066AD;
}

.header-catalog__sub {}

.header-catalog-sub__container {
    padding: 20px 0;
    min-width: 200px;
    max-width: 940px;
    display: flex;
    gap: 10px;
}

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

.header-catalog-sub__item {
    margin: 0 0 15px 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 {
    flex: 0 0 100%;
    padding-right: 50px;
    height: 50px;
    border: 1px solid #d3d3d3;
    border-radius: 0 !important;
    border-right: none !important;
    box-shadow: inset 0px 3px 4px rgb(0 0 0 / 25%);
    /*reset jquery ui*/
}

.header-search__input::placeholder {
    font-style: 16px;
    text-transform: uppercase;
    color: #C0C2C3 !important;
}

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

.header-search__button {
    height: 50px;
    width: 50px;
    background: url('/catalog/view/theme/default/image/header/search.svg') no-repeat center center transparent;
    cursor: pointer;
}

.header-search__button:hover {
    background: url('/catalog/view/theme/default/image/header/search.svg') no-repeat center center #d3d3d3;
}

.header-search__button_2 {
    height: 50px;
    width: 50px;
    position: absolute;
    right: 0;
    border-left: none;
    transition: .2s;
}

.header__mobile {
    background: #fff;
    border-bottom: 1px solid #d3d3d3;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.header-mobile__container {
    padding: 5px 15px;
    display: flex;
    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: block;
    cursor: pointer;
}

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

.hamburger {
    display: flex;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger.is-active:hover {
    opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #000;
}

.hamburger-box {
    width: 40px;
    height: 28px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 40px;
    height: 5px;
    background-color: #4A4B4D;
    border-radius: 25px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -12px;
}

.hamburger-inner::after {
    bottom: -12px;
}

.hamburger--squeeze .hamburger-inner {
    transition-duration: 0.075s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.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.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;
    padding: 40px 50px 10px;
}

.header-menumobile__item {
    padding: 15px 0;
}

.header-menumobile__heading {
    position: relative;
    padding: 0 25px 0 0;
}

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

.header-menumobile__heading:before {
    content: '';
    position: absolute;
    top: -5px;
    bottom: 0;
    right: 0;
    margin: auto 0;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid;
    border-left: 2px solid;
    transform: rotate(-45deg);
    transition: 0.2s
}

.header-menumobile__heading:hover:before {
    border-color: #0066AD;
    transform: rotate(135deg);
    top: 2px;
}

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

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

.header-menumobile__link {
    color: #000;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
}

.header-menumobile__link:hover,
.header-menumobile__link:active,
.header-menumobile__link:focus {
    color: #0066AD;
}

/* end header */
/* start footer */
.footer__container {
    padding: 40px 0 0;
    background: #0066AD;
    color: #fff;
}

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

.container_footer {
    margin: auto;
    max-width: 1440px;
    padding: 0 15px;
}

.footer__item a {
    color: #fff;
}

.footer_item_tel {
    margin-bottom: 25px;
}

.footer_item_mail img,
.footer_item_tel img {
    margin-right: 10px;
}




.footer__item_logo {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    height: 100%;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .footer__item {
        margin: 0 0 30px;
        width: 100%;
        max-width: 200px;
    }

    .footer__item_1 {
        max-width: 245px;
    }

    .footer__item_3 {
        max-width: 250px;
    }

    .footer__item_5 {
        max-width: 250px;
        display: flex;
        flex-flow: column;
    }

}

@media (max-width: 991px) {
    .footer__content {
        padding: 0 50px;
    }

    .footer__item {
        flex: 0 0 33%;
        padding: 0 0 30px;
    }

    .footer__item:not(:last-child) {
        border-bottom: 1px solid #fff;
    }
}

.footer__heading {
    margin: 0 0 25px 0;
    font-weight: 600;
    font-size: 18px;
}

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

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

.footer-menu__link {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.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;
    margin-top: 70px;
    justify-content: space-between;
}

.footer__social_text {
    margin-bottom: 20px;
}

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

.footer_item_tel a,
.footer_item_mail a {
    font-size: 18px;
}

.footer-social__item:hover {
    opacity: 0.8;
}

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

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

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

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

.footer-powered__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.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_slid_top img {
    width: 100%;
}

.home__slideshow {
    max-width: 1366px;
    margin: -262px auto 50px;
    width: 100%;
}

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

.heading_gallery {
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 1.2px;
}

.hasch_gallery {
    font-weight: 600;
    font-size: 25px;
    letter-spacing: 1.5px;
    color: #0066AD;
    margin-top: 10px;
}

.btn_gallery {
    max-width: 256px;
}

.home__gallery__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.home__gallery__content__item_heading {
    width: 350px;
}

.home__gallery__content__item_gallery {
    width: calc(100% - 450px);
}

.gallery-carousel_js:not(.gallery--owl-enabled) {
    display: flex;
}

@media (max-width: 767px) {
    .home__gallery__content {
        display: block;
        margin-bottom: 100px;
    }

    .home__gallery__content__item_heading {
        width: calc(100% - 56px);
        margin: 0 auto 30px;
    }

    .home__gallery__content__item_gallery {
        width: 100%;
    }

}

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

.home__product {
    margin: 0 0 50px;
}

.home__news {
    margin: 0 0 50px;
}

.home__about {
    margin: 0 0 50px;
}

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

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

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

.slideshow__container {
    position: relative;
}

.slideshow__nav_prev {
    left: -20px;
}

.slideshow__nav_next {
    right: -20px;
}


.home-banner__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 20px;
}

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

@media(max-width: 450px) {
    .home-banner__content {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

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

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

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

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

.adv__item {
    padding: 0 0 0 80px;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.adv__item:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
}

.adv__item_1:before {
    background: url('/catalog/view/theme/default/image/advantage/advantage_1.png') no-repeat center center;
}

.adv__item_2:before {
    background: url('/catalog/view/theme/default/image/advantage/advantage_2.png') no-repeat center center;
}

.adv__item_3:before {
    background: url('/catalog/view/theme/default/image/advantage/advantage_3.png') no-repeat center center;
}

.adv__item_4:before {
    background: url('/catalog/view/theme/default/image/advantage/advantage_4.png') no-repeat center center;
}

.adv__title {
    font-weight: 700;
}

.adv__descr {}

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

.category__banner_description {
    font-size: 22px;
    line-height: 1.5;
    text-align: center;
    display: flex;
    flex-flow: column;
}

.ctg_2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.category__banner_item {
    display: flex;
    align-items: center;
}

.category__banner_item img {
    margin: -100px 0 0 auto;
}

.category-menu__button {
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    color: #C0C2C3;
    border: 1px solid #0066AD;
    padding: 15px;
    width: 300px;
    margin-top: 30px;
    position: relative;
}

.category-menu__button:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    bottom: 0;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 8px 7.5px 0 7.5px;
    border-color: #000000 transparent transparent transparent;
}

.category-menu__button.is-active::before {
    border-width: 0 7.5px 8px 7.5px;
    border-color: transparent transparent #000000 transparent;
}

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

.category__banner {
    margin: 120px 0 30px;
    background: #E9F6FF;
}

.category__banner.product__banner {
    margin-bottom: 0;
}

.category__sub {
    margin-bottom: 50px;
}

.category-menu-image__item {
    margin-bottom: 30px;
    text-align: center;
}

.category-menu-image__link {}

.category-menu-image__img {
    margin-bottom: 20px;
}

.category-menu-image__title {
    display: block;
}

.category-menu-image__item:hover .category-menu-image__title {
    color: #0066AD;
}

.category__sort {
    margin: 0 0 30px;
}

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

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

.category__info {
    display: block;
}

.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 50px;
}

.product__container {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 20px;
    margin-top: 80px;
}

.product__container_right {
    padding: 0 10px;
}

.goods__title {
    margin: 0 0 35px;
    font-size: 36px;
    font-weight: 600;
}

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

.easyzoom-flyout img {
    max-width: none;
}

.rating__stars {
    display: flex;
    align-items: center;
    justify-content: center;
}

.goods__rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

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


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

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

.goods__property {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    align-items: center;
    margin: 0 0 30px;
}

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

.property__item_model {}

.property__item_manufacturer {
    flex: 0 0 15%
}

.stock__container {}

.stock_in {
    color: #54ac24;
}

.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 #0066AD;
}

.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 #0066AD;
}

.goods__price {
    position: relative;
    font-size: 28px;
    margin: 0 0 30px 0;
}

.goods-price__item_new {
    margin: 0 15px 0 0;
    color: #ea0b0c;
}

.goods-price__item_old {
    font-size: 20px;
    font-weight: 400;
    text-decoration: line-through;
}

.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;
}

.goods-buttons__item {
    margin: 0 10px 15px 0;
}

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

.goods-buttons__button {
    height: 50px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.goods-buttons__button:hover {
    background-color: #0066AD;
}

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

.goods-buttons__button_2:hover {
    color: #0066AD;
}

.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;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #d3d3d3;
}

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

.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: #0066AD;
}

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

.tabs__content {
    border-left: 1px solid #d3d3d3;
    border-right: 1px solid #d3d3d3;
    border-bottom: 1px solid #d3d3d3;
    padding: 20px;
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .tabs__content {
        margin: 0 0 50px;
        padding: 0 0 30px;
        border: 0;
        border-bottom: 1px solid #d3d3d3;
        display: block !important;
    }
}

.tabs {
    display: table;
    width: 100%;
    border-bottom: 1px solid #d3d3d3;
}

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

.tabs__link {
    float: left;
    z-index: 999;
    margin: 0 2px -1px 0;
    padding: 12px 35px;
    border-top: 1px solid #d3d3d3;
    border-left: 1px solid #d3d3d3;
    border-right: 1px solid #d3d3d3;
    border-bottom: 1px solid #d3d3d3;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
}

.tabs__link.active,
.tabs__link:hover {
    color: #0066AD;
    border-bottom: 1px solid #fff;
}

@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 30px;
    font-size: 26px;
    font-weight: 700;
    display: none;
}

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

.goods__attribute {}

.goods-attribute__str {
    display: flex;
}

.goods-attribute__str:nth-of-type(odd) {
    background-color: #f1f1f1;
}

.goods-attribute__row {
    padding: 10px;
}

.goods-attribute__heading {
    font-weight: 700;
    flex: 0 0 30%;
}

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

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

.goods-download__link {}

.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 70px;
    font-size: 20px;
    cursor: pointer;
}

.goods-desc__mini_container {
    font-size: 20px;
    margin-bottom: 20px;
    padding: 15px;
}

.goods-desc__title:before,
.goods-desc__title::after {
    position: absolute;
    content: '';
    width: 22px;
    height: 1px;
    margin: auto;
    border-top: 1px solid #4A4B4D;
    border-left: 1px solid #4A4B4D;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.goods-desc__title_active:after {
    transform: translateY(-50%) rotate(90deg);
}

.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;
    padding-left: 70px;
}

.goods__module {
    margin: 0 0 50px;
}

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

.product_box_item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.review_title {
    font-size: 38px;
    font-weight: 600;
}

.product_box_item_review_left {
    display: flex;
    flex-flow: column;
    text-align: center;
    align-items: center;
    margin-top: 20%;
    position: relative;
}

.average_rating {
    font-size: 48px;
    font-weight: bold;
    border-top: 2px solid;
    padding-top: 20px;
    margin-top: 30px;
}

.form__container_review #textarea_enquiry {
    height: 35px;
}

.form__container_review #textarea_enquiry,
.form__container_review #input_name {
    border-left: none;
    border-right: none;
    border-top: 0;
    border-bottom: 2px solid;
    font-size: 12px;
}

.product_box_item_review_left::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 300px;
    background: #000;
    right: 70px;
    top: -40px;
}

.description_left__content {
    text-align: center;
}

.product_box_item_description_left,
.product_box_item_description_right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.img_description {
    width: 100%;
    grid-column: span 2 / span 2;
    border-top: 1px solid #E2E5F1;
    border-bottom: 1px solid #E2E5F1;
    padding: 30px 0;
    margin: 30px 0;
}

.tag_1 {
    font-size: 20px;
    line-height: 150%;
    display: block;
}

.tag_2 {
    font-weight: 600;
    font-size: 36px;
    line-height: 100%;
    display: block;
    max-width: 410px;
    margin: 10px auto 20px;
}

.tag_3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    display: block;
    margin-bottom: 40px;
}

.description_left__content p {
    font-size: 20px;
}

.box_popup {
    position: fixed;
    top: 20%;
    margin: auto;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    max-width: 420px;
    padding: 20px;
    box-shadow: 0 0 20px rgb(0 0 0 / 16%);
    border-radius: 10px;
    transition: 0.2s;
    opacity: 0;
    visibility: hidden;
}

.bg_owerlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
}

.bg_owerlay.active {
    display: block;
}

.box_popup.active {
    opacity: 1;
    visibility: visible;
}

.box_popup_close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.box_popup__name {
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    max-width: 300px;
    margin-bottom: 10px;
    margin-top: 40px;
}

.box_popup_weight {
    font-weight: 500;
}

.box_popup__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    margin: 40px 0 10px;
}

.box_popup__title2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.box_popup__content {
    display: flex;
    gap: 30px 10px;
    flex-wrap: wrap;
}

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

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

@media screen and (max-width: 1440px) {
    .language_item img {
        max-width: 40px;
    }

    .header-search__input {
        height: 40px;
    }

    .header-search__button_2 {
        height: 40px;
        width: 40px;
        background-size: 20px 20px;
    }

    .carousel__container {
        max-width: calc(100% - 56px);
        margin: auto;
    }
}

@media screen and (max-width: 1199px) {
    .info_block {
        gap: 15px;
    }

    .footer__item_5 {
        width: 100%;
        max-width: 100%;
    }

    .footer__social {
        margin-top: 30px;
    }

    .category__banner_item img {
        margin: -61px 0 0 auto;
        max-width: 400px;
    }

    .category__banner_description {
        font-size: 18px;
    }

    .goods__title {
        margin: 0 0 20px;
        font-size: 22px;
        font-weight: 500;
    }
}

@media screen and (max-width: 991px) {
    .header-mobile__button_search {
        background-size: 40px 40px;
    }

    .heading::before {
        top: 15px;
    }

    .category__banner {
        margin: 0px 0 30px;
        padding: 20px;
    }

    .category__banner_item {
        flex-flow: column;
    }

    .breadcrumb__box_catalog {
        text-align: center;
    }

    .category__banner_item img {
        margin: 20px 0 0;
    }

    .product__container {
        grid-template-columns: 500px 1fr;
        gap: 10px;
        margin-top: 15px;
    }

    .goods__images.carousel__container {
        max-width: 100%;
    }

    .goods__images .carousel__nav_prev {
        left: 10px;
    }

    .goods__images .carousel__nav_next {
        right: 10px;
    }

    .product_box_item {
        display: flex;
        flex-flow: column;
    }

    .product_box_item_review_left::before {
        display: none;
    }

    .product_box_item_review_left {
        margin-top: 0;
    }

    .review_title::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        background: #E2E5F1;
        left: 0;
        top: 32px;
        z-index: 0;
    }

    .review_title span {
        background: #fff;
        padding: 0 50px;
        z-index: 1;
        position: relative;
    }

    .reviews_info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 8px;
        margin-top: 50px;
        align-items: baseline;
    }

    .rating__total {
        grid-column-start: 1;
        grid-row-start: 2;
        text-align: left;
        transform: translate(7px, -12px);
    }

    .average_rating {
        font-size: 36px;
        font-weight: bold;
        border-top: none;
        padding-top: 0;
        margin-top: 0;
        grid-row: span 2 / span 2;
        grid-column-start: 2;
        grid-row-start: 1;
        border-left: 2px solid;
        padding-left: 30px;
        align-content: center;
    }

    .rating__stars {
        justify-content: flex-start;
    }

    .category__banner.product__banner {
        margin: 40px 0 0;
    }

    .social_mobile_menu {
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid #0066AD;
        padding-bottom: 20px;
        margin: 40px 0 20px;
        gap: 30px;
    }

    .social_mobile_menu .footer-social__item {
        border: 1px solid #0066AD;
        border-radius: 50px;
        width: 44px;
        height: 44px;
    }

    .contct_mobile_menu {
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .contct_mobile_menu a {
        font-size: 16px;
        font-weight: 500;
    }

    .contct_mobile_menu_item img {
        margin: 0 10px 0 0;
    }

    .language_mobile_menu {
        justify-content: center;
        margin-top: 30px;
    }

    .menu-is-active {
        overflow: hidden;
    }
}

@media screen and (max-width: 767px) {
    .gallery__container .is-last-active img {
        transform: scale(0.95);
    }

    .units__container_3 {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .footer__item {
        flex: 0 0 100%;
    }

    .footer__item_logo {
        align-items: center;
    }

    .footer__social {
        justify-content: center;
        gap: 15px;
    }

    .footer__social_text {
        width: 100%;
        text-align: center;
        border-top: 1px solid #fff;
        padding-top: 30px;
    }

    .footer_item_mail,
    .footer_item_tel {
        text-align: center;
    }

    .unit__content img {
        width: 100%;
    }

    .unit__image img {
        min-height: 258px;
        object-fit: fill;
    }

    .product__container {
        display: flex;
        flex-flow: column;
        margin-top: -20px;
    }

    .goods__images.carousel__container {
        margin-bottom: 30px;
    }

    .goods__property {
        margin: 0 0 20px;
    }

    .property__item_weight {
        font-size: 16px;
        font-weight: 600;
    }

    .goods__title {
        margin: 0 0 5px;
    }

}

/* end product */