@charset "UTF-8";
*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

* {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

ul {
  list-style: none;
}

body * {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  line-height: inherit;
  text-align: inherit;
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  border: none;
  outline: none;
}

@font-face {
  font-family: "Inter-Regular";
  src: url("../fonts/inter-regular.woff") format("woff");
}
@font-face {
  font-family: "Geologica-ExtraLight";
  src: url("../fonts/geologica-extralight.woff") format("woff");
}
@font-face {
  font-family: "Geologica-Regular";
  src: url("../fonts/geologica-regular.woff") format("woff");
}
@font-face {
  font-family: "Rubik-Regular";
  src: url("../fonts/rubik-regular.woff") format("woff");
}
@font-face {
  font-family: "Rubik-Medium";
  src: url("../fonts/rubik-medium.woff") format("woff");
}
@font-face {
  font-family: "Rubik-Bold";
  src: url("../fonts/rubik-bold.woff") format("woff");
}
@font-face {
  font-family: "Rubik-ExtraBold";
  src: url("../fonts/rubik-extrabold.woff") format("woff");
}
/*цвета*/
/*шрифты*/
.footer__info .footer__app-link, .in-basket {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 18px;
  font-weight: 200;
  line-height: normal;
  font-family: "Geologica-ExtraLight";
  padding: 6px 28px;
  border-radius: 17px;
  background-color: #E8222F;
  transition: all 0.5s;
  border: 1px solid #E8222F;
}
.footer__info .footer__app-link:hover, .in-basket:hover {
  background-color: transparent;
  color: #fff;
}
@media (max-width: 1300px) {
  .footer__info .footer__app-link, .in-basket {
    font-size: 16px;
  }
}
@media (max-width: 1150px) {
  .footer__info .footer__app-link, .in-basket {
    font-size: 15px;
    padding: 6px 15px;
  }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-image: url("../images/sitebg.webp");
  background-size: contain;
  background-size: cover;
  background-position: center;
  background-repeat: repeat-y;
}

body > main {
  flex-grow: 1;
}

.container {
  max-width: 1254px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 1300px) {
  .container {
    max-width: 100%;
    padding: 0 38px;
  }
}
@media (max-width: 1100px) {
  .container {
    padding: 0 15px;
  }
}

h2 {
  color: #fff;
  text-shadow: 0px 2px 4px #000;
  font-family: "Rubik-ExtraBold";
  font-size: 36px;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media (max-width: 1400px) {
  h2 {
    font-size: 32px;
  }
}
@media (max-width: 1200px) {
  h2 {
    font-size: 28px;
  }
}
@media (max-width: 1100px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
  color: #fff;
  font-family: "Rubik-ExtraBold";
  font-size: 26px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

h4 {
    color: #fff;
    font-family: "Rubik-ExtraBold";
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}

h5 {
    color: #fff;
    font-family: "Rubik-ExtraBold";
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
}

p {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  font-family: "Geologica-Regular";
  color: #fff;
}

p + p {
  margin-top: 15px;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 99;
  margin: 0 auto;
  transition: all 0.5s;
}
header.scroll__bg-color {
  background-color: #111;
}

.header__cnt {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 38px 15px 33px 15px;
  width: 1460px;
  margin: 0 auto;
  gap: 10px;
}
@media (max-width: 1460px) {
  .header__cnt {
    padding: 20px 15px 20px 15px;
    width: 100%;
  }
}
@media (max-width: 1100px) {
  .header__cnt {
    justify-content: flex-end;
    align-items: center;
    padding: 10px 15px;
  }
}

.header__burger {
  display: block;
  position: relative;
  width: 30px;
  height: 28px;
  cursor: pointer;
  margin-top: 6px;
  margin-right: 10px;
}
@media (max-width: 1200px) {
  .header__burger {
    width: 25px;
    height: 20px;
  }
}
@media (max-width: 1100px) {
  .header__burger {
    order: 2;
    margin-left: 20px;
  }
}

.header__burger span {
  position: absolute;
  background-color: #fff;
  width: 100%;
  height: 2px;
  right: 0;
  top: 13px;
  transition: all 0.5s ease 0s;
}
@media (max-width: 1200px) {
  .header__burger span {
    top: 9px;
  }
}

.header__burger::before, .header__burger::after {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 100%;
  height: 2px;
  right: 0;
  transition: all 0.5s ease 0s;
}

.header__burger::before {
  top: 0;
}

.header__burger::after {
  bottom: 0;
}

.header__burger.active-burger span {
  transform: scale(0);
}

.header__burger.active-burger::before {
  transform: rotate(45deg);
  top: 13px;
}
@media (max-width: 1200px) {
  .header__burger.active-burger::before {
    top: 9px;
  }
}

.header__burger.active-burger::after {
  transform: rotate(-45deg);
  bottom: 13px;
}
@media (max-width: 1200px) {
  .header__burger.active-burger::after {
    bottom: 9px;
  }
}

.basket {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 68px;
  padding: 6px 8px 8px 8px;
  border-radius: 18px;
  border: 2px solid #fff;
}
.basket img {
  width: 24px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1100px) {
  .basket img {
    width: 18px;
  }
}
@media (max-width: 1100px) {
  .basket {
    margin: 0 30px;
  }
}

.basket__name, .basket__value {
  line-height: normal;
  font-weight: 400;
  font-family: "Rubik-Regular";
  color: #fff;
}

.basket__name {
  font-size: 13px;
}
@media (max-width: 1100px) {
  .basket__name {
    font-size: 12px;
  }
}

.basket__value {
  font-size: 16px;
  margin-top: 2px;
}
@media (max-width: 1460px) {
  .basket__value {
    font-size: 15px;
  }
}
@media (max-width: 1300px) {
  .basket__value {
    font-size: 14px;
  }
}
@media (max-width: 1100px) {
  .basket__value {
    font-size: 13px;
  }
}

.header__logo {
  display: block;
  width: 174px;
  height: auto;
  align-self: center;
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1460px) {
  .header__logo {
    width: 150px;
  }
}
@media (max-width: 1300px) {
  .header__logo {
    width: 140px;
  }
  .tel-info-logo {
      font-size: 15px !important;
  }
}
@media (max-width: 1200px) {
  .header__logo {
    width: 120px;
  }
}
@media (max-width: 1100px) {
  .header__logo {
    order: -1;
    margin-right: auto;
  }
}

.header__menu nav {
  margin-bottom: 13px;
}
@media (max-width: 1460px) {
  .header__menu nav {
    margin-bottom: 10px;
  }
}
@media (max-width: 1100px) {
  .header__menu nav {
    display: none;
  }
}

.header__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
    gap: 0 20px;
    max-width: 1100px;
}
/* .header__list li + li {
  margin-left: 20px;
} */
@media (max-width: 1300px) {
  .header__list li + li {
    margin-left: 15px;
  }
}
@media (max-width: 1200px) {
  .header__list li + li {
    margin-left: 10px;
  }
}
.header__list .activ {
  border: 2px solid #FBFBFB;
  border-radius: 500px;
  padding: 6px 10px;
}
.header__list .activ:hover {
  border-color: #E8222F;
}
@media (max-width: 1460px) {
  .header__list .activ {
    padding: 5px 8px;
  }
}
@media (max-width: 1300px) {
  .header__list .activ {
    padding: 5px;
    border-radius: 15px;
  }
}
.header__list a {
  font-size: 16px;
  line-height: normal;
  font-weight: 400;
  font-family: "Geologica-Regular";
  color: #fff;
  display: inline-block;
  transition: all 0.5s;
}
.header__list a:hover {
  color: #E8222F;
}
@media (max-width: 1460px) {
  .header__list a {
    font-size: 15px;
  }
}
@media (max-width: 1420px) {
    .header__list li + li {
        margin-left: 17px;
    }
    .header__list a {
        font-size: 14px;
      }
}

.header__menu-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1100px) {
  .header__menu-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .header__menu {
      margin-right: auto;
  }
}

.header__menu-left {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: normal;
  font-family: "Geologica-Regular";
}
@media (max-width: 1460px) {
  .header__menu-left {
    font-size: 15px;
  }
}
@media (max-width: 1300px) {
  .header__menu-left {
    font-size: 14px;
  }
}
@media (max-width: 1100px) {
  .header__menu-left {
    margin-bottom: 10px;
  }
}

.header__menu-right {
  display: flex;
  align-items: center;
}

.menu__item + .menu__item {
  margin-left: 32px;
}

.menu__item {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  font-family: "Geologica-Regular";
  transition: all 0.5s;
  cursor: pointer;
}
.menu__item input {
  display: none;
}
.menu__item .menu__item-circle {
  width: 24px;
  height: 24px;
  transition: all 0.5s;
  border-radius: 50%;
  border: 2px solid #fff;
  position: relative;
  margin-left: 8px;
}
.menu__item .menu__item-circle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #E8222F;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s;
}
@media (max-width: 1460px) {
  .menu__item .menu__item-circle::before {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 1460px) {
  .menu__item .menu__item-circle {
    width: 20px;
    height: 20px;
  }
}
.menu__item.menu__item-active {
  color: #E8222F;
}
.menu__item.menu__item-active .menu__item-circle {
  border-color: #E8222F;
}
.menu__item.menu__item-active .menu__item-circle::before {
  content: "";
  opacity: 1;
}
@media (max-width: 1460px) {
  .menu__item {
    font-size: 15px;
  }
}
@media (max-width: 1300px) {
  .menu__item {
    font-size: 14px;
  }
}

/*mob menu*/
.mob__menu {
  min-width: 1030px;
  min-height: 740px;
  display: flex;
  align-items: flex-end;
  background-color: #1D1D1D;
  padding: 40px 94px 137px 124px;
  position: fixed;
  top: 0;
  left: -2000px;
  transition: all 0.5s;
}
.mob__menu.active-burger {
  left: 0;
}
@media (max-width: 1100px) {
  .mob__menu.active-burger {
    left: unset;
    right: 0;
  }
}
@media (max-width: 1500px) {
  .mob__menu {
    min-height: 640px;
    min-width: 910px;
  }
}
@media (max-width: 1400px) {
  .mob__menu {
    min-height: 550px;
    min-width: 770px;
    padding: 40px 80px 80px 60px;
  }
}
@media (max-width: 1300px) {
  .mob__menu {
    min-height: 475px;
    min-width: 655px;
  }
}
@media (max-width: 1200px) {
  .mob__menu {
    min-height: 435px;
    min-width: 575px;
  }
}
@media (max-width: 1100px) {
  .mob__menu {
    left: unset;
    right: -2000px;
    flex-wrap: wrap;
    min-width: unset;
    width: 575px;
  }
}

.mob__app-box {
  display: none;
  margin-top: 15px;
  width: 100%;
}
@media (max-width: 1100px) {
  .mob__app-box {
    display: flex;
  }
}
.mob__app-box a {
  color: #fff;
  font-family: "Geologica-Regular";
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  padding: 8px 16px;
  border: 2px solid #fff;
  border-radius: 500px;
}

.mob__close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.mob__close::before, .mob__close::after {
  content: "";
  width: 33px;
  height: 2px;
  position: absolute;
  background-color: #AEAEAE;
}
.mob__close::before {
  top: 12px;
  left: -3px;
  transform: rotate(45deg);
}
.mob__close::after {
  top: 12px;
  right: -4px;
  transform: rotate(-45deg);
}
ul.mob__menu-list {
    margin-bottom: auto;
}
.mob__menu-list li + li {
  margin-top: 13px;
}
.mob__menu-list a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-weight: 800;
  line-height: normal;
  font-size: 50px;
  font-family: "Rubik-ExtraBold";
}
@media (max-width: 1500px) {
  .mob__menu-list a {
    font-size: 40px;
  }
}
@media (max-width: 1400px) {
  .mob__menu-list a {
    font-size: 35px;
  }
}
@media (max-width: 1300px) {
  .mob__menu-list a {
    font-size: 28px;
  }
}
@media (max-width: 1200px) {
  .mob__menu-list a {
    font-size: 24px;
  }
}

.mob__logo {
  display: block;
  width: 198px;
  height: auto;
}
.mob__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1300px) {
  .mob__logo {
    width: 170px;
  }
}
@media (max-width: 1200px) {
  .mob__logo {
    width: 140px;
  }
}

/*main*/
.app__link-box {
  top: 331px;
  right: 102px;
  position: fixed;
  border-radius: 500px;
  border: 2px solid #fff;
  z-index: 10;
  transition: all 0.5s;
  width: 48px;
  height: 340px;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  font-family: "Geologica-Regular";
  white-space: nowrap;
}
.app__link-box:hover {
  color: #111;
  background-color: #E8222F;
  border: 2px solid #E8222F;
}
@media (max-width: 1700px) {
  .app__link-box {
    right: 50px;
  }
}
@media (max-width: 1500px) {
  .app__link-box {
    right: 15px;
  }
}
@media (max-width: 1400px) {
  .app__link-box {
    font-size: 14px;
    height: 265px;
    width: 30px;
    right: 5px;
  }
}
@media (max-width: 1100px) {
  .app__link-box {
    display: none;
  }
}

.app__link {
  transform: rotate(270deg);
  width: 271px;
  height: 20px;
  position: absolute;
  line-height: 100%;
  font-size: 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  font-family: "Geologica-Regular";
}
@media (max-width: 1400px) {
  .app__link {
    font-size: 14px;
    width: 238px;
    height: 16px;
  }
}

.main__slider-wrapper {
  padding-top: 185px;
  margin-bottom: 159px;
}
@media (max-width: 1460px) {
  .main__slider-wrapper {
    padding-top: 150px;
    margin-bottom: 80px;
  }
}
@media (max-width: 1100px) {
  .main__slider-wrapper {
    padding-top: 100px;
    margin-bottom: 100px;
  }
}

.main__slider-container {
  position: relative;
  width: 84%;
  margin-left: auto;
  border-radius: 25px 0px 0px 25px;
  overflow: hidden;
}
@media (max-width: 1700px) {
  .main__slider-container {
    width: 88%;
  }
}
@media (max-width: 1600px) {
  .main__slider-container {
    width: 91%;
  }
}
@media (max-width: 1500px) {
  .main__slider-container {
    width: 93%;
  }
}
@media (max-width: 1100px) {
  .main__slider-container {
    width: 100%;
    border-radius: 0;
  }
}

.main__slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 682px;
  padding: 70px 50px 50px 103px;
  display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media (max-width: 1400px) {
  .main__slide {
    min-height: 650px;
    padding: 70px 50px 50px 70px;
  }
}
@media (max-width: 1200px) {
  .main__slide {
    min-height: 590px;
    padding: 70px 50px 50px 70px;
  }
}
@media (max-width: 1100px) {
  .main__slide {
    min-height: 510px;
    padding: 50px 20px 40px 20px;
  }
}

.main__slide-cnt {
  width: 790px;
}
.main__slide-cnt .main__slide-title {
  color: #fff;
  font-family: "Rubik-ExtraBold";
  font-size: 36px;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.main__slide-info.address {
  margin-top: 10px;
}
@media (max-width: 1400px) {
  .main__slide-cnt .main__slide-title {
    font-size: 32px;
  }
}
@media (max-width: 1200px) {
  .main__slide-cnt .main__slide-title {
    font-size: 28px;
  }
}
@media (max-width: 1100px) {
  .main__slide-cnt .main__slide-title {
    font-size: 25px;
  }
}
.main__slide-cnt .main__slide-info {
  color: #fff;
  font-family: "Rubik-Regular";
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 40px;
}
@media (max-width: 1400px) {
  .main__slide-cnt .main__slide-info {
    font-size: 22px;
  }
}
@media (max-width: 1200px) {
  .main__slide-cnt .main__slide-info {
    font-size: 20px;
  }
}
@media (max-width: 1100px) {
  .main__slide-cnt .main__slide-info {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .main__slide-cnt {
    width: 730px;
  }
}
@media (max-width: 1100px) {
  .main__slide-cnt {
    width: 680px;
  }
}

.main__slide-btn {
  position: relative;
  transition: all 0.5s;
  color: #E8222F;
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
  font-family: "Geologica-Regular";
  display: inline-block;
}
.main__slide-btn::before {
  content: "";
  position: absolute;
  width: 49px;
  height: 54px;
  right: -40px;
  bottom: -15px;
  transition: all 0.5s;
  background-image: url("../images/mainslidebtn.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 1100px) {
  .main__slide-btn::before {
    width: 41px;
    height: 45px;
    right: -30px;
  }
}
.main__slide-btn:hover::before {
  right: -25px;
}
@media (max-width: 1100px) {
  .main__slide-btn {
    font-size: 16px;
  }
}

.main__slider-container .swiper-button-prev:after, .main__slider-container .swiper-container-rtl .swiper-button-next:after {
  content: "";
}

.main__slider-container .swiper-button-next:after, .main__slider-container .swiper-container-rtl .swiper-button-prev:after {
  content: "";
}

.main__slider-container .swiper-button-prev, .main__slider-container .swiper-container-rtl .swiper-button-next {
  width: 80px;
  height: 16px;
  background-image: url("../images/mainsliderleft.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80px;
  transition: all 0.5s;
  left: unset;
  right: 364px;
  top: unset;
  bottom: 44px;
  margin-top: unset;
  z-index: 1;
  opacity: 0.7;
}
.main__slider-container .swiper-button-prev:hover, .main__slider-container .swiper-container-rtl .swiper-button-next:hover {
  opacity: 1;
}
.main__slider-container .swiper-button-prev::before, .main__slider-container .swiper-container-rtl .swiper-button-next::before {
  content: "";
  position: absolute;
  height: 54px;
  width: 49px;
  left: -25px;
  z-index: -1;
  background-image: url("../images/mainsliderleftcircle.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.5s;
  opacity: 0;
}
.main__slider-container .swiper-button-prev:hover::before, .main__slider-container .swiper-container-rtl .swiper-button-next:hover::before {
  opacity: 1;
}
@media (max-width: 1300px) {
  .main__slider-container .swiper-button-prev, .main__slider-container .swiper-container-rtl .swiper-button-next {
    right: 220px;
  }
}

.main__slider-container .swiper-button-next, .main__slider-container .swiper-container-rtl .swiper-button-prev {
  width: 80px;
  height: 16px;
  background-image: url("../images/mainsliderright.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80px;
  margin-top: unset;
  transition: all 0.5s;
  right: 256px;
  top: unset;
  bottom: 44px;
  z-index: 1;
  opacity: 0.7;
}
.main__slider-container .swiper-button-next:hover, .main__slider-container .swiper-container-rtl .swiper-button-prev:hover {
  opacity: 1;
}
.main__slider-container .swiper-button-next::before, .main__slider-container .swiper-container-rtl .swiper-button-prev::before {
  content: "";
  position: absolute;
  height: 54px;
  width: 49px;
  right: -25px;
  z-index: -1;
  background-image: url("../images/mainsliderrightcircle.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.5s;
  opacity: 0;
}
.main__slider-container .swiper-button-next:hover::before, .main__slider-container .swiper-container-rtl .swiper-button-prev:hover::before {
  opacity: 1;
}
@media (max-width: 1300px) {
  .main__slider-container .swiper-button-next, .main__slider-container .swiper-container-rtl .swiper-button-prev {
    right: 100px;
  }
}

.products__wrapper + .products__wrapper {
  margin-top: 72px;
}
.products {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: -12px;
}
.products.products__wrap {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  margin: -12px;
  overflow-x: scroll;
}

.products__wrap::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: red;
}

.products__wrap::-webkit-scrollbar {
    background: transparent;
    height: 15px;
}

.prod__card-menu {
    flex: 0 0 auto;
}

.prod__card {
  width: calc(25% - 24px);
  margin: 12px;
  height: auto;
  min-height: 600px;
  border: 3px solid #fff;
  background-color: #fff;
  border-radius: 23px;
  transition: all 1s ease;
  transform-style: preserve-3d;
  position: relative;
}
.prod__card:hover {
  border-color: #E8222F;
}
.prod__card.rotated {
  transform: rotateY(-180deg);
}

.prod__card .category_rolls {
    transition: all 1s ease;
    
}
.prod__card.rotated .category_rolls {
    transform: scaleX(-1);
    left: 7px;
    right: unset;
    transition: all 1s ease;
    
}

.prod__card.disabled {
  filter: grayscale(100%);
}
.prod__card.disabled .in-basket, .prod__card.disabled .compound, .prod__card.disabled .basket-quantity__btn {
  pointer-events: none;
}
@media (max-width: 990px) {
  .prod__card {
    width: calc(33% - 24px);
  }
}
@media (max-width: 1300px) {
  .prod__card {
    min-height: 550px;
  }
}
@media (max-width: 1200px) {
  .prod__card {
    min-height: 490px;
  }
}


.card__contents {
  width: 100%;
  height: 100%;
  border-radius: 23px;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
}
.card__contents .card__img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 23px 23px 0 0;
  margin-bottom: 12px;
}

.card__contents-text {
  padding: 0 20px 20px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 1150px) {
  .card__contents-text {
    padding: 0 10px 15px 10px;
  }
}

.card__contents-top {
  margin-bottom: auto;
}

.card__delivery {
  margin-top: 10px;
  margin-bottom: auto;
}

.card__bottom {
  margin-top: auto;
}
@media (max-width: 1170px) {
    .card__delivery {
        margin-bottom: 10px;
    }
}
.prod__name {
  color: #000;
  font-weight: 400;
  line-height: normal;
  font-size: 20px;
  font-family: "Geologica-Regular";
  margin-bottom: 8px;
}
@media (max-width: 1300px) {
  .prod__name {
    font-size: 18px;
  }
}
@media (max-width: 1300px) {
  .prod__name {
    font-size: 16px;
  }
}
@media (max-width: 915px) {
  .prod__name {
    font-size: 18px;
  }
}

.prod__info {
  color: #000;
  line-height: normal;
  font-weight: 200;
  font-size: 16px;
  font-family: "Geologica-ExtraLight";
}
@media (max-width: 1300px) {
  .prod__info {
    font-size: 15px;
    margin-top: 10px;
  }
}

.card__delivery p {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  color: #000;
  line-height: normal;
  font-weight: 200;
  font-size: 16px;
  font-family: "Geologica-ExtraLight";
}
.card__delivery p img {
  width: 15px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 8px;
}
@media (max-width: 1300px) {
  .card__delivery p {
    font-size: 15px;
  }
}
.card__delivery p + p {
  margin-top: 11px;
}
@media (max-width: 1300px) {
  .card__delivery p + p {
    margin-top: 5px;
  }
}

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

.basket-quantity__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  border: 1px solid #E8222F;
  padding: 7.5px 17.5px;
  width: 90px;
}

.basket-quantity__value {
  color: #000;
  font-family: "Geologica-ExtraLight";
  font-weight: 200;
  font-size: 16px;
  line-height: normal;
  width: 20px;
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
  padding: unset;
  border: none;
  border-radius: unset;
  background-color: transparent;
}

.basket-quantity__btn {
  color: #000;
  font-weight: 200;
  line-height: normal;
  font-family: "Geologica-ExtraLight";
  font-size: 16px;
  background-color: unset;
  outline: unset;
  cursor: pointer;
}

.prod__price {
  color: #000;
  font-family: "Rubik-Medium";
  font-size: 26px;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 1300px) {
  .prod__price {
    font-size: 23px;
  }
}

.card__btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.in-basket {
  cursor: pointer;
}
.in-basket:hover {
  color: #E8222F;
}

.compound {
  background-color: transparent;
  cursor: pointer;
  color: #E8222F;
  font-size: 18px;
  font-weight: 200;
  line-height: normal;
  font-family: "Geologica-ExtraLight";
}
@media (max-width: 1300px) {
  .compound {
    font-size: 16px;
  }
}

.compound__mob-open {
  display: none;
}

.compound__mob-close {
  display: none;
}

.card-back-text {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding: 20px;
}
@media (max-width: 1150px) {
  .card-back-text {
    padding: 15px 10px 15px 10px;
  }
}

.back__prod-name {
  color: #000;
  font-family: "Geologica-Regular";
  font-size: 22px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 4px;
  width: 60%;
}
@media (max-width: 1300px) {
  .back__prod-name {
    font-size: 20px;
  }
}

.prod__articul {
  color: #000;
  font-family: "Geologica-ExtraLight";
  font-size: 16px;
  font-weight: 200;
  line-height: normal;
}
@media (max-width: 1300px) {
  .prod__articul {
    font-size: 15px;
  }
}

.compound__title {
  color: #000;
  font-family: "Geologica-Regular";
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1300px) {
  .compound__title {
    font-size: 16px;
  }
}

.compound__box {
  margin-top: 20px;
  margin-bottom: 20px;
}
.compound__box p {
  color: #000;
  font-family: "Geologica-ExtraLight";
  font-size: 16px;
  font-weight: 200;
  line-height: normal;
  margin-bottom: 5px;
}

.nutritional__box {
    padding-top: 20px;
    border-width: 1px 0 0 0; /* Толщина рамки: только верхняя */
    border-style: solid; /* Устанавливаем стиль рамки */
    border-image-source: linear-gradient(
        to left, 
        rgba(232, 34, 47, 0) 0%, 
        #E8222F 14.5%, 
        #82131A 100%
    ); /* Градиент слева направо */
    border-image-slice: 1; /* Использовать весь градиент */
}

.nutritional_text {
    font-family: Geologica;
    font-size: 14px;
    font-weight: 400;
    line-height: 17.5px;
    color: #000000;
    margin-bottom: 6px;
}

@media (max-width: 1300px) {
  .compound__box p {
    font-size: 15px;
  }
}
.compound__box p + p {
  margin: 0;
}
.compound__box ul {
  padding-left: 10px;
  margin: 5px 0;
}
.compound__box ul li {
  color: #000;
  font-family: "Geologica-ExtraLight";
  font-size: 16px;
  font-weight: 200;
  line-height: normal;
  position: relative;
  padding-left: 10px;
}
.compound__box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  background-color: #000;
  border-radius: 50%;
}
@media (max-width: 1300px) {
  .compound__box ul li {
    font-size: 15px;
  }
}

/*.compound__desc, .prod__weight {
    color: #000;
    font-family: $geoELight;
    font-size: 16px;
    font-weight: 200;
    line-height: normal;
}*/
/*.compound__desc {
    margin-bottom: 12px;
}*/
.card-front {
  transform-style: preserve-3d;
}

.card-back {
  transform: rotateY(180deg);
  transform-style: preserve-3d;
}

/*footer*/
footer {
  padding: 0 0 100px 0;
  margin-top: 200px;
}
@media (max-width: 1100px) {
  footer {
    padding: 0 0 50px 0;
    margin-top: 150px;
  }
}
@media (max-width: 700px) {
  footer {
    margin-top: 60px;
  }
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer__menu {
  /* width: 287px; */
  width: 500px;
  height: 275px;
}
@media (max-width: 1100px) {
  .footer__menu {
    /* width: 210px; */
    width: 400px;
    height: 205px;
  }
}

.footer__nav {
  width: 360px;
  height: 160px;
}
@media (max-width: 1100px) {
  .footer__nav {
    width: 280px;
    height: 120px;
  }
}

.footer__menu, .footer__nav {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.footer__menu li, .footer__nav li {
  margin-bottom: 16px;
}
@media (max-width: 1100px) {
  .footer__menu li, .footer__nav li {
    margin-bottom: 10px;
  }
}
.footer__menu a, .footer__nav a {
  color: #fff;
  font-weight: 400;
  line-height: normal;
  font-size: 18px;
  font-family: "Geologica-Regular";
  transition: all 0.5s;
}
.footer__menu a:hover, .footer__nav a:hover {
  color: #E8222F;
}
@media (max-width: 1300px) {
  .footer__menu a, .footer__nav a {
    font-size: 16px;
  }
}
@media (max-width: 1100px) {
  .footer__menu a, .footer__nav a {
    font-size: 15px;
  }
}

.footer__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 270px;
}
.footer__info .footer__app-link {
  width: 345px;
  text-align: center;
}
@media (max-width: 1300px) {
  .footer__info .footer__app-link {
    width: 315px;
  }
}
@media (max-width: 1100px) {
  .footer__info .footer__app-link {
    width: 270px;
  }
}
.footer__info .footer__info-item + .footer__info-item {
  margin-top: 24px;
  margin-bottom: 24px;
}
@media (max-width: 1100px) {
  .footer__info .footer__info-item + .footer__info-item {
    margin-top: 15px;
  }
}
.footer__info .footer__item {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  font-family: "Geologica-Regular";
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1300px) {
  .footer__info .footer__item {
    font-size: 16px;
  }
}
@media (max-width: 1100px) {
  .footer__info .footer__item {
    font-size: 15px;
  }
}
.footer__info .footer__item + .footer__item {
  margin-top: 16px;
}
@media (max-width: 1100px) {
  .footer__info .footer__item + .footer__item {
    margin-top: 10px;
  }
}

.footer__logo {
  display: block;
  width: 156px;
  height: auto;
  margin: -12px auto 32px auto;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1100px) {
  .footer__logo {
    width: 130px;
  }
}

.footer__copy {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__copy a {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  line-height: normal;
  font-weight: 200;
  font-family: "Geologica-ExtraLight";
  transition: all 0.5s;
}
.footer__copy a:hover {
  color: #E8222F;
}
.footer__copy a + a {
  margin-left: 72px;
}

@media (max-width: 900px) {
    .footer__top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
      }
}

@media (max-width: 800px) {
  /* низ страницы */
  .footer__info .footer__app-link {
    display: block;
  }
  .footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
  }
  .footer__nav {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height: auto;
  }
  .footer__menu {
    width: 100%;
    height: 222px;
  }
  .footer__copy a + a {
    margin: 0;
  }
  .footer__copy {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .footer__logo {
    margin: 40px auto;
  }
}
.mobile__menufixed {
  display: none;
}

@media (max-width: 1100px) {
  /* фиксирующееся меню */
  .mobile__menufixed {
    display: block;
    position: sticky;
    top: 0;
    background-color: rgba(0, 0, 0, 0.65);
    width: 100%;
    height: 50px;
    overflow: hidden;
    margin-top: -65px;
    margin-bottom: 15px;
    z-index: 1;
  }
  .mobile__menufixed-body {
    width: 100%;
    overflow-x: scroll;
    position: relative;
    height: 80px;
  }
  .mobile__menufixed-body2 {
    display: flex;
    white-space: nowrap;
    margin: 8px 15px;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .mobile__menufixed a {
    font-size: 12px;
    font-family: "Geologica-Regular";
    font-size: 16px;
    color: #fff;
    border-radius: 19px;
    line-height: 34px;
    float: left;
    padding: 0 15px 3px;
    margin-right: 7px;
  }
  .mobile__menufixed a.activate {
    background-color: rgb(232, 34, 47);
  }
}
@media (max-width: 660px) {
  body {
    font-size: 16px;
  }
  /* Меню для десктопа */
  header {
    position: static;
  }
  .header__menu nav {
    display: none;
  }
  .basket {
    display: none;
  }
  /* Слайдер */
  .main__slide-cnt .main__slide-title {
    font-size: 14px;
    width: 229px;
    margin-bottom: 6px;
  }
  .main__slide-cnt {
    width: 100%;
  }
  .main__slider-wrapper {
    padding-top: 100px;
    margin-bottom: 87px;
  }
  .main__slide-cnt .main__slide-info {
    font-size: 14px;
  }
  .main__slide {
    height: 79vw;
    min-height: 252px;
    padding: 30px 15px 20px 20px;
  }
  .main__slider-container .swiper-button-prev,
  .main__slider-container .swiper-container-rtl .swiper-button-next {
    right: auto;
    left: 20px;
    bottom: 8px;
    background-size: 45px;
  }
  .main__slider-container .swiper-button-next,
  .main__slider-container .swiper-container-rtl .swiper-button-prev {
    right: 20px;
    bottom: 8px;
    background-size: 45px;
  }
  .main__slide-btn {
    font-size: 14px;
  }
  .prod__card {
    width: calc(50% - 15px);
    margin: 5px;
    border-radius: 10px;
    /* height: calc(200px + 50vw); */
    min-height: 450px;
  }
  .products {
    margin: 0 -15px 0 -5px;
  }
  /* Наименования */
  h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .card__contents .card__img {
    margin-bottom: 0px;
  }
  
  .card__contents-top {
    margin-bottom: 0px;
    min-height: 62px;
  }
  .card__delivery {
    margin-top: 8px;
    margin-bottom: 10px;
  }
  
  .basket-quantity__box {
    display: none;
  }
  .prod__price {
    font-size: 14px;
  }
  .card__btns {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    flex-direction: column;
  }
  .compound {
    font-size: 13px;
    margin-top: 10px;
  }
  .in-basket {
    border-radius: 12px;
  }
  .products__wrapper + .products__wrapper {
    padding-top: 72px;
    margin-top: 0;
  }
  /* Логотип, и кнопка открыть меню */
  .header__logo {
    position: absolute;
    left: 8px;
    top: 17px;
    width: 158px;
  }
  .header__burger {
    position: absolute;
    right: 19px;
    top: 17px;
    width: 22px;
  }
  .mob__menu {
    left: unset;
    right: -100vw;
    flex-wrap: wrap;
    min-width: unset;
    width: 100vw;
  }
  /* Блок доставка-самовывоз */
  .header__menu {
    position: absolute;
    left: 21px;
    top: 72px;
  }
  .header__menu-right {
    display: block;
  }
  .menu__item + .menu__item {
    margin-left: 0;
  }
  .header__menu-left {
    margin-bottom: 0;
  }
  .header__menu-left {
    font-size: 16px;
  }
  .menu__item {
    font-size: 16px;
    line-height: 1;
    margin-top: 11px;
  }
  .menu__item .menu__item-circle {
    width: 25px;
    height: 25px;
  }
  /* Меню (выезжающее) */
  .mob__menu {
    padding: 80px 10px 40px 10px;
    min-height: 100vh;
  }
  .mob__close {
    top: 14px;
    right: 13px;
    transform: scale(0.8);
  }
  .mob__menu-list a {
    font-size: 18px;
  }
  .mob__app-box a {
    font-size: 12px;
  }
  .card__contents-text {
      justify-content: space-between;
  }
  .card__contents .card__img, .card__contents-text {
      height: 50%;
  }
  .compound__mob-open {
      margin-top: 10px;
  }
}
@media(max-width: 470px) {
    .card__delivery p {
        font-size: 12px;
      } 
    .prod__name {
        font-size: 13px;
        margin-bottom: 8px;
      }
      .prod__info {
        font-size: 12px;
        margin-top: 8px;
      }
      .prod__card {
          min-height: 350px;
      }
}
@media (max-width: 430px) {
    /* .prod__card {
        height: calc(200px + 46vw);
    } */
}
@media (max-width: 380px) {
    .card__contents .card__img, .card__contents-text {
        height: 48%;
    }
}
@media (max-width: 350px) {
    .card__contents .card__img, .card__contents-text {
        height: 46%;
    }
}
@media (max-width: 338px) {
    .prod__card {
        height: calc(200px + 62vw);
    }
}
h1 {
  color: #fff;
  text-shadow: 0px 2px 4px #000;
  font-family: "Rubik-ExtraBold";
  font-size: 36px !important;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.text_content {
  color: #fff;
  padding-top: 140px;
  margin-bottom: 160px;
}
@media (max-width: 700px) {
  .text_content {
    margin-bottom: 60px;
  }
}

.text_content h3 {
  margin-top: 45px;
}

/* ---------------------------------------------------------------------------------------- */
/* Программа лояльности */
.loyalty_wrapper {
  flex-direction: row;
    display: flex;
    flex-wrap: wrap;
    margin: 40px -12px;
    justify-content: center;
    align-items: center;
}
/* @media (max-width: 640px) {
  .container-loyalty {
    display: flex;
    margin: 100px -12px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-end;
  }
} */

.loyalty-cell {
  /* width: calc(50% - 40px); */
  margin: 20px;
  width: 100%;
  background-image: url(../images/loyalty/loyalty-bg.png);
  background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 23px;
    min-height: 246px;
    position: relative;
    max-width: 852px;
    display: flex;
}
@media (max-width: 640px) {
  .loyalty-cell {
    width: calc(100% - 40px);
  }
}

.loyalty-cell img {
  border-radius: 25px;
  width: 95%;
}

.loyalty-cell span {
  font-weight: 400;
  line-height: normal;
  font-size: 22px;
  font-family: "Geologica-Regular";
  margin-bottom: 27px;
  padding-top: 23px;
  display: block;
}
@media (max-width: 900px) {
  .loyalty-cell span {
    font-size: 18px;
  }
}
@media (max-width: 720px) {
  .loyalty-cell span {
    font-size: 16px;
  }
}

.container-text p {
  font-size: 22px;
}
@media (max-width: 900px) {
  .container-text p {
    font-size: 20px;
  }
}
@media (max-width: 650px) {
  .container-text p {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .container-text p {
    font-size: 16px;
  }
}

/* ---------------------------------------------------------------------------------------------- */
/* Галерея */
.container-gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -12px 60px -12px;
  flex-direction: row-reverse;
  justify-content: space-around;
}

.gallery-cell {
  width: calc(25% - 24px);
  padding: 20px 0 30px;
}
@media (max-width: 660px) {
  .gallery-cell {
    width: calc(50% - 24px);
  }
}

.gallery-cell img {
  border-radius: 20px;
  width: 100%;
}
@media (max-width: 660px) {
  .gallery-cell img {
    border-radius: 15px;
  }
}

/* Вакансии */
.vacance-rightblock {
  display: flex;
  float: left;
  width: 80%;
  margin-left: 50px;
  flex-direction: column;
  flex-wrap: nowrap;
  margin-top: 110px;
}
@media (max-width: 1030px) {
  .vacance-rightblock {
    width: 69%;
  }
}
@media (max-width: 870px) {
  .vacance-rightblock {
    width: 100%;
    margin: 50px 10px 0 10px;
    padding-right: 20px;
  }
}

.vacance-rightblock.oformlenie-rightblock {
  margin-left: 0;
  margin-top: 0;
}

.vacance-rightblock-line input,
.vacance-rightblock-line textarea,
.vacance-rightblock-line select{
  font-size: 24px;
  font-weight: 200;
  line-height: normal;
  font-family: "Geologica-Regular";
  color: #000;
  padding: 22px 0 22px 20px;
  border-radius: 10px;
  border-width: 0;
  margin: 15px 0;
  width: 70%;
}
@media (max-width: 660px) {
  .vacance-rightblock-line input,
  .vacance-rightblock-line textarea,
  .vacance-rightblock-line select{
    width: 100%;
  }
}

.vacance-rightblock-line textarea {
  height: 300px;
}

.vacance-rightblock p {
  font-weight: normal;
  color: #fff;
}

.vacance-rightblock p a {
  text-decoration: underline;
}

.input-file {
  position: relative;
  display: inline-block;
}

.input-file span {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  font-size: 14px;
  vertical-align: middle;
  color: rgb(255, 255, 255);
  text-align: center;
  border-radius: 8px;
  background-color: transparent;
  /* line-height: 22px; */
  height: 60px;
  padding: 5px 20px 9px;
  box-sizing: border-box;
  border: none;
  margin: 0;
  transition: background-color 0.2s;
  box-shadow: 0 0 0 2px rgb(232, 34, 47);
  font-size: 23px;
  font-weight: 400;
  line-height: 49px;
  font-family: "Geologica-Regular";
}

.input-file input[type=file] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
  margin: 0;
}
.vacance-rightblock-line.file {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    margin: 20px 0;
}
.fileName {
    margin-left: 15px;
}
/* Focus */
.input-file input[type=file]:focus + span {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Hover/active */
.input-file:hover span {
  background-color: rgb(232, 34, 47);
}

.input-file:active span {
  background-color: rgb(232, 34, 47);
}

/* Disabled */
.input-file input[type=file]:disabled + span {
  background-color: #eee;
}

.send-button {
  background-color: #e8222f;
  color: #fff;
  font-family: "Geologica-Regular";
  border-radius: 10px;
  line-height: 56px;
  font-size: 25px;
  padding: 0 20px;
  margin-top: 30px;
  font-weight: normal;
}

.oformlenie-h2 h2 {
  margin-top: 95px;
  margin-bottom: 20px;
  font-size: 30px;
}

.vacance-rightblock a.moreinfo {
  background-color: #e8222f;
  color: #fff;
  font-family: "Geologica-Regular";
  border-radius: 26px;
  padding: 10px 15px;
  text-decoration: none;
  margin-left: 10px;
}

.vacance-rightblock-line.info {
    display: flex;
    align-items: center;
}

/* Радиокнопки (выбор типа резюме) */
.vacance-leftblock {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  font-family: "Geologica-Regular";
  color: #fff;
  float: left;
  width: 25%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  margin-top: 110px;
}
@media (max-width: 870px) {
  .vacance-leftblock {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.vacance-leftblock.oformlenie-leftblock {
  margin-top: 20px;
  width: 100%;
}

.vacance-leftblock-type {
  display: flex;
  width: 100%;
}
@media (max-width: 870px) {
  .vacance-leftblock-type {
    width: calc(50% - 20px);
  }
}
@media (max-width: 550px) {
  .vacance-leftblock-type {
    width: calc(100% - 20px);
  }
}

.vacance-leftblock label {
  float: left;
  padding: 24px 0 20px 20px;
  float: left;
  width: 100%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.54);
  border-radius: 10px;
  font-size: 22px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 870px) {
  .vacance-leftblock label {
    padding: 20px;
  }
}
@media (max-width: 660px) {
  .vacance-leftblock label {
    font-size: 18px;
  }
}
@media (max-width: 400px) {
  .vacance-leftblock label {
    font-size: 16px;
  }
}
@media (max-width: 350px) {
  .vacance-leftblock label {
    font-size: 14px;
  }
}

.vacance-leftblock.oformlenie-leftblock label {
  box-shadow: none;
  padding: 12px 0;
}

.vacance-leftblock.oformlenie-leftblock label:hover {
  box-shadow: none;
}

.vacance-leftblock.oformlenie-leftblock .radio {
  margin: 0;
}

.vacance-leftblock label:hover {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.74);
}

.radio {
  margin: 15px 0;
}
.radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.radio input[type=radio] + .radio-label:before {
  content: "";
  background: rgba(255, 255, 255, 0);
  border-radius: 100%;
  border: 3px solid black;
  border: 3px solid #E8222F;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: 0;
  margin-right: 1em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
@media (max-width: 660px) {
  .radio input[type=radio] + .radio-label:before {
    width: 1.5em;
    height: 1.5em;
  }
}
.radio input[type=radio]:checked + .radio-label:before {
  background-color: #E8222F;
  box-shadow: inset 0 0 0 5px rgb(0, 0, 0);
}
.radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: #E8222F;
}
.radio input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0);
  border-color: rgba(191, 191, 191, 0);
  background: rgba(191, 191, 191, 0);
}
.radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}
@media (max-width: 870px) {
  .radio {
    margin: 10px;
  }
}

.personaldata-div {
  padding-bottom: 20px;
}

.personaldata-div label {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  font-family: "Geologica-Regular";
  color: #fff;
}

/* Чекбокс  */
.personaldata:not(:checked),
.personaldata:checked {
  position: absolute;
  left: 0;
  opacity: 0.01;
}

.personaldata:not(:checked) + label,
.personaldata:checked + label {
  position: relative;
  padding-left: 2.3em;
  font-size: 1.05em;
  line-height: 1.7;
  cursor: pointer;
}

/* checkbox aspect */
.personaldata:not(:checked) + label:before,
.personaldata:checked + label:before {
  content: "";
  position: absolute;
  left: 0px;
  top: -3px;
  width: 28px;
  height: 28px;
  border-width: 0;
  background: #FFF;
  border-radius: 0.2em;
  transition: all 0.275s;
}

/* checked mark aspect */
.personaldata:not(:checked) + label:after,
.personaldata:checked + label:after {
  content: "";
  background-image: url(../images/checkbox.svg);
  background-size: cover;
  position: absolute;
  top: -9px;
  left: -7px;
  transition: all 0.2s;
  width: 39px;
  height: 40px;
}

/* checked mark aspect changes */
.personaldata:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0) rotate(45deg);
}

.personaldata:checked + label:after {
  opacity: 1;
  transform: scale(1) rotate(0);
}

/* Disabled checkbox */
.personaldata:disabled:not(:checked) + label:before,
.personaldata:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #e9e9e9;
}

.personaldata:disabled:checked + label:after {
  color: #777;
}

.personaldata:disabled + label {
  color: #aaa;
}

.personaldata:checked:focus + label:before,
.personaldata:not(:checked):focus + label:before {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 6px rgba(203, 34, 237, 0.2);
}

.kolvoperson {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.vacance-rightblock-line.kolvoperson input {
  width: 50px;
  background: transparent;
  color: #fff;
  padding: 0;
  text-align: center;
}

.inputplusminus {
  display: flex;
  padding-top: 3px;
  padding-left: 40px;
  align-items: center;
}

.inputplusminus button {
    background: transparent;
}

/* ------------------------------------------------------------------------------------------------- */
/* Корзина */
.korzina-leftblock {
  margin-top: -50px;
  display: flex;
  width: auto;
  flex-direction: row;
  flex-wrap: nowrap;
}

.korzina-leftblock .vacance-leftblock-type {
  width: auto;
}

.korzina-leftblock.vacance-leftblock label {
  box-shadow: none;
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  padding-left: 0;
}

.korzina-leftblock .radio input[type=radio] + .radio-label:before {
  margin-left: 10px;
}
.korzina-dopi-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: -10px;
}
/* .korzina-dopi-body + .korzina-dopi-body  {
    margin-top: 25px;
} */

.korzina-dopi-body p {
    color: red;
}
.korzina-dopi-body p + .korzina-dopi-body p {
    margin-top: 0;
}
.korzina-dopi-body {
  /* float: left;
  width: 100%; */
  width: calc(50% - 20px);
  margin: 10px;
}
@media(max-width: 750px) {
    .korzina-dopi-body {
        width: calc(100% - 20px);
    }
}
.korzina-dopi {
 /*  float: left; */
  font-size: 22px;
  /* width: 612px; */
  box-shadow: 0 0 0 3px white;
  border-radius: 20px;
  padding: 20px 25px 25px;
  font-weight: 400;
  line-height: normal;
  font-family: "Geologica-Regular";
  height: 100%;
  display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 680px) {
  .korzina-dopi {
    max-width: 612px;
    width: 100%;
    font-size: 20px;
  }
}
@media (max-width: 680px) {
  .korzina-dopi {
    font-size: 16px;
  }
}

/* наименования в корзине */
.korzina-body {
  float: left;
  /*width: 857px;*/
  width: 100%;
  display: flex;
  flex-direction: row;
  margin: 80px 0;
      flex-wrap: wrap;
}
@media (max-width: 900px) {
  .korzina-body {
    width: 100%;
  }
}
.korzina-body-item {
  background-color: #fff;
  color: #000;
  margin: 15px 0;
  border-radius: 20px;
  overflow: hidden;
  font-weight: 400;
  line-height: normal;
  font-family: "Geologica-Regular";
  display: flex;
  position: relative;
  align-items: center;
  /*16,02*/
  width: calc(50% - 20px);
    justify-content: flex-start;
    margin: 10px;
}
@media(max-width:1100px) {
    .korzina-body-item {
        width: 70%;
    }
    .korzina-body {
        flex-direction: column;
    }
}
@media(max-width:750px) {
    .korzina-body-item {
        width: 100%;
    }
    .korzina-body {
        flex-direction: column;
    }
}

@media(max-width:500px) {
    .korzina-body {
        margin: 40px 0;
    }
} 
.korzina-body-item-img {
  /*width: 200px;*/
  float: left;
  width: 22%;
}
@media (max-width: 900px) {
  .korzina-body-item-img {
    width: 23%;
  }
}

.korzina-body-item-img img {
  width: 100%;
}

.korzina-body-item-text {
  float: left;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  font-size: 18px;
  padding-left: 20px;
  padding-right: 15px;
  /*width: calc(100% - 552px);*/
  width: 40%;
}
@media (max-width: 900px) {
  .korzina-body-item-text {
    width: 41%;
    font-size: 15px;
  }
}
@media (max-width: 750px) {
  .korzina-body-item-text {
    font-size: 13px;
  }
}

.korzina-body-item-title {
  font-size: 20px;
  line-height: 1.2;
}

@media (max-width: 750px) {
  .korzina-body-item-title {
    font-size: 20px;
  }
}
@media (max-width: 420px) {
  .korzina-body-item-title {
    font-size: 16px;
  }
}
@media (max-width: 360px) {
  .korzina-body-item-title {
    font-size: 14px;
  }
}

.korzina-body-item-ves {
  padding-top: 10px;
}

.korzina-body-item-clear {
  top: 5px;
  position: absolute;
  right: 5px;
}
.korzina-body-item-clear img {
        width: 32px;
}
/* @media (max-width: 900px) {
  .korzina-body-item-clear {
    width: 40px;
    top: 0;
  }
} */
/* @media (max-width: 600px) {
  .korzina-body-item-clear {
    width: 32px;
  }
} */
/* @media (max-width: 420px) {
  .korzina-body-item-clear {
    right: 0;
  }
}

@media (max-width: 600px) {
  .korzina-body-item-clear img {
    width: 40px;
  }
}
@media (max-width: 420px) {
  .korzina-body-item-clear img {
    width: 32px;
  }
} */

.korzina-body-item-clear button {
    background: transparent;
}

.korzina-body-item-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
}
@media (max-width: 575px) {
  .korzina-body-item-price {
    flex-direction: column;
    margin: 15px 0;
  }
}

.korzina-body-item-cena {
  float: right;
  font-size: 28px;
  display: flex;
  align-items: center;
  flex-direction: row;
  /*padding-right: 20px;*/
  font-weight: bold;
}
@media (max-width: 900px) {
  .korzina-body-item-cena {
    font-size: 26px;
    /*padding-right: 15px;*/
  }
}
@media (max-width: 750px) {
  .korzina-body-item-cena {
    font-size: 21px;
  }
}
@media (max-width: 575px) {
  .korzina-body-item-cena {
    padding: 0;
    padding-bottom: 10px;
  }
}
@media (max-width: 420px) {
  .korzina-body-item-cena {
    font-size: 18px;
  }
}

.korzina-body-item-kolvo {
  float: right;
  width: 100px;
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px #000;
  height: 45px;
  font-size: 25px;
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  .korzina-body-item-kolvo {
    width: 120px;
    height: 50px;
    font-size: 26px;
  }
}
@media (max-width: 750px) {
  .korzina-body-item-kolvo {
    width: 90px;
    height: 44px;
    font-size: 26px;
  }
}
@media (max-width: 420px) {
  .korzina-body-item-kolvo {
    width: 75px;
    height: 35px;
    font-size: 18px;
  }
}

.korzina-body-item-kolvo button {
  width: 25%;
  border-width: 0;
  text-align: center;
  background: transparent;
}

.korzina-body-item-kolvo input {
  width: 50%;
  border-width: 0;
  background: transparent;
  text-align: center;
}

.korzina-itogo {
  font-size: 24px;
  float: left;
  width: 100%;
  margin-top: 50px;
  line-height: normal;
  font-family: "Rubik-ExtraBold";
  font-size: 33px;
  font-weight: 400;
  text-transform: uppercase;
}

.korzina-submit {
  float: left;
  width: 100%;
  margin-top: 20px;
}

.korzina-submit .send-button {
  font-size: 20px;
  padding: 5px 35px;
}

.korzina-body-clear {
  text-align: right;
  font-size: 18px;
  font-weight: 200;
  font-family: "Geologica-ExtraLight";
}

/*contacts*/
.contacts-wrap {
  display: flex;
  width: 100%;
}
.contacts-wrap .contacts-address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
}
.contacts-wrap .contacts-address p {
  display: flex;
  align-items: center;
}
.contacts-wrap .contacts-address p img {
  margin-right: 12px;
}
@media (max-width: 700px) {
  .contacts-wrap .contacts-address {
    width: 100%;
  }
}
.contacts-wrap .contacts-address-item {
  display: flex;
  flex-direction: column;
}
.contacts-wrap .contacts-address-item + .contacts-address-item {
  margin-top: 50px;
}
.contacts-wrap .contacts-address-social {
  display: flex;
  margin-top: 50px;
}
.contacts-wrap .contacts-address-social a + a {
  margin-left: 28px;
}
.contacts-wrap .contacts-map {
  width: 50%;
}
.contacts-wrap .contacts-map iframe {
  border-radius: 25px;
}
@media (max-width: 700px) {
  .contacts-wrap .contacts-map {
    width: 100%;
    margin-top: 50px;
  }
}
@media (max-width: 700px) {
  .contacts-wrap {
    flex-direction: column;
  }
}

/*404*/
.errorpage-title {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: nowrap;
  position: relative;
}
.errorpage-title p {
  font-size: 384px;
  font-weight: bold;
}
@media (max-width: 1100px) {
  .errorpage-title p {
    font-size: 310px;
  }
}
@media (max-width: 950px) {
  .errorpage-title p {
    font-size: 260px;
  }
}
@media (max-width: 768px) {
  .errorpage-title p {
    font-size: 230px;
  }
}
@media (max-width: 650px) {
  .errorpage-title p {
    font-size: 180px;
  }
}
@media (max-width: 480px) {
  .errorpage-title p {
    font-size: 150px;
  }
}
@media (max-width: 414px) {
  .errorpage-title p {
    font-size: 130px;
  }
}
@media (max-width: 380px) {
  .errorpage-title p {
    font-size: 110px;
  }
}
.errorpage-title img {
  position: absolute;
}
@media (max-width: 1100px) {
  .errorpage-title img {
    left: 50%;
    transform: translateX(-50%);
    width: 25%;
  }
}
@media (max-width: 850px) {
  .errorpage-title img {
    width: 35%;
  }
}
@media (max-width: 768px) {
  .errorpage-title img {
    width: 30%;
  }
}
@media (max-width: 550px) {
  .errorpage-title img {
    top: 5%;
  }
}
@media (max-width: 480px) {
  .errorpage-title img {
    top: 0;
  }
}

.errorpage-bot {
  display: flex;
  justify-content: space-between;
}
.errorpage-bot .errorpge-text {
  width: 35%;
}
@media (max-width: 1250px) {
  .errorpage-bot .errorpge-text {
    width: 45%;
  }
}
@media (max-width: 650px) {
  .errorpage-bot .errorpge-text {
    width: 100%;
  }
}
.errorpage-bot a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 18px;
  font-weight: 200;
  line-height: normal;
  font-family: "Geologica-ExtraLight";
  padding: 6px 28px;
  border-radius: 17px;
  background-color: #E8222F;
  transition: all 0.5s;
  border: 1px solid #E8222F;
}
@media (max-width: 650px) {
  .errorpage-bot a {
    margin-top: 20px;
  }
}
@media (max-width: 650px) {
  .errorpage-bot {
    flex-direction: column;
    align-items: center;
  }
}

.category_title {
    text-align: center;
    margin-bottom: 80px;
    font-size: 50px;
}

section.products__wrapper.categoryPage {
    position: relative;
    top: 50px;
}
.category_wrap {
    position: relative;
    margin-top: 150px;
}
/* @media(max-width: 1460px) {
    .category_wrap {
        top: 120px;
    }
} */
@media(max-width: 1100px) {
    /* .category_wrap {
        top: 170px;
    } */
    .category_title {
        margin-bottom: 50px;
    }
    section.products__wrapper.categoryPage {
        top: 30px;
    }
    section#mobile__menufixed  {
        top: 87px;
    }
}
a.basket_mob {
    display: none;
}
@media(max-width: 660px){
    .category_wrap {
        position: relative;
        margin-top: 160px;
    }
    section#mobile__menufixed {
        top: 0;
    }
    a.basket_mob {
        position: fixed;
        bottom: 0;
        background: red;
        width: 100%;
        padding: 10px 20px;
        border-top-left-radius: 17px;
        border-top-right-radius: 17px;
        display: flex;
        justify-content: space-between;
    }
    .basket_mob .basket__name {
        font-size: 20px;
    }
    .basket_mob .basket__value {
        font-size: 20px;
    }
    .basket_mob .basket__value + .basket__value {
        margin-left: 5px;
    }
}


.products__wrap .prod__card {
    height: 700px;
}
@media(max-width: 1300px){
    .products__wrap .prod__card {
        height: 630px;
    }
}

@media(max-width: 1100px){
    .products__wrap .prod__card {
        width: calc(33% - 24px);
    }
}

@media(max-width: 800px){
    .products__wrap .prod__card {
        width: calc(50% - 24px);
    }
}
@media(max-width: 660px) {
    .products__wrap .card__bottom {
        margin-top: auto;
    }
    .products__wrap .prod__name {
        font-size: 18px;
    }
    .products__wrap .card__delivery p {
        font-size: 14px;
    }
    .products__wrap .prod__card {
        height: 525px;
    }
    .vacance-rightblock-line input, .vacance-rightblock-line textarea {
        padding: 10px 0 10px 0;
    }
    .prod__card-menu .card__img{
        height: 40%;
    }
    .prod__card-menu .card__contents-text {
         height: 60%;
     } 
}
 @media(max-width: 575px){
    .prod__card-menu .card__img{
        height: 30%;
    }
    .prod__card-menu .card__contents-text {
         height: 70%;
     }
} 
 @media(max-width: 515px){
    .card__contents .card__img{
        height: 40%;
    }
    .card__contents-text {
        height: 60%;
    }
}
@media(max-width: 455px) {
    .products__wrap .prod__card {
        height: 550px;
    }
}
@media(max-width: 420px){
    .products__wrap .prod__card {
        width: calc(75% - 24px);
    }
}

.popup__success {
    background-image: url(../images/backgroundsuccess.png);
        background-repeat: no-repeat;
    background-size: cover;
    border: 2px solid white;
    border-radius: 50px;
    width: 80%;
    margin: 0 auto;
    height: 671px;
    padding: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.fancybox__content>.carousel__button.is-close {
    color: #fff;
}

@media(max-width: 890px) {
    .popup__success {
        height: 100%;
        padding: 36px;
    }
}

@media(max-width: 460px) {
    .popup__success {
        padding: 20px;
    }
}

@media(max-width: 420px) {
    .popup__success p {
        font-size: 16px;
    }
    .popup__success h2 {
        font-size: 18px;
    }
}

.personaldata-div a {
    color: red;
}

div#popup_app {
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
}

.app__block {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

.app__item {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app__item p {
    color: #000;
}

div#popup_app .carousel__button {
    border-radius: 100px;
    background: #522C5D;
}

div#popup_app h3 {
    color: #000;
}

@media(max-width: 660px){
    div#popup_app h3 {
        font-size: 20px;
    }
}

@media(max-width: 450px){
    .app__block {
        flex-direction: column;
    }
}

div#popup_delivery {
    position: fixed;
    border-radius: 25px;
    padding: 0;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    z-index: 99;
    left: 50%;
}

div#popup_delivery .carousel__button {
    display: none;
}

div#popup_delivery img {
    border-radius: 25px;
    width: 100%;
    height: 100%;
}

.delivery__block {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 50px;
    border-top-right-radius: 84px;
    border-bottom-right-radius: 84px;
    box-shadow: -8px 0px 8px 0px #00000040 inset;
    height: 100%;
    width: 60%;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.delivery__block h3 {
    color: #000;
}

.delivery__content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.delivery__content .radio-label {
    display: flex;
}

.delivery__content .radio-label p {
    color: #000;
}

.delivery__content .vacance-leftblock-type {
    width: 100%;
}

@media(max-width: 900px){
    div#popup_delivery {
        width: 100%;
    }
}
@media(max-width: 620px){
    .delivery__block {
        padding-left: 30px;
    }
}
@media(max-width: 570px){
    .delivery__block {
        width: 70%;
    }
}
@media(max-width: 510px){
    .delivery__content .radio-label p {
        font-size: 14px;
    }
    .delivery__block h3 {
        font-size: 18px;
    }
    .fancybox__slide .card-back {
        transform: unset;
    }
    .card__contents {
        height: 100%;
    }
    .compound-front {
        display: none;
    }
    .compound__mob-open {
        display: block;
    }
}
@media(max-width: 400px){
    .delivery__block {
        padding-left: 10px;
    }
}
@media(max-width: 370px){
    div#popup_delivery  {
        height: 200px;
    }
    div#popup_delivery img {
        border-radius: 25px;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }
}

.show {
    display: block;
}

.tabs__pane {
  display: none;
}

.tabs__pane_show {
  display: block;
}
.tabs__nav.inner-page__nav {
    display: flex;
}
.tabs__link {
    font-family: "Geologica-Regular";
    font-size: 20px;
    margin-right: 12px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background: #D9D9D9;
    color: #000;
    padding: 12px;
    width: 120px;
    text-align: center;
    font-weight: 800;
}
.tabs__link.tabs__link_active {
    background: #fff;
}
.tabs__content {
    background: #fff;
    border-radius: 23px;
    border-top-left-radius: 0;
}

.tabs__pane .container {
    padding: 24px 19px 19px 19px;;
}
.tabs__pane .prod__card {
    border: 2px solid #16161638;
    height: 575px;
}
.tabs__pane .prod__card:hover {
    border-color: #E8222F;
}
.tabs__pane .card__contents {
    justify-content: space-between;
}
@media(max-width: 660px){
    .tabs__pane .prod__card {
        height: 500px;
    }
}

@media(max-width: 570px){
    .tabs__nav.inner-page__nav {
        justify-content: space-between;
    }
    .tabs__link {
        margin-right: 0;
    }
    .tabs__content {
        border-top-right-radius: 0;
    }
}
@media(max-width: 555px) {
    .tabs__pane .prod__card {
        width: calc(75% - 24px);
    }
}
@media(max-width: 450px) {
    .tabs__pane .prod__name {
        font-size: 15px;
    }
}
@media(max-width: 440px) {
    .tabs__link {
        font-size: 15px;
    }
}
@media(max-width: 365px) {
    .tabs__link {
        padding: 7px;
    }
}

.drink .products.products__wrap {
        flex-direction: column;
}

.drink .products__wrap .prod__card {
    height: fit-content;
    width: 50%;
    margin: 0 auto;
    border: unset;
    background-color: unset;
    min-height: 100%;
}

.drink .card__contents-text {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.drink .prod__name, .drink .compound__desc, .drink .compound__box p {
    color: #fff;
}
.drink .prod__name {
    font-weight: 800;
}
.drink .card__contents-top {
    width: 80%;
}

.drink .compound__desc {
    font-weight: 100;
    font-family: 'Geologica-ExtraLight';
}

.drink .card__contents {
    position: relative;
}




div#popup__bron {
    border: 2px solid #fff;
    border-radius: 25px;
    background-image: url(../images/sitebg.webp);
}

.bron__phone {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
}

.bron__phone-item {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-evenly;
}
.bron__phone-item p {
    margin: 0;
}
.popup__bron h2 {
    text-align: center;
}
.popup__bron .send-button {
    margin-bottom: 15px;
}
.bron__input {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.bron__input .vacance-rightblock-line {
    width: 50%;
}
.bron__input input {
    width: calc(100% - 40px);
    margin: 20px;
}


.popup__bron .vacance-rightblock-line, .bron_desc {
    text-align: center;
}

@media(max-width: 1240px) {
    .popup__bron .vacance-rightblock-line.personaldata-div {
        text-align: justify;
    }
    .bron__input .vacance-rightblock-line {
        width: 100%;
    }
}
@media(max-width: 900px) {
    .drink .products__wrap .prod__card {
        width: 70%;
    }
}
@media(max-width: 660px) {
    .drink .compound__desc {
        font-size: 18px;
    }
}
@media(max-width: 600px) {
    .drink .products__wrap .prod__card {
        width: 100%;
    }
}
@media(max-width: 490px) {
    .bron__phone-item {
        flex-direction: column;
    }
    .bron__phone-item +  .bron__phone-item {
        margin-top: 10px;
    }
}

@media(max-width: 420px) {
    .bron__input input {
        font-size: 18px;
    }
}

@media(max-width: 1100px) {
    .text_content.cart {
        padding-top: 140px;
    }
}


.bron__input .vacance-leftblock-type label {
    float: left;
    padding: 24px 0 20px 20px;
    float: left;
    width: 100%;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.54);
    border-radius: 10px;
    font-size: 22px;
    display: flex;
    align-items: center;
    cursor: pointer;
    width: calc(100% - 40px);
    margin: 20px;
    color: #fff;
}

.bron__input .vacance-leftblock-type {
    width: 50%;
    font-size: 24px;
    font-weight: 200;
    line-height: normal;
    font-family: "Geologica-Regular";
    color: #000;
    border-radius: 10px;
    border-width: 0;
    margin: 0 !important;
}
.msCartTotalCost {
        display: flex;
        flex-wrap: wrap;
    }
@media(max-width: 800px) {
    .bron__input .vacance-leftblock-type {
        width: 100%;
    }
}
@media(max-width: 550px) {
    #msCart h4 {
        flex-wrap: wrap;
    }
    
    #msCart p + p {
        width: 50%;
    }
}


body .jGrowl.top-right {
  top: auto;
  bottom: 0;
}
body .jGrowl.top-right .jGrowl-notification {
  font-size: 20px;
  width: 300px;
}
body .jGrowl-closer {
  width: 300px;
  font-size: 20px;
}


.loyalty_desc {
    margin-top: 55px;
    margin-bottom: 40px;
}

.loyalty_desc a {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    color: #fff;
    font-size: 18px;
    font-weight: 200;
    line-height: normal;
    font-family: "Geologica-ExtraLight";
    padding: 6px 28px;
    border-radius: 17px;
    background-color: #E8222F;
    transition: all 0.5s;
    border: 1px solid #E8222F;
    margin: 0 auto;
    margin-top: 20px;
}

.loyalty_ball, .loyalty_list {
    width: 50%;
}

.loyalty_ball span{
    font-size: 48px;
    font-weight: 900;
    line-height: 57px;
    color: #F3F3F3B0;
    padding: 20px 40px;
}

.loyalty_list {
    padding: 20px 40px;
}

.loyalty_list span {
    margin: 0;
    padding: 0;
}

.loyalty-cell:after {
    content:'';
    width: 1px;
    height: 80%;
    background-color: #464646;
    position: absolute;
    right: 50%;
    top: 50%;
    display: block;
    transform: translateY(-50%);
}

.loyalty_list p {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
}

.tel-info-logo {
    padding-top: 10px;
        font-size: 16px;
}

@media(max-width: 767px) {
    .loyalty_ball span {
        font-size: 40px;
    }
}

@media(max-width: 620px) {
    .loyalty_ball span {
        padding: 20px 20px;
    }
}

@media(max-width: 535px) {
    .loyalty_ball span {
        font-size: 32px;
    }
}

@media(max-width: 500px) {
    .loyalty-cell {
        flex-direction: column;
    }
    .loyalty_ball, .loyalty_list {
        width: 100%;
    }
    
    .loyalty-cell:after {
        display: none;
    }
    
    .loyalty_ball {
        border-bottom: 1px solid #464646;
        width: 90%;
        margin: auto;
    }
}
@media(max-width: 450px) {
    .delivery_block p {
        font-size: 13px;
    }
    .main__slide-cnt .main__slide-info {
        margin-bottom: 20px;
    }
    .main__slide {
        padding: 30px 15px 30px 20px;
    }
}
.main__slide-block {
    display: flex;
}
.main_slide-summ {
    display: flex;
    align-items: center;
}
.main__slide-block h4 {
    margin: 0 10px;
}
.main_slide-summ h5 {
    margin-left: 10px;
}
.main_slide-summ h3{
    margin: 0;
}
@media(max-width: 400px) {
    .loyalty_desc a {
        font-size: 14px;
    }
}
@media(max-width: 390px) {
    .main__slide-block {
        flex-direction: column;
    }
}

/* скролл топ кнопка */
#uprows {
  width: fit-content;
  height: fit-content;
  cursor: pointer;
  position: fixed;
  right: -10px;
  bottom: 120px;
  opacity: 0.8;
}

#uprows:hover {
    opacity: 1;
}

#uprows:hover::after {
  content: "";
  position: absolute;
  height: 54px;
  width: 49px;
  z-index: 121;
  background-image: url("../images/mainsliderrightcircle.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.5s;
  right: 16px;
  top: -30px;
  transform: rotate(-90deg);
}

#uprows span {
  width: 80px;
  height: 16px;
  background-image: url("../images/vector-7.png");
  background-repeat: no-repeat;
  transition: all 0.5s;
  transform: rotate(-90deg);
  display: block;
  background-position: -30px;
}
/*# sourceMappingURL=style.css.map */

.popup_mobile_app {
    border-radius: 40px;
    background-image: url(/upload/241225/popUpMobile.png);
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 30px;
    width: 100%;
    max-width: 340px;
    background-size: cover;
    min-height: 340px;
}

.popup_mobile_app .carousel__button.is-close {
  display: none;
}

.popup_mobile_app h3, .popup_mobile_app p {
  margin: 0;
}

.popup-mobile-h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 15.4px;
  text-align: left;
  text-transform: uppercase;
  padding-bottom: 6px;
  color: #289bd3;
}

.mobile-popup-download {
    font-size: 12px;
    font-weight: 200;
    line-height: 30px;
    text-align: left;
    padding-bottom: 18px;
    padding-top: 18px;
}

.popup-mobile-btn-group {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
  padding-bottom: 10px;
}

.mobile-popup-rustore-logo {
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 18px;
}

/* .mobile-popup-bottom-links {
  font-size: 10px;
  font-weight: 200;
  line-height: 12.5px;
  text-align: center;
} */
.mobile-popup-bottom-links {
  font-size: 20px;
  font-weight: 200;
  line-height: 22.5px;
  text-align: center;
}
@media(max-width: 390px) {
    .mobile-popup-bottom-links {
      font-size: 16px;
      font-weight: 200;
      line-height: 14.5px;
      text-align: center;
    }
}

.mobile-popup-bottom-links span {
  color: #E8222F;
}

.category_rolls {
    
    padding: 8px 14px;
    border-radius: 78px;
    text-align: center;
    color: white;
    position: absolute;
    right: 7px;
    top: 7px;
    z-index: 1;
    font-family: "Geologica-ExtraLight";
    font-size: 12px;
    text-transform: uppercase;
}

.category_rolls.pere {
    background-color: #D05814;
}

.category_rolls.classic {
    background-color: #ff4a4a;
}

.category_rolls.hot {
    background-color: #FF754A;
}

.popup_infoCity {
    border: 2px solid red;
    border-radius: 25px;
    padding: 20px;
    max-width: 560px;
    background: #000;
}

.telegram-icon-mobile{
    width: 30px;
    height: 30px;
    margin: 0 auto;
    margin-top: 20px;
    display: none;
}

.a-mobile-color {
    color: #289bd3;
}

@media(max-width: 1250px) {
    .tel-info-logo {
        font-size: 16px;
    }
}

@media(max-width: 1200px) {
    .tel-info-logo {
        font-size: 12px !important;
    }
    .header__list li + li {
        margin-left: 10px;
    }
}

@media(max-width: 660px) {
    .tel-info-logo {
        margin-right: 40px;
    }
    .main__slider-wrapper {
        padding-top: 70px;
      }
}


/* ==================================history-------------------------- */

.history {
    margin: 50px 0;
    display: flex;
    gap: 20px;
    position: relative;
    overflow-x: auto;
    padding: 10px;
}

.history .history_item {
    min-width: 190px;
    width: 190px;
    height: 240px;
    border-radius: 9px;
    transition: all 0.45s;
    cursor: pointer;
    padding: 15px;
    position: relative;
    display: block;
    
}

.history .history_item:hover {
    box-shadow: 2px 4px 12px 0px #E8222F80;
}

.history .history_item .history_item_img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 2px;
    z-index: -1;
    object-fit: cover;
    border-radius: 9px;
}

.history .history_item .history_item_title {
    font-size: 16px;
    font-weight: 800;
    line-height: 18.96px;
    margin-top: 0;
    margin-bottom: 2px;
}

.history .history_item .history_item_subtitle {
    font-size: 12px;
    font-weight: 700;
    line-height: 14.22px;
    margin-bottom: 2px;
}

.history .history_item .history_item_bigtext {

    font-size: 12px;
    font-weight: 400;
    line-height: 14.22px;
    margin-bottom: 7px;
}

.history .history_item .history_item_smalltext {

    font-size: 8px;
    font-weight: 400;
    line-height: 9.48px;
    width: 120px;
}

.history .history_item .history_item_text {

    font-size: 10px;
    font-weight: 400;
    line-height: 11.85px;
}

.history .history_item .history_item_smalltitle {

    font-size: 12px;
    font-weight: 800;
    line-height: 14.22px;
    margin-top: 0;
    margin-bottom: 2px;
}


/* Стиль для слайдера */

.swiper-modal .swiper-slide {
    padding-top: 90px;
}

.history .swiper-modal .swiper-container {
    width: 370px;
    height: 620px;
    overflow: hidden;
    position: relative;
}

.swiper-modal .swiper-slide img {
    width: 91%;
    display: block;
    height: 100%;
    position: absolute;
    z-index: -1;
    border-radius: 15px;
    object-fit: cover;
    top: 30px;
}

.swiper-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#close-slider {
    position: absolute;
    top: 0;
    right: 6px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 2;
}

.progress-bar {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.progress-bar span {
    display: block;
    height: 100%;
    background: #ff0000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform linear;
}

.progress-bar-container {
    width: 70%;
    position: absolute;
    top: 10px;
    left: 30px;
    right: 20px;
    height: 5px;
    display: flex;
    gap: 5px;
    z-index: 1000;
}

.progress-bar-container .progress-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.3);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.progress-bar-container .progress-bar .fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #FFFFFF;
    transition: width linear;
}

.swiper-container .swiper-wrapper .swiper_slide_title {
    width: 300px;
    font-family: Rubik;
    font-size: 32px;
    font-weight: 800;
    line-height: 37.92px;
    padding-left: 20px;
    margin-bottom: 6px;
    margin-top: 0;
    text-transform: uppercase;
}

.swiper-container .swiper-wrapper .swiper_slide_subtitle {
    font-family: Rubik;
    font-size: 20px;
    font-weight: 700;
    line-height: 23.7px;
    margin-bottom: 6px;
    padding-left: 20px;
    width: 300px;
}

.swiper-container .swiper-wrapper .swiper_slide_smalltitle {
    font-family: Rubik;
    font-size: 22px;
    font-weight: 800;
    line-height: 26.07px;
    width: 300px;
    margin-top: 0;
    margin-bottom: 6px;
    padding-left: 20px;
    text-transform: uppercase;
}

.swiper-container .swiper-wrapper .swiper_slide_bigtext {
    font-family: Rubik;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.33px;
    margin-bottom: 6px;
    padding-left: 20px;
}

.swiper-container .swiper-wrapper .swiper_slide_smalltext {
    font-family: Rubik;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.59px;
    padding-left: 20px;
    width: 200px;
}

.swiper-container .swiper-wrapper .swiper_slide_text {
    font-family: Rubik;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.33px;
    padding-left: 20px;
    width: 300px;
}

.history .swiper-container {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

/* .history_swiper .swiper-container {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

Затемнение фона
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 998; Под модальным окном
}

Центрирование модального окна
.swiper-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    height: 80%;
    max-height: 600px;
    background: #fff;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
}

Скрытие модального окна
.swiper-modal.hidden {
    display: none;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
} */

body.overlay-active {
    overflow: hidden;
}

/* .swiper-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.slider {
    position: relative;
    width: 100%;
    max-width: 1200px; Максимальная ширина слайдера
    margin: 0 auto;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.slider-slide {
    flex: 0 0 17%; Каждый слайд занимает 20% ширины контейнера (5 слайдов в ряд)
    box-sizing: border-box;
    padding: 5px; Отступы между слайдами
}

.slider-slide img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    color: black;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
}

.prev-btn {
    left: 0px;
}

.next-btn {
    right: 0px;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 1024px) {
    .slider-slide {
        flex: 0 0 22%; 3 слайда
    }
}

@media (max-width: 768px) {
    .slider-slide {
        flex: 0 0 27%; 2 слайда
    }
}

@media (max-width: 650px) {
    .slider-slide {
        flex: 0 0 33%;
    }
}

@media (max-width: 550px) {
    .slider-slide {
        flex: 0 0 40%;
    }
}

@media (max-width: 480px) {
    .slider-slide {
        flex: 0 0 50%; 1 слайд
    }
    .history .swiper-modal .swiper-container {
        height: 800px;
    }
} */


header .search {
  width: 25.85px;
  height: 25.85px;
  cursor: pointer;
  position: relative;
}

header .search a {
  width: 100%;
  height: 100%;
  display: block;
}

header .search a svg {
  width: 100%;
  height: 100%;
}

.search-form {
    position: absolute;
    top: -1px;
    left: -10000%;
    width: 300px;
    height: 35px;
    background: white;
    transition: left 0.3s ease;
    z-index: 1001;
    display: flex;
    align-items: center;
    border-radius: 20px;
}
.search-form.active {
    left: -280px;
    padding: 0 20px;
}

.search-form form {
    height: 100%;
    width: 100%;
}

.search-form form input {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: unset;
    padding-left: 10px;
}
.search-form form button {
    position: absolute;
    right: 10px;
    background: transparent;
    top: 8px;
}


#suggest {
        position: absolute;
        left: 0;
        top: 80px;
        background: #fff;
        padding: 15px;
        border-radius: 22px;
    }
    
    #suggest ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

@media(max-width: 660px) {
    header .search {
        top: 11px;
    }
}


@media(max-width: 480px) {
    .search-form {
        position: absolute;
        top: -240%;
        left: 50%;
        transform: translateX(-70%);
        width: 280px;
    }
    .search-form.active {
        left: 50%;   
        top: -10%;
    }
}





