html, body {
  width: 100%;
  height: 100%;
}

:root {
  --font-family: "Inter", sans-serif;
  --root-sfc-check-icon-ratio: 1;
  --root-sfc-radio-icon-ratio: 1;
  --root-sfc-bg-color: var(--color-grey);
  --root-sfc-border-color: var(--color-grey);
  --root-sfc-border-color-active: var(--color-black);
  --root-sfc-size: 32px;
  --root-sfc-font-size: 15px;
}

pre {
  position: relative;
  z-index: 1000;
  background: white;
  max-width: 100%;
  max-height: 400px;
  overflow: auto;
  padding-bottom: 100px;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-black);
}

a, a:hover, a:visited, a:active {
  color: var(--color-black);
}

.content a:not(.btn), .content a:not(.btn):hover, .content a:not(.btn):visited, .content a:not(.btn):active {
  text-decoration: underline;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

h1 {
  font-weight: 400;
  font-size: 54px;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.is-h1-center h1 {
  text-align: center;
}
@media (max-width: 600px) {
  h1 {
    /*text-align: center;*/
    font-size: 30px;
    line-height: 133%;
    margin-bottom: 20px;
  }
}

.title {
  font-size: 80px;
  line-height: 100%;
  text-transform: uppercase;
}
.title__box {
  text-align: center;
  margin-bottom: 58px;
}
.title__post {
  font-size: 48px;
  margin-top: 20px;
}
@media (max-width: 600px) {
  .title {
    font-size: 24px;
    line-height: 142%;
  }
  .title__box {
    margin-bottom: 30px;
  }
  .title__post {
    font-size: 20px;
    margin-top: 10px;
  }
}

.sub-title {
  font-weight: 400;
  font-size: 54px;
  line-height: 1.3;
  text-transform: uppercase;
}
.sub-title__box {
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .sub-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 142%;
  }
  .sub-title__box {
    margin-bottom: 20px;
  }
}

.page-block {
  margin-bottom: 140px;
}
@media (max-width: 480px) {
  .page-block {
    margin-bottom: 50px;
  }
}

.container {
  max-width: 1520px;
  margin: 0 auto;
}
@media (max-width: 1550px) {
  .container {
    margin: 0 15px;
  }
}

.logo {
  width: 200px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.wrapper .main {
  flex-grow: 1;
}

.breadcrumbs {
  padding: 35px 0 65px;
}
@media (max-width: 600px) {
  .breadcrumbs {
    padding: 15px 0 25px;
  }
}
.breadcrumbs__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.breadcrumbs__item {
  font-weight: 300;
  font-size: 12px;
  line-height: 133%;
  text-transform: uppercase;
  color: var(--color-black);
}
.breadcrumbs__item:not(:last-child) {
  margin-right: 8px;
}

.content {
  padding-bottom: 118px;
  font-weight: 400;
  font-size: 17px;
  line-height: 153%;
  color: rgba(24, 24, 24, 0.8);
}
@media (max-width: 600px) {
  .content {
    font-size: 16px;
  }
}
.content ol, .content ul {
  padding-left: 20px;
}
.content ul li {
  list-style-type: disc;
}
.content .text-styled {
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .content .text-styled {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .content {
    padding-bottom: 50px;
    font-size: 16px;
    line-height: 150%;
  }
}

.icon-arrow {
  --icon-size: 50px;
  --icon-arrow-size: 14px;
  --icon-bg: var(--color-white);
  --icon-color: var(--color-black);
  --icon-arrow-offset: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--icon-bg);
  height: var(--icon-size);
  width: var(--icon-size);
  border-radius: 50%;
  border: 1px solid var(--color-grey);
  transition: all 0.2s linear;
}
.icon-arrow::after {
  content: "";
  display: block;
  width: var(--icon-arrow-size);
  height: var(--icon-arrow-size);
  border-top: 2px solid var(--icon-color);
  border-left: 2px solid var(--icon-color);
}
.icon-arrow_up::after {
  margin-top: var(--icon-arrow-offset);
  transform: rotate(45deg);
}
.icon-arrow_down::after {
  margin-bottom: var(--icon-arrow-offset);
  transform: rotate(225deg);
}
.icon-arrow_left::after {
  margin-left: var(--icon-arrow-offset);
  transform: rotate(-45deg);
}
.icon-arrow_right::after {
  margin-right: var(--icon-arrow-offset);
  transform: rotate(-225deg);
}

.swipe_products .swipe__container {
  padding: 24px 100px;
}
@media (max-width: 960px) {
  .swipe_products .swipe__container {
    padding: 20px;
  }
}
.swipe_products .swipe__box {
  max-width: 1000px;
}
@media (min-width: 600px) and (min-width: 600px) {
  .swipe_products .swipe__box .table-products__item:not(:hover) .table-products__field_action button {
    opacity: 0;
  }
}
.swipe_products .swipe__title {
  font-weight: 400;
  font-size: 32px;
  text-transform: uppercase;
}
.swipe_products th {
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
}

.slider__control {
  margin-top: -31px;
  width: 62px;
  height: 62px;
  border-radius: 100%;
  background-color: var(--color-white);
}
.slider__control.is-disabled {
  display: flex;
  opacity: 0.3;
}
.slider__control svg {
  width: 8px;
}

.lSSlideOuter .lSPager.lSpg > li a {
  background-color: var(--color-grey);
  height: 16px;
  width: 16px;
}

.lSSlideOuter .lSPager.lSpg > li.active a, .lSSlideOuter .lSPager.lSpg > li:hover a {
  background-color: var(--color-black);
}

.lSSlideOuter .lSPager.lSpg {
  padding-top: 10px;
}

.contact-block {
  background: #f6f6f6;
  padding: 103px 0 96px;
}
@media (max-width: 600px) {
  .contact-block {
    padding: 49px 0;
  }
}
.contact-block__title {
  font-size: 54px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .contact-block__title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 8px;
  }
}
.contact-block__city {
  font-weight: 300;
  font-size: 48px;
  margin-bottom: 48px;
}
@media (max-width: 600px) {
  .contact-block__city {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
  }
}
.contact-block__info {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  /*@include mediaQueryMax(1270){
    flex-direction: column-reverse;
  }*/
}
.contact-block__item:not(:last-child) {
  margin-bottom: 48px;
}
.contact-block__items {
  margin-bottom: 40px;
}
.contact-block__item__address {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
  max-width: 568px;
  margin-right: 70px;
}
@media (max-width: 1560px) {
  .contact-block__item__address {
    margin-right: 30px;
  }
}
@media (max-width: 1270px) {
  .contact-block__item__address {
    margin-bottom: 10px;
  }
}
.contact-block__item, .contact-block__item__worktime__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-weight: 300;
  font-size: 20px;
  text-transform: uppercase;
}
@media (max-width: 1270px) {
  .contact-block__item {
    display: block;
  }
}
.contact-block__item__worktime {
  white-space: nowrap;
}
@media (max-width: 1270px) {
  .contact-block__item__worktime__item {
    justify-content: flex-start;
  }
}
.contact-block__item__worktime__item__days {
  width: 145px;
}
@media (max-width: 1560px) {
  .contact-block__item__worktime__item__days {
    width: 95px;
  }
}
@media (max-width: 1270px) {
  .contact-block__item__worktime__item__days {
    width: 145px;
  }
}
.contact-block__phone-link {
  font-size: 22px;
  white-space: nowrap;
  margin-bottom: 15px;
  font-weight: bold;
}
.contact-block__phone-box {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
}
@media (max-width: 1270px) {
  .contact-block__phone-box {
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .contact-block__phone-box {
    display: block;
    text-align: center;
  }
}

.load-block {
  text-align: center;
}

.styler-file {
  align-items: flex-start;
}
.styler-file__zona {
  border: none;
  width: auto;
  height: auto;
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: var(--color-black);
}
.styler-file__list {
  font-size: 12px;
}
.styler-file__list-title {
  font-size: 15px;
}

@media (min-width: 930px) and (max-width: 1804px) {
  .light-top-wrapper.is-show-custom-navigation .container {
    padding: 0 120px;
  }
}
.light-top-wrapper.is-show-custom-navigation .slider__control {
  background-color: var(--color-grey);
  border: 1px solid var(--color-white);
}
@media (max-width: 929px) {
  .light-top-wrapper.is-show-custom-navigation .slider__control {
    margin-top: 10px;
    width: 32px;
    height: 32px;
    background-color: var(--color-white);
    top: 100%;
  }
  .light-top-wrapper.is-show-custom-navigation .slider__control svg {
    width: 14px;
  }
  .light-top-wrapper.is-show-custom-navigation .slider__control_prev {
    left: 20px;
    justify-content: flex-start;
  }
  .light-top-wrapper.is-show-custom-navigation .slider__control_next {
    right: 20px;
    justify-content: flex-end;
  }
}
.checkbox__text a {
  text-decoration: underline;
}

.tabs__item {
  margin-bottom: 20px;
}
.tabs__item__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.tabs__checkbox {
  display: none;
}
.tabs__checkbox:not(:checked) ~ .tabs__item .tabs__item__content {
  display: none;
}
.tabs__checkbox:checked ~ .tabs__item .tabs__item__content {
  margin-top: 15px;
}
.tabs__checkbox:not(:checked) ~ .tabs__item .tabs__item__title__icon_is-active {
  display: none;
}
.tabs__checkbox:checked ~ .tabs__item .tabs__item__title__icon:not(.tabs__item__title__icon_is-active) {
  display: none;
}

.profile {
  margin-bottom: 50px;
}
@media (min-width: 1201px) {
  .profile {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 140px;
  }
}
.profile__form {
  width: 100%;
  --form-count-columns: 2;
}
@media (max-width: 700px) {
  .profile__form {
    --form-count-columns: 1;
  }
}
@media (max-width: 1200px) {
  .profile__logout {
    margin-top: 8px;
  }
}
@media (min-width: 1201px) {
  .profile__logout {
    margin-left: 163px;
  }
}
@media (max-width: 600px) {
  .profile .btn {
    width: 100%;
  }
}

.personal-section__panel {
  margin-bottom: 44px;
}
@media (max-width: 1550px) {
  .personal-section__panel__container {
    margin-right: 0;
  }
}
.personal-section__panel__menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 31px;
  overflow-x: auto;
}
.personal-section__panel__menu__item__hint {
  font-weight: 300;
  font-size: 12px;
  margin-bottom: 9px;
}
.personal-section__panel__menu__item .personal-section__panel__menu__item__link {
  font-weight: 300;
  font-size: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}
.personal-section__panel__menu__item .personal-section__panel__menu__item__link, .personal-section__panel__menu__item .personal-section__panel__menu__item__link:hover, .personal-section__panel__menu__item .personal-section__panel__menu__item__link:active {
  text-decoration: none;
}
.personal-section__panel__menu__item.is-active .personal-section__panel__menu__item__link {
  font-weight: 500;
}
.personal-section__panel__menu__item:not(.is-active) .personal-section__panel__menu__item__hint {
  opacity: 0;
}
.orders {
  margin-bottom: 50px;
}
@media (min-width: 1201px) {
  .orders__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.orders__top__item:first-child {
  margin-right: 100px;
}
.orders__form {
  --form-row-mb: 8px;
  margin-bottom: 20px;
  --form-count-columns: 5;
}
.orders__form .form__col {
  grid-column: span 2;
}
.orders__form .form__col:last-child {
  grid-column: span 1;
}
@media (max-width: 1200px) {
  .orders__form .form__col, .orders__form .form__col:last-child {
    grid-column: span 5;
  }
}
@media (max-width: 1200px) {
  .orders__form .btn {
    width: 100%;
  }
}
@media (min-width: 1201px) {
  .orders__form .btn {
    padding: 20px 24px;
  }
}
.orders__list__item {
  padding: 14px 0;
}
@media (max-width: 1200px) {
  .orders__list__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 1201px) {
  .orders__list__item {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
  }
}
.orders__list__item_head {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .orders__list__item_head {
    display: none;
  }
}
@media (max-width: 1200px) {
  .orders__list__item:not(:last-child) .orders__list__item__param {
    margin-bottom: 8px;
  }
}
.orders__list__item:not(.orders__list__item_head):hover {
  background: var(--color-grey);
  cursor: pointer;
}
.orders__list__item__param {
  font-weight: 300;
  font-size: 16px;
  line-height: 125%;
}
@media (max-width: 1200px) {
  .orders__list__item__param {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1201px) {
  .orders__list__item__param_date {
    padding-left: 15px;
  }
  .orders__list__item__param_summ {
    text-align: right;
    padding-right: 15px;
  }
  .orders__list__item__param_status {
    text-transform: uppercase;
  }
}
@media (min-width: 1201px) {
  .orders__list__item__param__title {
    display: none;
  }
}
@media (min-width: 1400px) {
  .order__container {
    display: flex;
    justify-content: space-between;
    gap: 186px;
  }
}
.order__products {
  width: 100%;
  margin-bottom: 50px;
}
@media (min-width: 1201px) {
  .order__products {
    margin-bottom: 123px;
  }
}
.order__products__list__item {
  --item-gap: 16px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--item-gap);
}
.order__products__list__item.is-hidden {
  display: none;
}
.order__products__list__item_head .order__products__list__item__param {
  font-weight: 500;
}
.order__products__list__item_head {
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .order__products__list__item_head {
    display: none;
  }
}
.order__products__list__item__param {
  font-weight: 400;
  font-size: 20px;
  line-height: 125%;
  --param-img-w: 96px;
  --param-name-w: 327px;
  --param-summ-w: 196px;
}
.order__products__list__item__param_img {
  flex: none;
  width: var(--param-img-w);
}
.order__products__list__item__param_img img {
  border-radius: 8px;
}
.order__products__list__item__param_name {
  flex: none;
  width: var(--param-name-w);
}
.order__products__list__item__param_count {
  width: calc(100% - var(--param-img-w) - var(--param-name-w) - var(--param-summ-w) - var(--item-gap) * 3);
}
.order__products__list__item__param_count .order__products__list__item__param__title {
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  margin-right: 10px;
}
.order__products__list__item__param_summ {
  flex: none;
  width: var(--param-summ-w);
  text-align: right;
}
.order__products__list__item__param_summ_old {
  font-weight: 300;
  font-size: 12px;
  text-decoration: line-through;
}
@media (max-width: 1200px) {
  .order__products__list__item__param_name {
    width: calc(100% - var(--param-img-w) - var(--item-gap));
  }
  .order__products__list__item__param_count {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .order__products__list__item__param_count, .order__products__list__item__param_summ {
    width: calc(50% - var(--item-gap));
  }
}
@media (min-width: 1201px) {
  .order__products__list__item__param_count .order__products__list__item__param__title {
    display: none;
  }
}
@media (max-width: 1200px) {
  .order__products__list__item__param {
    grid-column: span 2;
  }
}
@media (min-width: 1201px) {
  .order__products__list__item__param__title {
    display: none;
  }
}
.order__products .loadmore__box {
  text-align: center;
}
.order__products .loadmore__count-text {
  font-weight: 300;
  font-size: 12px;
  line-height: 133%;
  text-transform: uppercase;
  opacity: 0.48;
}
.order__total .order__item {
  position: sticky;
  top: 160px;
}
.order__total .order__item__title {
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.order__total {
  margin-bottom: 50px;
}
@media (min-width: 1201px) {
  .order__total {
    width: 470px;
    flex: none;
    margin-bottom: 123px;
  }
}
.order__total__list {
  border-radius: 8px;
  background-color: var(--color-grey);
  padding: 24px;
  margin-bottom: 20px;
}
.order__total__list__item {
  display: flex;
  justify-content: space-between;
  font-weight: 300;
  font-size: 20px;
  text-transform: uppercase;
}
.order__total__list__item:not(:last-child) {
  margin-bottom: 24px;
}
.order__total__list__item_sale {
  color: #f00;
}
.order__info {
  margin-bottom: 94px;
}
@media (min-width: 1201px) {
  .order__info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 160px;
  }
}
@media (min-width: 1201px) {
  .order__info__item {
    width: 30%;
  }
}
@media (max-width: 1200px) {
  .order__info__item {
    margin-bottom: 40px;
  }
}
.order__info__item__title {
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.order__info__item__content {
  font-weight: 300;
  font-size: 17px;
  line-height: 140%;
}
.order__info__item__content__item:not(:last-child) {
  margin-bottom: 10px;
}
.order__info__item__content__item_phone, .order__info__item__content__item_email {
  font-size: 20px;
}
.order__info__item__content__top {
  margin-bottom: 35px;
}
.order__info__item__content__track__title {
  font-weight: 400;
  font-size: 12px;
  line-height: 171%;
  color: #000;
  opacity: 0.5;
  margin-bottom: 12px;
}
.order__info__item__content__track__value {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.order__info__item__content__track__value__text {
  margin-right: 31px;
}
.order__info__item__content__track__value__icon {
  cursor: pointer;
}

.view-panel {
  margin-bottom: 40px;
}
@media (min-width: 1201px) {
  .view-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1201px) {
  .view-panel__group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
  }
}
@media (max-width: 1200px) {
  .view-panel__item {
    margin-bottom: 20px;
  }
}
.view-panel__item__title {
  font-weight: 300;
  font-size: 12px;
  margin-bottom: 9px;
  opacity: 0.48;
}
.view-panel__item__value {
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  cursor: pointer;
}
.view-panel__select {
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
}
.view-panel__select:focus {
  outline: none;
}

.filter__item {
  margin-bottom: 48px;
}
.filter__item__title {
  font-weight: 300;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter .range-slider {
  position: relative;
  width: 100%;
  height: 62px;
  text-align: center;
}
.filter .range-slider input[type=range] {
  pointer-events: none;
  position: absolute;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  border: none;
  border-radius: 14px;
  background: var(--color-black);
  left: 0;
  top: 50px;
  width: 100%;
  outline: none;
  height: 2px;
  margin: 0;
  padding: 0;
}
.filter .range-slider input[type=range]::-webkit-slider-thumb {
  pointer-events: all;
  position: relative;
  z-index: 1;
  outline: 0;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-black);
  border-radius: 14px;
  background-color: var(--color-white);
}
.filter .range-slider input[type=range]::-moz-range-thumb {
  pointer-events: all;
  position: relative;
  z-index: 10;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 14px;
}
.filter .range-slider input[type=range]::-ms-thumb {
  pointer-events: all;
  position: relative;
  z-index: 10;
  -ms-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 14px;
  border: 0;
}
.filter .range-slider input[type=range]::-moz-range-track {
  position: relative;
  z-index: -1;
  background-color: black;
  border: 0;
}
.filter .range-slider input[type=range]:last-of-type::-moz-range-track {
  -moz-appearance: none;
  background: none transparent;
  border: 0;
}
.filter .range-slider input[type=range]::-moz-focus-outer {
  border: 0;
}
.filter .checkbox__group_tags .checkbox__control {
  display: none;
}
.filter .checkbox__group_tags .checkbox__text {
  display: inline-flex;
  border-radius: 4px;
  background-color: var(--color-grey);
  color: var(--color-black);
  padding: 5px 10px;
  width: auto;
  text-transform: uppercase;
  margin-left: 0;
}
.filter .checkbox__group_tags .checkbox__input:checked ~ .checkbox__text {
  background-color: var(--color-black);
  color: var(--color-white);
}
@media (max-width: 600px) {
  .filter .btn {
    width: 100%;
    margin-bottom: 8px;
  }
}
.filter .tabs__checkbox:checked ~ .tabs__item .tabs__item__content {
  margin-top: 0;
}
.filter .checkbox__group_color .checkbox__control {
  border-radius: 50%;
}
.filter .checkbox__group_color .checkbox__input:checked + .checkbox__control {
  transform: scale(1.3);
}

.awc--form__col_submit-button {
  text-align: right;
}

@media (max-width: 600px) {
  .review__form .btn {
    width: 100%;
  }
}

.breadcrumbs_is-catalog-page .breadcrumbs__item_switch .breadcrumbs__item_switch_text{
    padding-right: 10px;
}
.breadcrumbs_is-catalog-page .breadcrumbs__item_switch{
    cursor: pointer;
}
.catalog-page .breadcrumbs__item_switch ~ .breadcrumbs__item {
    display: none;
}
.breadcrumbs_is-catalog-page.is-open .breadcrumbs__item_switch ~ .breadcrumbs__item {
    display: block;
}