@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --header-line-color: #E7E7E7;
    --card-border-color: #979797;
    --main-color: #E42035;
    --hover-button-color: #b81c2c;
    --link-hover-color: #ce535f;
    --text-grey-color: #8C8C8C;
    --brand-card-background: #F8F8F8;
    --contrast-color: #231F20;
    --checkbox-pressed: #ee1e39;
    --checkbox-not-pressed: #D8D8D8;
    --hover-mobile-menu-color: #b81c2ce7;
    --breadcrumbs-color: #BEBEBE;
    --background-btn-for-filter: #F0F2F6;
    --background-hover-btn-for-filter: #e3e4e6;
    --catalog-grey-text: #A5A5A5;
    --line-background: #E3E3E3;
    --filter-form-border: #C3C3C3;
    --color-border-color: #C2C2C2;
    --width-selection-background: #F2F2F2;
    --width-selection-border: #DADADA;
    --offer-hit: #938AF9;
    --offer-new: #FE525E;
    --offer-sale: #FF8C00;
    --card-arrow-border: #F7F7F7;
    --card-block-background: #F9F9F9;
    --link-color: #0094CE;
    --link-color-hover: #0094cea9;
    --option-border-color: #D7D7D7;
    --option-active-border-color: #FFCC33;
    --plus-color: #BFB9B9;
    --number-of-goods-color: #727272;
    --number-of-goods-border: #555555;
    --btn-private-hover: #f5ebeb;
}

/* ============================ General rules ========================= */
html,
body {
    height: 100%;
}

body {
    min-width: 320px;
    font-family: 'Montserrat', sans-serif;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

main.main {
    flex: 1 1 auto;
}

section {
    margin: 80px 0;
}

.button-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    box-shadow: 0 0 29px -12px rgb(0, 0, 0, 0.7);
    z-index: 999999;
}

.prev-btn {
    left: -25px !important;
}

.next-btn {
    right: -25px !important;
}

.arrow {
    width: 13px;
    height: 13px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
}

.prev-arrow {
    transform: rotate(-135deg);
    margin-left: 6px;
}

.next-arrow {
    transform: rotate(45deg);
    margin-right: 6px;
}

.section-title {
    font-size: 25px;
}

.section--title h1 {
    font-size: 25px;
    font-weight: 700;
    line-height: normal;
}

.section-link-wrap {
    padding: 3px 1px 0 0;
}

.section-link {
    font-size: 15px;
    color: var(--main-color);
}

.button-arrow:hover {
    background-color: #f3f3f3;
}

.product-cards,
.advant-cards {
    margin: -12px 0 0 0;
}

.product-cards .product-card .product-thumb {
    height: 275px;
}

.product-cards .product-card .product-thumb img {
    max-height: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border: 1px solid #f1e8e8;
    border-radius: 8px;
}

.mt-5 {
    margin-top: 1.7rem !important;
}

.mt-6 {
    margin-top: 1.9rem !important;
}

.display_none {
    display: none;
}

a {
    text-decoration: none;
    background-color: transparent;
}
a:hover {
    color: var(--main-color);
}

.section-link {
    text-decoration: underline;
}

button {
    border: none;
    background: none;
}

.product-card-offer {
    color: #fff;
    position: absolute;
    top: 2.4%;
    right: 7.4%;
}

.product-card-offer>div {
    border-radius: 3px;
    padding: 2px 10px 4px 10px;
    line-height: 14px;
    text-align: center;
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 5px;
}

.offer-hit {
    background-color: var(--offer-hit);
}

.offer-new {
    background-color: var(--offer-new);
}

.offer-sale {
    background-color: var(--offer-sale);
}

.btn-main-styles {
    background-color: var(--main-color);
    color: #fff;
    border-radius: 5px;
    border: none;
    /*height: 48px;
    font-size: 15px;*/
    min-height: 42px;
    font-weight: 700;
}

.btn-main-styles:not(.w-100),
.sidebar__underline {
    max-width: 255px;
}

.btn-main-styles:hover {
    background-color: var(--hover-button-color);
}

.account-page-section.wallet .btn-main-styles,
.favorites-page .btn-main-styles {
    display: inline-block;
    margin-right: 10px;
    padding: 11px 25px;
    border: 2px solid var(--main-color);
}

.favorites-page .btn-main-styles.btn-second-styles {
    background: #FFFFFF;
    color: var(--main-color);
}

.account-page-section.wallet .btn-main-styles:hover,
.favorites-page .btn-main-styles:hover {
    color: #FFFFFF;
    background-color: var(--hover-button-color);
    border: 2px solid var(--hover-button-color);
}

a:focus {
    outline: none;
}
.btn-add-to-card:hover {
    background-color: var(--hover-button-color);
}
.product-item-image-slider-slide-container, .product-item-image-slider-control-container {
    display: none;
}

/* ============================ General rules ========================= */
/* ============================ Header rules ========================= */
.header {
    height: 200px;
}

header li {
    list-style-type: none;
}

.header-top {
    height: 60px;
    background-color: var(--contrast-color);
    color: #fff;
}

.header__bread-crumbs {
    max-width: 1224px;
    margin: 36px auto 30px;
}

.wrap-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 40px 0;
    padding: 0 12px;
}

.header-top__inner {
    max-width: 1200px;
}

.header-top__geolocation {
    color: #fff;
    cursor: pointer;
}

.header-top__geolocation_wrap .city-popup {
    position: absolute;
    background-color: #ffffff;
    border-radius: 2px;
    padding: 10px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top__geolocation_wrap .city-popup .arrow {
    position: absolute;
    top: -10px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
    /* Цвет фона всплывающего окна */
}

.header-top__geolocation_wrap .city-popup p {
    color: #000000;
}

.header-top__geolocation_wrap .btn_container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-top__geolocation_wrap .city-popup #yes-button,
.header-top__geolocation_wrap .city-popup #no-button {
    /* margin-top: 10px;
    margin-right: 5px; */
    cursor: pointer;
}

.header-top__geolocation_wrap .city-popup #yes-button:hover,
.header-top__geolocation_wrap .city-popup #no-button:hover {
    color: var(--hover-button-color);
}

.header-top__geolocation_wrap .popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-top__geolocation_wrap .popup-content {
    background: #ffffff;
    border-radius: 5px;
    width: 1410px;
    /* padding: 40px 30px; */
    position: relative;
    max-width: 100%;
}

.header-top__phone, .footer .phone {
	justify-content: center;
    flex-direction: column;
}
.header-top a {
    color: #fff;
    transition: all .3s;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
}

.nav-link {
    padding: 0 0.95rem;
    text-wrap: nowrap;
}

.nav-link:hover,
.header-top a:hover,
.header__nav_icons a:hover {
    color: var(--link-hover-color);
}

.header-middle {
    max-width: 1224px;
    height: 140px;
}

.header__logo {
    padding: 0 0 0 12px;
}

.header__logo img {
    max-width: 203px;
}

.header__search {
    z-index: 3;
}

.header__search div {
    width: 100%;
    padding: 5px;
}

.search-input {
    border: none;
}

.search-input::placeholder {
    font-size: 13px;
}

.header__nav_icons a,
.header__nav_icons div,
.header__menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: normal;
    color: #000;
    padding: auto 0;
}

.header__nav_icons a {
    padding: 0 10px;
    position: relative;
    text-wrap: nowrap;
}

.header__menu-wrapper {
    margin-top: 20px;
}

.header__menu a {
    font-size: 15px;
}

.menu__catalog {
    border: none;
    width: 203px;
    height: 40px;
    background-color: var(--main-color);
    border-radius: 5px;
}

.menu__catalog:hover {
    background-color: var(--hover-button-color);
}

.catalog__burger,
.header__burger {
    display: inline-block;
    vertical-align: middle;
    height: 12px;
    margin-right: 10px;
}

.burger-line {
    width: 20px;
    height: 2px;
    background: #fff;
    transition: transform 0.25s;
}

.line-second {
    margin: 3px 0;
}

.catalog-burger-first {
    transform: rotate(40deg);
    transform-origin: 2px 1px;
}

.catalog-burger-third {
    transform: rotate(-40deg);
    transform-origin: 13px 6px;
}

.header__burger {
    height: max-content;
    border: navajowhite;
}

.header__burger .burger-line {
    background-color: var(--main-color);
    width: 35px;
    height: 4px;
}

.header__burger .burger-second {
    margin: 6px 0;
}

.menu__catalog span {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
}

/* .header-middle::after {
    content: '';
    position: absolute;
    width: 100%;
    border: 1px solid var(--header-line-color);
    bottom: 0;
} */
.header__create-line {
    max-width: 1200px;
    border: 1px solid var(--header-line-color);
}

.header__nav_icons a.favorites .counter {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -7px;
    right: 25px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background-color: #E4002B;
    font-size: 10px;
    color: #FFFFFF;
}



/* ============================ Mobile menu ========================= */
#mobilemenu {
	background: #fff;
	z-index: 1000;
	overflow: hidden;
	overflow-y: auto;
	transition: left 0.4s ease 0s, opacity 0.4s ease 0s;
	position: fixed;
}

.leftside {
    left: -100%;
    top: 0;
    bottom: 0;
    width: 300px;
    max-width: 100%;
}

.leftside .me-1 {
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(0deg);
}

.leftside .bx-basket a .baslet__count {
	position: static;
	margin-left: 10px;
}

.mobileshow {
    left: 0;
    box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.45);
}

.mobile-menu {
    overflow: hidden;
    overflow-y: auto;
    transition: left 0.4s ease 0s, opacity 0.4s ease 0s;
}

.mobile-menu ul>li img {
    margin: 0 10px 0 0;
}

.mobile-menu .contacts div {
    color: #000;
    padding: 10px;
}

.mobile-menu .contacts div a {
    color: #000;
}

/* ============================ Mobile menu ========================= */
/* ============================ Header rules ========================= */
/* =============================== Main ============================== */
.main-wrap {
    max-width: 1224px;
}

/* =============================== Catalog ============================== */
.main__catalog {
    /* margin: 50px 0 50px 0; */
    margin: 18px 0 50px 0;
}

.catalog__1lvl {
    margin: 42px 0 0 0;
}

.catalog__2lvl,
.catalog__3lvl {
    margin: 15px 0 0;
    font-size: 15px;
}

.catalog_title {
    /* margin: 0 0 37px 0; */
    margin: 8px 0 41px 0;
}

/*.catalog-section__title {*/
/*    margin: 0 0 2.5rem 0;*/
/*}*/

.catalog-section__title h1 {
    font-size: 24px;
    line-height: 30px;
}

.card-product {
    /* margin-top: 25px; */
    margin-top: 11px;
    font-size: 15px;
    font-weight: 400;
}

.catalog__btn {
    flex-direction: column;
    border: none;
    text-align: start;
    padding: 0;
    color: #000;
}

.breadcrumb {
    border: none;
    background: none;
    margin: 0;
    padding: 0 10px;
    align-items: center;
}

.breadcrumb span {
    display: flex;
}

.icon-svg {
    display: inline-block;
    vertical-align: middle;
    fill: currentColor;
    font-size: 1em;
    width: 1em;
    height: 1em;
    stroke: none;
    stroke-width: inherit;
    stroke-linecap: inherit;
    stroke-linejoin: inherit;
    overflow: visible;
}

.breadcrumb .icon-svg {
    margin-right: 5px;
}

.catalog__name-section {
    font-size: 15px;
    line-height: 18px;
}

.catalog__btn img {
    padding: 5px;
    /*padding-bottom: 19px;*/
    max-width: 100%;
    /*min-height: 95px;*/
    max-height: 95px;

    position: relative;

}

.main__catalog .wrap {
    margin-bottom: 45px;
}

.catalog__btn:hover {
    color: var(--link-hover-color);
}

.breadcrumbs,
.breadcrumb,
.icon-svg {
    color: var(--breadcrumbs-color);
    fill: var(--breadcrumbs-color);
}

/* =============================== Catalog ============================== */
/* =============================== Carousel ============================== */
.carousel {
    margin: 40px 0 0 0;
    max-width: 1200px;
}

.carousel-general-item {
    background-color: var(--main-color);
    border-radius: 10px;
}

.carousel .logo-banner {
    position: relative;
    left: 143px;
}

.carousel-buttons {
    position: absolute;
    top: 0;
}

.carousel-main-banner {
    min-height: 250px;
    max-height: 400px;
}

.carousel-main-banner .logo {
    position: relative;
    left: 25px;
    bottom: 14px;
}

/* =============================== Carousel ============================== */
/* =============================== Sales ============================== */
section.sales {
    margin: 0;
}

/* =============================== Sales ============================== */
/* ============================= Categories ============================ */
section.categories {
    margin: 50px 0;
}

.wrap-next-button {
    top: 0;
}

.categories .next-btn {
    right: -10px;
}

/* =============================== Categories ============================== */
/* =============================== Product card ============================== */
section.products {
    margin: 50px 0;
}

.product-card {
    width: max-content;
}

.details-price-wrap {
    margin-top: 10px;
}

.product-price,
.product-sale {
    font-size: 20px;
    font-weight: 700;
}

.product-sale {
    font-size: 12px;
    background-color: var(--main-color);
    width: 40px;
    height: 20px;
    border-radius: 3px;
    color: #fff;
}


.product-stars span {
    color: var(--text-grey-color);
    font-size: 12px;
}

.product-description, .product-card .product-details .name-product {
    font-size: 14px;
    font-weight: 500;
}


.product-description span {
    color: var(--text-grey-color);
}

.product-description div {
    display: inline-block;
}

.product-button {
    margin-top: 16px;
}

.btn-add-to-card {
    margin-right: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
		cursor: pointer;
}

.btn-add-to-card:hover {
    color: #ffffff;
    text-decoration: none;
}

.icon-comparison img {
    width: 25px;
}

.product-stars img:hover,
.icon-comparison:hover {
    cursor: pointer;
}

/* =============================== Product card ============================== */

.about-company-section {
    margin-bottom: 80px;
}

/* ============================= Footer ============================ */
footer {
    background-color: var(--contrast-color);
    padding: 50px 0;
    color: #fff;
}

.footer__inner {
    max-width: 1200px;
}

footer li {
    list-style-type: none;
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 10px;
}

footer .service-payment {
    font-size: 20px;
    line-height: 24px;
}

footer .job-with-us {
    text-decoration: underline;
}

footer a {
    color: #fff;
    transition: all .3s;
    font-weight: 400;
}

.phone a {
    font-size: 15px;
}

footer a:hover {
    color: var(--link-hover-color);
}

.follow-us {
    font-size: 10px;
}

/* ============================= Footer ============================ */
/* =============================== 404 ============================== */
.error-section {
    margin: 58px 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error__404 h1 {
    color: #000;
    font-size: 250px;
    font-weight: 700;
    line-height: .9;
}

.error__404 h1 span {
    color: var(--checkbox-pressed);
}

.error__404 div {
    font-size: 25px;
}

.error__info {
    color: #000;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    max-width: 618px;
    margin: 7.4% 0 0 0;
}

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

.error__btn .btn-main-styles {
    width: 285px;
}

.error__btn a {
    color: inherit;
}

.header__catalog .wrap {
    margin-bottom: 45px;
}

.catalog__name-section {
    font-size: 15px;
    line-height: 18px;
}

.catalog__btn img {
    max-width: 100%;
    /*min-height: 95px;*/
    max-height: 95px;
}

.header__catalog {
    max-width: 1224px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    background-color: inherit;
}

/* =============================== 404 ============================== */
/* =============================== Main ============================== */


/*slick*/

.slider {
    position: relative;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    /*top: calc(50% - 25px);*/
    z-index: 10;
}

.slick-arrow.slick-prev {
    left: -15px;
}

.slick-arrow.slick-next {
    right: -15px;
}

.slick-prev:before,
.slick-next:before {
    font-size: 0;
}

/*popup*/

.modal_background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal_form {
    background: #ffffff;
    border-radius: 2px;
    width: 1410px;
    /*padding: 40px 30px;*/
    position: relative;
    display: none;
    max-width: 100%;
}

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

.form__body {
    padding: 50px 50px 50px 50px;
}

.form__header .form__title {
    font-size: 40px;
    font-weight: 600;
    margin: 0 0 30px 0;
}

.form__title>span {
    display: block;
    color: var(--main-color);
}

.form__wrapper .form__input input,
.form__wrapper .form__input textarea {
    margin: 0 0 10px 0;
    padding: 26px 30px 26px 30px;
    width: 100%;
    outline: none;
    border: 1px solid #E7E7E7;
    font-size: 15px;
}

.form__wrapper .form__input input {
    height: 70px;
}

.form__wrapper .form__input textarea {
    height: 150px;
}

.form__wrapper .form__input input::placeholder,
.form__wrapper .form__input textarea::placeholder {
    font-size: 15px;
    color: #000000;
}

.form__wrapper .form__input .btn__submit {
    padding: 0;
    font-weight: 700;
    background: var(--main-color);
    color: #ffffff;
    transition: all 0.2s ease;

}

.form__wrapper .form__input .btn__submit:hover {
    background: #c3162c;
}

.form__wrapper .form__footer {
    margin: 0 0 20px 0;
    height: 70px;
}

.form__wrapper .agreement {
    margin: 0 0 30px 0;
    font-size: 15px;
}

.form__wrapper .agreement span {
    text-decoration: underline;
}

.form__wrapper .agreement span a {
    color: #000000;
}

.form__wrapper .work__time {
    font-size: 20px;
}

.form__wrapper .work__time br {
    font-weight: 700;
}

/*form__review*/

.form__review .form__wrapper {
    justify-content: center;
}

.form__review .form__wrapper .form__input input::placeholder,
.form__review .form__wrapper .form__input textarea::placeholder {
    font-size: 15px;
    color: #000000;
}

.form__review .rating-container {
    display: flex;
    align-items: center;
}

.form__review .rating {
    display: flex;
    flex-direction: row-reverse;
    font-size: 40px;
    justify-content: flex-end;
    margin: 10px 0;
}

.form__review .rating input {
    display: none;
}

.form__review .rating label {
    color: #d3d3d3;
    cursor: pointer;
}

.form__review .rating-text {
    font-size: 16px;
    color: #333;
    /* Цвет текста */
}

.form__review .rating input:checked~label {
    color: #f5c518;
}

.form__review .rating label:hover,
.form__review .rating label:hover~label {
    color: #f5c518;
}

#success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal_content {
    background: #ffffff;
    border-radius: 2px;
    width: 1410px;
    padding: 20px 20px;
    position: relative;
    max-width: 100%;
}

.modal_content p {
    margin: 0;
    font-size: 20px;
}

.popup-window.popup-window-with-titlebar {
    padding: 10px !important;
    border-radius: 10px !important;
}

.popup-window-titlebar {
	height: auto;
}

.popup-window-titlebar-text {
	line-height: auto;
	font-size: 30px;
	color: #000;
}

.popup-window-with-titlebar .popup-window-content {
	padding: 0;
}

.popup-window-content img {
    margin: 0 0 20px 0;
}

.popup-window-buttons {
    display: flex;
    gap: 5px;
}

.popup-window-buttons .btn {
    background-color: var(--main-color)!important;
    color: #fff!important;
    border-radius: 5px!important;
    border: none!important;
    height: 48px!important;
    font-size: 15px!important;
    font-weight: 700!important;
    padding: 13px 15px!important;
    width: 100%!important;
}

.popup-window-buttons span:hover {
    background-color: var(--hover-button-color)!important;
    color: #fff !important;
}

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

.yandex_reviews_container .row {
    width: 100%;
}

.yandex_reviews_container .yandex_reviews_block {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* =============================== Media rules ============================== */

@media screen and (max-width: 1350px) {
    .form__wrapper .form__input textarea {
        height: 100px;
    }
}

@media screen and (max-width: 1270px) {
    .form__body {
        padding: 25px 50px 25px 50px;
    }
}

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

    /* .header-middle {
        margin: 10px 0;
    } */
    .header__logo a img {
        width: 100% !important;
    }

    .header-top__phone {
        width: 100%;
        justify-content: end;
        margin-right: 12px;
    }

    .footer__inner {
        padding: 0 20px;
    }

    .footer-links {
        justify-content: center !important;
    }

    .carousel,
    .header-top,
    .main-wrap,
    .header__create-line {
        padding: 0 12px;
    }

    .next-btn {
        right: 5px;
    }

    .prev-btn {
        left: -20px;
    }

    .modal_form {
        width: 50%;
    }

    .form__wrapper .form__body {
        padding: 50px;
    }

    .form__wrapper .form__img {
        display: none;
    }

}

@media screen and (max-width: 992px) {
    .header {
        height: auto;
    }

    .header-top,
    .header__create-line {
        padding: 0 12px;
    }

    .header-middle {
        height: 60px;
        padding: 0 12px 0 12px;
    }

    .header__nav_icons a span {
        display: none;
    }

    .header__nav_icons a img {
        width: 25px;
    }

    .header__nav_icons a {
        padding: 0 6px;
    }

    .header__logo {
        padding: 0;
    }

    .header__logo a img {
        width: 180px !important;
    }

    .phone,
    .follow-us {
        text-align: center;
    }

    .follow-us .icons {
        justify-content: center !important;
    }

    .modal_form {
        width: 70%;
    }

}

@media screen and (max-width: 768px) {
    .wrap-head {
        flex-direction: column;
        align-items: start;
    }

    .wrap-head-info {
        margin: 10px 0 0 0;
    }

    .advant-card {
        height: auto;
    }

    .search-btn img,
    .header__nav_icons a img {
        width: 23px;
    }

    .header__nav_icons {
        width: 100%;
        justify-content: end;
        position: relative;
        bottom: 2px;
    }

    .header__logo a img {
        margin-left: 10px;
    }

    .sidebar-wrap {
        display: none;
    }

    .footer__logo {
        margin-top: 10px;
    }

    .error__404 h1 {
        font-size: 200px;
    }

    .form__header .form__title {
        font-size: 30px;
    }

    .form__wrapper .form__input input {
        height: 60px;
    }

    .form__wrapper .work__time {
        font-size: 15px;
    }
}

@media screen and (max-width: 576px) {
    .header-middle {
        height: 50px;
    }

    .carousel-main-banner .logo {
        left: 0;
    }

    .carousel,
    .header-top,
    .main-wrap {
        padding: 0 6px;
    }

    .advant-card h4 {
        font-size: 18px;
    }

    .advant-card {
        min-height: 200px;
    }

    .advant-card {
        margin-top: 1rem !important;
    }

    footer li {
        text-align: center;
    }

    .search-btn img,
    .header__nav_icons a img {
        width: 20px;
    }

    .header__nav_icons a,
    .search-btn {
        padding: 0 4px;
    }

    .header__logo a img {
        width: 150px !important;
    }

    .catalog__name-section {
        font-size: 13px;
    }

    .error__404 h1 {
        font-size: 150px;
    }

    .error__search,
    .error__info {
        padding: 0 10px;
    }

    .modal_form {
        width: 90%;
    }

    .form__wrapper .form__body {
        padding: 20px;
    }

    .form__header .form__title {
        font-size: 25px;
    }
}

@media screen and (max-width: 375px) {
    .footer-logo-column {
        width: 60% !important;
    }

    .catalog__name-section {
        font-size: 11px;
    }
}

/* =============================== Media rules ============================== */
/* =============================== Additional  rules ============================== */
.bx_filter .bx_filter_input_checkbox .bx_filter_param_text:hover {
    color: var(--main-color);
}
.bx_filter .bx_filter_param_label.disabled .bx_filter_param_text {
    color: #6c6c6c;
}
/* =============================== Additional  rules ============================== */