@charset "UTF-8";
* {
    padding: 0px;
    margin: 0px;
    border: none;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
    display: block;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

img {
    display: block;
}

body {
    font-family: "Museo-Sans-Cyrl", sans-serif;
}

.is-hidden {
    display: none;
}

.section-indent {
    margin-top: 25px;
    margin-bottom: 25px;
}
.section-page__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.section-page__column {
    width: 100%;
    max-width: 100%;
}
.section-page__column--banner {
    width: 328px;
    margin-right: 35px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.section-page--top__blank .container {
    background-image: url(/img/bg_blank/section-page--top_blank.svg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 387px;
    border-radius: 12px;
}

.section-page__column--small.__blank .section-header {
    height: 26px;
    background-image: url(/img/bg_blank/section-page--middle-header_blank.svg);
    background-size: cover;
    border-radius: 12px;
    margin-bottom: 30px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.section-title {
    position: relative;
    font-size: 35px;
    line-height: 41px;
    font-weight: 700;
}

.section-title:after {
    content: "";
    position: absolute;
    top: 102%;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #ff4e57;
}

.link-more {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #ff0000;
}

.link-more__text {
    border-bottom: 1px dashed #ff0000;
    font-weight: 700;
    font-size: 15px;
    word-wrap: break-word;
}

.link-more__icon {
    width: 4px;
    height: 8px;
    background-image: url(/img/icons/arrow-right.svg);
    background-size: 100%;
}

a,
a:link,
a:visited {
    text-decoration: none;
}

.cat-products-tabs__item:not(.tab-pane-show) {
    display: none;
}

.tabs {
    gap: 30px;
}
@media (max-width: 1366px) {
    .tabs .section-header__link {
        display: none;
    }
}
@media (max-width: 1366px) {
    .tabs {
        gap: 30px;
    }
}
.tabs__products {
    padding-top: 15px;
}
.tabs__info {
    background-color: #f5f5f5;
    overflow: hidden;
}
.tabs__info,
.tabs__products {
    width: calc(50% - 15px);
    flex: 0 0 calc(50% - 15px);
}
@media (max-width: 1366px) {
    .tabs__info {
        width: calc(100% - 443px - 30px);
        flex: 0 0 calc(100% - 443px - 30px);
    }
    .tabs__products {
        width: 443px;
        flex: 0 0 443px;
    }
}
@media (max-width: 1024px) {
    .tabs {
        gap: 60px;
    }
    .tabs__info {
        width: calc(100% - 195px - 60px);
        flex: 0 0 calc(100% - 195px - 60px);
    }
    .tabs__products {
        width: 195px;
        flex: 0 0 195px;
    }
}
@media (max-width: 768px) {
    .tabs__info {
        width: 100%;
        flex: 0 0 100%;
    }
    .tabs__products {
        display: none;
    }
}

.cat-products {
    position: relative;
    border-radius: 15px;
}
.cat-products__img.__blank {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 266px;
    height: 349px;
    background-image: url(/img/bg_blank/cat-products-img_blank.svg);
}
.cat-products__header {
    padding: 34px 27px;
}
.cat-products__nav {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}
.cat-products__button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 15px 8px 30px;
    transition: all 0.3s ease;
}
.cat-products__button .link-more {
    opacity: 0;
    transition: all 0.5s ease;
}
@media (max-width: 768px) {
    .cat-products__button .link-more {
        display: none;
    }
}
.cat-products__button-left {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.cat-products__button-title {
    font-weight: 700;
    font-size: 18px;
    color: #000000;
    line-height: 31px;
}
@media (max-width: 576px) {
    .cat-products__button-title {
        font-size: 16px;
    }
}
.cat-products__button-ico {
    transition: all 0.3s ease;
    transform: translateX(0px);
}
.cat-products__button-ico svg,
.cat-products__button-ico path {
    stroke: #000000;
}
@media (min-width: 769px) {
    .cat-products__button.active,
    .cat-products__button:hover {
        background-color: #ececec;
        color: #ff0000;
    }
    .cat-products__button.active .cat-products__button-ico,
    .cat-products__button:hover .cat-products__button-ico {
        transform: translateX(-3px);
    }
    .cat-products__button.active .cat-products__button-ico svg,
    .cat-products__button.active .cat-products__button-ico path,
    .cat-products__button:hover .cat-products__button-ico svg,
    .cat-products__button:hover .cat-products__button-ico path {
        stroke: #ff0000;
    }
}
.cat-products__button.active .link-more,
.cat-products__button:hover .link-more {
    opacity: 1;
}
.cat-products__info {
    padding: 34px 0 34px 34px;
    width: 372px;
    max-width: 100%;
}
@media (max-width: 1366px) {
    .cat-products__info {
        width: 352px;
    }
}
@media (max-width: 576px) {
    .cat-products__info {
        display: none;
    }
}
.cat-products__info h3 {
    margin-bottom: 9px;
    font-size: 22px;
    line-height: 31px;
}
.cat-products__info p {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 30px;
}
.cat-products__info p:last-child {
    margin-bottom: 0;
}
.cat-products__title {
    word-wrap: break-word;
}
@media (max-width: 1366px) {
    .cat-products-tabs .link-more {
        display: none;
    }
}

.popular.__blank .container {
    background-image: url(/img/bg_blank/popular_blank.svg);
    background-repeat: no-repeat;
    height: 163px;
}

@media (max-width: 768px) {
    .popular {
        display: none;
    }
}
.product--middle.__blank {
    background-image: url(/img/bg_blank/card_6_blank.svg);
    background-repeat: no-repeat;
    height: 458px;
}

.product--big.__blank {
    background-image: url(/img/bg_blank/card_6_blank.svg);
    background-repeat: no-repeat;
    height: 538px;
}

:root {
    --container-width: 1436px;
    --container-padding: 15px;
}

.container {
    margin: 0 auto;
    padding: 0 var(--container-padding);
    max-width: var(--container-width);
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 26px;
    }
}
html,
body {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.banner-promo--long.__blank {
    background-image: url(/img/bg_blank/banner--long_blank.svg);
    background-repeat: no-repeat;
    height: 156px;
    border-radius: 12px;
}

.banner-promo--small.__blank {
    background-image: url(/img/bg_blank/banner--small-blank.svg);
    background-repeat: no-repeat;
    height: 156px;
    border-radius: 12px;
}

.banner-promo--middle.__blank {
    background-image: url(/img/bg_blank/banner--middle_blank.svg);
    background-repeat: no-repeat;
    height: 387px;
}

@media (max-width: 700px) {
    .banner-promo--small {
        height: 123px;
    }
    .banner-promo--small:last-child {
        grid-column: 1/-1;
    }
}
.banners-list {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, calc((100% - 60px) / 3));
}

@media (max-width: 1024px) {
    .banners-list {
        gap: 25px;
        grid-template-columns: repeat(3, calc((100% - 50px) / 3));
    }
}
@media (max-width: 700px) {
    .banners-list {
        gap: 20px;
        grid-template-columns: repeat(2, calc((100% - 20px) / 2));
    }
}
.cat-section-tabs.__blank .section-page--equal {
    height: 759px;
    background-image: url(/img/bg_blank/card-tabs_blank.svg);
    background-repeat: no-repeat;
}

.cat-section-tabs.__blank .section-page--equal.section-page__row--reverse {
    height: 759px;
    background-image: url(/img/bg_blank/card-tabs-reverse_blank.svg);
    background-repeat: no-repeat;
}

.footer {
    margin-top: auto;
}

.footer.__blank {
    background-image: url(/img/bg_blank/footer_blank.svg);
    background-repeat: no-repeat;
    height: 557px;
}

.header {
    position: relative;
    z-index: 20;
}

@media (max-width: 768px) {
    .header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}
.header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 1;
    gap: 6px;
}

@media (max-width: 768px) {
    .header__container {
        position: relative;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 25px;
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
        padding: 20px;
        background-color: #0b0b0b;
    }
}
.header__middle-left {
    position: relative;
    height: 70px;
    padding: 4px 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    border-radius: 12px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    background: rgba(11, 11, 11, 0.66);
}

@media (max-width: 768px) {
    .header__middle-left {
        width: 100%;
        height: auto;
        padding: 0;
        background: none;
    }
}
@media (max-width: 768px) {
    .header__actions {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #0b0b0b;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        z-index: 9;
    }
}
@media (max-width: 1024px) {
    .header__nav {
        display: none;
    }
}
@media (max-width: 768px) {
    .header-nav .user-button-wrapper {
        display: none;
    }
}
.header-nav__item {
    border-radius: 12px;
    padding: 13px 11px;
    width: 76px;
    min-height: 70px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    background: rgba(11, 11, 11, 0.66);
}

@media (max-width: 768px) {
    .header-nav__item {
        height: auto;
        width: auto;
    }
}
.header-actions__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 12px;
}

.header-actions__item--home,
.header-actions__item--profile {
    display: none;
}

@media (max-width: 768px) {
    .header-actions__item--home,
    .header-actions__item--profile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
@media (max-width: 768px) {
    .header-actions__item {
        width: 70px;
        height: 66px;
        padding: 0;
    }
}
.header__middle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
}

@media (max-width: 768px) {
    .header__middle {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        width: 100%;
    }
}
.header__middle-left.__blank {
    width: 489px;
    background-color: #9e9e9e;
}

.header__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

@media (max-width: 1366px) {
    .header__actions {
        gap: 5px;
    }
}
@media (max-width: 768px) {
    .header__actions {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #0b0b0b;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        z-index: 9;
    }
}
.header-nav__item.__blank {
    background-color: #9e9e9e;
}

.user-button-wrapper.__blank {
    width: 76px;
    height: 70px;
    background-color: #9e9e9e;
    border-radius: 12px;
}

.banner.__blank {
    height: 476px;
}

.filters-line.__blank {
    padding: 15px 0;
    background-color: #e8e8ee;
}

.filters-line__item.__blank {
    width: 115px;
    height: 42px;
    background-color: #f9f9f9;
    border-radius: 12px;
}

@media (max-width: 740px) {
    .filters-line {
        padding-top: 25px;
        padding-bottom: 25px;
    }
}
.filters-line__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 740px) {
    .filters-line__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 25px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}
@media (max-width: 740px) {
    .filters-line__column {
        width: 100%;
    }
    .filters-line__column--dekstop {
        display: none;
    }
}
.products-grid {
    position: relative;
    width: 100%;
    max-width: 100%;
    grid-auto-flow: dense;
    display: grid;
}

.products-grid--three {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 51px;
}

@media (max-width: 1366px) {
    .products-grid--three {
        grid-template-columns: repeat(2, calc((100% - 55px) / 2));
    }
}
@media (max-width: 1024px) {
    .products-grid--three {
        grid-template-columns: repeat(1, 100%);
    }
}
@media (max-width: 1366px) {
    .products-grid--three .product:nth-last-child(1),
    .products-grid--three .product:nth-last-child(2) {
        display: none;
    }
}
@media (max-width: 1024px) {
    .products-grid--three .product:nth-last-child(3),
    .products-grid--three .product:nth-last-child(4) {
        display: none;
    }
}
.products-grid--five {
    grid-template-columns: repeat(5, calc((100% - 72px) / 5));
    gap: 18px;
}

.products-grid--five .product--small.__blank {
    background-image: url(/img/bg_blank/card--small_blank.svg);
    background-repeat: no-repeat;
    height: 305px;
}

.products-grid--five .product--big.__blank {
    background-image: url(/img/bg_blank/card_5_blank.svg);
    background-repeat: no-repeat;
    height: 538px;
}

@media (max-width: 1366px) {
    .products-grid--five {
        grid-template-columns: repeat(4, calc((100% - 54px) / 4));
    }
    .products-grid--five .product:last-child {
        display: none;
    }
}
@media (max-width: 880px) {
    .products-grid--five {
        gap: 20px;
        grid-template-columns: repeat(3, calc((100% - 40px) / 3));
    }
    .products-grid--five .product:nth-last-child(2) {
        display: none;
    }
}
@media (max-width: 576px) {
    .products-grid--five {
        gap: 20px;
        grid-template-columns: repeat(2, calc((100% - 20px) / 2));
    }
    .products-grid--five .product:nth-last-child(2) {
        display: block;
    }
}
.products-grid--six {
    grid-template-columns: repeat(6, 1fr);
    gap: 40px 25px;
}

@media (max-width: 1366px) {
    .products-grid--six {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px 67px;
    }
}
@media (max-width: 1024px) {
    .products-grid--six {
        grid-template-columns: repeat(4, 1fr);
        gap: 26px;
    }
}
@media (max-width: 900px) {
    .products-grid--six {
        grid-template-columns: repeat(3, 1fr);
        gap: 39px;
    }
}
@media (max-width: 768px) {
    .products-grid--six {
        gap: 20px;
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 576px) {
    .products-grid--six {
        grid-template-columns: repeat(2, 1fr);
    }
}
.tabs {
    gap: 30px;
}
.tabs__info.__blank {
    background-image: url(/img/bg_blank/cat-tabs-info_blank.svg);
    background-repeat: no-repeat;
    height: 759px;
    background-size: cover;
}
.tabs__products.__blank .section-header {
    background-image: url(/img/bg_blank/cat-tabs-header_blank.svg);
    width: 100%;
    height: 26px;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 30px;
}
.section-page__row--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.products-grid--three .product--small.__blank {
    background-image: url(/img/bg_blank/card--small_blank.svg);
    background-repeat: no-repeat;
    height: 305px;
    background-size: cover;
}

.__blank {
    position: relative; overflow:hidden;
}
.__blank::after {
    content:"";
    position:absolute;
    top:0;
    left:-150px;
    width:120px;
    height:100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255, .88) 50%, rgba(255,255,255,0) 100%);
    animation: productLoader 1.5s ease-in-out infinite;
    display:block;
    box-sizing:border-box;
}
@keyframes productLoader {
    0% { left: -150px; }
    100% { left: 120%; }
}

/* Шрифты */

@font-face {
  font-family: "Museo-Sans-Cyrl";
  src: url("/fonts/Museo-Sans-Cyrl-Middle.woff2") format("woff2"),
       url("/fonts/Museo-Sans-Cyrl-Middle.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Museo-Sans-Cyrl";
  src: url("/fonts/Museo-Sans-Cyrl-Bold.woff2") format("woff2"),
       url("/fonts/Museo-Sans-Cyrl-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Museo-Sans-Cyrl";
  src: url("/fonts/Museo-Sans-Cyrl-Black.woff2") format("woff2"),
       url("/fonts/Museo-Sans-Cyrl-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Regular.woff2") format("woff2"),
       url("/fonts/Roboto-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Medium.woff2") format("woff2"),
       url("/fonts/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Bold.woff2") format("woff2"),
       url("/fonts/Roboto-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: fallback;
}


/* Стили контейнера модального окна */

.preloader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.form-autorization__actions {
  padding: 19px 0;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media (max-width: 576px) {
  .form-autorization__actions {
    flex-direction: row;
    column-gap: 6px;
    justify-content: center;
  }
}
.form-autorization__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 14px;
  border-radius: 15px;
  height: 52px;
}
@media (max-width: 576px) {
  .form-autorization__action {
    width: 59px;
    height: 59px;
  }
}
.form-autorization__action-text {
  color: #fff;
  font-size: 16px;
}
@media (max-width: 576px) {
  .form-autorization__action-text {
    display: none;
  }
}
.form-autorization__action--vk {
  background-color: #0077ff;
}
.form-autorization__action--gosuslugi {
  border: 1px solid #ee3e5b;
}
.form-autorization__action--gosuslugi .form-autorization__action-text {
  color: #ee3e5b;
}
.form-autorization__checkbox {
  margin-top: 20px;
}

.form-separator {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #b5b5b5;
}
.form-separator__text {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 300;
  background-color: #ffffff;
  padding: 0 10px;
  color: #b5b5b5;
  white-space: nowrap;
}

.window-profile.modal-dialog {
  width: 320px;
  overflow: visible;
  padding: 21px 20px;
}
.window-profile__header {
  margin-bottom: 18px;
  text-align: center;
}
.window-profile__body {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-bottom: 25px;
}
.window-profile__title {
  position: relative;
  font-size: 20px;
  margin-bottom: 28px;
}
.window-profile__title:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -13px;
  width: 60px;
  height: 4px;
  background-color: #ff4e57;
}
.window-profile__text {
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
}
.window-profile__submit {
  display: block;
  height: 52px;
  width: 100%;
}
.window-profile__submit:disabled {
  background-color: #dddddd;
  color: #a7a7a7;
  cursor: default;
}
.window-profile__field {
  padding: 10px 11px;
  border: 1px solid #b1b1b1;
  border-radius: 12px;
  height: 45px;
  width: 100%;
}
@media (max-width: 576px) {
  .window-profile.modal-dialog.active {
    width: 100%;
    overflow: visible;
    max-width: 100vw;
    bottom: 0;
    transform: translate(0, 0);
    left: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    position: absolute;
    top: auto;
  }
  .window-profile .close-modal-button {
    right: 25px;
  }
}
.window-profile--code {
  width: 448px;
}
.window-profile--code .window-profile__submit {
  max-width: 279px;
  margin: 0 auto;
}
.close-modal-button {
    position: absolute;
    top: -40px;
    right: 0;
}

/* Cookie окно согласия */

.window-cookie {
  position: fixed;
  width: 422px;
  padding: 18px 22px;
  z-index: 10;
  bottom: 18px;
  right: 16px;
  border: 1px solid #000000;
  background-color: #ffffff;
  border-radius: 15px;
}
@media (max-width: 576px) {
  .window-cookie {
    position: fixed;
    z-index: 99;
    bottom: 0;
    left: 0;
    width: 100%;
    border: 0;
    border-radius: 15px 15px 0 0;
  }
}
.window-cookie__header {
  margin-bottom: 12px;
  text-align: center;
}
.window-cookie__title {
  font-size: 18px;
  margin-bottom: 4px;
}
.window-cookie__text {
  font-size: 13px;
  line-height: 20px;
  font-weight: 300;
}
.window-cookie__body {
  text-align: center;
}
.window-cookie__button {
  display: block;
  width: 100%;
  max-width: 288px;
  height: 41px;
  line-height: 41px;
  margin: 0 auto;
}

