@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent !important;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

img {
  max-width: 100%;
}

span, label {
  display: inline-block;
}

html {
  scroll-behavior: smooth;
}

input, textarea {
  outline: none;
  border: 0;
  background: transparent;
}

button {
  border: none;
  cursor: pointer;
  background: transparent;
  outline: 0;
  font-family: "Journal Sans New", sans-serif;
}

address {
  font-style: normal;
}

.wrapper {
  width: 100%;
  overflow: hidden;
  min-height: 100svh;
}

ul, ol, dl {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

body {
  font-family: "Journal Sans New", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #231F20;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.main_container {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1240px) {
  .main_container {
    max-width: calc(100% - 40px);
  }
}
@media screen and (max-width: 992px) {
  .main_container {
    max-width: 728px;
  }
}
@media screen and (max-width: 768px) {
  .main_container {
    max-width: calc(100% - 40px);
  }
}
@media screen and (max-width: 400px) {
  .main_container {
    max-width: calc(100% - 30px);
  }
}

.btn_green {
  width: 100%;
  text-align: center;
  padding: 17px 0;
  background: #009241;
  border-radius: 24px;
  font-size: 20px;
  line-height: 13px;
  color: #fff;
  transition: 0.3s ease all;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.btn_green:active {
  background: #00612B;
}
.btn_green.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.swp_pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.swp_pagination span {
  opacity: 1;
  padding: 0;
  margin: 0 !important;
  width: 10px;
  height: 10px;
  background: #F3F3F7;
}
.swp_pagination span.swiper-pagination-bullet-active {
  background: #009241;
}

.select_radio {
  gap: 10px;
}
.select_radio li {
  background: #F3F3F7;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}
.select_radio li input {
  display: none;
}
.select_radio li label {
  width: 100%;
  text-align: center;
  padding: 21px 0 19px;
  font-size: 20px;
  line-height: 13px;
  font-weight: 400;
  transition: 0.3s ease all;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.select_radio li input:checked ~ span {
  color: #009241;
}
.select_radio__bg {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: -1;
  left: 0;
  background: #D0EDD0;
  border-radius: 30px;
  transition: 0.3s ease all;
}

.form_inp {
  position: relative;
}
.form_inp input, .form_inp select {
  width: 100%;
  background: #F3F3F7;
  border-radius: 12px;
  height: 60px;
  padding: 0 20px 0 30px;
  font-size: 18px;
  color: #4B4B4B;
  border: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-position: calc(100% - 20px) center;
  background-repeat: no-repeat;
}
.form_inp input::-moz-placeholder, .form_inp select::-moz-placeholder {
  color: #4B4B4B;
}
.form_inp input::placeholder, .form_inp select::placeholder {
  color: #4B4B4B;
}
.form_inp .error_text {
  display: none;
}
.form_inp.error select, .form_inp.error input {
  background-color: #F5D1D2;
}
.form_inp.error .error_text {
  display: flex;
  margin-bottom: -10px;
}
.form_inp .warning {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  transform: translateY(-100%);
  background: #D0EDD0;
  border-radius: 12px;
  padding: 20px 20px 20px 30px;
  display: none;
}
@media screen and (min-width: 992px) {
  .form_inp .warning {
    width: 390px;
    top: 0;
    transform: translate(100%, 0);
    z-index: 5;
    left: auto;
    right: -30px;
  }
}
.form_inp .warning button {
  position: absolute;
  top: 10px;
  right: 10px;
}
.form_inp .warning_head {
  margin-bottom: 12px;
}
.form_inp .warning p {
  font-size: 16px;
  line-height: 125%;
}
.form_inp__btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.form_inp.active {
  z-index: 3;
}
.form_inp.active .warning {
  display: block;
}

.warning_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(35, 31, 32, 0.6);
  z-index: 2;
  display: none;
}
.warning_bg.active {
  display: block;
}

.error_text {
  align-items: center;
  gap: 12px;
  color: #CE181E;
  font-size: 12px;
  line-height: 14px;
  font-family: "Franklin Gothic Book", sans-serif;
  margin-top: 10px;
}

.checkbox_wrap input {
  display: none;
}
.checkbox_wrap label {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F3F7;
  border-radius: 9px;
  flex-shrink: 0;
}
.checkbox_wrap label img {
  display: none;
}
.checkbox_wrap input:checked ~ label img {
  display: block;
}

.header {
  margin-bottom: 60px;
}
@media screen and (max-width: 992px) {
  .header {
    padding: 24px 0 5px;
    margin-bottom: 30px;
  }
}
.header__top {
  background: #454242;
  color: #fff;
  padding: 5px 0 6px;
}
@media screen and (max-width: 991px) {
  .header__top {
    display: none;
  }
}
.header__top .main_container {
  padding-left: 45px;
}
.header__top a {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 16px;
  text-decoration: underline;
}
.header__top ul {
  gap: 26px;
}
.header__top ul a {
  text-decoration: none;
}
.header__logo {
  flex-shrink: 0;
}
.header__logo img {
  width: 157px;
}
@media screen and (max-width: 992px) {
  .header__logo img {
    width: 50px;
  }
}
.header__location {
  gap: 18px;
}
.header__location span {
  font-family: "Franklin Gothic Book", sans-serif;
  font-size: 11.7px;
  line-height: 13px;
}
.header__location span img {
  transform: translateY(-6px);
  margin-left: 7px;
}
.header__location .align-items-start {
  padding-top: 3px;
}
.header__location .location_text {
  font-family: "Journal Sans New", sans-serif;
  font-weight: bold;
  font-size: 13.96px;
  line-height: 9px;
}
.header__bars {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__bars img:nth-child(2) {
  display: none;
}
.header__bars.active img {
  display: none;
}
.header__bars.active img:nth-child(2) {
  display: block;
}
.header__right {
  padding-left: 29px;
  padding-top: 17px;
}
.header__contact {
  gap: 16px;
  transform: translateX(-94.5px);
}
.header__contact p {
  color: #646464;
  font-size: 16px;
  line-height: 16px;
}
.header__contact .line {
  width: 1px;
  height: 37px;
  background: #646464;
  flex-shrink: 0;
}
.header__contact a .tel {
  color: #D90502;
  font-size: 16px;
  line-height: 16px;
}
.header__contact a .tel span {
  font-size: 25px;
  font-weight: 700;
}
.header__contact a .text {
  font-size: 12.28px;
  line-height: 16px;
  color: #646464;
  border-bottom: 1px dashed #646464;
}
.header .basket-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header .basket-icon span {
  position: absolute;
  right: -6px;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #AE1A23;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: bold;
}
.header__navs {
  padding-left: 14px;
  gap: 26px;
}
.header__navs_wrap {
  gap: 51px;
  border-top: 1px solid #C2C2C2;
  padding-top: 13px;
  margin-top: 15px;
}
.header__navs_link {
  font-size: 14px;
  line-height: 16px;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 1240px) {
  .header__navs li:nth-child(10) {
    display: none;
  }
}
@media screen and (max-width: 1150px) {
  .header__navs li:nth-child(9) {
    display: none;
  }
}
@media screen and (max-width: 1070px) {
  .header__navs li:nth-child(8) {
    display: none;
  }
}

.menu {
  position: fixed;
  z-index: 5;
  top: 79px;
  left: 0;
  width: 100%;
  height: calc(100% - 79px);
  background: #fff;
  overflow-y: scroll;
  display: none;
}
.menu::-webkit-scrollbar {
  display: none;
}
.menu.active {
  display: block;
}
.menu .main_container {
  padding: 30px 0 79px;
}
.menu__profile {
  border: 3px solid #009241;
  border-radius: 20px;
  min-height: 94px;
  padding: 14px 17px;
  gap: 61px;
  margin-bottom: 40px;
}
.menu__profile h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: bold;
}
.menu__profile p {
  font-size: 12px;
  line-height: 14px;
}
.menu__profile p a {
  display: inline;
  text-decoration: underline;
}
.menu__profile_alert {
  background: #009241;
  color: #fff;
  border-radius: 60px;
  font-size: 19px;
  line-height: 21px;
  padding: 6px 17.5px;
}
.menu__profile:not(.auth) {
  gap: 20px;
}
.menu__nav a {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10px 40px 10px 67px;
  transition: 0.3s ease all;
  border-radius: 50px;
  gap: 10px;
  font-size: 18px;
  line-height: 23px;
}
.menu__nav a svg path {
  transition: 0.3s ease all;
}
.menu__nav a:hover, .menu__nav a.active {
  background: #009241;
  color: #fff;
}
.menu__nav a:hover svg path, .menu__nav a.active svg path {
  stroke: #fff;
}
.menu .tel {
  width: 100%;
  gap: 10px;
  padding: 20px 40px 20px 67px;
  border-top: 2px solid #F3F3F7;
  border-bottom: 2px solid #F3F3F7;
  margin: 40px 0;
}
.menu .application {
  padding: 0 40px 0 68px;
}
.menu .application p {
  font-size: 15px;
  line-height: 15px;
  max-width: 123px;
  margin-bottom: 10px;
}
.menu .application ul {
  gap: 10px;
}
.menu .application ul a {
  border: 2px solid #009241;
  border-radius: 50px;
  padding: 6px 15.5px;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease all;
}
.menu .application ul a svg path {
  transition: 0.3s ease all;
}
.menu .application ul a:hover, .menu .application ul a:active {
  background: #009241;
  color: #fff;
}
.menu .application ul a:hover svg path, .menu .application ul a:active svg path {
  stroke: #fff;
}

.home {
  margin-bottom: 40px;
}
.home .swiper {
  margin-bottom: 10px;
  overflow: visible;
}
.home .swiper-slide a {
  width: 100%;
}
.home .swiper-slide img {
  width: 100%;
}

.category_pagination {
  margin-bottom: 40px;
}
.category_pagination .swiper {
  overflow: visible;
}
.category_pagination .swiper-slide {
  width: auto;
}
.category_pagination__link {
  padding: 8.5px 20px;
  border-radius: 27px;
  font-size: 19px;
  line-height: 13px;
  transition: 0.3s ease all;
}
.category_pagination__link.active {
  background: #009241;
  color: #fff;
}

.about {
  margin-bottom: 40px;
}
.about__title {
  font-size: 25px;
  line-height: 110%;
  font-weight: 400;
  margin-bottom: 20px;
}
.about__content {
  gap: 20px;
}
.about__content p {
  font-size: 16px;
  line-height: 125%;
}
.about__content p a {
  display: inline;
  font-weight: bold;
  text-decoration: underline;
}
.about__content p:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid #F3F3F7;
}

.popular {
  margin-bottom: 40px;
}
.popular__title {
  font-size: 23px;
  line-height: 120%;
  margin-bottom: 20px;
}
.popular .swiper {
  overflow: visible;
  margin-bottom: 10px;
}
.popular .swiper-wrapper {
  align-items: stretch;
}
.popular .swiper-slide {
  height: auto !important;
  position: relative;
}
.popular__card {
  background: #F3F3F7;
  position: relative;
  padding: 0 10px 20px;
  border-radius: 12px;
}
.popular__card img {
  height: 153px;
  min-width: calc(100% + 20px);
  display: block;
  margin-left: -10px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 4px;
}
.popular__card .title {
  font-size: 15px;
  font-weight: bold;
  line-height: 12.5px;
  margin-bottom: 10px;
  min-height: 25px;
}
.popular__card .description {
  font-size: 12px;
  line-height: 12px;
  color: #4B4B4B;
  min-height: 36px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.popular__card .price {
  padding: 9px 14px;
  background: #D0EDD0;
  border-radius: 14px;
  color: #009241;
  line-height: 9px;
  font-size: 13px;
}
.popular__link {
  background: #009241;
  border-radius: 12px;
  padding: 20px 43px 20px 20px;
  color: #fff;
  font-size: 25px;
  line-height: 110%;
  color: #fff;
}
.popular__link img {
  margin-top: 10px;
}

.product {
  margin-bottom: 120px;
}
.product__card {
  position: relative;
  background: #F3D9AB;
  border-radius: 12px;
  padding: 20px;
  min-height: 231px;
  z-index: 1;
}
.product__card_wrap {
  gap: 20px;
  margin-bottom: 41px;
}
.product__card img {
  position: absolute;
  z-index: -1;
}
.product__card h3 {
  font-size: 23px;
  line-height: 28px;
  margin-bottom: 20px;
  max-width: 199px;
}
.product__card p {
  max-width: 180px;
  font-size: 16px;
  line-height: 17px;
}
.product__card:nth-child(1) img {
  top: -5px;
  right: 20px;
}
.product__card:nth-child(2) img {
  top: 0;
  right: 0;
}
.product__card:nth-child(3) img {
  bottom: 0;
  right: 0;
}
.product__content:nth-child(2) {
  margin-bottom: 40px;
}
.product__content h3 {
  font-size: 25px;
  line-height: 28px;
  margin-bottom: 20px;
  font-weight: 400;
}
.product__content .texts {
  gap: 15px;
}
.product__content p {
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
}
.product__content p span, .product__content p a {
  font-weight: bold;
  display: inline;
}
.product__content p a {
  text-decoration: underline;
}

.footer {
  background: #231F20;
  color: #fff;
  padding: 40px 0;
}
.footer__contact a:not(.footer__logo) {
  margin: 44px 0 19px;
  font-size: 30px;
  line-height: 20px;
  font-weight: bold;
}
.footer__contact p {
  font-size: 16px;
  line-height: 20px;
}
.footer__network {
  margin: 40px 0;
  border-top: 2px solid rgba(243, 243, 247, 0.1);
  border-bottom: 2px solid rgba(243, 243, 247, 0.1);
  padding: 20px 0;
}
.footer__network h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.footer__network ul {
  gap: 10px;
}
.footer__network .application {
  margin-bottom: 40px;
}
.footer__network .application .btn_green {
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15.5px;
}
.footer__network h4 {
  font-size: 16px;
  line-height: 125%;
  font-weight: 400;
  margin-bottom: 10px;
}
.footer__network .networks .btn_green {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.footer__bottom_contact a {
  font-size: 20px;
  line-height: 26px;
  font-weight: bold;
  margin-bottom: 10px;
}
.footer__bottom_contact h4 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 5px;
}
.footer__bottom_contact p {
  font-size: 12px;
  line-height: 14px;
  font-family: "Franklin Gothic Book", sans-serif;
}
.footer__bottom .more {
  margin: 40px 0;
  font-size: 18px;
  line-height: 23px;
  text-decoration: underline;
}
.footer__bottom .texts {
  gap: 20px;
}
.footer__bottom .texts p {
  font-size: 12px;
  line-height: 120%;
  font-family: "Franklin Gothic Book", sans-serif;
}

.select-city {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: none;
}
.select-city__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(35, 31, 32, 0.6);
}
.select-city__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 30px 30px 0 0;
  padding: 40px 0 77px;
}
.select-city .main_container {
  position: relative;
}
.select-city__close {
  position: absolute;
  width: 41px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #F3F3F7;
  right: 0;
  top: -20px;
}
.select-city h2 {
  font-size: 25px;
  font-weight: bold;
  line-height: 28px;
  margin-bottom: 10px;
}
.select-city p {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
}
.select-city .btns {
  gap: 20px;
}
.select-city .btns button {
  color: #009241;
  font-size: 22px;
  line-height: 15px;
  background: #D0EDD0;
  border-radius: 30px;
  padding: 20px;
}
.select-city .btns button.active {
  background: #009241;
  color: #fff;
}
.select-city.active {
  display: block;
}
@keyframes selectCityBgActive {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes selectCityContentActive {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.select-city.active .select-city__bg {
  animation: selectCityBgActive 0.2s linear 1;
}
.select-city.active .select-city__content {
  animation: selectCityContentActive 0.2s linear 1;
}
.select-city.end-active {
  display: block;
}
@keyframes selectCityBgEndActive {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes selectCityContentEndActive {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 1;
  }
}
.select-city.end-active .select-city__bg {
  opacity: 0;
  animation: selectCityBgEndActive 0.2s linear 1;
}
.select-city.end-active .select-city__content {
  opacity: 0;
  animation: selectCityContentEndActive 0.2s linear 1;
}

.catalog {
  margin-bottom: 120px;
}
.catalog__item {
  display: none;
  flex-direction: column;
  gap: 20px;
}
.catalog__item.active {
  display: flex;
}
.catalog__card {
  width: 100%;
  background: #F3F3F7;
  border-radius: 12px;
  overflow: hidden;
  gap: 14px;
}
.catalog__card img {
  width: 43.0769230769%;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.catalog__card .title {
  font-size: 17px;
  font-weight: bold;
  line-height: 14px;
  margin-bottom: 10px;
  display: -webkit-box;
}
.catalog__card .description {
  font-family: "Franklin Gothic Book", sans-serif;
  font-size: 12px;
  line-height: 13px;
  color: #4B4B4B;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.catalog__card .price {
  background: #D0EDD0;
  border-radius: 20px;
  font-size: 14px;
  line-height: 11px;
  color: #009241;
  padding: 10px 18px;
}
.catalog__card .d-flex {
  padding: 20px 20px 20px 0;
}

.card-product .main_container {
  min-height: 100vh;
  position: relative;
  padding: 40px 0;
  gap: 40px;
}
.card-product__close {
  position: absolute;
  position: absolute;
  top: 44px;
  right: 0;
}
.card-product__head .main_img p {
  position: absolute;
  top: 70px;
  left: 0;
  font-size: 16px;
  line-height: 12px;
  padding: 12px 17.5px;
  border-radius: 35px;
  font-family: "SF Pro Text", sans-serif;
  font-weight: 600;
}
.card-product__head .main_img p.alert_orange {
  background: #FFF3E2;
  color: #FF9500;
}
.card-product__head .main_img p.alert_green {
  background: #D0EDD0;
  color: #009241;
}
.card-product__head .main_img img {
  width: 100%;
  height: 352px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 14px;
}
.card-product__head h2 {
  font-size: 30px;
  font-weight: bold;
  line-height: 20px;
  margin-bottom: 19px;
}
.card-product__head h4 {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 9px;
  font-weight: 400;
  color: #4B4B4B;
}
.card-product__head .description {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  font-family: "Franklin Gothic Book", sans-serif;
  margin-bottom: 40px;
}
.card-product__head .select_radio {
  margin-bottom: 40px;
}
.card-product__head h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 28px;
  text-align: left;
  margin-bottom: 20px;
}
.card-product .card_select {
  gap: 10px 13px;
}
.card-product .card_select__item {
  border: 2px solid #F3F3F7;
  border-radius: 12px;
  padding: 8px;
  width: calc(33.3333333333% - 8.6666666667px);
}
.card-product .card_select__item .main_img {
  width: 100%;
  height: 83px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 3px;
}
.card-product .card_select__item p {
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 10px;
}
.card-product .card_select__item .calculate {
  padding: 0 5px;
}
.card-product .card_select__item .calculate button {
  display: none;
}
.card-product .card_select__item .calculate_price {
  background: #D0EDD0;
  width: 100%;
  border-radius: 40px;
  font-size: 15px;
  line-height: 10px;
  padding: 6.5px;
}
.card-product .card_select__item.active {
  border-color: #009241;
}
.card-product .card_select__item.active .main_img {
  margin-bottom: 1px;
}
.card-product .card_select__item.active .calculate {
  display: flex;
  align-items: center;
}
.card-product .card_select__item.active .calculate button {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.card-product .card_select__item.active .calculate span {
  background: transparent;
  padding: 0;
  line-height: 11px;
  font-size: 17px;
  font-weight: bold;
}

@media (max-width: 400px) {
  .card-product .card_select__item {
    width: calc(50% - 6.5px);
  }
}
.main_breadcrumb {
  margin-bottom: 10px;
}
.main_breadcrumb .main_container {
  gap: 2px;
}
.main_breadcrumb .main_container a, .main_breadcrumb .main_container span {
  font-family: "Franklin Gothic Book", sans-serif;
  font-size: 12px;
  line-height: 12px;
  color: #4B4B4B;
}
.main_breadcrumb .main_container a {
  text-decoration: underline;
}

.stock {
  margin-bottom: 120px;
}
.stock__title {
  font-size: 23px;
  line-height: 25px;
  margin-bottom: 20px;
  font-weight: 400;
  text-transform: uppercase;
}
.stock_card {
  gap: 40px;
}
.stock_card img {
  width: 100%;
  border-radius: 12px;
  height: 168px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}
.stock_card h3 {
  font-size: 25px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 10px;
}
.stock_card p {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
}
.stock_card a {
  display: inline-flex;
  width: auto;
  padding: 9px 47px;
  font-size: 18px;
  line-height: 23px;
}

.stock-one {
  margin-bottom: 120px;
}
.stock-one .main_img {
  width: 100%;
  border-radius: 12px;
  height: 276px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}
.stock-one h2 {
  font-size: 23px;
  line-height: 28px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.stock-one ul {
  gap: 10px;
  font-size: 16px;
  line-height: 125%;
  margin-bottom: 40px;
}
.stock-one p {
  font-size: 12px;
  line-height: 130%;
  margin-bottom: 106px;
}
.stock-one a {
  font-size: 22px;
  padding: 20px;
}

@media screen and (min-width: 992px) {
  .gift {
    background: rgba(35, 31, 32, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gift__container {
    background: #fff;
    border-radius: 20px;
  }
}
.gift__container {
  gap: 40px;
  padding: 10px 0 26px;
}
@media screen and (min-width: 992px) {
  .gift__container {
    max-width: 790px !important;
    padding: 36px 40px 0;
    position: relative;
    overflow: hidden;
  }
}
@media screen and (max-width: 992px) {
  .gift__container {
    min-height: calc(100vh - 109px);
  }
}
.gift__subtitle {
  font-size: 25px;
  line-height: 28px;
  margin-bottom: 10px;
}
@media screen and (max-width: 992px) {
  .gift__subtitle {
    font-size: 20px;
    line-height: 13px;
    text-align: center;
  }
}
.gift__title {
  color: #CE181E;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 33px;
  line-height: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 992px) {
  .gift__title {
    font-size: 23px;
    line-height: 15px;
    text-align: center;
    margin-bottom: 30px;
  }
}
.gift__close {
  position: absolute;
  top: 30px;
  right: 40px;
}
.gift__card {
  background: #F3F3F7;
  position: relative;
  width: 100%;
  border-radius: 12px;
  padding: 0 20px 0 6px;
  gap: 14px;
}
@media screen and (min-width: 992px) {
  .gift__card {
    width: calc(33.3333333333% - 11.3333333333px);
    padding: 0;
    gap: 0px;
    height: 355px;
  }
}
.gift__card_wrap {
  gap: 17px;
}
@media screen and (max-width: 992px) {
  .gift__card_wrap {
    gap: 20px;
  }
}
.gift__card_left {
  flex-shrink: 0;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .gift__card_left {
    height: 230px;
  }
}
@media screen and (max-width: 992px) {
  .gift__card_left {
    width: 156px;
  }
}
.gift__card_left .main_img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.gift__card_left span {
  position: absolute;
  top: 18px;
  left: 18px;
}
@media screen and (max-width: 992px) {
  .gift__card_left span {
    top: 10px;
    left: 4px;
  }
}
.gift__card_right {
  width: 100%;
  padding: 0 19px 0 18px;
}
@media screen and (max-width: 992px) {
  .gift__card_right {
    padding: 14px 0;
  }
}
.gift__card_right h3 {
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 992px) {
  .gift__card_right h3 {
    font-size: 17px;
    line-height: 14px;
  }
}
.gift__card_right p {
  font-size: 12px;
  line-height: 110%;
  color: #4B4B4B;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gift__card_right .prices {
  margin-top: 20px;
}
.gift__card_right .prices h4 {
  color: #4B4B4B;
  font-weight: 400;
  font-size: 14px;
}
.gift__card_right .prices h4 span {
  font-size: 15px;
  font-weight: bold;
}
.gift__card_right .prices .btn_green {
  font-size: 14px;
  line-height: 9px;
  padding: 11px 13.5px;
  width: auto;
  display: inline-flex;
}
.gift__card_btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #009241;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 18px 24px;
  font-size: 24px;
  line-height: 110%;
  color: #fff;
}
@media screen and (min-width: 992px) {
  .gift__card_btn {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 992px) {
  .gift__card_btn {
    padding: 40px;
    font-size: 20px;
    line-height: 17.5px;
    gap: 20px;
    align-items: center;
    flex-direction: row;
  }
}
.gift__card.active .gift__card_btn {
  display: none !important;
}
@media screen and (min-width: 992px) {
  .gift_foot {
    box-shadow: 0 -1px 15px rgba(0, 0, 0, 0.15);
    width: calc(100% + 80px);
    margin-left: -40px;
    padding: 18px 0 17px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gift_foot .btn_green {
    width: auto;
    padding: 20px 85px;
    font-size: 22px;
    line-height: 15px;
    border-radius: 30px;
  }
}

@media (max-width: 400px) {
  .gift__card_left {
    width: 130px;
  }
}
@media (max-width: 370px) {
  .gift__card_left {
    width: 110px;
  }
}
.select_gift {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: none;
}
@media screen and (min-width: 992px) {
  .select_gift {
    justify-content: center;
    align-items: center;
  }
}
.select_gift__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .select_gift__bg {
    background: rgba(35, 31, 32, 0.6);
  }
}
.select_gift__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 30px 30px 0 0;
  padding: 20px 0 40px;
}
@media screen and (min-width: 992px) {
  .select_gift__content {
    padding: 36px 40px 0;
    border-radius: 20px;
  }
}
@media screen and (max-width: 992px) {
  .select_gift__content {
    max-height: calc(100vh - 75px);
    overflow-y: scroll;
  }
  .select_gift__content::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .select_gift__content {
    width: 790px;
    position: static;
  }
}
.select_gift .swiper-slide:not(.swiper-slide-active) {
  height: 0;
  overflow: hidden;
}
.select_gift .title {
  margin-bottom: 8px;
}
@media screen and (min-width: 992px) {
  .select_gift .title {
    margin-bottom: 20px;
  }
}
.select_gift .title h3 {
  font-size: 25px;
  line-height: 28px;
}
.select_gift .title h3 span {
  display: block;
  font-size: 16px;
  line-height: 20px;
  margin-top: 5px;
}
@media screen and (min-width: 992px) {
  .select_gift .title h3 span {
    font-size: 20px;
    line-height: 125%;
  }
}
.select_gift .pizza_list {
  gap: 10px;
}
@media screen and (min-width: 992px) {
  .select_gift .pizza_list {
    height: 529px;
    overflow-y: scroll;
    gap: 20px;
    padding-right: 30px;
  }
  .select_gift .pizza_list::-webkit-scrollbar {
    width: 15px;
  }
  .select_gift .pizza_list::-webkit-scrollbar-track {
    border-radius: 50px;
    background: #F3F3F7;
  }
  .select_gift .pizza_list::-webkit-scrollbar-thumb {
    background: #4B4B4B;
    border-radius: 50px;
  }
}
.select_gift .pizza_list__item {
  background: #F3F3F7;
  border-radius: 12px;
  gap: 10px;
  width: calc(33.3333333333% - 6.6666666667px);
  overflow: hidden;
  padding-bottom: 10px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (min-width: 992px) {
  .select_gift .pizza_list__item {
    width: calc(25% - 15px);
    border-radius: 14.73px;
  }
}
.select_gift .pizza_list__item img {
  width: 100%;
  height: 98px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 4.47px;
}
@media screen and (min-width: 992px) {
  .select_gift .pizza_list__item img {
    height: 121px;
  }
}
.select_gift .pizza_list__item h4 {
  font-size: 12px;
  line-height: 10px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .select_gift .pizza_list__item h4 {
    font-size: 14.73px;
    line-height: 100%;
  }
}
.select_gift .pizza_list__item p {
  font-size: 11px;
  line-height: 12px;
}
@media screen and (min-width: 992px) {
  .select_gift .pizza_list__item p {
    font-size: 13.5px;
    line-height: 110%;
  }
}
.select_gift .pizza_list__item.active {
  border: 3px solid #009241;
  padding-bottom: 7px;
}
.select_gift .pizza_list__item.active img {
  margin-top: -3px;
}
@media screen and (min-width: 992px) {
  .select_gift .pizza_card {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 63px 6px;
  }
}
.select_gift .pizza_card .main_img {
  height: 293px;
  width: 100%;
  margin: 7px 0 34px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 992px) {
  .select_gift .pizza_card .main_img {
    height: 388px;
    width: 380px;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 992px) {
  .select_gift .pizza_card__right {
    width: calc(100% - 386px);
  }
}
.select_gift .pizza_card h3 {
  font-size: 30px;
  line-height: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .select_gift .pizza_card h3 {
    font-size: 33px;
    line-height: 120%;
    margin-bottom: 0;
    text-transform: uppercase;
  }
}
.select_gift .pizza_card h4 {
  font-size: 14px;
  line-height: 9px;
  margin-bottom: 40px;
  font-weight: 400;
  font-family: "Franklin Gothic Book", sans-serif;
}
@media screen and (min-width: 992px) {
  .select_gift .pizza_card h4 {
    margin-bottom: 30px;
  }
}
.select_gift .pizza_card p {
  font-size: 18px;
  line-height: 22px;
  font-family: "Franklin Gothic Book", sans-serif;
  font-weight: 400;
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .select_gift .pizza_card p {
    font-size: 16px;
    line-height: 120%;
  }
}
.select_gift .pizza_card a {
  margin-top: 54px;
  font-size: 22px;
  line-height: 15px;
  padding: 20px;
}
@media screen and (min-width: 992px) {
  .select_gift .pizza_card .btn_wrap {
    box-shadow: -1px -1px 15px rgba(0, 0, 0, 0.15);
    min-width: calc(100% + 80px);
    margin-left: -40px;
    padding: 18px 0 17px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .select_gift .pizza_card .btn_wrap a {
    margin: 0;
    width: 345px;
  }
}
@media screen and (min-width: 992px) {
  .select_gift .swiper {
    overflow: visible;
  }
}
.select_gift.active {
  display: block;
}
@media screen and (min-width: 992px) {
  .select_gift.active {
    display: flex;
  }
}
@keyframes selectGiftBgActive {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 992px) {
  .select_gift.active .select_gift__bg {
    animation: selectGiftBgActive 0.2s linear 1;
  }
}
@keyframes selectGiftContentActive {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@media screen and (max-width: 992px) {
  .select_gift.active .select_gift__content {
    animation: selectGiftContentActive 0.2s linear 1;
  }
}
.select_gift.end-active {
  display: block;
}
@keyframes selectGiftBgEndActive {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.select_gift.end-active .select_gift__bg {
  opacity: 0;
}
@media screen and (max-width: 992px) {
  .select_gift.end-active .select_gift__bg {
    animation: selectGiftBgEndActive 0.2s linear 1;
  }
}
@keyframes selectGiftContentEndActive {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100%);
  }
}
.select_gift.end-active .select_gift__content {
  opacity: 0;
}
@media screen and (max-width: 992px) {
  .select_gift.end-active .select_gift__content {
    animation: selectGiftContentEndActive 0.2s linear 1;
  }
}

@media (max-width: 400px) {
  .select_gift .pizza_list__item {
    width: calc(50% - 5px);
  }
}
.booking {
  padding: 20px 0 95px;
}
.booking__title {
  font-size: 23px;
  line-height: 28px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.booking .inp_group {
  gap: 20px;
  margin-bottom: 40px;
}
.booking .inp_group .form_inp:nth-child(1) input {
  background-image: url("../images/user-circle-icon.svg");
}
.booking .inp_group .form_inp select {
  background-image: url("../images/arrow-down.svg");
}
.booking .inp_group__item {
  gap: 10px;
}
.booking .inp_group__item .form_inp:nth-child(1) {
  width: 130px;
  flex-shrink: 0;
}
.booking .inp_group__item .form_inp:nth-child(2) {
  width: calc(100% - 240px);
}
.booking .inp_group__item .form_inp:nth-child(3) {
  width: 90px;
  flex-shrink: 0;
}
.booking .inp_group__item .form_inp:nth-child(3) input {
  padding: 0 10px 0 9px;
}
.booking .inp_group__item .error_text {
  display: none;
}
.booking .inp_group__item.error .error_text {
  display: flex;
  margin-top: 0;
}
.booking h3 {
  font-size: 15px;
  line-height: 10px;
  font-weight: bold;
  margin-bottom: 20px;
}
.booking textarea {
  width: 100%;
  height: 213px;
  background: #F3F3F7;
  border-radius: 12px;
  resize: none;
  padding: 20px 30px;
  color: #4B4B4B;
  font-size: 16px;
  margin-bottom: 20px;
}
.booking .checkbox_wrap {
  gap: 20px;
  margin-bottom: 176px;
}
.booking .checkbox_wrap p {
  font-size: 12px;
  line-height: 120%;
  font-family: "Franklin Gothic Book", sans-serif;
}
.booking .checkbox_wrap p a {
  display: inline;
  text-decoration: underline;
}
.booking .btn_green {
  font-size: 22px;
  line-height: 15px;
  padding: 20px;
}

@media (max-width: 400px) {
  .booking .inp_group__item {
    flex-direction: column;
  }
  .booking .inp_group__item .form_inp {
    width: 100% !important;
  }
  .booking .inp_group__item .form_inp input {
    padding: 0 20px 0 30px !important;
  }
}
.store {
  margin-bottom: 120px;
}
.store__title {
  font-size: 23px;
  line-height: 28px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 400;
}
.store__description {
  font-size: 15px;
  line-height: 17px;
  font-family: "Franklin Gothic Book", sans-serif;
  margin-bottom: 20px;
  color: #4B4B4B;
}
.store .balance {
  display: inline-flex;
  padding: 10.5px 25px;
  color: #fff;
  font-size: 15px;
  line-height: 10px;
  background: #009241;
  border-radius: 60px;
  margin-bottom: 42px;
}
.store ul {
  gap: 20px;
}

.store-card .main_container {
  position: relative;
  min-height: 100vh;
  gap: 40px;
  padding: 40px 0;
}
.store-card .main_img {
  height: 382px;
  margin-bottom: 14px;
}
.store-card .main_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.store-card .title {
  font-size: 30px;
  line-height: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.store-card .subtitle {
  font-size: 14px;
  line-height: 9px;
  color: #4B4B4B;
  margin-bottom: 40px;
}
.store-card p {
  font-family: "Franklin Gothic Book", sans-serif;
  font-size: 18px;
  line-height: 22px;
}
.store-card__close {
  position: absolute;
  top: 40px;
  right: 0;
}

.personal-area {
  padding: 20px 0 120px;
}
.personal-area__title {
  font-size: 23px;
  line-height: 28px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .personal-area__title {
    font-size: 40px;
    line-height: 120%;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 992px) {
  .personal-area__content {
    gap: 30px;
  }
  .personal-area__content_item:nth-child(1) {
    width: 175px;
    flex-shrink: 0;
  }
  .personal-area__content_item:nth-child(2) {
    width: 100%;
  }
  .personal-area__content_item:nth-child(3) {
    width: 300px;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1140px) {
  .personal-area__content_item:nth-child(3) {
    width: 380px;
  }
}
.personal-area__head {
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .personal-area__head {
    gap: 20px;
  }
}
.personal-area__head h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: bold;
  margin-bottom: 5px;
}
@media screen and (min-width: 992px) {
  .personal-area__head h3 {
    font-size: 28px;
    line-height: 110%;
    margin-bottom: 10px;
  }
}
.personal-area__head a {
  font-size: 16px;
  line-height: 20px;
  color: #4B4B4B;
}
@media screen and (min-width: 992px) {
  .personal-area__head a {
    font-size: 18px;
    line-height: 125%;
  }
}
.personal-area__head .btn_green {
  padding: 6px 17.5px;
  width: auto;
  font-size: 19px;
  line-height: 21px;
  font-weight: 400;
}
@media screen and (min-width: 992px) {
  .personal-area__head .btn_green {
    background: #D0EDD0;
    color: #009241;
    font-size: 16px;
    line-height: 130%;
    width: 133px;
  }
}
.personal-area .my-card__open {
  border-radius: 15px;
  padding: 23.5px;
  line-height: 13px;
  margin-bottom: 20px;
}
.personal-area .cashback {
  border: 3px solid #D0EDD0;
  border-radius: 15px;
  padding: 17px 0 7px 17px;
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .personal-area .cashback {
    padding: 31px 0 10px 40px;
    border-radius: 20px;
    overflow: hidden;
  }
}
.personal-area .cashback h3 {
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 20px;
  font-weight: 400;
}
@media screen and (min-width: 992px) {
  .personal-area .cashback h3 {
    font-size: 25px;
    line-height: 32px;
  }
}
.personal-area .cashback h3 span {
  font-weight: 600;
}
.personal-area .cashback ul {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 78px;
  position: relative;
  z-index: 1;
  margin-left: 21px;
}
@media screen and (min-width: 992px) {
  .personal-area .cashback ul {
    gap: 80px;
    margin-left: 0;
  }
}
@media screen and (min-width: 1140px) {
  .personal-area .cashback ul {
    gap: 121px;
  }
}
.personal-area .cashback ul::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 12px;
  height: 21px;
  width: calc(100% - 12px);
  background: #D0EDD0;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .personal-area .cashback ul::before {
    height: 31px;
  }
}
.personal-area .cashback ul::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 18px;
  height: 21px;
  width: 101px;
  background: #009241;
  z-index: -1;
  border-radius: 0 60px 60px 0;
}
@media screen and (min-width: 992px) {
  .personal-area .cashback ul::after {
    height: 31px;
  }
}
.personal-area .cashback ul .number {
  border: 3px solid #D0EDD0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #009241;
  font-size: 16px;
  line-height: 19px;
  font-weight: bold;
  background: #fff;
}
@media screen and (min-width: 992px) {
  .personal-area .cashback ul .number {
    width: 64px;
    height: 64px;
    font-size: 20px;
    line-height: 125%;
    padding-top: 5px;
  }
}
.personal-area .cashback ul .number.active {
  background: #009241;
  color: #fff;
}
.personal-area .cashback ul li {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  width: 56px;
}
.personal-area .cashback ul h4 {
  font-size: 14px;
  line-height: 9px;
  color: #009241;
  font-weight: 400;
}
@media screen and (min-width: 992px) {
  .personal-area .cashback ul h4 {
    font-size: 16px;
    line-height: 125%;
  }
}
.personal-area .cashback p {
  font-size: 12px;
  line-height: 14px;
  color: #4B4B4B;
  font-family: "Franklin Gothic Book", sans-serif;
  margin-top: 30px;
}
@media screen and (min-width: 992px) {
  .personal-area .cashback p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 120%;
  }
}
.personal-area .bonuce-link {
  font-size: 12px;
  line-height: 14px;
  color: #4B4B4B;
  font-family: "Franklin Gothic Book", sans-serif;
  text-decoration: underline;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .personal-area .bonuce-link {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 120%;
  }
}
@media screen and (min-width: 992px) {
  .personal-area .links {
    background: #F3F3F7;
    border-radius: 12px;
    gap: 20px;
    padding: 34px 30px 35px;
  }
}
.personal-area .links a {
  padding: 10px 10px 10px 20px;
  font-size: 18px;
  line-height: 23px;
}
@media screen and (min-width: 992px) {
  .personal-area .links a {
    padding: 0;
  }
}

@media (max-width: 420px) {
  .personal-area .cashback ul {
    gap: 50px;
  }
  .personal-area .cashback ul::after {
    width: 80px;
  }
}
.order_history__title {
  font-size: 30px;
  line-height: 120%;
  font-weight: normal;
  margin: 60px 0 40px;
  text-transform: uppercase;
}
.order_history__list {
  gap: 26px;
}
.order_history__item {
  background: #F3F3F7;
  border-radius: 11px;
  padding: 30px 58px 31px 30px;
  gap: 91px;
}
.order_history__item_left p {
  font-size: 16px;
  line-height: 120%;
  font-family: "Franklin Gothic Book", sans-serif;
  margin-bottom: 10px;
}
.order_history__item_left .alert_green {
  background: #D0EDD0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 28px;
  font-size: 14px;
  line-height: 130%;
}
.order_history__item_left .alert_danger {
  background: #F5D1D2;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 28px;
  font-size: 14px;
  line-height: 130%;
}
.order_history__item_left .alert_light {
  background: #FFF;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 28px;
  font-size: 14px;
  line-height: 130%;
}
.order_history__item_right .price {
  flex-shrink: 0;
}
.order_history__item_right h3 {
  font-size: 22px;
  line-height: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}
.order_history__item_right h4 {
  font-size: 22px;
  line-height: 110%;
}
.order_history__item_right p {
  width: 100%;
  margin: 0 30px 0 57px;
  font-size: 14px;
  line-height: 125%;
}
.order_history__item_right .btn_green {
  width: 117px;
  flex-shrink: 0;
  height: 39px;
  padding: 0;
  font-size: 14px;
  line-height: 125%;
}

.main-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: none;
}
@media screen and (min-width: 992px) {
  .main-modal {
    align-items: center;
    justify-content: center;
  }
}
.main-modal__bg {
  background: rgba(35, 31, 32, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 992px) {
  .main-modal__bg {
    z-index: -1;
  }
}
.main-modal__content {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  border-radius: 30px 30px 0 0;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .main-modal__content {
    width: 790px;
    position: static;
    border-radius: 20px;
  }
}
.main-modal .main_container {
  position: relative;
}
@media screen and (min-width: 992px) {
  .main-modal .main_container {
    padding: 30px 40px 0;
  }
}
.main-modal__close {
  position: absolute;
  top: 20px;
  right: 0;
  z-index: 2;
}
@media screen and (min-width: 992px) {
  .main-modal__close {
    top: 30px;
    right: 40px;
  }
}
.main-modal.active {
  display: block;
}
@media screen and (min-width: 992px) {
  .main-modal.active {
    display: flex;
  }
}
@keyframes modalBgActive {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.main-modal.active .main-modal__bg {
  animation: modalBgActive 0.2s linear 1;
}
@keyframes modalContentActive {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.main-modal.active .main-modal__content {
  animation: modalContentActive 0.2s linear 1;
}
.main-modal.end-active {
  display: block;
}
@media screen and (min-width: 992px) {
  .main-modal.end-active {
    display: flex;
  }
}
@keyframes modalBgEndActive {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.main-modal.end-active .main-modal__bg {
  opacity: 0;
  animation: modalBgEndActive 0.2s linear 1;
}
@keyframes modalContentEndActive {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 1;
  }
}
.main-modal.end-active .main-modal__content {
  opacity: 0;
  animation: modalContentEndActive 0.2s linear 1;
}
.main-modal form .inputs {
  gap: 10px;
  margin-bottom: 10px;
}
.main-modal form .inputs.error input {
  background: #F5D1D2;
}
.main-modal form input {
  width: 40px;
  height: 60px;
  text-align: center;
  background: #F3F3F7;
  border-radius: 10px;
  font-size: 30px;
  line-height: 20px;
  font-weight: bold;
  padding-top: 5px;
}
.main-modal form .error-text {
  font-size: 12px;
  line-height: 14px;
  font-family: "Franklin Gothic Book", sans-serif;
  gap: 12px;
  color: #CE181E;
  margin-bottom: 10px;
}
.main-modal form .error-text img {
  width: 18px;
  flex-shrink: 0;
}
.main-modal form .request-code {
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  color: #4B4B4B;
  margin-bottom: 41px;
  text-decoration: underline;
  font-family: "Franklin Gothic Book", sans-serif;
}
.main-modal form .time {
  font-size: 12px;
  line-height: 120%;
  color: #4B4B4B;
  font-family: "Franklin Gothic Book", sans-serif;
  text-align: center;
  margin-bottom: 40px;
}

.my-card .main_container {
  padding: 94px 0 67px;
}
@media screen and (min-width: 992px) {
  .my-card .main_container {
    min-width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .my-card .main-modal__content {
    width: 440px;
  }
}
.my-card .main_img {
  height: 235px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.exit-profile .main_container {
  padding: 40px 0 153px;
}
@media screen and (min-width: 992px) {
  .exit-profile .main_container {
    min-width: 100%;
    padding: 30px 30px 40px;
  }
}
@media screen and (min-width: 992px) {
  .exit-profile .main-modal__content {
    width: 440px;
  }
}
.exit-profile h2 {
  font-size: 25px;
  line-height: 28px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .exit-profile h2 {
    text-align: left;
    margin-bottom: 40px;
    font-weight: normal;
  }
}
.exit-profile .links {
  gap: 20px;
}
.exit-profile .links a {
  background: #D0EDD0;
  border-radius: 30px;
  padding: 20px;
  width: 100%;
  font-size: 22px;
  line-height: 15px;
  color: #009241;
}

.profile {
  padding: 20px 0 120px;
}
.profile__title {
  font-size: 23px;
  line-height: 28px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .profile__title {
    font-size: 40px;
    line-height: 120%;
    margin-bottom: 40px;
  }
}
.profile .form_group {
  gap: 20px;
}
.profile .form_group__item {
  gap: 20px;
}
.profile .form_group .select_family__item {
  display: none;
}
@media screen and (min-width: 992px) {
  .profile .form_group {
    margin-bottom: 40px;
  }
  .profile .form_group__item {
    gap: 30px;
  }
  .profile .form_group__item:nth-child(2) .form_inp:nth-child(3) {
    width: 175px;
    flex-shrink: 0;
  }
  .profile .form_group .select_family__item {
    display: block;
    width: 175px;
    flex-shrink: 0;
    position: relative;
  }
  .profile .form_group .select_family__item p {
    position: absolute;
    top: -30px;
    left: 0;
  }
  .profile .form_group .form_inp {
    width: 100%;
  }
}
.profile .form_inp.tel input {
  background-image: url("../images/warning-gray.svg");
}
.profile .form_inp.date input {
  background-image: url("../images/warning-dark.svg");
}
.profile .select_family {
  gap: 10px;
}
@media screen and (min-width: 992px) {
  .profile .select_family {
    gap: 30px;
  }
  .profile .select_family:nth-child(1) .select_family__item:nth-child(1) {
    display: none;
  }
}
.profile .select_family__wrap {
  gap: 20px;
  margin: 20px 0 40px;
}
@media screen and (min-width: 992px) {
  .profile .select_family__wrap {
    width: 390px;
    gap: 40px;
  }
}
.profile .select_family__item {
  width: calc(50% - 5px);
}
.profile .select_family__item p {
  font-size: 16px;
  line-height: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .profile .select_family__item p {
    padding-left: 0;
  }
}
.profile .select_family input {
  font-size: 16px;
}
.profile .select_family .warning {
  width: calc(200% + 10px);
}
.profile .select_family .form_inp__btn {
  right: 10px;
}
.profile .calculate {
  background: #F3F3F7;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.profile .calculate button {
  width: 53px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #009241;
  border-radius: 50%;
}
.profile .calculate_price {
  font-size: 25px;
  line-height: 110%;
}
.profile .select_radio label {
  font-size: 25px;
  height: 53px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile .select_radio li input:checked ~ span {
  color: #fff;
}
.profile .select_radio__bg {
  background: #009241;
}
.profile__foot {
  gap: 20px;
}
@media screen and (min-width: 992px) {
  .profile__foot {
    width: 390px;
  }
}
.profile__foot label {
  gap: 20px;
}
.profile__foot label input {
  display: none;
}
.profile__foot label .icon {
  width: 30px;
  height: 30px;
  background: #F3F3F7;
  border-radius: 9px;
  display: flex;
  flex-shrink: 0;
  position: relative;
}
.profile__foot label .icon::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding-top: 4px;
}
.profile__foot label input:checked ~ .icon::before {
  display: flex;
}
.profile__foot label .text {
  font-size: 12px;
  line-height: 120%;
  font-family: "Franklin Gothic Book", sans-serif;
}
.profile .btn_green {
  margin-top: 40px;
}
@media screen and (min-width: 992px) {
  .profile .btn_green {
    width: 230px;
  }
}

@media (max-width: 400px) {
  .profile .select_family input {
    font-size: 14px;
  }
}
.order-history {
  padding: 20px 0 120px;
}
.order-history__title {
  font-size: 23px;
  line-height: 28px;
  margin-bottom: 20px;
}
.order-history .order_list {
  gap: 20px;
}
.order-history .order_list__item {
  background: #F3F3F7;
  border-radius: 12px;
  padding: 20px 20px 20px 30px;
}
.order-history .order_list__item ul {
  margin-bottom: 20px;
}
.order-history .order_list__item li {
  font-size: 14px;
  line-height: 125%;
}
.order-history .order_list__item .btn_green {
  padding: 10px 21.5px;
  display: inline-flex;
  width: auto;
  font-size: 14px;
  line-height: 11px;
}
.order-history .order_head {
  margin-bottom: 10px;
}
.order-history .order_head__left .date {
  font-size: 12px;
  line-height: 120%;
  margin-right: 15px;
}
.order-history .order_head__left .alert_green, .order-history .order_head__left .alert_danger, .order-history .order_head__left .alert_light {
  font-size: 12px;
  line-height: 16px;
  padding: 2px 10px;
  display: inline-flex;
  border-radius: 15px;
}
.order-history .order_head__left .alert_green {
  background: #D0EDD0;
}
.order-history .order_head__left .alert_danger {
  background: #F5D1D2;
}
.order-history .order_head__left .alert_light {
  background: #fff;
}
.order-history .order_head h3 {
  margin-top: 5px;
  font-size: 20px;
  line-height: 26px;
  font-weight: bold;
}
.order-history .order_head h4 {
  font-size: 25px;
  line-height: 28px;
  font-weight: bold;
}

.order_modal .main_container {
  padding: 36px 40px 0;
}
@media screen and (min-width: 992px) {
  .order_modal .main_container {
    min-width: 100%;
  }
}
.order_modal h2 {
  font-size: 23px;
  line-height: 120%;
  margin-bottom: 20px;
  font-weight: 400;
}
.order_modal .alert_danger {
  display: inline-block;
  background: #F5D1D2;
  border-radius: 30px;
  width: 96px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 40px;
}
.order_modal .alert_green {
  display: inline-block;
  background: #D0EDD0;
  border-radius: 30px;
  width: 96px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 40px;
}
.order_modal .alert_light {
  display: inline-block;
  background: #FFF;
  border-radius: 30px;
  width: 96px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 40px;
}
.order_modal .catalog__card {
  padding: 9px 9px 9px 21px;
  gap: 20px;
  min-height: auto;
}
.order_modal .catalog__card_wrap {
  height: 421px;
  overflow-y: scroll;
  padding-right: 20px;
  width: 380px;
  flex-shrink: 0;
  margin-right: 40px;
  gap: 20px;
}
.order_modal .catalog__card_wrap::-webkit-scrollbar {
  width: 15px;
}
.order_modal .catalog__card_wrap::-webkit-scrollbar-track {
  background: #F3F3F7;
  border-radius: 30px;
}
.order_modal .catalog__card_wrap::-webkit-scrollbar-thumb {
  background: #4B4B4B;
  border-radius: 30px;
}
.order_modal .catalog__card span {
  padding: 0;
}
.order_modal .catalog__card img {
  width: 142px;
  height: 129px;
  -o-object-fit: contain;
     object-fit: contain;
}
.order_modal .catalog__card .title {
  font-size: 17px;
  line-height: 11px;
  margin-bottom: 10px;
}
.order_modal .catalog__card .description {
  font-size: 12px;
  line-height: 13px;
  margin-bottom: 10px;
}
.order_modal .catalog__card .volume {
  font-size: 14px;
  line-height: 9px;
  margin-bottom: 20px;
}
.order_modal .catalog__card .price {
  padding: 10px 18px;
  font-size: 14px;
  line-height: 11px;
}
.order_modal .datas {
  gap: 21px;
}
.order_modal .datas h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: bold;
  margin-bottom: 5px;
}
.order_modal .datas p {
  font-size: 16px;
  line-height: 125%;
}
.order_modal .btn_wrap {
  box-shadow: 0 -1px 15px rgba(0, 0, 0, 0.15);
  width: calc(100% + 80px);
  margin-left: -40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0 17px;
}
.order_modal .btn_wrap .btn_green {
  width: 345px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 22px;
}

.order-card {
  padding: 20px 0 120px;
}
.order-card__head {
  margin-bottom: 20px;
}
.order-card__head h2 {
  font-size: 23px;
  line-height: 28px;
  text-transform: uppercase;
  font-weight: 400;
}
.order-card__head .alert_danger, .order-card__head .alert_green, .order-card__head .alert_light {
  font-size: 16px;
  line-height: 20px;
  padding: 6px 14px;
  border-radius: 50px;
}
.order-card__head .alert_danger {
  background: #F5D1D2;
}
.order-card__head .alert_green {
  background: #D0EDD0;
}
.order-card__head .alert_light {
  background: #FFF;
}
.order-card .catalog__card_wrap {
  gap: 20px;
  margin-bottom: 40px;
}
.order-card .catalog__card .description {
  margin-bottom: 10px;
}
.order-card .catalog__card .volume {
  font-size: 14px;
  line-height: 9px;
  margin-bottom: 20px;
}
.order-card .datas {
  gap: 21px;
  margin-bottom: 49px;
}
.order-card .datas li {
  gap: 5px;
}
.order-card .datas h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: bold;
}
.order-card .datas p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.address {
  padding: 30px 0 120px;
}
.address__title {
  margin-bottom: 30px;
  font-size: 23px;
  line-height: 28px;
  font-weight: 400;
}
.address__list {
  gap: 20px;
  margin-bottom: 28px;
}
.address__card {
  gap: 50px;
  background: #F3F3F7;
  border-radius: 12px;
  padding: 20px 20px 20px 30px;
}
.address__card p {
  font-size: 16px;
  line-height: 125%;
}
.address_btn {
  gap: 20px;
  font-size: 16px;
  line-height: 125%;
  color: #009241;
}

.add_address .main-modal__content .main_container, .new_address .main-modal__content .main_container {
  height: calc(100vh - 50px);
  padding: 27px 0 60px;
}
.add_address .main-modal__close, .new_address .main-modal__close {
  z-index: 2;
}
.add_address h2, .new_address h2 {
  font-size: 23px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 26px;
  text-transform: uppercase;
}
.add_address .form_group, .new_address .form_group {
  gap: 20px;
}
.add_address .form_group__item, .new_address .form_group__item {
  gap: 15px;
}
.add_address .form_group input, .new_address .form_group input {
  font-size: 16px;
  padding: 0 20px 0 30px;
}

@media (max-width: 400px) {
  .add_address .form_group input, .new_address .form_group input {
    font-size: 14px;
  }
  .add_address .form_group__item, .new_address .form_group__item {
    gap: 10px;
  }
}
.basket {
  padding: 20px 0 120px;
}
.basket__title {
  font-size: 23px;
  line-height: 28px;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 400;
}
.basket__subtitle {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .basket_content {
    gap: 30px;
  }
}
.basket_card {
  background: #F3F3F7;
  border-radius: 12px;
  position: relative;
  padding: 10px 76px 10px 10px;
  gap: 10px;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .basket_card {
    gap: 40px;
    padding: 0 62px 0 30px;
  }
}
.basket_card__wrap {
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .basket_card__wrap {
    width: 600px;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1050px) {
  .basket_card__wrap {
    width: 650px;
  }
}
@media screen and (min-width: 1170px) {
  .basket_card__wrap {
    width: 790px;
  }
}
.basket_card .main_img {
  width: 100px;
  flex-shrink: 0;
}
@media screen and (min-width: 992px) {
  .basket_card .main_img {
    height: 194px;
    width: 190px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.basket_card .main_img.full {
  width: 110px;
  margin: -10px 0 -10px -10px;
  height: 122px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 992px) {
  .basket_card .main_img.full {
    height: 194px;
    width: 198px;
    margin: 0 30px 0 -30px;
  }
}
.basket_card__right {
  padding: 10px 0;
}
@media screen and (min-width: 992px) {
  .basket_card__right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
  }
}
.basket_card h3 {
  font-size: 17px;
  line-height: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}
.basket_card p {
  font-size: 12px;
  line-height: 13px;
  font-family: "Franklin Gothic Book", sans-serif;
  color: #4B4B4B;
}
.basket_card .price {
  font-size: 13px;
  color: #4B4B4B;
  line-height: 9px;
  margin-top: 20px;
}
@media screen and (min-width: 992px) {
  .basket_card .price {
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
  }
}
.basket_card .price span {
  color: #231F20;
  font-size: 17px;
  line-height: 11px;
  font-weight: bold;
}
@media screen and (max-width: 992px) {
  .basket_card .price span {
    width: 80px;
  }
}
@media screen and (min-width: 992px) {
  .basket_card div:not(.price):not(.calculate) {
    width: 100%;
  }
}
.basket_card .calculate {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: #009241;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80px;
  height: 31px;
  padding: 0 11px;
}
@media screen and (min-width: 992px) {
  .basket_card .calculate {
    position: static;
    transform: translate(0);
    flex-shrink: 0;
  }
}
.basket_card .calculate button {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.basket_card .calculate button img {
  width: 100%;
}
.basket_card .calculate_price {
  font-size: 14px;
  line-height: 11px;
  color: #fff;
}
.basket_card a:not(.btn_green) {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.basket_card a:not(.btn_green) img {
  width: 10px;
}
.basket_card.prize {
  min-height: 122px;
  padding: 10px 10px 10px 20px;
  gap: 31px;
}
@media screen and (min-width: 992px) {
  .basket_card.prize {
    padding: 10px 45px 12px 30px;
    gap: 40px;
  }
}
.basket_card.prize .main_img {
  width: 69px;
}
@media screen and (min-width: 992px) {
  .basket_card.prize .main_img {
    width: 190px;
  }
}
.basket_card.prize .btn_green {
  padding: 11px 13px;
  display: inline-flex;
  font-size: 14px;
  line-height: 9px;
  width: auto;
}
.basket_card.prize .basket_card__right {
  gap: 12px;
}
.basket .other {
  margin-bottom: 40px;
}
.basket .other h3 {
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 20px;
  font-weight: bold;
}
.basket .other h3 span {
  gap: 10px;
}
.basket .other .swiper {
  overflow: visible;
}
.basket .other_card {
  width: 290px;
  padding: 7px 17px 7px 7px;
  border: 3px solid #F3F3F7;
  border-radius: 12px;
  gap: 20px;
}
.basket .other_card img {
  flex-shrink: 0;
}
.basket .other_card h4 {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 20px;
}
.basket .other_card .btn_green {
  font-size: 14px;
  line-height: 11px;
  padding: 10px 18px;
  width: auto;
  display: inline-flex;
}
.basket .promo-code {
  margin-bottom: 40px;
}
.basket .promo-code h3 {
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 20px;
  font-weight: bold;
}
.basket .promo-code .form_inp .icon {
  position: absolute;
  right: 20px;
  top: 17.5px;
}
.basket .promo-code .form_inp.success input {
  border: 3px solid #009241;
  height: 60px;
}
.basket .promo-code .form_inp.error input {
  border: 3px solid #CE181E;
  height: 60px;
  background: #F3F3F7;
}
.basket__data {
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .basket__data {
    background: #D0EDD0;
    border-radius: 12px;
    margin-bottom: 40px;
    padding: 30px;
  }
}
.basket__data .title {
  font-size: 23px;
  font-weight: bold;
  line-height: 120%;
  padding-bottom: 20px;
}
.basket__data h4 {
  font-size: 16px;
  line-height: 20px;
}
.basket__data p {
  font-size: 12px;
  line-height: 14px;
  margin-top: 5px;
  font-family: "Franklin Gothic Book", sans-serif;
}
.basket__data h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: bold;
}
@media screen and (max-width: 992px) {
  .basket__data li:nth-child(3) {
    margin-top: -3px;
  }
}
@media screen and (min-width: 992px) {
  .basket__data li:nth-child(4) {
    padding: 20px 0;
  }
}

@media (max-width: 400px) {
  .basket_card {
    padding-right: 80px;
  }
  .basket_card .main_img {
    width: 90px;
  }
  .basket_card .main_img.full {
    width: 100px;
  }
  .basket_card h3 {
    font-size: 15px;
  }
  .basket_card p {
    font-size: 10px;
  }
  .basket_card .calculate {
    width: 70px;
  }
  .basket_card.prize {
    gap: 21px;
  }
  .basket_card.prize .basket_card__right {
    gap: 5px;
  }
  .basket_card.prize .btn_green {
    width: 70px;
    font-size: 12px;
  }
}
.my_prize .main_container {
  height: 488px;
  padding-top: 36px;
}
@media screen and (min-width: 992px) {
  .my_prize .main_container {
    height: 433px;
  }
}
.my_prize h2 {
  font-size: 28px;
  line-height: 28px;
  color: #000;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .my_prize h2 {
    text-align: left;
    font-size: 25px;
    line-height: 110%;
    margin-bottom: 66px;
  }
}
.my_prize__card {
  gap: 11px;
}
@media screen and (min-width: 992px) {
  .my_prize__card {
    gap: 30px;
  }
}
@media screen and (min-width: 992px) {
  .my_prize__card .main_img {
    width: 340px;
  }
}
.my_prize__card h3 {
  font-size: 17px;
  line-height: 11px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .my_prize__card h3 {
    font-size: 30px;
    line-height: 100%;
    margin-bottom: 20px;
  }
}
.my_prize__card p {
  font-size: 12px;
  line-height: 13px;
  color: #4B4B4B;
  font-family: "Franklin Gothic Book", sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .my_prize__card p {
    max-width: 274px;
    font-size: 16px;
    line-height: 120%;
    margin-bottom: 30px;
  }
}
.my_prize__card .btn_green {
  padding: 11px 17.5px;
  font-size: 14px;
  line-height: 9px;
  display: inline-flex;
  width: auto;
}

@media screen and (min-width: 992px) {
  .autorization .main-modal__content {
    width: 440px;
  }
}
.autorization .main_container {
  padding: 40px 0 130px;
  max-height: calc(100vh - 75px);
}
@media screen and (min-width: 992px) {
  .autorization .main_container {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 992px) {
  .autorization .main_container {
    overflow-y: scroll;
  }
  .autorization .main_container::-webkit-scrollbar {
    display: none;
  }
}
.autorization .title {
  font-size: 25px;
  line-height: 110%;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .autorization .title {
    text-align: left;
    font-weight: normal;
  }
  .autorization .title br {
    display: none;
  }
}
.autorization .subtitle {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .autorization .subtitle {
    margin-bottom: 30px;
  }
}
.autorization .form_inp {
  margin-bottom: 20px;
}
.autorization .form_inp .error_text {
  padding-left: 29px;
  margin-top: 5px;
}
@media screen and (min-width: 992px) {
  .autorization .form_inp .error_text {
    padding-left: 0;
    margin-top: 10px;
  }
}
.autorization .checkbox {
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .autorization .checkbox {
    margin-bottom: 20px;
  }
}
.autorization .checkbox label {
  flex-shrink: 0;
}
.autorization .checkbox label input {
  display: none;
}
.autorization .checkbox label span {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F3F7;
  border-radius: 9px;
  font-size: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.autorization .checkbox label span img {
  display: none;
}
.autorization .checkbox label input:checked ~ span img {
  display: block;
}
.autorization .checkbox p {
  font-size: 12px;
  line-height: 120%;
}
.autorization .checkbox p a {
  display: inline;
  text-decoration: underline;
}
.autorization .captcha {
  border-radius: 3.87px;
  box-shadow: 0 0 5.17px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .autorization .captcha {
    margin-bottom: 30px;
  }
}
.autorization .swiper-wrapper {
  align-items: stretch;
}
.autorization .swiper-slide {
  height: auto;
  background: #fff;
}
@media screen and (min-width: 992px) {
  .autorization .swiper-slide:not(.swiper-slide-active) {
    height: 0;
    overflow: hidden;
  }
}

.customer {
  padding: 20px 0 120px;
}
.customer__title {
  font-size: 23px;
  line-height: 28px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .customer__title {
    margin-bottom: 40px;
    font-size: 40px;
    line-height: 120%;
  }
}
@media screen and (min-width: 992px) {
  .customer__content {
    gap: 30px;
  }
}
@media screen and (min-width: 992px) {
  .customer__content_left {
    width: 585px;
  }
}
.customer__content .basket__data {
  width: 380px;
}
.customer__content .basket__data li:nth-child(4) {
  padding: 0;
}
.customer__content .basket__data li:nth-child(5) {
  padding: 20px 0;
}
.customer__form {
  gap: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .customer__form {
    width: calc(100vw - 450px);
  }
}
@media screen and (min-width: 1240px) {
  .customer__form {
    width: calc(100% + 205px);
  }
}
.customer__form .form_inp {
  width: 100%;
}
.customer .title {
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 20px;
  font-weight: bold;
}
.customer .select_radio {
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .customer .select_radio {
    width: 380px;
  }
}
.customer__address {
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .customer__address {
    width: calc(100vw - 450px);
  }
}
@media screen and (min-width: 1240px) {
  .customer__address {
    width: calc(100% + 205px);
  }
}
.customer__address button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.customer__address .form_group {
  gap: 20px;
}
@media screen and (min-width: 992px) {
  .customer__address .form_group {
    gap: 30px;
  }
}
.customer__address .form_group .form_inp {
  width: 100%;
}
.customer__address .form_group__item {
  gap: 10px;
}
@media screen and (min-width: 992px) {
  .customer__address .form_group__item {
    gap: 20px 30px;
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .customer__address .form_group__item:last-child .form_inp {
    width: calc(50% - 15px);
  }
}
.customer__address .form_group__item:last-child .form_inp input {
  text-align: center;
  padding: 0 10px;
}
.customer__address label {
  gap: 10px;
  margin-top: 10px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.customer__address label input {
  display: none;
}
.customer__address label .icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F3F7;
  border-radius: 9px;
}
.customer__address label .icon img {
  width: 14px;
  opacity: 0;
}
.customer__address label input:checked ~ .icon img {
  opacity: 1;
}
.customer__address label .text {
  font-size: 12px;
  line-height: 14px;
  font-family: "Franklin Gothic Book", sans-serif;
  color: #4B4B4B;
}
.customer .select_pizza {
  margin-bottom: 40px;
}
.customer .select_pizza .form_inp button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.customer__delivery {
  margin-bottom: 40px;
}
.customer__delivery_checkbox {
  gap: 40px;
  margin-bottom: 20px;
}
.customer__delivery_checkbox label {
  display: flex;
  align-items: center;
  gap: 20px;
}
.customer__delivery_checkbox label input {
  display: none;
}
.customer__delivery_checkbox label .icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #231F20;
  border-radius: 7px;
}
.customer__delivery_checkbox label .icon img {
  display: none;
}
.customer__delivery_checkbox label .text {
  font-size: 16px;
  line-height: 20px;
}
.customer__delivery_checkbox label input:checked ~ .icon {
  border: 0;
}
.customer__delivery_checkbox label input:checked ~ .icon img {
  display: block;
}
.customer__delivery_inputs {
  gap: 20px;
}
.customer__delivery_inputs div {
  gap: 20px;
}
.customer__delivery_inputs input {
  background: #F3F3F7;
  border-radius: 12px;
  width: calc(50% - 10px);
  height: 60px;
  padding: 0px 30px;
  font-size: 16px;
  line-height: 125%;
}
.customer__delivery_inputs input:focus {
  border: 2px solid #009241;
}
.customer__delivery_inputs ul {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: scroll;
  width: calc(100% + 40px);
  margin-left: -20px;
  padding: 0 20px;
}
.customer__delivery_inputs ul::-webkit-scrollbar {
  display: none;
}
.customer__delivery_inputs ul button {
  background: #F3F3F7;
  padding: 10px 26px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 20px;
}
.customer__delivery_inputs ul button.active {
  border: 2px solid #009241;
  padding: 8px 24px;
}
.customer__cutlery {
  margin-bottom: 40px;
}
.customer__cutlery_body {
  margin-bottom: 20px;
}
.customer__cutlery .cutlery_left {
  gap: 20px;
}
.customer__cutlery .cutlery_left h4 {
  font-size: 16px;
  line-height: 20px;
}
.customer__cutlery .calculate {
  width: 140px;
  background: #F3F3F7;
  border-radius: 40px;
  flex-shrink: 0;
}
.customer__cutlery .calculate button {
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #009241;
  border-radius: 50%;
}
.customer__cutlery .calculate_price {
  font-size: 18px;
}
.customer__cutlery .alert_green {
  background: #D0EDD0;
  border-radius: 10px;
  padding: 13px 30px;
  font-size: 12px;
  line-height: 120%;
  color: #4B4B4B;
  position: relative;
}
.customer__cutlery .alert_green__close {
  position: absolute;
  top: 5px;
  right: 10px;
}
.customer__comment {
  margin-bottom: 40px;
}
.customer__comment textarea {
  background: #F3F3F7;
  border-radius: 12px;
  resize: none;
  width: 100%;
  height: 80px;
  font-size: 16px;
  line-height: 125%;
  color: #4B4B4B;
  padding: 20px 30px;
}

@media (max-width: 400px) {
  .customer__form input {
    padding: 0px 20px;
    font-size: 16px;
  }
  .customer__address .form_group input {
    font-size: 16px !important;
  }
}
.pizza_modal .main_container {
  padding: 40px 0;
}
@media screen and (min-width: 992px) {
  .pizza_modal .main_container {
    padding: 40px 10px 30px 40px;
    min-width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .pizza_modal .main_container {
    max-height: 592px;
    overflow-y: scroll;
  }
  .pizza_modal .main_container::-webkit-scrollbar {
    display: none;
  }
}
.pizza_modal h2 {
  text-align: center;
  font-weight: bold;
  font-size: 25px;
  line-height: 28px;
  color: #000;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .pizza_modal h2 {
    margin-bottom: 40px;
    text-align: left;
    font-weight: normal;
  }
}
.pizza_modal ul {
  gap: 20px;
}
@media screen and (min-width: 992px) {
  .pizza_modal ul {
    overflow-y: scroll;
    height: 529px;
    padding-right: 15px;
  }
  .pizza_modal ul::-webkit-scrollbar {
    width: 15px;
  }
  .pizza_modal ul::-webkit-scrollbar-track {
    background: #F3F3F7;
    border-radius: 50px;
  }
  .pizza_modal ul::-webkit-scrollbar-thumb {
    background: #4B4B4B;
    border-radius: 50px;
  }
}
.pizza_modal ul li {
  background: #F3F3F7;
  border-radius: 12px;
  padding: 20px 20px 20px 30px;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (min-width: 992px) {
  .pizza_modal ul li {
    line-height: 125%;
    padding: 25px 30px;
  }
}
.pizza_modal ul li.active {
  border: 2px solid #009241;
  padding: 18px 18px 18px 28px;
}
@media screen and (min-width: 992px) {
  .pizza_modal ul li.active {
    padding: 23px 27px;
  }
}

.address_modal .main_container {
  padding: 40px 0 89px;
}
@media screen and (min-width: 992px) {
  .address_modal .main_container {
    padding: 40px;
    overflow: hidden;
    min-width: 100% !important;
  }
}
.address_modal h2 {
  font-size: 25px;
  line-height: 28px;
  text-align: center;
  color: #000;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .address_modal h2 {
    line-height: 110%;
    text-align: left;
    font-weight: 400;
    margin-bottom: 46px;
  }
}
@media screen and (min-width: 992px) {
  .address_modal .swiper {
    overflow: visible;
  }
}
.address_modal .swiper-wrapper {
  align-items: stretch;
}
.address_modal .swiper-slide {
  height: auto;
  background: #fff;
}
.address_modal .swiper-slide:not(.swiper-slide-active) {
  height: 0;
  overflow: hidden;
}
.address_modal .form_group {
  gap: 20px;
  margin-bottom: 40px;
}
.address_modal .form_group__1 {
  gap: 20px;
}
.address_modal .form_group__1 .form_inp {
  width: 100%;
}
.address_modal .form_group__item {
  gap: 15px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .address_modal .form_group__item {
    gap: 20px;
  }
  .address_modal .form_group__item:nth-child(1) {
    width: calc(60% - 8px);
  }
  .address_modal .form_group__item:nth-child(2) {
    width: calc(40% - 12px);
  }
}
.address_modal .form_group__item_wrap {
  gap: 20px;
}
.address_modal .form_group__item .form_inp {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .address_modal .btn_wrap {
    width: calc(100% + 80px);
    margin: 0 0 -40px -40px;
    padding: 20px;
    box-shadow: -1px -1px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .address_modal .btn_wrap .btn_green {
    width: 345px;
  }
}

@media (max-width: 400px) {
  .address_modal .form_group input {
    padding: 0 20px;
    font-size: 16px;
  }
}
.payment {
  padding: 20px 0 120px;
}
.payment__title {
  font-size: 23px;
  line-height: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media screen and (min-width: 992px) {
  .payment__title {
    font-size: 40px;
    line-height: 120%;
    margin-bottom: 40px;
  }
}
.payment__content {
  gap: 30px;
}
@media screen and (min-width: 992px) {
  .payment__content_left {
    width: 585px;
  }
}
.payment__content .customer__content_right {
  flex-shrink: 0;
  width: 380px;
}
.payment .title {
  font-size: 20px;
  line-height: 26px;
  font-weight: bold;
  margin-bottom: 20px;
}
.payment__method {
  margin-bottom: 40px;
}
.payment__method_inp {
  background: #F3F3F7;
  border-radius: 12px;
  position: relative;
  padding: 0 20px 0 30px;
  gap: 20px;
}
.payment__method_inp input {
  height: 60px;
  width: 100%;
  font-size: 16px;
  line-height: 125%;
}
.payment__method_inp input::-moz-placeholder {
  color: #4B4B4B;
}
.payment__method_inp input::placeholder {
  color: #4B4B4B;
}
.payment__method_inp button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.payment .call_back {
  margin-bottom: 40px;
  gap: 20px;
}
.payment .call_back .title {
  margin-bottom: 0;
}
.payment .call_back .select_radio {
  width: 140px;
  flex-shrink: 0;
}
.payment .call_back .select_radio label {
  font-size: 18px;
  line-height: 20px;
  padding: 10px 0;
}
.payment .call_back .select_radio input:checked ~ span {
  color: #fff;
}
.payment .call_back .select_radio__bg {
  background: #009241;
}
.payment .call_back p {
  font-size: 12px;
  line-height: 14px;
  font-family: "Franklin Gothic Book", sans-serif;
  margin-top: 10px;
}
.payment__discount {
  margin-bottom: 44px;
}
.payment__discount ul {
  gap: 10px;
}
.payment__discount ul div {
  gap: 20px;
}
.payment__discount ul label {
  border: 2px solid #231F20;
  border-radius: 7px;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment__discount ul label img {
  display: none;
}
.payment__discount ul label input {
  display: none;
}
.payment__discount ul label input:checked ~ img {
  display: block;
}
.payment__discount ul p {
  font-size: 12px;
  line-height: 120%;
  font-family: "Franklin Gothic Book", sans-serif;
}
.payment__discount ul p span {
  font-size: 16px;
  font-family: "Journal Sans New", sans-serif;
}
.payment__discount ul h4 {
  font-size: 16px;
  line-height: 125%;
  font-weight: 400;
}
.payment_modal .main_container {
  padding: 40px 0 184px;
}
@media screen and (min-width: 992px) {
  .payment_modal .main_container {
    min-width: 100%;
    padding: 65px 30px 40px;
  }
}
@media screen and (min-width: 992px) {
  .payment_modal .main-modal__content {
    width: 440px;
  }
}
.payment_modal h2 {
  text-align: center;
  font-size: 25px;
  line-height: 28px;
  font-weight: bold;
  color: #000;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .payment_modal h2 {
    text-align: left;
    font-weight: normal;
  }
}
.payment_modal ul {
  gap: 20px;
}
.payment_modal label {
  background: #F3F3F7;
  border-radius: 12px;
  height: 60px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 0 20px 0 30px;
}
.payment_modal label input {
  display: none;
}
.payment_modal label .text {
  gap: 20px;
  font-size: 16px;
  line-height: 125%;
}
.payment_modal label .icon {
  border: 2px solid #231F20;
  border-radius: 7px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment_modal label .icon img {
  display: none;
}
.payment_modal label input:checked ~ .text .icon img {
  display: block;
}
.payment__balance {
  gap: 10px;
  margin-bottom: 40px;
}
.payment__balance p {
  font-size: 16px;
  line-height: 20px;
}
.payment__balance h4 {
  font-size: 17px;
  line-height: 17px;
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */