@font-face {
  font-family: "Consolas";
  src: url("../fonts/Consolas.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Consolas";
  src: url("../fonts/Consolas-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*,
::before,
::after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
body {
  height: 100%;
  width: 100%;
  font-family: "Consolas", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  text-align: left;
  color: #323331;
  background: #fff;
  scroll-behavior: smooth;
}

body.lock {
  overflow: hidden;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.title {
  margin: auto;
  max-width: 1200px;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.subtitle {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.txt + .txt {
  margin-top: 20px;
}

.bold {
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 60px;
  padding: 10px 30px;
  border-radius: 50px;
  font: inherit;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  background: #b0c0b0;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  background: rgba(176, 192, 176, 0.7);
}

.btn--big {
  min-width: 276px;
  min-height: 72px;
  padding: 12px 36px;
  font-size: 1.2rem;
}

.btn--more {
  color: #b0c0b0;
  border: 2px solid #b0c0b0;
  background: rgba(176, 192, 176, 0);
}

.btn--more:hover {
  border: 2px solid rgba(176, 192, 176, 0.7);
  color: rgba(176, 192, 176, 0.7);
  background: rgba(176, 192, 176, 0);
}

/* custom-check-contain */

.custom-check-contain *,
.custom-check-contain *::before,
.custom-check-contain *::after {
  box-sizing: content-box !important;
}

.custom-check-contain input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-check-contain span {
  line-height: inherit;
  font-size: 1rem;
  font-family: inherit;
}

.custom-check-contain {
  display: table;
  position: relative;
  padding-left: 2rem;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.custom-check-contain input[type="checkbox"] ~ .custom-check-input {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.25rem;
  width: 1.25rem;
  background: #f1f5f9;
  transition: background 250ms;
  border: 1px solid #94a3b8;
  border-radius: 10rem;
}

.custom-check-contain input[type="radio"] ~ .custom-check-input {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.25rem;
  width: 1.25rem;
  background: #f1f5f9;
  transition: background 250ms;
  border: 1px solid #94a3b8;
  border-radius: 3rem;
}

.custom-check-contain input[type="checkbox"] ~ .custom-check-input::after {
  content: "";
  position: absolute;
  display: none;
  left: 0.4rem;
  top: 0.15rem;
  width: 0.3rem;
  height: 0.6rem;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transition: background 250ms;
  transform: rotate(45deg);
}

.custom-check-contain input[type="radio"] ~ .custom-check-input::after {
  content: "";
  position: absolute;
  display: none;
  left: 0.25rem;
  top: 0.25rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 3rem;
  background: #ffffff;
  transition: background 250ms;
}

.custom-check-contain
  input[type="checkbox"]:disabled
  ~ .custom-check-input::after {
  border-color: #ffffff;
}

.custom-check-contain input:checked ~ .custom-check-input::after {
  display: block;
}

.custom-check-contain:hover
  input[type="checkbox"]:not([disabled])
  ~ .custom-check-input,
.custom-check-contain input[type="checkbox"]:focus ~ .custom-check-input {
  background: #e2e8f0;
  border-color: #64748b;
}

.custom-check-contain:hover
  input[type="radio"]:not([disabled])
  ~ .custom-check-input,
.custom-check-contain input[type="radio"]:focus ~ .custom-check-input {
  background: #e2e8f0;
  border-color: #64748b;
}

.custom-check-contain input:focus ~ .custom-check-input {
  box-shadow: 0 0 0 2px #99b499;
}

.custom-check-contain input[type="checkbox"]:checked ~ .custom-check-input {
  background: #b0c0b0;
  border-color: #b0c0b0;
}

.custom-check-contain input[type="radio"]:checked ~ .custom-check-input {
  background: #b0c0b0;
  border-color: #b0c0b0;
}

.custom-check-contain input[type="checkbox"]:disabled ~ .custom-check-input,
.custom-check-contain input[type="radio"]:disabled ~ .custom-check-input {
  opacity: 0.5;
  cursor: not-allowed;
}

.custom-check-contain
  input[type="radio"]:disabled
  ~ .custom-check-input::after {
  background: #fff;
}

.custom-check-contain:hover
  input[type="checkbox"]:not([disabled]):checked
  ~ .custom-check-input,
.custom-check-contain
  input[type="checkbox"]:checked:focus
  ~ .custom-check-input {
  background: rgba(176, 192, 176, 0.7);
  border-color: rgba(176, 192, 176, 0.7);
}

.custom-check-contain:hover
  input[type="radio"]:not([disabled]):checked
  ~ .custom-check-input,
.custom-check-contain input[type="radio"]:checked:focus ~ .custom-check-input {
  background: rgba(176, 192, 176, 0.7);
  border-color: rgba(176, 192, 176, 0.7);
}

/* custom-input */

.custom-input,
.custom-textarea {
  width: 100%;
  margin-bottom: 20px;
  padding: 17px 20px;
  outline: none;
  border: 1px solid #64748b;
  font: inherit;
  color: inherit;
  border-radius: 30px;
  background: #fff;
  transition: border 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.custom-textarea {
  min-width: 100%;
  max-width: 100%;
  min-height: 200px;
}

.custom-input:focus,
.custom-textarea:focus {
  border: 1px solid rgba(176, 192, 176, 0.7);
  box-shadow: 0 0 0 2px #99b499;
}

.custom-input::placeholder,
.custom-textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

/* wrapper */

.wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
}

/* main */

.main {
  padding: 30px 0 0;
  flex: 1 0 auto;
}

/* container */

.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 30px;
}

/* header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 10;
  display: flex;
  align-items: center;
  color: #747474;
  background: #fff;
}

.header__container {
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  transition: all 0.3s ease-in-out;
}

.header__logo {
  flex: 1;
}

.header__logo {
  display: inline-block;
}

.header__logo-img {
  max-width: 167px;
  transition: all 0.2s linear;
}

.header__burger {
  display: none;
  width: 25px;
  height: 17px;
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.burger span {
  position: absolute;
  top: 7px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #747474;
  transition: all 0.2s linear;
}

.burger span:first-child {
  top: 0;
}

.burger span:last-child {
  top: auto;
  bottom: 0;
}

.burger.active span {
  transform: scale(0);
}

.burger.active span:first-child {
  transform: rotate(-45deg);
  top: 8px;
}

.burger.active span:last-child {
  transform: rotate(45deg);
  bottom: 7px;
}

.header__menu {
  min-width: 0;
}

.menu {
  color: #747474;
}

.menu__list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.menu__link {
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.3s ease-in-out, border 0.3s ease-in-out;
}

.menu__item:nth-child(1),
.menu__item:nth-child(3) {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.header__menu .menu__item:hover .menu__link {
  color: #b0c0b0;
}

.header__menu .menu__item.active .menu__link {
  color: #b0c0b0;
}

.header__icon-item {
  display: block;
  text-decoration: none;
  text-align: center;
  position: relative;
  color: inherit;
  transition: color 0.3s ease-in-out;
}

.header__icon-item:hover {
  color: #b0c0b0;
}

.header__icon-item-count {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 65%;
  display: block;
  text-decoration: none;
  height: 15px;
  min-width: 15px;
  padding: 3px 4px;
  text-align: center;
  line-height: 1;
  color: #ffffff;
  background-color: #b0c0b0;
  font-size: 10px;
  font-weight: 400;
  border-radius: 8px;
}

/* hero */

.hero {
  padding: 70px 0;
}

.hero__body {
  border-radius: 30px;
  display: flex;
  background: #f5f7f5;
  transition: all 0.3s ease-in-out;
}

.hero__txt-content {
  padding: 140px 0 170px 70px;
  width: 50%;
  transition: all 0.3s ease-in-out;
}

.hero__title {
  margin: 0 0 30px;
  max-width: 750px;
  font-size: 70px;
  text-align: left;
}

.hero__subtitle {
  margin: 0 0 50px;
  max-width: 750px;
  font-size: 50px;
  text-align: left;
  color: #747474;
}

.hero__img-content {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__img {
  max-height: 750px;
}

/* recipes-line */

.recipes-line {
  padding: 70px 0;
}

.recipes-line__title {
  margin-bottom: 60px;
}

.recipes-line__recipes-item {
  height: auto;
}

.recipes-item {
  position: relative;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  text-align: center;
  border-radius: 30px;
  background: #f5f7f5;
  transition: all 0.3s ease-in-out;
}

.recipes-item__img {
  width: 100%;
  max-width: 300px;
}

.recipes-item__txt {
  flex: 1;
}

.recipes-item__labels {
  position: absolute;
  top: 28px;
  left: 30px;
  width: calc(100% - 24px - 60px);
  text-align: left;
}

.recipes-item__label-new,
.recipes-item__label-discont {
  margin: 2px 0;
  padding: 3px 12px 4px;
  display: inline-block;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}

.recipes-item__label-new {
  background-color: #2ea237;
}

.recipes-item__label-discont {
  background-color: #e5232a;
}

.recipes-item__actions {
  position: absolute;
  top: 30px;
  right: 30px;
}

.recipes-item__favorites-btn {
  display: block;
  overflow: hidden;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  outline: none;
  color: initial;
  text-decoration: none;
  transition: all 0.2s ease;
}

.recipes-item__favorites-btn:hover {
  color: #b0c0b0;
}

.recipes-item__favorites-btn.active {
  color: #b0c0b0;
}

.recipes-line__btn-container {
  margin-top: 60px;
  text-align: center;
}

/* new-item */

.new-item {
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  text-align: center;
  border-radius: 30px;
  background: #f5f7f5;
  transition: all 0.3s ease-in-out;
}

.new-item__txt {
  flex: 1;
}

.new-item__date {
  color: #747474;
}

/* articles-line */

.articles-line {
  padding: 70px 0;
}

.articles-line__title {
  margin-bottom: 60px;
}

.articles-line__articles-item {
  height: auto;
}

.articles-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  text-align: center;
  border-radius: 30px;
  overflow: hidden;
  background: #f5f7f5;
  transition: all 0.3s ease-in-out;
}

.articles-item__img-link {
  width: 100%;
}

.articles-item__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 30px;
}

.articles-item__subtitle {
  padding: 0 20px;
}

.articles-item__link {
  transition: color 0.3s ease-in-out;
}

.articles-item__link:hover {
  color: #b0c0b0;
}

.articles-item__txt {
  padding: 0 20px 50px;
  flex: 1;
}

.articles-line__btn-container {
  margin-top: 60px;
  text-align: center;
}

/* review-line */

.review-line {
  padding: 70px 0;
  text-align: center;
}

.review-line__title {
  margin-bottom: 60px;
}

.review-line__review-item {
  height: auto;
}

.review-item {
  padding: 50px 20px;
  border-radius: 30px;
  background: #f5f7f5;
  transition: padding 0.3s ease-in-out;
}

.review-item__subtitle {
  margin-bottom: 15px;
}

.review-item__stars {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.review-item__star {
  display: block;
  width: 28px;
  height: 26px;
  background: url("../img/star.svg") no-repeat center / contain;
}

.review-item__star--grey {
  background: url("../img/star-grey.svg") no-repeat center / contain;
}

.review-line__btn-container {
  margin-top: 60px;
  text-align: center;
}

/* all-recipes */

.all-recipes {
  padding: 70px 0;
}

.all-recipes__body {
  padding: 50px 20px;
  border-radius: 30px;
  background: #f5f7f5;
  transition: all 0.3s ease-in-out;
}

.all-recipes__title {
  margin-bottom: 60px;
}

.all-recipes__tag-nav {
  margin-bottom: 40px;
}

.tag-nav__list {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}

.tag-nav__list li {
  margin: 5px;
}

.tag-nav__link {
  min-height: 60px;
  padding: 17px 30px;
  display: inline-block;
  background-color: #e2e2e2;
  border-radius: 30px;
  color: #747474;
  transition: all 0.3s ease;
}

.tag-nav__link:hover {
  background-color: #b0c0b0;
  color: #fff;
}

.tag-nav__link.active {
  background-color: #b0c0b0;
  color: #fff;
  cursor: default;
}

.all-recipes__sort-box {
  max-width: 300px;
  margin-left: auto;
  margin-bottom: 40px;
}

.sort {
  padding: 0 40px 0 20px;
  width: 100%;
  min-width: 200px;
  height: 60px;
  display: block;
  border-radius: 30px;
  border: 1px solid #64748b;
  background-color: #fff;
  outline: none;
  font: inherit;
  font-size: 20px;
  color: inherit;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none !important;
  background-image: url("../img/select.svg");
  background-position: right 15px center;
  background-size: 24px auto;
  background-repeat: no-repeat;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.2s ease;
}

.sort::-ms-expand {
  display: none;
}

/* .sort:hover {
  border: 1px solid #b0c0b0;
} */

.sort:focus {
  border: 1px solid rgba(176, 192, 176, 0.7);
  box-shadow: 0 0 0 2px #99b499;
}

.all-recipes__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.all-recipes__recipes-item {
  width: calc(100% / 3 - 40px / 3);
  background: #fff;
}

.all-recipes__btn-container {
  margin-top: 60px;
  text-align: center;
}

/* all-news */

.all-news {
  padding: 70px 0;
}

.all-news__body {
  padding: 50px 20px;
  border-radius: 30px;
  background: #f5f7f5;
  transition: all 0.3s ease-in-out;
}

.all-news__title {
  margin-bottom: 60px;
}

.all-news__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.all-news__new-item {
  width: calc(100% / 3 - 40px / 3);
  background: #fff;
}

.all-news__btn-container {
  margin-top: 60px;
  text-align: center;
}

/* content-section */

.content-section {
  padding: 70px 0;
}

.content-section__body {
  padding: 50px 20px;
  border-radius: 30px;
  background: #f5f7f5;
  transition: all 0.3s ease-in-out;
}

.content-section__body-item {
  margin-top: 50px;
  padding: 30px 20px;
  border-radius: 30px;
  background: #fff;
  transition: all 0.3s ease-in-out;
}

.content-section__body-item + .content-section__body-item {
  margin-top: 20px;
}

.content-section__title {
  margin-bottom: 60px;
}

.content-section__subtitle {
  margin-bottom: 30px;
}

.content-section__box {
  display: flex;
  gap: 20px;
}

.content-section__img-content {
  width: 50%;
  height: auto;
  border-radius: 30px;
}

.content-section__img {
  width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 30px;
}

.content-section__txt-content {
  width: 50%;
}

.content-section__list {
  margin: 20px 0;
}

.content-section__list:last-child {
  margin-bottom: 0;
}

ul .content-section__item {
  position: relative;
  padding-left: 15px;
}

ul .content-section__item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #323331;
}

ol .content-section__item {
  counter-increment: counter1;
}

ol .content-section__item::before {
  content: counter(counter1) ". ";
}

.content-section__item + .content-section__item {
  margin-top: 5px;
}

.content-section__item-link,
.content-section__link {
  transition: color 0.3s ease-in-out;
}

.content-section__item-link:hover,
.content-section__link:hover {
  color: #b0c0b0;
}

.content-section__btn-box {
  margin-top: 50px;
  text-align: center;
}

.content-section__date {
  text-align: center;
  color: #747474;
}

.content-section__btn-container {
  margin-top: 60px;
  text-align: center;
}

/* recipe */

.recipe {
  padding: 70px 0;
}

.recipe__body {
  padding: 50px 20px;
  border-radius: 30px;
  background: #f5f7f5;
  transition: all 0.3s ease-in-out;
}

.recipe__title {
  margin-bottom: 60px;
}

.recipe__box {
  display: flex;
  gap: 20px;
}

.recipe__img-content {
  flex: 1 0 367px;
}

.recipe__img {
  min-width: 300px;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}

.recipe__list {
  margin: 20px 0;
}

.recipe__list:last-child {
  margin-bottom: 0;
}

.recipe__item {
  position: relative;
  padding-left: 15px;
}

.recipe__item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #323331;
}

.recipe__item + .recipe__item {
  margin-top: 5px;
}

.recipe__item-link {
  transition: color 0.3s ease-in-out;
}

.recipe__item-link:hover {
  color: #b0c0b0;
}

.recipe__price-box {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px 20px;
}

.recipe__new-price {
  font-size: 40px;
  font-weight: 700;
}

.recipe__old-price {
  font-size: 30px;
  font-weight: 700;
  color: #747474;
  text-decoration: line-through;
}

.recipe__btn-box {
  margin-top: 50px;
  text-align: center;
}

/* big-banner */

.big-banner {
  padding: 70px 0;
}

.big-banner__box {
  display: flex;
  border-radius: 30px;
  background: #f6f6f6;
  overflow: hidden;
}

.big-banner__img-content {
  width: 50%;
  height: auto;
  background: right 50% / cover no-repeat;
}

.big-banner__txt-content {
  width: 50%;
  height: auto;
  padding: 105px 105px 105px 0;
  text-align: center;
}

.big-banner__title {
  margin-bottom: 50px;
}

.big-banner__btn {
  margin-top: 50px;
}

/* purchase */

.purchase {
  padding: 70px 0;
}

.purchase__body {
  padding: 50px 20px;
  border-radius: 30px;
  background: #f5f7f5;
  transition: all 0.3s ease-in-out;
}

.purchase__title {
  margin-bottom: 60px;
}

.purchase__box {
  display: flex;
  gap: 60px 20px;
}

.purchase__items {
  width: 50%;
  transition: width 0.3s ease-in-out;
}

.purchase__item {
  padding: 50px;
  border-radius: 30px;
  background: #fff;
  transition: padding 0.3s ease-in-out;
}

.purchase__item + .purchase__item {
  margin-top: 20px;
}

.purchase__item-header {
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 30px;
  font-weight: 700;
}

.purchase__item-content {
  display: flex;
  align-items: center;
  gap: 5px;
}

.purchase__img {
  width: 100px;
}

.purchase__btn-container {
  margin-top: 60px;
  text-align: center;
}

.purchase__checkout {
  width: 50%;
}

.purchase__checkout-body {
  position: sticky;
  top: 120px;
  padding: 50px;
  border-radius: 30px;
  background: #fff;
  transition: padding 0.3s ease-in-out;
}

.purchase__checkout-subtitle {
  margin-bottom: 30px;
}

.purchase__checkout-box {
  margin-bottom: 30px;
  display: flex;
}

.purchase__inputs {
  min-width: 160px;
  flex: 1;
}

.purchase__custom-input-box {
  margin-bottom: 20px;
}

.purchase__inputs .custom-check-contain {
  margin-bottom: 20px;
}

.purchase__btn-box {
  text-align: center;
}

/* popular-articles */

.popular-articles {
  padding: 70px 0;
}

.popular-articles__body {
  padding: 50px 20px;
  border-radius: 30px;
  background: #f5f7f5;
  transition: all 0.3s ease-in-out;
}

.popular-articles__title {
  margin-bottom: 60px;
}

.popular-articles__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.popular-articles__item {
  width: calc(100% / 3 - 40px / 3);
  background: #fff;
}

.popular-articles__btn-box {
  margin-top: 60px;
  text-align: center;
}

/* reviews */

.reviews {
  padding: 70px 0;
}

.reviews__body {
  padding: 50px 20px;
  border-radius: 30px;
  background: #f5f7f5;
  transition: all 0.3s ease-in-out;
}

.reviews__top-box-content {
  margin-bottom: 50px;
  text-align: center;
}

.reviews__title {
  margin-bottom: 60px;
}

.reviews__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.reviews__review-item {
  width: 100%;
  background: #fff;
}

.reviews__btn-box {
  margin-top: 60px;
  text-align: center;
}

/* user-review */

.user-review {
  padding: 70px 0;
}

.user-review__body {
  padding: 50px 20px;
  border-radius: 30px;
  background: #f5f7f5;
  transition: all 0.3s ease-in-out;
}

.user-review__title {
  margin-bottom: 60px;
}

.user-review__txt {
  margin-bottom: 30px;
}

.user-review__inputs {
  margin-bottom: 30px;
  min-width: 260px;
}

.user-review__stars {
  margin-bottom: 20px;
  display: flex;
  gap: 5px;
}

.user-review__star {
  display: block;
  width: 28px;
  height: 26px;
  background: url("../img/star.svg") no-repeat center / contain;
}

.user-review__star--grey {
  background: url("../img/star-grey.svg") no-repeat center / contain;
}

.user-review__btn-box {
  text-align: center;
}

/* contact */

.contact {
  padding: 70px 0;
}

.contact__body {
  padding: 50px 20px;
  border-radius: 30px;
  background: #f6f6f6;
  transition: all 0.3s ease-in-out;
}

.contact__title {
  margin-bottom: 60px;
}

.contact__box {
  display: flex;
  gap: 60px 20px;
}

.contact__txt-content {
  width: 50%;
}

.contact__txt {
  margin-bottom: 30px;
}

.contact__link {
  transition: color 0.3s ease-in-out;
}

.contact__link:hover {
  color: #b0c0b0;
}

.contact__inputs {
  margin-bottom: 30px;
  min-width: 260px;
}

.contact__btn-box {
  text-align: center;
}

.contact__img-content {
  width: 50%;
  height: auto;
  border-radius: 30px;
}

/* footer */

.footer {
  padding: 50px 0 0;
  color: #747474;
}

.footer__top {
  padding: 70px 0;
  background: #f5f7f5;
}

.footer__logo {
  margin-bottom: 40px;
  text-align: center;
}

.footer__logo-link {
  display: inline-block;
}

.footer__logo-img {
  margin: auto;
  max-width: 167px;
  transition: all 0.2s linear;
}

.footer__menu-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 30px;
}

.footer__menu-item {
  text-align: center;
}

.footer__menu-link {
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}

.footer__menu-link:hover {
  color: #b0c0b0;
}

.footer svg {
  display: block;
}

.footer__bottom {
  padding: 70px 0;
  font-size: 18px;
  background: #323331;
}

.footer__payment-methods {
  margin-bottom: 40px;
}

.payment-methods__list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
}

.payment-methods__item {
  display: inline-block;
  width: 70px;
  height: 45px;
}

.payment-methods__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.8;
}

.footer__bottom .footer__menu-link {
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

.footer__bottom .footer__menu-link:hover {
  color: rgba(176, 192, 176, 0.7);
}

.footer__bottom .footer__menu {
  margin-bottom: 40px;
}

.footer__copyright {
  text-align: center;
}

/* media */

@media (max-width: 1400px) {
  .hero__txt-content {
    padding: 70px 0 100px 70px;
  }
  .hero__title {
    font-size: 60px;
  }

  .hero__subtitle {
    font-size: 40px;
  }
}

@media (max-width: 1300px) {
  .header__container {
    padding: 0 30px;
  }

  .hero__title {
    font-size: 60px;
  }

  .hero__subtitle {
    margin-bottom: 50px;
    font-size: 40px;
  }
}

@media (max-width: 1200px) {
  .title {
    font-size: 45px;
  }

  .subtitle {
    font-size: 25px;
  }

  .container {
    padding: 0 15px;
  }

  .main {
    padding: 20px 0 0;
  }

  .header {
    height: 70px;
  }

  .header__logo-img {
    max-width: 128px;
  }

  .header__menu {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    padding: 30px 0 60px;
    display: block;
    text-align: center;
    background: #fff;
    overflow: auto;
  }

  .header__menu.active {
    left: 0;
  }

  .header__menu svg {
    display: inline-block;
  }

  .header__burger {
    display: block;
  }

  .menu__list {
    display: block;
  }

  .menu__item {
    padding: 15px;
    display: block;
  }

  /* hero */

  .hero {
    padding: 50px 0;
  }

  .hero__txt-content {
    padding: 50px 0 70px 50px;
  }

  /* recipes-line */

  .recipes-line {
    padding: 50px 0;
  }

  .recipes-line__title {
    margin-bottom: 40px;
  }

  .recipes-line__btn-container {
    margin-top: 40px;
  }

  /* review-line */

  .review-line {
    padding: 50px 0;
  }

  .review-line__title {
    margin-bottom: 40px;
  }

  .review-line__btn-container {
    margin-top: 40px;
  }

  /* articles-line */

  .articles-line {
    padding: 50px 0;
  }

  .articles-line__title {
    margin-bottom: 40px;
  }

  .articles-line__btn-container {
    margin-top: 40px;
  }

  /* all-recipes */

  .all-recipes {
    padding: 50px 0;
  }

  .all-recipes__title {
    margin-bottom: 40px;
  }

  .all-recipes__recipes-item {
    width: calc(100% / 2 - 20px / 2);
  }

  .all-recipes__btn-container {
    margin-top: 40px;
  }

  /* all-news */

  .all-news {
    padding: 50px 0;
  }

  .all-news__title {
    margin-bottom: 40px;
  }

  .all-news__new-item {
    width: calc(100% / 2 - 20px / 2);
  }

  .all-news__btn-container {
    margin-top: 40px;
  }

  /* content-section */

  .content-section {
    padding: 50px 0;
  }

  .content-section__title {
    margin-bottom: 40px;
  }

  .content-section__img {
    min-width: 250px;
  }

  .content-section__btn-box {
    margin-top: 40px;
  }

  .content-section__btn-container {
    margin-top: 40px;
  }

  /* recipe */

  .recipe {
    padding: 50px 0;
  }

  .recipe__title {
    margin-bottom: 40px;
  }

  .recipe__img-content {
    flex: 1 1 367px;
  }

  .recipe__img {
    min-width: 250px;
  }

  .recipe__price-box {
    margin-top: 40px;
  }

  .recipe__btn-box {
    margin-top: 40px;
  }

  /* big-banner */

  .big-banner {
    padding: 50px 0;
  }

  .big-banner__txt-content {
    padding: 105px 40px 105px 0;
  }

  .big-banner__title {
    margin-bottom: 40px;
  }
  .big-banner__btn {
    margin-top: 40px;
  }

  /* purchase */

  .purchase {
    padding: 50px 0;
  }

  .purchase__title {
    margin-bottom: 40px;
  }

  .purchase__item {
    padding: 50px 20px;
  }

  .purchase__img {
    width: 80px;
  }

  .purchase__btn-container {
    margin-top: 40px;
  }

  .purchase__checkout-body {
    top: 90px;
    padding: 50px 20px;
  }

  /* popular-articles */

  .popular-articles {
    padding: 50px 0;
  }

  .popular-articles__title {
    margin-bottom: 40px;
  }

  .popular-articles__item {
    width: calc(100% / 2 - 20px / 2);
  }

  .popular-articles__btn-box {
    margin-top: 40px;
  }

  /* reviews */

  .reviews {
    padding: 50px 0;
  }

  .reviews__top-box-content {
    margin-bottom: 40px;
  }

  .reviews__title {
    margin-bottom: 40px;
  }

  .reviews__btn-box {
    margin-top: 40px;
    text-align: center;
  }

  /* user-review */

  .user-review {
    padding: 50px 0;
  }

  .user-review__title {
    margin-bottom: 40px;
  }

  .user-review__inputs {
    margin-bottom: 20px;
  }

  /* contact */

  .contact {
    padding: 50px 0;
  }

  .contact__title {
    margin-bottom: 40px;
  }

  .contact__inputs {
    margin-bottom: 20px;
  }

  /* footer */
  .footer__logo-img {
    max-width: 128px;
  }
}

@media (max-width: 980px) {
  /* purchase */

  .purchase__item-header {
    flex-direction: column;
    gap: 0;
  }

  .purchase__item-price {
    margin-bottom: 10px;
    padding-left: 40px;
  }
}

@media (max-width: 800px) {
  /* hero */

  .hero__body {
    flex-direction: column;
    text-align: center;
  }

  .hero__txt-content {
    width: 100%;
    padding: 50px 50px 0;
  }

  .hero__title {
    margin: auto;
    margin-bottom: 30px;
    max-width: 550px;
    text-align: center;
  }

  .hero__subtitle {
    margin: auto;
    margin-bottom: 30px;
    max-width: 550px;
    text-align: center;
  }

  .hero__img-content {
    width: 100%;
  }

  .hero__img {
    margin: auto;
    width: 550px;
  }

  /* all-recipes */

  .all-recipes__recipes-item {
    width: 100%;
  }

  /* all-news */

  .all-news__new-item {
    width: 100%;
  }

  /* content-section */

  .content-section__box {
    flex-direction: column;
  }

  .content-section__img-content {
    width: 100%;
    height: 250px;
  }

  .content-section__img {
    margin: auto;
    max-width: 367px;
  }

  .content-section__txt-content {
    width: 100%;
  }

  /* big-banner */

  .big-banner__box {
    display: flex;
    flex-direction: column;
  }

  .big-banner__img-content {
    width: 100%;
    height: 350px;
    background: center bottom / cover no-repeat;
  }

  .big-banner__txt-content {
    margin: auto;
    width: 100%;
    max-width: 550px;
    padding: 15px 15px 40px;
  }

  /* recipe */

  .recipe__box {
    flex-direction: column;
    gap: 30px;
  }

  .recipe__img-content {
    width: 100%;
    flex: 1 1 auto;
  }

  .recipe__img {
    margin: auto;
    max-width: 367px;
  }

  /* purchase */

  .purchase__box {
    flex-direction: column;
  }

  .purchase__items {
    width: 100%;
  }

  .purchase__checkout {
    width: 100%;
  }

  /* popular-articles */

  .popular-articles__item {
    width: 100%;
  }

  /* contact */

  .contact__box {
    flex-direction: column;
    gap: 20px;
  }

  .contact__txt-content {
    width: 100%;
    order: 1;
  }

  .contact__img-content {
    width: 100%;
    height: 250px;
  }
}

@media (max-width: 500px) {
  .title {
    font-size: 35px;
  }

  .subtitle {
    font-size: 22px;
  }

  .btn {
    height: auto;
    line-height: 1;
    white-space: normal;
  }

  .btn--big {
    min-width: 100%;
    min-height: 60px;
    padding: 10px 30px;
    font-size: 1rem;
  }

  .header__container {
    gap: 20px;
  }

  .header__logo-img {
    max-width: 100px;
  }

  /* hero */

  .hero__body {
    padding: 0 0 20px;
  }

  .hero__txt-content {
    padding: 50px 15px 15px;
  }

  /* all-recipes */

  .all-recipes__body {
    padding: 40px 15px;
  }

  .all-recipes__list {
    gap: 15px;
  }

  .all-recipes__recipes-item {
    padding: 40px 15px;
  }

  /* all-news */

  .all-news__body {
    padding: 40px 15px;
  }

  .all-news__list {
    gap: 15px;
  }

  .all-news__new-item {
    padding: 40px 15px;
  }

  /* content-section */

  .content-section__body {
    padding: 40px 15px;
  }

  .content-section__body-item {
    margin-top: 40px;
    padding: 30px 15px;
  }

  .content-section__body-item + .content-section__body-item {
    margin-top: 15px;
  }

  .content-section__img {
    max-width: 70%;
  }

  .content-section__subtitle {
    margin-bottom: 20px;
  }

  /* recipe */

  .recipe__body {
    padding: 40px 15px;
  }

  .recipe__img {
    max-width: 70%;
  }

  .recipe__new-price {
    font-size: 30px;
  }

  .recipe__old-price {
    font-size: 22px;
  }

  /* recipes-line */

  .recipes-item {
    padding: 40px 15px;
  }

  .recipes-item__labels {
    top: 18px;
    left: 20px;
  }

  .recipes-item__actions {
    top: 20px;
    right: 20px;
  }

  /* new-item */

  .new-item {
    padding: 40px 15px;
  }

  /* articles-line */

  .articles-item__subtitle {
    padding: 0 15;
  }

  .articles-item__img {
    height: 200px;
  }

  .articles-item__txt {
    padding: 0 15px 40px;
    flex: 1;
  }

  /* review-line */

  .review-line {
    padding: 55px 0;
  }

  .review-line__container {
    padding: 0 30px;
  }

  .review-item {
    padding: 40px 15px;
  }

  .review-item__subtitle {
    margin-bottom: 10px;
  }

  .review-item__stars {
    margin-bottom: 20px;
  }

  /* purchase */

  .purchase__body {
    padding: 40px 15px;
  }

  .purchase__box {
    gap: 55px;
  }

  .purchase__item {
    padding: 40px 15px;
  }

  .purchase__item + .purchase__item {
    margin-top: 15px;
  }
  .purchase__img {
    display: none;
  }
  .purchase__checkout-body {
    padding: 40px 15px;
  }

  .purchase__checkout-box {
    flex-direction: column;
  }

  /* popular-articles */

  .popular-articles__body {
    padding: 40px 15px;
  }

  /* reviews */

  .reviews__body {
    padding: 40px 15px;
  }

  .reviews__list {
    gap: 15px;
  }

  /* user-review */

  .user-review__body {
    padding: 40px 15px;
  }

  .user-review__txt {
    margin-bottom: 20px;
  }

  .user-review__inputs {
    margin-bottom: 20px;
    min-width: 260px;
  }

  /* contact */

  .contact__body {
    padding: 40px 15px;
  }

  .contact__txt {
    margin-bottom: 20px;
  }

  .contact__inputs {
    margin-bottom: 20px;
    min-width: 260px;
  }

  /* footer */

  .footer__menu-list {
    gap: 20px;
    flex-direction: column;
  }
}

/* ↓ personal account ↓ */

/* ACCOUNT */

.account {
  padding: 70px 0;
}

.account__body {
  position: relative;
  padding: 50px 20px;
  border-radius: 30px;
  background: #f5f7f5;
  transition: all 0.3s ease-in-out;
}

.account__title {
  margin-bottom: 60px;
}

.account__box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.account__box-container {
  flex: 1 0 40%;
  max-width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
}

.account__box-content {
  flex: 1;
  margin-bottom: 20px;
  padding: 40px 15px;
  border-radius: 30px;
  background: #fff;
}

.account__box-discont {
  flex: 0;
  background-color: #b0c0b0;
}

.account__box-title {
  margin-bottom: 20px;
}

.account__box-discont .account__box-title {
  color: #fff;
  margin-bottom: 0;
}

.history__item {
  margin-bottom: 20px;
}

.history__item p {
  margin-bottom: 10px;
}

.history__item a {
  color: inherit;
  text-decoration: underline;
  transition: all 0.2s ease;
}

.history__item a:hover {
  color: #b0c0b0;
  text-decoration: underline;
}

.history__btn-container {
  margin: 10px 0 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.see-more-btn {
  margin-top: 50px;
  text-align: center;
}

.cancel-btn {
  padding: 11px 23px;
  display: inline-block;
  font-size: 14px;
  color: #3c3d3c;
  background-color: #fff;
  border: 2px solid #3c3d3c;
  border-radius: 30px;
  transition: all 0.2s ease;
}

.cancel-btn:hover {
  color: #fff;
  border: 2px solid #199f83;
  background-color: #199f83;
}

.account-link {
  color: inherit;
  text-decoration: underline;
  transition: all 0.2s ease;
}

.account-link:hover {
  color: #b0c0b0;
  text-decoration: underline;
}

.bonus-account__text {
  margin-bottom: 15px;
}

.bonus-account p {
  margin-bottom: 10px;
}

.bonus-account__table {
  margin-bottom: 30px;
}

.account__table table {
  width: 100%;
  border-radius: 15px;
  background-color: #323331;
}

.account__table tr:first-child th {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.account__table tr:not(:first-child) {
  font-size: 12px;
  background-color: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #323331;
}

.account__table tr:last-child {
  border-bottom: none;
}

.account__table th,
.account__table td {
  padding: 5px 10px;
  transition: all 0.2s ease;
}

.bonus-account__table td:nth-child(2) {
  white-space: nowrap;
}

.settings-btn {
  text-align: center;
}

.contact-information {
  margin-bottom: 30px;
}

.contact-information__item {
  margin-bottom: 5px;
  display: flex;
  align-items: baseline;
}

.contact-information__title {
  padding-right: 5px;
}

.account__btn-box {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 1200px) {
  .account {
    padding: 50px 0;
  }

  .account__body {
    padding: 40px 15px;
  }

  .account__title {
    margin-bottom: 40px;
  }

  .account__btn-box {
    margin-top: 20px;
  }
}

@media (max-width: 840px) {
  .account__box-container {
    flex: 1 0 100%;
    max-width: 100%;
  }

  .account__box > .account__box-container:nth-child(1) {
    order: 1;
  }

  .account__box > .account__box-container:nth-child(2) {
    order: 3;
  }

  .account__box > .account__box-container:nth-child(3) {
    order: 2;
  }

  .account__box > .account__box-container:nth-child(4) {
    order: 4;
  }
  .account__box > .account__box-container:nth-child(5) {
    order: 6;
  }

  .account__box > .account__box-container:nth-child(6) {
    order: 5;
  }
}

@media (max-width: 460px) {
  .account__table th,
  .account__table td {
    padding: 5px 5px;
  }
}

/* ORDER-DETAILED */

.order-detailed {
  padding: 70px 0;
}

.order-detailed__body {
  padding: 50px 20px;
  border-radius: 30px;
  background: #f5f7f5;
  transition: all 0.3s ease-in-out;
}

.order-detailed__title {
  margin-bottom: 60px;
}

.order-detailed__box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.order-detailed__box-container {
  flex: 1 0 40%;
  max-width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
}

.order-detailed__box-content {
  flex: 1;
  padding: 40px 15px;
  border-radius: 30px;
  background: #fff;
}

.order-detailed__box-title {
  margin-bottom: 20px;
}

.info-detailed__item {
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
}

.info-detailed__title {
  padding-right: 5px;
}

.info-detailed__table {
  margin: 10px 0 15px;
}

.info-detailed__text p:not(:last-child) {
  margin-bottom: 10px;
}

.info-detailed__btn-container {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.info-detailed__btn {
  margin-right: 10px;
}

.info-detailed__post-table {
  margin: 10px 0 0;
}

@media (max-width: 1200px) {
  .order-detailed {
    padding: 50px 0;
  }

  .order-detailed__body {
    padding: 40px 15px;
  }

  .order-detailed__title {
    margin-bottom: 40px;
  }
}

@media (max-width: 840px) {
  .order-detailed__box-container {
    flex: 1 0 100%;
    max-width: 100%;
  }
}

/* HISTORY */

.order-history {
  padding: 70px 0;
}

.order-history__body {
  padding: 50px 20px;
  border-radius: 30px;
  background: #f5f7f5;
  transition: all 0.3s ease-in-out;
}

.order-history__title {
  margin-bottom: 60px;
}

.order-history__sort-container {
  margin-bottom: 20px;
  max-width: 300px;
  margin-left: auto;
}

.order-history__box {
  padding: 40px 15px;
  border-radius: 30px;
  background: #fff;
  transition: all 0.2s ease;
}

.order-history__items {
  border-collapse: collapse;
  border-spacing: 0;
}

.order-history__item:not(:first-child) {
  border-top: 1px solid #d9d9d9;
}

.order-history__item-content.subtitle {
  text-align: center;
}

.order-history__item span {
  display: none;
}
.order-history__item-content {
  padding: 15px 7.5px;
}

.order-history__item-content:nth-child(7) {
  white-space: nowrap;
}

.order-history__item-content a {
  color: inherit;
  text-decoration: underline;
  transition: all 0.2s ease;
}

.order-history__item-content a:hover {
  color: #b0c0b0;
  text-decoration: underline;
}

.order-history__btns .order-history__item-content {
  padding: 0 7.5px 15px;
  text-align: center;
}

.order-history__btn-container {
  margin: 10px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1200px) {
  .order-history {
    padding: 50px 0;
  }

  .order-history__body {
    padding: 40px 15px;
  }

  .order-history__title {
    margin-bottom: 40px;
  }
}

@media (max-width: 840px) {
  .order-history__items,
  .order-history__items tbody,
  .order-history__item,
  .order-history__btns,
  .order-history__item-content {
    display: block;
  }

  .order-history__item:first-child {
    display: none;
  }

  .order-history__item:not(:first-child) {
    border-top: none;
  }

  .order-history__item:not(:nth-child(2)) {
    border-top: 1px solid #d9d9d9;
  }

  .order-history__item,
  .order-history__btns {
    padding: 15px 0;
  }

  .order-history__item-content {
    margin-bottom: 10px;
    padding: 0;
  }

  .order-history__btns {
    padding: 0 0 15px;
  }

  .order-history__btns .order-history__item-content {
    padding: 0;
    text-align: left;
  }

  .order-history__item span {
    display: inline;
  }
}

/* PERSONAL-INFO */

.personal-info {
  padding: 70px 0;
}

.personal-info__body {
  position: relative;
  padding: 50px 20px;
  border-radius: 30px;
  background: #f5f7f5;
  transition: all 0.3s ease-in-out;
}

.personal-info__title {
  margin-bottom: 60px;
}

.personal-info__box {
  margin-bottom: 20px;
  padding: 40px 15px;
  border-radius: 30px;
  background: #fff;
  transition: all 0.2s ease;
}

.personal-info__box:last-child {
  margin-bottom: 0px;
}

.personal-info__box-title {
  margin-bottom: 20px;
}

.personal-info__input {
  padding: 12px 15px;
}

.personal-info__note {
  padding: 10px;
}

.personal-info__top-note {
  padding: 0 10px 10px;
}

.personal-info__box .check-contain {
  margin-bottom: 30px;
}

.personal-info__item-title {
  margin-bottom: 5px;
}

.personal-info__input-items {
  padding: 10px 0 30px;
  margin: -10px;
}

.personal-info__input-item {
  display: flex;
}

.personal-info__input-item input {
  margin: 10px;
  width: calc(50% - 20px);
}

.personal-info__subscription.check-contain span {
  line-height: 1.125;
}

.personal-info__subscription.check-contain {
  padding-top: 4px;
}

@media (max-width: 1200px) {
  .personal-info {
    padding: 50px 0;
  }

  .personal-info__body {
    padding: 40px 15px;
  }

  .personal-info__title {
    margin-bottom: 40px;
  }
}

@media (max-width: 640px) {
  .personal-info__box-item {
    width: 100%;
  }

  .personal-info__input-item {
    flex-wrap: wrap;
  }

  .personal-info__input-item input {
    width: 100%;
  }
}

/* MODAL */

.modal {
  padding: 15px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal__container {
  padding: 30px;
  max-height: 100%;
  max-width: 640px;
  overflow-y: auto;
  border-radius: 30px;
  background-color: #fff;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  transition: all 0.2s ease;
}

.modal__close-btn {
  margin-left: auto;
  margin-bottom: 20px;
  width: 24px;
  height: 20px;
  cursor: pointer;
  position: relative;
}

.modal__close-btn::before,
.modal__close-btn::after {
  content: "";
  background-color: #b0c0b0;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  transition: all 0.2s ease;
}

.modal__close-btn::before {
  transform: rotate(45deg);
  top: 9px;
}

.modal__close-btn::after {
  transform: rotate(-45deg);
  bottom: 9px;
}

.modal__close-btn:hover.modal__close-btn::before,
.modal__close-btn:hover.modal__close-btn::after {
  background-color: rgba(176, 192, 176, 0.7);
}

.modal__product-container {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}

.modal-error__subtitle {
  margin-bottom: 20px;
}

.modal-error__link {
  text-decoration: underline;
  color: inherit;
  transition: all 0.2s ease;
}

.modal-error__link:hover {
  color: #b0c0b0;
  text-decoration: underline;
}

.modal-error__see-more-btn {
  margin: 20px 0;
}

/* modal-registration */

.modal-registration__subtitle {
  margin-bottom: 40px;
  text-align: center;
}

.modal-registration__txt {
  margin-bottom: 20px;
}

.modal-registration__link {
  text-decoration: underline;
  color: inherit;
  transition: all 0.2s ease;
}

.modal-registration__link:hover {
  color: #b0c0b0;
  text-decoration: underline;
}

.modal-registration__input-items {
  margin-bottom: 20px;
}

.modal-registration__input:not(:last-child) {
  margin-bottom: 20px;
}

.modal-registration__btn-container {
  text-align: center;
  margin-bottom: 20px;
}

.modal-registration__links {
  margin-top: 20px;
}

.modal-registration__links .modal-registration__txt:nth-child(2) {
  margin-bottom: 10px;
}

/* sib */

.icon32.loading {
  background-image: url(../images/loading.gif);
  background-size: 32px 32px;
  height: 32px;
  width: 32px;
  display: inline-block;
}
.purchase__checkout-body.final{
	display:none;
}
.warn, .error{
	margin-top:10px;
	text-align:center;
	color:red;
}
.warn{
	display:none;
}
.recipe__txt-content p + .recipe__txt-content p,
.content-section__body p + .content-section__body p{
  margin-top: 20px;
}
.recipe__txt-content a, .content-section__body a{
	text-decoration:underline;
}
.content-section__body a.btn{
	text-decoration:none;
}
.recipe__txt-content a:hover, .content-section__body a:hover,
.recipe__txt-content a.recipe__btn{
	text-decoration:none;
}
.content-section__body ul, .content-section__body ul li,
.recipe__txt-content ul, .recipe__txt-content ul li{
   list-style-type: disc; 
   list-style-position: inside; 
}
.content-section__body ol, .content-section__body ol li,
.recipe__txt-content ol, .recipe__txt-content ol li { 
   list-style-type: decimal; 
   list-style-position: inside; 
}
.content-section__body ul ul, .content-section__body ol ul,
.recipe__txt-content ul ul, .recipe__txt-content ol ul { 
   list-style-type: circle; 
   list-style-position: inside; 
   margin-left: 15px; 
}
.content-section__body ol ol, .content-section__body ul ol,
.recipe__txt-content ol ol, .recipe__txt-content ul ol { 
   list-style-type: lower-latin; 
   list-style-position: inside; 
   margin-left: 15px; 
}
.content-section__body ol li > p, .recipe__txt-content ol li > p{
	display:inline;
}

ul.content-section__list, ul li.content-section__item,
ol.content-section__list, ol li.content-section__item{
  list-style: none;
}

.content-section__title.title{
	word-break: break-word;
}

img.lazyload{
	visibility: hidden;
}

/* sib */
