.ripple {
  position: relative;
}

.circle {
  position: absolute;
  background-color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: scale 0.5s ease-out;
}

@keyframes scale {
  to {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}
:root {
  --primary-accent-color: #DE7200;
  --primary-dots-color: Tomato;
  --button-hover-color: #964E02;
  --light-grey-color: #F5F5F5;
  --middle-grey-color: #BEBDBD;
  --dark-grey-color: #777777;
  --light-red-color: #FDD1D1;
  --btn-pay-color: #1E7A3D;
  --text-grey-color: #313131;
}

@font-face {
  font-family: "Mulish";
  src: url("/fonts/mulish/Mulish-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}
h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.33;
  text-transform: uppercase;
}

h2 {
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

h3 {
  font-size: 18px;
}

p {
  font-size: 15px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #000;
  scroll-behavior: smooth;
}

body {
  max-width: 2400px;
  min-width: 280px;
  margin: 0 auto;
  position: relative;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 10px;
  overflow-x: hidden;
}

section {
  max-width: 100%;
  margin-top: 85px;
}

a {
  text-decoration: none;
  cursor: pointer;
  font-size: 15px;
}

li {
  list-style-type: none;
  font-size: 15px;
  white-space: nowrap;
}

ul {
  margin-left: 0;
  padding-left: 0;
}

button {
  width: 160px;
  height: 40px;
  outline: none;
  border: inset 0;
}

input {
  outline: none;
  border: inset 0;
}

.btn__fill {
  border: 1px solid transparent;
  background: #EF973C;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: background-color 300ms linear;
}

.btn__fill:hover {
  background: var(--primary-accent-color);
  color: white;
}

.header {
  height: 80px;
  background: linear-gradient(90deg, #00B4DB, #0083B0);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: 0.3s;
}

.desktop-header {
  display: flex;
  align-items: center;
  padding: 5px 0px;
  flex-direction: column;
}

.container.desktop-container {
  padding: 0 0px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow-x: hidden;
}

.search {
  width: 25%;
  display: flex;
  gap: 5px;
}

.form-search {
  width: 100%;
  display: flex;
  gap: 0px;
  flex-direction: row;
}

.search__inp {
  width: 100%;
  min-width: 200px;
  height: 30.1px;
  background-color: #02718D;
  color: white;
  font-size: 16px;
  padding: 5px 10px;
  transition: 0.3s;
}

.search__inp:focus {
  border: 0;
}

.search__inp:hover {
  background-color: #15829D;
  border: 0;
}

.search__inp::-moz-placeholder {
  color: #CFCFCF;
}

.search__inp::-webkit-input-placeholder {
  color: #CFCFCF;
}

.search__btn {
  height: 30px;
  width: 30px;
  min-width: 30px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  padding: 3px;
  background: url("/assets/svg/search.svg") center/cover no-repeat, #014454;
}

.search__btn:hover {
  background-color: #01303C;
}

.live-search__ul {
  max-height: 50vh;
  position: absolute;
  top: 55px;
  background-color: #0088B5;
  opacity: 0;
  padding: 10px;
  overflow-x: hidden;
  transition: 0.5s;
  pointer-events: none;
}
.live-search__ul li {
  max-width: 280px;
  color: white;
  word-break: break-all;
  margin-bottom: 5px;
}

.desktop-header__logo-wrap {
  width: 16.6666666667%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.desktop-header__logo {
  background-image: url("/assets/svg/logoFR.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 140px;
  height: 70px;
  transition: 0.3s;
}

.mini-box {
  width: 8.3333333333%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.minicart {
  width: 25px;
  height: 25px;
  background: url("/assets/svg/header-cart.svg") center/contain no-repeat;
  position: relative;
}

.minicart__value,
.minifav__value {
  width: 20px;
  height: 20px;
  font-size: 12px;
  color: white;
  background-color: #d20505;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: -15px;
}

.anim-mini {
  animation: minishow 0.3s;
}

@keyframes minishow {
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.minifav {
  width: 25px;
  height: 25px;
  background: url("/assets/svg/header-fav.svg") center/contain no-repeat;
  position: relative;
}

.desktop-nav {
  width: 33.3333333333%;
}

.burger-li {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.desktop-ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  height: 30px;
}
.desktop-ul li {
  height: 18px;
  transition: 0.3s;
}
.desktop-ul li a {
  color: white;
  text-transform: uppercase;
  transition: 0.3s;
}
.desktop-ul li:hover {
  height: 25px;
}
.desktop-ul li:hover a {
  border-bottom: 1px solid #8edfce;
}

.burger-span-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger-span {
  width: 25px;
  height: 2px;
  display: inline-block;
  background-color: white;
  transition: 0.2s;
}

.modal-overlay {
  width: 100vw;
  min-height: 100vh;
  position: fixed;
  top: 160px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 99;
  transition: 0.3s;
  transform: translateY(-2000px);
}

.modal-overlay__toggle {
  transform: translateY(0px) !important;
}

.modal-cat {
  width: 100%;
  height: 70vh;
  padding: 20px;
  gap: 10px;
  background: linear-gradient(#EAFFFD, #EEF3FF);
  display: grid;
  grid-template-columns: repeat(auto-fill, 170px);
  justify-content: center;
  justify-items: center;
  box-shadow: 0px 12px 9px 0px rgba(34, 60, 80, 0.2);
}
.modal-cat a {
  max-width: 200px;
  width: 100%;
  min-height: initial;
  padding-bottom: 50%;
}
.modal-cat a .category__text .sale__title {
  word-wrap: break-word;
  font-size: 18px;
  color: #9E0005;
  font-weight: 700;
}
.modal-cat a .category__text h3 {
  font-weight: 400;
  font-size: 14px;
  padding: 2px 5px;
}

.category__box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}

.category__item {
  width: calc(25% - 13.5px);
  padding-bottom: 20%;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  transition: 0.3s;
}

.category__item--1,
.category__item--6,
.category__item--7,
.category__item--12,
.category__item--13,
.category__item--18,
.category__item--19 {
  width: calc(50% - 9px);
  padding-bottom: 20%;
}

.category__item--1 {
  background-image: url("/assets/img/category/1.png");
}

.category__item--0 {
  width: 100%;
  padding-bottom: 15%;
}

.category__item--2 {
  background-image: url("/assets/img/category/2.png");
  background-position: top;
}

.category__item--3 {
  background-image: url("/assets/img/category/3.png");
  background-position: top;
}

.category__item--4 {
  background-image: url("/assets/img/category/4.png");
  background-position: top;
}

.category__item--5 {
  background-image: url("/assets/img/category/5.png");
  background-position: top;
}

.category__item--6 {
  background-image: url("/assets/img/category/6.png");
  background-position: center;
}

.category__item--7 {
  background-image: url("/assets/img/category/7.png");
  background-position: center;
}

.category__item--14 {
  background-image: url("/assets/img/category/14.png");
  background-position: center;
}

.category__item--22 {
  background-image: url("/assets/img/category/22.png");
  background-position: center;
}

.category__item--8 {
  background-image: url("/assets/img/category/8.png");
  background-position: center;
}

.category__item--9 {
  background-image: url("/assets/img/category/9.png");
  background-position: center;
}

.category__item--10 {
  background-image: url("/assets/img/category/10.png");
  background-position: center;
}

.category__item--11 {
  background-image: url("/assets/img/category/11.png");
  background-position: center;
}

.category__item--12 {
  background-image: url("/assets/img/category/12.png");
  background-position: center;
}

.category__item--13 {
  background-image: url("/assets/img/category/13.png");
  background-position: center;
}

.category__item--15 {
  background-image: url("/assets/img/category/15.png");
  background-position: center;
}

.category__item--16 {
  background-image: url("/assets/img/category/16.png");
  background-position: center;
}

.category__item--17 {
  background-image: url("/assets/img/category/17.png");
  background-position: center;
}

.category__item--18 {
  background-image: url("/assets/img/category/18.png");
  background-position: center;
}

.category__item--19 {
  background-image: url("/assets/img/category/19.png");
  background-position: center;
}

.category__item--20 {
  background-image: url("/assets/img/category/20.png");
  background-position: center;
}

.category__item--21 {
  background-image: url("/assets/img/category/21.png");
  background-position: center;
}

.category__item--23 {
  background-image: url("/assets/img/category/23.png");
  background-position: center;
}

.category__item--24 {
  background-image: url("/assets/img/category/24.png");
  background-position: center;
}

.category__item--25 {
  background-image: url("/assets/img/category/25.png");
  background-position: center;
}

.category__item--0 {
  background-image: url("/assets/img/category/0.png");
  background-position: center;
}

.category__item:hover {
  box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
}

.category__text {
  margin: 20px;
}
.category__text .sale__title {
  word-wrap: break-word;
  font-size: 30px;
  color: #9E0005;
  font-weight: 900;
}
.category__text h3 {
  word-wrap: break-word;
}

.hide-category {
  display: none;
}

.category__btn {
  margin-left: auto;
  margin-right: 0;
  display: block;
  margin-top: 20px;
}

.main-mt120 {
  margin-top: 100px;
}

.main-mt40 {
  margin-top: 40px;
}

.main-page {
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  transition: 0.3s;
}

.offer {
  width: 50%;
  height: inherit;
  flex-direction: column;
  overflow: hidden;
}

.offer__subtitle-h1 {
  text-align: center;
}

.offer__subtitle-p {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.8px;
  text-align: center;
}

.offer__header {
  width: 100%;
  height: 33%;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  flex-wrap: wrap;
  background-image: linear-gradient(90deg, #EFEFEF, rgba(247, 229, 193, 0));
  padding: 20px;
}

.logo {
  background-image: url("/assets/svg/logoFrIcon.svg");
  width: 25%;
  height: 70%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.location {
  width: 33%;
  height: 100%;
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.location__address--text,
.contacts__link--mail-text,
.contacts__phones--numbers {
  transition: 0.3s;
  font-size: 16px;
}

.location__address--text:hover,
.contacts__link--mail-text:hover,
.contacts__phones--numbers:hover {
  color: var(--primary-accent-color);
}

.contacts {
  width: 33%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
}

.contacts__mail {
  height: 40px;
}

.contacts__link {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  max-height: 60px;
}

.contacts__link--mail {
  max-height: 40px;
  gap: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contacts__link--mail .contacts__link--mail-text {
  font-size: 16px;
  margin-top: 5px;
}

.contacts__detail ul li {
  white-space: nowrap;
}

.offer__title {
  width: 100%;
  height: 33%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-image: linear-gradient(90deg, #4BA7CC, rgba(247, 229, 193, 0));
}

.offer__marketing {
  width: 100%;
  height: 33%;
  padding: 20px;
  background-image: linear-gradient(90deg, lightcoral, rgba(247, 229, 193, 0));
  overflow: hidden;
  transition: 0.3s;
}

.offer__marketing-slider {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 100px;
  transition: 0.3s;
  margin-top: 20px;
}

.offer__marketing-box {
  display: flex;
  justify-content: space-between;
  align-content: center;
  height: inherit;
  transition: 0.3s;
  height: 100%;
  gap: 10px;
}

.offer__marketing-box--main {
  align-items: flex-end;
}

.offer__marketing-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 33.3333333333%;
  transition: 0.8s;
  height: 100%;
}

.offset-down {
  transform: translateY(0px);
}

.offset-up {
  transform: translateY(-156px);
}

.offer_marketing-svg {
  max-width: 45px;
  width: 100%;
}
.offer_marketing-svg img {
  max-width: inherit;
  width: inherit;
  filter: invert(50%) sepia(5%) saturate(8%) hue-rotate(7deg) brightness(40%) contrast(87%);
}

.offer__marketing-text {
  text-align: center;
}

.slider {
  position: relative;
  width: 50%;
  height: inherit;
  overflow: hidden;
  background-color: #fff;
  background-image: linear-gradient(270deg, rgb(245, 245, 245), rgba(247, 229, 193, 0));
}

.cart-loading {
  height: 100px;
}

.main-spinner img {
  width: 20%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.spinner {
  position: relative;
}
.spinner img {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.overbox {
  width: 100%;
  height: 100%;
  pointer-events: none !important;
}

.overbox-opacity {
  opacity: 0;
}

.offer__slide {
  width: 100%;
  height: 75%;
  position: absolute;
  transition: all ease 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  background-position: center;
  margin-top: 10%;
}

.offer__slide-title {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: inline;
  position: relative;
  transform: translateX(-1500px);
  background: linear-gradient(45deg, rgba(247, 229, 193, 0.7), rgb(240, 128, 128));
  padding: 15px;
  transition: 0.5s;
}

.offer__slide-comment {
  opacity: 0;
  transition: 0.3s;
  transform: translateX(100px);
  width: 100px;
  height: 30px;
  display: inline;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, rgba(240, 203, 53, 0.7), #c02425);
}

.offer__slide-comment-text {
  color: #fff;
}

.offer__slide-price {
  margin: 0;
}

.offer__slide-title-text {
  font-weight: 300;
}

.active-comment {
  opacity: 1;
}

.offer-tr {
  transform: translateX(0px);
}

.offer__slider-prev {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 10;
  cursor: pointer;
  position: absolute;
  top: 45%;
  left: 5%;
  transition: 0.3s;
}
.offer__slider-prev img {
  width: 25px;
  height: 25px;
}

.offer__slider-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 10;
  cursor: pointer;
  position: absolute;
  top: 45%;
  right: 5%;
  transition: 0.3s;
}
.offer__slider-next img {
  width: 25px;
  height: 25px;
}

.offer__slider-next:hover,
.offer__slider-prev:hover {
  transform: scale(1.1);
  background-color: #FDF1F1;
}

.slider__dots {
  max-width: 200px;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  position: absolute;
  top: 95%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.dot__item {
  margin-left: 5px;
  width: 12px;
  height: 4px;
  background-color: #AEAFAF;
}

.dot-dark {
  background-color: var(--primary-dots-color);
}

.brand {
  background: linear-gradient(90deg, #00B4DB, #0083B0);
}

.slick-track {
  display: flex;
}

.slick-list {
  overflow: hidden;
  padding: 20px;
  cursor: pointer;
}

.slider__item img {
  width: 85px;
}

.news-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  justify-items: center;
}

.news-item {
  max-width: 350px;
  width: 100%;
}

.news-item__picture {
  overflow: hidden;
  margin-bottom: 10px;
}
.news-item__picture img {
  max-width: inherit;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}

.news-item__title--h3 {
  font-weight: 700;
}

.news-item__picture:hover img {
  transform: scale(1.1);
}

time {
  font-size: 14px;
  color: grey;
  display: block;
  margin-bottom: 10px;
}

.about-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  background-image: linear-gradient(120deg, rgba(132, 250, 176, 0.1) 0%, rgba(143, 211, 244, 0.4) 100%);
  padding: 20px;
}

.about__item--image {
  margin-right: 20px;
}
.about__item--image img {
  max-width: 690px;
  width: 100%;
  display: block;
}

.mb10 {
  margin-bottom: 7px;
}

.mb20 {
  margin-bottom: 23px;
}

.contacts-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  min-height: 550px;
}

.contacts-box__map {
  min-height: 550px;
}

.contacts-box__address--foo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contacts-box__address--foo .location {
  max-width: 100%;
  width: initial;
  height: initial;
}
.contacts-box__address--foo .location,
.contacts-box__address--foo .contacts__phones {
  margin-bottom: 20px;
}
.contacts-box__address--foo .contacts__mail {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  height: 50px;
}
.contacts-box__address--foo .contacts__phones--foo {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  height: 70px;
}

.foo-contacts__li {
  margin-bottom: 5px;
}

.foo__svg {
  width: 30px;
  display: block;
}

.location__image {
  animation: metro 4s infinite 1s;
}

.phone__image {
  animation: metro 4s infinite 2s;
}

.email__image {
  animation: metro 4s infinite 3s;
}

.metro__image {
  animation: metro 4s infinite 4s;
}

.metro {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

@keyframes metro {
  0% {
    transform: scale(1);
  }
  5% {
    transform: scale(1.2);
  }
  10% {
    transform: scale(1);
  }
}
.worktime {
  max-width: 200px;
  width: 100%;
  height: 60px;
  margin-left: 20px;
}

.worktime-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.worktime-dots__item {
  width: 20px;
  height: 10px;
  border: 1px solid #FF4949;
  background-color: #FF4949;
}

.worktime-dots__item--work {
  border: 1px solid green;
  background-color: white;
}

.page404 {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page404 img {
  display: block;
  max-width: 900px;
  width: 100%;
}
.page404 button {
  width: 160px;
}

.mobile-nav {
  display: none !important;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  position: fixed;
  bottom: 0;
  background-color: white;
  z-index: 99;
  border-top: 1px solid var(--middle-grey-color);
}

.mm__svg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  display: block;
}

.mm__svg--home {
  background-image: url("/assets/svg/home.svg");
}

.mm__svg--catalog {
  background-image: url("/assets/svg/catalog.svg");
}

.mm__svg--cart {
  background-image: url("/assets/svg/mobile-menu-cart.svg");
}

.mm__svg--favourites {
  background-image: url("/assets/svg/mm-favourites.svg");
}

.mm__svg--poluchenie {
  background-image: url("/assets/svg/mm-money.svg");
}

.mm__text {
  font-size: 12px;
}

.mm__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  position: relative;
}

.mm__value,
.mmfav__value {
  display: none;
  width: 20px;
  height: 20px;
  font-size: 12px;
  color: white;
  background-color: #d20505;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 5px;
  left: -5px;
}

.mmfav__value {
  left: 0px;
}

.footer {
  background: #024856;
  width: 100%;
}

.foo-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: start;
  justify-items: center;
  margin-bottom: 40px;
}

.foo-section {
  margin-top: 0;
  padding: 40px 0 0;
}

.foo-box__catalog-title {
  color: white;
  margin-bottom: 20px;
}

.foo-box__catalog .foo-box__catalog-item {
  column-count: 2;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-gap: 0.5em;
  -webkit-column-gap: 0.5em;
  -moz-column-gap: 0.5em;
}
.foo-box__catalog .foo-box__catalog-item .category__item {
  background-image: initial;
  display: block;
  width: calc(100% - 5px);
  padding-bottom: 0;
}
.foo-box__catalog .foo-box__catalog-item .category__item .category__text {
  margin: 0;
}
.foo-box__catalog .foo-box__catalog-item .category__item .category__text h3 {
  color: #96EBFD;
  font-size: 14px;
  font-weight: 300;
}
.foo-box__catalog .foo-box__catalog-item .category__item:hover .category__text h3 {
  color: white;
}

.foo-box__link {
  color: #96EBFD;
  font-size: 14px;
  font-weight: 300;
  transition: 0.3s;
  display: block;
  margin-bottom: 15px;
}

.foo-box__link:hover {
  color: white;
}

.parnter-link {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  color: white;
  transition: 0.3s;
}

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

.partner-title {
  color: white;
  font-weight: 700;
  transition: 0.3s;
}

.partner-descr__text {
  color: #96EBFD;
  margin-bottom: 10px;
}

.partner-ul__link {
  color: rgb(245, 245, 245);
}

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

.partner-title:hover {
  color: var(--primary-dots-color);
}

.partner-ul li {
  color: #96EBFD;
  margin-bottom: 7px;
  font-weight: 300;
  font-size: 14px;
}

.foo-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  width: 100%;
  border-top: 1px solid grey;
}
.foo-footer p {
  color: white;
}

.foo-footer__text {
  color: white;
  font-weight: 300;
  margin-bottom: 10px;
}

.foo-footer__offer {
  display: flex;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #fff;
  box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.15);
  padding: 20px;
}

.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cookie-banner__text {
  max-width: 800px;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner__text p {
  margin: 7px 0;
}

.cookie-banner__text a {
  text-decoration: underline;
}

.cookie-banner__buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__buttons button,
.cookie-settings__buttons button {
  padding: 10px 18px;
  border: 0;
  cursor: pointer;
  font-size: 14px;
}

.cookie-settings {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  background: #fff;
  box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.2);
  padding: 25px;
}

.cookie-settings__content {
  max-width: 700px;
  margin: 0 auto;
}

.cookie-settings__item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.cookie-settings__buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.cookie-banner,
.cookie-settings {
  display: none;
}

.cookie-banner.is-visible,
.cookie-settings.is-visible {
  display: block;
}

@media (max-width: 700px) {
  .cookie-banner__content {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .cookie-banner__buttons {
    flex-direction: column;
  }
  .cookie-banner__buttons button,
  .cookie-settings__buttons button {
    width: 100%;
  }
}
.alert {
  width: 100%;
  height: auto;
  background-color: #e21414;
  position: absolute;
  top: 0;
}

.alert {
  display: none;
}

.alert__container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.alert__text {
  width: 80%;
  color: white;
  font-size: 18px;
}

.btn-alert__close {
  max-width: 160px;
  width: 100%;
  font-size: 18px;
  cursor: pointer;
  background-color: rgb(245, 245, 245);
  color: black;
  z-index: 200;
  transition: 0.3s;
}

.btn-alert__close:hover {
  background-color: lightblue;
}

.ymaps-2-1-79-islets_round-button__icon {
  position: relative !important;
}

.cart-offer_body--map {
  display: block !important;
}

.cart-offer_body__map {
  width: 100%;
}

@media all and (max-width: 1330px) {
  .offer__marketing-slider {
    gap: 75px;
    margin-top: 30px;
  }
}
@media all and (max-width: 1025px) {
  .offer__marketing-slider {
    gap: 80px;
    margin-top: 20px;
  }
}
@media all and (max-width: 940px) {
  .offer__marketing-slider {
    gap: 80px;
    margin-top: 0px;
  }
  h1 {
    font-size: 40px;
  }
  .logo {
    width: 15%;
  }
}
@media all and (max-width: 790px) {
  .main-page {
    flex-direction: column;
    height: auto;
  }
  .desktop-header__logo-wrap {
    width: 25%;
  }
  .offer {
    width: 100%;
    height: 450px;
  }
  .logo {
    height: 90%;
  }
  .slider {
    width: 100%;
    height: 500px;
  }
  .offer__marketing-box {
    height: 110px;
    align-items: center;
  }
  .spinner img {
    width: 70px;
    height: 70px;
  }
  .offer__marketing {
    display: block;
  }
  .offer__marketing-slider {
    gap: 60px;
  }
  .news-box {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-box {
    grid-template-columns: 1fr;
  }
  .category__box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    align-items: stretch;
  }
  .modal-cat {
    grid-template-columns: repeat(4, 1fr);
  }
  .category__item {
    width: initial;
  }
  .category__item {
    min-height: 220px;
  }
  .category__item .category__text {
    margin: 10px;
  }
  .category__item .category__text .sale__title {
    font-size: 22px;
    color: #9E0005;
    font-weight: 900;
  }
  .category__item .category__text p {
    display: none;
  }
}
@media all and (max-width: 640px) {
  .offer__marketing-slider {
    gap: 50px;
  }
  .main-spinner img {
    width: 40%;
  }
  .logo {
    display: none;
  }
  .location {
    width: 45%;
  }
  .contacts {
    width: 45%;
  }
}
@media all and (max-width: 540px) {
  .desktop-header__logo-wrap {
    width: 33.3333333333%;
  }
  .offer__marketing-slider {
    gap: 31px;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 16px;
  }
  .contacts__link--mail {
    gap: 0;
  }
  .offer__subtitle-p {
    font-size: 16px;
  }
  .contacts-box {
    grid-template-columns: 1fr;
  }
  .category__box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 460px) {
  .desktop-header__logo-wrap {
    width: 50%;
  }
  .offer__marketing {
    padding: 10px 20px;
  }
  .offer__marketing-slider {
    gap: 45px;
  }
  h1 {
    font-size: 30px;
  }
  p {
    font-size: 14px !important;
  }
  li {
    font-size: 12px;
  }
  .offer__subtitle-p {
    font-size: 15px;
  }
  .offer__header {
    display: block;
  }
  .location,
  .contacts {
    width: 100%;
    height: initial;
  }
  .contacts {
    flex-direction: row;
    margin-top: 5px;
    justify-content: space-around;
  }
  .cart-goods-box__color {
    word-break: break-all;
  }
  .main-spinner img {
    width: 60%;
  }
}
@media all and (max-width: 380px) {
  .desktop-header__logo-wrap {
    width: 25%;
  }
  .desktop-header__logo {
    background-image: url("/assets/svg/logoFrIcon.svg");
    width: 50px !important;
  }
  .contacts__details--main .contacts__phones--numbers {
    font-size: 11px;
  }
  .contacts__mail--main .contacts__link--mail-text {
    font-size: 12px;
  }
}
@media all and (max-width: 340px) {
  .offer__marketing-slider {
    gap: 55px;
  }
  .location__address p {
    word-wrap: break-word;
  }
  .contacts__details--main .contacts__phones--numbers {
    font-size: 11px;
  }
  .contacts__mail--main .contacts__link--mail-text {
    font-size: 11px;
  }
  .category__box {
    grid-template-columns: repeat(2, 1fr);
  }
  .offer {
    height: 500px;
  }
}
@media all and (max-width: 1280px) {
  .desktop-nav {
    width: 41.6666666667%;
  }
  .modal-overlay {
    overflow: scroll;
    min-height: 100vh;
    height: auto;
  }
  .modal-cat {
    grid-template-columns: repeat(auto-fill, 170px);
    justify-content: center;
    grid-auto-rows: 150px;
    height: auto;
    padding-bottom: 130px;
  }
  .modal-cat a {
    padding-bottom: 40%;
  }
}
@media all and (max-width: 1024px) {
  .desktop-nav,
  .mini-box,
  .foo-box__catalog {
    display: none;
  }
  .foo-box {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
  .mobile-nav {
    display: flex !important;
    border-radius: 1rem;
  }
  .search {
    max-width: 250px;
    width: 100%;
  }
  .container.desktop-container {
    padding: 0 10px;
  }
}
@media all and (max-width: 590px) {
  .modal-cat {
    grid-template-columns: repeat(auto-fill, 150px);
    grid-auto-rows: 170px;
  }
}
@media all and (max-width: 530px) {
  .modal-cat {
    grid-template-columns: repeat(auto-fill, 140px);
    grid-auto-rows: 160px;
  }
}
@media all and (max-width: 500px) {
  .modal-cat {
    grid-template-columns: repeat(auto-fill, 130px);
    grid-auto-rows: 145px;
  }
}
@media all and (max-width: 470px) {
  .container.desktop-container {
    padding: 0;
    justify-content: space-around;
    gap: 10px;
  }
  .modal-cat {
    grid-template-columns: repeat(auto-fill, 120px);
    grid-auto-rows: 135px;
    padding-bottom: 150px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .modal-cat .category__item .category__text h3 {
    font-size: 12px;
  }
}
@media all and (max-width: 420px) {
  .modal-cat {
    grid-template-columns: repeat(auto-fill, 115px);
    grid-auto-rows: 135px;
    padding-top: 40px;
  }
  .modal-cat .category__text {
    background-color: rgba(255, 255, 255, 0.5);
  }
}
@media all and (max-width: 403px) {
  .modal-cat {
    grid-template-columns: repeat(auto-fill, 105px);
    grid-auto-rows: 120px;
    padding-top: 40px;
  }
}
@media all and (max-width: 380px) {
  .modal-cat {
    grid-template-columns: repeat(auto-fill, 105px);
    grid-auto-rows: 120px;
  }
  .modal-cat .category__item .category__text h3 {
    font-size: 11px;
  }
  .modal-cat .category__text {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@media all and (max-width: 360px) {
  .modal-cat {
    grid-template-columns: repeat(auto-fill, 105px);
    grid-auto-rows: 120px;
  }
  .desktop-header__logo-wrap {
    width: 50px;
  }
  .container.desktop-container {
    gap: 10px;
  }
  .search__inp {
    min-width: initial;
  }
}
@media all and (max-width: 320px) {
  .container.desktop-container {
    gap: 5px;
  }
  .modal-cat {
    grid-template-columns: repeat(auto-fill, 120px);
    grid-auto-rows: 120px;
  }
  .modal-cat .category__text {
    background-color: rgba(255, 255, 255, 0.8);
  }
}/*# sourceMappingURL=index.css.map */