@-webkit-keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

html {
  font-size: 1vw;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  font-family: Geometria, sans-serif;
  color: #333;
  box-sizing: border-box;
}

body.positive {
  overflow: hidden;
}

a {
  text-decoration: none;
}

a.white-link:hover {
  color: #e9e800;
}

a.dark-link:hover {
  color: #000;
}

.h1 {
  font-size: 38px;
  line-height: 49px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1200px) {
  .h1 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .h1 {
    text-align: center;
  }

  h1 {
    text-align: center;
    font-size: 24px;
  }
}

.container {
  padding: 0 0.8854166666666667rem;
  max-width: 85.1041666667rem;
  width: 100%;
  margin: 0 auto;
}

.btn_yellow {
  background-color: #e9e800;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3.6458333333rem;
  -webkit-border-radius: 3.6458333333rem;
  -moz-border-radius: 3.6458333333rem;
  -ms-border-radius: 3.6458333333rem;
  -o-border-radius: 3.6458333333rem;
  border: 1px solid #e9e800;
  font-weight: 600;
  font-size: 0.8333333333rem;
  line-height: 1.0833333333rem;
}

.btn_yellow:hover {
  border-color: #f2f166;
  background-color: #f2f166;
}

.btn_black {
  background-color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3.6458333333rem;
  -webkit-border-radius: 3.6458333333rem;
  -moz-border-radius: 3.6458333333rem;
  -ms-border-radius: 3.6458333333rem;
  -o-border-radius: 3.6458333333rem;
  border: none;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.1979166667rem;
  color: #fff;
}

.btn_black:hover {
  background-color: #000;
}

.btn_white {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3.6458333333rem;
  -webkit-border-radius: 3.6458333333rem;
  -moz-border-radius: 3.6458333333rem;
  -ms-border-radius: 3.6458333333rem;
  -o-border-radius: 3.6458333333rem;
  border: none;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.1979166667rem;
  border: solid 0.0520833333rem #333;
  color: #333;
}

.btn_white:hover {
  background-color: #000;
  color: #fff;
  border: solid 0.0520833333rem #000;
}

.btn_f7f7f7 {
  background-color: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3.6458333333rem;
  -webkit-border-radius: 3.6458333333rem;
  -moz-border-radius: 3.6458333333rem;
  -ms-border-radius: 3.6458333333rem;
  -o-border-radius: 3.6458333333rem;
  border: none;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.1979166667rem;
  border: solid 0.0520833333rem #333;
  color: #333;
}

.btn_f7f7f7:hover {
  background-color: #000;
  color: #fff;
  border: solid 0.0520833333rem #000;
}

.btn_yellow:disabled,
.btn_black:disabled,
.btn_white:disabled,
.btn_f7f7f7:disabled {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

.title {
  font-size: 1.9791666667rem;
  line-height: 2.5520833333rem;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}

.title-second {
  font-size: 1.875rem;
  line-height: 2.4375rem;
  font-weight: 700;
  text-transform: uppercase;
}

.text {
  font-size: 0.9375rem;
  line-height: 1.40625rem;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .container {
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
  }

  .btn_yellow {
    font-size: 16px;
    border-radius: 70px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
    -ms-border-radius: 70px;
    -o-border-radius: 70px;
  }

  .btn_black {
    font-size: 18px;
    line-height: 23px;
    border-radius: 70px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
    -ms-border-radius: 70px;
    -o-border-radius: 70px;
  }

  .btn_white {
    font-size: 18px;
    line-height: 23px;
    border: solid 1px #333;
    border-radius: 70px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
    -ms-border-radius: 70px;
    -o-border-radius: 70px;
  }

  .title {
    font-size: 38px;
    line-height: 49px;
  }

  .title-second {
    font-size: 36px;
    line-height: 46.8px;
  }

  .text {
    font-size: 18px;
    line-height: 27px;
  }
}

@media screen and (max-width: 767px) {
  .title {
    font-size: 24px;
    line-height: 31.2px;
  }

  .text {
    font-size: 16px;
    line-height: 24px;
  }

  .btn_yellow {
    font-size: 14px;
    line-height: 18.2px;
  }

  .title-second {
    font-size: 24px;
    line-height: 28.6px;
    text-align: center;
  }
}

.header {
  position: relative;
}

.header__top {
  padding: 0.1041666666666667rem 0;
  background-color: #f8f8f8;
}

.header__top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.0416666667rem;
}

.header__hamburger {
  display: none;
}

.header__contacts {
  display: flex;
  gap: 1.5625rem;
  align-items: center;
}

.header__contacts {
  display: flex;
  gap: 1.1979166667rem;
}

.header__contacts-tel {
  font-size: 0.7291666667rem;
  font-weight: 700;
  line-height: 0.9375rem;
}

.header__contacts-tel .text-link {
  font-weight: 400;
}

.header__contacts-callback {
  font-size: 0.7291666667rem;
  line-height: 0.9375rem;
  cursor: pointer;
}

.header__contacts-medium {
  display: none;
}

.header__medium {
  padding: 0.78125rem 0;
}

.header__medium-wrapper {
  display: flex;
  width: 100%;
  gap: 0.2604166667rem;
}

.header__medium .container {
  display: flex;
  justify-content: space-between;
  gap: 2.34375rem;
  align-items: center;
}

.header__actions {
  display: flex;
  gap: 2.34375rem;
}

.header__actions-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2604166667rem;
}

.header__favorite,
.header__basket {
  position: relative;
}

.header__favorite-count,
.header__basket-count {
  display: none;
  position: absolute;
  background-color: #e9e800;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 4px;
  line-height: 100%;
  border-radius: 10px;
}

.header__favorite-count.active,
.header__basket-count.active {
  display: block;
}
.header__favorite-count {
  top: -6px;
  right: 6px;
}
.header__basket-count {
  top: -6px;
  right: 0px;
}
.header__actions-item span {
  color: #666;
  font-size: 0.625rem;
  line-height: 0.8125rem;
}

.header__actions-item img {
  width: 1.5625rem;
  height: 1.5625rem;
}

.header__actions-search {
  display: none;
}

.header__catalog-btn {
  width: 9.8958333333rem;
  height: 2.34375rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.21875rem;
  display: flex;
  align-items: center;
  gap: 0.5208333333rem;
}

.header__catalog-btn img {
  width: 1.041666666666667rem;
}

@media screen and (max-width: 1200px) {
  .header__catalog-btn img {
    width: 20px;
  }
}

.header__catalog-btn .opened,
.header__catalog-btn.opened .closed {
  display: none;
}

.header__catalog-btn .closed,
.header__catalog-btn.opened .opened {
  display: flex;
}

.header__search {
  position: relative;
  width: 100%;
}

.header__search-medium {
  display: none;
}

.header__search-input {
  width: 100%;
  height: 100%;
  max-width: 49.8958333333rem;
  border: solid 0.0520833333rem #dadada;
  border-radius: 3.6458333333rem;
  -webkit-border-radius: 3.6458333333rem;
  -moz-border-radius: 3.6458333333rem;
  -ms-border-radius: 3.6458333333rem;
  -o-border-radius: 3.6458333333rem;
  color: #888;
  font-size: 0.8333333333rem;
  line-height: 1.0833333333rem;
  padding: 0.6rem 3.125rem 0.6rem 1.0416666667rem;
}

.header__search-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 2.6041666667rem;
  background: none;
  border-radius: 0 3.6458333333rem 3.6458333333rem 0;
  -webkit-border-radius: 0 3.6458333333rem 3.6458333333rem 0;
  -moz-border-radius: 0 3.6458333333rem 3.6458333333rem 0;
  -ms-border-radius: 0 3.6458333333rem 3.6458333333rem 0;
  -o-border-radius: 0 3.6458333333rem 3.6458333333rem 0;
  border: none;
}

.header__bottom {
  background-color: #333;
}

.header__categories-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.0416666667rem;
}

.header__categories-item {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  position: relative;
  padding: 0.7291666667rem 0 0.5729166667rem;
}

.header__categories-item:hover .header__categories-arrow {
  rotate: -90deg;
}

.header__categories-item:hover .header__navbar-sublist {
  display: block;
  z-index: 10000;
}

.header__categories-item .header__navbar-subitem + .header__navbar-subitem {
  margin-top: 14px;
}

.header__categories-item .header__navbar-subitem a {
  white-space: nowrap;
}

.header__categories-arrow {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.header__categories-link {
  color: #fff;
  font-size: 0.8333333333rem;
  line-height: 1.09375rem;
  font-weight: 500;
}

.header__navbar-mobile-overlay {
  display: none;
}

.header__mobile-catalog-wrapper {
  display: none;
}

.header__catalog-wrapper {
  width: 100%;
  height: 100vh;
  top: -200vh;
  left: 0;
  position: absolute;
  z-index: 1001;
  background-color: #fff;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  border-top: solid 0.0520833333rem #dadada;
  overflow-y: scroll;
}

.header__catalog-wrapper.header__catalog-wrapper-new {
  padding-bottom: 280px;
}
.header__catalog-wrapper.active {
  top: 5.7rem;
}

.header__types-wrapper {
  display: flex;
  padding-top: 1.0416666667rem;
}

.header-catalog__type-wrapper {
  width: 50%;
}

.header-catalog__type-wrapper:nth-child(1) {
  padding-right: 0.5208333333rem;
  border-right: solid 0.0520833333rem #e4e4e4;
}

.header-catalog__type-wrapper:nth-child(2) {
  padding-left: 0.5208333333rem;
}

.header-catalog__type-category-name {
  display: block;
  font-size: 0.9375rem;
  line-height: 1.21875rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.0416666667rem;
}

.header-catalog__type-block {
  display: flex;
  flex-direction: column;
  gap: 0.5729166666666667rem;
  overflow: hidden;
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  break-inside: avoid-column;
}

.header-catalog__type-block-name {
  font-size: 0.8333333333rem;
  line-height: 1.0833333333rem;
  font-weight: 500;
  margin-left: -5px;
  margin-right: -5px;
  padding: 5px;
  background: transparent;
  transition: background 0.3s ease-in-out;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  -ms-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.header-catalog__type-block-name:hover {
  background: #e9e800;
}

.header-catalog__subtype-block a {
  font-size: 0.8333333333rem;
  line-height: 1.0833333333rem;
  color: #666666;
  width: 100%;
  margin-left: -5px;
  margin-right: -5px;
  padding: 5px;
  background: transparent;
  transition: background 0.3s ease-in-out;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  -ms-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.header-catalog__subtype-block a:hover {
  background: #e9e800;
}

.header-catalog__type-wrapper:nth-child(1) .header-catalog__wrapper-types {
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-break-inside: avoid;
  break-inside: avoid-column;
  overflow: hidden;
  page-break-inside: avoid;
  break-inside: avoid;
  break-inside: avoid-column;
  -moz-column-gap: 1.5625rem;
  column-gap: 1.5625rem;
  row-gap: 2.083333333333333rem;
}

.header-catalog__type-wrapper:nth-child(1)
  .header-catalog__wrapper-types
  .header-catalog__type-block:nth-child(1)
  .header-catalog__subtype-block
  a {
  font-size: 0.8333333333rem;
  line-height: 1.0833333333rem;
  color: #666666;
  width: calc(50% - 0.78125rem);
}

.header-catalog__type-wrapper:nth-child(2)
  .header-catalog__wrapper-types
  .header-catalog__type-block:nth-child(8) {
  grid-row-end: 1;
  grid-row-start: 8;
}

.header-catalog__type-wrapper:nth-child(2) .header-catalog__wrapper-types {
  /* display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.0416666667rem; */
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-break-inside: avoid;
  break-inside: avoid-column;
  overflow: hidden;
  page-break-inside: avoid;
  break-inside: avoid;
  break-inside: avoid-column;
  -moz-column-gap: 1.5625rem;
  column-gap: 1.5625rem;
  row-gap: 2.083333333333333rem;
}

.header-catalog__subtype-block {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  -moz-column-gap: 1.5625rem;
  column-gap: 1.5625rem;
  row-gap: 0.5208333333333333rem;
  max-height: 475px;
  overflow-y: scroll;
}

.header-catalog__subtype-block::-webkit-scrollbar {
  width: 5px;
  /* background-color: #f9f9fd; */
}

.header-catalog__subtype-block::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #e9e800;
}

.header-catalog__subtype-block::-webkit-scrollbar-track {
  /* -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.2); */
  border-radius: 10px;
  /* background-color: #f9f9fd; */
}

.header-catalog__link-all {
  color: #004bb1;
  font-size: 0.8333333333333333rem;
  line-height: 1.3;
  text-decoration: underline;
  text-underline-offset: 0.183rem;
}

.header__logo img {
  width: 11.5rem;
}

.header-catalog__type-wrapper:nth-child(1)
  .header-catalog__wrapper-types
  .header-catalog__type-block:nth-child(6) {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-end: 1;
  grid-row-start: 2;
}

@media screen and (max-width: 1230px) {
  .header-catalog__link-all {
    font-size: 12px;
    line-height: 14px;
  }

  .header__navbar-mobile-overlay {
    display: none;
  }

  .header__logo {
    flex-grow: 1;
  }

  /* .header__navbar-mobile {
    display: none;
  } */

  .header__catalog-wrapper {
    width: 100%;
    height: 100vh;
    top: -200vh;
    left: 0;
    position: absolute;
    z-index: 1001;
    background-color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    border: none;
    padding-bottom: 200px;
  }

  .header__catalog-wrapper.active {
    top: 108px;
  }

  .header__types-wrapper {
    display: flex;
    padding-top: 20px;
    flex-direction: column;
  }

  .header-catalog__type-wrapper {
    width: 100%;
  }

  .header-catalog__type-wrapper:nth-child(1) {
    padding: 0;
    padding-bottom: 30px;
    border: none;
    border-bottom: solid 1px #e4e4e4;
  }

  .header-catalog__type-wrapper:nth-child(2) {
    padding: 0;
    padding-top: 30px;
  }

  .header-catalog__type-category-name {
    display: block;
    font-size: 18px;
    line-height: 23.4px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .header-catalog__type-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .header-catalog__type-block-name {
    font-size: 16px;
    line-height: 20.8px;
    font-weight: 500;
  }

  .header-catalog__subtype-block a {
    font-size: 16px;
    line-height: 20.8px;
    color: #666666;
    width: 100%;
  }

  /* .header-catalog__type-wrapper:nth-child(1) .header-catalog__wrapper-types {
    display: grid;
    grid-template-columns: 2fr 1fr;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 10px;
  } */

  .header-catalog__type-wrapper:nth-child(1)
    .header-catalog__wrapper-types
    .header-catalog__subtype-block
    a {
    font-size: 16px;
    line-height: 20.8px;
    color: #666666;
    width: calc(100% / 2 - 15px);
  }

  .header-catalog__type-wrapper:nth-child(2)
    .header-catalog__wrapper-types
    .header-catalog__type-block:nth-child(8) {
    grid-row-end: 1;
    grid-row-start: 8;
  }

  /* .header-catalog__type-wrapper:nth-child(2) .header-catalog__wrapper-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  } */

  .header-catalog__subtype-block {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 5px;
  }
}

@media screen and (max-width: 1230px) {
  .header__top {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header__contacts-top {
    display: none;
  }

  .header__contacts-medium {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    justify-content: center;
  }

  .header__contacts-tel {
    font-size: 16px;
    line-height: 18px;
  }

  .header__contacts-callback {
    font-size: 14px;
    line-height: 18px;
  }

  .header__search {
    width: auto;
    display: none;
  }

  .header__search-medium {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0 16px;
    background: #fff;
  }

  .header__search-medium.active {
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
  }

  .header__search-input {
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    line-height: 1.2;
    border-width: 1px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 5px 10px;
  }

  .header__search-btn {
    width: 20px;
    right: 26px;
  }

  .header__search-close {
    width: 15px;
  }

  .header__search-btn img,
  .header__search-close svg {
    max-width: 100%;
  }

  .header__medium {
    border-bottom: solid 1px #e4e4e4;
    padding: 20px 0;
    position: relative;
  }

  .header__medium .container {
    gap: 40px;
    position: relative;
  }

  .header__medium-wrapper {
    justify-content: space-between;
  }

  .header__logo img {
    width: 185px;
  }

  .header__bottom {
    display: none;
  }

  .header__actions {
    gap: 15px;
  }

  .header__actions-item span {
    display: none;
    font-size: 12px;
    line-height: 15.6px;
  }

  .header__actions-item img {
    width: 30px;
    height: 30px;
  }

  .header__actions-search {
    display: block;
  }

  .header__catalog-btn {
    width: 158px;
    height: 45px;
    font-size: 18px;
    font-weight: 500;
    line-height: 23.4px;
  }

  .header__categories-link {
    font-size: 16px;
    line-height: 21px;
  }
}
.header__navbar-info,
.header__mobile-navbar-list {
  display: none;
}

@media screen and (max-width: 767px) {
  .header__mobile-catalog-wrapper {
    display: block;
  }
  .header__catalog-wrapper {
    display: none;
  }

  .header__navbar-mobile {
    display: block;
  }

  .header__navbar-mobile {
    max-width: 363px;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .header__mobile-navbar-sublist {
    display: none;
  }

  .header__mobile-navbar-item .header__mobile-navbar-sublist {
    display: none;
  }

  .header__mobile-navbar-item:hover .header__mobile-navbar-sublist {
    display: block;
  }

  .header__mobile-navbar-item .header__mobile-navbar-item-wrapper img {
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
  }

  .header__mobile-navbar-item:hover .header__mobile-navbar-item-wrapper img {
    rotate: 90deg;
  }

  .header__hamburger.active {
    position: relative;
  }

  .header__hamburger .header__hamburger-item:nth-child(1),
  .header__hamburger .header__hamburger-item:nth-child(2),
  .header__hamburger .header__hamburger-item:nth-child(3) {
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
  }

  .header__hamburger.active .header__hamburger-item:nth-child(1) {
    position: relative;
    rotate: 45deg;
    top: 7px;
  }

  .header__hamburger.active .header__hamburger-item:nth-child(2) {
    opacity: 0;
  }

  .header__hamburger.active .header__hamburger-item:nth-child(3) {
    position: relative;
    rotate: -45deg;
    top: -6px;
  }

  .header__mobile-catalog li {
    background: #e9e800;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header__mobile-navbar-list {
    list-style-type: none;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: solid 1px #e0e0e0;
  }

  .header__mobile-navbar-item-wrapper {
    display: flex;
    justify-content: space-between;
  }

  .header__mobile-catalog-wrapper a {
    font-size: 18px;
    line-height: 23.4px;
    display: flex;
    font-weight: 500;
    gap: 10px;
    align-items: center;
  }

  .header__mobile-navbar-item a {
    font-size: 18px;
    line-height: 23.4px;
  }

  .header__mobile-navbar-sublist {
    list-style-type: none;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .header__navbar-mobile-overlay {
    display: block;
    position: absolute;
    z-index: 100;
    width: 100%;
    height: 100vh;
    top: 61px;
    left: -200%;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
  }

  .header__navbar-mobile-overlay.active {
    z-index: -1;
    left: 0;
    background-color: #ffffff88;
  }

  .header__navbar-mobile {
    position: absolute;
    top: 61px;
    background-color: #fff;
    left: -200%;
    z-index: 1002;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    overflow: hidden;
  }

  .header__navbar-mobile.active {
    left: 0;
  }

  .header__navbar-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

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

  .header__navbar-action span,
  .header__icons-item span {
    font-size: 18px;
    line-height: 23.4px;
  }

  .header__navbar-mobile-contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .header__top {
    display: none;
  }

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

  .header__medium {
    padding: 20px 0 10px;
  }

  .header__medium-wrapper {
    display: none;
  }

  .header__medium .container {
    gap: 10px;
    padding: 0 16px;
  }

  .container {
    padding: 0 15px;
  }

  .header__hamburger {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    width: 20px;
    height: 15px;
    justify-content: space-between;
  }

  .header__hamburger-item {
    width: 100%;
    background-color: #333;
    height: 2px;
  }

  .header__hamburger-item:nth-child(2) {
    width: 10px;
  }

  .header__mobile-catalog-section-list {
    position: absolute;
    width: 100%;
    top: 0;
    left: 200%;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    background-color: #fff;
  }

  .header__mobile-catalog-section-list.active {
    left: 0;
  }

  .header-catalog-mobile__type-category-name {
    display: flex;
    gap: 10px;
    align-items: center;
    background-color: #f0f0f0;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 23.4px;
    font-weight: 500;
  }

  .header-catalog-mobile__wrapper-types {
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    max-height: 560px;
  }
  /* Стилизация скроллбара — WebKit (Chrome, Edge, Safari) */
  .header-catalog-mobile__wrapper-types::-webkit-scrollbar {
    width: 5px;
  }

  .header-catalog-mobile__wrapper-types::-webkit-scrollbar-track {
    background: #f0f0f0; /* Цвет фона полосы прокрутки */
    border-radius: 10px;
  }

  .header-catalog-mobile__wrapper-types::-webkit-scrollbar-thumb {
    background: #e9e800; /* Жёлтый цвет ползунка */
    border-radius: 10px;
    border: 1px solid #f0f0f0; /* Делает ползунок тоньше, визуально */
  }

  .header-catalog-mobile__wrapper-types::-webkit-scrollbar-thumb:hover {
    background: #d8d700; /* Темнее при наведении */
  }

  /* Для Firefox */
  @supports (-moz-appearance: none) {
    .header-catalog-mobile__wrapper-types {
      scrollbar-width: thin;
      scrollbar-color: #e9e800 #f0f0f0;
    }
  }

  /* Для старых версий Edge (IE не поддерживается, но на всякий случай) */
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .header-catalog-mobile__wrapper-types {
      scrollbar-face-color: #e9e800;
      scrollbar-track-color: #f0f0f0;
    }
  }
  .header-catalog-mobile__type-block {
    border-bottom: solid 1px #e0e0e0;
    padding: 15px 15px;
    display: grid;
    grid-template-columns: 1fr 25px;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    line-height: 23.4px;
    font-weight: 400;
    gap: 10px;
  }

  .header-catalog-mobile__type-block svg {
    margin-left: auto;
  }

  .header-catalog-mobile__type-block:last-child {
    border: none;
  }

  .header-catalog-mobile__wrapper-subtypes {
    position: absolute;
    width: 100%;
    top: 0;
    left: 200%;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    background-color: #fff;
    height: 100%;
    overflow-y: scroll;
  }

  .header-catalog-mobile__wrapper-subtypes.active {
    left: 0;
  }

  .header-catalog-mobile__wrapper-subtypes::-webkit-scrollbar {
    width: 5px;
  }

  .header-catalog-mobile__wrapper-subtypes::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #dadada;
  }

  .header-catalog-mobile__wrapper-subtypes::-webkit-scrollbar-thumb {
    background-color: #e9e800;
    /* цвет плашки */
  }

  .header-catalog-mobile__subtype-category-name {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: center;
    background-color: #f0f0f0;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 23.4px;
    font-weight: 500;
  }

  .header-catalog-mobile__subtype-block a {
    border-bottom: solid 1px #e0e0e0;
    padding: 15px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    line-height: 23.4px;
    font-weight: 500;
  }

  .header-catalog-mobile__subtype-block a:last-child {
    border: none;
  }
}

.footer {
  margin-top: 3rem;
  background-color: #1f1f1f;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}

.footer__wrapper {
  display: flex;
  gap: 3.75rem;
}

.footer__info {
  max-width: 10.4166666667rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer__info-icon {
  width: 100%;
}

.footer__info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer__info-title {
  font-size: 1.0416666667rem;
  line-height: 1.3541666667rem;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}

.footer__info-marks {
  margin-top: 0.3125rem;
  display: flex;
  gap: 0.3125rem;
}

.footer__info-marks img {
  height: 1.4583333333rem;
}

.footer__menu {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.footer__menu-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  justify-content: space-between;
}

.footer__menu-top__menu-item {
  max-width: 22.3958333333rem;
  width: 100%;
}

.footer__menu-name {
  font-size: 0.7291666667rem;
  line-height: 0.9479166667rem;
  text-transform: uppercase;
  padding-bottom: 0.2604166667rem;
  border-bottom: solid 0.0520833333rem #e9e800;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.0416666667rem;
}

.footer__menu-list {
  margin-top: 1.0416666667rem;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6770833333rem;
}

.footer__menu-list li {
  width: 100%;
}

.footer__menu-link {
  color: #dbdbdb;
  font-size: 0.8333333333rem;
  line-height: 1.0833333333rem;
  letter-spacing: 0.0208333333rem;
}

.footer__menu-bottom {
  margin-top: 4.2708333333rem;
  display: flex;
  gap: 1.5625rem;
}

.footer__menu-bottom .footer__menu-item {
  width: calc(20% - 0.8333333333rem);
}

ul.footer__menu-list.footer__category-home li {
  width: calc(100% / 2 - 7px);
}

ul.footer__menu-list.footer__category-prom li {
  width: 50%;
  padding: 7px 0;
}
.footer__menu-top {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-direction: column;
}
.footer__menu-top .footer__menu-list {
  gap: 0;
}
@media screen and (max-width: 1200px) {
  ul.footer__menu-list.footer__category-prom li {
    width: 100%;
    padding: 7px 0;
  }
  .footer__menu-top {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-direction: column;
  }
  ul.footer__menu-list.footer__category-prom {
    display: block;
    -moz-column-count: 2;
    column-count: 2;
  }

  ul.footer__menu-list.footer__category-home {
    display: block;
    -moz-column-count: 2;
    column-count: 2;
  }

  ul.footer__menu-list.footer__category-home li {
    width: 100%;
    padding: 7px 0;
  }

  .footer {
    margin-top: 40px;
    padding-top: 40px;
  }

  .footer__info-icon {
    max-width: 186px;
  }

  .footer__wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .footer__info {
    flex-direction: row;
    max-width: 100%;
    justify-content: space-between;
  }

  .footer__info-wrapper {
    gap: 22px;
    max-width: 275px;
  }

  .footer__info-marks {
    max-width: 170px;
    margin-top: 0;
    gap: 5px;
  }

  .footer__info-marks img {
    height: 28px;
  }

  .footer__info-title {
    font-size: 20px;
    line-height: 26px;
  }

  .footer__menu-top {
    gap: 20px;
  }

  .footer__menu-top .footer__menu-item {
    width: 100%;
    max-width: 100%;
  }

  .footer__menu-name {
    font-size: 14px;
    line-height: 18.2px;
  }

  .footer__menu-link {
    font-size: 16px;
    line-height: 20.8px;
    letter-spacing: 0.4px;
  }

  .footer__menu-list {
    margin-top: 20px;
    gap: 13px;
  }

  .footer__menu-bottom {
    margin-top: 62px;
    flex-wrap: wrap;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 62px;
  }

  .footer__menu-bottom .footer__menu-item {
    width: calc(33.3333333333% - 14px);
  }
}

@media screen and (max-width: 767px) {
  .footer {
    padding-top: 40px;
  }

  .footer__wrapper {
    flex-direction: column;
    gap: 62px;
  }

  .footer__info {
    flex-direction: column;
    gap: 20px;
  }

  .footer__info-wrapper {
    max-width: 100%;
  }

  .footer__info-logo {
    max-width: 185px;
    width: 100%;
  }

  .footer__info-title {
    letter-spacing: -1.5px;
    line-height: 24px;
  }

  .footer__menu-top {
    flex-direction: column;
    gap: 61px;
  }

  .footer__menu-top .footer__menu-item {
    width: 100%;
    max-width: 100%;
  }

  .footer__menu-bottom {
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 63px;
  }

  .footer__menu-bottom .footer__menu-item {
    width: calc(50% - 5px);
  }

  ul.footer__menu-list.footer__category-home {
    -moz-column-count: initial;
    column-count: initial;
  }

  ul.footer__menu-list.footer__category-prom {
    -moz-column-count: initial;
    column-count: initial;
  }
}

.modal__overlay {
  display: none;
  overflow-y: auto;
  max-height: 100vh;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #00000066;
  justify-content: center;
  align-items: center;
  padding: 0.6rem;
  z-index: 1000;
  max-height: 100vh;
  overflow-y: auto;
}

.modal__overlay.active {
  display: flex;
}

.modal__popup {
  z-index: 2;
  position: relative;
  max-width: 22.9rem;
  width: 100%;
  background-color: #f0f1f0;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  gap: 1.041rem;
  -webkit-border-radius: 1.5rem;
  -moz-border-radius: 1.5rem;
  -ms-border-radius: 1.5rem;
  -o-border-radius: 1.5rem;
}

.modal__popup-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.modal__popup-close {
  position: absolute;
  top: -1.5625rem;
  right: -1.5625rem;
}

.modal__popup-title {
  font-size: 1.565rem;
  line-height: 2rem;
  text-align: center;
  font-weight: 500;
}

.modal__popup-text {
  text-align: center;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  width: 100%;
}

.modal__form-input {
  width: 100%;
  border: solid 1px #dfe0e6;
  color: #959594;
  font-size: 0.82rem;
  line-height: 1.3rem;
  height: 2.6rem;
  border-radius: 1.041rem;
  padding: 0.6rem 1.041rem;
  outline: none;
  -webkit-border-radius: 1.041rem;
  -moz-border-radius: 1.041rem;
  -ms-border-radius: 1.041rem;
  -o-border-radius: 1.041rem;
}

.modal__form-btn {
  width: 100%;
  height: 2.8rem;
  font-size: 0.8rem;
  line-height: 1.1rem;
  cursor: pointer;
}

.modal__form-btn:disabled {
  cursor: not-allowed;
}

.modal__form-policy {
  font-size: 0.7rem;
  line-height: 0.95rem;
  text-align: center;
}

.modal__form-policy a {
  text-decoration: underline;
  text-underline-offset: 0.15rem;
}

@media screen and (max-width: 1920px) {
  .modal__overlay {
    display: none;
    overflow-y: auto;
    max-height: 100vh;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #00000066;
    justify-content: center;
    align-items: center;
    padding: 14px;
    z-index: 1000;
    padding-top: 90px;
  }

  .modal__overlay.active {
    display: flex;
  }

  .modal__popup {
    max-width: 440px;
    width: 100%;
    background-color: #f0f1f0;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 50px 80px;
    gap: 20px;
  }

  .modal__popup-title {
    font-size: 30px;
    line-height: 39px;
    text-align: center;
    font-weight: 500;
  }

  .modal__popup-description {
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.5;
  }

  .modal__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
  }

  .modal__form-input {
    width: 100%;
    border: solid 1px #dfe0e6;
    color: #959594;
    font-size: 16px;
    line-height: 24px;
    height: 51px;
    border-radius: 20px;
    padding: 10px 20px;
    outline: none;
  }

  .modal__form-btn {
    width: 100%;
    height: 53px;
    font-size: 16px;
    line-height: 20.8px;
  }

  .modal__form-policy {
    font-size: 12px;
    line-height: 18px;
    text-align: center;
  }

  .modal__form-policy a {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}

@media screen and (max-width: 767px) {
  .modal__overlay {
    padding-top: 110px;
  }

  .modal__popup-close {
    top: -30px;
    right: 0px;
  }

  .modal__popup-title {
    font-size: 24px;
    line-height: 31.2px;
  }

  .modal__popup-description {
    font-size: 16px;
    line-height: 1.5;
  }

  .modal__popup {
    border-radius: 16px;
    padding: 20px 15px;
    gap: 13px;
  }
}

.cetra_m {
  font-family: "Geometria";
  background: #fff;
  border-radius: 32px;
  padding: 72px 60px !important;
  overflow: hidden !important;
  box-sizing: border-box;
}

.cetra_m.cetra_incab {
  width: 548px;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
}

.cetra_m .fancybox-close-small {
  color: #0b1c3f !important;
  height: 40px !important;
  width: 40px !important;
  padding: 0 !important;
  right: 30px !important;
  top: 30px !important;
}

.cetra_modal_title {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.02em;
  color: #1a1b1e;
  padding-bottom: 26px;
}

.input_container {
  position: relative;
}

.cetra_m textarea.inputs::-webkit-input-placeholder,
.cetra_m input.inputs::-webkit-input-placeholder {
  color: #959594;
}

.cetra_m textarea.inputs::-moz-placeholder,
.cetra_m input.inputs::-moz-placeholder {
  color: #959594;
}

.cetra_m textarea.inputs:-ms-input-placeholder,
.cetra_m input.inputs:-ms-input-placeholder {
  color: #959594;
}

.cetra_m textarea.inputs::-ms-input-placeholder,
.cetra_m input.inputs::-ms-input-placeholder {
  color: #959594;
}

.cetra_m textarea.inputs::-webkit-input-placeholder,
.cetra_m input.inputs::-webkit-input-placeholder {
  color: #959594;
}

.cetra_m textarea.inputs::-moz-placeholder,
.cetra_m input.inputs::-moz-placeholder {
  color: #959594;
}

.cetra_m textarea.inputs:-ms-input-placeholder,
.cetra_m input.inputs:-ms-input-placeholder {
  color: #959594;
}

.cetra_m textarea.inputs::-ms-input-placeholder,
.cetra_m input.inputs::-ms-input-placeholder {
  color: #959594;
}

.cetra_m textarea.inputs::placeholder,
.cetra_m input.inputs::placeholder {
  color: #959594;
}

.cetra_m label {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  letter-spacing: -0.02em;
  color: #1a1b1e;
  padding-bottom: 4px;
}

.cetra_m label span {
  color: #950b84;
  padding: 0px 5px;
}

.cetra_m .politick {
  font-weight: 200;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.03em;
  color: #484642;
  margin: 10px 0px 16px;
}

.cetra_m .politick a,
.labels_block span a {
  color: #484642;
  text-decoration: underline;
}

.labels_block span a {
  padding-left: 5px;
}

span.eror_mesage {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #d50020;
  position: absolute;
  bottom: 0px;
  left: 0;
}

.cetra_m textarea.inputs,
.cetra_m select.inputs,
.cetra_m input.inputs {
  font-family: "Geometria";
  font-style: normal;
  font-weight: 200;
  font-size: 18px;
  line-height: 20px;
  color: #1a1b1e;
  width: 316px;
  height: 52px;
  background: #ffffff;
  border: 1px solid #dfe0e5;
  border-radius: 32px;
  padding: 16px 20px;
  box-sizing: border-box;
  margin-bottom: 20px;
  transition: 0.2s ease-in-out;
  position: relative;
}

.cetra_m textarea.inputs {
  height: 120px;
  overflow: hidden;
  resize: vertical;
}

.cetra_m select.inputs {
  padding: 0px 20px;
  width: 225px;
  color: #959594;
}

.cetra_m textarea.inputs:disabled,
.cetra_m input.inputs:disabled {
  background: #edeeed;
  color: #959594;
}

.cetra_m .input_container.search input.inputs:focus,
.cetra_m textarea.inputs:focus,
.cetra_m input.inputs:focus {
  border-color: #58b8c9;
  box-shadow: inset 0px 3px 6px rgba(53, 76, 85, 0.29);
  transition: 0.2s ease-in-out;
}

.cetra_m .input_container.search .icon_space {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.cetra_m .input_container.search .icon_space:before {
  content: "";
  width: 20px;
  height: 20px;
  top: 16px;
  right: 16px;
  z-index: 2;
  position: absolute;
  background-image: url("data:image/svg+xml;charset=UTF-8, %3csvg width='19' height='20' viewBox='0 0 19 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.06176 5.66957C2.48796 2.24494 5.82961 0.0102816 9.53934 0.000372992C13.5375 -0.0206814 17.0926 2.5403 18.339 6.33934C19.5853 10.1384 18.2381 14.3076 15.0044 16.6591C11.7707 19.0105 7.38925 19.007 4.15934 16.6504L1.27934 19.5304C0.986522 19.8228 0.512158 19.8228 0.21934 19.5304C-0.0731133 19.2376 -0.0731133 18.7632 0.21934 18.4704L3.00934 15.6804C0.403243 13.0402 -0.364444 9.09421 1.06176 5.66957ZM2.39891 12.1693C3.59638 15.055 6.41508 16.9344 9.53934 16.9304V16.8904C13.7796 16.885 17.2219 13.4606 17.2493 9.22037C17.2534 6.09611 15.374 3.27742 12.4883 2.07994C9.60261 0.88247 6.27967 1.54232 4.07048 3.75152C1.86129 5.96071 1.20144 9.28364 2.39891 12.1693Z' fill='%23333333'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.cetra_m textarea.inputs.eror,
.cetra_m input.inputs.eror {
  border: 1px solid #d50020;
  color: #d50020;
  transition: 0.2s ease-in-out;
}

.cetra_m textarea.inputs.eror::-webkit-input-placeholder,
.cetra_m input.inputs.eror::-webkit-input-placeholder {
  color: #d50020;
}

.cetra_m textarea.inputs.eror::-moz-placeholder,
.cetra_m input.inputs.eror::-moz-placeholder {
  color: #d50020;
}

.cetra_m textarea.inputs.eror:-ms-input-placeholder,
.cetra_m input.inputs.eror:-ms-input-placeholder {
  color: #d50020;
}

.cetra_m textarea.inputs.eror::-ms-input-placeholder,
.cetra_m input.inputs.eror::-ms-input-placeholder {
  color: #d50020;
}

.cetra_m textarea.inputs.eror::-webkit-input-placeholder,
.cetra_m input.inputs.eror::-webkit-input-placeholder {
  color: #d50020;
}

.cetra_m textarea.inputs.eror::-moz-placeholder,
.cetra_m input.inputs.eror::-moz-placeholder {
  color: #d50020;
}

.cetra_m textarea.inputs.eror:-ms-input-placeholder,
.cetra_m input.inputs.eror:-ms-input-placeholder {
  color: #d50020;
}

.cetra_m textarea.inputs.eror::-ms-input-placeholder,
.cetra_m input.inputs.eror::-ms-input-placeholder {
  color: #d50020;
}

.cetra_m textarea.inputs.eror::placeholder,
.cetra_m input.inputs.eror::placeholder {
  color: #d50020;
}

.cetra_m .input_container.search input.inputs {
  width: 483px;
  border: 2px solid #dbdbdb;
}

.cetra_m .verefy input.inputs {
  width: 160px;
}

.form_radio_btn {
  display: inline-block;
  margin-right: 4px;
}

.form_radio_btn input[type="radio"] {
  display: none;
}

.cetra_radio {
  padding-bottom: 30px;
}

.cetra_m.cetra_calk .form_radio_btn label {
  display: inline-block;
  cursor: pointer;
  padding: 10px 24px 8px;
  gap: 1px;
  width: 94px;
  font-weight: 200;
  height: 38px;
  background: #edeeed;
  border-radius: 18px;
  font-size: 14px;
  line-height: 18px;
  color: #959594;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cetra_m.cetra_calk label {
  padding-bottom: 15px;
  padding-top: 3px;
}

.cetra_m .information {
  width: 16px;
  display: inline-block;
  height: 20px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 1px 5px;
  background-image: url("data:image/svg+xml;charset=UTF-8, %3csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 2.5H15.58C18.8937 2.5 21.58 5.18629 21.58 8.5V16.08C21.58 19.3937 18.8937 22.08 15.58 22.08H8C4.68629 22.08 2 19.3937 2 16.08V8.5C2 5.18629 4.68629 2.5 8 2.5ZM15.58 20.58C18.063 20.5745 20.0745 18.563 20.08 16.08V8.5C20.0745 6.017 18.063 4.0055 15.58 4H8C5.517 4.0055 3.5055 6.017 3.5 8.5V16.08C3.5055 18.563 5.517 20.5745 8 20.58H15.58Z' fill='%23BABBBA'/%3e%3cpath d='M11.79 8.54004C11.3781 8.54542 11.0454 8.87808 11.04 9.29004C11.04 9.7059 11.3742 10.0446 11.79 10.05C11.9915 10.0528 12.1855 9.97333 12.327 9.82989C12.4686 9.68645 12.5455 9.49149 12.54 9.29004C12.54 8.87583 12.2043 8.54004 11.79 8.54004Z' fill='%23BABBBA'/%3e%3cpath d='M11.79 11.42C11.3758 11.42 11.04 11.7558 11.04 12.17V15.29C11.04 15.7042 11.3758 16.04 11.79 16.04C12.2043 16.04 12.54 15.7042 12.54 15.29V12.19C12.5483 11.9868 12.4726 11.7892 12.3307 11.6436C12.1889 11.4979 11.9933 11.4171 11.79 11.42Z' fill='%23BABBBA'/%3e%3c/svg%3e ");
}

.cetra_m .modall_bottom {
  position: relative;
}

.cetra_m .modall_bottom .contents {
  padding: 30px 60px 55px;
  background: #edeeed;
  font-weight: 200;
  font-size: 16px;
  line-height: 28px;
  color: #484642;
  border-radius: 0px 0px 32px 32px;
  margin: 40px -60px -75px;
  width: calc(100% + 120px);
  box-sizing: border-box;
}

.contents .contents_calc {
  position: relative;
}

.contents .contents_calc .cetra_right_num {
  font-weight: 400;
  position: absolute;
  right: 0px;
}

.cetra_form_grid_bottom {
  display: flex;
}

.cetra_form_grid_bottom .input_container {
  width: 50%;
}

.cetra_form_grid_bottom .input_container .contents_calc {
  box-sizing: border-box;
  padding-right: 47px;
  text-align: right;
}

.form_radio_btn input[type="radio"]:checked + label {
  background: #484642;
  color: #fff;
}

.form_radio_btn label:hover {
  color: #666;
}

.cetra_m .verefy .timer {
  font-size: 14px;
  font-weight: 200;
  line-height: 20px;
  letter-spacing: -0.03em;
  padding: 0px 13px;
  position: absolute;
  top: 38px;
  right: 0;
}

.cetra_form_grid {
  display: inline-table;
  margin: 0;
  padding: 0;
}

.cetra_form_grid .input_container {
  width: 50%;
  float: left;
}

.cetra_m .input_container .input_calck input {
  width: 140px;
}

.input_calck span {
  background-image: url("data:image/svg+xml;charset=UTF-8, %3csvg width='20' height='2' viewBox='0 0 20 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='20' height='2' fill='%23959594'/%3e%3c/svg%3e ");
  width: 20px;
  height: 13px;
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0px 5px;
}

.cetra_m .cetra_form_grid .input_container input.inputs {
  width: 95%;
}

.cetra_m .input_container.quantity input.inputs {
  height: 40px;
  text-align: center;
  width: 135px;
  font-weight: 600;
}

@media all and (max-width: 600px) {
  .cetra_m {
    padding: 35px !important;
  }

  .cetra_m.cetra_reg.cetra_incab,
  .cetra_m.cetra_city,
  .cetra_m.cetra_incab,
  .cetra_m.cetra_call,
  .cetra_m.cetra_tabsform,
  .cetra_m.cetra_tabsform .tab_s2,
  .cetra_m.card,
  .cetra_m.cetra_calk {
    width: 100%;
    min-width: 100%;
    height: auto;
  }

  .cetra_m textarea.inputs,
  .cetra_m input.inputs,
  .cetra_m .input_container.search input.inputs {
    width: 100%;
  }

  .cetra_m .verefy .timer {
    padding: 0;
    position: relative;
    display: block;
    top: 0;
    right: 0;
  }

  .cetra_form_grid .input_container {
    width: 100%;
  }

  .textcols {
    -moz-column-width: 100%;
    column-width: 100%;
    -moz-column-count: auto;
    column-count: auto;
    overflow: auto;
    height: 163px;
  }

  .labels_block label > span {
    display: block;
    padding-left: 30px;
    position: relative;
  }

  .labels_block label > span::before {
    position: absolute;
    left: 0;
    top: 3px;
  }

  .cetra_m .fancybox-close-small {
    right: 15px !important;
    top: 15px !important;
  }

  .cetra_m .input_container .input_calck input {
    width: 114px;
    font-size: 14px;
  }

  .cetra_m.cetra_calk .form_radio_btn label {
    padding: 10px 20px 8px;
    gap: 1px;
    width: 84px;
    font-size: 13px;
  }
}

.cetra_tabsform .cetra_tabs,
.cetra_incab .cetra_tabs {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.cetra_tabsform .cetra_tabs li,
.cetra_incab .cetra_tabs li {
  padding: 16px;
  cursor: pointer;
  color: #babbba;
  border-bottom: 3px solid #babbba;
}

.cetra_tabsform .cetra_tabs li.active,
.cetra_incab .cetra_tabs li.active {
  border-bottom: 3px solid #333333;
  color: #333333;
}

button {
  cursor: pointer;
}

.cetra_button {
  font-family: "Geometria";
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 14px 34px 11px;
  height: 53px;
  background: #e9e800;
  border-radius: 32px;
  border: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.cetra_incab .cetra_button {
  margin-top: 30px;
}

@media screen and (max-width: 390px) {
  .header__logo img {
    max-width: 130px;
  }

  .header__actions-item img {
    width: 25px;
    height: 25px;
  }
}

.product-item-fav {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  cursor: pointer;
}

.product-item-fav .active,
.product-item-fav.active .unactive {
  display: none;
}

.product-item-fav.active .active {
  display: block;
}

.page_detail {
  /* padding: 50px 0; */
  font-size: 16px;
  color: #333;
}

.page_detail h1,
.page_detail h2,
.page_detail h3,
.page_detail h4,
.page_detail h5,
.page_detail h6 {
  font-weight: 700;
  margin-bottom: 20px;
}

.page_detail h1 {
  font-size: 2.1rem;
}

.page_detail p {
  font-size: 0.8rem;
}

.page_detail h2,
.page_detail h3,
.page_detail h4,
.page_detail h5,
.page_detail h6 {
  font-size: 1.3rem;
}

@media screen and (max-width: 1600px) {
  .page_detail h1 {
    font-size: 42px;
  }

  .page_detail p {
    font-size: 16px;
  }

  .page_detail h2,
  .page_detail h3,
  .page_detail h4,
  .page_detail h5,
  .page_detail h6 {
    font-size: 24px;
  }
}

.page_detail p {
  margin-bottom: 20px;
}

.page_detail ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding-left: 20px;
  margin: 20px 0;
}

.page_detail ul li {
  margin-bottom: 0.3rem;
  position: relative;
  padding-left: 0.8rem;
  font-size: 0.8rem;
}

.page_detail ul li:before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #333;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}

@media screen and (max-width: 1200px) {
  .page_detail p {
    font-size: 16px;
    line-height: 20px;
  }

  .page_detail ul li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
    font-size: 16px;
  }
}

@media screen and (max-width: 650px) {
  .page_detail p {
    font-size: 16px;
    line-height: 20px;
    text-align: center;
  }

  .page_detail {
    font-size: 12px;
  }

  .page_detail h1 {
    font-size: 24px;
  }

  .page_detail h2,
  .page_detail h3,
  .page_detail h4,
  .page_detail h5,
  .page_detail h6 {
    font-size: 16px;
  }
}

summary {
  list-style: none;
  /* Убираем маркеры списка */
  display: block;
  /* Корректное отображение */
  cursor: pointer;
  /* Делаем курсор указателем */
  padding: 10px;
  /* Добавляем отступы */
  background-color: #f9f9f9;
  /* Опционально: фон */
  border-radius: 5px;
  /* Опционально: закругление */
}

.modal__popup-product__preload {
  display: none;
}

.modal__popup-product__preload.active {
  display: flex;
  gap: 0.5208333333333333rem;
}

.modal__popup-product__preload .dot {
  width: 0.78125rem;
  height: 0.78125rem;
  background-color: #000;
  border-radius: 50%;
  -webkit-animation: bounce 1.4s infinite ease-in-out both;
  animation: bounce 1.4s infinite ease-in-out both;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.modal__popup-product__preload .dot:nth-child(1) {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.modal__popup-product__preload .dot:nth-child(2) {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.modal__popup-product {
  margin-bottom: 10px;
  width: 100%;
  display: flex;
  gap: 0.5208333333333333rem;
  align-items: center;
  background-color: #fff;
  border: solid 1px #e4e4e4;
  border-radius: 0.5208333333333333rem;
  -webkit-border-radius: 0.5208333333333333rem;
  -moz-border-radius: 0.5208333333333333rem;
  -ms-border-radius: 0.5208333333333333rem;
  -o-border-radius: 0.5208333333333333rem;
  overflow: hidden;
  padding: 0.5208333333333333rem;
}

.modal__popup-product.unactive {
  display: none;
}

.modal__popup-product__wrapper {
  max-width: 33.33333333333333rem;
}

.modal__popup-product img,
.modal__product-image {
  width: 94px;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 84px;
}

.modal__popup-product span,
.modal__product-title,
.modal__product-title__adaptive {
  flex-grow: 1;
  font-size: 0.8333333333333333rem;
  line-height: 1.3;
  font-weight: 500;
  padding-right: 0.78125rem;
}

.modal__product-title__adaptive {
  display: none;
}

.modal__product-count-wrapper {
  /* width: 6.145833333333333rem; */
  margin-right: 10px;
}

.modal__product-count {
  padding: 8px 10px;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  min-width: 120px;
}

.modal__product-count-minus,
.modal__product-count-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
}

button.modal__product-count-minus,
button.modal__product-count-plus {
  background: unset;
  outline: unset;
  margin: 0;
  border: none;
}

.modal__product-count-minus.gray svg,
.modal__product-count-plus.gray svg {
  stroke: #999999;
}

.modal__product-count-input {
  width: calc(100% - (1.25rem * 2));
  text-align: center;
  border: unset;
  outline: unset;
  margin: 0;
  padding: 0;
}

.modal__product-count-input::-webkit-inner-spin-button,
.modal__product-count-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.modal__product-count-input {
  -moz-appearance: textfield;
}

.modal__product-count-desc {
  margin-top: 0.2083333333333333rem;
  width: 100%;
  font-size: 0.5208333333333333rem;
  text-align: center;
  color: #666;
}

@media screen and (max-width: 1200px) {
  .modal__popup-product span,
  .modal__product-title,
  .modal__product-title__adaptive {
    font-size: 16px;
    padding-right: 15px;
  }

  .modal__popup-product__preload.active {
    gap: 10px;
  }

  .modal__popup-product {
    justify-content: space-between;
    gap: 10px;
    border: solid 1px #e4e4e4;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 10px;
  }

  .modal__popup-product__wrapper {
    max-width: 640px;
  }

  .modal__product-count-wrapper {
    width: 118px;
  }

  .modal__product-count-desc {
    margin-top: 4px;
    font-size: 10px;
  }

  .modal__product-count-minus,
  .modal__product-count-plus {
    width: 24px;
    height: 24px;
  }

  .modal__product-count-input {
    width: calc(100% - (24px * 2));
  }
}

@media screen and (max-width: 767px) {
  .modal__product-count-wrapper {
    margin-right: 0px;
  }
  .modal__popup-product {
    flex-wrap: wrap;
  }

  .modal__product-title__has-mobile {
    display: none;
  }

  .modal__product-title__adaptive {
    display: block;
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .modal__product-count-desc {
    font-size: 10px;
  }
}

.sale_order_full_table {
  padding-top: 40px;
  margin: 0 auto;
}

.sale_order_full_table td {
  text-align: center;
}

/* удалить когда нормальнов все приведут в порядок от сюда */
.sections {
  margin-top: 1.875rem;
  margin-bottom: 6.7rem;
}

.sections .sections__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.sections .sections__wrapper > p {
  margin: 1rem 0 5rem 0;
  font-size: 1.041rem;
}

@media screen and (max-width: 1200px) {
  .sections .sections__wrapper > p {
    margin: 20px 0 20px;
    font-size: 20px;
    line-height: 24px;
  }
}

@media screen and (max-width: 767px) {
  .sections .sections__wrapper > p {
    font-size: 18px;
    margin: 14px 0 59px;
    text-align: center;
  }
}

.sections .sections__items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5625rem;
}

@media screen and (max-width: 1200px) {
  .sections .sections__items {
    gap: 20px;
  }

  .sections__wrapper h1 {
    font-size: 38px;
    line-height: 49.4px;
  }
}

@media screen and (max-width: 767px) {
  .sections .sections__items {
    gap: 10px;
    margin-top: 50px;
  }

  .sections__wrapper h1 {
    font-size: 24px;
    line-height: 31.2px;
  }
}

.sections .sections__items .section {
  position: relative;
  transition: 0.3s ease-in-out;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  height: auto;
  width: calc((100% / 3) - 1.05rem);
  background-color: #f8f8f8;
  box-sizing: border-box;
  padding: 0.625rem 1.25rem 0.625rem 0.625rem;
  border-radius: 1.25rem;
  -webkit-border-radius: 1.25rem;
  -moz-border-radius: 1.25rem;
  -ms-border-radius: 1.25rem;
  -o-border-radius: 1.25rem;
}

@media screen and (max-width: 1200px) {
  .sections .sections__items .section {
    flex-direction: column;
    width: calc((100% / 2) - 10px);
    gap: 12px;
    padding: 10px;
    border-radius: 20px;
  }
}

@media screen and (max-width: 767px) {
  .sections .sections__items .section {
    width: 100%;
    align-items: center;
  }

  .sections .sections__items .section p {
    text-align: center;
    font-size: 16px;
    line-height: 21.6px;
  }
}

.sections .sections__items .section img {
  width: 8.625rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 1/1;
}

@media screen and (max-width: 1200px) {
  .sections .sections__items .section img {
    width: 100%;
    max-width: 194px;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .sections .sections__items .section img {
    width: 100%;
    max-width: 180px;
    height: auto;
  }
}

.sections .sections__items .section .section__content {
  display: flex;
  flex-direction: column;
  gap: 1.041rem;
}

@media screen and (max-width: 1200px) {
  .sections .sections__items .section .section__content {
    margin: 0 0.625rem;
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .sections .sections__items .section .section__content {
    margin: 0;
  }
}

.sections .sections__items .section .section__content .section__title {
  font-weight: 500;
  font-size: 1.15rem;
}

@media screen and (max-width: 1200px) {
  .sections .sections__items .section .section__content .section__title {
    font-size: 24px;
    line-height: 28.8px;
  }
}

.sections .sections__items .section:nth-child(1) {
  width: 100%;
  flex-direction: row;
  gap: 20px;
}

@media screen and (min-width: 1200px) {
  .section__text {
    font-size: 0.833rem;
    line-height: 1.083rem;
  }

  .sections .sections__items .section:nth-child(1) {
    position: relative;
    justify-content: center;
    min-height: 16rem;
  }

  .sections .sections__items .section.has_image:nth-child(1) {
    min-height: 15.5rem;
  }

  .sections .sections__items .section:nth-child(1) img {
    height: 15.525rem;
    width: auto;
    /* position: absolute;
    top: 1rem;
    left: 4.9rem; */
  }

  .sections .sections__items .section:nth-child(1) .section__content {
    max-width: 35.95rem;
  }

  .sections
    .sections__items
    .section:nth-child(1)
    .section__content
    .section__title {
    font-size: 1.563rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .sections .sections__items .section:nth-child(1) img {
    width: 100%;
    max-width: 348px;
    height: auto;
  }

  .sections
    .sections__items
    .section:nth-child(1)
    .section__content
    .section__title {
    font-size: 30px;
    line-height: 36px;
  }

  p.section__text {
    font-size: 16px;
    line-height: 20.8px;
  }

  .page_detail .products__wrapper p {
    font-size: 16px;
    line-height: 20px;
  }
}

@media screen and (max-width: 767px) {
  .sections .sections__items .section:nth-child(1) {
    padding: 10px 10px 10px;
    flex-direction: column;
  }

  .sections .sections__items .section .section__content .section__title {
    font-size: 20px;
    line-height: 24px;
  }

  .sections .sections__items .section:nth-child(1) img {
    position: static;
    transform: initial;
    max-width: 230px;
    width: 100%;
    height: auto;
    -webkit-transform: initial;
    -moz-transform: initial;
    -ms-transform: initial;
    -o-transform: initial;
  }
}

@media screen and (min-width: 1200px) {
  .sections .sections__items .section:nth-child(2),
  .sections .sections__items .section:nth-child(3) {
    width: calc((100% - 1.875rem) / 2);
    gap: 2.7rem;
  }

  .sections .sections__items .section:nth-child(2) img,
  .sections .sections__items .section:nth-child(3) img {
    height: 12.525rem;
    width: auto;
  }
}

.sections .sections__items .section:hover {
  background-color: #e9e800;
}

.sections .sections__items .section:hover::after {
  transform: scaleX(1.02);
  background-color: #e9e800;
}

.sections .sections__items .section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  background-color: #f8f8f8;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 1200px) {
  .sections {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .sections {
    margin-top: 40px;
  }
}

.sections .sections__showMore {
  margin: 1.4rem auto 0;
  padding: 0.85rem 1rem;
  border-radius: 4.375rem;
  background-color: #e9e800;
  font-weight: 500;
  font-size: 1.125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.94rem;
}

@media screen and (max-width: 1200px) {
  h2 {
    font-size: 36px;
    line-height: 46.8px;
  }

  .sections .sections__showMore {
    margin-top: 30px;
    width: 100%;
    max-width: 292px;
    height: 56px;
    font-size: 18px;
    line-height: 23.4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 70px;
  }
}

@media screen and (max-width: 767px) {
  .sections .sections__showMore {
    margin-top: 20rem;
    padding: 0.875rem 1.875rem;
    height: 50px;
    max-width: 260px;
    border-radius: 70px;
    font-size: 16px;
    line-height: 20.8px;
  }
}

/* удалить когда нормальнов все приведут в порядок до сюда */

.sections
  .sections__items
  a.section.has_image.section__two-columns:nth-child(1)
  img {
  position: static;
  height: 12.525rem;
}

.sections
  .sections__items
  .section.has_image.section__two-columns:nth-child(1) {
  width: calc((100% - 1.875rem) / 2);
  gap: 2.7rem;
  padding: 0.625rem 1.25rem 0.625rem 0.625rem;
  justify-content: flex-start;
  min-height: initial;
}

.sections
  .sections__items
  .section.has_image.section__two-columns
  .section__content
  .section__title {
  font-size: 1.563rem;
}

a.section.has_image.section__two-columns {
  width: calc((100% - 1.875rem) / 2);
}

@media screen and (max-width: 1200px) {
  .sections
    .sections__items
    a.section.has_image.section__two-columns:nth-child(1)
    img {
    max-width: 194px;
    width: 100%;
    height: auto;
  }

  .sections
    .sections__items
    .section.has_image.section__two-columns:nth-child(1) {
    flex-direction: column;
    gap: 10px;
  }

  .sections
    .sections__items
    .section.has_image.section__two-columns:nth-child(1) {
    width: calc(100% / 2 - 10px);
  }

  .sections
    .sections__items
    .section.has_image.section__two-columns
    .section__content
    .section__title {
    font-size: 18px;
  }

  a.section.has_image.section__two-columns {
    width: calc((100% - 20px) / 2);
  }
}

@media screen and (max-width: 767px) {
  .catalog__second-title {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }

  .sections
    .sections__items
    .section.has_image.section__two-columns:nth-child(1) {
    width: 100%;
  }

  a.section.has_image.section__two-columns {
    width: 100%;
  }
}
.modal_color {
  position: relative;
  width: calc(100% / 2);
  height: 50px;
}
.modal_color_wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.modal_color-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.checkbox-label {
  display: flex;
  align-items: center;

  gap: 8px;
  cursor: pointer;
  flex-wrap: wrap;
}
.checkbox-label-inline {
  display: flex;
  font-size: 14px;
  gap: 8px;
  cursor: pointer;
  grid-column: 1/-1;
  flex-wrap: wrap;
  align-items: center;
}

.checkbox-input {
  opacity: 0;
  position: absolute;
}

.custom-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid #777;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.checkbox-input:checked + .custom-checkbox::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 6px;
  height: 10px;
  border: solid #ffcc00;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox-label.popup__container-privacy {
  grid-column: 1/3;
  justify-content: center;
}
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 60px;
  left: 0;
  width: 100%;
  max-width: 378px;
  background-color: #f9f9f9;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  border-radius: 20px;
}

.cookie-consent__content {
  max-width: 600px;
  margin: 0 auto;
}

.cookie-consent p {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 20px;
}

.cookie-consent__button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 70px;
  border: solid 1px #333333;
  background-color: inherit;
  color: #333333;
  text-decoration: none;
  width: 100%;
  transition: background-color 0.3s ease;
  -webkit-border-radius: 70px;
  -moz-border-radius: 70px;
  -ms-border-radius: 70px;
  -o-border-radius: 70px;
}

.cookie-consent__button:hover {
  background-color: #333333;
  color: white;
}
