@charset "UTF-8";

html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}

.gray {
  background-color: var(--color-gray);
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-body);
  color: var(--color-font);
  line-height: 1.6;
  font-family: var(--theme-font);
  font-size: --var(--font-size);
}

.body {
  overflow: hidden;
  height: 100vh;
}

.body-bg * {
  background: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
}

::-webkit-scrollbar {
  width: 6px;
  background-color: var(--color-body);
  height: 6px;
}

textarea {
  font-family: var(--theme-font);
  color: var(--color-font);
}

textarea::placeholder {
  font-family: var(--theme-font);
  color: var(--color-font);
}

input {
  font-family: var(--theme-font);
  color: var(--color-font);
}

input::placeholder {
  font-family: var(--theme-font);
  color: var(--color-font);
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

button {
  cursor: pointer;
}

a {
  transition: all 0.1s ease;
  text-decoration: none;
}

.content {
  margin-top: 153px;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1426px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

.container-fluid {
  padding: 0 50px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.title {
  font-size: 28px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.basket__minus {
  color: var(--color-cart-font);
}

.btn {
  font-weight: 600;
  border: 2px solid var(--color-btn-border);
  display: inline-block;
  transition: all 0.1s linear 0s;
  padding: 16px 20px;
  height: 50px;
  line-height: 1;
  text-transform: uppercase;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 8px;
  font-family: var(--theme-font);
  background: none;
}

.btn--primary {
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn--primary:hover {
  background-color: var(--color-primary) !important;
  color: #fff;
}

.btn--empty {
  background: none;
  color: var(--color-btn-font-light);
}

.btn--empty:hover {
  background-color: var(--color-body);
  border-color: var(--color-font);
  color: var(--color-font);
}

.btn--full {
  background-color: var(--color-btn-bg);
  color: var(--color-btn-font);
}

.btn--full:hover {
  background: none;
  color: var(--color-font);
}

.btn--success {
  background-color: var(--color-success);
  border-color: var(--color-success);
  color: #fff;
}

.btn--gray {
  background: #f6f6f6;
  color: #222;
  border-color: #e1e1e1;
}

.btn--gray:hover {
  background-color: var(--color-body);
  border-color: var(--color-font);
  color: var(--color-font);
}

.btn-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-wrap__svg .cart__svg {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 12px;
  color: var(--color-primary);
  line-height: 1;
}

.btn-wrap__svg svg {
  height: 20px;
  margin-right: 10px;
}

.btn-wrap__svg svg path {
  fill: var(--color-primary);
}

.btn-wrap .cart__btn-wrapper {
  margin-right: 20px;
  width: 100px;
  height: 50px;
}

.btn-wrap .cart__items-wrap {
  margin-top: 0 !important;
  padding-bottom: 0 !important;
}

.grecaptcha-badge {
  display: none !important;
}

.ymaps-2-1-79-search__suggest {
  top: 0 !important;
  left: 0 !important;
  right: -2px !important;
  width: 100% !important;
  border: 1px solid var(--color-body) !important;
}

.ymaps-2-1-79-search__suggest {
  color: #222;
  border: 1px solid var(--color-body) !important;
  box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
}

.like-form {
  position: absolute;
  top: 40px;
  right: 40px;
  left: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.like-form__btn {
  border: none;
  background: none;
  margin-bottom: 10px;
}

.like-form__btn svg {
  width: 20px;
  height: 20px;
}

.like-form__btn svg path {
  fill: #929292;
}

.like-form__btn--active svg {
  width: 20px;
  height: 20px;
}

.like-form__btn--active svg path {
  fill: var(--color-primary);
}

.like-form:hover .like-form__popup {
  display: flex;
  align-items: center;
  justify-content: center;
}

.like-form__popup {
  text-align: center;
  display: none;
  right: 0;
  left: 0;
  line-height: 1;
  background-color: #fff;
  color: #222;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  width: 100%;
  font-size: 12px;
}

.like-form__popup svg {
  margin-left: 5px;
  width: 12px;
  height: 12px;
}

.like-form__popup svg path {
  fill: var(--color-primary);
}

.like-form__count {
  margin-left: 5px;
}

.mobile-show {
  display: none !important;
}

.cart-info {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  max-width: 350px;
  min-width: 350px;
}

.cart-info__add {
  padding: 10px 20px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.8431372549);
  color: #fff;
}

.cart-info__add + .cart-info__add {
  margin-top: 10px;
}

.cart-info__add-text {
  font-size: 12px;
  text-transform: uppercase;
}

@font-face {
  font-family: "Roboto";
  src: local("../fonts/roboto/Roboto Thin"), local("Roboto-Thin"), url("../fonts/roboto/Robotothin.woff2") format("woff2"), url("../fonts/roboto/Robotothin.woff") format("woff"), url("../fonts/roboto/Robotothin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: local("../fonts/roboto/Roboto Thin Italic"), local("Roboto-ThinItalic"), url("../fonts/roboto/Robotothinitalic.woff2") format("woff2"), url("../fonts/roboto/Robotothinitalic.woff") format("woff"), url("../fonts/roboto/Robotothinitalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: local("../fonts/roboto/Roboto Light"), local("Roboto-Light"), url("../fonts/roboto/Robotolight.woff2") format("woff2"), url("../fonts/roboto/Robotolight.woff") format("woff"), url("../fonts/roboto/Robotolight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: local("../fonts/roboto/Roboto Light Italic"), local("Roboto-LightItalic"), url("../fonts/roboto/Robotolightitalic.woff2") format("woff2"), url("../fonts/roboto/Robotolightitalic.woff") format("woff"), url("../fonts/roboto/Robotolightitalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}

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

@font-face {
  font-family: "Roboto";
  src: local("../fonts/roboto/Roboto Italic"), local("Roboto-Italic"), url("../fonts/roboto/Robotoitalic.woff2") format("woff2"), url("../fonts/roboto/Robotoitalic.woff") format("woff"), url("../fonts/roboto/Robotoitalic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: local("../fonts/roboto/Roboto Medium"), local("Roboto-Medium"), url("../fonts/roboto/Robotomedium.woff2") format("woff2"), url("../fonts/roboto/Robotomedium.woff") format("woff"), url("../fonts/roboto/Robotomedium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: local("../fonts/roboto/Roboto Medium Italic"), local("Roboto-MediumItalic"), url("../fonts/roboto/Robotomediumitalic.woff2") format("woff2"), url("../fonts/roboto/Robotomediumitalic.woff") format("woff"), url("../fonts/roboto/Robotomediumitalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: local("../fonts/roboto/Roboto Bold"), local("Roboto-Bold"), url("../fonts/roboto/Robotobold.woff2") format("woff2"), url("../fonts/roboto/Robotobold.woff") format("woff"), url("../fonts/roboto/Robotobold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: local("../fonts/roboto/Roboto Bold Italic"), local("Roboto-BoldItalic"), url("../fonts/roboto/Robotobolditalic.woff2") format("woff2"), url("../fonts/roboto/Robotobolditalic.woff") format("woff"), url("../fonts/roboto/Robotobolditalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: local("../fonts/roboto/Roboto Black"), local("Roboto-Black"), url("../fonts/roboto/Robotoblack.woff2") format("woff2"), url("../fonts/roboto/Robotoblack.woff") format("woff"), url("../fonts/roboto/Robotoblack.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: local("../fonts/roboto/Roboto Black Italic"), local("Roboto-BlackItalic"), url("../fonts/roboto/Robotoblackitalic.woff2") format("woff2"), url("../fonts/roboto/Robotoblackitalic.woff") format("woff"), url("../fonts/roboto/Robotoblackitalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

.error {
  width: 100%;
  padding: 80px 0;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 250px);
}

.login {
  padding: 80px 0;
  font-size: 26px;
  margin-bottom: 40px;
  text-align: center;
  color: #222;
}

.login label {
  font-size: 16px;
  width: 100%;
}

.login form {
  padding: 90px;
  border: 2px solid #eaedff;
  max-width: 700px;
  margin: 0 auto;
  background-color: #fff;
}

.login p {
  text-align: center;
}

.login input[type=text],
.login input[type=password],
.login input[type=email] {
  width: 100%;
  height: 60px;
  border: 2px solid #eaedff;
  color: #6f7172;
  padding: 0 20px;
  margin-bottom: 20px;
  outline: none;
}

.login button {
  width: 100%;
  margin-top: 40px;
}

.login .helptext {
  font-size: 12px;
}

.login ul {
  font-size: 12px;
  text-align: start;
}

.account {
  width: 100%;
  padding: 50px 0;
  min-height: calc(100vh - 370px);
}

.account__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.account__top-link {
  color: var(--color-font);
  display: inline-block;
}

.account__top-link:hover {
  color: var(--color-primary);
}

.account__top-link--active {
  color: var(--color-primary);
}

.account__top-link + .account__top-link {
  margin-left: 20px;
}

.account__top-user {
  font-size: 18px;
  font-weight: 700;
}

.account__data {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.account__content-welcome {
  text-align: center;
  margin-bottom: 30px;
}

.account__phone {
  font-size: 18px;
  font-weight: 700;
  padding: 10px 20px;
}

.account__logout {
  color: var(--color-danger);
  display: inline-block;
  padding: 10px 20px;
}

.account__form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.account__form p {
  display: flex;
  flex-direction: column;
}

.account__form input[type=text],
.account__form input[type=email],
.account__form input[type=password],
.account__form input[type=number] {
  width: 100%;
  height: 60px;
  border: 2px solid #eaedff;
  color: #6f7172;
  padding: 0 20px;
  margin-bottom: 20px;
  outline: none;
}

.account__title {
  font-size: 22px;
  margin-bottom: 15px;
}

.account__list {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.account__list input[type=text],
.account__list input[type=email],
.account__list input[type=password],
.account__list input[type=number] {
  width: 100%;
  height: 60px;
  border: 2px solid #eaedff;
  color: #6f7172;
  padding: 0 20px;
  margin-bottom: 20px;
  outline: none;
}

.account__list .blockLabels {
  padding: 20px;
  margin-top: 15px;
  border: 1px solid var(--color-primary);
}

.account__list .primary_email {
  display: flex;
}

.account__list .primary_email .unverified {
  color: var(--color-danger);
  margin-left: 20px;
}

.account__list .primary_email .verified {
  color: var(--color-success);
  margin-left: 20px;
}

.account__list .primary_email .primary {
  margin-left: 20px;
}

.account__list .buttonHolder {
  margin-top: 20px;
}

.account__list .buttonHolder button {
  background: none;
  border: none;
  padding: 8px 10px;
}

.account__list .buttonHolder button + button {
  margin-left: 10px;
}

.account__list .buttonHolder .secondaryAction {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.account__list .buttonHolder .primaryAction {
  background-color: var(--color-danger);
  color: #fff;
}

.account__change {
  color: var(--color-font);
  display: inline-block;
  margin-left: 20px;
  text-decoration: underline;
}

.account-order {
  width: 100%;
  border: 1px solid;
  padding: 20px;
  margin-bottom: 20px;
}

.account-order--new {
  border-color: var(--color-success);
}

.account-order--inwork {
  border-color: var(--color-warning);
}

.account-order--predone {
  border-color: var(--color-warning);
}

.account-order--done {
  border-color: var(--color-success);
}

.account-order--refused {
  border-color: var(--color-danger);
}

.account-order__data {
  width: 100%;
}

.account-order__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.account-order__id {
  font-size: 40px;
  line-height: 1;
  display: flex;
  flex-direction: column;
}

.account-order__id span {
  font-size: 13px;
  color: rgb(142, 142, 142);
}

.account-order__total {
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 700;
}

.account-order__list {
  display: flex;
  margin-right: -15px;
  margin-left: -15px;
  flex-wrap: wrap;
}

.account-order__item {
  display: flex;
  align-items: center;
  margin: 0 15px 15px;
  width: 100%;
  max-width: 316px;
}

.account-order__item p {
  white-space: nowrap;
}

.account-order__wrap {
  display: inline-block;
  margin-right: 15px;
  height: fit-content;
  width: 50px;
  height: 50px;
}

.account-order__title {
  color: var(--color-font);
  margin-right: 10px;
}

.account-order__quantity {
  margin-right: 15px;
}

.account-order__price {
  font-weight: 700;
}

.thank {
  padding: 80px 0;
  display: flex;
  align-items: center;
  text-align: center;
  min-height: calc(100vh - 250px);
}

.thank__refresh {
  width: 100%;
}

.thank__title {
  margin-bottom: 20px;
  font-size: 76px;
}

.thank__text {
  margin-bottom: 40px;
}

.thank__loader img {
  width: 30px;
  opacity: 50%;
}

.thank__try {
  width: 100%;
  justify-content: center;
  display: none;
}

.thank__try--active {
  display: flex;
}

.thank__try-href {
  display: inline-block;
  padding: 8px 18px;
  background-color: var(--color-success);
  color: #fff;
}

.thank__try-cancel {
  display: inline-block;
  padding: 8px 18px;
  margin-left: 10px;
  background-color: var(--color-danger);
  color: #fff;
}

.order-detail {
  width: 100%;
  padding: 40px 0;
}

.order-detail__inner {
  display: flex;
}

.order-detail__form {
  margin-right: 20px;
  width: 49%;
}

.order-detail label {
  color: #6f7172;
  margin-bottom: 5px;
}

.order-detail__input {
  background: #ffffff;
  border: 1px solid var(--color-cart-border);
  border-radius: 0;
  height: 45px;
  padding: 0 0 0 10px;
  width: 100%;
  outline: none;
  box-shadow: none;
  transition: all 0.5s ease;
  appearance: none;
  -moz-appearance: textfield;
  margin-bottom: 10px;
}

.order-detail__input:focus {
  border-color: var(--color-font);
}

.order-detail__data {
  width: 49%;
  padding: 30px 40px 45px;
  border: 3px solid #eaedff;
}

.order-detail__data ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 40px;
}

.order-detail__data li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eaedff;
  color: #6f7172;
  font-size: 14px;
  padding: 15px 0;
}

.order-detail__total {
  color: #222;
  font-size: 18px;
  font-weight: 500;
}

.cat-desc {
  width: 100%;
  margin: 0 auto;
  padding: 80px 0;
}

.search {
  position: fixed;
  top: -150%;
  right: 0;
  height: 100vh;
  left: 0;
  background-color: var(--color-search);
  z-index: 9999999;
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.51, 0.92, 0.24, 1.15);
  color: var(--color-search-font);
}

.search svg {
  width: 20px;
}

.search svg path {
  stroke: var(--color-search-font);
}

.search--active {
  top: 0;
}

.search--active .search__closer {
  top: 50px;
}

.search__closer {
  position: fixed;
  top: -100%;
  right: 50px;
  transition: all 0.4s cubic-bezier(0.51, 0.92, 0.24, 1.15);
}

.search__closer svg {
  width: 20px;
}

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

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

.search__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: none;
  border: none;
}

.search__input {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding-left: 50px;
  padding-right: 20px;
  border: none;
  color: var(--color-search-font);
  border-bottom: 1px solid var(--color-search-font);
  outline: none;
  background: none;
  font-size: 16px;
}

.search__input::placeholder {
  font-size: 16px;
  color: var(--color-search-font);
}

.popup {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
  display: none;
}

.popup--active {
  display: flex;
}

.popup__overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 100000;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup__inner {
  width: 100%;
  max-width: 550px;
  position: relative;
  z-index: 100001;
  padding: 40px 80px;
  background: var(--color-body);
}

.popup__title {
  margin-bottom: 20px;
  font-size: 24px;
}

.popup__closer {
  position: absolute;
  top: 20px;
  right: 20px;
}

.popup__closer svg path {
  stroke: var(--color-font);
}

.popup__form {
  display: flex;
  flex-direction: column;
}

.popup__input {
  width: 100%;
  border: 2px solid #eaedff;
  background: var(--color-body);
  color: var(--color-font);
  padding: 0 20px;
  margin-bottom: 20px;
  outline: none;
  resize: none;
}

.popup__input::placeholder {
  font-family: "Circe", sans-serif;
}

.popup input {
  height: 60px;
}

.popup textarea {
  padding: 20px;
}

.pagination {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  display: flex;
  align-items: center;
}

.pagination .active {
  width: 45px;
  height: 45px;
  line-height: 42px;
  text-align: center;
  border: 2px solid #ebebeb;
  font-size: 12px;
  font-weight: 500;
  align-items: center;
  justify-content: center;
}

.pagination svg {
  height: 20px;
}

.pagination svg path {
  fill: #a9a9a9;
}

.pagination li {
  display: inline-block;
}

.pagination li a {
  color: var(--color-font);
  display: flex;
  width: 45px;
  height: 45px;
  line-height: 42px;
  text-align: center;
  border: 2px solid #ebebeb;
  font-size: 12px;
  font-weight: 500;
  align-items: center;
  justify-content: center;
}

.pagination li + li {
  margin-left: 15px;
}

.pagination .active a {
  border-color: #000;
}

.pagination .dots {
  border: none;
}

.user-login {
  padding: 180px 0;
}

.user-login__inner {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.user-login__form {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.user-login .btn {
  width: 100%;
}

.user-login__title {
  text-align: center;
}

.user-login__wrap {
  display: flex;
}

.user-login__input {
  cursor: pointer;
  height: 46px;
  padding: 0 15px;
  width: 100%;
  align-items: center;
  justify-content: center;
  border: 1px solid #eaedff;
  background-color: var(--color-body);
  color: var(--color-font);
  white-space: nowrap;
  transition: all 0.5s ease;
  outline: none;
}

.user-login__btn {
  cursor: pointer;
  padding: 0 15px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid #eaedff;
  background-color: var(--color-body);
  color: var(--color-font);
  white-space: nowrap;
  transition: all 0.5s ease;
  display: none;
}

.user-login__sms {
  display: none;
}

.user-login__sms-inner {
  display: flex;
}

.user-login__input-sms-btn {
  height: 46px;
  padding: 0 15px;
  border: 1px solid #eaedff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.author {
  background-color: var(--color-bg-dark);
  color: #fff;
  text-align: center;
}

.author__inner {
  text-align: center;
  padding: 20px 0;
}

.author__inner a {
  text-decoration: underline;
  color: #fff;
  font-weight: 700;
}

.cookie {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 15px;
  border-radius: 15px;
  width: 100%;
  max-width: 850px;
  z-index: 999;
  font-size: 12px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}

.cookie__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie__text a {
  color: var(--color-danger);
}

.cookie__btn {
  text-transform: uppercase;
  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;
  line-height: 1;
  font-weight: 700;
  padding: 10px 15px;
  border-radius: 20px;
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 10px;
}

.loyalty-card {
  margin: 0 auto;
  width: 100%;
  max-width: 550px;
  margin-top: 80px;
  padding: 40px;
  border-radius: 50px;
  border: 1px solid var(--color-primary);
}

.loyalty-card__item {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

#inputResult h4 {
  font-size: 26px;
}

#inputResult .mb-4 {
  margin-bottom: 40px;
}

#inputResult h5 {
  margin-bottom: 20px;
  font-size: 20px;
}

#inputResult .purpose-table,
#inputResult .purpose-table th,
#inputResult .purpose-table td {
  border: 1px solid #d8d8d8;
  font-size: inherit;
  line-height: inherit;
}

#inputResult .purpose-table th,
#inputResult .purpose-table td {
  vertical-align: top;
  padding: 0.5em 0.75em;
}

#inputResult .purpose-table th,
#inputResult .purpose-table td {
  vertical-align: top;
  padding: 0.5em 0.75em;
}

#inputResult .purpose-table th {
  width: 200px;
  text-align: left;
  font-weight: 500;
}

#inputResult .purpose-table,
#inputResult .purpose-table th,
#inputResult .purpose-table td {
  border: 1px solid #d8d8d8;
  font-size: inherit;
  line-height: inherit;
}

#inputResult .link.mark {
  border-bottom: 1.5px dotted #fa8669;
}

#inputResult .link {
  cursor: pointer;
}

#inputResult .mark,
#inputResult mark {
  display: inline;
  padding: 0.05em;
  background-color: var(--color-font);
  color: var(--color-body);
  word-wrap: break-word;
}

.about {
  padding: 80px 0;
}

.blocked {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.blocked a {
  font-weight: 700;
  text-decoration: underline;
  color: #333;
}

.blocked__inner {
  position: relative;
  z-index: 1999999;
}

.blocked__img {
  width: 100%;
  max-width: 550px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 20%;
}

.blocked__title {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}

.delivery-popup {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 15px;
  display: none;
}

.delivery-popup--active {
  display: flex;
}

.delivery-popup__overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.5);
}

.delivery-popup__inner {
  position: relative;
  z-index: 10001;
  color: #222;
  background-color: #fff;
  width: 100%;
  max-width: 650px;
  padding: 40px;
  border-radius: 18px;
}

.delivery-popup__title {
  font-size: 28px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}

.delivery-popup__text span {
  font-weight: 700;
}

.delivery-popup__btn {
  width: 100%;
  display: flex;
  padding: 10px;
  background-color: var(--color-primary);
  border-radius: 8px;
  color: #fff;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin-top: 40px;
}

.setup-address {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.setup-address--active {
  display: flex;
}

.setup-address__overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10000;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
}

.setup-address__inner {
  width: 100%;
  max-width: 750px;
  position: relative;
  z-index: 10001;
  padding: 20px;
  border-radius: 8px;
  background-color: #fff;
}

.setup-address__close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.setup-address .btn {
  width: 100%;
}

.setup-address__title {
  margin-bottom: 20px;
}

.setup-address #map {
  border-radius: 8px;
  overflow: hidden;
}

.setup-address #set_address {
  padding: 20px;
  width: 100%;
}

.setup-address .address-error {
  font-size: 12px;
  margin-bottom: 10px;
  color: red;
  margin-top: -10px;
  display: none;
}

.setup-address .suggest-error {
  border-color: red;
}

.minimum-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background-color: var(--color-danger);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}

.minimum-bar__bar {
  position: absolute;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1001;
  transition: all 0.3s ease-out;
}

.minimum-bar__inner {
  padding: 10px 0;
  position: relative;
  z-index: 1002;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.minimum-bar__summ {
  font-size: 24px;
  font-weight: 700;
}

.delivery-blocked {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000000;
  font-size: 18px;
}

.delivery-blocked__overflow {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000001;
}

.delivery-blocked__inner {
  padding: 40px 60px;
  width: 100%;
  max-width: 550px;
  background-color: #fff;
  border-radius: 8px;
  position: relative;
  z-index: 10000002;
}

.taplink {
  width: 100%;
  background-color: var(--color-body);
  margin-top: -60px;
}

.taplink__inner {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 15px;
}

.taplink__top {
  text-align: center;
  margin-bottom: 40px;
}

.taplink__logo {
  width: 100%;
  max-height: 140px;
  object-fit: contain;
}

.taplink__title {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
}

.taplink__text {
  font-size: 16px;
}

.taplink__item {
  box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
  display: block;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  border: 1px solid #8d8d8d;
  border-radius: 50px;
  color: var(--color-font);
  margin-bottom: 20px;
  background-color: #fff;
}

.taplink__item p:first-child {
  font-size: 16px;
  font-weight: 700;
}

.taplink__item p:last-child {
  font-size: 12px;
  font-weight: 400;
}

.container {
  max-width: 1200px !important;
}

.qr-areas__item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 15px;
  border-radius: 20px;
  border: 1px solid #e1e1e1;
  margin-bottom: 20px;
}

.qr-areas__item a {
  color: #333;
  font-weight: 700;
  text-decoration: underline;
}

.qr-areas__tables {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: space-between;
  margin-bottom: 40px;
  grid-gap: 20px;
}

.qr-areas__table {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #e1e1e1;
  display: flex;
  flex-direction: column;
}

.qr-areas__table a {
  color: #333;
  font-weight: 700;
  text-decoration: underline;
}

.qr-header_call {
  display: flex;
  align-items: center;
  color: #333;
  font-weight: 700;
  text-decoration: dotted underline;
}

.qr-header_call svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.qr-header__inner {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qr-header__logo {
  height: 50px;
}

.qr-products__top {
  display: flex;
  flex-wrap: wrap;
}

.qr-products__cat {
  display: block;
  font-size: 14px;
  font-family: var(--rd-font-family-regular);
  padding: 5px 14px;
  margin: 4px 8px 8px 2px;
  border-radius: 16px;
  -webkit-box-shadow: 0 0 2px 1px #d4d4d4;
  box-shadow: 0 0 2px 1px #d4d4d4;
  cursor: pointer;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
}

.qr-products__cat--active {
  box-shadow: 0 0 0 2px #000;
}

.qr-products__list {
  padding: 40px 0;
}

.qr-products__title {
  font-size: 24px;
  margin-bottom: 30px;
}

.qr-products__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-bottom: 40px;
}

.qr-products__item {
  display: flex;
  justify-content: space-between;
  min-width: 290px;
  min-height: 228px;
  margin-bottom: 2%;
  border-radius: 16px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.qr-products__item-left {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 340px;
}

.qr-products__item-title {
  font-size: 20px;
  letter-spacing: 0.7px;
}

.qr-products__item-desc {
  margin: 15px 0;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-overflow: ellipsis;
  overflow: hidden;
  word-wrap: normal;
}

.qr-products__item-bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.qr-products__price {
  font-weight: 700;
}

.qr-products__btn {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: inline-block;
  padding: 0;
  margin: 0;
  font-size: 22px;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-products__thumb {
  width: 235px;
  height: 100%;
  object-fit: cover;
}

.cart-item {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  display: flex;
  gap: 5px;
}

.cart-item h4 {
  margin-bottom: 10px;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 5px;
}

.quantity {
  width: 20px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  border: none;
}

.decrease-qty,
.increase-qty {
  background-color: #fff;
  color: #333;
  border: 1px solid #333;
  border-radius: 8px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: inline-block;
  padding: 0;
  margin: 0;
  font-size: 22px;
  outline: none;
}

.cart-modifier {
  font-size: 0.9em;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.remove-modifier,
.remove-item {
  cursor: pointer;
  color: #ff0000;
}

#modifiers-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 8px;
  max-width: 400px;
}

.confirm-modifiers {
  display: flex;
  width: 100%;
  margin-top: 50px;
  justify-content: space-between;
}

.confirm-modifiers__add {
  border: none;
  display: flex;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  background-color: #000;
  padding: 8px 20px;
  border-radius: 8px;
}

.confirm-modifiers__close {
  border: none;
  display: flex;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  background-color: #ac0000;
  padding: 8px 20px;
  border-radius: 8px;
}

.option-group h4 {
  margin-bottom: 5px;
}

.option-group label {
  white-space: nowrap;
}

.option-group + .option-group {
  margin-top: 10px;
}

.modifiers-list {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qr-cart {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  padding: 40px;
  width: 100%;
  display: none;
  align-items: center;
  flex-direction: column;
  overflow: scroll;
}

.qr-cart .remove-item {
  background: none;
  border: none;
}

.qr-cart .remove-item svg {
  width: 20px;
  height: 20px;
}

.qr-cart .cart-item__image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-right: 15px;
}

.qr-cart .cart-item__right {
  width: 100%;
}

.qr-cart .cart-thumb {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
  overflow: hidden;
}

.qr-cart--active {
  display: flex;
}

.qr-cart__inner {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}

.qr-cart__inner h3 {
  text-align: center;
  margin-bottom: 20px;
}

.qr-cart__wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.qr-cart .cart-item__modifiers {
  display: grid;
  margin-bottom: 10px;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

.qr-cart .cart-item__modifiers .cart-modifier {
  white-space: nowrap;
}

.qr-cart__closer {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.qr-cart__total-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  align-items: center;
}

.qr-cart__total {
  font-weight: 700;
}

.qr-cart .cart__empty-text {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
}

.qr-cart__clear {
  display: flex;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  background-color: #000;
  padding: 8px 20px;
  border-radius: 8px;
}

.qr-cart__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.cart-btn__total {
  display: flex;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  background-color: #000;
  padding: 8px 20px;
  border-radius: 8px;
  line-height: 1;
}

.cart #gifts {
  display: flex;
  align-items: flex-start;
}

.cart #gifts img {
  width: 100px;
  max-width: 100px;
  margin-right: 0;
}

.cart #gifts .cart__item-info {
  min-width: fit-content;
  max-width: 100px;
  text-align: center;
}

.cart #gifts .cart__item + .cart__item {
  margin-left: 10px;
}

.cart #giftsTitle {
  margin-bottom: 0;
}

.cart--active {
  display: block;
}

.cart--active .cart__inner {
  right: 0;
}

.cart--active .cart__owerlay {
  display: block;
}

.cart__closer {
  cursor: pointer;
}

.cart__inner {
  transition: all 0.3s ease;
  width: 100%;
  max-width: 800px;
  padding: 0;
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  background-color: #E8E9EB;
  z-index: 10000;
  overflow-y: scroll;
  height: 100svh;
  justify-content: space-between;
}

.cart__owerlay {
  position: fixed;
  background: rgba(15, 32, 52, 0.7);
  backdrop-filter: blur(3px);
  left: 0;
  right: 0;
  width: 100vw;
  top: 0;
  bottom: 0;
  transition: all 0.4s;
  cursor: pointer;
  z-index: 9999;
  display: none;
}

.cart__top {
  width: 100%;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #767E91;
  padding: 50px 50px 20px 50px;
  margin-bottom: 20px;
}

.cart__title {
  font-size: 24px;
  font-weight: 500;
  color: #0F2034;
}

.cart__empty {
  height: calc(100svh - 280px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #0F2034;
  font-size: 18px;
  font-weight: 700;
}

.cart__empty svg {
  width: 80px;
  height: 80px;
  margin-bottom: 40px;
}

.cart__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px;
}

.cart__items {
  list-style: none;
  padding: 0 20px 0 0;
  margin: 0;
}

.cart__items img {
  border-radius: 6px;
  overflow: hidden;
  margin-right: 10px;
}

.cart__items li {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart__left-img {
  max-height: 80px;
  overflow: hidden;
  border-radius: 5px;
  margin-right: 20px;
}

.cart__left-wrap {
  display: flex;
  align-items: center;
}

.cart__left-wrap img {
  display: flex;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  object-fit: contain;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  object-fit: cover;
  width: auto !important;
  height: auto !important;
  max-width: 80px;
  /* или другой разумный предел */
  max-height: 80px;
  max-height: fit-content;
}

.cart__left {
  display: flex;
  align-items: center;
}

.cart__item-info {
  min-width: 250px;
  max-width: 250px;
}

.cart__item-name {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #0F2034;
  margin-bottom: 10px;
  max-width: 250px;
  display: block;
}

.cart__summ {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #0F2034;
  min-width: 60px;
  text-align: end;
}

.cart__remove {
  cursor: pointer;
  border: none;
  background: none;
}

.cart__remove svg {
  width: 20px;
  height: 20px;
}

.cart__btn-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 116px;
  color: #0F2034;
}

.cart__items-wrap {
  display: flex;
  align-items: center;
}

.cart__plusminus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #CCD1DA;
  box-shadow: inset 3px 3px 5px rgba(13, 39, 80, 0.16);
  color: #767E91;
  font-size: 18px;
  font-weight: 700;
}

.cart__plusminus:hover {
  background: var(--color-primary);
  color: #fff;
}

.cart__bottom {
  background-color: #E8E9EB;
  border-top: 1px solid #767E91;
  padding-top: 35px;
  bottom: 0;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 35px;
}

.cart__total {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cart__total-title {
  margin-right: 10px;
  font-weight: 500;
  font-size: 14px;
  color: #767E91;
}

.cart__total-price {
  font-weight: 700;
  font-size: 24px;
  color: #0F2034;
}

.cart__btn {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.cart__btn-cart {
  margin-right: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-primary);
  width: 50px;
  height: 50px;
  color: #fff;
}

.cart__btn-cart svg {
  width: 20px;
  height: 20px;
}

.cart__btn-cart svg path {
  fill: #fff;
}

.cart__btn-num {
  font-weight: 700;
  font-size: 12px;
}

.cart__btn-summ {
  font-weight: 700;
  font-size: 18px;
}

.cart__btn-row {
  color: var(--color-header-font);
}

.cart__btn-text {
  white-space: nowrap;
}

.cart__item-options {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  font-size: 10px;
  color: #0F2034;
  line-height: 1;
}

.cart__item-options .deactivated {
  cursor: default !important;
}

.cart__item-option {
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 10px;
  display: block;
  padding: 5px 10px;
  border-radius: 30px;
  background: #CCD1DA;
  box-shadow: inset 3px 3px 5px rgba(13, 39, 80, 0.16);
  color: #0F2034;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart__option-remove {
  cursor: pointer;
  margin-left: 5px;
  height: 10px;
  color: rgb(233, 12, 78);
}

.cart__option-remove svg {
  width: 10px;
  height: 10px;
}

.cart__option-remove svg path {
  stroke: rgb(233, 12, 78);
}

.cart__input {
  position: relative;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #D5DBE7;
  border-radius: 5px;
  height: 45px;
  padding-left: 15px;
  outline: none;
  font-weight: 500;
  font-size: 14px;
  color: #0F2034;
  margin-bottom: 15px;
}

.cart__input::placeholder {
  color: #767E91;
}

.cart__input-address-wrap {
  position: relative;
}

.cart .btn--primary {
  border: 1px solid rgb(233, 12, 78);
  color: rgb(233, 12, 78);
}

.cart .btn--primary:hover {
  background-color: rgb(233, 12, 78) !important;
  color: #fff;
}

.cart__related-row {
  display: none;
}

.cart__related-title {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 14px;
  color: #0F2034;
}

.cart__related {
  display: flex;
  width: 100%;
  padding: 0 0 25px 0;
  margin: 0;
  list-style: none;
  font-size: 12px;
  overflow-x: scroll;
}

.cart__related::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
}

.cart__related::-webkit-scrollbar {
  width: 0px;
  height: 5px;
  background-color: var(--color-body);
}

.cart__related img {
  border-radius: 6px;
  overflow: hidden;
  margin-right: 10px;
  object-fit: cover;
}

.cart__related li {
  display: flex;
}

.cart__related li + li {
  margin-left: 30px;
}

.cart__related-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 50px;
}

.cart__related-plusminus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  max-width: 15px;
  max-height: 15px;
  height: 15px;
  border-radius: 50%;
  border: none;
  background: #CCD1DA;
  box-shadow: inset 3px 3px 5px rgba(13, 39, 80, 0.16);
  color: #767E91;
  font-size: 11px;
  font-weight: 400;
}

.cart__related-plusminus:hover {
  background: var(--color-primary);
  color: #fff;
}

.coupon-form {
  display: flex;
  margin-bottom: 30px;
}

.coupon-form__input {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #D5DBE7;
  border-radius: 5px;
  height: 45px;
  padding-left: 15px;
  outline: none;
  font-weight: 500;
  font-size: 14px;
  color: #0F2034;
  margin-right: 10px;
}

.coupon-form__input::placeholder {
  color: #767E91;
}

.coupon-form__btn {
  border: 1px solid rgb(233, 12, 78);
  color: rgb(233, 12, 78);
  border-radius: 5px;
  padding: 0 20px;
  height: 45px;
  font-weight: 700;
  font-size: 14px;
  line-height: 45px;
  text-align: center;
}

.check-delivery {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.check-delivery__overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10000;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
}

.check-delivery__inner {
  position: relative;
  z-index: 10001;
  padding: 40px;
  border-radius: 8px;
  background-color: #fff;
}

.check-delivery__title {
  font-size: 24px;
  color: #222;
  margin-bottom: 20px;
}

.check-delivery__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.check-delivery__item {
  cursor: pointer;
  padding: 40px;
  box-shadow: 7px 7px 20px 5px rgba(208, 205, 221, 0.5), -10px -10px 30px rgba(255, 255, 255, 0.15);
  text-align: center;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.check-delivery__item:hover {
  box-shadow: 0 10px 10px rgba(208, 205, 221, 0.5), 0 0 20px 10px rgba(150, 147, 160, 0.3), -10px -10px 30px rgba(255, 255, 255, 0.15);
}

.check-delivery__item + .check-delivery__item {
  margin-left: 20px;
}

.check-delivery__item-title {
  color: #222;
}

.check-delivery__img {
  width: 150px;
}

.app-menu {
  width: 100%;
  margin-bottom: 20px;
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  overflow-x: scroll;
}

.app-menu::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
}

.app-menu::-webkit-scrollbar {
  width: 0px;
  height: 0;
  background-color: var(--color-body);
}

.app-menu .header-bottom__dropdown-item {
  border-radius: 15px;
  width: fit-content;
  text-align: center;
}

.app-menu .header-bottom__link {
  padding: 6px 15px !important;
  border-radius: 15px;
  text-transform: capitalize !important;
  white-space: nowrap;
  font-weight: 700;
  color: #b9b9b9;
  position: relative;
}

.app-menu .header-bottom__link--active {
  color: var(--color-primary);
}

.app-menu .header-bottom__link:hover::before {
  background-color: var(--color-primary);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 15px;
  z-index: 0;
  opacity: 0.1;
}

.app-menu .header-bottom__dropdown-item + .header-bottom__dropdown-item {
  margin-left: 10px;
}

.header {
  box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
  align-items: center;
  position: absolute;
  z-index: 999;
  right: 0;
  left: 0;
  background-color: var(--color-header);
  top: 0;
  transition: all 0.1s ease;
  color: var(--color-header-font);
}

.header--hide {
  opacity: 0;
  top: -150px;
}

.header--fixed {
  position: fixed;
  opacity: 100%;
  top: 0;
}

.header--fixed .header-bottom__link {
  padding: 8px;
}

.header--fixed .header__logo {
  display: none;
}

.header--fixed .header__logo-wrap {
  display: none;
}

.header--fixed .header__contacts-wrapper-inner {
  display: none;
}

.header--fixed .header__top {
  padding: 8px 0;
}

.header--image-bg .header__wrapper {
  background-color: transparent;
}

.header__wrapper {
  background-color: var(--color-header);
}

.header__top {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  align-items: center;
}

.header__left {
  display: flex;
  align-items: center;
}

.header__logo {
  max-height: var(--logo-height);
  min-height: var(--logo-height);
  object-fit: contain;
  margin-right: 55px;
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

.header__subdomain-wrap {
  position: relative;
  margin-right: 20px;
}

.header__subdomain-wrap svg {
  margin-left: 5px;
}

.header__subdomain-wrap svg path {
  fill: var(--color-primary);
}

.header__subdomain-check {
  cursor: pointer;
  display: flex;
  font-weight: 500;
  align-items: center;
}

.header__subdomain {
  color: var(--color-primary);
  font-weight: 500;
  margin-left: 10px;
}

.header__subdomain-drop {
  border-radius: 8px;
  position: absolute;
  background-color: #fff;
  z-index: 99999999;
  top: 30px;
  width: 100%;
  min-width: fit-content;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: none;
  white-space: nowrap;
}

.header__subdomain-drop--active {
  display: block;
}

.header__subdomain-item {
  padding: 15px 40px;
  color: var(--color-font);
  display: block;
}

.header__logo-wrap {
  display: inline-block;
  max-height: 60px;
}

.header__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.header__item {
  display: inline-block;
  position: relative;
}

.header__item + .header__item {
  margin-left: 33px;
}

.header__link {
  text-transform: uppercase;
  color: var(--color-header-font);
  font-size: 13px;
  font-weight: 400;
}

.header__dropdown {
  position: absolute;
  display: none;
  padding: 0;
  margin: 0;
  list-style: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
  background-color: #fff;
  top: 150px;
  opacity: 0;
  z-index: 0;
}

.header__dropdown--active {
  display: block;
  top: 54px;
  opacity: 100%;
  z-index: 999;
}

.header__dropdown-item {
  white-space: nowrap;
  min-width: 250px;
}

.header__dropdown-link {
  color: var(--color-font);
  transition: all 0.5s ease;
  display: inline-block;
  padding: 8px 20px;
  width: 100%;
  min-width: 250px;
  white-space: normal;
}

.header__dropdown-link:hover {
  color: var(--color-primary);
}

.header__right {
  display: flex;
  align-items: center;
}

.header__sign {
  position: relative;
  height: fit-content;
  height: 26px;
  margin-left: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.header__sign svg {
  height: 22px;
}

.header__sign svg path {
  fill: var(--color-header-font);
}

.header__login {
  color: var(--color-font);
}

.header__signup {
  color: var(--color-font);
}

.header__search {
  line-height: 1;
  margin-left: 20px;
  display: flex;
  align-self: center;
}

.header__search svg {
  width: 20px;
}

.header__search svg path {
  stroke: var(--color-header-font);
}

.header__cart {
  position: relative;
  color: var(--color-header-font);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 23px;
}

.header__cart svg {
  width: 26px;
  height: 26px;
}

.header__cart svg path {
  fill: var(--color-header-font);
}

.header .header__cart-wrap {
  position: relative;
}

.header .header__cart-wrap:hover .header__cart-no-active-popup {
  display: block;
}

.header__cart-no-active-popup {
  position: absolute;
  top: 30px;
  white-space: nowrap;
  z-index: 999;
  right: 0;
  background-color: #fff;
  color: #333;
  line-height: 1;
  padding: 20px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  display: none;
}

.header__cart-price {
  margin-left: 5px;
  line-height: 1;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.header__cart-coutn {
  right: -15px;
  position: absolute;
  font-size: 11px;
  color: #fff;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  background: var(--color-primary);
  border-radius: 50%;
  line-height: 20px;
  text-align: center;
  top: 0;
}

.header__work-time {
  margin-right: 20px;
  margin-left: 20px;
  line-height: 1.3;
}

.header__work-title {
  font-size: 14px;
}

.header__work-data {
  font-weight: 700;
  text-align: center;
}

.header__contacts-wrapper-inner {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

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

.header__contacts-link-wrap {
  display: flex;
  align-items: center;
}

.header__contacts-link-wrap svg {
  margin-right: 5px;
}

.header__contacts-link-wrap svg path {
  fill: var(--color-header-font);
}

.header__contacts-link {
  font-size: 14px;
  display: inline-block;
  margin-right: 20px;
  color: var(--color-header-font);
}

.header__contacts-link:hover {
  color: var(--color-primary);
}

.header__contacts-phone {
  font-weight: 700;
  display: flex;
  align-items: center;
  color: var(--color-header-font);
}

.header__contacts-phone svg {
  margin-right: 5px;
}

.header__contacts-phone svg path {
  fill: var(--color-header-font);
}

.header__contacts-soc {
  height: fit-content;
  display: inline-block;
  height: 26px;
}

.header__contacts-soc svg {
  width: 26px;
  height: 26px;
}

.header__contacts-soc svg path {
  fill: var(--color-header-font);
}

.header__contacts-soc:last-child {
  margin-right: 20px;
}

.header .header__contacts-soc + .header__contacts-soc {
  margin-left: 10px;
}

.header__contacts-btn {
  font-weight: 600;
  border: 2px solid var(--color-header-font);
  display: inline-block;
  transition: all 0.3s linear 0s;
  padding: 8px 15px;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--color-header-font);
}

.header__contacts-btn:hover {
  background-color: var(--color-body);
  border-color: var(--color-font);
  color: var(--color-font);
}

.toggle-menu {
  z-index: 9999;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  display: none;
  position: relative;
}

.toggle-section {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.menu-btn {
  display: flex;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: relative;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 50%;
  margin-top: -1px;
  left: 50%;
  margin-left: -10px;
  width: 20px;
  height: 2px;
  border-radius: 30px;
  background-color: var(--color-header-font);
}

.menu-btn span::after {
  width: 20px;
}

.menu-btn span::before,
.menu-btn span::after {
  content: "";
  display: block;
  transition: 0.2s;
}

.menu-btn span::before {
  transform: translateY(-5px);
}

.menu-btn span::after {
  transform: translateY(5px);
}

.menu-btn_active span:before {
  transform: rotate(-45deg);
}

.menu-btn_active span {
  height: 0;
}

.menu-btn_active span:after {
  transform: rotate(45deg);
  width: 20px;
}

.start {
  max-height: var(--slider-height);
  position: relative;
}

.start__inner {
  display: flex;
}

.sidebar {
  margin-right: 20px;
}

.sidebar__item {
  display: block;
  color: var(--color-font);
  padding: 20px;
  white-space: nowrap;
}

.sl {
  position: relative;
  font-family: var(--slider-font);
}

.sl--min {
  padding-top: 20px;
}

.sl--min .sl__item {
  border-radius: 8px;
  overflow: hidden;
}

.sl__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: var(--slider-height);
  position: relative;
  color: var(--color-font);
  overflow: hidden;
}

.sl__item-link {
  display: flex;
  width: 100%;
  height: 100%;
}

.sl__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
}

.sl__img-mobile {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none !important;
}

.sl__video {
  width: 100%;
  height: 598px;
  object-fit: cover;
}

.sl__wrap {
  position: absolute;
  width: 100%;
  z-index: 2;
  top: 55%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
  max-width: var(--slider-text-width);
  line-height: 1;
  height: fit-content;
}

.sl__wrap--bg {
  padding: 20px 40px;
}

.sl__title {
  font-size: var(--slider-title-desctop);
  margin-bottom: 10px;
}

.sl__text {
  margin-bottom: 10px;
  font-size: 34px;
  width: 100%;
}

.sl .owl-prev {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  background-color: var(--color-body) !important;
  font-size: 24px;
  transform: translateY(-50%);
}

.sl .owl-next {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  background-color: var(--color-body) !important;
  font-size: 24px;
  transform: translateY(-50%);
}

.sl .owl-dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.sl .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  display: block;
}

.sl .owl-dots .owl-dot + .owl-dot {
  margin-left: 5px;
}

.sl .owl-dots .active {
  background-color: var(--color-primary);
}

.block {
  padding: 40px 0;
}

.block__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.block__justify {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.block__seeall {
  color: var(--color-primary);
  font-size: 12px;
  text-transform: uppercase;
}

.block__grid-item {
  width: 163px;
  height: 163px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block__grid-img {
  width: 100%;
}

.block__grid-text {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
}

.block__center {
  text-align: center;
  margin-top: 20px;
}

.block__none {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 250px);
  text-transform: uppercase;
  font-size: 36px;
}

.row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer {
  background-color: var(--color-footer);
  padding: 70px 0;
  color: var(--color-footer-font);
}

.footer__address-item {
  margin-bottom: 25px;
}

.footer__contact {
  display: flex;
  align-items: center;
  color: #fff;
}

.footer__contact svg {
  margin-right: 10px;
  width: 15px;
  height: 15px;
  fill: #fff;
}

.footer .footer__phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer .footer__phone-wrap a {
  color: var(--color-footer-font);
  margin-bottom: 5px;
}

.footer .footer__phone-wrap svg {
  display: none;
}

.footer__col {
  columns: 2;
}

.footer__payments {
  margin-top: 50px;
  height: 30px;
}

.footer__payments img {
  height: 100%;
}

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

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: var(--color-footer-font);
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: var(--color-primary);
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: var(--color-footer-font);
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.1s ease;
}

.footer-col ul li a:hover {
  color: var(--color-footer-font);
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: var(--color-footer-font);
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: var(--color-footer-font);
}

/*responsive*/

.breadcrumbs {
  width: 100%;
  margin: 0 auto;
  padding: 25px 0 15px;
}

.breadcrumbs--reviews {
  background-color: #fff;
}

.breadcrumbs--gray {
  background-color: var(--color-body);
}

.breadcrumbs__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs__item {
  display: inline-block;
  position: relative;
  font-size: 12px;
}

.breadcrumbs__item:last-child a {
  color: rgb(124, 124, 124);
}

.breadcrumbs__item + .breadcrumbs__item::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--color-primary);
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 2px;
}

.breadcrumbs__link {
  color: var(--color-font);
}

.blog-top {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 40px 0;
}

.blog-top__inner {
  display: flex;
  align-items: flex-start;
}

.blog-top__image-wrap {
  width: 100%;
  max-width: 50%;
  min-width: 550px;
  min-height: 409px;
  display: block;
}

.blog-top__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 409px;
  max-height: 409px;
}

.blog-top__wrap {
  min-height: 409px;
  max-height: 409px;
  padding: 50px;
  color: #808080;
  display: flex;
  flex-direction: column;
  background-color: rgb(242, 242, 242);
  height: 100%;
  width: 100%;
}

.blog-top__cat {
  text-transform: uppercase;
  color: #808080;
}

.blog-top__title {
  font-size: 26px;
  color: var(--color-font);
}

.blog-top__description {
  margin-bottom: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 510px;
  max-height: 128px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.blog-top__date {
  font-size: 13px;
}

.blog-list {
  width: 100%;
  padding: 40px 0;
}

.blog-list__inner {
  display: flex;
}

.blog-list__sidebar {
  margin-right: 20px;
  display: flex;
  flex-direction: column;
}

.blog-list__sidebar-item {
  padding: 8px 10px;
  color: var(--color-font);
}

.blog-list__sidebar-item--active {
  color: var(--color-primary);
}

.blog-list__row {
  display: flex;
  margin-bottom: 20px;
}

.blog-list__row .blog-list__item {
  width: 50% !important;
}

.blog-list__item {
  width: 500px;
  min-width: 500px;
}

.blog-list__wrap {
  display: block;
  width: 100%;
  height: 350px;
}

.blog-list__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 20px;
}

.blog-list__link {
  color: var(--color-font);
  display: block;
  margin-top: 20px;
}

.blog-list__title {
  font-size: 26px;
}

.blog-list__description {
  margin-bottom: 20px;
  color: grey;
  display: flex;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blog-list__date {
  font-size: 12px;
}

.blog-list__col {
  width: 100%;
  margin-left: 20px;
  width: 50% !important;
}

.blog-list__col-item {
  display: flex;
  width: 100%;
}

.blog-list__col-item + .blog-list__col-item {
  margin-top: 20px;
}

.blog-list__col-wrap {
  min-width: 200px;
  max-width: 200px;
  height: 163px;
  display: block;
}

.blog-list__col-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-list__col-right {
  width: 100%;
  padding: 10px;
  background-color: #f2f2f2;
}

.blog-list__col-link {
  display: block;
  color: var(--color-font);
}

.blog-list__col-title {
  font-size: 20px;
}

.blog-list__col-date {
  font-size: 12px;
}

.blog-list__all {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.blog-list__all .blog-list__item {
  margin-bottom: 20px;
  width: 636px;
}

.blog-list__all .blog-list__item:nth-child(2n) {
  margin-left: 20px;
}

.blog-list__all-img {
  width: 100%;
}

.page {
  padding: 40px 0;
  min-height: calc(100vh - 135px);
}

.page__wrap {
  margin-bottom: 80px;
}

.page__subtitle {
  font-size: 26px;
  margin-bottom: 20px;
}

.page__phone {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  font-weight: 700;
}

.page__phone svg {
  margin-right: 15px;
  width: 15px;
  height: 15px;
}

.page__phone svg path {
  fill: var(--color-font);
}

.page__code {
  margin-top: 80px;
}

.product-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  grid-gap: 20px;
}

.product-list--slider .product-list__weight {
  display: none;
}

.product-list--slider .product-list__item--big {
  padding: 20px;
}

.product-list .btn {
  text-align: center;
}

.product-list__item {
  padding: 24px;
  background-color: var(--color-product-card);
  color: var(--color-product-card-font);
  width: 100%;
  position: relative;
  margin-bottom: 30px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-list__item .btn--primary {
  background-color: var(--color-product-card);
}

.product-list__item:hover {
  box-shadow: 2px 6px 20px rgba(47, 59, 88, 0.15);
}

.product-list__item:hover .product-list__thumb {
  transform: scale(1.1);
}

.product-list__item--big {
  width: 100%;
}

.product-list__item--big .product-list__top {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.product-list__item--big .product-list__thumb {
  width: 100%;
  height: 100%;
}

.product-list__item--big .product-list__image {
  width: 100%;
  height: 100%;
}

.product-list__item--mini {
  padding: 10px;
  color: #0F2034;
  background-color: #fff;
  min-width: 140px;
}

.product-list__item--mini .product-list__thumb {
  width: 100%;
  height: 70px;
}

.product-list__item--mini .like-form {
  display: none;
}

.product-list__item--mini .product-list__new {
  display: none;
}

.product-list__item--mini .product-list__sale {
  display: none;
}

.product-list__item--mini .product-list__data {
  display: none;
}

.product-list__item--mini .product-list__desc {
  display: none;
}

.product-list__item--mini .product-list__title {
  font-size: 12px;
}

.product-list__item--mini .product-list__title a {
  color: #0F2034;
}

.product-list__item--mini .product-list__price {
  font-size: 14px;
  color: #0F2034;
  white-space: nowrap;
}

.product-list__item--mini .product-list__old {
  display: none;
}

.product-list__item--mini .add_to_cart {
  font-size: 10px;
  white-space: nowrap;
  background: #fff;
  height: 30px !important;
  padding: 6px 10px !important;
}

.product-list__item--mini .product-options__item {
  background: #fff !important;
  font-size: 9px !important;
}

.product-list__item--mini .product-options__item--active {
  background: var(--color-primary) !important;
}

.product-list__item:hover .product-list__menu {
  right: 20px;
}

.product-list__item:hover .product-list__form {
  opacity: 100%;
}

.product-list__item:hover .product-list__thumb--opacity {
  opacity: 0;
}

.product-list__item:hover .product-list__image {
  transform: scale(1.1);
}

.product-list__top {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: fit-content;
  overflow: hidden;
}

.product-list__top-wrap {
  position: absolute;
  z-index: 3;
  display: flex;
  top: 10px;
  left: 10px;
  align-items: center;
  font-size: 12px;
}

.product-list__sale {
  padding: 5px 10px;
  line-height: 1;
  display: inline-block;
  border-radius: 2px;
  margin-right: 5px;
  border: 1px solid var(--color-warning);
  background-color: var(--color-warning);
  color: #fff;
}

.product-list__new {
  padding: 5px 10px;
  line-height: 1;
  display: inline-block;
  border-radius: 2px;
  margin-right: 5px;
  border: 1px solid var(--color-success);
  background-color: var(--color-success);
  color: #fff;
}

.product-list__hit {
  padding: 5px 10px;
  line-height: 1;
  display: inline-block;
  border-radius: 2px;
  border: 1px solid var(--color-danger);
  background-color: var(--color-danger);
  color: #fff;
}

.product-list__menu {
  position: absolute;
  right: -50px;
  top: 20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease;
}

.product-list__menu-item {
  display: flex;
  flex-direction: column;
  display: block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  font-size: 14px;
  border: 1px solid transparent;
  background-color: #fff;
  text-align: center;
  margin-bottom: 5px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.product-list__menu-item:hover svg:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-list__menu-item:hover svg:nth-child(2) {
  top: 150%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-list__menu-item svg {
  height: 13px;
  width: 20px;
  position: absolute;
  transition: all 0.5s ease;
}

.product-list__menu-item svg path {
  fill: #666666;
}

.product-list__menu-item svg:nth-child(1) {
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-list__menu-item svg:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-list__form {
  border-radius: 8px;
  overflow: hidden;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 0.5s ease;
  z-index: 3;
}

.product-list__form .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.product-list__thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
  object-fit: cover;
}

.product-list__image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
  object-fit: cover;
}

.product-list__bottom {
  padding: 20px 0 0 0;
}

.product-list .option_setup {
  color: var(--color-fonts);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.product-list .option_setup svg {
  margin-left: 10px;
}

.product-list .option_setup svg path {
  fill: var(--color-product-card-font);
}

.product-list__title {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--color-product-card-font);
}

.product-list__title a {
  color: var(--color-product-card-font);
}

.product-list .btn {
  width: 100%;
  height: 50px;
  line-height: 1;
}

.product-list__data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  line-height: 14px;
  color: #b5b5b5;
  margin-bottom: 10px;
}

.product-list__data-wrap {
  display: flex;
}

.product-list__data-item + .product-list__data-item {
  margin-left: 5px;
}

.product-list__weight {
  font-size: 12px;
  line-height: 14px;
  color: #b5b5b5;
}

.product-list__desc {
  font-size: 13px;
  min-height: 60px;
  color: var(--color-product-card-font);
  line-height: 17px;
  margin-bottom: 15px;
}

.product-list__prices {
  display: flex;
  justify-content: space-between;
  color: var(--color-product-card-font);
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
}

.product-list__prices svg path {
  fill: #222;
}

.product-list__prices-inner {
  display: flex;
  align-items: center;
}

.product-list__old {
  text-decoration: line-through;
  margin-left: 10px;
  font-size: 22px;
  color: #76777b;
}

.product-list .product-options {
  position: absolute;
  bottom: -24px;
  height: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.product-list .product-options__item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 3px;
  width: fit-content;
  text-align: center;
  line-height: 1;
  padding: 5px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  background-color: var(--color-product-card);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 11px;
  cursor: pointer;
}

.product-list .product-options__item--active {
  background-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  height: 28px;
}

.product-options-popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  justify-content: center;
  z-index: 99999;
}

.product-options-popup--active {
  display: flex;
}

.product-options-popup__layout {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100000;
  background-color: hsla(0deg, 0%, 0%, 0.2);
}

.product-options-popup__inner {
  top: 50%;
  transform: translateY(-50%);
  padding: 30px 40px;
  background-color: #fff;
  color: #222;
  position: relative;
  border-radius: 30px;
  z-index: 100001;
  box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
  position: relative;
  height: fit-content;
  width: 95%;
  max-width: 635px;
  max-height: 100vh;
}

.product-options-popup__closer {
  position: absolute;
  top: 15px;
  right: 15px;
}

.product-options-popup__options-row {
  padding: 10px;
}

.product-options-popup__options-name {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}

.product-options-popup__options-select-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 20px;
}

.product-options-popup__options-select {
  padding: 10px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  text-align: center;
  display: none;
}

.product-options-popup__options-select--active {
  background-color: var(--color-primary);
  color: #ffffff !important;
  display: block;
}

.product-options-popup__options-select + .product-options-popup__options-select {
  margin-left: 10px;
}

.product-options-popup__options-row-wrap {
  display: flex;
  flex-wrap: wrap;
  max-height: 350px;
  overflow-y: scroll;
}

.product-options-popup__options-checkbox-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.product-options-popup__row {
  display: flex;
  justify-content: space-between;
}

.product-options-popup__counter {
  display: flex;
  align-items: center;
  margin-right: 20px;
  margin-bottom: 20px;
}

.product-options-popup__minus {
  cursor: pointer;
  line-height: 1;
}

.product-options-popup__count-inp {
  outline: none;
  padding: 8px;
  width: 85px;
  height: 55px;
  text-align: center;
  font-size: 18px;
  color: #222;
  background: none;
  border: none;
  border-bottom: 2px solid #e1e1e1;
}

.product-options-popup__plus {
  cursor: pointer;
}

.product-options-popup__price-wrap {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
}

.product-options-popup__price {
  margin-right: 10px;
  color: #222;
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
}

.product-options-popup__old-price {
  text-decoration: line-through;
  font-size: 22px;
  color: #76777b;
}

.product-options-popup label {
  margin-bottom: 15px;
}

.news {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.news__item {
  width: 329px;
}

.news__wrap {
  width: 329px;
  height: 201px;
  overflow: hidden;
  margin-bottom: 40px;
  display: block;
}

.news__wrap:hover .news__image {
  transform: scale(1.1);
}

.news__image {
  transition: all 0.5s ease;
  width: 100%;
  height: 100%;
  height: 201px;
  object-fit: cover;
  overflow: hidden;
}

.news__cat {
  transition: all 0.5s ease;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  padding: 10px 18px;
  border-radius: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  border-color: var(--color-primary);
  margin-bottom: 10px;
}

.news__cat:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.news__date {
  margin-bottom: 10px;
  font-size: 14px;
}

.news__title {
  color: var(--color-font);
  display: block;
  margin-bottom: 21px;
  font-size: 18px;
  transition: all 0.5s ease;
}

.news__title:hover {
  color: var(--color-primary);
}

.news__desc {
  display: flex;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #666666;
  font-size: 13px;
  margin-bottom: 25px;
}

.banner {
  width: 100%;
  height: fit-content;
  position: relative;
  display: flex;
}

.banner__inner {
  position: relative;
  z-index: 2;
}

.banner__title {
  font-size: 40px;
}

.banner__title--child {
  font-size: 24px;
  margin-top: 40px;
  color: #9e9e9e;
}

.banner__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 70%;
}

.catalog {
  width: 100%;
  padding: 40px 0;
}

.catalog__inner {
  display: flex;
}

.catalog__sidebar {
  margin-right: 50px;
  min-width: 230px;
}

.catalog__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.catalog__row {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.catalog__item {
  margin-bottom: 15px;
}

.catalog__link {
  color: var(--color-font-gray);
}

.catalog__list {
  width: 100%;
}

.catalog .pagination_area {
  font-size: 12px;
  color: rgb(102, 102, 102);
  margin-top: 40px;
}

.sort {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  font-size: 12px;
}

.sort__item {
  position: relative;
}

.sort__title {
  color: #666;
  height: 23px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.sort__title svg {
  margin-left: 15px;
  width: 10px;
}

.sort__title svg path {
  fill: #666;
}

.sort__options {
  position: absolute;
  z-index: 999;
  background-color: var(--color-body);
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  border: 1px solid rgb(131, 131, 131);
  display: none;
  top: 40px;
}

.sort__option {
  white-space: nowrap;
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.sort__limit {
  color: #666;
}

.filter__price {
  display: flex;
  align-items: center;
}

.filter__text {
  margin-right: 15px;
}

.filter__input {
  margin-right: 10px;
  width: 50px;
  border: none;
  font-size: 16px;
  border-bottom: 1px solid #ebebeb;
  outline: 0;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  text-align: center;
}

.filter__input::placeholder {
  text-align: center;
}

.filter__price-item-ref {
  width: 50%;
  display: flex;
}

.product-detail {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  background-color: var(--color-body);
}

.product-detail__inner {
  display: flex;
  align-items: flex-start;
}

.product-detail__right {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

.product-detail__nav {
  display: flex;
  flex-direction: column;
  margin-right: 40px;
}

.product-detail__nav-image {
  cursor: pointer;
  margin-bottom: 20px;
}

.product-detail__nav-image--active {
  border: 1px solid #d6d6d6;
}

.product-detail__image {
  width: 100%;
  max-width: 750px;
}

.product-detail__left {
  max-width: 560px;
}

.product-detail__title {
  margin-bottom: 15px;
  font-size: 26px;
}

.product-detail__weight {
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 14px;
  color: #b5b5b5;
}

.product-detail__price-wrap {
  display: flex;
  font-size: 20px;
  margin-bottom: 20px;
}

.product-detail__price {
  font-weight: 700;
}

.product-detail__price-old {
  color: #666;
  text-decoration: line-through;
  margin-left: 20px;
}

.product-detail__desc {
  margin-bottom: 40px;
}

.product-detail__options-checkbox-row {
  display: flex;
  flex-direction: column;
}

.product-detail__options-checkbox-row small {
  color: #666;
}

.product-detail__options {
  margin-bottom: 40px;
}

.product-detail__option-link-wrap {
  padding: 3px;
  display: inline-block;
  height: fit-content;
  margin-right: 10px;
}

.product-detail__option-link-wrap--active {
  border: 1px solid var(--color-primary);
}

.product-detail__option-link {
  display: flex;
  color: var(--color-font);
}

.product-detail__options-row {
  display: flex;
  margin-bottom: 20px;
  flex-direction: column;
}

.product-detail__options-name {
  margin-right: 20px;
  min-width: 70px;
  font-weight: 700;
  max-width: 100%;
  min-width: 120px;
  margin-bottom: 10px;
}

.product-detail .select-wrap {
  position: relative;
  height: 42px;
  border: 1px solid #e1e1e1;
  min-width: 200px;
  cursor: pointer;
}

.product-detail .select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #e1e1e1;
}

.product-detail .select-wrap--active::after {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: none;
  border-bottom: 5px solid #e1e1e1;
}

.product-detail .select-wrap__checked {
  padding: 8px 20px;
}

.product-detail .select-wrap__row {
  white-space: nowrap;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: absolute;
  display: none;
  top: 42px;
  z-index: 100;
  left: 0;
  min-width: 100%;
  background-color: var(--color-body);
}

.product-detail .select-wrap__row--active {
  display: block;
}

.product-detail .select-wrap__item {
  padding: 10px 20px;
  cursor: pointer;
}

.product-detail__options-wrap {
  display: flex;
  flex-wrap: wrap;
}

.product-detail__option + .product-detail__option {
  margin-left: 10px;
}

.product-detail__option-value {
  padding: 5px 10px;
  border: 1px solid #666;
  font-size: 12px;
  cursor: pointer;
}

.product-detail__option-value--color {
  padding: 8px 10px;
}

.product-detail__option-value--active {
  border: 1px solid var(--color-primary);
}

.product-detail select {
  padding: 8px 20px;
  outline: none;
}

.product-detail__option-value-reset {
  padding: 5px 10px;
  display: none;
  font-size: 12px;
  cursor: pointer;
}

.product-detail__form {
  align-items: center;
  margin-bottom: 40px;
}

.product-detail .wrapper_to_count {
  display: flex;
}

.product-detail__counter {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.product-detail__input {
  outline: none;
  padding: 8px;
  width: 85px;
  height: 55px;
  text-align: center;
  font-size: 18px;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  background: none;
  border: none;
  border-bottom: 2px solid #e1e1e1;
}

.product-detail__button {
  min-width: 234px;
  background: none;
}

.product-detail__minus {
  cursor: pointer;
}

.product-detail__minus svg line {
  stroke: var(--color-font);
}

.product-detail__plus {
  cursor: pointer;
}

.product-detail__plus svg path {
  fill: var(--color-font);
}

.product-detail__char {
  display: flex;
  justify-content: space-between;
}

.product-detail__char a:hover {
  color: var(--color-primary);
}

.product-detail__char-name {
  min-width: 250px;
}

.product-detail__char-value {
  text-align: start;
  color: var(--color-font);
}

.product-detail__of-stock {
  padding: 8px 15px;
  border: 1px solid var(--color-danger);
  color: var(--color-danger);
}

.product-detail label {
  margin-bottom: 15px;
}

.product-detail input[type=checkbox]:checked,
.product-detail input[type=checkbox]:not(:checked),
.product-detail input[type=radio]:checked,
.product-detail input[type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.product-detail input[type=checkbox]:checked + label,
.product-detail input[type=checkbox]:not(:checked) + label,
.product-detail input[type=radio]:checked + label,
.product-detail input[type=radio]:not(:checked) + label {
  display: inline-block;
  position: relative;
  padding-left: 28px;
  line-height: 20px;
  cursor: pointer;
}

.product-detail input[type=checkbox]:checked + label:before,
.product-detail input[type=checkbox]:not(:checked) + label:before,
.product-detail input[type=radio]:checked + label:before,
.product-detail input[type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 20px;
  height: 20px;
  border: 1px solid #dddddd;
  background-color: #ffffff;
  border-radius: 100%;
}

.product-detail input[type=radio]:checked + label:before,
.product-detail input[type=radio]:not(:checked) + label:before {
  border-radius: 100%;
}

.product-detail input[type=checkbox]:checked + label:after,
.product-detail input[type=checkbox]:not(:checked) + label:after,
.product-detail input[type=radio]:checked + label:after,
.product-detail input[type=radio]:not(:checked) + label:after {
  content: "";
  position: absolute;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.product-detail input[type=checkbox]:checked + label:after,
.product-detail input[type=checkbox]:not(:checked) + label:after {
  left: 0px;
  top: 0px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.product-detail input[type=radio]:checked + label:after,
.product-detail input[type=radio]:not(:checked) + label:after {
  left: 5px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--color-primary);
}

.product-detail input[type=checkbox]:not(:checked) + label:after,
.product-detail input[type=radio]:not(:checked) + label:after {
  opacity: 0;
}

.product-detail input[type=checkbox]:checked + label:after,
.product-detail input[type=radio]:checked + label:after {
  opacity: 1;
}

.product-bottom {
  padding: 60px 0;
}

.similar {
  padding: 80px 0;
}

.blog-detail {
  width: 100%;
  padding: 40px 0;
}

.blog-detail__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.blog-detail__title {
  margin-bottom: 40px;
}

.blog-detail__img {
  margin-bottom: 30px;
  width: 100%;
}

.blog-detail__text {
  margin-bottom: 30px;
}

.blog-detail__subtitle {
  margin-bottom: 30px;
}

.blog-detail__video {
  width: 100%;
  margin-bottom: 20px;
}

/* 16. Cart */

.table-content table {
  background: var(--color-body);
  border-color: #eaedff;
  border-radius: 0;
  border-style: solid;
  border-width: 1px 0 0 1px;
  text-align: center;
  width: 100%;
  margin-bottom: 0;
  border: none;
  margin-bottom: 40px;
  min-width: 800px;
}

.table-content {
  width: 100%;
  overflow-x: scroll;
}

.table-content .table > :not(:last-child) > :last-child > * {
  border-bottom-color: #eaedff;
}

.table-content .product-quantity {
  float: none;
}

.table-content .product-quantity .cart-plus-minus {
  position: relative;
}

.table-content table td.product-name {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}

.table-content table td.product-name a {
  color: var(--color-font);
}

.table-content table td.product-name a:hover {
  color: #f57e60;
}

.table-content table td {
  border-top: medium none;
  padding: 20px 10px;
  vertical-align: middle;
  font-size: 16px;
}

.table-content table th,
.table-content table td {
  border-bottom: 1px solid #eaedff;
  border-right: 1px solid #eaedff;
  border-left: 1px solid #eaedff;
}

.product-quantity input {
  color: #000;
  font-size: 14px;
  font-weight: normal;
  border: 1px solid #dcdcdc;
}

.table td,
.table th {
  border-top: 1px solid #eaedff;
}

.product-quantity > input {
  width: 80px;
  border-radius: 3px;
}

.product-remove svg {
  width: 15px;
}

.table-content table td.product-subtotal {
  font-size: 16px;
}

.table-content table td .cart-plus-minus {
  float: none;
  margin: 0 auto;
}

.coupon-all {
  margin-top: 50px;
}

.coupon {
  float: left;
}

#coupon_code {
  height: 50px;
  border: 2px solid #eaedff;
  padding: 0 15px;
  margin-right: 10px;
}

#coupon_code::placeholder {
  color: #999999;
}

#coupon_code:focus {
  border-color: #222;
}

.coupon2 {
  float: right;
}

.cart-page-total {
  padding-top: 50px;
}

.cart-page-total > h2 {
  font-size: 25px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.cart-page-total > ul {
  border: 1px solid #eaedff;
}

.cart-page-total > ul > li {
  list-style: none;
  font-size: 15px;
  color: #6f7172;
  padding: 10px 30px;
  border-bottom: 1px solid #eaedff;
  font-weight: 400;
}

.cart-page-total ul > li > span {
  float: right;
}

.cart-page-total li:last-child {
  border-bottom: 0;
}

td.product-thumbnail img {
  width: 125px;
}

.cart-plus-minus {
  display: flex;
}

.cart-plus-minus .cart-input {
  border: 0px;
  outline: 0px;
  background: none;
  font-weight: 400;
  color: var(--color-cart-font);
  font-size: 14px;
  display: inline-block;
  list-style: 45px;
  width: 50px;
  text-align: center;
  border-radius: 30px;
}

.cart-plus-minus .qtybutton {
  font-size: 20px;
  color: var(--color-cart-font);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  height: 22px;
  border: 1px solid rgb(124, 124, 124);
  width: 22px;
  background: transparent;
  line-height: 1;
  cursor: pointer;
  text-align: center;
}

.cart-plus-minus .qtybutton button {
  background: none;
  border: none;
}

.cart-plus-minus .dec {
  left: 7px;
}

.cart-plus-minus .inc {
  right: 7px;
}

.product-quantity {
  position: relative;
}

.header-bottom {
  background-color: var(--color-body);
}

.header-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-bottom__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  width: 100%;
}

.header-bottom__list .header__logo {
  width: 100%;
  max-width: none;
  max-height: var(--logo-height);
  margin-bottom: 20px;
}

.header-bottom__list-mobile-title {
  display: none;
}

.header-bottom__dropdown-item {
  display: inline-block;
}

.header-bottom__dropdown-item:nth-child(1) a {
  padding-left: 0;
}

.header-bottom__dropdown-item:last-child a {
  padding-right: 0;
}

.header-bottom__link {
  color: var(--color-font);
  padding: 20px 10px;
  font-size: 12px;
  display: inline-block;
  text-transform: uppercase;
}

.header-bottom__link:hover {
  color: var(--color-primary);
}

.combo-popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.combo-popup--active {
  display: flex;
}

.combo-popup__layout {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100000;
  background-color: hsla(0deg, 0%, 0%, 0.2);
}

.combo-popup__inner {
  padding: 30px;
  background-color: #fff;
  color: #222;
  position: relative;
  border-radius: 30px;
  z-index: 100001;
  box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
}

.combo-popup__closer {
  position: absolute;
  top: 20px;
  right: 20px;
}

.combo-popup__name {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

.combo-popup__desc {
  margin-bottom: 40px;
}

.combo-popup__item-group {
  color: #b0b0b0;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.combo-popup__parent_list {
  margin-bottom: 20px;
}

.combo-popup__item-row {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.combo-popup__item-check {
  width: 20px;
  min-height: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.05);
  transition: 0.2s background-color;
  background-color: rgba(92, 90, 87, 0.1);
}

.combo-popup__item-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 48%;
  margin-bottom: 15px;
}

.combo-popup__item-item--active .combo-popup__item-check {
  background-color: rgba(92, 90, 87, 0.7);
}

.combo-popup__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.combo-popup__bottom-wrap {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

.combo-popup__btn {
  cursor: not-allowed;
  font-size: 12px;
  background-color: #646464;
  color: #b0b0b0;
  border: none;
  line-height: 1;
}

.combo-popup__btn--active {
  cursor: pointer;
  background: none;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.combo-popup__summ {
  font-size: 30px;
}

.counter {
  margin-right: 25px;
  display: none;
  align-items: center;
}

.counter__btn {
  background: none;
  border: none;
  display: flex;
  align-items: center;
}

.counter__input {
  color: #222;
  outline: none;
  padding: 8px;
  width: 85px;
  height: 55px;
  text-align: center;
  font-size: 18px;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  background: none;
  border: none;
  border-bottom: 2px solid #e1e1e1;
}

.cat-home {
  padding: 80px 0;
}

.cat-home__inner {
  width: 100%;
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(9, 1fr);
}

.cat-home__inner-flex {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}

.cat-home__inner-two {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.cat-home__inner-three {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.cat-home__inner-four {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.cat-home__inner-five {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(5, 1fr);
}

.cat-home__inner-six {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.cat-home__item-flex {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  padding: 24px;
  background-color: #fff;
  box-shadow: 2px 6px 20px rgba(47, 59, 88, 0.15);
  color: var(--color-fonts);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cat-home__item-flex:hover {
  color: var(--color-primary) !important;
  box-shadow: 2px 6px 20px rgba(47, 59, 88, 0.25);
}

.cat-home__item-flex:hover .cat-home__img {
  transform: scale(1.1);
}

.cat-home__item-flex:hover .cat-home__title {
  color: var(--color-primary) !important;
}

.cat-home__item {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  padding: 24px;
  background-color: #fff;
  box-shadow: 2px 6px 20px rgba(47, 59, 88, 0.15);
  color: var(--color-fonts);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cat-home__item--resized {
  background-color: #fff;
}

.cat-home__item:hover {
  color: var(--color-primary) !important;
  box-shadow: 2px 6px 20px rgba(47, 59, 88, 0.25);
}

.cat-home__item:hover .cat-home__img {
  transform: scale(1.1);
}

.cat-home__item:hover .cat-home__title {
  color: var(--color-primary) !important;
}

.cat-home__item:nth-child(1) {
  grid-column: 1/3;
  grid-row: 1/3;
  height: 100%;
}

.cat-home__item:nth-child(2) {
  grid-column: 3/6;
}

.cat-home__item:nth-child(3) {
  grid-column: 6/8;
}

.cat-home__item:nth-child(4) {
  grid-column: 8/10;
}

.cat-home__item:nth-child(5) {
  grid-column: 3/5;
}

.cat-home__item:nth-child(6) {
  grid-column: 5/8;
}

.cat-home__item:nth-child(7) {
  grid-column: 8/10;
}

.cat-home__title {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.cat-home__img {
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cat-home__img--resized {
  object-fit: cover;
}

.global-subdomain {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: #fafafa;
}

.global-subdomain__inner {
  background-color: var(--color-header);
  color: var(--color-header-font);
  border: 1px solid var(--divider-base-color);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  width: 400px;
  padding: 30px 30px 30px 30px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}

.global-subdomain__logo {
  margin-bottom: 20px;
  width: 100%;
  max-width: fit-content;
  object-fit: contain;
}

.global-subdomain__text {
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 20px;
}

.global-subdomain__row {
  border-top: 1px solid #fafafa;
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  height: fit-content;
  max-height: 350px;
}

.global-subdomain__item {
  color: var(--color-header-font);
  display: block;
  padding: 10px;
}

.global-subdomain__item:hover {
  color: var(--color-primary);
}

.constructor-popup {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  align-items: center;
  justify-content: center;
  z-index: 999;
  color: #222;
  display: none;
}

.constructor-popup--active {
  display: flex;
}

.constructor-popup__overflov {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1001;
  background-color: hsla(0deg, 0%, 0%, 0.2);
}

.constructor-popup__inner {
  display: flex;
  max-height: 100vh;
  height: 550px;
  max-width: 750px;
  background-color: #fff;
  color: #222;
  position: relative;
  border-radius: 30px;
  z-index: 1002;
  overflow: hidden;
}

.constructor-popup__close {
  position: absolute;
  top: 10px;
  right: 12px;
  cursor: pointer;
  z-index: 1003;
}

.constructor-popup__close svg {
  width: 20px;
  height: 20px;
}

.constructor-popup__image-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
}

.constructor-popup__image {
  width: 100%;
  max-width: 450px;
  height: fit-content;
  margin-right: 20px;
  padding: 30px;
}

.constructor-popup__row-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: rgb(252, 252, 252);
  padding: 40px 20px 50px 20px;
}

.constructor-popup__row {
  height: 100%;
  padding: 10px 10px 30px 10px;
  overflow-y: scroll;
  position: relative;
}

.constructor-popup__title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

.constructor-popup__structure {
  font-size: 12px;
  margin-bottom: 15px;
}

.constructor-popup__desc {
  font-size: 14px;
  min-height: 60px;
  color: #76777b;
  line-height: 17px;
  margin-bottom: 15px;
}

.constructor-popup__radio-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.constructor-popup__radio-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 10px;
  border-radius: 9999px;
  background-color: rgb(243, 243, 247);
  height: 32px;
  align-items: center;
  padding: 2px;
}

.constructor-popup__radio-item {
  cursor: pointer;
  width: 100%;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
}

.constructor-popup__radio-item--active {
  background-color: #fff;
  box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
}

.constructor-popup__checkbox {
  margin-bottom: 20px;
}

.constructor-popup__checkbox-top {
  margin-bottom: 15px;
}

.constructor-popup__checkbox-desc {
  font-size: 12px;
  color: #76777b;
}

.constructor-popup__checkbox-title {
  font-size: 20px;
}

.constructor-popup__checkbox-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.constructor-popup__checkbox-item {
  cursor: pointer;
  padding: 8px;
  box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
  border-radius: 12px;
  text-align: center;
  position: relative;
  transition: all 0.2s ease;
}

.constructor-popup__checkbox-item:hover {
  box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.1);
}

.constructor-popup__checkbox-item--active {
  box-shadow: none;
  border: 1px solid var(--color-primary);
}

.constructor-popup__checkbox-item--active .constructor-popup__checkbox-item-active {
  display: block;
}

.constructor-popup__checkbox-item-active {
  position: absolute;
  display: none;
  right: 5px;
  top: 5px;
}

.constructor-popup__checkbox-item-active svg {
  width: 15px;
  height: 15px;
}

.constructor-popup__checkbox-item-active svg path {
  fill: var(--color-primary);
}

.constructor-popup__checkbox-img {
  width: 100%;
}

.constructor-popup__checkbox-item-title {
  font-size: 12px;
  margin-top: 5px;
  line-height: 1.1;
  min-height: 27px;
}

.constructor-popup__bottom {
  position: absolute;
  bottom: 0;
  padding-top: 10px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #fff;
  box-shadow: 0px -10px 19px -10px rgba(34, 60, 80, 0.1);
  left: 0;
  right: 0;
  text-align: center;
}

.constructor-popup__btn {
  margin-bottom: 10px;
  text-align: center;
  display: block;
  width: 100%;
  font-weight: 600;
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 10px;
  border-radius: 12px;
}

.constructor-popup__btn:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.constructor-popup .deactivate,
.constructor-popup .deactivate-ingredient {
  position: relative;
  cursor: not-allowed;
  opacity: 50%;
}

.constructor-popup .deactivate::after,
.constructor-popup .deactivate-ingredient::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}

.rating-result span {
  padding: 0;
  font-size: 16px;
  margin: 0 auto;
  line-height: 1;
  color: rgb(164, 164, 164);
}

.rating-result > span:before {
  content: "★";
}

.rating-result > span.actives {
  color: gold;
  background: none !important;
}

.reviews {
  background-color: var(--color-body);
  color: var(--color-font);
  padding: 80px 0;
}

.reviews__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.reviews__item {
  padding: 20px;
  background-color: var(--color-product-card);
  color: var(--color-product-card-font);
  border-radius: 8px;
  position: relative;
}

.reviews__item:hover {
  box-shadow: 2px 6px 20px rgba(47, 59, 88, 0.15);
}

.reviews__platform {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
}

.reviews__top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.reviews__img {
  border-radius: 50%;
  overflow: hidden;
}

.reviews__avatar {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
}

.reviews__name {
  margin-left: 20px;
}

.reviews__middle {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.reviews__date {
  margin-left: 10px;
  color: #6a6a6a;
  font-size: 12px;
}

.order {
  color: #0F2034;
}

.order--active {
  display: flex;
}

.order--active .order__container {
  right: 0;
}

.order--active .order__owerlay {
  display: block;
}

.order__owerlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(15, 32, 52, 0.7);
  backdrop-filter: blur(3px);
  z-index: 999;
  display: none;
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.order__load {
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  max-width: 790px;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background: rgba(15, 32, 52, 0.3);
  backdrop-filter: blur(3px);
  opacity: 1;
  display: none;
}

.order__load--active {
  display: flex;
}

.order__load svg {
  width: 120px;
  opacity: 0.4;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}

.order__load svg path {
  fill: #fff;
}

.order__container {
  width: 100%;
  max-width: 790px;
  background-color: #E8E9EB;
  overflow-y: scroll;
  height: 100svh;
  position: relative;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  transition: all 0.3s ease;
}

.order__inner {
  position: relative;
  z-index: 1001;
}

.order__top {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 40px;
}

.order__title {
  font-size: 24px;
  line-height: 1.25;
  font-weight: bold;
}

.order__closer {
  cursor: pointer;
}

.order__body {
  position: relative;
}

.order__body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  right: 0;
  background: linear-gradient(180deg, #ccd1da 0%, #e8e9eb 100%);
  height: 50px;
  pointer-events: none;
  z-index: 0;
}

.order__delivery-check {
  padding: 0 40px 0 40px;
  display: flex;
  margin-bottom: 49px;
}

.order__delivery-check-item {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #767E91;
  opacity: 0.4;
  padding-bottom: 17px;
  position: relative;
  margin-right: 30px;
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
}

.order__delivery-check-item::after {
  content: "";
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background: #E90C4E;
  border-radius: 3px;
  opacity: 0;
}

.order__delivery-check-item--active {
  opacity: 1;
}

.order__delivery-check-item--active::after {
  opacity: 1;
}

.order__body-wrap {
  padding: 0 40px 40px 40px;
}

.order__delivery {
  display: none;
}

.order__pickup {
  display: none;
  position: relative;
}

.order__pickup-row {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
}

.order__pickup-row svg {
  right: 15px;
  position: absolute;
  width: 20px;
  height: 20px;
}

.order__pickup-areas {
  position: absolute;
  display: flex;
  flex-direction: column;
  z-index: 2;
  top: 73px;
  width: 100%;
  background-color: #fff;
  border: 1px solid #D5DBE7;
  border-radius: 5px;
  padding: 15px;
  display: none;
}

.order__input-dropdown {
  width: 100%;
  margin-bottom: 10px;
  cursor: pointer;
}

.order__bottom {
  padding: 40px 40px 80px 40px;
  position: relative;
  background: #E8E9EB;
  margin-top: 49px;
}

.order__bottom::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 100%;
  right: 0;
  background: linear-gradient(180deg, #e8e9eb 0%, #ccd1da 99.48%);
  height: 49px;
  pointer-events: none;
  z-index: 0;
}

.order__next {
  width: 100%;
  white-space: nowrap;
}

.order__checkup-item-wrapper .order__checkup-title {
  margin-bottom: 10px;
}

.order__checkup-item {
  margin-bottom: 20px;
}

.order__checkup-item--cutlery {
  display: flex;
  justify-content: space-between;
}

.order__checkup-delivery-text {
  font-size: 12px;
  max-width: 250px;
  color: #767E91;
}

.order__checkup-cutlery {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.order__checkup-cutlery .order__input {
  width: 80px;
  padding-right: 15px;
  margin-left: 15px;
  margin-right: 15px;
  text-align: center;
}

.order__checkup-cutlery-btn {
  background: #fff;
  border-radius: 50%;
  border: 1px solid #D5DBE7;
  width: 30px;
  height: 30px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order__checkup-title {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.2;
  padding-top: 12px;
  margin-bottom: 17px;
  color: #0F2034;
}

.order__checkup-item-wrap {
  display: grid;
  gap: 24px;
}

.order__checkup-item-wrap--grid-two {
  grid-template-columns: repeat(2, 1fr);
}

.order__checkup-item-wrap--grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.order__checkup-item-wrap + .order__checkup-item-wrap {
  margin-top: 24px;
}

.order__label {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  color: #767E91;
}

.order__label p {
  margin-bottom: 12px;
}

.order__input {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #D5DBE7;
  border-radius: 5px;
  height: 45px;
  padding-left: 15px;
  outline: none;
  font-weight: 500;
  font-size: 14px;
  color: #0F2034;
}

.order__input::placeholder {
  color: #767E91;
}

.order__input--error {
  border: 1px solid #E90C4E;
}

.order__textarea {
  resize: none;
  width: 100%;
  height: 80px;
  padding: 15px;
}

.order__times-item {
  display: flex;
  position: relative;
}

.order__times-active-wrap {
  display: flex;
}

.order__times-active-wrap #day {
  margin-right: 10px;
}

.order__times-active-wrap #time {
  margin-left: 10px;
}

.order__times-active {
  cursor: pointer;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #D5DBE7;
  border-radius: 5px;
  height: 45px;
  padding-left: 15px;
  padding-right: 15px;
  outline: none;
  font-weight: 400;
  font-size: 14px;
  color: #0F2034;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.order__times-active svg {
  width: 20px;
  height: 20px;
}

.order__times-active svg path {
  fill: #0F2034;
}

.order__times-drop {
  position: absolute;
  background-color: #fff;
  display: none;
  top: 45px;
  right: 0;
  left: 0;
  justify-content: space-between;
  border: 1px solid #D5DBE7;
  border-radius: 5px;
  padding: 15px;
  z-index: 2;
}

.order__times-drop--active {
  display: flex;
}

.order__times-drop-days {
  width: 100%;
  max-height: 250px;
  overflow-y: scroll;
}

.order__times-drop-time {
  width: 100%;
}

.order .drop_item {
  padding: 20px;
  width: 100%;
  cursor: pointer;
}

.order .drop_item--active {
  font-weight: 700;
}

.order__times-drop-time-wrap {
  display: none;
  max-height: 250px;
  overflow-y: scroll;
}

.order__times-drop-time-wrap--active {
  display: block;
}

.order .dop-item {
  display: flex;
  align-items: flex-start;
  justify-content: end;
  margin-bottom: 10px;
}

.order .dop-item h3 {
  font-size: 16px;
  line-height: 1;
  color: #767E91;
}

.order .dop-item__wrap {
  margin-right: 10px;
}

.order .dop-item__description {
  font-size: 12px;
  color: #767E91;
  max-width: 350px;
}

.order .dop-item__price {
  font-weight: 500;
}

.order__info {
  text-align: end;
  margin-bottom: 40px;
}

.order__info-item {
  display: flex;
  justify-content: flex-end;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 10px;
}

.order__info-item .open_cart {
  margin-left: 10px;
}

.order__info-item p {
  color: #767E91;
  margin-right: 10px;
}

.order__info-item div {
  color: #0F2034;
  min-width: 50px;
}

.order__info-link {
  color: rgb(233, 12, 78);
  text-decoration: underline;
  font-size: 12px;
}

.order__pay-methods {
  padding: 0 40px;
  display: none;
}

.order__pay-methods--active {
  display: block;
}

.order__register {
  width: 100%;
  background: #FFFFFF;
  position: relative;
  border-radius: 5px;
  padding: 0 15px;
  overflow: hidden;
  height: 0;
  border: 1px solid #D5DBE7;
  opacity: 0;
  transition: all 0.3s ease;
}

.order__register--active {
  height: fit-content;
  padding: 15px;
  opacity: 1;
}

.order__register-title {
  margin-bottom: 10px;
}

.order__register-text {
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 10px;
}

.order__register-bottom {
  display: flex;
  justify-content: flex-end;
}

.order__register-btn {
  background: none;
  border: 1px solid #E90C4E;
  color: #E90C4E;
  border-radius: 5px;
  padding: 5px 20px;
  white-space: nowrap;
}

.order__register-btn:hover {
  background: #E90C4E;
  color: #fff;
}

.order .cart__input-phone-btn {
  text-align: center;
  justify-content: center;
}

.order__register-input {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #D5DBE7;
  border-radius: 5px;
  height: 45px;
  padding-left: 15px;
  outline: none;
  font-weight: 500;
  font-size: 14px;
  color: #0F2034;
}

.order__register-input::placeholder {
  color: #767E91;
}

.order__register-input--error {
  border: 1px solid #E90C4E;
}

.order__input-phone-signup-refresh {
  position: relative;
}

.order__input-phone-signup-refresh svg {
  cursor: pointer;
  position: absolute;
  width: 15px;
  height: 15px;
  right: 15px;
  top: 44px;
}

.order__input-phone-signup-refresh svg path {
  fill: #767E91;
}

.order .active_balls {
  color: #E90C4E;
  font-size: 12px;
  margin-bottom: 10px;
  display: inline-block;
  text-decoration: underline;
}

.order .required_checkbox--error input::after {
  border: 2px solid #E90C4E !important;
}

.order .required_checkbox--error span {
  color: #E90C4E;
  text-decoration: underline;
}

.order .cart__min {
  font-weight: 400 !important;
  text-align: center;
}

.order .cart__min svg {
  opacity: 0.5;
}

.order .cart__min svg path {
  fill: #767676;
}

.order .open_cart {
  font-size: 12px;
  display: block;
  color: #E90C4E;
  text-decoration: underline;
}

.order input[type=radio]:after,
.order input[type=checkbox]:after {
  width: 24px;
  height: 24px;
  border-radius: 15px;
  top: -6px;
  left: -6px;
  position: relative;
  background-color: #d1d3d1;
  content: "";
  display: inline-block;
  visibility: visible;
  border: 2px solid white;
}

.order input[type=radio]:checked:after,
.order input[type=checkbox]:checked:after {
  width: 24px;
  height: 24px;
  border-radius: 15px;
  top: -6px;
  left: -6px;
  position: relative;
  background-color: rgb(233, 12, 78);
  content: "";
  display: inline-block;
  visibility: visible;
  border: 2px solid white;
}

.order .btn--primary {
  border: 1px solid rgb(233, 12, 78);
  color: rgb(233, 12, 78);
}

.order .btn--primary:hover {
  background-color: rgb(233, 12, 78) !important;
  color: #fff;
}

.order__next-wrap--flex {
  display: flex;
  justify-content: flex-end;
}

.order__next {
  width: 100%;
  text-align: center;
}

.order__next--error {
  font-size: 12px;
  padding-left: 10px;
  padding-right: 10px;
}

.order__back {
  border: 1px solid #767676;
  margin-right: 20px;
  width: 50%;
  text-align: center;
  border-color: #767676 !important;
  color: #767676 !important;
}

.order__back:hover {
  color: #767676 !important;
  background-color: #fff !important;
}

.order #pay_change {
  display: none;
}

.checkout__counter {
  display: flex;
  width: 100%;
  justify-content: space-between;
  list-style: none;
  overflow: hidden;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
  padding: 0 40px;
}

.checkout__counter-item {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.checkout__counter-item:nth-child(1) {
  align-items: flex-start;
}

.checkout__counter-item:nth-child(1) .checkout__counter-title {
  text-align: start;
}

.checkout__counter-item:nth-child(2) {
  align-items: center;
}

.checkout__counter-item:nth-child(3) {
  align-items: flex-end;
}

.checkout__counter-item:nth-child(3) .checkout__counter-title {
  text-align: end;
}

.checkout__counter-item::before {
  content: "";
  position: absolute;
}

.checkout__counter-item i {
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
  width: 15px;
  height: 15px;
  min-width: 15px;
  display: block;
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  opacity: 0.5;
  border: 3px solid #767E91;
  box-shadow: 3px 3px 5px rgba(13, 39, 80, 0.16), -1px -1px 5px #FFFFFF;
}

.checkout__counter-item--active i {
  opacity: 1;
  border: 3px solid #E90C4E;
}

.checkout__counter-item--line .checkout__counter-line {
  background: #E90C4E;
}

.checkout__counter-line-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}

.checkout__counter-line {
  width: 100%;
  background: #a7b3cf;
  height: 1px;
  top: 33px;
  content: "";
}

.checkout__counter-title {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 500;
  color: #767E91;
  margin-bottom: 10px;
}

.checkout__radio-wrap {
  display: flex;
  align-items: center;
  margin-right: 30px;
  margin-bottom: 25px;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #767E91;
  height: 24px;
}

.checkout__radio {
  border: 2px solid #767E91;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  border-radius: 50%;
}

.checkout__radio-list {
  display: flex;
  flex-wrap: wrap;
}

.form__acceptance a {
  color: rgb(233, 12, 78);
}

.form__acceptance span {
  margin-left: 10px;
}

.form__acceptance label {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  color: #767E91;
  margin-bottom: 1em;
}

/* Стили для overlay, покрывающего весь контейнер */

.order__register-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* Полупрозрачный черный фон */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  /* Достаточно высокий, чтобы перекрыть весь контент */
}

/* Стили для крутящегося лоадера внутри overlay */

.order__register-loader {
  border: 4px solid #f3f3f3;
  /* Светлый серый */
  border-top: 4px solid #3498db;
  /* Синий цвет для выделения */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.odred-done {
  color: #0F2034;
}

.odred-done--active {
  display: flex;
}

.odred-done--active .odred-done__container {
  right: 0;
}

.odred-done--active .odred-done__owerlay {
  display: block;
}

.odred-done__owerlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(15, 32, 52, 0.7);
  backdrop-filter: blur(3px);
  z-index: 999;
  display: none;
}

.odred-done__container {
  width: 100%;
  max-width: 790px;
  background-color: #E8E9EB;
  overflow-y: scroll;
  height: 100vh;
  position: relative;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  transition: all 0.3s ease;
}

.odred-done__inner {
  position: relative;
  z-index: 1001;
}

.odred-done__top {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 40px;
}

.odred-done__title {
  font-size: 24px;
  line-height: 1.25;
  font-weight: bold;
}

.odred-done__closer {
  cursor: pointer;
}

.odred-done__body {
  position: relative;
}

.odred-done__body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  right: 0;
  background: linear-gradient(180deg, #ccd1da 0%, #e8e9eb 100%);
  height: 50px;
  pointer-events: none;
  z-index: 0;
}

.odred-done__body-wrap {
  padding: 40px 40px;
  position: relative;
  z-index: 1;
}

.odred-done__body-title {
  font-size: 20px;
  line-height: 1.25;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  width: 100%;
  max-width: 450px;
  margin: 0 auto 40px;
}

.odred-done__body-sbp {
  margin-bottom: 40px;
  text-align: center;
  font-weight: 400;
}

.odred-done__bottom {
  padding: 40px 40px 80px 40px;
  position: relative;
  background: #E8E9EB;
  margin-top: 49px;
}

.odred-done__bottom::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 100%;
  right: 0;
  background: linear-gradient(180deg, #e8e9eb 0%, #ccd1da 99.48%);
  height: 49px;
  pointer-events: none;
  z-index: 0;
}

.odred-done__itog-title {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.2;
  padding-top: 12px;
  margin-bottom: 17px;
}

.odred-done__itog-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted #767E91;
  color: #767E91;
  font-size: 12px;
  padding-bottom: 3px;
  margin-bottom: 12px;
}

.odred-done__itog-wrap-summ {
  border: none;
  font-weight: 700;
  color: #0F2034;
  font-size: 14px;
  justify-content: flex-end;
}

.odred-done__itog-wrap-summ .odred-done__itog-value {
  margin-left: 20px;
}

.cookies {
  position: fixed;
  width: 100%;
  max-width: 550px;
  padding: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  bottom: 20px;
  background-color: #fff;
  z-index: 99999;
  font-size: 12px;
}

.cookies__text {
  margin-bottom: 10px;
  color: #222;
}

.cookies__text a {
  text-decoration: underline;
}

.cookies__button {
  display: inline-block;
  padding: 5px 15px;
  background-color: var(--color-primary);
  color: #fff;
  cursor: pointer;
}

.contacts-design {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
}

.contacts-design__title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 20px;
}

.contacts-design__item {
  display: flex;
  margin-bottom: 40px;
}

.contacts-design__icon {
  width: 100%;
  max-width: 150px;
  margin-right: 60px;
  display: flex;
}

.contacts-design__icon svg {
  margin-right: 20px;
  width: 30px;
  min-width: 30px;
  height: 30px;
}

.contacts-design__icon img {
  margin-right: 20px;
  width: 30px;
  min-width: 30px;
  height: 30px;
  object-fit: cover;
}

.contacts-design__list {
  list-style: none;
  padding: 0 0 0 20px;
  margin: 0;
}

.contacts-design__list-item {
  position: relative;
  margin-bottom: 10px;
}

.contacts-design__list-item a {
  color: var(--color-font);
  text-decoration: underline;
}

.contacts-design__list-item::after {
  content: "";
  position: absolute;
  top: 8px;
  left: -18px;
  width: 12px;
  height: 6px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  border-radius: 0 0 0 2px;
  transform: rotate(-45deg);
}

.contacts-design__wrap .header__contacts-link-wrap {
  display: flex;
  align-items: center;
}

.contacts-design__wrap .header__contacts-link-wrap a {
  margin-bottom: 0;
}

.contacts-design__wrap .header__contacts-link-wrap svg {
  margin-right: 10px;
}

.contacts-design__wrap .header__contacts-link-wrap svg path {
  fill: var(--color-font);
}

.contacts-design__list-text {
  padding-left: 20px;
}

.contacts-design__list-text a {
  color: var(--color-font);
  text-decoration: underline;
}

.contacts-design__list-text + .contacts-design__list-text {
  margin-top: 20px;
}

.contacts-design .header__contacts-phone {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--color-font);
  text-decoration: underline;
}

.contacts-design .header__contacts-soc {
  color: var(--color-font);
  text-decoration: underline;
}

.popup-order-status {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 999;
  padding: 10px 0;
  display: none;
  font-size: 12px;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
}

.popup-order-status__title {
  white-space: nowrap;
  margin-right: 40px;
  font-weight: 700;
  text-transform: uppercase;
}

.popup-order-status__inner {
  width: 100%;
  display: flex;
  align-items: center;
}

.popup-order-status__list {
  width: 100%;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.popup-order-status .status-item {
  display: flex;
  align-items: center;
}

.popup-order-status .status-item svg {
  margin-left: 10px;
  width: 15px;
  height: 15px;
}

.popup-order-status .status-item--active {
  color: green;
  font-weight: 700;
}

.popup-order-status .status-item--active svg path {
  fill: green;
}

/* Основной стиль для лоадера */

.window-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-header);
  /* Фон загрузки */
  color: var(--color-header-font);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  flex-direction: column;
}

.window-loader__logo {
  width: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  color: var(--color-header-font);
  white-space: nowrap;
  font-weight: 700;
  text-transform: uppercase;
}

/* Анимация спиннера */

.spinner {
  width: 50px;
  height: 50px;
  border: 6px solid #f3f3f3;
  /* Цвет обводки */
  border-top: 6px solid var(--color-primary);
  /* Цвет вращающейся линии */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Анимация вращения */

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Скрытие контента пока лоадер видим */

#content {
  display: none;
}

@media screen and (max-width: 1426px) {
  .sl .owl-prev {
    left: 30px;
  }

  .sl .owl-next {
    right: 30px;
  }

  .header-bottom__inner {
    padding-right: 15px;
  }
}

@media screen and (max-width: 1400px) {
  .header-bottom__link {
    padding: 20px 0;
    font-size: 11px;
  }
}

@media screen and (max-width: 1200px) {
  .product-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-detail__inner {
    flex-direction: column;
  }

  .product-detail__right {
    margin-right: 0;
    width: 100%;
  }

  .product-detail__image {
    width: 100%;
    object-fit: contain;
    height: fit-content;
  }
}

@media screen and (max-width: 992px) {
  .qr-areas__tables {
    grid-template-columns: repeat(3, 1fr);
  }

  .header__contacts-link-wrap {
    flex-direction: column;
  }

  .product-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 786px) {
  .sl__title {
    font-size: 60px !important;
  }

  .sl__text {
    font-size: 28px !important;
  }
}

@media screen and (max-width: 768px) {
  .container-fluid {
    padding: 0 15px;
  }

  .mobile-show {
    display: block !important;
  }

  .order-detail__inner {
    flex-direction: column;
  }

  .order-detail__form {
    width: 100%;
  }

  .order-detail__data {
    width: 100%;
  }

  .cookie {
    display: none;
  }

  .setup-address {
    align-items: flex-start;
  }

  .setup-address__inner {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    overflow-y: scroll;
    border-radius: 0;
  }

  .qr-areas__tables {
    grid-template-columns: repeat(2, 1fr);
  }

  .cart__bottom {
    right: 20px;
    left: 20px;
    padding-bottom: 150px;
  }

  .cart__related::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background-color: var(--color-body);
  }

  .header__top {
    flex-direction: column;
  }

  .header__logo {
    margin-right: 0;
    margin-bottom: 20px;
    max-height: var(--logo-height);
  }

  .header__logo-wrap {
    max-height: fit-content;
  }

  .header__nav {
    position: fixed;
    top: 0;
    background-color: #fff;
    right: -100%;
    bottom: 0;
    width: 50%;
    padding: 20px;
    display: flex;
    align-items: center;
    z-index: 0;
  }

  .header__nav--active {
    right: 0;
  }

  .header__list {
    display: flex;
    flex-direction: column;
  }

  .header__item + .header__item {
    margin-top: 33px;
    margin-left: 0;
  }

  .header__link {
    padding: 8px 20px;
  }

  .header__dropdown {
    position: fixed;
    top: 83px;
    left: -100%;
    bottom: 0;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    overflow-y: scroll;
  }

  .header__dropdown--active {
    left: 0;
  }

  .header__dropdown-item {
    min-width: 100%;
  }

  .header__dropdown-link {
    min-width: 100%;
  }

  .header__right {
    position: relative;
    z-index: 2;
  }

  .header__contacts {
    justify-content: space-between;
    width: 100%;
  }

  .toggle-menu {
    display: block;
    margin-left: 20px;
  }

  .blog-top__inner {
    flex-direction: column;
  }

  .blog-top__image-wrap {
    max-width: 100%;
  }

  .news__item {
    margin-bottom: 20px;
  }

  .banner {
    height: fit-content;
    padding: 40px 0;
  }

  .banner__title {
    font-size: 30px;
  }

  .catalog__sidebar {
    display: none;
  }

  .product-detail__right {
    flex-direction: column;
  }

  .product-detail__nav {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    margin-right: 0;
    order: 2;
    margin-top: 20px;
  }

  .product-detail__left {
    max-width: 100%;
    width: 100%;
  }

  .product-detail__title {
    margin-top: 20px;
  }

  .product-thumbnail {
    display: none;
  }

  .header-bottom__inner {
    padding-right: 0;
    justify-content: flex-end;
    padding: 0;
  }

  .header-bottom__list {
    position: fixed;
    flex-direction: column;
    background-color: var(--color-mobile-menu);
    z-index: 99;
    padding: 40px;
    left: -550px;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    overflow-y: scroll;
    justify-content: flex-start;
    box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
    transition: all 0.5s ease;
  }

  .header-bottom__list--active {
    left: 0;
  }

  .header-bottom__list .header-bottom__dropdown-item a {
    padding: 0;
  }

  .header-bottom__list .header-bottom__dropdown-item + .header-bottom__dropdown-item {
    margin-top: 10px;
  }

  .header-bottom__list .header-bottom__link {
    color: var(--color-mobile-menu-font);
  }

  .header-bottom__list-mobile-title {
    display: block;
    margin-bottom: 20px;
    margin-top: 20px;
    font-weight: 700;
    color: var(--color-mobile-menu-font);
  }

  .header-bottom__dropdown-item {
    width: 100%;
    text-align: center;
  }

  .header-bottom__link {
    width: 100%;
    text-align: center;
  }

  .cat-home__inner-flex {
    grid-template-columns: repeat(3, 1fr);
  }

  .cat-home__inner-three {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-home__inner-four {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-home__inner-five {
    grid-template-columns: repeat(3, 1fr);
  }

  .cat-home__inner-six {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-home__item:nth-child(1) {
    grid-column: 1/4;
    grid-row: 1/4;
  }

  .cat-home__item:nth-child(2) {
    grid-column: 4/7;
  }

  .cat-home__item:nth-child(3) {
    grid-column: 7/10;
  }

  .cat-home__item:nth-child(4) {
    grid-column: 4/7;
  }

  .cat-home__item:nth-child(5) {
    grid-column: 7/10;
  }

  .cat-home__item:nth-child(6) {
    grid-column: 4/7;
  }

  .cat-home__item:nth-child(7) {
    grid-column: 7/10;
  }

  .order__body-wrap {
    padding: 0 20px 40px 20px;
  }

  .order__bottom {
    padding: 20px 20px 150px 20px;
  }
}

@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }

  .coupon {
    float: none;
  }

  #coupon_code {
    margin-bottom: 15px;
  }

  .coupon2 {
    float: none;
    margin-top: 15px;
  }
}

@media screen and (max-width: 576px) {
  .login form {
    padding: 20px;
  }

  .account__top {
    flex-direction: column;
  }

  .account__top-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .account__top-link {
    display: inline-block;
    padding: 20px;
    margin: 0 auto;
  }

  .account__top-link + .account__top-link {
    margin: 0 auto;
  }

  .account__top-user {
    display: none;
  }

  .account__list .primary_email {
    flex-wrap: wrap;
  }

  .account__list .buttonHolder button + button {
    margin-left: 0;
    margin-top: 10px;
  }

  .account__list .buttonHolder {
    display: flex;
    flex-direction: column;
  }

  .cart__inner {
    padding: 0;
    width: 100%;
  }

  .cart__top {
    padding: 20px;
  }

  .cart__body {
    padding: 20px;
  }

  .cart__items img {
    width: 116px !important;
    height: fit-content !important;
  }

  .cart__items li {
    flex-direction: column;
  }

  .cart__items li:last-child {
    border: none;
  }

  .cart__items li + li {
    border-top: 1px solid #767E91;
  }

  .cart__left-wrap {
    width: 100%;
    justify-content: space-between;
  }

  .cart__left {
    width: 100%;
  }

  .cart__item-info {
    min-width: auto;
    width: 70%;
  }

  .cart__item-name {
    font-size: 14px;
    max-width: 100%;
    white-space: pre-wrap;
  }

  .cart__summ {
    min-width: fit-content;
    font-size: 24px;
    font-weight: 500;
  }

  .cart__remove svg {
    width: 25px;
    height: 25px;
  }

  .cart__remove {
    margin-left: 10px;
  }

  .cart__items-wrap {
    width: 100%;
    justify-content: space-between;
    margin-top: 20px;
    white-space: nowrap;
    padding-bottom: 20px;
  }

  .cart__total {
    justify-content: center;
    margin-bottom: 20px;
  }

  .cart .btn {
    width: 100%;
  }

  .check-delivery__img {
    width: 100px;
  }

  .combo-popup {
    align-items: flex-start;
  }

  .combo-popup__inner {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    border-radius: 0;
  }

  .combo-popup__item-item {
    width: 100%;
  }

  .combo-popup__bottom {
    flex-direction: column;
  }

  .combo-popup__bottom-wrap {
    flex-direction: column;
    margin-right: 0;
  }

  .combo-popup__summ {
    font-size: 40px;
    margin-top: 20px;
  }

  .counter {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .cat-home__inner {
    display: flex;
    flex-direction: column;
  }

  .cat-home__inner-flex {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-home__item:nth-child(1) {
    height: 250px;
  }

  .constructor-popup__inner {
    height: 100%;
    flex-direction: column;
    width: 100%;
    overflow-y: scroll;
    border-radius: 0;
  }

  .constructor-popup__image {
    max-width: 100%;
    margin-right: 0;
    object-fit: contain;
  }

  .constructor-popup__row-wrap {
    max-width: 100%;
    padding: 20px 10px 50px 10px;
  }

  .constructor-popup__row {
    overflow: auto;
  }

  .reviews__row {
    grid-template-columns: repeat(1, 1fr);
  }

  .cookies {
    bottom: 15px;
    left: 15px;
    right: 15px;
    max-width: fit-content;
    padding: 10px;
  }
}

@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .content {
    margin-top: 165px;
  }

  .btn {
    padding: 12px 30px;
    font-size: 12px;
    height: fit-content !important;
  }

  .search--active .search__closer {
    top: 20px;
  }

  .search__closer {
    right: 20px;
  }

  .popup__inner {
    padding: 20px;
  }

  .minimum-bar__summ {
    font-size: 16px;
  }

  .minimum-bar__text {
    font-size: 12px;
  }

  .qr-header_call {
    margin-bottom: 10px;
    margin-top: 10px;
  }

  .qr-header__inner {
    flex-direction: column;
  }

  .qr-products__row {
    grid-template-columns: repeat(1, 1fr);
  }

  .qr-products__item {
    min-width: 100%;
    flex-direction: column;
  }

  .qr-products__item-left {
    order: 2;
    max-width: 100%;
  }

  .qr-products__item-right {
    order: 1;
    height: 200px;
  }

  .qr-products__thumb {
    width: 100%;
  }

  .qr-cart {
    padding: 20px;
  }

  .qr-cart__bottom {
    flex-direction: column;
  }

  .qr-cart__bottom .qr-header_call + .qr-header_call {
    margin-top: 10px;
  }

  .cart-btn {
    position: fixed;
    height: 80px;
    width: 100%;
    bottom: 0;
    z-index: 9999;
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
  }

  .cart-btn--remove {
    display: none;
  }

  .cart-btn__total {
    max-width: 50%;
    margin: 0 auto;
    text-align: center;
  }

  .check-delivery__img {
    width: 80px;
  }

  .header__logo {
    max-height: var(--logo-height);
    min-height: var(--logo-height);
    margin-bottom: 10px;
    max-width: 100%;
  }

  .header__subdomain-check {
    margin-bottom: 5px;
  }

  .header__right {
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
  }

  .header__cart-no-active-popup {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .header__work-time {
    font-size: 14px;
    margin-right: 0;
    margin-left: 0;
  }

  .header__contacts {
    flex-direction: column;
  }

  .header__contacts--col .header__contacts-btn {
    display: none;
  }

  .header__contacts-soc:last-child {
    margin-right: 0;
  }

  .start {
    max-height: var(--slider-height-mobile);
  }

  .sl__item {
    height: var(--slider-height-mobile);
    overflow: hidden;
    margin-top: 20px;
  }

  .sl__img {
    display: none !important;
    height: var(--slider-height-mobile);
  }

  .sl__img-mobile {
    display: block !important;
    border-radius: 8px;
    height: var(--slider-height-mobile);
    overflow: hidden;
  }

  .sl__wrap {
    max-width: var(--slider-text-width-mobile);
  }

  .sl__wrap--bg {
    padding: 20px 10px;
  }

  .sl__title {
    font-size: var(--slider-title-mobile) !important;
    line-height: 1;
  }

  .sl__text {
    font-size: 14px !important;
    line-height: 1;
  }

  .sl .owl-prev {
    display: none;
  }

  .sl .owl-next {
    display: none;
  }

  .product-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }

  .product-list--mini {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    padding-bottom: 20px;
  }

  .product-list--slider .product-list__item--big {
    padding: 10px;
  }

  .product-list__item--big .product-list__top {
    width: 100%;
  }

  .product-list__item--big .product-list__thumb {
    width: 100%;
    max-width: 100% !important;
    max-height: fit-content !important;
  }

  .product-list__item--big .product-list__image {
    width: 100%;
  }

  .product-list__item--big {
    width: 100%;
  }

  .product-list__item--mini {
    padding-bottom: 15px;
  }

  .product-list__item--mini .product-list__price {
    margin-right: 10px;
  }

  .product-list__item {
    width: 100%;
    padding: 10px;
  }

  .product-list__top {
    width: 100%;
  }

  .product-list__thumb {
    max-width: 100% !important;
    max-height: fit-content !important;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
  }

  .product-list__image {
    width: 100%;
    height: 370px;
  }

  .product-list__title {
    font-size: 16px;
    line-height: 1;
  }

  .product-list__weight {
    font-size: 16px;
  }

  .product-list__desc {
    font-size: 12px;
  }

  .product-list__prices {
    font-size: 20px;
  }

  .product-options-popup__inner {
    top: 0;
    transform: translateY(0);
    padding: 20px 20px;
    border-radius: 0;
    width: 100%;
    bottom: 0;
    height: 100vh;
  }

  .product-options-popup__options-row-wrap {
    max-height: 59%;
  }

  .news__item {
    width: 100%;
  }

  .news__wrap {
    width: 100%;
  }

  .sort__limit .d-none {
    display: none;
  }

  .product-detail__options-row {
    flex-direction: column;
  }

  .product-detail__options-name {
    max-width: 100%;
    margin-bottom: 10px;
  }

  .cat-home__inner-flex {
    grid-template-columns: repeat(1, 1fr);
  }

  .cat-home__inner-two {
    grid-template-columns: repeat(1, 1fr);
  }

  .cat-home__inner-three {
    grid-template-columns: repeat(1, 1fr);
  }

  .cat-home__inner-four {
    grid-template-columns: repeat(1, 1fr);
  }

  .cat-home__inner-five {
    grid-template-columns: repeat(1, 1fr);
  }

  .cat-home__inner-six {
    grid-template-columns: repeat(1, 1fr);
  }

  .order__top {
    padding: 20px;
  }

  .order__checkup-item-wrap--grid-two {
    grid-template-columns: repeat(1, 1fr);
  }

  .order__checkup-item-wrap--grid-four {
    grid-template-columns: repeat(2, 1fr);
  }

  .order__times-drop-owerlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: rgba(15, 32, 52, 0.7);
    backdrop-filter: blur(3px);
    display: none;
  }

  .order__times-drop-owerlay--active {
    display: block;
  }

  .order__times-drop {
    position: fixed;
    right: 20px;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }

  .order .dop-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .order .dop-item__wrap {
    margin-right: 0;
  }

  .order .dop-item__description {
    max-width: 100%;
  }

  .order__info-item p {
    margin: 0;
  }

  .order__info-item {
    font-size: 14px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .order__pay-methods {
    padding: 0 20px;
  }

  .order input[type=radio]:after,
  .order input[type=checkbox]:after {
    width: 26px;
    height: 26px;
  }

  .order input[type=radio]:checked:after,
  .order input[type=checkbox]:checked:after {
    width: 26px;
    height: 26px;
  }

  .checkout__counter {
    padding: 0 20px;
  }

  .checkout__counter-title {
    font-size: 9px;
  }

  .contacts-design__item {
    flex-direction: column;
  }

  .contacts-design__icon {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .popup-order-status__title {
    font-size: 10px;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .popup-order-status__inner {
    flex-direction: column;
  }

  .popup-order-status .status-item {
    font-size: 9px;
    flex-direction: column;
  }
}

@media screen and (max-width: 420px) {
  .cart-info {
    bottom: 10px;
    right: 10px;
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    min-width: calc(100% - 20px);
  }

  .check-delivery__inner {
    padding: 20px;
  }

  .check-delivery__item {
    padding: 20px;
  }

  .check-delivery__item + .check-delivery__item {
    margin-left: 10px;
  }

  .check-delivery__img {
    width: 50px;
  }

  .order__register-bottom {
    flex-direction: column;
  }

  .order__register-btn {
    margin-top: 10px;
  }
}

@media screen and (max-width: 400px) {
  .header__contacts-soc svg {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 390px) {
  .header__work-time {
    font-size: 12px;
  }
}

@media screen and (max-width: 320px) {
  .header__work-time {
    display: none;
  }
}
/*# sourceMappingURL=maps/style.css.map */
