@font-face {
  font-family: Play;
  src: url(../assets/fonts/play/Play-Bold.woff2) format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Play;
  src: url(../assets/fonts/play/Play-Regular.woff2) format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
*,
:before,
:after {
  box-sizing: inherit;
}
html {
  box-sizing: border-box;
}
body {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font: inherit;
  margin-top: 0;
  margin-bottom: 0;
}
p {
  margin-top: 0;
  margin-bottom: 0;
}
a {
  color: inherit;
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
}
img,
svg {
  max-width: 100%;
  display: block;
}
input,
button,
textarea {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  display: block;
}
input[type='search']::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
input[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type='number'] {
  -moz-appearance: textfield;
}
button {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
button:disabled {
  cursor: not-allowed;
}
textarea {
  resize: vertical;
}
ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1em;
}
body .container {
  width: 100% !important;
  max-width: 1500px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media (max-width: 1499px) {
  .container {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
}
body .header {
  z-index: 1;
  background-color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  z-index: 10;
}
@media (max-width: 1179px) {
  body .header {
    display: none;
  }
}
@media (max-width: 1499px) {
  body .header > .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.header-top {
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}
.header-navigation {
  align-items: stretch;
  display: flex;
}
.header-logo {
	width: 188px;
	height: 30px;
}
.header-navigation__item {
  transition: color 0.3s ease-out;
}
.header-navigation__item:hover {
  color: #efa118;
}
.header-navigation__item:focus-visible {
  color: #efa118;
}
.header-navigation__item + .header-navigation__item {
  margin-left: 10px;
}
.header-navigation__item:first-child + .header-navigation__item {
  margin-left: 25px;
}
.header-contacts {
  align-items: stretch;
  column-gap: 15px;
  display: flex;
}
.header-contacts__item {
  transition: color 0.3s ease-out;
}
.header-contacts__item:hover {
  color: #efa118;
}
.header-contacts__item:focus-visible {
  color: #efa118;
}
.header-contacts__divider {
  background-color: currentColor;
  width: 1px;
  height: calc(100% - 8px);
  margin-top: auto;
  margin-bottom: auto;
}
.header-body {
  align-items: center;
  column-gap: 25px;
  margin-top: 15px;
  display: flex;
}
.header__catalog-button {
  color: #fff;
  background-color: #535353;
  border-radius: 8px;
  padding: 10px 15px;
  transition: background-color 0.3s ease-out;
}
.header__catalog-button:hover {
  background-color: #efa118;
}
.header__catalog-button:focus-visible {
  background-color: #efa118;
}
.header-search {
  border: 1px solid #f2f2f2;
  border-radius: 8px;
  flex-grow: 1;
  align-items: stretch;
  column-gap: 25px;
  height: 48px;
  transition: border-color 0.3s ease-out;
  display: flex;
  position: relative;
}
.header-search:has(.header-search__input:not(:placeholder-shown)) {
  border-color: #efa118;
}
.header-search:has(.header-search__input:placeholder-shown) .header-search__reset-button {
  opacity: 0;
}
.header-search:has(.header-search__input:not(:placeholder-shown)) .header-search__submit-button {
  color: #fff;
  background-color: #efa118;
}
.header-search__input {
  flex-grow: 1;
  padding-left: 15px;
}
.header-search__input::-webkit-input-placeholder {
  color: rgba(83, 83, 83, 0.25);
}
.header-search__input::-ms-input-placeholder {
  color: rgba(83, 83, 83, 0.25);
}
.header-search__input::placeholder {
  color: rgba(83, 83, 83, 0.25);
}
.header-search__reset-button {
  transition: opacity 0.3s ease-out;
}
.header-search-sort {
  height: 100%;
  position: relative;
}
.header-search-sort-button {
  align-items: center;
  column-gap: 10px;
  height: 100%;
  display: flex;
}
.header-search-sort-button__text {
  font-size: 14px;
}
.header-search-sort-menu {
  opacity: 1;
  visibility: visible;
  background-color: #fff;
  border-radius: 4px;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 10px;
  padding: 10px 25px;
  transition:
    translate 0.3s ease-out,
    visibility 0.3s ease-out,
    opacity 0.3s ease-out;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  translate: 0 calc(100% + 7.5px);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}
.header-search-sort-menu__item {
  white-space: nowrap;
  transition: color 0.3s ease-out;
}
.header-search-sort-menu__item--active,
.header-search-sort-menu__item:hover {
  color: #efa118;
}
.header-search-sort-menu__item:focus-visible {
  color: #efa118;
}
.header-search-sort--shown .header-search-sort-button__icon > svg {
  rotate: 180deg;
}
.header-search-sort:not(.header-search-sort--shown) .header-search-sort-menu {
  opacity: 0;
  visibility: hidden;
  translate: 0 calc(50% + 7.5px);
}
.header-search__submit-button {
  aspect-ratio: 1;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  justify-content: center;
  align-items: center;
  height: 100%;
  transition:
    color 0.3s ease-out,
    background-color 0.3s ease-out;
  display: flex;
}
.header-search-results {
  opacity: 1;
  visibility: visible;
  background-color: #f2f2f2;
  border-radius: 10px;
  width: 100%;
  padding: 10px;
  transition:
    translate 0.3s ease-out,
    visibility 0.3s ease-out,
    opacity 0.3s ease-out;
  position: absolute;
  bottom: 0;
  right: 0;
  translate: 0 calc(100% + 35px);
}
.header-search-results:not(.header-search-results--shown) {
  opacity: 0;
  visibility: hidden;
  translate: 0 calc(50% + 35px);
}
.header-search-results-wrapper {
  flex-direction: column;
  row-gap: 10px;
  height: 275px;
  padding-right: 15px;
  display: flex;
  overflow-y: auto;
}
.header-search-results-item {
  background-color: #fff;
  border: 1px solid #f2f2f2;
  border-radius: 8px;
  column-gap: 10px;
  padding: 10px;
  transition: border-color 0.3s ease-out;
  display: flex;
}
.header-search-results-item:hover {
  border-color: currentColor;
}
.header-search-results-item:focus-visible {
  border-color: currentColor;
}
.header-search-results-item:hover .header-search-results-item__name {
  color: #efa118;
}
.header-search-results-item:focus-visible .header-search-results-item__name {
  color: #efa118;
}
.header-search-results-item__image {
  object-fit: scale-down;
  background-color: #fff;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  width: 60px;
  height: 60px;
}
.header-search-results-item-body {
  flex-direction: column;
  row-gap: 5px;
  display: flex;
}
.header-search-results-item__price {
  font-size: 14px;
  line-height: 1;
}
.header-search-results-item__name {
  font-weight: 700;
  transition: color 0.3s ease-out;
}
.header-actions {
  align-items: center;
  column-gap: 25px;
  display: flex;
}
.header-actions__item {
  position: relative;
}
.header-actions__item[data-badge]:after {
  content: attr(data-badge);
  font-variant-numeric: proportional-nums;
  text-align: center;
  color: #fff;
  background-color: #efa118;
  border-radius: 100%;
  align-content: center;
  width: 18px;
  height: 18px;
  font-size: 10px;
  line-height: 10px;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  translate: 25% 25%;
}
.header-actions-profile,
.header-actions-profile__button {
  position: relative;
}
.header-actions-profile__button > svg:nth-child(2) {
  position: absolute;
  bottom: 0;
  right: 0;
}
.header-actions-profile-menu {
  z-index: 1;
  color: #fff;
  opacity: 1;
  visibility: visible;
  background-color: #535353;
  border-radius: 10px;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 10px;
  padding: 15px;
  transition:
    translate 0.3s ease-out,
    visibility 0.3s ease-out,
    opacity 0.3s ease-out;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  translate: 0 calc(100% + 20px);
}
.header-actions-profile-menu:not(.header-actions-profile-menu--shown) {
  opacity: 0;
  visibility: hidden;
  translate: 0 100%;
}
.header-actions-profile-menu__item {
  white-space: nowrap;
  transition: color 0.3s ease-out;
}
.header-actions-profile-menu__item:hover {
  color: #efa118;
}
.header-actions-profile-menu__item:focus-visible {
  color: #efa118;
}
.header-actions-profile:not(.header-actions-profile--authorized) .header-actions-profile__button > svg:nth-child(2) {
  visibility: hidden;
}
.header-touch {
  z-index: 1;
  background-color: #535353;
  height: 64px;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
}
@media (min-width: 1180px) {
  .header-touch {
    display: none;
  }
}
.header-touch--light {
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.header-touch > .container {
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
}
.header-touch__logotype {
  color: #f2f2f2;
}
.header-touch--light .header-touch__logotype {
  color: #535353;
}
.header-touch-actions {
  align-items: center;
  column-gap: 25px;
  display: flex;
}
.header-touch-actions__item {
  color: #fff;
}
.header-touch-actions__item--account {
  position: relative;
}
.header-touch-actions__item--account > svg:nth-child(2) {
  visibility: hidden;
  position: absolute;
  bottom: 0;
  right: 0;
}
.header-touch-actions__item--account-authorized > svg:nth-child(2) {
  visibility: visible;
}
.pages__links {
  display: flex;
  gap: 0 1em;
  list-style-type: none;
}
.pages__link {
  transition: color .3s ease-out;
}
.pages__link:hover {
  color: #efa118;
}
.pages__link.pages__link--active > a {
  color: #efa118;
}
.header-touch--light .header-touch-actions__item {
  color: #535353;
}
body .footer {
  color: #fff;
  background-color: #323334;
  padding-top: 50px;
  padding-bottom: 25px;
}
@media (max-width: 1179px) {
  .footer {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.footer-header {
  justify-content: space-between;
  display: flex;
}
.footer-header-navigation__logotype {
  color: #f2f2f2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: color 0.3s ease-out;
}
.footer-header-navigation__logotype:hover {
  color: #efa118;
}
.footer-header-navigation__logotype:focus-visible {
  color: #efa118;
}
.footer-header-navigation-row {
  margin-top: 25px;
  display: flex;
}
.footer-header-navigation-row__item {
  transition: color 0.3s ease-out;
  color:#fff;
}
.footer-header-navigation-row__item:hover {
  color: #efa118;
}
.footer-header-navigation-row__item:focus-visible {
  color: #efa118;
}
.footer-header-navigation-row--1 {
  column-gap: 25px;
  font-size: 20px;
}
@media (max-width: 1179px) {
  .footer-header-navigation-row--1 {
    flex-wrap: wrap;
    gap: 10px 15px;
  }
}
.footer-header-navigation-row--2 {
  column-gap: 15px;
}
@media (max-width: 1179px) {
  .footer-header-navigation-row--2 {
    column-gap: 10px;
  }
}
@media (max-width: 743px) {
  .footer-header-navigation-row--2 {
    flex-wrap: wrap;
    row-gap: 10px;
  }
}
.footer-header-navigation-row--1 + .footer-header-navigation-row--2 {
  margin-top: 15px;
}
@media (max-width: 1179px) {
  .footer-header-navigation-row--1 + .footer-header-navigation-row--2 {
    margin-top: 25px;
  }
}
.footer-contacts {
  align-items: stretch;
  column-gap: 25px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
}
@media (max-width: 743px) {
  .footer-contacts {
    flex-direction: column-reverse;
    row-gap: 25px;
  }
}
.footer-contacts-column {
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}
@media (max-width: 1499px) {
  .footer-contacts-column {
    align-items: flex-start;
  }
}
.footer-contacts-column__phone {
  color: #efa118;
  font-size: 24px;
  font-weight: 700;
}
.footer-contacts-column__email {
  color:#fff;
  transition: color 0.3s ease-out;
}
.footer-contacts-column__email:hover {
  color: #efa118;
}
.footer-contacts-column__email:focus-visible {
  color: #efa118;
}
.footer-contacts__divider {
  background-color: rgba(255, 255, 255, 0.25);
  width: 1px;
}
@media (max-width: 743px) {
  .footer-contacts__divider {
    display: none;
  }
}
.footer-contacts-row {
  align-items: center;
  column-gap: 15px;
  display: flex;
}
.footer-contacts-row__item {
  border-radius: 100%;
  transition: box-shadow 0.1s ease-out;
}
.footer-contacts-row__item rect {
  transition:
    stroke 0.1s ease-out,
    fill 0.1s ease-out;
}
.footer-contacts-row__item:hover {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.footer-contacts-row__item:focus-visible {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.footer-contacts-row__item:hover rect {
  stroke: #efa118;
  fill: #efa118;
}
.footer-contacts-row__item:focus-visible rect {
  stroke: #efa118;
  fill: #efa118;
}
.footer__divider {
  background-color: rgba(255, 255, 255, 0.25);
  width: 100%;
  height: 1px;
  margin-top: 25px;
}
.footer__copyright {
  margin-top: 15px;
}
.footer > .container > .footer-contacts {
  margin-top: 25px;
}
@media (min-width: 1500px) {
  .footer > .container > .footer-contacts {
    display: none;
  }
}
@media (max-width: 1499px) {
  .footer > .container > .footer-header > .footer-contacts {
    display: none;
  }
}
.about {
  padding-top: 50px;
}
@media (max-width: 1499px) {
  .about {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.about__wrap {
  padding-top: 25px;
}
.about__title {
  text-wrap: balance;
  font-size: 48px;
  font-weight: 700;
}
@media (max-width: 1499px) {
  .about__title {
    font-size: 40px;
  }
}
@media (max-width: 1179px) {
  .about__title {
    font-size: 32px;
  }
}
.about__subtitle {
  text-wrap: balance;
  font-size: 40px;
  font-weight: 700;
}
@media (max-width: 1499px) {
  .about__subtitle {
    font-size: 32px;
  }
}
@media (max-width: 1179px) {
  .about__subtitle {
    font-size: 28px;
  }
}
.about__description {
  text-wrap: pretty;
  margin-top: 25px;
  font-size: 28px;
}
@media (max-width: 1499px) {
  .about__description {
    font-size: 24px;
  }
}
@media (max-width: 1179px) {
  .about__description {
    font-size: 20px;
  }
}
.about-tabs {
  margin-top: 25px;
}
@media (max-width: 1179px) {
  .about-tabs {
    margin-top: 25px;
  }
}
.about-tabs-header {
  column-gap: 25px;
  display: flex;
}
@media (max-width: 743px) {
  .about-tabs-header {
    overflow-x: auto;
  }
}
.about-tabs-header__button {
  font-size: 32px;
  font-weight: 700;
  transition: color 0.3s ease-out;
}
@media (max-width: 1179px) {
  .about-tabs-header__button {
    font-size: 24px;
  }
}
@media (max-width: 743px) {
  .about-tabs-header__button {
    white-space: nowrap;
  }
}
.about-tabs-header__button--active,
.about-tabs-header__button:hover {
  color: #efa118;
}
.about-tabs-header__button:focus-visible {
  color: #efa118;
}
.about-tabs-item {
  text-wrap: pretty;
  margin-top: 25px;
  font-size: 24px;
}
@media (max-width: 1179px) {
  .about-tabs-item {
    margin-top: 15px;
    font-size: 20px;
  }
}
.about-tabs-item:not(.about-tabs-item--shown) {
  display: none;
}
.about-tabs-item ul {
  padding-left: 0;
  list-style: none;
}
.about-tabs-item ul li {
  position: relative;
}
.about-tabs-item ul li:before {
  content: '';
  vertical-align: middle;
  background-image: url('data:image/svg+xml,%3Csvg width=%2720%27 height=%2715%27 viewBox=%270 0 20 15%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M19 1L7 13L1 7%27 stroke=%27%23EFA118%27 stroke-width=%272%27/%3E%3C/svg%3E%0A');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 15px;
  margin-right: 15px;
  display: inline-block;
}
.about__benefits {
  margin-top: 50px;
}
.feedback {
  background-color: #f2f2f2;
  position: relative;
  overflow-x: hidden;
}
.feedback > .container {
  display: flex;
}
@media (max-width: 1179px) {
  .feedback > .container {
    flex-direction: column;
  }
}
.feedback-body {
  flex-shrink: 0;
  max-width: 990px;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 1499px) {
  .feedback-body {
    max-width: 755px;
    padding: 25px 25px 25px 0;
  }
}
@media (max-width: 1179px) {
  .feedback-body {
    max-width: none;
    padding: 25px 0;
  }
}
.feedback-body__title {
  text-wrap: balance;
  font-size: 48px;
  font-weight: 700;
}
@media (max-width: 1499px) {
  .feedback-body__title {
    font-size: 40px;
  }
}
@media (max-width: 1179px) {
  .feedback-body__title {
    font-size: 32px;
  }
}
.feedback-body__description {
  text-wrap: pretty;
  margin-top: 25px;
  font-size: 20px;
}
@media (max-width: 1499px) {
  .feedback-body__description {
    font-size: 24px;
  }
}
@media (max-width: 1179px) {
  .feedback-body__description {
    font-size: 20px;
  }
}
body .feedback-form {
  flex-direction: column;
  row-gap: 25px;
  margin-top: 25px;
  display: flex;
}
.feedback-form-row {
  column-gap: 25px;
  display: flex;
}
@media (max-width: 1179px) {
  .feedback-form-row {
    flex-direction: column;
    row-gap: 25px;
  }
}
body .feedback-form__form-control {
  width: 280px;
}
@media (max-width: 1499px) {
  .feedback-form__form-control {
    width: 100%;
  }
}
@media (max-width: 1179px) {
  .feedback-form__submit-button {
    font-size: 20px;
  }
}
@media (max-width: 743px) {
  .feedback-form__submit-button {
    width: 100%;
  }
}
.feedback-contacts {
  color: #fff;
  flex-direction: column;
  row-gap: 25px;
  width: 100%;
  padding: 50px 25px;
  display: flex;
}
@media (max-width: 1179px) {
  .feedback-contacts {
    background-color: #535353;
    row-gap: 10px;
    width: calc(100% + 50px);
    margin-left: -25px;
    padding: 25px;
  }
}
.feedback-contacts__title {
  text-wrap: balance;
  font-size: 48px;
  font-weight: 700;
  position: relative;
}
@media (max-width: 1499px) {
  .feedback-contacts__title {
    font-size: 40px;
  }
}
@media (max-width: 1179px) {
  .feedback-contacts__title {
    font-size: 32px;
  }
}
.feedback-contacts-item {
  position: relative;
}
.feedback-contacts-item__value {
  text-underline-offset: 4px;
  font-size: 24px;
  -webkit-text-decoration: underline transparent;
  text-decoration: underline transparent;
  transition:
    -webkit-text-decoration-color 0.3s ease-out,
    text-decoration-color 0.3s ease-out;
}
.feedback-contacts-item__value:hover {
  -webkit-text-decoration-color: currentColor;
  text-decoration-color: currentColor;
}
.feedback-contacts-item__value:focus-visible {
  -webkit-text-decoration-color: currentColor;
  text-decoration-color: currentColor;
}
.feedback-contacts:before {
  content: '';
  background-color: #535353;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  translate: -25px;
}
@media (max-width: 1179px) {
  .feedback-contacts:before {
    display: none;
  }
}
.catalog-card {
  aspect-ratio: 1;
  background-image: linear-gradient(to bottom right, #fff, #f2f2f2);
  flex-direction: column;
  width: 100%;
  padding: 25px;
  transition: box-shadow 0.3s ease-out;
  display: flex;
  position: relative;
}
.catalog-card:hover {
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.15);
}
.catalog-card:focus-visible {
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.15);
}
.catalog-card:hover .catalog-card__title {
  color: #efa118;
}
.catalog-card:focus-visible .catalog-card__title {
  color: #efa118;
}
@media (max-width: 1179px) {
  .catalog-card {
    aspect-ratio: revert;
    background-color: #fff;
    background-image: none;
    border: 1px solid #f2f2f2;
    flex-direction: row;
    align-items: center;
    column-gap: 15px;
    padding: 15px 25px;
  }
  .catalog-card:hover {
    box-shadow: none;
  }
  .catalog-card:focus-visible {
    box-shadow: none;
  }
  .catalog-card:hover .catalog-card__title {
    color: currentColor;
  }
  .catalog-card:focus-visible .catalog-card__title {
    color: currentColor;
  }
  .catalog-card + .catalog-card {
    border-top: none;
  }
}
.catalog-card-header {
  justify-content: space-between;
  display: flex;
}
@media (max-width: 1179px) {
  .catalog-card-header__icon > svg {
    width: 40px;
    height: 40px;
  }
}
.catalog-card-header__quantity {
  background-color: #f2f2f2;
  border-radius: 4px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 12px;
  position: absolute;
  top: 10px;
  right: 10px;
}
@media (min-width: 1180px) {
  .catalog-card-header__quantity {
    display: none;
  }
}
@media (max-width: 1179px) {
  .catalog-card-header__quantity {
    display: block;
  }
}
@media (max-width: 743px) {
  .catalog-card-header__quantity {
    display: none;
  }
}
.catalog-card__title {
  text-wrap: balance;
  margin-top: auto;
  font-size: 20px;
  transition: color 0.3s ease-out;
}
@media (max-width: 1179px) {
  .catalog-card__title {
    margin-top: 0;
    font-size: 18px;
  }
}
.benefits {
  gap: 25px;
  display: grid;
}
.benefits--variant-1 {
  grid-template-columns: repeat(2, 1fr);
}
.benefits--variant-2 {
  border-top: 1px solid #f2f2f2;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 743px) {
  .benefits {
    display: flex;
    overflow-x: auto;
  }
}
.benefits-item {
  flex-direction: column;
  row-gap: 25px;
  display: flex;
}
@media (max-width: 743px) {
  .benefits-item {
    flex-shrink: 0;
  }
}
.benefits-item__title {
  text-wrap: balance;
  font-size: 24px;
}
@media (max-width: 1179px) {
  .benefits-item__title {
    text-wrap: balance;
    font-size: 1.25em;
  }
}
.benefits--variant-1 .benefits-item {
  border: 1px solid #f2f2f2;
  padding: 25px;
}
input.form-control,
textarea.form-control {
  color: #535353;
  border: 1px solid #535353;
  padding: 10px 15px;
}
input.form-control::-webkit-input-placeholder {
  color: rgba(83, 83, 83, 0.25);
}
input.form-control::-ms-input-placeholder {
  color: rgba(83, 83, 83, 0.25);
}
input.form-control::placeholder {
  color: rgba(83, 83, 83, 0.25);
}
textarea.form-control::-webkit-input-placeholder {
  color: rgba(83, 83, 83, 0.25);
}
textarea.form-control::-ms-input-placeholder {
  color: rgba(83, 83, 83, 0.25);
}
textarea.form-control::placeholder {
  color: rgba(83, 83, 83, 0.25);
}
textarea.form-control {
  min-height: calc(2lh + 22px);
  max-height: calc(6lh + 22px);
}
body button.form-control {
  color: #fff;
  background-color: #535353 !important;
  padding: 10px 15px;
  width: fit-content !important;
}
body  button.form-control:disabled {
  opacity: 0.25;
}
.toggler {
  cursor: pointer;
  column-gap: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
}
.toggler__body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #535353;
  border-radius: 9999px;
  flex-shrink: 0;
  width: 40px;
  height: 20px;
  margin-top: calc(0.5lh - 0.5em);
  padding: 2px;
  transition: background-color 0.2s ease-in;
}
.toggler__body:before {
  content: '';
  background-color: #fff;
  border-radius: 100%;
  width: 16px;
  height: 16px;
  margin-top: auto;
  margin-bottom: auto;
  transition: translate 0.2s ease-in;
  display: block;
}
.toggler__control {
  display: none;
}
.toggler__control:checked + .toggler__body {
  background-color: #efa118;
}
.toggler__control:checked + .toggler__body:before {
  translate: 19px;
}
#scroll-to-top-button {
  --size: 65px;
  left: calc(100% - var(--size));
  width: var(--size);
  height: var(--size);
  border-top-left-radius: calc(var(--size) / 2);
  background-color: #efa118;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  bottom: 0;
}
@media (max-width: 1499px) {
  #scroll-to-top-button {
    --size: 48px;
  }
}
.phone-code-select {
  border: 1px solid #535353;
  position: relative;
}
.phone-code-select__button {
  padding: 10px 15px;
}
.phone-code-select-item {
  align-items: center;
  column-gap: 10px;
  display: flex;
}
.phone-code-select-menu {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  background-color: #fff;
  border: 1px solid #f2f2f2;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-height: 163px;
  padding: 10px;
  transition:
    opacity 0.3s ease-out,
    visibility 0.3s ease-out,
    translate 0.3s ease-out;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  translate: 0 calc(100% + 15px);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}
.phone-code-select-menu:not(.phone-code-select-menu--shown) {
  opacity: 0;
  visibility: hidden;
  translate: 0 100%;
}
.phone-code-select-menu-item {
  align-items: center;
  column-gap: 20px;
  padding: 10px;
  transition: background-color 0.3s ease-out;
  display: flex;
}
.phone-code-select-menu-item__country {
  font-size: 18px;
}
.phone-code-select-menu-item--active,
.phone-code-select-menu-item:hover {
  background-color: #f7f7f7;
}
.phone-code-select-menu-item:focus-visible {
  background-color: #f7f7f7;
}
.breadcrumbs {
  background-color: #f2f2f2;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 743px) {
  .breadcrumbs {
    overflow: auto;
  }
}
.breadcrumbs > .container {
  flex-wrap: wrap;
  gap: 10px 15px;
  display: flex;
}
@media (max-width: 743px) {
  .breadcrumbs > .container {
    flex-wrap: nowrap;
  }
}
.breadcrumbs__item {
  transition: color 0.3s ease-out;
}
@media (max-width: 743px) {
  .breadcrumbs__item {
    white-space: nowrap;
  }
}
.breadcrumbs__item--active,
.breadcrumbs__item:hover {
  color: #efa118;
}
.breadcrumbs__item:focus-visible {
  color: #efa118;
}
.product-card {
  border: 1px solid #f2f2f2;
  height: 100%;
  padding: 25px 25px 10px;
  display: block;
}
.product-card__image {
  aspect-ratio: 16/9;
  object-fit: scale-down;
  width: 100%;
}
.product-card__title {
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 2lh;
  margin-top: 25px;
  font-size: 18px;
  display: -webkit-box;
  overflow: hidden;
}
.product-card-row {
  align-items: center;
  display: flex;
}
.product-card-score {
  align-items: center;
  column-gap: 10px;
  display: flex;
}
.product-card__available {
  margin-left: 15px;
  font-size: 14px;
}
.product-card__available--in-stock {
  color: #7d9901;
}
.product-card__price {
  margin-top: 25px;
  font-size: 20px;
}
.product-card-footer {
  margin-top: 10px;
}
.product-card__buy-button {
  background-color: #535353;
  width: 40px;
  height: 40px;
  display: flex;
}
.product-card__buy-button > svg {
  margin: auto;
}
.product-card__total-price {
  margin-top: 5px;
  font-size: 12px;
}
.product-card:not(.product-card--in-cart) .product-card-footer .product-card__number-input,
.product-card:not(.product-card--in-cart) .product-card__total-price,
.product-card--in-cart .product-card__buy-button,
.product-card:not(.product-card--multiple-in-cart) .product-card__total-price {
  display: none;
}
.number-input {
  --size: 90px;
  width: calc(var(--size) + 2px);
  background-color: #f2f2f2;
  border: 1px solid #eaeaea;
  align-items: stretch;
  height: 40px;
  display: flex;
}
.number-input__button,
.number-input__control {
  width: 100%;
}
.number-input__button {
  text-align: center;
  align-content: center;
  transition: background-color 0.1s ease-out;
}
.number-input__button:disabled {
  opacity: 0.25;
}
.number-input__button:not(:disabled):active {
  background-color: #efa118;
}
.number-input__control {
  text-align: center;
  font-variant-numeric: proportional-nums;
}
.accordion {
  width: 100%;
}
.accordion-button {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}
.accordion-button__text {
  text-align: left;
  font-size: 20px;
  transition: color 0.3s ease-out;
}
@media (max-width: 743px) {
  .accordion-button__text {
    font-size: 16px;
  }
}
.accordion-button__icon > svg {
  transition: rotate 0.3s ease-out;
}
.accordion-body {
  height: 0;
  transition: height 0.3s ease-out;
  overflow: hidden;
}
.accordion-body__content {
  padding-top: 25px;
}
.accordion--expanded .accordion-button__text {
  color: #efa118;
}
.accordion--expanded .accordion-button__icon > svg {
  rotate: 135deg;
}
.catalog-popup {
  z-index: 11;
  width: 100%;
  height: 100%;
  transition: visibility 0.3s ease-out;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
}
.catalog-popup:not(.catalog-popup--shown) {
  visibility: hidden;
}
.catalog-popup:not(.catalog-popup--shown) .catalog-popup__backdrop {
  opacity: 0;
}
.catalog-popup:not(.catalog-popup--shown) .catalog-popup-sidebar {
  translate: -100%;
}
.catalog-popup__backdrop {
  background-color: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease-out;
  position: absolute;
  top: 0;
  right: 0;
}
.catalog-popup-sidebar {
  background-color: #f2f2f2;
  flex-direction: column;
  row-gap: 25px;
  width: 385px;
  height: 100%;
  padding-top: 50px;
  transition: translate 0.3s ease-out;
  display: flex;
  position: relative;
}
.catalog-popup-sidebar__logotype {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 25px;
  display: block;
}
.catalog-popup-sidebar__items {
  overflow-y: auto;
}
.catalog-popup-sidebar-item {
  align-items: center;
  column-gap: 10px;
  width: 100%;
  padding: 10px 25px;
  transition: background-color 0.3s ease-out;
  display: flex;
}
.catalog-popup-sidebar-item__name {
  font-size: 20px;
  transition: color 0.3s ease-out;
}
.catalog-popup-sidebar-item__arrow {
  margin-left: auto;
}
.catalog-popup-sidebar-item--active,
.catalog-popup-sidebar-item:hover {
  background-color: #fff;
}
.catalog-popup-sidebar-item:focus-visible {
  background-color: #fff;
}
.catalog-popup-sidebar-item--active .catalog-popup-sidebar-item__name,
.catalog-popup-sidebar-item:hover .catalog-popup-sidebar-item__name {
  color: #efa118;
}
.catalog-popup-sidebar-item:focus-visible .catalog-popup-sidebar-item__name {
  color: #efa118;
}
.catalog-popup-body {
  background-color: #fff;
  /*grid-template-columns: repeat(2, 1fr);
  gap: 7px 5px;*/
  width: 35%;
  padding: 99px 25px 25px;
  display: block;
  position: relative;
  overflow-y: auto;
}
.catalog-popup-body:not(.catalog-popup-body--shown) {
  display: none;
}
@media (max-width: 1499px) {
  .catalog-popup-body {
    width: 55%;
  }
}
.catalog-popup-body-category {
  flex-direction: column;
  row-gap: 5px;
  display: flex;
    min-height: 66px;
}
.catalog-popup-body-category-header {
  align-items: center;
  column-gap: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
}
.catalog-popup-body-category-header:hover .catalog-popup-body-category-header__title {
  color: #efa118;
}
.catalog-popup-body-category-header:focus-visible .catalog-popup-body-category-header__title {
  color: #efa118;
}
.catalog-popup-body-category-header__image {
  width: 40px;
  height: 40px;
}
.catalog-popup-body-category-header__title {
  font-size: 20px;
  transition: color 0.3s ease-out;
}
.catalog-popup-body-category-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: color 0.3s ease-out;
}
.catalog-popup-body-category-item:hover {
  color: #efa118;
}
.catalog-popup-body-category-item:focus-visible {
  color: #efa118;
}
.hamburger-popup {
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: visibility 0.3s ease-out;
  position: fixed;
  top: 0;
  right: 0;
}
.hamburger-popup:not(.hamburger-popup--shown) {
  visibility: hidden;
}
.hamburger-popup:not(.hamburger-popup--shown) .hamburger-popup-wrapper {
  translate: 100%;
}
.hamburger-popup:not(.hamburger-popup--shown) .hamburger-popup__backdrop {
  opacity: 0;
}
.hamburger-popup__backdrop {
  background-color: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease-out;
  position: absolute;
  top: 0;
  right: 0;
}
.hamburger-popup-wrapper {
  background-color: #fff;
  border-left: 1px solid #f2f2f2;
  flex-direction: column;
  width: 100%;
  max-width: 720px;
  height: 100%;
  padding: 25px;
  transition: translate 0.3s ease-out;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}
.hamburger-popup-header {
  justify-content: space-between;
  padding-bottom: 25px;
  display: flex;
  position: relative;
}
.hamburger-popup-header:before {
  content: '';
  background-color: #f2f2f2;
  width: calc(100% + 25px);
  height: 1px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.hamburger-popup-header__close-button {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.hamburger-popup-body {
  padding-top: 25px;
  padding-bottom: 25px;
  overflow-y: auto;
}
.hamburger-popup-body[data-menu='home'] .hamburger-popup-account,
.hamburger-popup-body[data-menu='account'] .hamburger-popup-home {
  display: none;
}
.hamburger-popup-home {
  flex-direction: column;
  row-gap: 25px;
  height: 100%;
  display: flex;
}
.hamburger-popup-home-location {
  align-items: center;
  column-gap: 10px;
  display: flex;
}
.hamburger-popup-home-account {
  align-items: center;
  column-gap: 15px;
  width: 100%;
  display: flex;
}
.hamburger-popup-home-account--authorized .hamburger-popup-home-account__icon > svg:nth-child(2) {
  visibility: visible;
}
.hamburger-popup-home-account__icon {
  position: relative;
}
.hamburger-popup-home-account__icon > svg:nth-child(2) {
  visibility: hidden;
  position: absolute;
  bottom: 0;
  right: 0;
}
.hamburger-popup-home-account__arrow {
  margin-left: auto;
}
.hamburger-popup-account {
  flex-direction: column;
  row-gap: 25px;
  height: 100%;
  display: flex;
}
.hamburger-popup-account-backward-button {
  align-items: center;
  column-gap: 25px;
  display: flex;
}
.hamburger-popup-account__title {
  font-size: 32px;
  font-weight: 700;
}
.hamburger-popup-links {
  flex-direction: column;
  row-gap: 10px;
  display: flex;
  overflow-y: auto;
}
.hamburger-popup-links__item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
}
.hamburger-popup-footer {
  flex-direction: column;
  row-gap: 25px;
  margin-top: auto;
  display: flex;
}
.hamburger-popup-footer__feedback-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
}
.hamburger-popup-footer-contacts {
  flex-direction: column;
  display: flex;
}
.hamburger-popup-footer-contacts__phone {
  color: #efa118;
  font-size: 24px;
  font-weight: 700;
}
.hamburger-popup-footer-contacts__phone,
.hamburger-popup-footer-contacts__email {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.hamburger-popup-footer-social {
  column-gap: 15px;
  display: flex;
}
.hamburger-popup-footer-social__item {
  background-color: #fff;
  border-radius: 100%;
  width: 48px;
  height: 48px;
  display: flex;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}
.hamburger-popup-footer-social__item > * {
  margin: auto;
}
.popup {
  z-index: 1;
  visibility: visible;
  width: 100%;
  height: 100%;
  transition: visibility 0.3s ease-out;
  position: fixed;
  top: 0;
  right: 0;
}
.popup__backdrop {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.25);
  transition: opacity 0.3s ease-out;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 1179px) {
  .popup__backdrop {
    display: none;
  }
}
.popup-wrapper {
  background-color: #fff;
  width: 100%;
  max-width: 640px;
  padding: 25px;
  transition:
    top 0.3s ease-out,
    translate 0.3s ease-out;
  position: absolute;
  top: 50%;
  right: 50%;
  translate: 50% -50%;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 1179px) {
  .popup-wrapper {
    max-width: none;
    height: 100%;
    top: 0;
    right: 0;
    translate: none;
  }
}
@media (max-width: 743px) {
  .popup-wrapper {
    flex-direction: column;
    display: flex;
  }
}
.popup-header {
  justify-content: space-between;
  display: flex;
}
.popup-header__title {
  font-size: 32px;
  font-weight: 700;
}
.popup-header__close-button {
  flex-shrink: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 743px) {
  .popup__content {
    flex-direction: column;
    flex-grow: 1;
    display: flex;
  }
}
.popup:not(.popup--shown) {
  visibility: hidden;
}
.popup:not(.popup--shown) .popup__backdrop {
  opacity: 0;
}
.popup:not(.popup--shown) .popup-wrapper {
  top: 100%;
  translate: 50%;
}
@media (max-width: 1179px) {
  .popup:not(.popup--shown) .popup-wrapper {
    translate: none;
  }
}
.popup-feedback {
  margin-top: 15px;
}
@media (max-width: 743px) {
  .popup-feedback {
    flex-direction: column;
    flex-grow: 1;
    display: flex;
  }
}
.popup-feedback-header {
  column-gap: 15px;
  display: flex;
}
.popup-feedback-header__button {
  font-size: 20px;
  transition: color 0.3s ease-out;
}
.popup-feedback-header__button--active,
.popup-feedback-header__button:hover {
  color: #efa118;
}
.popup-feedback-header__button:focus-visible {
  color: #efa118;
}
.popup-feedback-tab {
  flex-grow: 1;
  margin-top: 25px;
  display: flex;
}
.popup-feedback-tab:not(.popup-feedback-tab--shown) {
  display: none;
}
.popup-feedback-form {
  flex-direction: column;
  row-gap: 25px;
  display: flex;
}
@media (max-width: 743px) {
  .popup-feedback-form {
    flex-grow: 1;
  }
}
.popup-feedback-form__form-control {
  width: 100%;
}
@media (max-width: 743px) {
  .popup-feedback-form__submit-button {
    margin-top: auto;
  }
}
.popup-account {
  flex-direction: column;
  row-gap: 25px;
  margin-top: 25px;
  display: flex;
}
@media (max-width: 743px) {
  .popup-account {
    flex-grow: 1;
  }
}
.popup-account__description {
  font-size: 20px;
}
@media (max-width: 743px) {
  .popup-account__description {
    font-size: 16px;
  }
}
.popup-account-form {
  flex-direction: column;
  row-gap: 25px;
  display: flex;
}
@media (max-width: 743px) {
  .popup-account-form {
    flex-grow: 1;
  }
}
.popup-account-form-row {
  column-gap: 15px;
  display: flex;
}
@media (max-width: 743px) {
  .popup-account-form-row .phone-code-select {
    flex-shrink: 0;
  }
}
.popup-account-form-row .popup-account-form__form-control {
  flex-grow: 1;
}
@media (max-width: 743px) {
  .popup-account-form-row .popup-account-form__form-control {
    width: 100%;
  }
  .popup-account-form__submit-button {
    margin-top: auto;
  }
}
.popup-account-form__submit-button:not(:disabled) {
  background-color: #efa118;
}
.popup-cart {
  align-items: stretch;
  column-gap: 25px;
  margin-top: 25px;
  display: flex;
}
@media (max-width: 1179px) {
  .popup-cart {
    flex-direction: column;
  }
}
.popup-cart__image {
  object-fit: scale-down;
  border: 1px solid #f2f2f2;
  width: 190px;
  height: 190px;
  padding: 20px 25px;
}
@media (max-width: 1179px) {
  .popup-cart__image {
    width: 96px;
    height: 96px;
    padding: 10px 15px;
  }
  .popup-cart-body {
    margin-top: 25px;
  }
}
.popup-cart-body__name {
  font-size: 20px;
}
@media (max-width: 1179px) {
  .popup-cart-body__name {
    font-size: 16px;
  }
}
.popup-cart-body-price {
  align-items: center;
  column-gap: 15px;
  margin-top: 5px;
  font-size: 24px;
  display: flex;
}
.popup-cart-body-price__discount {
  color: #efa118;
  font-weight: 700;
}
.popup-cart-body-price--discount .popup-cart-body-price__value {
  text-decoration: line-through;
}
.popup-cart-body-price:not(.popup-cart-body-price--discount) .popup-cart-body-price__discount {
  display: none;
}
.popup-cart-body__total-price {
  margin-top: 10px;
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 1179px) {
  .popup-cart-body__total-price {
    font-size: 40px;
  }
}
.popup-cart-body__number-input {
  margin-top: 5px;
}
.popup-cart-sidebar {
  width: 240px;
  margin-left: auto;
}
@media (max-width: 1179px) {
  .popup-cart-sidebar {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 50px;
    margin-left: 0;
  }
}
@media (max-width: 743px) {
  .popup-cart-sidebar {
    width: 100%;
  }
}
.popup-cart-sidebar-buttons {
  flex-direction: column;
  row-gap: 10px;
  display: flex;
}
@media (max-width: 1179px) {
  .popup-cart-sidebar-buttons {
    flex-direction: row;
    column-gap: 25px;
  }
}
@media (max-width: 743px) {
  .popup-cart-sidebar-buttons {
    flex-direction: column;
  }
}
.popup-cart-sidebar-buttons__item {
  text-align: center;
  border: 1px solid transparent;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 20px;
  transition:
    color 0.1s ease-out,
    background-color 0.1s ease-out,
    border-color 0.1s ease-out,
    box-shadow 0.1s ease-out;
}
@media (max-width: 1179px) {
  .popup-cart-sidebar-buttons__item {
    white-space: nowrap;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.popup-cart-sidebar-buttons__item--solid {
  color: #fff;
  background-color: #535353;
  border-color: #535353;
}
.popup-cart-sidebar-buttons__item--bordered {
  border-color: #535353;
}
.popup-cart-sidebar-buttons__item:hover {
  color: #fff;
  background-color: #efa118;
  border-color: #efa118;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.popup-cart-sidebar-buttons__item:focus-visible {
  color: #fff;
  background-color: #efa118;
  border-color: #efa118;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.popup-cart-sidebar__text {
  margin-top: 25px;
}
@media (max-width: 1179px) {
  .popup-cart-sidebar__text {
    margin-top: 10px;
  }
}
* {
  scrollbar-width: thin;
  scrollbar-color: #efa118 transparent;
  -webkit-tap-highlight-color: transparent;
}
::-moz-selection {
  background-color: #f7d08c;
}
::selection {
  background-color: #f7d08c;
}
html {
  scrollbar-gutter: stable;
}
body {
  color: #535353;
  background-color: #fff;
  font-family: Play, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

/* Calculator */
.calculator {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 1499px) {
  .calculator {
      padding-top: 25px;
    padding-bottom: 25px;
  }
}
.calculator__wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  margin-top: 50px;
}
@media (max-width: 1179px) {
  .calculator__wrap {
    gap: 1em;
    margin-top: 25px;
  }
}
.calculator__buttons {
  display: flex;
  gap: 1.5em;
  padding: 0;
  margin-top: 50px;
  list-style-type: none;
}
@media (max-width: 1179px) {
  .calculator__buttons {
    margin-top: 25px;
  }
}

/* Common */

.title {
  text-wrap: balance;
  font-size: 48px;
  font-weight: 700;
}
@media (max-width: 1499px) {
  .title {
    font-size: 40px;
  }
}
@media (max-width: 1179px) {
  .title {
    font-size: 32px;
  }
}

.subtitle {
  text-wrap: balance;
  font-size: 40px;
  font-weight: 700;
}
@media (max-width: 1499px) {
  .subtitle {
    font-size: 32px;
  }
}
@media (max-width: 1179px) {
  .subtitle {
    font-size: 28px;
  }
}
.subtitle.subtitle--accent {
  color: #efa118;
}

.subtitle.subtitle--decreased {
  font-size: 2em;
}
@media (max-width: 1179px) {
  .subtitle.subtitle--decrease {
    font-size: 1.125em;
  }
}

.text {
  font-size: 1.5em;
}
@media (max-width: 1499px) {
  .text {
    font-size: 1.25em;
  }
}

.btn {
  display: block;
  color: #535353;
  padding: 10px 15px;
  font-size: 1.25em;
  background-color: #eaeaea;
  transition: background-color .3s ease-out,
              color .3s ease-out,
              border .3s ease-out,
              box-shadow .3s ease-out;
}
.btn:hover {
  color: #fff;
  background-color: #efa118;
}
.btn.btn--accent {
  color: #fff;
  padding: 10px 15px;
  font-size: 1.25em;
  background-color: #efa118;
  box-shadow: 4px 4px 4px rgba(0,0,0,0.25);
}
.btn.btn--accent:hover {
  color: #fff;
  padding: 10px 15px;
  font-size: 1.25em;
  background-color: #efa118;
  box-shadow: 0 0 8px #f2f2f2;
}
.btn.btn--light {
  background-color: #eaeaea;
}
.btn.btn--light:hover {
  color: #323334;
  border-color: solid 1px #efa118;
  background-color: #efa118;
}
.btn.btn--stroked {
  background-color: transparent;
  border: solid 1px #323334;
}
.btn.btn--stroked:hover {
  color: #323334;
  border-color: #efa118;
  background-color: #efa118;
  box-shadow: 0 0 5px #f2f2f2;
}


.pages {
	padding: 1em 0;
	background-color: #f2f2f2;
}
.pages__links {
  display: flex;
  gap: 0 1em;
  padding: 0;
  list-style-type: none;
}
.pages__link {
  transition: color .3s ease-out;
}
.pages__link:hover {
  color: #efa118;
}
.pages__link.pages__link--active > a {
  color: #efa118;
}

/* Contacts */
.contacts {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 1499px) {
  .contacts {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

.contacts__wrap {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 25px;
}
@media (max-width: 1499px) {
  .contacts__wrap {
    margin-top: 0.5em;
  }
}

.contacts__map {
  height: 430px;
  background-color: #f2f2f2;
}
@media (max-width: 1499px) {
  .contacts__map {
    height: 500px;
  }
} 

.contacts__data {
  display: flex;
  padding: 0;
}
@media (max-width: 1499px) {
  .contacts__data {
    flex-direction: column;
    gap: 25px;
  }
} 

.contacts__data-item {
  display: flex;
  flex-direction: column;
  gap: .75em;
  flex: auto
}

.contacts__data-item > span:first-of-type {
  color: #efa118;
  font-size: 1.25em;
}

.contacts__data-item > span {
  font-size: 1.5em;
}
@media (max-width: 1499px) {
  .contacts__data-item > span {
    font-size: 1.25em;
  }
}

.contacts__data-item > div {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.contacts__data-item > div > span {
  font-size: 1em;
}

.contacts__data-item > div:first-of-type > span {
  font-size: 1.5em;
}
@media (max-width: 1499px) {
  .contacts__data-item > div:first-of-type > span {
    font-size: 1.25em;
  }
} 

.contacts__data-item > a,
.contacts__data-item > div > a {
  font-size: 1.5em;
  transition: color .3s ease-out;
}
@media (max-width: 1499px) {
  .contacts__data-item > a,
  .contacts__data-item > div > a {
    font-size: 1.25em;
  }
} 

.contacts__data-item > a:hover,
.contacts__data-item > div > a:hover {
  color: #efa118;
}

/* Useful */
.useful {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 1499px) {
  .useful {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

.useful__table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 1179px) {
  .useful__table {
    width: 100%;
    overflow: auto;
  }
}

.useful__wrap {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  padding-top: 50px;
}
@media (max-width: 1499px) {
  .useful__wrap {
    padding-top: 25px;
  }
}

.useful__table > thead > tr {
  background-color: #eaeaea;
}

.useful__table > thead > tr > th {
  text-align: left;
  font-weight: normal;
  font-size: 1.25em;
  padding: 0.75em 1em;
  border: solid 1px #eaeaea;
  white-space: normal;
}
@media (max-width: 1179px) {
  .useful__table > thead > tr > th {
    position: sticky;
    font-size: 1.125em;
    padding: 0.5em 1.125em;
  }
}

@media (max-width: 1080px) {
  .useful__table > tbody {
    white-space: nowrap;
  }
}

@media (max-width: 720px) {
  .useful__table-1 {
    display: block;
    width: 100%;
    overflow: auto;
  }

  .useful__table-1 > tbody {
    white-space: normal;
  }

  .useful__table-1 > thead > tr > th {
    white-space: nowrap;
  }

}

@media (max-width: 700px) {
  .useful__table-2 {
    display: block;
    width: 100%;
    overflow: auto;
  }

  .useful__table-2 > tbody {
    white-space: normal;
  }

  .useful__table-2 > thead > tr > th {
    white-space: nowrap;
  }

}

@media (max-width: 1080px) {
  .useful__table-3 {
    display: block;
    width: 100%;
    height: 420px;
    overflow: auto;
  }

  .useful__table-3 > tbody {
    white-space: normal;
  }

  .useful__table-3 > thead {
    position: sticky;
    top: 0;
    z-index: 1;
  }

  .useful__table-3 > thead > tr > th {
    white-space: nowrap;
  }

}

@media (max-width: 640px) {
  .useful__table-4 {
    display: block;
    width: 100%;
    overflow: auto;
  }

  .useful__table-4 > tbody {
    white-space: normal;
  }

  .useful__table-4 > thead > tr > th {
    white-space: nowrap;
  }

}

@media (max-width: 1450px) {
  .useful__table-5 {
    display: block;
    width: 100%;
    overflow: auto;
  }

  .useful__table-5 > tbody {
    white-space: normal;
  }

  .useful__table-5 > thead > tr > th {
    white-space: nowrap;
  }

  .useful__table-5 > thead > tr > th:first-of-type,
  .useful__table-5 > tbody > tr > td:first-of-type {
    position: sticky;
    left: 0;
    z-index: 1;
  }

   .useful__table-5 > tbody > tr > td:first-of-type {
      background-color: #fff;
   }

}

@media (max-width: 1080px) {
  .useful__table-6 {
    display: block;
    width: 100%;
    height: 480px;
    overflow: auto;
  }

  .useful__table-6 > tbody {
    white-space: normal;
  }

  .useful__table-6 > thead > tr > th {
      white-space: nowrap;
  }

  .useful__table-6 > thead {
    position: sticky;
    top: 0;
    background-color: inherit;
    z-index: 1;
  }

}

.useful__table > tbody > tr:nth-of-type(even) {
  background-color: #f2f2f2;
}

.useful__table > tbody > tr > td {
  text-align: left;
  font-weight: normal;
  font-size: 1.125em;
  padding: 0.5em 1em;
  border: solid 1px #F8F8F8;
}
@media (max-width: 1179px) {
  .useful__table > tbody > tr > td {
    font-size: 0.875em;
    padding: 0.5em 1.5em;
  }
}

.useful__table-abbr {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  padding: 0;
  font-size: 1.25em;
  list-style-type: none;
}

.useful__table-abbr > li > span {
  font-weight: bold;
}

.useful__table .useful__clean {
  text-align: center;
  background-color: #fff;
  border: solid 1px #eaeaea;
}