@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic&display=swap);
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



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

[class*=_icon-]:before {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class*=_icon-]:before {
  display: block;
}

._icon-search:before {
  content: "\e904";
}

._icon-vk:before {
  content: "\e900";
}

._icon-fb:before {
  content: "\e901";
}

._icon-inst:before {
  content: "\e902";
}

._icon-b_cat:before {
  content: "\e903";
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

html,
body {
  height: 100%;
  min-width: 320px;       
  font-size: 16px;
}

body {
  color: #000;
  line-height: 1;
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: 'Nunito', sans-serif;
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/

[class*=__container] {
  max-width: 73.125rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

.checkbox {
  position: relative;
}

.checkbox:not(:last-child) {
  margin-bottom: 0.3125em;
}

.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.checkbox__input:focus + .checkbox__label:before {
  -webkit-box-shadow: 0 0 0px #000;
          box-shadow: 0 0 0px #000;
}

.checkbox__input:checked + .checkbox__label::after {
  display: block;
}

.checkbox__label {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  gap: 10px;
}

.checkbox__label:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 13px;
          flex: 0 0 13px;
  width: 13px;
  height: 13px;
  border-radius: 3px;
  border: 1px solid #9f9d9d;
}

.checkbox__label:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 7px;
          flex: 0 0 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: none;
  background: #59aab9;
}

.options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.options__item {
  position: relative;
  cursor: pointer;
}

.options__item:not(:last-child) {
  margin-bottom: 0.3125em;
}

.options__input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}

.options__input:focus + .options__label:before {
  -webkit-box-shadow: 0 0 5px #000;
          box-shadow: 0 0 5px #000;
}

.options__input:checked + .options__label:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.options__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  gap: 10px;
}

.options__label:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: 13px;
  height: 13px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 13px;
          flex: 0 0 13px;
  border-radius: 50%;
  border: 1px solid #9f9d9d;
}

.options__label:after {
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #59aab9;
  position: absolute;
  left: 3px;
  top: 3px;
}

.options__text {
  letter-spacing: 0.0275em;
}

.opt__title {
  font-size: 18px;
}

.opt__suntitle {
  font-size: 14px;
  line-height: 16px;
  color: #b6b6b6;
}

.opt-w {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 240px;
}

.options-it {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.opt-z {
  margin: 0px 0px 20px 0px !important;
  position: relative;
  cursor: pointer;
}

.opt-z:not(:last-child) {
  margin-bottom: 0.3125em;
}

.rrs:before {
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  border: 2px solid #c8f0ee !important;
}

.rrs:after {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: 24px !important;
  height: 24px !important;
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 24px !important;
          flex: 0 0 24px !important;
  border-radius: 50%;
  left: 8px;
  top: 8px;
}

.select {
  position: relative;
}

.select__body {
  position: relative;
}

.select__title {
  color: inherit;
  text-align: left;
  background-color: #fff;
  cursor: pointer;
  width: 100%;
  border-radius: 4px;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1.875rem;
  padding: 0 0.9375rem;
  gap: 0.625rem;
  min-width: 320px;
}

.select__value > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.select__value:after {
  content: "";
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

._select-open .select__value:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #000;
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border-top: 0;
  padding: 10px 0px 5px 0px;
}

.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
}

.select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 5px 15px;
  color: inherit;
}

.select__option._select-selected {
  background-color: #eee;
}

.select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.select._select-open {
  z-index: 5;
}

._select-tag {
  cursor: pointer;
}

.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 21px;
  line-height: 0.75;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.rating.rating_sending {
  opacity: 0.2;
}

.rating.rating_set .rating__active,
.rating.rating_set .rating__item {
  cursor: pointer;
}

.rating__body {
  position: relative;
}

.rating__body::before {
  content: "★★★★★";
  display: block;
  color: #b4b4b4;
}

.rating__active {
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.rating__active::before {
  content: "★★★★★";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #ffd300;
}

.rating__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.rating__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  height: 100%;
  opacity: 0;
}

.rating__value {
  font-size: 50%;
  line-height: 1;
  font-size: 16px;
  padding: 0px 0px 0px 10px;
}

.quantity {
  width: 120px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
  border: 2px solid #dbeded;
}

.quantity__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  position: relative;
  cursor: pointer;
}

.quantity__button::before,
.quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -4.5px;
  background-color: #a6a6a6;
  width: 9px;
  height: 1px;
}

.quantity__button_plus::before {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.quantity__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.quantity__input input {
  height: 100%;
  font-size: 24px;
  border-right: 2px solid #dbeded;
  border-left: 2px solid #dbeded;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  text-align: center;
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  background-color: #dbeded;
  max-width: 100%;
  border-radius: 5px;
}

.lock .popup__content {
  visibility: visible;
}

.callback {
  min-width: 380px;
  padding: 30px 30px 50px 30px;
}

.callback__title {
  margin: 0px 0px 25px 0px;
}

.callback__form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.callback__form form input {
  margin: 0px 0px 15px 0px;
  width: 100%;
  font-size: 16px;
  background: #ffffff;
  border: 1px solid #59aab9;
  border-radius: 5px;
  padding: 20px 10px;
}

.callback__form form input:last-child {
  margin: 0px 0px 0px 0px;
}

.callback__info {
  color: #acacac;
  line-height: 120%;
  max-width: 18.75rem;
  text-align: center;
  margin: 0px 0px 12px 0px;
}

.callback__button {
  font-size: 20px;
  line-height: 23px;
  padding: 14px 0px;
  text-align: center;
  background: #83bdc8;
  border-radius: 6px;
  width: 100%;
  color: #ffffff;
  border: 1px solid #83bdc8;
}

.popup-title {
  text-align: center;
  font-weight: 500;
  font-size: 36px;
  line-height: 32px;
  color: #000000;
}

.popup__close {
  position: absolute;
  top: 12px;
  width: 0.875rem;
  height: 0.875rem;
  right: 14px;
}

.popup__close span {
  position: relative;
}

.popup__close span::before {
  content: "";
  width: 1px;
  height: 14px;
  background-color: #63c8d6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.popup__close span::after {
  content: "";
  width: 1px;
  height: 14px;
  background-color: #63c8d6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.addproduct {
  padding: 30px 20px;
  min-width: 500px;
  max-width: 500px;
}

.addproduct__title {
  margin: 0px 0px 20px 0px;
}

.addproduct__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.addproduct__btn-one {
  padding: 13px 40px;
  font-size: 16px;
  color: #ffffff;
  background: #83bdc8;
  border-radius: 5px;
  border: 2px solid #83bdc8;
}

.addproduct__btn-two {
  padding: 13px 40px;
  font-size: 16px;
  color: #000;
  border: 2px solid #63c8d6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
}

.spollers {
  display: -ms-grid;
  display: grid;
  gap: 15px;
}

.spollers__item {
  font-size: 0.875rem;
}

.spollers__title {
  width: 100%;
  cursor: default;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

._spoller-init .spollers__title {
  cursor: pointer;
}

._spoller-init .spollers__title::before,
._spoller-init .spollers__title::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  background-color: #000;
  height: 1px;
  width: 10px;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  -o-transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

._spoller-init .spollers__title::before {
  -webkit-transform: translate(-75%, -50%) rotate(40deg);
      -ms-transform: translate(-75%, -50%) rotate(40deg);
          transform: translate(-75%, -50%) rotate(40deg);
}

._spoller-init .spollers__title::after {
  -webkit-transform: translate(0, -50%) rotate(-40deg);
      -ms-transform: translate(0, -50%) rotate(-40deg);
          transform: translate(0, -50%) rotate(-40deg);
}

._spoller-init .spollers__title._spoller-active::before {
  -webkit-transform: translateX(-75%) rotate(-40deg);
      -ms-transform: translateX(-75%) rotate(-40deg);
          transform: translateX(-75%) rotate(-40deg);
}

._spoller-init .spollers__title._spoller-active::after {
  -webkit-transform: rotate(40deg);
      -ms-transform: rotate(40deg);
          transform: rotate(40deg);
}

.spollers__body {
  padding: 0rem;
  margin: 0px 0px 0px 4px;
  z-index: 51;
}

.spollers__body a {
  display: block;
  padding: 0px 0px 10px 0px;
  margin: 0px 0px 10px 0px;
  font-size: 16px;
  font-weight: 500;
}

.spollers__body a:first-child {
  margin: 20px 0px 20px 0px;
}

.spollers__body a:last-child {
  margin: 0px 0px 0px 0px;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

.header__top {
  background-color: #83bdc8;
}

.top-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 20px;
}

.top-header__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  color: #fff;
}

.top-header__number {
  white-space: nowrap;
  margin: 0px 30px 0px 0px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.top-header__worktime {
  white-space: nowrap;
  margin: 0px 30px 0px 0px;
}

.top-header__callback {
  margin: 0px 30px 0px 0px;
}

.top-header__city {
  white-space: nowrap;
  color: #fff;
}

.top-header__city a {
  text-decoration: underline;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.actions-header {
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.actions-header__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.actions-header__logo {
  margin: 0px 50px 0px 0px;
}

.actions-header__button {
  margin: 0px 30px 0px 0px;
  position: relative;
}

.actions-header__button-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f8d2d1;
  border-radius: 5px;
  padding: 10px 28px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.actions-header__button-link::before {
  margin: 0px 17px 0px 0px;
}

.actions-header__search {
  position: relative;
  width: 29.25rem;
  height: 3.125rem;
}

.actions-header__search input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 2px solid #f8d2d1;
  border-radius: 4px;
  padding: 14px 40px 14px 25px;
  font-size: 18px;
  line-height: 21px;
  color: #9f9d9d;
}

.actions-header__search button {
  position: absolute;
  top: 16px;
  right: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.actions-header__search button::before {
  font-size: 18px;
  color: #9f9d9d;
}

.actions-header__user {
  margin: 0px 42px 0px 0px;
}

.actions-header__user-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.actions-header__user-link span {
  margin: 4px 0px 0px 0px;
  display: block;
}

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

.actions-header__basket span {
  margin: 4px 0px 0px 0px;
  display: block;
}

.bottom-header {
  background-color: #dbeded;
  padding: 14px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-categories__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-categories__item {
  margin: 0px 76px 0px 0px;
}

.header-categories__item:last-child {
  margin: 0px 0px 0px 0px;
}

.header-categories__link {
  white-space: nowrap;
  font-size: 1.25rem;
  color: #000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-special__link {
  font-size: 1.25rem;
  color: #59aab9;
  font-weight: 600;
  white-space: nowrap;
  margin: 0px 76px 0px 0px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-special__link:last-child {
  margin: 0px 0px 0px 0px;
}

.sub-menu {
  position: absolute;
  bottom: -300px;
  left: 0;
  min-width: 200px;
  z-index: 50;
}

.sub-menu__block {
  background-color: #fff;
}

.actions-header__button-link::before {
  -webkit-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}

.icon-s {
  position: absolute;
  top: 10px;
  font-size: 20px;
  right: 20px;
}

.menu__body._open-menu {
  opacity: 1;
  visibility: visible;
}

.menu__body {
  z-index: 50;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
  width: 25rem;
  padding: 20px 20px;
  border-radius: 10px;
  z-index: 50;
  background-color: #fff;
}

.menu__item {
  padding: 0px 0px 10px 0px;
  margin: 0px 0px 10px 0px;
  border-bottom: 1px solid #dbeded;
}

.menu__link {
  font-size: 16px;
  font-weight: 500;
}

.spollers__body a {
  border-bottom: 1px solid #dbeded;
}

.spollers__body a:last-child {
  border: none;
}

.menu__title {
  margin: 0px 0px 20px 0px;
  font-size: 24px;
  font-weight: 500;
}

/*
.icon-menu {
	display: none;
	@media (max-width: $mobile) {
		display: block;
		position: relative;
		width: rem(30);
		height: rem(18);
		cursor: pointer;
		z-index: 5;
		span,
		&::before,
		&::after {
			content: "";
			transition: all 0.3s ease 0s;
			right: 0;
			position: absolute;
			width: 100%;
			height: rem(2);
			background-color: #000;
		}
		&::before {
			top: 0;
		}
		&::after {
			bottom: 0;
		}
		span {
			top: calc(50% - rem(1));
		}
		.menu-open & {
			span {
				width: 0;
			}
			&::before,
			&::after {
			}
			&::before {
				top: calc(50% - rem(1));
				transform: rotate(-45deg);
			}
			&::after {
				bottom: calc(50% - rem(1));
				transform: rotate(45deg);
			}
		}
	}
}
*/

.no-webp .footer{
  background-image: url(../img/footer-bg.png); }

.footer {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.top-footer {
  padding: 45px 50px 70px 50px;
}

.top-footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top-footer__item {
  margin: 0px 10px 0px 0px;
}

.top-footer__item:last-child {
  margin: 0px 0px 0px 0px;
}

.item-footer__title {
  margin: 0px 0px 20px 0px;
}

.item-footer__item {
  margin: 0px 0px 18px 0px;
}

.item-footer__item:last-child {
  margin: 0px 0px 0px 0px;
}

.item-footer__link {
  font-weight: 300;
  font-size: 22px;
  line-height: 25px;
  color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-footer__social-title {
  margin: 0px 0px 10px 0px;
}

.item-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0px 0px 16px 0px;
}

.item-footer__social-link {
  font-size: 26px;
  color: #fff;
  margin: 0px 20px 0px 0px;
}

.item-footer__social-link:first-child {
  font-size: 16px;
}

.item-footer__social-link:last-child {
  margin: 0px 0px 0px 0px;
}

.item-footer__payment {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.f-t {
  color: #fff;
  font-weight: 600;
  font-size: 32px;
}

.bottom-footer {
  font-family: "Roboto";
  font-weight: 300;
  color: #fff;
  border-top: 1px solid #c4c4c4;
  padding: 0px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 4.375rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bottom-footer__info {
  max-width: 340px;
  text-align: right;
  line-height: 16px;
}

.no-webp .swiper-slide__wrapper{
  background-image: url(../img/homeSlider/slide_bg.jpg); }

.swiper-slide__wrapper {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.homeslider {
  position: relative;
}

.swiper-slide__title {
  font-weight: 600;
  font-size: 46px;
  line-height: 55px;
  color: #ffffff;
  max-width: 28.125rem;
  margin: 0px 0px 30px 0px;
}

.swiper-slide__btn {
  font-size: 22px;
  padding: 15px 78px;
  color: #000000;
  background: #dbeded;
  border-radius: 5px;
  -webkit-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

.no-webp .homeslider-next{
  background-image: url(../img/homeSlider/slide_btn.png); }

.homeslider-next {
  width: 2.25rem;
  height: 2.25rem;
  position: absolute;
  top: 50%;
  right: 4%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.no-webp .homeslider-prev{
  background-image: url(../img/homeSlider/slide_btn.png); }

.homeslider-prev {
  width: 2.25rem;
  height: 2.25rem;
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  top: 50%;
  position: absolute;
  left: 4%;
}

.homeslider-pagination {
  position: absolute;
  bottom: 14px;
  height: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}

.homeslider-pagination .swiper-pagination-bullet {
  height: 8px;
  margin: 0px 4px 0px 0px;
  width: 8px;
  border-radius: 50%;
  display: inline-block;
  background-color: #83bdc8;
}

.homeslider-pagination .swiper-pagination-bullet:last-child {
  margin: 0px 0px 0px 0px;
}

.categories {
  padding: 50px 4px;
}

.categories__title {
  font-weight: 600;
  font-size: 36px;
  color: #000000;
}

.categories__columns {
  margin: 16px 0px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.item-categories {
  margin: 0px 20px 0px 0px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 28.333%;
          flex: 1 0 28.333%;
}

.item-categories:last-child {
  margin: 0px 0px 0px 0px;
}

.top-item-categories__link {
  display: block;
}

.top-item-categories__title {
  display: inline-block;
  font-size: 26px;
  line-height: 31px;
  max-width: 160px;
  color: #000000;
  margin: 40px 0px 0px 30px;
}

.b-t {
  font-weight: 700;
  font-size: 26px;
  line-height: 32px;
  color: #000000;
  display: inline-block;
  max-width: 130px;
}

.no-webp .i-b-one{
  background-image: url(../img/categories/02.jpg); }

.i-b-one {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 200px;
  border-radius: 5px;
}

.no-webp .i-b-two{
  background-image: url(../img/categories/04.jpg); }

.i-b-two {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 5px;
  min-height: 200px;
}

.no-webp .i-b-three{
  background-image: url(../img/categories/05.jpg); }

.i-b-three {
  background-position: center;
  background-size: cover;
  border-radius: 5px;
  background-repeat: no-repeat;
  min-height: 200px;
}

.bottom-item-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bottom-item-categories__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 47%;
          flex: 1 0 47%;
}

.bottom-item-categories__title {
  margin: 28px 0px 0px 24px;
  max-width: 160px;
  display: inline-block;
  font-weight: 600;
  font-size: 26px;
  line-height: 31px;
  /* identical to box height */
  color: #000000;
}

.no-webp .i-l-one{
  background-image: url(../img/categories/03.jpg); }

.i-l-one {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 200px;
  border-radius: 5px;
  display: inline-block;
  width: 100%;
}

.no-webp .i-l-two{
  background-image: url(../img/categories/06.jpg); }

.i-l-two {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 200px;
  display: inline-block;
  border-radius: 5px;
  width: 100%;
}

.no-webp .i-l-three{
  background-image: url(../img/categories/07.jpg); }

.i-l-three {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 200px;
  display: inline-block;
  width: 100%;
  border-radius: 5px;
}

.no-webp .i-l-four{
  background-image: url(../img/categories/08.jpg); }

.i-l-four {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 200px;
  display: inline-block;
  border-radius: 5px;
  width: 100%;
}

.no-webp .i-l-five{
  background-image: url(../img/categories/01.jpg); }

.i-l-five {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 200px;
  display: inline-block;
  border-radius: 5px;
  width: 100%;
}

.no-webp .i-l-six{
  background-image: url(../img/categories/09.jpg); }

.i-l-six {
  border-radius: 5px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 200px;
  display: inline-block;
  width: 100%;
}

.m-b-b {
  margin: 0px 0px 20px 0px;
}

.m-b-b-t {
  margin: 20px 0px 0px 0px;
}

.bottom-item-categories__item:first-child {
  margin: 0px 20px 0px 0px;
}

.suggestions__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 10px;
}

.suggestions__item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 32.4%;
          flex: 1 0 32.4%;
  margin: 0px 20px 0px 0px;
  min-height: 180px;
}

.suggestions__item:last-child {
  margin: 0px 0px 0px 0px;
}

.suggestions__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.suggestions__info {
  position: absolute;
  top: 48px;
  left: 57px;
  max-width: 250px;
  font-weight: 700;
  font-size: 26px;
  line-height: 32px;
  text-transform: uppercase;
  color: #ffffff;
  display: block;
}

.brents {
  padding: 25px 10px 30px 10px;
}

.brents__title {
  margin: 0px 0px 18px 0px;
  font-weight: 600;
  font-size: 36px;
  line-height: 43px;
  color: #000000;
}

.brents__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1700px;
  margin: 0 auto;
}

.brents__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 14.2%;
          flex: 1 0 14.2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.brents__link img {
  max-width: 130px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.sale {
  padding: 30px 10px;
  max-width: 1600px;
  margin: 0 auto;
}

.sale__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0px -20px;
}

.sale__item {
  position: relative;
  max-width: 159px;
  margin: 0px 16px 20px 16px;
}

.sale__item:last-child {
  margin: 0px 20px 20px 20px;
}

.sale__item span {
  position: absolute;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 5.6875rem;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}

.sale__item img {
  max-width: 160px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.recommendations {
  padding: 40px 10px;
}

.recommendations__title {
  margin: 0px 0px 29px 0px;
  font-weight: 600;
  font-size: 36px;
  line-height: 43px;
  color: #000000;
}

.recommendations__carts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    align-items: flex-start;  
}

.cart {
  max-width: 232px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
    box-sizing: border-box;
    padding: 0 5px;
}

.cart__image {
  padding: 10px;
  position: relative;
}

.cart__image img {
  width: 13.0625rem;
  height: 12.875rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.cart__image span {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 16px;
  display: inline-block;
  padding: 4px 4px;
  line-height: 19px;
  background: #63c8d6;
  color: #ffffff;
}

.cart__price {
  margin: 10px 0px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cart__new-price {
  margin: 0px 8px 0px 0px;
  font-weight: 600;
  font-size: 20px;
  color: #000000;
  position: relative;
  padding: 0px 13px 0px 0px;
}

.cart__new-price::before {
  content: "₽";
  top: 0;
  right: 0;
  position: absolute;
}

.cart__old-prices {
  font-size: 16px;
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
  color: #c4c4c4;
  font-weight: 500;
}

.cart__info {
  margin: 13px 0px 0px 0px;
  line-height: 16px;
  max-width: 12.5rem;
}

.cart__btn {
  margin: 10px 0px 0px 0px;
  background: #ffcac5;
  text-align: center;
  display: inline-block;
  max-width: 7.5rem;
  border-radius: 3px;
  padding: 10px 29px;
}

.no-webp .advantages{
  background-image: url(../img/advantages/bg.png); }

.advantages {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 46px 10px 86px 10px;
}

.advantages__title {
  text-align: center;
  font-weight: 600;
  font-size: 36px;
  color: #000000;
}

.advantages__items {
  margin: 40px 0px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.advantages__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 33.333%;
          flex: 1 0 33.333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.item-advantages__image img {
  max-width: 100px;
  max-height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

.item-advantages__info {
  margin: 0px 10px 0px 20px;
  max-width: 334px;
}

.advantages-info__title {
  font-size: 24px;
  line-height: 28px;
  color: #000000;
}

.advantages-info__text {
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  margin: 12px 0px 0px 0px;
  color: #000000;
}

.bottom-catalog__items {
  margin: 0px -30px;
}

.bottom-catalog__items .bottom-catalog__item {
  margin: 0px 30px;
}

.catalog {
  padding: 0px 10px 0px 10px;
}

.top-catalog__breadrams {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.top-catalog__breadrams-item {
  position: relative;
}

.top-catalog__breadrams-item::after {
  content: ">";
}

.top-catalog__breadrams-item:last-child::after {
  content: ">";
  display: none;
}

.top-catalog__breadrams-link {
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.top-catalog__breadrams-link:hover {
  text-decoration: underline;
}

.top-catalog__info {
  padding: 20px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top-catalog__title {
  font-weight: 500;
  font-size: 36px;
  line-height: 43px;
  color: #000000;
}

.top-catalog__subtitle {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  line-height: 150%;
  margin: 0px 0px 0px 16px;
  color: #c4c4c4;
}

.top-catalog__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px 0px 45px 0px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.top-catalog__filter-item {
  margin: 10px 20px 0px 0px;
  font-weight: 500;
  line-height: 150%;
  padding: 5px 66px;
  letter-spacing: 0.0275em;
  background: #ffffff;
  border: 1px solid #dbeded;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  white-space: nowrap;
}

.top-catalog__filter-item:hover {
  background: #dbeded;
}

.top-catalog__filter-item:last-child {
  margin: 10px 0px 0px 0px;
}

.top-catalog__filter-item._active {
  background: #dbeded;
}

.bottom-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}

.bottom-catalog__filter {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 250px;
          flex: 1 0 250px;
  border-right: 1px solid #dbeded;
  max-width: 250px;
}

.bottom-catalog__wrapper {
  margin: 0px 0px 0px 60px;
}

.bottom-catalog__select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bottom-catalog__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bottom-catalog__btn-i {
  padding: 10px 50px;
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.0275em;
  text-transform: capitalize;
  color: #000000;
  background: #ffffff;
  border: 1px solid #63c8d6;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.bottom-catalog__btn-i:hover {
  background: #ffcac5;
  border: 1px solid #ffcac5;
}

.cart__bottom-catalog__btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px 0 0px 0;
}

.filter-bottom__item {
  border-bottom: 1px solid #dbeded;
}

.filter-bottom__item:last-child {
  /* border-bottom: none; */
}

.filter-bottom__item-checkbox-title {
  letter-spacing: 0.0275em;
  font-weight: 500;
  margin: 0px 0px 6px 0px;
}

.checkbox {
  margin: 0px 0px 4px 0px;
}

.checkbox__input {
  cursor: pointer;
}

.checkbox__label {
  cursor: pointer;
}

.checkbox__text {
  cursor: pointer;
}

.bottom-radiobuttons__title {
  letter-spacing: 0.0275em;
  font-weight: 500;
  margin: 0px 0px 6px 0px;
}

.bottom-radiobuttons__item {
  margin: 0px 0px 4px 0px;
}

.select__content {
  text-decoration: underline;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.0275em;
  color: #63c8d6;
}

.bottom-catalog__select-info {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.0275em;
}

.radio__input {
  cursor: pointer;
}

.filter-bottom__item {
  margin: 20px 0px 0px 0px;
  padding: 0px 0px 10px 0px;
}

.b-send {
  line-height: 16px;
  padding: 10px 26px;
  color: #ffffff;
  background: #63c8d6;
  border-radius: 3px;
  margin: 0px 18px 0px 0px;
}

.reset {
  line-height: 16px;
  text-decoration: underline;
  color: #f27469;
}

.reset:hover {
  text-decoration: none;
}

.authorization {
  max-width: 385px;
  background: #dbeded;
  border-radius: 5px;
  padding: 36px 30px 56px 30px;
  margin: 80px auto 40px auto;
}

.authorization__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.authorization__form-title {
  text-align: center;
  margin: 0px 0px 25px 0px;
  font-weight: 500;
  font-size: 36px;
  color: #000000;
}

.authorization__form-link {
  margin: 0px 0px 16px 0px;
  text-decoration: underline;
  color: #7d7d7d;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.authorization__form-link:hover {
  color: #000;
}

.authorization__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.authorization__button a {
  font-size: 12px;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #59aab9;
}

.authorization__button a:hover {
  color: #000;
}

.authorization__button-i {
  padding: 14px 0px 14px 0px;
  margin: 0px 0px 20px 0px;
  font-size: 20px;
  color: #ffffff;
  background: #83bdc8;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.authorization__button-i:hover {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}

.authorization__form-input {
  margin: 0px 0px 15px 0px;
  background: #ffffff;
  border: 1px solid #59aab9;
  border-radius: 5px;
  font-size: 16px;
  padding: 10px 16px;
  color: #bdbdbd;
}

.message {
  max-width: 1196px;
  margin: 80px auto 100px auto;
  background: #dbeded;
  border-radius: 5px;
  padding: 35px 25px 35px 120px;
}

@supports (padding-top: clamp( 1.25rem , 0.9090909091rem  +  1.7045454545vw , 2.1875rem )) {
  .message {
    padding-top: clamp( 1.25rem , 0.9090909091rem  +  1.7045454545vw , 2.1875rem );
  }
}

@supports not (padding-top: clamp( 1.25rem , 0.9090909091rem  +  1.7045454545vw , 2.1875rem )) {
  .message {
    padding-top: calc(1.25rem + 0.9375 * (100vw - 20rem) / 55);
  }
}

@supports (padding-left: clamp( 0.625rem , -1.875rem  +  12.5vw , 7.5rem )) {
  .message {
    padding-left: clamp( 0.625rem , -1.875rem  +  12.5vw , 7.5rem );
  }
}

@supports not (padding-left: clamp( 0.625rem , -1.875rem  +  12.5vw , 7.5rem )) {
  .message {
    padding-left: calc(0.625rem + 6.875 * (100vw - 20rem) / 55);
  }
}

@supports (padding-right: clamp( 0.625rem , 0.2840909091rem  +  1.7045454545vw , 1.5625rem )) {
  .message {
    padding-right: clamp( 0.625rem , 0.2840909091rem  +  1.7045454545vw , 1.5625rem );
  }
}

@supports not (padding-right: clamp( 0.625rem , 0.2840909091rem  +  1.7045454545vw , 1.5625rem )) {
  .message {
    padding-right: calc(0.625rem + 0.9375 * (100vw - 20rem) / 55);
  }
}

@supports (padding-bottom: clamp( 1.25rem , 0.9090909091rem  +  1.7045454545vw , 2.1875rem )) {
  .message {
    padding-bottom: clamp( 1.25rem , 0.9090909091rem  +  1.7045454545vw , 2.1875rem );
  }
}

@supports not (padding-bottom: clamp( 1.25rem , 0.9090909091rem  +  1.7045454545vw , 2.1875rem )) {
  .message {
    padding-bottom: calc(1.25rem + 0.9375 * (100vw - 20rem) / 55);
  }
}

.message p {
  margin: 0px 0px 40px 0px;
  line-height: 32px;
}

@supports (margin-bottom: clamp( 0.625rem , -0.0568181818rem  +  3.4090909091vw , 2.5rem )) {
  .message p {
    margin-bottom: clamp( 0.625rem , -0.0568181818rem  +  3.4090909091vw , 2.5rem );
  }
}

@supports not (margin-bottom: clamp( 0.625rem , -0.0568181818rem  +  3.4090909091vw , 2.5rem )) {
  .message p {
    margin-bottom: calc(0.625rem + 1.875 * (100vw - 20rem) / 55);
  }
}

@supports (font-size: clamp( 1.125rem , 0.9886363636rem  +  0.6818181818vw , 1.5rem )) {
  .message p {
    font-size: clamp( 1.125rem , 0.9886363636rem  +  0.6818181818vw , 1.5rem );
  }
}

@supports not (font-size: clamp( 1.125rem , 0.9886363636rem  +  0.6818181818vw , 1.5rem )) {
  .message p {
    font-size: calc(1.125rem + 0.375 * (100vw - 20rem) / 55);
  }
}

.message p span {
  font-weight: 700;
  margin: 0px 6px 0px 0px;
}

.message p span::after {
  content: "₽";
}

.message__title {
  font-weight: 600;
  line-height: 32px;
}

@supports (font-size: clamp( 1.125rem , 0.9886363636rem  +  0.6818181818vw , 1.5rem )) {
  .message__title {
    font-size: clamp( 1.125rem , 0.9886363636rem  +  0.6818181818vw , 1.5rem );
  }
}

@supports not (font-size: clamp( 1.125rem , 0.9886363636rem  +  0.6818181818vw , 1.5rem )) {
  .message__title {
    font-size: calc(1.125rem + 0.375 * (100vw - 20rem) / 55);
  }
}

.products__section-title {
  margin: 0px 0px 20px 0px;
  font-weight: 600;
  font-size: 36px;
  line-height: 43px;
  color: #000000;
}

.products__section {
  padding: 0px 20px;
}

.products__info {
  padding: 0px 10px;
}

.info-products__text p {
  font-weight: 300;
  font-size: 16px;
  line-height: 21px;
  margin: 0px 0px 14px 0px;
}

.info-products__text-subtitle {
  font-size: 16px;
  line-height: 23px;
}

.products__breadrams {
  padding: 0px 20px;
}

.products__body {
  padding: 0px 20px 70px 20px;
}

.top-products__title {
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
  margin: 0px 0px 4px 0px;
  color: #000000;
}

.top-products__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0px 0px 20px 0px;
}

.top-products__sale {
  font-size: 18px;
  color: #ffffff;
  background: #63c8d6;
  border-radius: 5px;
  padding: 4px 6px;
  margin: 0px 30px 0px 0px;
}

.top-products__reviews {
  color: #c4c4c4;
}

.rating__value {
  opacity: 0;
  visibility: hidden;
}

.bottom-products {
  padding: 20px 0px 0px 0px;
  border-top: 1px solid #dbeded;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bottom-products__sliders {
  max-width: 43.011%;
  padding: 0px 6px 0px 0px;
}

.bottom-products__content {
  padding: 0px 0px 0px 20px;
  width: 56.989%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.item-top {
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 40px 14px;
}

.item-bottom {
  margin: 20px 0px 0px 0px;
  max-width: 500px;
}

.color-products__title {
  font-weight: 600;
  font-size: 18px;
  margin: 0px 0px 10px 0px;
}

.color-products__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.color-products__item {
  margin: 0px 15px 0px 0px;
}

.color-products__item:last-child {
  margin: 0px 10px 0px 0px;
}

.color-products__item span {
  display: block;
  font-weight: 300;
  font-size: 12px;
}

.color-products__item a:hover {
  color: #59aab9;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.color-products__item a:hover img {
  border: 1px solid #63c8d6;
}

.color-products__item img {
  width: 64px;
  height: 64px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #d7f4f3;
  margin: 0px 0px 5px 0px;
}

.characteristics-products {
  margin: 30px 0px 0px 0px;
}

.characteristics-products__title {
  font-weight: 600;
  font-size: 18px;
  margin: 0px 0px 12px 0px;
}

.characteristics-products__info p {
  margin: 0px 0px 10px 0px;
  font-size: 12px;
  color: #919191;
}

.characteristics-products__info p:last-child {
  margin: 0px 0px 0px 0px;
}

.characteristics-products__info p span {
  color: #000;
}

.characteristics-products__info p span a {
  color: #59aab9;
}

.characteristics-products__link {
  margin: 14px 0px 0px 0px;
  font-size: 12px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #59aab9;
}

.add-bottom-products__wrapper {
  background: #dbeded;
  text-align: center;
  border-radius: 5px;
  padding: 20px 30px 25px 30px;
}

.add-bottom-products__new {
  font-weight: 500;
  font-size: 34px;
  position: relative;
}

.add-bottom-products__new::after {
  content: "₽";
  font-family: "Roboto";
  font-size: 30px;
}

.add-bottom-products__old {
  font-size: 18px;
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
  color: #7d7d7d;
  margin: 0px 0px 0px 14px;
}

.add-bottom-products__link a {
  margin: 15px 0px 0px 0px;
  font-size: 24px;
  background: #59aab9;
  border-radius: 6px;
  padding: 13px 43px 15px 43px;
  display: inline-block;
  color: #ffffff;
}

.add-bottom-products p {
  margin: 8px 0px 0px 0px;
}

.info-bottom-products {
  margin: 60px 0px 0px 0px;
}

.info-bottom-products__title {
  font-size: 18px;
  margin: 0px 0px 10px 0px;
}

.info-bottom-products__title a {
  color: #f7bab5;
}

.info-bottom-products__item {
  margin: 0px 0px 20px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info-bottom-products__item img {
  margin: 0px 6px 0px 0px;
}

.info-bottom-products__item span {
  font-weight: 300;
  font-size: 12px;
}

.info-bottom-products__item span a {
  color: #f7bab5;
}

.info-bottom-products__item:last-child {
  margin: 0px 20px 0px 0px;
}

.question-bottom-products__item {
  margin: 26px 0px 0px 0px;
  max-width: 15rem;
}

.question-bottom-products__title {
  font-size: 18px;
  margin: 0px 0px 10px 0px;
}

.swipertwo__slide {
  height: 6.25rem;
  width: 5rem;
  border-radius: 4px;
}

.swipertwo__slide img {
  border-radius: 4px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sliderone__slide {
  width: 31.25rem;
  height: 27.5rem;
}

.sliderone__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.question-bottom-products__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.question-bottom-products__links a {
  white-space: nowrap;
  font-weight: 300;
  font-size: 12px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #f7bab5;
  margin: 0px 33px 8px 0px;
}

.question-bottom-products__links a:last-child {
  margin: 0px 0px 0px 0px;
}

.basket__wrapper {
  padding: 0px 20px 100px 20px;
}

.basket__title {
  font-weight: 600;
  font-size: 36px;
  margin: 0px 0px 14px 0px;
}

.basket__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.basket__items {
  width: 74%;
}

.basket__item {
  padding: 24px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: justify;
    justify-content: space-around;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}

.item-basket {
  border-bottom: 1px solid #dbeded;
}

.item-basket:first-child {
  border-top: 1px solid #dbeded;
}

.item-basket__image {
  width: 10%;
  height: 100px;
  margin: 0px 18px 0px 0px;
  min-width: 100px;
}

.item-basket__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.item-basket__info{
	width:50%;
}

.item-basket__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0px 10px 0px 0px;
  min-width: 150px;
  text-align: center;
	width:20%;
}

.item-basket__action-top {
  margin: 0px 0px 10px 0px;
}

.item-basket__action-bottom {
  font-size: 12px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #f7bab5;
}

.item-basket__price {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.04em;
  color: #000000;
  white-space: nowrap;
  min-width: 150px;
  text-align: right;
  box-sizing: border-box;
  padding: 0 20px 0 0;
	width:20%;
}

.info-item-basket__title {
  margin: 0px 10px 13px 0px;
  display: block;
  font-weight: 500;
  font-size: 18px;
}

.info-item-basket__info {
  margin: 0px 0px 6px 0px;
  color: #c4c4c4;
}

.info-item-basket__subinfo {
  color: #c4c4c4;
}

.actions-basket {
  margin: 0px 0px 0px 30px;
  padding: 30px 30px 20px 30px;
  background: #dbeded;
  max-height: 350px;
  border-radius: 5px;
}

.actions-basket__wrapper-c {
  border-top: 1px solid #59aab9;
  border-bottom: 1px solid #59aab9;
  padding: 16px 0px 29px 0px;
}

.actions-basket__link {
  white-space: nowrap;
  background: #59aab9;
  border-radius: 6px;
  padding: 13px 55px;
  font-size: 24px;
  color: #ffffff;
  display: inline-block;
  margin: 0px 0px 24px 0px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.actions-basket__title {
  font-weight: 450;
  font-size: 24px;
  margin: 0px 0px 16px 0px;
}

.actions-basket__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0px 0px 0px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 24px;
}

.info-basket {
  font-size: 16px;
}

.info-basket__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0px 0px 9px 0px;
}

.info-basket__price {
  position: relative;
}

.info-basket__price::after {
  content: "₽";
  font-family: "Roboto";
  font-size: 15px;
}

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

.info-basket__sale-item {
  position: relative;
}

.info-basket__sale-item::after {
  content: "₽";
  font-family: "Roboto";
  font-size: 15px;
}

.info-basket__price-info {
  position: relative;
}

.info-basket__price-info::after {
  content: "₽";
  font-family: "Roboto";
  font-size: 20px;
}

.basket__breadrams {
  padding: 0px 20px;
}

.registration {
  padding: 70px 20px 80px 20px;
}

.registration__title {
  font-weight: 600;
  font-size: 36px;
  line-height: 130%;
  margin: 0px 0px 14px 0px;
}

.registration__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.delivery {
  border-top: 1px solid #dbeded;
  padding: 30px 0px 0px 0px;
}

.delivery__title {
  font-size: 24px;
  margin: 0px 0px 16px 0px;
}

.delivery__title a {
  display: inline-block;
  margin: 0px 0px 0px 20px;
  color: #f7bab5;
  font-size: 16px;
  font-weight: 300;
}

.payment {
  border-top: 1px solid #dbeded;
  border-bottom: 1px solid #dbeded;
  margin: 30px 0px 30px 0px;
  padding: 30px 0px 30px 0px;
}

.payment__title {
  font-size: 24px;
  margin: 0px 0px 16px 0px;
}

.data__title {
  font-size: 24px;
  margin: 0px 0px 16px 0px;
}

.data__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.data__item textarea {
  border: 1px solid #c8f0ee;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  padding: 14px;
  resize: none;
  width: 340px;
  height: 100px;
}

.data__item input {
  border: 1px solid #c8f0ee;
  border-radius: 5px;
  display: inline-block;
  font-size: 16px;
  padding: 13px 14px;
  width: 330px;
}

.item-t {
  margin: 0px 0px 0px 14px;
}

.item-i {
  max-width: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.item-i div {
  margin: 0px 16px 10px 0px;
}

.item-i div:last-child {
  margin: 0px 0px 0px 0px;
}

.action-registration {
  width: 21.25rem;
  margin: 0px 0px 0px 50px;
}

.action-registration__item {
  background: #dbeded;
  border-radius: 5px;
}

.action-registration__item:first-child {
  padding: 30px 30px 20px 30px;
  margin: 0px 0px 20px 0px;
}

.action-registration__item:last-child {
  padding: 30px 30px 20px 30px;
}

.item-b input {
  border: 1px solid #59aab9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  font-size: 16px;
  width: 100%;
  padding: 13px 14px;
}

.actions-registration__link {
  font-size: 24px;
  color: #ffffff;
  background: #59aab9;
  border-radius: 6px;
  white-space: nowrap;
  font-weight: 300;
  padding: 13px 50px 14px 50px;
  margin: 0px 0px 24px 0px;
}

.actions-registration__wrapper-c {
  border-top: 1px solid #59aab9;
  border-bottom: 1px solid #59aab9;
}

.actions-registration__wrapper-c {
  padding: 20px 0px;
}

.actions-registration__title-b {
  font-weight: 500;
  white-space: nowrap;
  font-size: 20px;
  margin: 0px 0px 10px 0px;
}

.actions-registration__title {
  font-weight: 500;
  white-space: nowrap;
  font-size: 24px;
  margin: 0px 0px 16px 0px;
}

.actions-registration__price {
  padding: 20px 0px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info-registration__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  margin: 0px 0px 10px 0px;
}

.info-registration__price {
  position: relative;
}

.info-registration__price::after {
  content: "₽";
  font-family: "Roboto";
  font-size: 14px;
}

.info-registration__sale {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
}

.info-registration__sale-item {
  position: relative;
}

.info-registration__sale-item::after {
  content: "₽";
  font-family: "Roboto";
  font-size: 14px;
}

.info-registration__price-title {
  font-weight: 500;
  font-size: 24px;
}

.info-registration__price-info {
  font-weight: 500;
  font-size: 24px;
  position: relative;
}

.info-registration__price-info::after {
  content: "₽";
  font-family: "Roboto";
  font-size: 22px;
  top: 50%;
  -webkit-transform: translateY(-40%);
      -ms-transform: translateY(-40%);
          transform: translateY(-40%);
  position: absolute;
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

@media (min-width: 37.5em) {
  .menu__body {
    border: 1px solid #dbeded;
  }
}

@media (min-width: 47.99875em) {
  .callback__button {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .callback__button:hover {
    border: 1px solid #63c8d6;
    background-color: #dbeded;
    color: #000;
  }

  .addproduct__btn-one {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .addproduct__btn-one:hover {
    border: 2px solid #63c8d6;
    background-color: #dbeded;
    color: #000;
  }

  .addproduct__btn-two {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .addproduct__btn-two:hover {
    border: 2px solid #83bdc8;
    background: #83bdc8;
    color: #fff;
  }

  .top-header__number:hover {
    color: #000;
  }

  .top-header__callback {
    -webkit-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
  }

  .top-header__callback:hover {
    text-decoration: underline;
  }

  .top-header__city a:hover {
    color: #000;
  }

  .actions-header__button-link:hover {
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
  }

  .actions-header__search button:hover {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }

  .actions-header__search button:hover::before {
    color: #000;
  }

  .header-categories__link:hover {
    color: #59aab9;
  }

  .header-special__link:hover {
    color: #000;
  }

  .actions-header__button-link:hover::before {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .item-footer__link:hover {
    color: #000;
  }

  .item-footer__payment:hover {
    color: #000;
  }

  .swiper-slide__btn:hover {
    color: #fff;
    background: #000;
  }

  .top-item-categories {
    -webkit-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
  }

  .top-item-categories:hover {
    -webkit-transform: scale(0.95);
        -ms-transform: scale(0.95);
            transform: scale(0.95);
  }

  .bottom-item-categories__link {
    -webkit-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
  }

  .bottom-item-categories__link:hover {
    -webkit-transform: scale(0.95);
        -ms-transform: scale(0.95);
            transform: scale(0.95);
  }

  .brents__item {
    -webkit-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
  }

  .brents__item:hover {
    -webkit-transform: scale(0.95);
        -ms-transform: scale(0.95);
            transform: scale(0.95);
  }

  .sale__item {
    -webkit-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
  }

  .sale__item:hover {
    -webkit-transform: scale(0.95);
        -ms-transform: scale(0.95);
            transform: scale(0.95);
  }

  .cart__btn {
    -webkit-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
  }

  .cart__btn:hover {
    -webkit-transform: scale(0.95);
        -ms-transform: scale(0.95);
            transform: scale(0.95);
  }

  .b-send {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .b-send:hover {
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
  }

  .characteristics-products__link {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .characteristics-products__link:hover {
    color: #000;
  }

  .add-bottom-products__link a {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .add-bottom-products__link a:hover {
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
  }

  .item-basket__action-bottom {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .item-basket__action-bottom:hover {
    color: #000;
  }

  .info-item-basket__title {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .info-item-basket__title:hover {
    color: #f7bab5;
  }

  .actions-basket__link:hover {
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
  }
}

@media (max-width: 80em) {
  .bottom-products__sliders {
    max-width: 50%;
  }

  .bottom-products__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .about-products-bottom {
    margin: 0px 0px 30px 0px;
  }

  .action-products-bottom__add {
    display: inline-block;
  }
}

@media (max-width: 75em) {
  .suggestions__info {
    top: 20px;
    left: 30px;
  }

  .brents__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .brents__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 20%;
            flex: 1 0 20%;
    margin: 20px 10px 0px 10px;
  }

  .recommendations__carts {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 50em) {
  .top-catalog__title {
    font-size: 24px;
    line-height: 120%;
  }

  .top-catalog__subtitle {
    font-size: 14px;
  }
}

@media (max-width: 83.75em) {
  .actions-header__search {
    width: 21.25rem;
  }
}

@media (max-width: 81.25em) {
  .item-categories {
    margin: 0px 10px 0px 0px;
  }

  .m-b-b {
    margin: 0px 0px 10px 0px;
  }

  .m-b-b-t {
    margin: 10px 0px 0px 0px;
  }
}

@media (max-width: 78.125em) {
  .categories__columns {
    display: block;
    max-width: 500px;
    margin: 20px auto 0 auto;
  }

  .categories__columns:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .item-categories {
    margin: 10px 0px 0px 0px;
  }

  .action-registration {
    margin: 20px auto 0 auto;
  }
}

@media (max-width: 76.9375em) {
  .top-catalog__filter-item {
    margin: 10px 10px 0px 0px;
    padding: 5px 20px;
  }
}

@media (max-width: 75.625em) {
  .actions-header__search {
    width: 13.75rem;
    height: 2.3125rem;
  }

  .actions-header__search input {
    padding: 6px 30px 6px 10px;
    font-size: 14px;
  }

  .actions-header__search button {
    top: 12px;
    right: 10px;
  }

  .actions-header__search button::before {
    font-size: 14px;
  }

  .actions-basket {
    margin: 0px 0px 0px 10px;
  }
}

@media (max-width: 71.875em) {
  .bottom-header {
    padding: 10px 10px;
  }

  .top-products__title {
    font-size: 30px;
    margin: 0px 0px 10px 0px;
  }

  .registration__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 71.1875em) {
  .basket__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .basket__items {
    width: 100%;
  }

  .actions-basket {
    margin: 0px 0px 0px 0px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 70.625em) {
  .header-categories__item {
    margin: 0px 20px 0px 0px;
  }

  .header-special__link {
    margin: 0px 20px 0px 0px;
  }
}

@media (max-width: 68.75em) {
  .actions-header__button-link {
    font-size: 18px;
    padding: 10px 16px;
  }

  .actions-header__button-link::before {
    margin: 0px 10px 0px 0px;
  }

  .advantages__items {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .advantages__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
    margin: 0px 0px 20px 0px;
  }
}

@media (max-width: 68.125em) {
  .actions-header__search {
    width: 12.5rem;
  }
}

@media (max-width: 63.75em) {
  .actions-header__logo {
    margin: 0px 10px 0px 0px;
  }

  .actions-header__button {
    margin: 0px 10px 0px 0px;
  }
}

@media (max-width: 62.5em) {
  .actions-header__logo img {
    max-width: 200px;
  }
}

@media (max-width: 61.99875em) {
  .top-footer {
    padding: 30px 20px 30px 20px;
  }

  .item-footer__title {
    margin: 0px 0px 10px 0px;
  }

  .item-footer__item {
    margin: 0px 0px 0px 0px;
  }

  .item-footer__link {
    font-size: 16px;
  }

  .f-t {
    font-size: 24px;
  }
}

@media (max-width: 56.25em) {
  .bottom-catalog {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .bottom-catalog__filter {
    border-right: none;
    border-bottom: 1px solid #dbeded;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 40px;
            flex: 1 0 40px;
    margin: 20px 20% 20px 10px;
    max-width: 100%;
  }

  .bottom-catalog__wrapper {
    margin: 0px 0px 0px 0px;
  }
}

@media (max-width: 53.125em) {
  .top-footer__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .advantages__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}

@media (max-width: 48.5625em) {
  .actions-header__user .del {
    display: none;
  }

  .actions-header__basket-link .del {
    display: none;
  }
}

@media (max-width: 48.125em) {
  .bottom-header {
    display: block;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .header-special {
    margin: 10px 0px 0px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 47.99875em) {
  .bottom-header {
    padding: 10px 10px 10px 10px;
  }

  .header-categories__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .top-footer {
    padding: 20px 10px 20px 10px;
  }

  .item-footer__link {
    white-space: nowrap;
  }

  .swiper-slide__title {
    font-size: 26px;
    line-height: 36px;
  }

  .swiper-slide__btn {
    padding: 10px 30px;
    font-size: 18px;
  }

  .categories {
    padding: 30px 10px;
  }

  .categories__title {
    font-size: 30px;
    text-align: center;
  }

  .bottom-item-categories__title {
    margin: 18px 0px 0px 10px;
    font-size: 20px;
    line-height: 120%;
  }

  .suggestions__items {
    display: block;
  }

  .suggestions__item {
    margin: 0px auto 20px auto;
    max-width: 80%;
  }

  .suggestions__item:last-child {
    margin: 0px auto 0px auto;
    max-width: 80%;
  }

  .suggestions__info {
    font-size: 20px;
  }

  .brents__title {
    font-size: 30px;
    text-align: center;
  }

  .recommendations {
    padding: 10px 10px;
  }

  .recommendations__title {
    font-size: 30px;
    text-align: center;
    margin: 0px 0px 10px 0px;
  }

  .advantages {
    padding: 26px 10px 26px 10px;
  }

  .advantages__title {
    font-size: 30px;
  }

  .top-catalog__breadrams {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .top-catalog__filter {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .top-catalog__filter-item {
    margin: 10px 10px 0px 0px;
  }

  .top-catalog__filter-item:last-child {
    margin: 10px 0px 0px 0px;
  }

  .message {
    margin: 20px auto 20px auto;
  }

  .products__section-title {
    margin: 0px 0px 10px 0px;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    line-height: 110%;
  }

  .products__section {
    padding: 0px 10px;
  }

  .products__breadrams {
    padding: 0px 10px;
  }

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

  .top-products__title {
    text-align: center;
  }

  .bottom-products {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .bottom-products__sliders {
    max-width: 100%;
  }

  .bottom-products__content {
    width: 100%;
    text-align: center;
    padding: 20px 0px 0px 0px;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .item-bottom {
    margin: 20px auto 0 auto;
  }

  .question-bottom-products__item {
    max-width: 100%;
  }

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

  .basket__breadrams {
    padding: 0px 10px;
  }

  .registration {
    padding: 20px 10px 30px 10px;
  }
}

@media (max-width: 46.875em) {
  .data__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .item-t {
    margin: 10px 0px 0px 0px;
  }

  .item-i {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .item-i div {
    margin: 0px 0px 10px 0px;
  }
}

@media (max-width: 43.75em) {
  .actions-header {
    padding: 10px 10px;
  }

  .actions-header__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 43.125em) {
  .actions-header__search {
    margin: 0px 10px 0px 0px;
  }

  .actions-header__user {
    margin: 0px 10px 0px 10px;
  }

  .actions-header__user img {
    max-width: 30px;
  }

  .actions-header__basket img {
    max-width: 30px;
  }

  .top-footer__items {
    display: block;
    text-align: center;
  }

  .top-footer__item {
    margin: 0px 0px 10px 0px;
  }

  .item-footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .item-footer__item {
    margin: 0px 10px 0px 0px;
  }

  .item-footer__social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 41.25em) {
  .actions-header__user-link {
    margin: 10px 0px 0px 0px;
  }

  .actions-header__basket {
    margin: 10px 0px 0px 0px;
  }
}

@media (max-width: 39.375em) {
  .top-header__number {
    margin: 0px 16px 0px 0px;
    line-height: 140%;
  }

  .top-header__worktime {
    margin: 0px 16px 0px 0px;
    line-height: 140%;
  }

  .top-header__callback {
    margin: 0px 0px 0px 0px;
  }
}

@media (max-width: 38.75em) {
  .bottom-header {
    padding: 0px 10px 10px 10px;
  }

  .header-categories__item {
    margin: 10px 10px 0px 0px;
  }

  .header-categories__item:last-child {
    margin: 10px 0px 0px 0px;
  }
}

@media (max-width: 37.5em) {
  .top-header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .top-header__info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .top-header__city {
    display: none;
  }

  .menu__body {
    position: fixed;
    top: 90px;
    left: 0;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    width: 100%;
    height: 100%;
  }

  .bottom-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .bottom-footer__info {
    max-width: 100%;
    text-align: center;
  }

  .top-catalog__title {
    font-size: 20px;
  }

  .top-catalog__subtitle {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }

  .bottom-catalog__filter {
    margin: 20px 10px 20px 10px;
  }

  .basket__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    align-items: center;
  }

  .item-basket__info {
    margin: 0px 0px 10px 0px;
  }

  .item-basket__action {
    margin: 0px 0px 10px 0px;
  }
  
  .basket__item>div { display: inline-block;}
  
}

@media (max-width: 35.5em) {
  .actions-header__search {
    margin: 10px 0px 0px 0px;
  }
}

@media (max-width: 34.375em) {
  .addproduct {
    min-width: 100%;
  }

  .addproduct__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
    max-width: 14.375rem;
  }

  .addproduct__btn-one {
    margin: 0px 0px 20px 0px;
  }
}

@media (max-width: 31.25em) {
  .top-header {
    padding: 10px 10px;
  }

  .top-catalog__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

@media (max-width: 29.99875em) {
  .actions-header__logo img {
    max-width: 160px;
    margin: 0px 16px 0px 0px;
  }

  .authorization {
    margin: 20px auto 20px auto;
    padding: 20px 10px 20px 10px;
  }
}

@media (max-width: 28.125em) {
  .callback {
    min-width: 100%;
  }

  .top-header__worktime {
    margin: 0px 0px 0px 0px;
  }

  .top-header__callback {
    display: none;
  }
}

@media (any-hover: hover) {
  .select__option:hover {
    background: #d9d9d9;
  }

  .quantity__button:hover::before,
  .quantity__button:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
  }
}

.webp .footer{ background-image: url(../img/footer-bg.webp); }

/*
.webp .swiper-slide__wrapper{ background-image: url(../img/homeSlider/slide_bg.webp); }
*/

.webp .homeslider-next{ background-image: url(../img/homeSlider/slide_btn.webp); }

.webp .homeslider-prev{ background-image: url(../img/homeSlider/slide_btn.webp); }

.webp .i-b-one{ background-image: url(../img/categories/02.webp); }

.webp .i-b-two{ background-image: url(../img/categories/04.webp); }

.webp .i-b-three{ background-image: url(../img/categories/05.webp); }

.webp .i-l-one{ background-image: url(../img/categories/03.webp); }

.webp .i-l-two{ background-image: url(../img/categories/06.webp); }

.webp .i-l-three{ background-image: url(../img/categories/07.webp); }

.webp .i-l-four{ background-image: url(../img/categories/08.webp); }

.webp .i-l-five{ background-image: url(../img/categories/01.webp); }

.webp .i-l-six{ background-image: url(../img/categories/09.webp); }

.webp .advantages{ background-image: url(../img/advantages/bg.webp); }
.cart__image img{
-o-object-fit: contain;
object-fit: contain;
}