:root {
  --color-primary: #0C2340;
  --color-secondary: #FFFFFF;
  --color-accent: #0072ce;
  --color-text: #000000;
  --color-gift: #ffe500;
  --color-success: #4ec65A;
  --color-warning: #e24141;
  --color-grey: #a1A1A1;
  --color-light_grey: #e0E0E0;
  --color-secondary-2: #c9E3F9;
}

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

body ::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html {
  font-size: 62.5%;
}

@media screen and (max-width: 1024px) {
  html {
    font-size: 56%;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body,
ul,
li,
button,
label,
input {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

label {
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 103.5%;
  letter-spacing: -0.48px;
}

h2,
h3,
h4 {
  font-weight: 500;
}

h2 {
  font-size: 3.6rem;
  line-height: 114%;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

h5,
h6 {
  font-weight: 400;
}

h5 {
  font-size: 1.6rem;
  text-transform: uppercase;
}

h6 {
  font-size: 1.6rem;
}

.label-s {
  font-size: 1.2rem;
}

p {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.6rem;
  line-height: 154%;
  letter-spacing: 0.24px;
}

.heading--primary {
  color: var(--color-primary);
}

.heading--secondary {
  color: var(--color-secondary);
}

.heading--secondary-2 {
  color: var(--color-secondary-2);
}

.heading--grey {
  color: var(--color-grey);
}

.heading--text {
  color: var(--color-text);
}

.heading--warning {
  color: var(--color-warning);
}

.heading--accent {
  color: var(--color-accent);
}

.heading--bold {
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  h6 {
    font-size: 1.2rem;
  }

  .label-s {
    font-size: 1rem;
  }
}

/* Текстові аналоги заголовків h2-h6: той самий вигляд без heading-тегів (SEO) */
.txt-h2 {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 114%;
}

.txt-h3 {
  font-size: 2.4rem;
  font-weight: 500;
}

.txt-h4 {
  font-size: 2rem;
  font-weight: 500;
}

.txt-h5 {
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
}

.txt-h6 {
  font-size: 1.6rem;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .txt-h2 {
    font-size: 2.4rem;
  }

  .txt-h6 {
    font-size: 1.2rem;
  }
}

.container {
  max-width: 1392px;
  margin: 0 auto;
}

.catalog__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

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

@media screen and (max-width: 1440px) {
  .container {
    width: 90%;
  }
}

.product-page__container {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 24px;
}

@media screen and (max-width: 1240px) {
  .product-page__container {
    grid-template-columns: 6fr 6fr;
  }
}

@media screen and (max-width: 1170px) {
  .catalog__container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .product-page__container {
    grid-template-columns: 1fr;
  }

  .checkout__container {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 820px) {
  .catalog__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 540px) {
  .catalog__container {
    grid-template-columns: 1fr;
  }
}

img {
  width: 100%;
}

.line--vertical {
  height: 15px;
  width: 1px;
  margin: 0 4px;
}

.line--secondary {
  background-color: var(--color-secondary);
}

.line--secondary2 {
  background-color: var(--color-secondary-2);
}

.line--light-grey {
  background-color: var(--color-light_grey);
}

.line--grey {
  background-color: var(--color-grey);
}

.line--horizontal {
  width: 100%;
  height: 1px;
}

input {
  width: 100%;
  border: 0;
  font-size: 1.6rem;
}

input[type="checkbox"] {
  width: fit-content;
}

.input {
  transition: 0.3s ease-in-out;
}

input:focus {
  font-family: "Jost", sans-serif;
  outline: none;
}

.input--default {
  padding: 12px 32px;
}

.input--icon {
  position: relative;
  max-height: 46px;
}

.input--icon .input {
  padding: 12px 32px 12px 66px;
}

input::placeholder {
  color: var(--color-grey);
}

.input:hover {
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
}

.input--done .input {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.input--done .input::placeholder {
  color: var(--color-primary);
}

.input--done .input__icon {
  stroke: var(--color-primary);
}

.input--warning .input__icon {
  stroke: var(--color-warning);
}

.input--warning .input::placeholder {
  color: var(--color-warning);
}

.input--warning .input {
  color: var(--color-warning);
  border-color: var(--color-warning);
}

.input__icon {
  top: 12px;
  position: absolute;
  stroke: var(--color-grey);
  width: 24px;
  left: 32px;
  height: 24px;
}

.icon--accent {
  stroke: var(--color-accent);
}

.icon--black {
  stroke: var(--color-text);
}

.icon--warning {
  stroke: var(--color-warning);
}

.icon--secondary {
  stroke: var(--color-secondary);
}

.icon--grey {
  stroke: var(--color-grey);
}

.btn__icon {
  width: 24px;
  height: 24px;
  margin-left: 8px;
}

.nav--top {
  background-color: var(--color-primary);
}

.nav__list,
.nav--bottom,
.nav__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__item {
  cursor: pointer;
}

.logo__img {
  width: 144px;
  height: auto;
}

.nav--bottom .nav__item {
  position: relative;
  flex-direction: column;
  margin-left: 16px;
}

.nav--bottom,
.nav--top {
  padding: 18px 0;
}

.nav__img {
  width: 24px;
  height: 24px;
}

.nav__list--lg,
.nav__list--sm,
.header--mob,
.tabBar {
  display: none;
}

.nav--top .nav__list--lg {
  display: flex;
}

.header__catalog,
.search__input {
  position: absolute;
  top: 100%;
  z-index: 20;
  opacity: 0;
  height: 0;
  transition: all 0.3s ease-in-out;
}

.header__contact {
  opacity: 0;
  height: 0;
  transition: all 0.3s ease-in-out;
}

.search__input {
  display: flex;
  right: 0;
  width: 450px;
  z-index: -3;
}

.header__catalog--active,
.search__input.active,
.header__contact.active {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.search__input.active {
  margin-top: 24px;
  height: 46px;
  z-index: 100;
}

.header__contact.active {
  height: fit-content;
}

.search__input input {
  border-right: 0;
  border-radius: 4px 0px 0px 4px;
  padding: 0;
}

.search__input.active input {
  padding: 12px 32px;
}

.search-results__img {
  width: 60px;
  height: 60px;
  margin-right: 16px;
}

.search-results {
  display: none;
  background-color: var(--color-secondary);
  position: absolute;
  padding: 16px;
  top: 50px;
  width: 100%;
  border-radius: 8px;
}

.search-results.active {
  display: block;
}

.search-results__item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.header .container {
  position: relative;
}

.header__catalog {
  display: grid;
  grid-template-columns: 1fr 1.5fr 3fr;
  gap: 24px;
  background-color: var(--color-secondary);
  min-height: 300px;
  z-index: -1;
}

.header__catalog--active {
  width: 100%;
  height: fit-content;
  z-index: 20;
  padding: 0 32px;
  box-shadow: 0px 3px 0px 0px rgba(0, 0, 0, 0.15);
}

.header-catalog__menu {
  display: flex;
}

.header__catalog .line--vertical {
  height: 100%;
  margin-right: 16px;
}

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

.header-catalog__add {
  display: flex;
  flex-direction: column;
}

.add__link {
  align-self: flex-end;
  font-size: 1.2rem;
  color: var(--color-primary);
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

.add__link:hover {
  color: var(--color-accent);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.header__catalog--mob {
  display: none;
}

.nav__item .dropdown__btn {
  font-size: 1.6rem;
}

.checkout__header {
  padding: 16px 0;
  background-color: var(--color-primary);
}

.checkout__header .container,
.checkout-header__wrapper {
  display: flex;
  align-items: center;
}

.checkout__header .container {
  justify-content: space-between;
}

@media screen and (max-width: 1440px) {
  .nav__list--xl h4,
.nav__list--xl .txt-h4 {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1200px) {
  .nav__list--xl {
    display: none;
  }

  .nav__list--lg {
    display: flex;
  }

  .nav__list--lg .nav__item {
    flex-direction: row;
  }
}

@media screen and (max-width: 1024px) {
  .nav--top .nav__list--lg {
    display: none;
  }

  .nav__list--sm {
    display: flex;
  }

  .tabBar {
    display: block;
    position: fixed;
    width: 100vw;
    background-color: var(--color-secondary);
    bottom: 0;
    padding: 20px 0;
    z-index: 100;
  }

  .tabBar .nav__item {
    flex-direction: column;
  }

  .tabBar a {
    display: contents;
  }
}

@media screen and (max-width: 912px) {
  .header-catalog__adds {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-catalog__add:last-of-type {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .header-catalog__adds {
    grid-template-columns: 1fr;
  }

  .header-catalog__add:last-of-type,
  .header-catalog__add:nth-last-of-type(2) {
    display: none;
  }

  .header-catalog__add {
    justify-self: end;
    max-width: 160px;
  }
}

@media screen and (max-width: 768px) {
  .header--desktop {
    display: none;
  }

  .header--mob {
    display: block;
    padding-bottom: 16px;
  }

  .header-mob__wrapper {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
  }

  .header__catalog--mob {
    display: block;
    overflow-y: auto;
    position: absolute;
    top: 96px;
    height: 100%;
    width: 100%;
    background-color: var(--color-secondary);
    z-index: 100 !important;
    padding-bottom: 100px;
  }

  .search__input {
    display: flex;
    position: initial;
    width: 100%;
  }

  .nav__img {
    width: 30px;
    height: 30px;
  }

  .logo__img {
    width: 124px;
  }

  .nav__item {
    margin-left: 24px;
  }

  .collapse__list li {
    margin-top: 12px;
  }

  .collapse__list {
    margin-left: 24px;
  }

  .header__collapse,
  .header__collapse--active {
    transition: all 0.3s ease-in-out;
  }

  .header__collapse {
    background-color: var(--color-secondary);
    opacity: 0;
    height: 0;
  }

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

  .header__collapse--active {
    opacity: 1;
    height: fit-content;
  }

  .search-results--active {
    top: 137px;
    height: 100%;
    z-index: 40;
  }
}

.footer {
  background-color: var(--color-primary);
  padding: 40px 0;
  margin-top: 40px;
}

.footer .line--vertical {
  height: 124px;
}

.footer__img {
  height: 50px;
}

.footer .nav__item {
  flex-direction: column;
}

.footer__heading {
  max-width: 212px;
  text-align: center;
  margin-top: 18px;
}

.footer .line--horizontal {
  margin: 40px 0;
}

.footer .line {
  opacity: 50%;
}

.footer__list {
  flex-direction: column;
  margin-right: 36px;
}

.footer__item {
  margin-top: 16px;
}

.col__heading {
  opacity: 50%;
  margin-bottom: 8px;
}

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

.list__wrapper {
  display: flex;
}

.contact__link {
  font-size: 3.6rem;
  font-weight: 500;
}

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

.contact__link {
  margin-left: 24px;
}

.social__img {
  margin-left: 24px;
}

.logo__heading {
  text-align: center;
}

@media screen and (max-width: 912px) {
  .col__wrapper {
    flex-wrap: wrap;
    justify-content: start;
  }

  .footer__col {
    margin-bottom: 24px;
  }

  .contact__link {
    font-size: 2.4rem;
  }

  .social__img {
    margin-left: 0;
  }

  .col__wrapper--bottom {
    justify-content: space-between;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 540px) {
  .footer__contact {
    flex-direction: column;
  }

  .footer__heading {
    font-size: 1.4rem;
  }

  .footer .nav__item {
    margin-left: 0;
  }
}

.card__footer,
.card__price,
.card__header {
  display: flex;
}

.card {
  position: relative;
  padding: 0 16px;
  width: fit-content;
}

.card--default {
  max-width: 330px;
}

.card__footer {
  justify-content: space-between;
  position: relative;
  align-items: baseline;
  z-index: 5;
}

.card__name {
  margin-right: 16px;
}

.card__img {
  padding: 24px;
  max-width: 330px;
}

.card__price,
.card__header {
  flex-direction: column;
  align-items: end;
}

.price {
  display: flex;
  align-items: end;
}

.price--default {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 32px;
  width: max-content;
}

.price--old {
  position: relative;
  color: var(--color-grey);
  font-size: 1.2rem;
}

.price__line {
  position: absolute;
  width: 50px;
  height: 1px;
  background-color: var(--color-grey);
  transform: rotate(-5grad);
  top: 50%;
}

.card__btn {
  text-transform: uppercase;
  width: 100%;
  position: absolute;
  z-index: 10;
  bottom: 25%;
  height: 0;
  transition: 0.3s ease-out;
  background: none;
  font-size: 0;
  opacity: 0;
}

.card:hover .card__btn {
  height: 50px;
  font-size: 2.4rem;
  opacity: 1;
  background-color: var(--color-warning);
}

.card__header {
  position: absolute;
  right: 0;
  top: 24px;
  transition: 0.3s ease-out;
  opacity: 0;
}

.card__header--promo {
  position: absolute;
  top: 0;
  z-index: 5;
  display: flex;
}

.promo {
  opacity: 0.8;
  border-radius: 8px;
  font-size: 2rem;
  color: var(--color-secondary);
  margin-right: 4px;
}

.sale {
  color: var(--color-warning);
  padding: 0 12px;
}

.coffee {
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.coffee__text {
  font-size: 2rem;
}

.promo__icon {
  width: 16px;
}

.percent {
  font-size: 1.2rem;
}

.card:hover .card__header {
  opacity: 1;
  z-index: 4;
}

.header__btn {
  margin-bottom: 16px;
}

.card__img--hover {
  position: absolute;
  z-index: -1;
  right: 0;
  opacity: 0;
  transition: 0.3s ease-in-out;
  max-width: min-content;
}

.card:hover .card__img {
  transition: 0.3s ease-in-out;
  opacity: 0;
}

.card:hover .card__img--hover {
  opacity: 1;
  transition: 0.3s ease-in-out;
  z-index: 2;
}

3.card--extra .promo {
  font-size: 2rem;
  padding: 2px 12px;
}

.card--extra .card-footer__wrapper {
  display: flex;
  justify-content: space-between;
}

.card--extra .card__footer {
  display: block;
}

.card--extra .card__btn {
  display: none;
}

.card--extra .card__heading,
.card--extra .price--default {
  font-size: 2rem;
  line-height: 2.2rem;
}

.card--extra .card__subheading {
  font-size: 1.2rem;
}

.card--extra .price--old {
  font-size: 1.2rem;
}

.card__heading {
  font-size: 2rem;
}

.card--extra {
  max-width: 200px;
  background-color: var(--color-secondary);
  padding: 8px;
  border-radius: 4px;
}

@media screen and (max-width: 1440px) {
  .price--default {
    font-size: 2.4rem;
  }

  .card__heading {
    font-size: 2rem;
  }
}

@media screen and (max-width: 1250px) {
  .price--default {
    font-size: 2rem;
  }

  .promo {
    font-size: 2.4rem;
  }

  .percent {
    font-size: 1.2rem;
  }

  .price--old {
    font-size: 1.2rem;
  }

  .price--old .uah {
    font-size: 1rem;
  }

  .price__line {
    width: 50px;
  }

  .card__subheading {
    font-size: 1.2rem;
  }

  .card__footer {
    align-items: end;
  }
}

@media screen and (max-width: 540px) {
  .price--default {
    font-size: 3.2rem;
  }

  .card__heading {
    font-size: 2.4rem;
  }

  .card__subheading {
    font-size: initial;
  }

  .price--old {
    font-size: 1.6rem;
  }

  .price--old .uah {
    font-size: 1.2rem;
  }

  .percent {
    font-size: 2rem;
  }

  .card--default {
    justify-self: center;
  }
}

.card__title {
  display: none;
}

.card--not-in-stock .card__title,
.card--archived .card__title {
  display: flex;
}

.card--archived .card__title {
  font-weight: 500;
  color: var(--color-grey);
}

.card--not-in-stock .price,
.card--archived .price {
  display: none;
}

.card--not-in-stock .card__footer,
.card--archived .card__footer {
  align-items: center;
}

.card--not-in-stock .card__header--promo,
.card--archived .card__header--promo {
  display: none;
}

.card--not-in-stock {
  opacity: 0.5;
}

.card--not-in-stock:hover .card__img {
  opacity: 1;
}

.card--not-in-stock:hover .card__btn,
.card--not-in-stock:hover .card__header,
.card--not-in-stock:hover .card__img--hover,
.card--archived:hover .card__btn {
  opacity: 0;
}

.card--archived .card__header :nth-child(2) {
  display: none;
}

.item,
.item__info,
.item__quantity,
.item__col,
.item__price {
  display: flex;
}

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

.item__quantity {
  align-items: center;
  margin: 12px 0;
}

.item__img {
  width: 120px;
  object-fit: contain;
  margin-right: 16px;
}

.item__col,
.item__btn {
  flex-direction: column;
  justify-content: space-between;
}

.item__col:first-of-type {
  margin-right: 24px;
}

.input {
  border: 1px solid var(--color-light_grey);
  border-radius: 4px;
}

.item__input {
  max-width: 58px;
  height: 30px;
  text-align: center;
  margin: 0 4px;
}

.item__price .item__price {
  display: block;
}

.item__price--old {
  text-decoration: line-through;
}

.item__heading {
  max-width: 214px;
}

.comparison__card .card__img,
.comparison__card {
  max-width: 100%;
  width: 100%;
}

.comparison__card .card__img {
  object-fit: contain;
  max-height: 330px;
}

.comparison__container {
  overflow: scroll;
  display: flex;
  width: 100%;
}

.checkout__item .item__info,
.checkout__item .item__col {
  flex-direction: row;
  align-items: center;
}

.checkout__item .item__price {
  flex-direction: column;
}

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

.checkout__item .item__heading {
  max-width: 267px;
}

.checkout__item .item__quantity {
  margin: 0 24px 0 8px;
}

.checkout__close-btn {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
}

.checkout__item .item__info {
  width: 100%;
  justify-content: space-between;
}

@media screen and (max-width: 1440px) {
  .checkout__item .item__info {
    flex-wrap: wrap;
  }
}

.collapse__btn {
  font-size: 2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.collapse__btn img {
  width: 24px;
  height: 24px;
}

.collapse__line {
  background-color: var(--color-light_grey);
  margin: 20px 0;
}

.collapse {
  opacity: 0;
  height: 0;
  transition: 0.3s ease-in-out;
}

.collapse__wrapper--opened .collapse {
  opacity: 1;
  height: fit-content;
  transition: 0.3s ease-in-out;
  margin-top: 12px;
}

.collapse__wrapper .collapse__btn :last-child {
  display: none;
}

.collapse__wrapper--opened .collapse__btn :last-child {
  display: flex;
}

.collapse__wrapper--opened .collapse__btn :first-child {
  display: none;
}

.dropdown {
  position: relative;
  width: fit-content;
}

.dropdown__btn {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-color: var(--color-grey);
  padding: 4px 12px;
}

.dropdown__menu {
  position: absolute;
  display: none;
  z-index: 10;
  background-color: var(--color-secondary);
  transition: 0.3s ease-in-out;
}

.dropdown--default .dropdown__menu {
  border: 1px solid var(--color-light_grey);
  top: 44px;
  padding: 8px 12px;
  border-radius: 4px;
}

.dropdown--opened .dropdown__menu {
  display: block;
  width: 100%;
  min-width: fit-content;
  transition: 0.3s ease-in-out;
}

.dropdown--default .btn__icon {
  transition: 0.3s ease-in-out;
}

.dropdown--opened .btn__icon {
  transform: rotate(0.5turn);
  transition: all 0.3s ease-in-out;
}

.carousel {
  position: relative;
}

.carousel--mini {
  justify-content: start !important;
  margin: 24px auto 0 auto;
  max-width: 600px;
  overflow: scroll;
}

.carousel__slide--mini:hover {
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}

.carousel__inner,
.carousel--mini,
.carousel__wrapper {
  display: flex;
  align-items: center;
}

.carousel__wrapper {
  flex-direction: column;
}

.carousel__wrapper .carousel--mini::-webkit-scrollbar {
  display: initial;
  width: 0;
  scrollbar-width: thin;
  height: 5px;
  border-radius: 20px;
  background-color: var(--color-light_grey);
}

.carousel__wrapper .carousel--mini::-webkit-scrollbar-thumb {
  background-color: var(--color-grey);
  border-radius: 20px;
}

.carousel__slide {
  transition: all 0.3s ease-in-out;
}

.carousel__img {
  max-width: 600px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  width: 100%;
  margin: auto;
}

iframe.carousel__img {
  aspect-ratio: 4/3;
}

.carousel__slide--mini {
  transition: all 0.3s ease-in-out;
  margin-right: 24px;
  cursor: pointer;
}

.carousel__slide--mini:last-of-type {
  margin-right: 0;
}

.carousel__slide--mini .carousel__img {
  width: 70px;
  object-fit: contain;
}

.carousel__buttons {
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 4;
}

.carousel__buttons .btn__icon {
  margin-left: 0;
}

.carousel__btn {
  width: 50px;
  height: 50px;
}

.news_slider .carousel__btn {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.product_slider .carousel__btn {
  position: absolute;
  top: 50%;
  z-index: 4;
}

.news_slider .slick-active+.slick-slide .carousel__slide::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #000 -2.98%, rgba(0, 0, 0, 0.24) 100%);
  top: 0;
  left: 0;
  z-index: 40;
}

.point--active {
  opacity: 0.5;
}

@media screen and (max-width: 1024px) {
  .carousel--mini {
    display: none;
  }

  .carousel__buttons {
    display: none;
  }
}

.product-page__section {
  padding: 32px 0;
}

.product__header,
.rating__stars,
.product__rating,
.heading__wrapper,
.product__icon,
.slider__buttons {
  display: flex;
  justify-content: space-between;
}

.heading__wrapper {
  flex-direction: column;
}

.heading__wrapper .heading__wrapper,
.product__icon {
  flex-direction: row;
}

.product__icon {
  gap: 24px;
}

.product__heading {
  margin: 6px 0;
}

.product__code {
  margin-bottom: 24px;
}

.product-page__section .carousel__indicators {
  display: none;
}

@media screen and (max-width: 1024px) {
  .product-page__section .carousel__indicators {
    display: flex;
    height: 16px;
  }
}

@media screen and (max-width: 540px) {
  .product_subheading {
    font-size: 1.2rem;
  }
}

.star__svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-gift);
  fill: var(--color-gift);
}

.product__promo,
.product__price,
.product__items,
.product__buttons,
.guarantee__buy {
  display: flex;
}

.product__price,
.product__items {
  margin-top: 16px;
}

.product__price .price--old {
  align-self: flex-start;
}

.product__icon {
  align-self: flex-end;
}

.product__icon img {
  width: 24px;
}

.product__item {
  width: 85px;
  height: 85px;
  margin-right: 12px;
  border: 1px solid var(--color-light_grey);
  border-radius: 4px;
}

.product__item--active {
  border: 1px solid var(--color-accent);
}

.product__item img {
  object-fit: contain;
  border-radius: 4px;
}

.product__buttons {
  margin-top: 24px;
  flex-wrap: wrap;
}

.char-body h3 {
  margin: 24px 0 16px 0;
}

.product__btn {
  width: 193px;
  border-radius: 4px;
  color: var(--color-secondary);
  margin-bottom: 12px;
  font-size: 2rem;
}

.product__btn--warning {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.product__btn {
  margin-right: 8px;
}

@media screen and (max-width: 1024px) {
  .product__buttons {
    width: 70%;
  }
}

@media screen and (max-width: 768px) {
  .product__buttons {
    width: 100%;
  }
}

@media screen and (max-width: 540px) {
  .product__btn {
    width: 100%;
  }

  .product__btn:nth-of-type(odd) {
    margin-left: 0;
  }
}

.product__promo {
  position: relative;
  padding: 12px 12px;
  border: 1px solid var(--color-grey);
  border-radius: 4px;
  margin-bottom: 16px;
}

.promo__img {
  width: 96px;
  height: 96px;
  margin-right: 16px;
}

.product__promo .promo__icon {
  position: absolute;
  right: 14px;
}

.product__guarantee {
  position: relative;
}

.guarantee_heading {
  margin: 16px 0;
}

.guarantee__img {
  max-width: 48px;
  stroke: var(--color-accent);
  margin-right: 12px;
  align-self: flex-start;
}

.guarantee__buy {
  align-items: end;
  flex-direction: column;
  justify-content: space-between;
}

.guarantee__btn {
  width: 52px;
  height: 36px;
  background-color: var(--color-accent);
}

.guarantee__price {
  width: max-content;
  cursor: pointer;
}

.slider__buttons {
  position: absolute;
  top: 37%;
  width: 100%;
}

.slider__btn {
  background-color: rgba(224, 224, 224, 0.5);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider__btn .btn__icon {
  margin-left: 0;
}

.product-char {
  padding: 24px;
  height: 400px;
}

.product-char .right-content {
  width: 100%;
}

.left-content,
.char__btn,
.product-char {
  display: flex;
}

.char__btn {
  align-items: center;
}

.char__line {
  width: 13px;
  height: 3px;
  margin-left: 8px;
  background-color: var(--color-accent);
  display: none;
}

.char__btn--active .char__line {
  display: flex;
}

.left-content {
  height: 100%;
  padding: 24px 0;
  justify-content: space-between;
}

.left-content .line--vertical {
  width: 2px;
  height: 97%;
  background-color: var(--color-light_grey);
}

.content__list {
  margin-right: 40px;
}

.char__list {
  max-width: 600px;
}

.char-list__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.content__list li {
  margin-bottom: 24px;
}

.char__list li:nth-of-type(odd) {
  background-color: #f4f4f4;
}

.char__list li {
  font-size: 1.6rem;
  margin-bottom: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.char__list li:hover {
  background-color: var(--color-accent);
  color: var(--color-secondary);
}

.right-content {
  padding: 46px 24px 0 40px;
  overflow: scroll;
}

.char-body {
  display: none;
}

.char-body--active {
  display: block;
}

.instr__list li {
  position: relative;
  display: flex;
  margin-bottom: 24px;
}

.instr__header {
  margin-left: 24px;
}

.instr__btn {
  position: absolute;
  right: 0;
  top: 30%;
}

.instr__btn svg {
  width: 24px;
  height: 24px;
  fill: var(--color-accent);
}

.instr__heading {
  width: 90%;
}

.instr__img {
  max-width: 50px;
  height: 100%;
}

@media screen and (max-width: 912px) {
  .instr__heading {
    font-size: 1.6rem;
  }
}

.product-char--mob {
  display: none;
}

@media screen and (max-width: 768px) {
  .product-char {
    display: none;
  }

  .product-char--mob {
    display: block;
  }

  .product-char--mob .collapse__wrapper {
    width: 100%;
  }
}

.promo__card,
.card__body {
  display: flex;
  flex-direction: column;
}

.promo__card {
  border: 1px solid var(--color-light_grey);
  max-width: 330px;
  transition: 0.5s ease-out;
}

.promo__card--disabled {
  opacity: 0.5;
}

.promo__card,
.promo__card img {
  border-radius: 4px;
}

.promo__card h6,
.promo__card .txt-h6 {
  align-self: flex-end;
}

.card__body {
  padding: 8px 12px;
}

.promo__card:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 0.5s ease-out;
}

.promo__card--disabled:hover {
  box-shadow: none;
  cursor: initial;
}

@media screen and (max-width: 540px) {
  .promo__card {
    max-width: 100%;
  }
}

.card--set .card__footer {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card--set .card__img {
  max-width: 250px;
}

.card--set .card__price {
  align-items: center;
}

.set__symbol svg {
  stroke: var(--color-light_grey);
  width: 32px;
  height: 32px;
}

.set__buy,
.set__list {
  display: flex;
}

.set__list {
  align-items: center;
  justify-content: space-between;
}

.card--set .card__btn {
  bottom: 30%;
}

.set__btn {
  margin-top: 16px;
}

.set__buy {
  flex-direction: column;
  align-items: center;
  padding: 12px;
}

.block__wrapper,
.block__header {
  display: flex;
  justify-content: space-between;
}

.block__header {
  margin: 16px 0 36px 0;
  align-items: center;
}

.block__header h6,
.block__header .txt-h6 {
  text-decoration: underline;
}

@media screen and (max-width: 1440px) {
  .block__wrapper {
    overflow: auto;
    width: 100%;
  }

  .block__wrapper .card {
    width: 100%;
    min-width: fit-content;
  }
}

@media screen and (max-width: 912px) {
  .set__list {
    flex-wrap: wrap;
    justify-content: start;
    background-color: #f4f4f4;
  }

  .set__item {
    border-radius: 4px;
    padding: 24px;
    background-color: var(--color-secondary);
    margin-bottom: 24px;
  }

  .set__buy {
    background-color: transparent;
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .set__list {
    flex-wrap: nowrap;
    justify-content: center;
    flex-direction: column;
  }

  .set__buy {
    width: 100%;
  }
}

@media screen and (max-width: 420px) {
  .set__item {
    padding: 16px 0;
  }
}

.checkout__section {
  padding: 60px 0;
}

.form__label {
  margin: 32px 0 16px 0;
}

.wrapper--flex {
  display: flex;
}

.form__input {
  margin-right: 24px;
}

.form__input:last-of-type {
  margin-right: 0;
}

.info__form {
  margin-bottom: 40px;
}

.checkout__dropdown {
  border-radius: 4px;
  border: 1px solid var(--color-light_grey);
  height: 100%;
}

.checkout__dropdown,
.form__input {
  width: 17.2vw;
}

.del-pay__form .input__wrapper {
  margin-top: 16px;
}

.checkout__form .dropdown__menu {
  top: 58px;
}

@media screen and (max-width: 1200px) {

  .checkout__dropdown,
  .form__input {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .checkout__dropdown .dropdown__menu {
    position: initial;
    margin: 8px 0;
  }

  .input__wrapper .form__input {
    margin: 8px 0;
  }

  .promocode__wrapper .form__input {
    margin: 0;
  }

  .select2-container {
    margin: 8px 0;
  }

  .checkout__dropdown,
  .form__input {
    width: 45vw;
  }

  .checkout__dropdown {
    height: 46px;
  }
}

@media screen and (max-width: 768px) {
  .checkout__section .wrapper--flex {
    flex-direction: column;
  }

  .checkout__dropdown,
  .form__input {
    width: 100%;
  }
}

@media screen and (max-width: 540px) {
  .checkout__item .item__col {
    flex-direction: column;
    width: 100%;
  }

  .checkout__item .item__price {
    align-self: flex-end;
  }
}

.checkout_page .form__input {
  margin-bottom: 16px;
}

.checkout__cart .line--horizontal {
  background-color: var(--color-light_grey);
  margin: 8px;
}

.total__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-self: flex-end;
}

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

@media screen and (max-width: 768px) {
  .total__item {
    width: 100%;
  }
}

.input__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
}

.input__btn .btn__icon {
  margin-left: 0;
}

.promocode__input {
  border-right: 0;
  border-radius: 4px 0px 0px 4px;
}

.promocode__wrapper {
  display: flex;
}

.page__nav,
.page__link {
  display: flex;
}

.page__nav {
  overflow: auto;
  align-items: center;
  margin-top: 24px;
}

.page__link {
  display: block;
  margin-right: 24px;
  min-width: max-content;
}

.page__link--active {
  background-color: var(--color-accent);
  padding: 2px 8px;
  border-radius: 2px;
  transition: all 0.3s ease-in;
}

.page__link--active h5,
.page__link--active .txt-h5 {
  color: var(--color-secondary);
}

.page__heading {
  margin: 32px 0;
}

.page__subheading {
  margin-bottom: 24px;
}

.page__paragraph {
  margin: 16px 0;
}

.page__item {
  margin: 0 0 8px 24px;
  font-size: 16px;
  list-style: url(./images/icons/check-sm.svg);
}

#pagination_block .page__item {
  list-style: none;
}

.comparison__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.comparison__list .comparison__item {
  text-align: right;
  padding: 8px 16px 8px 0;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
  height: 65px;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  overflow-y: auto;
}

.comparison__list .comparison__item::-webkit-scrollbar {
  display: initial;
  scrollbar-width: thin;
  width: 6px;
  border-radius: 20px;
  background-color: var(--color-light_grey);
}

.comparison__list .comparison__item::-webkit-scrollbar-thumb {
  background-color: var(--color-grey);
  border-radius: 20px;
}

.comparison__list li:hover {
  background-color: var(--color-accent);
  transition: all 0.3s ease-in-out;
  color: var(--color-secondary);
}

.comparison__card {
  margin-bottom: 24px;
}

.comparison__list--fixed {
  position: absolute;
}

.comparison__list--fixed .comparison__item {
  text-align: left;
  justify-content: flex-start;
  max-width: 330px;
  border-radius: 0;
}

.comparison__list--fixed .comparison__item:hover {
  background-color: transparent;
  color: initial;
}

.comparison__list--fixed h4,
.comparison__list--fixed .txt-h4 {
  font-weight: 400;
}

.comparison__list:not(.comparison__list--fixed) h4,
.comparison__list:not(.comparison__list--fixed) .txt-h4 {
  width: 50%;
}

.comparison__arrow {
  position: absolute;
  top: 70%;
}

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

.comparison__switch {
  margin-left: 16px;
}

.btn--next {
  right: 40px;
}

.btn--prev {
  left: 40px;
}

.comparison__section .empty {
  font-size: 2.4rem;
  margin: 120px auto;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .comparison__list--fixed .comparison__item {
    max-width: 200px;
  }

  .comparison__list--fixed h6,
.comparison__list--fixed .txt-h6 {
    line-height: 18px;
  }
}

@media screen and (max-width: 1024px) {
  .comparison__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparison__list--fixed h6,
.comparison__list--fixed .txt-h6 {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .comparison__list--fixed .comparison__item {
    max-width: fit-content;
    border-bottom: 1px solid var(--color-light_grey);
  }

  .comparison__container {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 420px) {
  .comparison__arrow {
    top: 100%;
  }

  .btn--next {
    right: 16px;
  }

  .btn--prev {
    left: 16px;
  }
}

@media screen and (max-width: 375px) {
  .comparison__list--fixed .comparison__item {
    max-width: 290px;
  }
}

.default-state {
  display: none !important;
}

.default-state.active {
  display: inherit !important;
}

.default-state-btn.active .menu-opened,
.default-state-btn .menu-closed {
  display: block;
}

.default-state-btn.active .menu-closed,
.default-state-btn .menu-opened {
  display: none;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch .toggle__input {
  opacity: 0;
  width: 0;
  height: 0;
}

.round {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 34px;
}

.round:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}

.toggle__input:checked+.round {
  background-color: var(--color-accent);
}

.toggle__input:focus+.round {
  box-shadow: 0 0 1px var(--color-accent);
}

.toggle__input:checked+.round:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.filter {
  display: flex;
  flex-wrap: wrap;
}

.filter .dropdown {
  margin: 0 16px 16px 0;
}

.filter .dropdown__item {
  display: flex;
}

.filter .dropdown__menu {
  min-width: max-content;
  height: 200px;
  overflow: auto;
}

.filter .dropdown__item.page__item {
  margin: 4px 0 0 0;
}

.filter .page__item p {
  margin: 0;
}

.filter .dropdown__menu::-webkit-scrollbar {
  display: initial;
  width: 6px;
  scrollbar-width: thin;
  height: 0;
  border-radius: 20px;
  background-color: var(--color-light_grey);
}

.filter .dropdown__menu::-webkit-scrollbar-thumb {
  background-color: var(--color-grey);
  border-radius: 20px;
}

.filter--mob {
  display: none;
}

.filter--desk {
  margin-bottom: 24px;
}

.filter__btn {
  display: none;
}

.catalog__line {
  margin: 64px 0 32px 0;
}

.seo-block {
  margin: 40px 0;
}

@media screen and (max-width: 1300px) {
  .filter-list__item .dropdown__btn {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1024px) {
  .filter__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: var(--color-accent);
    width: 220px;
    margin-bottom: 24px;
  }

  .filter .dropdown {
    margin: 0 16px 16px 0;
    width: 100%;
  }

  .filter .dropdown__item {
    width: fit-content;
  }

  .filter--desk {
    display: none;
  }

  .filter__header,
  .filter--mob {
    display: flex;
  }

  .filter__header {
    justify-content: space-between;
    align-items: center;
    margin: 16px 0 24px 0;
    width: 100%;
  }

  .filter--mob {
    position: fixed;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 100%;
    width: 100%;
    top: 0;
    z-index: 10;
    background-color: white;
    padding: 0 5%;
    left: 0;
  }

  .filter--mob .dropdown__btn {
    border: 0;
    text-align: left;
    width: 100%;
  }

  .filter--mob .dropdown__menu {
    border: 0;
    position: static;
  }
}

@media screen and (max-width: 540px) {
  .filter__btn {
    width: 100%;
  }
}

.filter__checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.filter__checkbox+label {
  display: inline-flex;
  align-items: center;
  user-select: none;
}

.filter__checkbox+label::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid var(--color-light_grey);
  border-radius: 0.25em;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  transition: all 0.3s ease-in-out;
}

.filter__checkbox:checked+label::before {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
  transition: all 0.3s ease-in-out;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.filter__checkbox:not(:disabled):not(:checked)+label:hover::before {
  box-shadow: 0px 0px 5px 0px rgba(0, 114, 206, 0.25);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.filter__checkbox:not(:disabled):active+label::before {
  box-shadow: 0px 0px 5px 0px rgba(0, 114, 206, 0.25);
  border-color: #b3d7ff;
  transition: all 0.3s ease-in-out;
}

.filter__checkbox:focus+label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.filter__checkbox:focus:not(:checked)+label::before {
  border-color: #80bdff;
}

.filter__checkbox:disabled+label::before {
  background-color: #e9ecef;
}

.banner-shadow {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  background-color: var(--color-text);
  opacity: 0.3;
  height: 100%;
}

.contact__section {
  margin-bottom: 40px;
}

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

.contact__schedule,
.contact__header {
  display: flex;
  align-items: baseline;
}

.contact__header {
  justify-content: space-between;
}

.contact__footer h4,
.contact__footer .txt-h4 {
  color: var(--color-accent);
}

.contact__time {
  padding: 2px 8px;
  background-color: #f4f4f4;
  border-radius: 6px;
  margin-left: 8px;
}

.contact__time span {
  margin: 0 4px;
}

.contact__body {
  margin: 16px 0;
}

.contact__section .line {
  margin: 24px 0;
}

.contact__map {
  width: 100%;
  height: 100%;
}

.contact__item {
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in;
  border: 1.5px solid transparent;
}

.contact__item:hover {
  background-color: #f4f4f4;
  border-color: var(--color-accent);
}

.form__section {
  padding: 40px 0;
  width: 100%;
  background-color: var(--color-secondary-2);
}

.form__heading {
  text-align: center;
  font-weight: normal;
  margin-bottom: 32px;
}

.form__subheading {
  margin-bottom: 8px;
  text-align: center;
}

.form__section .input--icon,
.form input {
  min-height: 100%;
  max-height: none;
}

.form__section .input--icon {
  margin-right: 24px;
}

.form__section .input__wrapper {
  justify-content: center;
}

.line__block {
  margin: 32px 0;
  display: flex;
  align-items: center;
}

.line__block p {
  margin: 0 16px;
}

.contact__section .wrapper--flex {
  justify-content: center;
  gap: 5%;
}

@media screen and (max-width: 1200px) {
  .contact__header {
    flex-direction: column;
  }
}

@media screen and (max-width: 1024px) {
  .contact__schedule .lable-s {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 912px) {
  .form__section .wrapper--flex {
    flex-direction: column;
  }

  .form__section .input--icon {
    margin: 0 0 16px 0;
  }

  .contact__header {
    flex-direction: row;
  }

  .contact__container {
    grid-template-columns: 1fr;
  }

  .contact__map {
    height: 400px;
  }
}

@media screen and (max-width: 600px) {
  .contact__header {
    flex-direction: column;
  }

  .contact__map {
    height: 250px;
  }
}

.order__subheading {
  margin: 32px 0 8px 0;
}

.order__info h4,
.order__info .txt-h4 {
  margin-bottom: 12px;
}

.order__btn {
  margin-top: 24px;
}

.order__item {
  width: 100%;
}

.order__item .item__info {
  width: 100%;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .order__subheading {
    margin: 24px 0 8px 0;
  }

  .order__info h4,
.order__info .txt-h4 {
    margin-bottom: 8px;
  }

  .order__btn {
    margin-top: 16px;
  }
}

@media screen and (max-width: 540px) {

  .order__section .page__heading,
  .order__section p,
  .order__section .wrapper:first-of-type {
    text-align: center;
  }

  .order__section .wrapper--flex {
    flex-direction: column;
  }
}

.action__section {
  padding: 32px 0;
}

.main__carousel .carousel__img {
  max-width: none;
}

.news__section {
  padding: 24px 0;
}

.news__carousel {
  width: 70%;
  margin: 0 auto;
}

.news__carousel .carousel__slide {
  position: relative;
}

.news__carousel .carousel__img {
  object-fit: cover;
  height: 500px;
}

.slide__body {
  position: absolute;
  bottom: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: 2;
}

.slide__text {
  width: 70%;
  text-align: center;
}

.slide-shadow {
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.66) 100%);
  height: 50%;
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 0;
}

.carousel__indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.carousel__indicators .point {
  width: 8px;
  height: 8px;
  margin: 0 8px;
  border-radius: 50%;
  background-color: var(--color-light_grey);
  transition: all 0.3s ease-in-out;
}

.carousel__indicators .point--active {
  width: 16px;
  height: 16px;
  transition: all 0.3s ease-in-out;
}

.news__heading {
  margin-bottom: 24px;
  text-align: center;
}

@media screen and (max-width: 1440px) {
  .news__carousel {
    width: 85%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1024px) {
  .main__carousel .carousel__buttons {
    display: flex;
  }
}

@media screen and (max-width: 912px) {
  .news__carousel {
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .news__carousel {
    width: 100%;
  }

  .news__carousel .carousel__img {
    height: 300px;
  }
}

@media screen and (max-width: 540px) {
  .news__carousel .carousel__slide {
    height: 300px;
  }

  .news__carousel .carousel__img {
    height: 100%;
    object-fit: cover;
  }

  .slide__text {
    width: 90%;
  }
}

.category__section {
  padding: 40px 0;
}

.category__carousel .carousel__inner {
  display: block;
}

.category__carousel .carousel__slide {
  position: relative;
  width: 100%;
  max-height: 760px;
}

.category__carousel .carousel__btn {
  opacity: 0.7;
}

.category__carousel .carousel__img {
  height: 760px;
  object-fit: cover;
}

.category__carousel .slide__body {
  top: 20%;
}

.category__carousel .slide__heading {
  font-size: 6.4rem;
  margin: 24px 0;
  text-align: center;
}

.category__carousel .btn--secondary {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  margin-top: 32px;
  width: 250px;
  text-align: center;
}

.carousel__nav {
  position: absolute;
  z-index: 5;
  bottom: 60px;
  display: flex;
  left: 25%;
  width: 50%;
  justify-content: space-between;
}

.carousel-nav__item {
  font-size: 2rem;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.carousel-nav__item--active {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.carousel-nav__item:hover {
  transition: all 0.3s ease-in-out;
  opacity: 1;
}

@media screen and (max-width: 912px) {
  .carousel__nav {
    width: 90%;
    left: 5%;
  }
}

@media screen and (max-width: 768px) {
  .category__carousel .carousel__img {
    height: 500px;
  }

  .category__carousel .slide__heading {
    font-size: 4rem;
  }
}

@media screen and (max-width: 540px) {
  .carousel__nav {
    display: none;
  }

  .category__carousel .slide__heading {
    font-size: 2.4rem;
  }
}

.category__carousel .btn--secondary {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  margin-top: 32px;
  width: 250px;
}

.carousel__indicator,
.category__carousel .btn--secondary {
  font-size: 1.6rem;
}

.category__carousel .slide-shadow {
  background: var(--color-text);
  opacity: 0.3;
  height: 100%;
  bottom: 0;
}

.carousel-caption>h5,
.carousel-caption>.txt-h5,
h2,
p,
button {
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 768px) {
  .carousel-indicators {
    display: none;
  }

  .carousel-caption {
    bottom: 10%;
  }

  .category__carousel .btn--secondary {
    margin-top: 0;
  }

  .category__carousel .carousel__slide {
    max-height: 500px;
  }
}

.feedback__section {
  padding: 48px 0;
}

.feedback__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.feedback__header,
.feedback__left {
  display: flex;
  align-items: center;
}

.feedback__header {
  justify-content: space-between;
}

.feedback__name {
  margin-right: 32px;
}

.feedback__body {
  margin-top: 24px;
}

.feedback {
  margin-top: 24px;
  padding: 12px 8px;
}

.feedback__section .input--icon {
  margin-right: 24px;
  width: 100%;
}

.feedback__section .input--icon:last-of-type {
  margin-right: 0;
}

.feedback__section .right__content .rating__stars {
  justify-content: start;
  margin: 16px 0;
}

.rating__stars button .star__svg {
  margin-right: 8px;
  width: 30px;
  height: 30px;
  fill: transparent;
  transition: all 0.3s ease-in-out;
}

.rating__stars button .star__svg:hover {
  fill: var(--color-gift);
}

.rating__stars .svg--filled .star__svg {
  fill: var(--color-gift);
  transition: all 0.3s ease-in-out;
}

.feedback__heading {
  margin: 16px 0;
}

.feedback__heading:last-of-type {
  margin-top: 24px;
}

.textarea {
  border: 1px solid var(--color-light_grey);
  border-radius: 4px;
  width: 100%;
}

.feedback__btn {
  margin-top: 24px;
}

.feedback__container .left__content {
  height: 500px;
  overflow: scroll;
}

.feedback__container .left__content::-webkit-scrollbar,
.product-char .right-content::-webkit-scrollbar {
  display: initial;
  width: 10px;
  scrollbar-width: thin;
  height: 0;
  border-radius: 20px;
  background-color: var(--color-light_grey);
}

.feedback__container .left__content::-webkit-scrollbar-thumb,
.product-char .right-content::-webkit-scrollbar-thumb {
  background-color: var(--color-grey);
  border-radius: 20px;
}

@media screen and (max-width: 1024px) {
  .feedback__container {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .feedback__section .wrapper--flex {
    flex-direction: column;
  }

  .feedback__section .input--icon {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 540px) {
  .feedback__btn {
    width: 100%;
  }
}

.rich-block {
  margin: 80px 0;
}

.rich-block p {
  font-size: 2.1rem;
}

.type-1 {
  display: grid;
  background: url(../images/img/rich-content/type-1.jpg) center/cover no-repeat;
  height: 600px;
  width: 100%;
  position: relative;
  padding: 0 100px;
}

.type-1 .rich-block__wrapper {
  align-self: center;
  width: 60%;
}

.type-1>.rich-block__wrapper>h5,
h1,
p {
  position: relative;
  z-index: 3;
}

.type-1 h2 {
  margin: 24px 0 32px 0;
}

@media screen and (max-width: 768px) {
  .type-1 {
    padding: 0 40px;
  }

  .type-1 .rich-block__wrapper {
    text-align: center;
    width: 100%;
  }
}

.type-2 {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
}

.line--accent {
  background-color: var(--color-accent);
  width: 50px;
  height: 5px;
  border-radius: 5px;
  margin: 12px 0 40px;
}

.type-2 strong {
  display: block;
  margin-top: 24px;
}

.type-2 p {
  margin-bottom: 24px;
}

@media screen and (max-width: 912px) {
  .type-2 {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }

  .line--accent {
    display: inline-block;
    margin: 24px 0;
  }

  .type-2 strong {
    margin-top: 16px;
  }

  .type-2 p {
    margin-bottom: 16px;
  }
}

.type-3 {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  align-items: center;
}

.type-3 p {
  margin-bottom: 24px;
}

@media screen and (max-width: 912px) {
  .type-3 {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }

  .type-3 p {
    margin-bottom: 16px;
  }
}

.rich-block h5 {
  margin-bottom: 16px;
}

.type-4 .rich-block__wrapper {
  display: grid;
}

.type-4 .rich-block__wrapper:first-of-type {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 48px;
  gap: 32px;
}

.type-4 .rich-block__wrapper:last-of-type {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.type-4 .rich-block__img {
  height: 300px;
  object-fit: cover;
}

@media screen and (max-width: 912px) {
  .type-4 .rich-block__img {
    height: 200px;
  }
}

@media screen and (max-width: 768px) {
  .type-4 .rich-block__wrapper:first-of-type {
    grid-template-columns: 1fr;
    margin-bottom: 32px;
    text-align: center;
  }

  .type-4 .rich-block__img {
    height: 120px;
  }
}

@media screen and (max-width: 540px) {
  .type-4 h5 {
    font-size: 16px;
    font-weight: 450;
    text-transform: none;
    text-align: center;
  }
}

.type-5 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 24px;
}

.rich-block__body .line--horizontal {
  margin: 24px 0;
}

@media screen and (max-width: 768px) {
  .type-5 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .type-5 .rich-block__wrapper {
    margin-top: 24px;
  }
}

.type-6 .rich-block__wrapper:first-of-type {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 48px;
  gap: 32px;
}

.type-6 .rich-block__img {
  height: 400px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .type-6 .rich-block__wrapper:first-of-type {
    grid-template-columns: 1fr;
    margin-bottom: 32px;
    text-align: center;
  }

  .type-6 .rich-block__img {
    height: 300px;
  }
}

.type-7 {
  text-align: center;
  background: url(../images/img/rich-content/type-7/Rectangle\ 1.jpg) center/cover no-repeat;
}

.type-7 h1 {
  margin: 24px 0;
}

.type-7 .rich-block__wrapper {
  justify-self: center;
}

@media screen and (max-width: 768px) {
  .type-7 {
    padding: 0 16px;
    height: 400px;
  }
}

.type-8 {
  background: url(../images/img/rich-content/type-8/Group\ 209.jpg) center/cover no-repeat;
}

.type-8 .rich-block__wrapper {
  width: 60%;
  justify-self: start;
}

@media screen and (max-width: 768px) {
  .type-8 {
    height: 400px;
    padding: 0 15px;
  }

  .type-8 .rich-block__wrapper {
    text-align: left;
    width: 70%;
  }

  .type-8 .line--accent {
    margin: 8px 0;
  }
}

.lp__section {
  padding-top: 100px;
}



.dinamica__heading,
.dinamica__subheading {
  text-align: center;
}

.dinamica__subheading {
  font-size: 2rem;
  margin: 32px 0;
}

.dinamica__img {
  height: 700px;
  object-fit: cover;
}

.wrapper.disabled {
  cursor: pointer;
}

.disabled {
  opacity: 0.5;
}

.active {
  opacity: 1;
}

.dinamica__section .btn__wrapper {
  margin-top: 24px;
}

.dinamica__section .btn__wrapper button:first-of-type {
  margin-right: 16px;
}

.lp__section .rich-block {
  margin-top: 50px;
}

.lp-item__wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 70%;
  margin: 32px auto 0 auto;
}

.lp-item {
  text-align: center;
  max-width: 342px;
  margin-right: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dinamica__section .lp-item {
  height: 100%;
}

.lp-item h4,
.lp-item .txt-h4 {
  margin: 20px 0;
}

.lp-item .line {
  margin: 24px 0;
}

.lp-item__btn {
  width: 100%;
}

.lp .category-carousel__img {
  height: 80vh;
}

.lp__section .heading {
  font-size: 6.4rem;
}

.dinamica .slide-shadow {
  opacity: 0.5;
}

@media screen and (max-width: 1200px) {
  .lp-item__wrapper {
    max-width: none;
  }
}

@media screen and (max-width: 1024px) {
  .dinamica__img {
    height: 550px;
  }
}

@media screen and (max-width: 912px) {
  .dinamica__section .btn__wrapper {
    justify-content: center;
  }

  .lp__section .heading {
    font-size: 4rem;
  }
}

@media screen and (max-width: 768px) {
  .lp-item {
    max-width: none;
  }

  .lp__section {
    padding-top: 50px;
  }

  .dinamica__img {
    height: 400px;
  }

  .lp-item__wrapper {
    overflow-x: auto;
  }

  .lp-item .lp-item__img {
    width: 85vw;
  }

  .lp__section .heading {
    font-size: 2.4rem;
  }

  .dinamica .carousel-caption {
    bottom: 10%;
  }

  .dinamica .carousel-caption p {
    font-size: 1.4rem;
  }

  .lp .category-carousel__img {
    height: 400px;
  }
}

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

.magnifica .heading--top {
  margin-top: 32px;
}

.magnifica .heading--bottom {
  margin-bottom: 24px;
}

.magnifica__img {
  display: none;
}

.magnifica__img--active {
  display: flex;
}

.header__dropdown .dropdown__menu {
  background-color: var(--color-primary);
  border: 0;
  z-index: 30;
}

.header__dropdown p {
  width: max-content;
}

.authorise__dropdown {
  text-align: center;
}

.authorise__dropdown .dropdown__btn {
  font-size: 1.2rem;
}

.authorise__dropdown .dropdown__menu {
  width: max-content;
}

.authorise__dropdown .btn {
  width: 100%;
}

.authorise__dropdown .input--icon {
  width: 250px;
  margin: 8px 0;
}

.authorise__dropdown .forget-pass {
  text-align: right;
  display: block;
  margin-top: 8px;
}

.line-block {
  display: flex;
  align-items: center;
  margin: 12px 0;
}

.line-block .label-s {
  margin: 0 12px;
}

.authorise__dropdown .btn__wrapper {
  display: flex;
  justify-content: space-between;
}

.authorise__dropdown h6,
.authorise__dropdown .txt-h6 {
  margin-bottom: 8px;
}

.laSpecialista .heading--top {
  margin-top: 24px;
}

.laSpecialista .heading--bottom {
  margin-bottom: 24px;
}

.laSpecialista .lp-item__list {
  height: 100%;
}

.laSpecialista .lp-item,
.laSpecialista .lp-item__list {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.laSpecialista .lp-item img {
  max-width: 280px;
}

@media screen and (max-width: 1440px) {
  .laSpecialista .carousel__nav {
    width: 90%;
    left: 5%;
  }
}

@media screen and (max-width: 768px) {
  .laSpecialista .carousel__nav {
    display: none;
  }
}

.icona-met .lp-item__btn {
  max-width: 220px;
  margin: 24px auto 0 auto;
  display: block;
}

.icona-met .heading--top {
  margin-top: 24px;
}

.icona-met .heading--bottom {
  margin-bottom: 24px;
}

.multiGrill .heading--top {
  margin-top: 24px;
}

.multiGrill .heading--bottom {
  margin-bottom: 24px;
}

.multiGrill .slide-shadow {
  opacity: 0.5;
}

.heading--success {
  color: var(--color-success);
}

.radio {
  margin: 12px;
}

.radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: fit-content;
}

.radio input[type="radio"]+.radio-label:before {
  content: "";
  background: #f4f4f4;
  border-radius: 100%;
  border: 2px solid var(--color-light_grey);
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  top: -0.2em;
  margin-right: 12px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}

.radio input[type="radio"]:checked+.radio-label:before {
  background-color: var(--color-accent);
  box-shadow: inset 0 0 0 4px #f4f4f4;
}

.radio input[type="radio"]:focus+.radio-label:before {
  outline: none;
  border-color: var(--color-accent);
}

.radio input[type="radio"]:disabled+.radio-label:before {
  box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}

.radio input[type="radio"]+.radio-label:empty:before {
  margin-right: 0;
}

.pop-up--lg {
  max-width: 1200px;
  margin: 0 auto;
}

.credit-choice__pop-up {
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  gap: 40px;
  position: absolute;
  z-index: 101;
  top: 10%;
  right: 10%;
  left: 10%;
}

.credit-choice__header {
  display: flex;
  align-items: center;
}

.credit-choice__item {
  margin-top: 24px;
  display: grid;
  align-items: center;
  grid-template-columns: 2fr 1fr 1fr;
  transition: all 0.3s ease-in-out;
}

.credit-choice__img {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

.credit-choice__item .dropdown {
  border: 1px solid var(--color-light_grey);
  border-radius: 4px;
}

.credit-choice__footer,
.credit-choice__body {
  justify-self: center;
}

.pop-up {
  padding: 36px 40px;
  background-color: var(--color-secondary);
  border-radius: 4px;
}

.credit-choice__heading:first-of-type {
  justify-self: start;
  margin-left: 24px;
}

.credit-choice__heading {
  justify-self: center;
}

.credit-choice .line {
  margin: 24px 0;
}

.credit-choice__terms {
  margin-top: 32px;
}

.credit-choice .heading--top {
  margin-top: 16px;
}

.credit-choice .checkout__total {
  margin-top: 24px;
}

.credit-choice .total__item {
  width: 100%;
}

.credit-choice .cart__card {
  justify-content: space-between;
}

.credit-choice__item--active {
  border: 1px solid var(--color-accent);
  border-radius: 4px;
  padding: 4px 0;
  transition: all 0.3s ease-in-out;
}

.credit-choice .btn--secondary {
  border-color: var(--color-warning);
  color: var(--color-warning);
}

@media screen and (max-width: 1200px) {
  .pop-up--lg {
    max-width: none;
  }

  .credit-choice__pop-up {
    gap: 24px;
    position: absolute;
    top: 5%;
    right: 0;
    left: 0;
  }
}

@media screen and (max-width: 1024px) {
  .credit-choice__pop-up {
    top: 0;
    grid-template-columns: 1fr;
  }

  .credit-choice .cart__card {
    justify-content: start;
  }
}

@media screen and (max-width: 620px) {
  .pop-up {
    padding: 36px 16px;
  }

  .credit-choice .dropdown__btn {
    font-size: 1.6rem;
  }

  .credit-choice__header p {
    font-size: 1.2rem;
  }

  .credit-choice__footer h4,
.credit-choice__footer .txt-h4 {
    font-size: 1.4rem;
  }

  .credit-choice__item {
    grid-template-columns: 1fr 1fr 0.75fr;
    gap: 8px;
  }

  .credit-choice__img {
    width: 28px;
    height: 28px;
  }
}

.category__section .slick-dots,
.news__carousel .carousel__indicators {
  display: none !important;
}

.news_slider .slick-initialized .slick-slide {
  margin-left: 100px;
}

.news_slider .icon--black {
  stroke: var(--color-secondary);
}

.news_slider .slide__heading {
  text-align: center;
}

.collection_product_slider .slide__model {
  text-align: center;
  font-size: 1.6rem;
  color: var(--color-text);
  display: block;
  margin-top: 8px;
}

.collection_product_slider .slide__model svg {
  display: none;
}

.category__section .carousel__slide::after,
.news__section .carousel__slide::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .news_slider .slick-initialized .slick-slide {
    margin-left: 19px;
    width: 83vw !important;
  }

  .news_slider .slide__body {
    bottom: 10%;
    padding: 0 16px;
  }
}

.chernyy,
.cherniy,
.chernyy-seryy,
.chernyy-belyy,
.metallik-chernyy,
.chernyy-metallik {
  background-color: #000000 !important;
}

.metallik,
.seryy,
.belyy-seryy {
  background-color: #8c8c8c;
}

.serebristyy,
.serebristyy-s-chernym,
.belyy-serebristyy {
  background-color: #dddddd;
}

.korichnevyy {
  background-color: #4d2727;
}

.olivkovyy {
  background-color: #7b824d;
}

.begevyy,
.sero-begevyy {
  background-color: #e0bfa0;
}

.belyy,
.belyy-chernyy,
.metallik-belyy {
  background-color: #f4f4f4;
}

.siniy,
.cherno-siniy,
.belyy-siniy,
.lazurnyy {
  background-color: #283682;
}

.krasnyy,
.belyy-krasnyy {
  background-color: #b20000 !important;
}

.geltyy {
  background-color: #ffd600;
}

.zelenyy {
  background-color: #027900;
}

.mednyy {
  background-color: #8d5520;
}

.bronzovyy,
.metallik-bronzovyy {
  background-color: #8a3a00;
}

.morskaya-volna {
  background-color: #337994;
}

.goluboy {
  background-color: #65b9d4;
}

.product_page .slick-slide img {
  padding: 0 8px;
  cursor: pointer;
}

.pay_part_btn {
  width: fit-content;
  background-color: var(--color-secondary);
  border: 1px solid var(--color-success);
  color: var(--color-success);
}

@media screen and (max-width: 540px) {
  .pay_part_btn {
    width: 100%;
  }
}

.slider__buttons .btn--next {
  right: 0;
}

.slider__buttons .btn--prev {
  left: 0;
}

.product_page {
  position: relative;
}

.pop-up__section {
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100;
  top: 0;
  left: 0;
}

.pop-up__form {
  margin-top: 32px;
}

.pop-up__form .form__input {
  margin-bottom: 24px;
  width: 100%;
}

.error {
  color: var(--color-warning);
  margin-top: 4px;
  font-size: 1.2rem;
}

.pop-up--sm {
  position: absolute;
  max-width: 650px;
  top: 25%;
  width: fit-content;
  bottom: 25%;
  left: 30%;
  right: 30%;
  height: fit-content;
}

.pop-up--sm .btn {
  width: 100%;
}

.pop-up--sm .close {
  position: absolute;
  right: 24px;
  top: 16px;
}

.pop-up--sm h3,
.pop-up--sm .txt-h3 {
  margin-bottom: 8px;
}

.pop-up-active {
  display: block;
}

@media screen and (max-width: 1024px) {
  .pop-up__section {
    overflow: scroll;
  }
}

@media screen and (max-width: 912px) {
  .pop-up--sm {
    max-width: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: auto;
    right: auto;
    bottom: auto;
  }
}

#filter_show:hover,
.change_type:hover,
.reset_filter:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-out;
}

.change_type {
  color: var(--color-accent);
}

#filter_show,
.change_type,
.reset_filter {
  background: #f4f4f4;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  height: fit-content;
  padding: 4px 12px;
  font-size: 1.6rem;
  width: fit-content;
  margin-right: 8px;
}

.reset_filter {
  border: 1px solid var(--color-warning);
  background-color: var(--color-secondary);
  display: flex;
}

@media screen and (max-width: 1024px) {
  .reset_filter {
    margin-top: 16px;
  }

  #filter_show,
  .reset_filter {
    margin-left: 12px;
  }
}

.reset_filter button {
  color: var(--color-warning);
}

.guarantee__slide {
  display: flex !important;
  width: 99% !important;
}

@media screen and (max-width: 420px) {
  .guarantee__slide h3,
.guarantee__slide .txt-h3 {
    font-size: 1.6rem;
  }

  .guarantee__slide .guarantee__img {
    max-width: 36px;
  }
}

.catalog_mobile {
  top: 0;
}

@media screen and (max-width: 768px) {
  .catalog_mobile {
    top: 96px !important;
  }
}

.slider_pop-up {
  background-color: var(--color-secondary);
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 60px 0 40px;
  z-index: 101;
}

.slider_pop-up__wrapper {
  display: flex;
  justify-self: end;
}

.slider_pop-up .btn {
  width: 200px;
  padding: 4px 12px;
  margin-left: 24px;
}

.slider_pop-up__heading {
  display: grid;
  grid-template-columns: 4fr 2fr;
  align-items: center;
}

.slider_pop-up svg {
  position: absolute;
  right: 1%;
  top: 10px;
}

.slider_pop-up .carousel__img {
  max-width: 700px;
  margin: 0 auto;
}

.slider_pop-up .carousel__slide--mini .carousel__img {
  max-width: 50px;
}

.slider-wrapper {
  margin-top: 24px;
}

@media screen and (max-width: 1024px) {
  .slider_pop-up__heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .slider_pop-up__wrapper {
    justify-self: start;
  }
}

.feedback_form {
  position: relative;
}

.feedback_form .show_message {
  position: absolute;
  top: -24px;
  color: var(--color-success);
  background-color: rgba(1, 201, 21, 0.1);
  left: 0;
  font-size: 1.6rem;
  padding: 4px 12px;
  border-radius: 4px;
}

.empty_feedback {
  font-size: 1.6rem;
  margin-top: 24px;
  color: var(--color-grey);
}

.empty_feedback label {
  color: var(--color-accent);
  cursor: pointer;
  border: 1px solid var(--color-accent);
  border-radius: 4px;
  padding: 8px 12px;
  width: fit-content;
  margin-top: 16px;
  transition: all 0.3s ease-in-out;
}

.empty_feedback label:hover {
  background-color: #f4f4f4;
}

.close_pop-up {
  position: absolute;
  right: 24px;
  top: 16px;
  cursor: pointer;
}

.feedback.answer {
  margin-left: 24px;
  margin-top: 0;
}

.answer .feedback__body {
  margin-top: 8px;
}

.comparison__wrapper {
  padding-top: 24px;
  position: relative;
}

.comparison__wrapper .close {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}

.comparison__dropdown .dropdown__btn {
  padding: 8px 16px 12px 16px;
}

.comparison__nav {
  margin: 24px 0;
  display: flex;
  gap: 16px;
}

.comparison__dropdown .dropdown__menu {
  top: 62px;
}

.comparison__nav .btn {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
}

.clear-list__btn {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.comparison__nav .btn svg {
  margin-left: 4px;
}

@media screen and (max-width: 768px) {
  .comparison__nav {
    flex-direction: column;
  }

  .comparison__nav .btn,
  .comparison__nav .dropdown__btn {
    width: 220px;
  }
}

@media screen and (max-width: 420px) {

  .comparison__nav .btn,
  .comparison__nav .dropdown__btn,
  .comparison__nav .dropdown {
    width: 100%;
  }
}

.add__link {
  color: var(--color-accent);
  margin-top: 12px;
  display: flex;
}

@media screen and (max-width: 912px) {
  .header-catalog__add:last-of-type {
    display: flex;
  }

  .header-catalog__add {
    margin: 24px 0 32px;
  }
}

.tabBar .nav__item {
  position: relative;
}

.wl_count,
.compare_count,
.cart_count {
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 0 4px;
  background: var(--color-accent);
  border-radius: 50%;
  color: #fff;
  font-family: "Jost";
}

@media screen and (max-width: 768px) {
  .catalog_mobile .nav__list {
    display: none;
  }

  .header__catalog--mob .nav__list {
    display: flex;
  }

  .header__catalog--mob .nav__list {
    align-items: start;
    flex-direction: column;
  }

  .header__catalog--mob .nav__list h6,
.header__catalog--mob .nav__list .txt-h6 {
    font-size: 2rem;
  }

  .header__catalog--mob .nav__list h5,
.header__catalog--mob .nav__list .txt-h5 {
    color: var(--color-text);
  }

  .header__catalog--mob .nav__list .line {
    background-color: var(--color-grey);
  }

  .header__catalog--mob .nav__item {
    margin-bottom: 16px;
  }

  .header-catalog__adds {
    grid-template-columns: 1fr;
  }

  .header-catalog__add:last-of-type,
  .header-catalog__add:nth-last-of-type(2) {
    display: flex;
  }

  .header-catalog__add {
    justify-self: end;
    max-width: 100%;
  }

  .add__img {
    height: 250px;
    object-fit: cover;
  }
}

@media screen and (max-width: 420px) {
  .add__img {
    height: 160px;
  }
}

.checkout__section .left__content {
  display: grid;
}

.checkout__section .left__content .btn {
  justify-self: end;
  width: fit-content;
  margin-top: 24px;
}

.checkout__nav {
  display: flex;
  margin-bottom: 24px;
}

.checkout__nav .active a {
  color: var(--color-accent);
}

.checkout__nav .indicator {
  background-color: var(--color-grey);
  height: 7px;
  width: 200px;
  transition: all 0.3s ease-in-out;
}

.checkout__nav .active .indicator {
  background-color: var(--color-accent);
}

.checkout__nav .default:hover a {
  color: var(--color-accent);
}

.checkout__nav .default:hover .indicator {
  background-color: var(--color-accent);
}

.checkout__section .conditions {
  margin-top: 24px;
}

.checkout__section .form__input span {
  margin-top: 4px;
  display: none;
}

.checkout__section .input--warning span {
  display: flex;
}

.dropdown__btn--warning {
  border-color: var(--color-warning);
  color: var(--color-warning);
}

@media screen and (max-width: 1400px) {
  .checkout__nav h4,
.checkout__nav .txt-h4 {
    margin: 0 12px;
    font-size: 1.6rem;
  }

  .checkout__nav .indicator {
    width: auto;
  }
}

@media screen and (max-width: 1024px) {
  .checkout__nav {
    margin-top: 32px;
  }

  .checkout__nav .indicator {
    width: 200px;
  }
}

@media screen and (max-width: 768px) {
  .checkout__nav {
    margin-top: 32px;
  }

  .checkout__nav h4,
.checkout__nav .txt-h4 {
    margin: 0 12px;
    font-size: 1.6rem;
  }

  .checkout__nav .indicator {
    width: auto;
  }
}

.change_guarantee {
  cursor: pointer;
}

.nav--bottom {
  position: relative;
  justify-content: initial;
}

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

.nav--bottom>.container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.nav--bottom,
.menu__left,
.header__menu .container {
  display: grid;
}

.nav__list:first-of-type {
  display: flex;
}

.nav__heading {
  font-size: 1.8rem;
  text-align: center;
}

.header__menu {
  display: block !important;
  transform: translateY(-20px);
  visibility: hidden;
  height: 0;
  opacity: 0;
  position: absolute;
  top: 84px;
  width: 100%;
  background-color: var(--color-secondary);
}

.menu__left,
.header__menu .container {
  grid-template-columns: repeat(2, 1fr);
}

.header__menu .nav__heading {
  text-align: left;
}

.nav__heading--mob {
  display: none !important;
}

.menu__left {
  gap: 3vw;
}

.menu__list {
  margin-top: 24px;
}

.menu__list li {
  margin-bottom: 16px;
}

.menu__link p:hover {
  color: var(--color-accent);
  transition: all 0.3s ease-in-out;
}

.menu__container {
  width: 100%;
}

.menu__wrapper .btn--more {
  display: block;
  width: fit-content;
  background-color: #f4f4f4;
  color: var(--color-accent);
  font-size: 1.2rem;
  border-radius: 4px;
  padding: 4px 6px;
  transition: all 0.3s ease-in-out;
}

.menu__wrapper .btn--more:hover {
  background-color: var(--color-light_grey);
  color: var(--color-secondary);
}

.header-catalog__adds {
  grid-template-columns: repeat(2, 1fr);
  align-self: end;
}

.header__menu.active {
  visibility: visible;
  z-index: 20;
  height: fit-content;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  box-shadow: 2px 4px 2px -2px rgba(217, 217, 217, 0.46);
  transform: translateY(0px);
  padding: 56px 0 40px 0;
}

.menu__line {
  display: block !important;
  width: 0;
  height: 2px;
  border-radius: 10px;
  background-color: transparent;
}

.menu__line.active {
  transition: all 0.3s ease-in;
  width: 100%;
  background-color: var(--color-accent);
}

.nav__link--logo {
  display: none;
}

.nav__list--mob {
  display: none;
}

.header__contact .container {
  width: 100vw;
  display: flex;
  justify-content: space-between;
}

.header__contact {
  display: none;
  visibility: hidden;
}

.header__contact.active {
  visibility: visible;
  background-color: var(--color-secondary);
  z-index: 101;
  padding: 32px 0;
  box-shadow: 2px 4px 2px -2px rgba(217, 217, 217, 0.46);
}

.nav__list--customer {
  display: none !important;
}

@media screen and (max-width: 1440px) {
  .container {
    max-width: 90%;
  }
}

@media screen and (max-width: 1024px) {
  .header__contact {
    display: flex;
  }

  .nav__list {
    display: none;
  }

  .nav__list--mob {
    display: flex;
  }

  .menu__container {
    visibility: hidden;
    height: 0;
    opacity: 0;
    transition: all 0.3s ease-in;
  }

  .menu__container.active {
    visibility: visible;
    height: fit-content;
    opacity: 1;
  }

  .header__menu.active {
    position: fixed;
    top: 0;
    height: 100%;
    padding-bottom: 150px;
    overflow: auto;
  }

  .header__menu .nav__heading {
    font-weight: 500;
  }

  .nav__heading--mob {
    display: flex !important;
    justify-content: space-between;
    font-size: 2.4rem;
    font-weight: 500;
    padding-bottom: 16px;
    align-items: center;
    text-align: left;
    margin-bottom: 16px;
  }

  .nav__heading--mob img {
    display: flex;
    width: 24px;
  }

  .nav__list:first-of-type {
    display: none;
  }

  .nav__list--customer {
    display: block !important;
  }

  .nav__list--customer .nav__item {
    align-items: start;
    margin-bottom: 16px;
  }

  .nav__list--customer .nav__item:last-of-type {
    flex-direction: row;
    justify-content: flex-start;
  }

  .nav__list--customer .nav__item:last-of-type h5,
.nav__list--customer .nav__item:last-of-type .txt-h5 {
    color: var(--color-text);
  }

  .nav__list--customer h6,
.nav__list--customer .txt-h6 {
    font-size: 2rem;
    font-weight: 500;
  }

  .tabBar .nav__list {
    display: flex;
  }

  .nav__link--logo {
    display: flex;
  }

  .menu__left,
  .header-catalog__adds {
    grid-template-columns: 1fr;
  }

  .header-catalog__adds {
    align-self: start;
  }

  .menu__left {
    align-content: baseline;
  }

  .add__img {
    max-width: 300px;
  }

  .search-results.active {
    overflow: auto;
    height: 400px;
    top: 77px;
  }

  .menu__wrapper .btn--more {
    margin-bottom: 16px;
  }

  .nav__heading--mob {
    border-bottom: 1px solid var(--color-light_grey);
  }
}

@media screen and (max-width: 540px) {
  .header__menu .container {
    grid-template-columns: 1fr;
  }

  .header-catalog__add {
    justify-self: center;
  }

  .add__img {
    max-width: none;
    width: 100%;
    height: auto;
  }

  .header__menu .container,
  .menu__wrapper {
    border-bottom: 1px solid var(--color-light_grey);
  }

  .menu__wrapper {
    margin-left: 24px;
  }
}

.error-404__container {
  display: grid;
  align-content: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 300px;
  min-height: 80vh;
}

.error-404__heading {
  font-size: 4.8rem;
  font-weight: 600;
  margin-bottom: 60px;
}

.btn--secondary {
  min-width: fit-content;
}

.error-404 .btn--secondary {
  border-color: var(--color-accent);
}

.error-404 .btn__wrapper {
  margin-top: 36px;
  gap: 24px;
  display: flex;
}

.error-404 .btn {
  min-width: 120px;
}

.error-404__wrapper {
  justify-self: center;
}

@media screen and (max-width: 1200px) {
  .error-404__container {
    gap: 150px;
    grid-template-columns: 1.5fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .error-404__container {
    grid-template-columns: 1fr;
  }

  .error-404__img {
    max-width: 450px;
  }
}

.pop-up__section {
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100;
  top: 0;
  left: 0;
  overflow: auto;
}

.pop-up__section.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pop-up__promocode {
  position: relative;
}

.pop-up--xs {
  background-color: var(--color-secondary);
  padding: 36px 24px;
  border-radius: 4px;
}

.promocode__subheading .heading--accent {
  text-transform: uppercase;
}

.promocode__subheading {
  margin: 24px 0 48px;
}

.pop-up__promocode .wrapper--flex {
  margin-top: 24px;
  gap: 16px;
}

.pop-up__promocode .btn {
  width: 100%;
}

.pop-up__promocode .btn--secondary {
  border-color: var(--color-warning);
  color: var(--color-warning);
}

.pop-up__promocode .close__btn {
  position: absolute;
  right: 24px;
  z-index: 101;
  width: 24px;
  top: 16px;
}

.product__promo.disabled {
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  .present__section h4,
.present__section .txt-h4 {
    font-size: 1.6rem;
    color: var(--color-text);
  }

  .present__section .item__img {
    width: 60px;
  }

  .present__section .product__promo {
    margin-bottom: 16px;
  }
}

.archive__search {
  display: flex;
  position: static;
  margin: 40px auto 0 auto;
  visibility: visible;
  opacity: 1;
  height: 46px;
}

.archive__search .search-results {
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
}

.archive__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 4vw;
  margin-top: 60px;
}

.archive__item {
  align-items: flex-start;
  display: flex;
}

.archive__item img {
  width: 36px;
  margin-right: 16px;
}

.archive__search .search-results__img {
  width: 24px;
}

@media screen and (max-width: 912px) {
  .archive__container {
    grid-template-columns: 1fr;
    gap: 32px 4vw;
  }
}

.lp__section .slick-dots {
  visibility: hidden;
  height: 0;
}

.lp__section .slick-slide::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
}

.success-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-msg h2 {
  margin: 24px 0;
}

.success-msg svg {
  width: 100px;
  height: auto;
  padding: 16px;
  border-radius: 50%;
  background-color: rgba(78, 198, 90, 0.1);
}

.pop-up__promocode .close__btn svg {
  width: 24px;
  background-color: transparent;
  padding: 0;
}

.coffee-lounge h1 {
  margin: 80px 0;
}

.coffee-lounge__main .type-1 {
  background: url(/assets/images/img/coffe-lounge/main/Proposta_Key\ Visual.jpg) center/cover no-repeat;
}

.coffee-lounge__main h1 {
  margin-top: 32px;
  width: 70%;
}

.coffee-lounge__main .type-6 .rich-block__img--mob {
  display: none;
}

.coffee-lounge .rich-block {
  margin-bottom: 100px;
}

.coffee-lounge__main .type-6 .rich-block__img {
  object-fit: contain;
  height: fit-content;
}

.coffee-lounge__main .type-4 h2 {
  margin: 24px 0;
}

.coffee-lounge__main .type-4 .rich-block__wrapper:last-of-type,
.coffee-lounge__knowledge .type-4 .rich-block__wrapper:last-of-type,
.coffee-lounge__terminology .type-4 .rich-block__wrapper:last-of-type {
  grid-template-columns: repeat(4, 1fr);
}

.coffee-lounge__main .type-4 h5 {
  margin: 16px 0;
}

@media screen and (max-width: 1024px) {
  .coffee-lounge__main .type-4 .rich-block__img {
    width: 330px;
    height: 250px;
  }

  .coffee-lounge__main .type-4 .rich-block__wrapper:last-of-type {
    overflow: scroll;
  }
}

@media screen and (max-width: 768px) {
  .coffee-lounge__main h1 {
    width: 100%;
  }

  .coffee-lounge__main .type-6 .rich-block__img {
    display: none;
  }

  .coffee-lounge__main .type-6 .rich-block__img--mob {
    display: flex;
  }

  .coffee-lounge__main .rich-block {
    margin-bottom: 50px;
  }

  .coffee-lounge__main .type-4 .rich-block__img {
    width: 257px;
    height: 220px;
  }
}

.coffee-lounge__knowledge .type-4 .rich-block__wrapper:last-of-type {
  gap: 0;
}

.coffee-lounge__knowledge .type-4 .rich-block__img {
  height: 550px;
}

.coffee-lounge__knowledge .type-4 .wrapper {
  position: relative;
}

.coffee-lounge__knowledge .type-2 {
  margin-top: 24px;
}

.type-4 .more {
  z-index: 10;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  left: 5%;
  right: 5%;
  bottom: 10%;
}

.coffee-lounge__btn {
  display: block;
  width: fit-content;
  font-weight: 300;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.coffee-lounge__btn:hover {
  opacity: 0.5;
}

.coffee-lounge__btn img {
  width: 16px;
}

.coffee-lounge__knowledge .type-8 {
  background: url(/assets/images/img/coffe-lounge/knowledge/image\ 5.jpg) center/cover no-repeat;
}

.coffee-lounge__knowledge .type-8 .rich-block__wrapper {
  justify-self: end;
}

.coffee-lounge__knowledge .btn--accent {
  margin-top: 24px;
  display: block;
  width: fit-content;
}

@media screen and (max-width: 1024px) {

  .coffee-lounge__knowledge .type-4 .rich-block__img,
  .coffee-lounge__terminology .type-4 .rich-block__img {
    width: 400px;
  }

  .coffee-lounge__knowledge .type-4 .rich-block__wrapper:last-of-type,
  .coffee-lounge__terminology .type-4 .rich-block__wrapper:last-of-type {
    overflow: scroll;
  }
}

@media screen and (max-width: 540px) {

  .coffee-lounge__knowledge .type-4 .rich-block__img,
  .coffee-lounge__terminology .type-4 .rich-block__img {
    width: 90vw;
  }
}

@media screen and (max-width: 768px) {

  .coffee-lounge__knowledge .type-8 .rich-block__wrapper,
  .coffee-lounge__terminology .type-4 .rich-block__wrapper {
    text-align: center;
    width: 100%;
  }
}

.coffee-lounge__terminology .type-4 .rich-block__img {
  height: 280px;
  margin: 16px 0;
}

.coffee-lounge__terminology h1 {
  margin-bottom: 24px;
}

.coffee-lounge__terminology .type-4 .rich-block__wrapper:last-of-type {
  row-gap: 40px;
}

.coffee-lounge__terminology .type-4 h5 {
  margin: 12px 0;
}

@media screen and (max-width: 1024px) {
  .coffee-lounge__terminology .type-4 .rich-block__img {
    width: 330px;
  }
}

@media screen and (max-width: 768px) {
  .coffee-lounge__terminology .type-4 .rich-block__wrapper {
    text-align: left !important;
  }
}

.coffee-lounge__travel .type-1 {
  background: url(/assets/images/img/coffe-lounge/coffe-travel/Main-image.jpg) center/cover no-repeat;
}

.coffee-lounge__travel .heading--secondary {
  margin: 40px 0;
}

.coffee-lounge__travel .header--desktop {
  display: none;
}

.coffee-lounge__travel .header__catalog--mob {
  display: block;
}

.coffee-lounge__travel h1 {
  margin-top: 32px;
}

.coffee-lounge__travel--btn {
  text-align: start;
  display: block;
  padding: 0;
  margin-top: 40px;
}

.coffee-lounge__travel .type-6 .rich-block__img--mob {
  display: none;
}

.coffee-lounge .rich-block {
  margin-bottom: 100px;
}

.coffee-lounge__travel .type-6 .rich-block__img {
  object-fit: contain;
  height: fit-content;
}

.coffee-lounge__travel .type-4 h2 {
  margin: 24px 0;
}

.coffee-lounge__travel .type-4 .rich-block__wrapper:last-of-type,
.coffee-lounge__knowledge .type-4 .rich-block__wrapper:last-of-type,
.coffee-lounge__terminology .type-4 .rich-block__wrapper:last-of-type {
  grid-template-columns: repeat(4, 1fr);
}

.coffee-lounge__travel .type-4 h5 {
  margin: 16px 0;
}

@media screen and (max-width: 1024px) {
  .coffee-lounge__travel .type-4 .rich-block__img {
    width: 330px;
    height: 250px;
  }

  .coffee-lounge__travel .type-4 .rich-block__wrapper:last-of-type {
    overflow: scroll;
  }
}

@media screen and (max-width: 768px) {
  .coffee-lounge__travel h1 {
    width: 100%;
    margin: 20px 0;
  }

  .coffee-lounge__travel .type-2 {
    display: flex;
    flex-direction: column;
  }

  .coffee-lounge__travel .type-3 {
    display: flex;
    flex-direction: column-reverse;
  }

  .coffee-lounge__travel--btn {
    font-size: 2rem;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 450;
    line-height: normal;
    letter-spacing: 0.107px;
  }

  .coffee-lounge__travel .header--desktop {
    display: block;
    color: var(--color-text);
    text-align: center;
    margin: 40px 0;
  }

  .coffee-lounge__travel .header__catalog--mob {
    display: none;
  }

  .coffee-lounge__travel .type-6 .rich-block__img {
    display: none;
  }

  .coffee-lounge__travel .header__catalog--mob {
    display: none;
  }

  .coffee-lounge__travel .rich-block {
    margin-bottom: 50px;
  }
}

.coffee-lounge__history .type-1 {
  background: url(/assets/images/img/coffe-lounge/coffe-history/Main-image.jpg) center/cover no-repeat;
}

.coffee-lounge__history .heading--secondary {
  margin: 40px 0;
}

.coffee-lounge__history .header--desktop {
  display: none;
}

.coffee-lounge__history .header__catalog--mob {
  display: block;
}

.coffee-lounge__history h1 {
  margin-top: 32px;
}

.coffee-lounge__history .type-6 .rich-block__img--mob {
  display: none;
}

.coffee-lounge .rich-block {
  margin-bottom: 100px;
}

.coffee-lounge__history .type-6 .rich-block__img {
  object-fit: contain;
  height: fit-content;
}

.coffee-lounge__history .type-4 h2 {
  margin: 24px 0;
}

.coffee-lounge__history .type-4 .rich-block__wrapper:last-of-type,
.coffee-lounge__knowledge .type-4 .rich-block__wrapper:last-of-type,
.coffee-lounge__terminology .type-4 .rich-block__wrapper:last-of-type {
  grid-template-columns: repeat(4, 1fr);
}

.coffee-lounge__history .type-4 h5 {
  margin: 16px 0;
}

@media screen and (max-width: 1024px) {
  .coffee-lounge__history .type-4 .rich-block__img {
    width: 330px;
    height: 250px;
  }

  .coffee-lounge__history .type-4 .rich-block__wrapper:last-of-type {
    overflow: scroll;
  }
}

@media screen and (max-width: 768px) {
  .coffee-lounge__history h1 {
    width: 100%;
    margin: 20px 0;
  }

  .coffee-lounge__history .type-2 {
    display: flex;
    flex-direction: column;
  }

  .coffee-lounge__history .type-3 {
    display: flex;
    flex-direction: column-reverse;
  }

  .coffee-lounge__history .header--desktop {
    display: block;
    color: var(--color-text);
    text-align: center;
    margin: 40px 0;
  }

  .coffee-lounge__history .header__catalog--mob {
    display: none;
  }

  .coffee-lounge__history .type-6 .rich-block__img {
    display: none;
  }

  .coffee-lounge__history .header__catalog--mob {
    display: none;
  }

  .coffee-lounge__history .rich-block {
    margin-bottom: 50px;
  }
}

.coffee-lounge__foundations .type-1 {
  background: url(/assets/images/img/coffe-lounge/coffe-foundations/Main-image.jpg) center/cover no-repeat;
}

.coffee-lounge__foundations .heading--secondary {
  margin: 40px 0;
}

.coffee-lounge__foundations .header--desktop {
  display: none;
}

.coffee-lounge__foundations .header__catalog--mob {
  display: block;
}

.coffee-lounge__foundations h1 {
  margin-top: 32px;
}

.coffee-lounge__foundations .type-6 .rich-block__img--mob {
  display: none;
}

.coffee-lounge .rich-block {
  margin-bottom: 100px;
}

.coffee-lounge__foundations .type-6 .rich-block__img {
  object-fit: contain;
  height: fit-content;
}

.coffee-lounge__foundations .type-4 h2 {
  margin: 24px 0;
}

.coffee-lounge__foundations .type-4 .rich-block__wrapper:last-of-type,
.coffee-lounge__knowledge .type-4 .rich-block__wrapper:last-of-type,
.coffee-lounge__terminology .type-4 .rich-block__wrapper:last-of-type {
  grid-template-columns: repeat(4, 1fr);
}

.coffee-lounge__foundations .type-4 h5 {
  margin: 16px 0;
}

@media screen and (max-width: 1024px) {
  .coffee-lounge__foundations .type-4 .rich-block__img {
    width: 330px;
    height: 250px;
  }

  .coffee-lounge__foundations .type-4 .rich-block__wrapper:last-of-type {
    overflow: scroll;
  }
}

@media screen and (max-width: 768px) {
  .coffee-lounge__foundations h1 {
    width: 100%;
    margin: 20px 0;
  }

  .coffee-lounge__foundations .type-2 {
    display: flex;
    flex-direction: column;
  }

  .coffee-lounge__foundations .type-3 {
    display: flex;
    flex-direction: column-reverse;
  }

  .coffee-lounge__foundations .header--desktop {
    display: block;
    color: var(--color-text);
    text-align: center;
    margin: 40px 0;
  }

  .coffee-lounge__foundations .header__catalog--mob {
    display: none;
  }

  .coffee-lounge__foundations .type-6 .rich-block__img {
    display: none;
  }

  .coffee-lounge__foundations .header__catalog--mob {
    display: none;
  }

  .coffee-lounge__foundations .rich-block {
    margin-bottom: 50px;
  }
}

.coffee-lounge__inspirations .type-1 {
  background: url(/assets/images/img/coffe-lounge/coffe-inspirations/Main-image.png) center/cover no-repeat;
}

.coffee-lounge__inspirations .heading--secondary {
  margin: 40px 0;
}

.coffee-lounge__inspirations .header--desktop {
  display: none;
}

.coffee-lounge__inspirations .header__catalog--mob {
  display: block;
}

.coffee-lounge__inspirations h1 {
  margin-top: 32px;
}

.coffee-lounge__inspirations .type-6 .rich-block__img--mob {
  display: none;
}

.coffee-lounge .rich-block {
  margin-bottom: 100px;
}

.coffee-lounge__inspirations .type-6 .rich-block__img {
  object-fit: contain;
  height: fit-content;
}

.coffee-lounge__inspirations .type-4 h2 {
  margin: 24px 0;
}

.coffee-lounge__inspirations .type-4 .rich-block__wrapper:last-of-type,
.coffee-lounge__knowledge .type-4 .rich-block__wrapper:last-of-type,
.coffee-lounge__terminology .type-4 .rich-block__wrapper:last-of-type {
  grid-template-columns: repeat(4, 1fr);
}

.coffee-lounge__inspirations .type-4 h5 {
  margin: 16px 0;
}

@media screen and (max-width: 1024px) {
  .coffee-lounge__inspirations .type-4 .rich-block__img {
    width: 330px;
    height: 250px;
  }

  .coffee-lounge__inspirations .type-4 .rich-block__wrapper:last-of-type {
    overflow: scroll;
  }
}

@media screen and (max-width: 768px) {
  .coffee-lounge__inspirations h1 {
    width: 100%;
    margin: 20px 0;
  }

  .coffee-lounge__inspirations .type-2 {
    display: flex;
    flex-direction: column;
  }

  .coffee-lounge__inspirations .type-3 {
    display: flex;
    flex-direction: column-reverse;
  }

  .coffee-lounge__inspirations .header--desktop {
    display: block;
    color: var(--color-text);
    text-align: center;
    margin: 40px 0;
  }

  .coffee-lounge__inspirations .header__catalog--mob {
    display: none;
  }

  .coffee-lounge__inspirations .type-6 .rich-block__img {
    display: none;
  }

  .coffee-lounge__inspirations .header__catalog--mob {
    display: none;
  }

  .coffee-lounge__inspirations .rich-block {
    margin-bottom: 50px;
  }
}

.video {
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.promo-video {
  position: absolute;
  object-fit: cover;
}

.eletta .type-1 {
  position: relative;
  z-index: 1;
  height: 70vh;
  margin-top: 0;
}

.eletta .item__wrapper,
.eletta .item {
  display: flex;
}

.eletta .item__wrapper {
  justify-content: space-between;
}

.eletta .item {
  flex-direction: column;
  margin-right: 20px;
}

.eletta .item__wrapper :last-child {
  margin-right: 0;
}

.eletta .item__text {
  font-size: 1.4rem;
}

.eletta .item__heading {
  margin: 3.5vh 0;
}

.eletta .footnote {
  margin-top: 20px;
  font-size: 1rem;
}

.eletta .item__img {
  width: 280px;
}

.eletta .category__carousel .carousel__img,
.primadonna .category__carousel .carousel__img {
  height: auto;
}

@media screen and (max-width: 1280px) {
  .eletta .item__wrapper {
    overflow-x: scroll;
  }
}

@media screen and (max-width: 768px) {

  .eletta .category__carousel .carousel__img,
  .primadonna .category__carousel .carousel__img {
    height: 400px;
  }

  .eletta .item__img {
    width: 257px;
  }

  .eletta .item__heading {
    margin-bottom: 2vh;
  }

  .eletta .footnote {
    font-size: 1.1rem;
  }
}

.section__img--interactive {
  position: relative;
  background: url(/assets/images/img/primadonna/interactive_section/Group\ 64.jpg) center/cover no-repeat;
  width: 100%;
  height: 600px;
}

.primadonna .point {
  display: block;
  position: absolute;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(244, 244, 244, 0.6);
}

.primadonna .point--default {
  border: 2px solid #ffffff;
}

.point-1 {
  top: 22%;
  left: 58%;
}

.point-2 {
  top: 27%;
  left: 46%;
}

.point-3 {
  top: 33%;
  left: 55%;
}

.point-4 {
  top: 51%;
  left: 57%;
}

.point-5 {
  top: 75%;
  left: 57%;
}

.point-6 {
  top: 46%;
  left: 50%;
}

.point-7 {
  top: 42%;
  left: 42%;
}

.point-8 {
  top: 59%;
  left: 41%;
}

.point-9 {
  top: 74%;
  left: 41%;
}

@media screen and (max-width: 1280px) {
  .point-1 {
    top: 23%;
    left: 58%;
  }
}

@media screen and (max-width: 1024px) {
  .primadonna .category__carousel h2 {
    font-size: 2.4rem;
  }

  .point-1 {
    top: 21%;
    left: 59%;
  }
}

@media screen and (max-width: 912px) {
  .point-1 {
    top: 23%;
    left: 59%;
  }
}

@media screen and (max-width: 768px) {
  .section__img--interactive {
    height: 350px;
  }

  .primadonna .point {
    width: 30px;
    height: 30px;
    display: none;
  }

  .point-1 {
    top: 17%;
    left: 57%;
  }

  .point-6 {
    left: 49%;
  }

  .point-7 {
    top: 39%;
    left: 41%;
  }

  .section__img--interactive a {
    display: block;
  }

  .section__img--interactive a .point {
    display: block;
  }
}

@media screen and (max-width: 540px) {
  .point-1 {
    top: 20%;
    left: 61%;
  }

  .point-4 {
    left: 61%;
  }

  .point-5 {
    top: 75%;
    left: 63%;
  }

  .point-7 {
    top: 40%;
    left: 32%;
  }

  .point-8 {
    left: 33%;
  }

  .point-9 {
    top: 72%;
    left: 32%;
  }
}

.primadonna .wrapper {
  display: none;
}

@media screen and (max-width: 768px) {
  .primadonna .wrapper {
    width: 100%;
    overflow: scroll;
    display: flex;
  }
}

.wrapper .tip--hidden {
  opacity: 1;
  position: static;
  width: fit-content;
  min-width: fit-content;
  height: 100%;
  border: 0;
  transition: all 0.5s ease;
}

.wrapper .tip {
  border-radius: 0;
  border-right: solid 1px var(--color-text);
}

.primadonna .footnote {
  margin-top: 20px;
  font-size: 1rem;
}

.primadonna .point--active {
  border-color: #266bbf;
}

.primadonna .point--active {
  opacity: 1;
}

.primadonna .item__wrapper {
  display: flex;
}

.tip {
  left: 40px;
  z-index: 100;
  position: absolute;
  background: var(--color-secondary);
  border: 1px solid #8b8686;
  max-width: 300px;
  min-height: 70px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  padding: 0 20px;
}

.tip--hidden {
  opacity: 0;
  visibility: hidden;
}

.primadonna .point:hover>.tip {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 768px) {
  .primadonna .point:hover>.tip {
    opacity: 0;
  }

  .tip--hidden {
    display: none;
    visibility: visible;
  }

  .wrapper .tip--hidden {
    display: flex;
  }
}

.primadonna .item__body {
  margin-left: 16px;
  background: var(--color-secondary);
  border: 1px solid #8b8686;
  max-width: 300px;
  min-height: 70px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.primadonna .type-7 {
  background: url(/assets/images/img/primadonna/info-block/Rectangle\ 43.jpg) center/cover no-repeat;
}

.checkout_page .ui-menu {
  background-color: var(--color-secondary);
  width: 250px;
  padding: 24px 16px;
  border-radius: 4px;
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
  font-size: 1.6rem;
  z-index: 20;
}

.checkout_page .ui-menu-item {
  margin: 4px 0;
  cursor: pointer;
}

.form__input.promocode__wrapper,
.promocode__wrapper .form__input {
  margin: 0;
}

.checkout_page .tabBar {
  display: none;
}

.checkout-dropdown p {
  width: max-content;
}

.checkout-dropdown .dropdown__btn {
  font-size: 1.4rem;
}

.info-page__section img {
  width: 100% !important;
  object-fit: contain !important;
  height: auto !important;
}

.active_delivery_data .input--warning {
  margin: 8px 0;
}

.order__btn {
  display: block;
  width: fit-content;
}

.order__section .wrapper--flex {
  gap: 24px;
}

#payment h6,
#payment .txt-h6 {
  margin-bottom: 16px;
}

3.choose__section {
  padding-top: 32px;
  margin-bottom: 300px;
}

.choose__container {
  max-width: 920px;
  display: grid;
  gap: 24px;
}

.choose__heading {
  max-width: 920px;
  margin: 24px auto 64px;
}

.choose__item,
.choose-item__wrapper,
.refresh-link {
  display: flex;
  align-items: center;
}

.choose__item {
  border: 1px solid var(--color-light_grey);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.choose__item--disabled {
  cursor: auto;
  opacity: 0.5;
}

.choose__item:hover {
  border-color: var(--color-accent);
  box-shadow: 0px 0px 8.9px 0px rgba(1, 112, 201, 0.15);
}

.choose__item--disabled:hover {
  border-color: var(--color-grey);
  box-shadow: none;
}

.choose__item--disabled .filter__checkbox {
  user-select: none;
}

.choose-item__wrapper {
  width: 100%;
  padding: 24px;
  justify-content: space-between;
}

.choose-item__img {
  max-width: 330px;
  height: 100%;
  object-fit: cover;
}

.choose-item__heading {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.choose-item__arrow {
  width: 30px;
  height: 30px;
}

.choose-item__body {
  max-width: 70%;
}

.refresh-link h4,
.refresh-link .txt-h4,
.refresh-link path {
  transition: all 0.3s ease-in-out;
}

.refresh-link svg {
  margin-left: 8px;
}

.refresh-link path {
  stroke: var(--color-grey);
}

.refresh-link:hover h4,
.refresh-link:hover .txt-h4 {
  color: var(--color-accent);
}

.refresh-link:hover path {
  stroke: var(--color-accent);
}

@media screen and (max-width: 620px) {
  .refresh-link {
    margin: 24px 0;
  }

  .choose-item__img {
    max-width: 165px;
  }

  .choose-item__heading {
    font-size: 1.8rem;
    font-weight: 500;
  }

  .choose-item__body {
    max-width: initial;
  }

  .choose-item__body p {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 420px) {
  .refresh-link {
    justify-content: center;
  }

  .choose__item {
    flex-direction: column;
  }

  .choose-item__img {
    max-width: none;
  }

  .choose-item__wrapper {
    padding: 16px;
  }
}

.choose-drink__container {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.choose-drink__img {
  max-width: 150px;
  height: 100%;
  object-fit: cover;
}

.choose-drink__item .choose-item__wrapper {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .choose-drink__container {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 420px) {
  .choose-drink__item {
    flex-direction: row;
  }
}

.next-step__section {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 40;
}

.next-step__container {
  box-shadow: 0px 0px 3px 2px rgba(69, 69, 69, 0.15);
  border-radius: 20px 20px 0px 0px;
  background-color: var(--color-secondary);
  max-width: 920px;
  display: flex;
  align-items: center;
  padding: 40px;
  justify-content: space-between;
}

.next-step__section .btn {
  width: 100%;
  max-width: 150px;
  margin-left: 16px;
}

@media screen and (max-width: 1024px) {
  .next-step__section {
    bottom: 85px;
  }
}

@media screen and (max-width: 540px) {
  .next-step__container {
    padding: 16px;
  }

  .next-step__section .btn {
    max-width: 90px;
  }
}

.page_data p {
  margin: 16px 0;
}

.page_data h1,
.page_data h2,
.page_data h3 {
  margin: 32px 0 0 0;
}

.page_data a {
  color: var(--color-accent);
  font-size: 1.8rem;
}

.page_data ul {
  list-style: disc;
  margin: 0 0 0 24px;
}

.bottom_information {
  margin: 60px 0;
}

.bottom_information .title {
  text-align: center;
  width: 70%;
  margin: 0 auto;
}

.bottom_information table {
  width: 70%;
  margin: 24px auto;
  font-size: 1.8rem;
}

.bottom_information tr {
  display: flex;
  margin: 8px 0;
  gap: 24px;
  padding: 8px;
  border-radius: 4px;
}

.bottom_information tr:nth-of-type(odd) {
  background-color: #f4f4f4;
}

.bottom_information tr td:first-of-type {
  font-weight: 500;
}

.seo-block li {
  font-size: 1.6rem;
  margin: 4px 0;
}

.seo-block ul {
  margin: 24px;
  list-style: disc;
}

@media screen and (max-width: 1024px) {

  .bottom_information table,
  .bottom_information .title {
    width: 100%;
  }
}

.technologies__container {
  margin-top: 40px;
  margin-bottom: 40px;
}

.technologies__container h5,
.technologies__container .txt-h5,
.technologies__container .heading--center {
  margin: 24px 0;
}

.technologies__container .heading--center {
  width: 70%;
  margin: 24px auto;
}

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

@media screen and (max-width: 620px) {
  .technologies__wrapper {
    width: 100%;
    overflow: auto;
    grid-template-columns: repeat(3, 70vw);
  }
}

.type-2 a,
.type-3 a {
  display: flex;
  margin-top: 24px;
}

.beanadapt .coffee-lounge__knowledge .type-4 .rich-block__wrapper,
.coldbrew .coffee-lounge__knowledge .type-4 .rich-block__wrapper {
  grid-template-columns: repeat(2, 1fr);
}

video {
  width: 100%;
  object-fit: cover;
}

.recipes .type-1 {
  background: url(/assets/images/img/recipes/bg.jpg) center/cover no-repeat;
}

.recipes h2.heading--center {
  margin-bottom: 16px;
}

.recipes p.heading--center {
  margin-bottom: 32px;
}

.recipes .coffee-lounge__knowledge .type-4 {
  text-align: center;
}

.recipes .coffee-lounge__knowledge .type-4 .wrapper:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: .3;
  display: block;
}

.recipes .coffee-lounge__knowledge .type-4 .col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.recipes .coffee-lounge__knowledge .type-4 .col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.recipes .coffee-lounge__knowledge .type-4 .col-4 {
  grid-template-columns: repeat(4, 1fr);
}

.recipes__heading {
  margin: 24px 0 !important;
}

.type-2 table,
.type-3 table {
  text-align: left;
  font-size: 1.8rem;
}

.type-2 th,
.type-3 th {
  padding-right: 64px;
}

.type-2 th,
.type-2 td,
.type-3 th,
.type-3 td {
  padding-top: 24px;
}

@media screen and (max-width: 1024px) {

  .type-2 th,
  .type-3 th {
    padding-right: 36px;
  }

  .type-2 th,
  .type-2 td,
  .type-3 th,
  .type-3 td {
    padding-top: 16px;
  }
}

@media screen and (max-width: 912px) {
  .recipes .type-3 .rich-block__wrapper:last-of-type {
    order: -1;
  }
}

.info-page__section .form__input {
  max-width: 540px;
}

.delonghi-font {
  font-family: "Delonghi-serif";
}

.main__carousel .carousel__btn {
  position: absolute;
  top: 50%;
  z-index: 4;
}

.ad__pop-up {
  margin: 0 auto;
  max-width: 600px;
  display: grid;
  justify-items: center;
  top: 10%;
  position: absolute;
  z-index: 101;
  right: 0;
  left: 0;
  padding: 0 0 24px 0;
}

.ad__pop-up .btn {
  margin-top: 24px;
  width: fit-content;
  border-radius: 3px;
}

img.close_pop-up {
  width: 36px;
  height: 36px;
  background-color: var(--color-secondary);
}

@media screen and (max-width: 1024px) {
  img.ad-banner {
    height: 350px;
    object-fit: cover;
    object-position: top;
  }
}

.event-mark-product-item {
  position: absolute;
  bottom: 82px;
  right: 0;
  width: 90px;
  height: 90px;
  z-index: 10;
}

.carousel .event-mark-product-item {
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  z-index: 10;
}

#delivery .select2 {
  max-width: 90vw;
}

.official_store--xs {
  font-size: 1.5rem;
}

.nav__list.nav__list--xs {
  display: none;
}

@media screen and (max-width: 1024px) {
  .nav__list.nav__list--xs {
    display: flex;
  }

  .nav--top {
    padding: 7px 0;
  }
}

#descr>* {
  margin: .5em auto;
}

#descr>ul {
  font-size: 1.6rem;
  list-style: inside;
}

.pay_cards img {
  width: 5em;
  height: 5em;
  margin: 1em;
}

#instructions {
  position: relative;
}

#instructions input {
  outline-color: currentcolor;
  background-color: var(--darkreader-background-f3f3f3, #262729);
  background-image: none;
  border-color: currentcolor;
  color: var(--darkreader-text-000000, #c9c7c5);
  width: 90%;
  display: block;
  margin: 0px auto 30px auto;
  height: 52px;
  line-height: 52px;
  outline: none;
  outline-color: currentcolor;
  padding: 0px 2%;
  background: #F3F3F3;
  background-color: rgb(243, 243, 243);
  background-image: none;
  border: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  font-size: 18px;
  color: #000;
}

#instructions button {
  position: absolute;
  display: inline-block;
  content: '';
  height: 1em;
  width: 1em;
  top: .45em;
  right: 8%;
  font-size: 28px;
  background: #000;
  background-color: var(--color-accent);
  transition: 0.3s ease-in-out;
  color: var(--color-secondary);
  vertical-align: middle;
  line-height: 1;
  background-image: url('/images/icons/arrow-right.svg');
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: 50%;
}

#instructions ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

#instructions li {
  position: relative;
  width: 100%;
  margin: .5em auto;
  list-style: none;
  padding: .3em 5em;
}

#instructions a {
  text-align: justify;
  color: var(--color-text);
}

#instructions li::before {
  content: '';
  position: absolute;
  height: 1.5em;
  width: 1.5em;
  left: 3em;
  top: 50%;
  transform: translateY(-50%);
  background-image: url('/images/icons/pdf.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 980px) {
  #instructions ul {
    grid-template-columns: 1fr 1fr;
  }

  #instructions li {
    padding-right: 1em;
  }
}

@media (max-width: 583px) {
  #instructions ul {
    grid-template-columns: 1fr;
  }

  #instructions li {
    padding-right: 0;
    padding-left: 3em;
  }

  #instructions li::before {
    left: 1em;
  }
}

.card--default>a {
  position: relative;
}

.card--default .five_prc {
  width: 9em !important;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.product__header .five_prc {
  width: 19em;
  margin-top: 1em;
}

.banner-hero-video::before {
  background: none !important;
}
