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

svg {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

label {
  display: block;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

::-moz-placeholder {
  color: inherit;
}

::placeholder {
  color: inherit;
}

textarea {
  display: block;
}

input,
textarea,
button {
  font: inherit;
  color: inherit;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
}

select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
  border-radius: 0;
}

ul,
ol {
  list-style-type: none;
}

picture,
img {
  display: inline-block;
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 1.5px solid #333333;
  outline-offset: 0px;
}

html,
body {
  overflow-x: clip;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
@media (prefers-reduced-motion) {
  html {
    scroll-behavior: none;
  }
}

body {
  min-width: 360px;
  -webkit-tap-highlight-color: transparent;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #262626;
  background-color: #ffffff;
}

.payments {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .payments {
    padding-top: 32px;
    gap: 16px;
  }
}
.payments p {
  color: #888;
  text-align: center;
  font-family: "Roboto", "Open Sans", sans-serif;
  font-size: clamp(10px, 1.5625vw, 12px);
  font-weight: 400;
  line-height: 1.3;
}

.payment-provider__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
}
.payment-provider__header p {
  color: #888;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
}

.payment-provider__line {
  height: 1px;
  width: 100%;
  background: #888;
  border-radius: 100vmax;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #111111;
  color: white;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner .cookie-banner-content {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cookie-banner .cookie-banner-text {
  flex: 1;
  font-size: 13px;
  line-height: 20px;
}
.cookie-banner .cookie-banner-text p {
  margin: 0;
  color: white;
}
.cookie-banner .cookie-banner-text a {
  color: #85ccb1;
  text-decoration: underline;
}
.cookie-banner .cookie-banner-text a:hover {
  color: #85a9b3;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-buttons {
    justify-content: flex-end;
    flex-shrink: 0;
  }
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.cookie-btn-accept {
  background-color: #19ae30;
  color: white;
}
.cookie-btn-accept:hover {
  background-color: #158026;
}
.cookie-btn-essential {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-essential:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.cookie-btn-settings {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.cookie-modal-overlay.show {
  opacity: 1;
}

.cookie-modal {
  background-color: white;
  color: #333;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-family: "Roboto", sans-serif;
}
.cookie-modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-header h2 {
  margin: 0;
  font-size: 20px;
  color: #2e3641;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.cookie-modal-close:hover {
  color: #333;
}
.cookie-modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}
.cookie-modal-body p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}
.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
}
.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.cookie-category-title {
  font-weight: 700;
  font-size: 16px;
  color: #2e3641;
}
.cookie-category-desc {
  font-size: 13px;
  line-height: 18px;
  color: #777;
  margin: 0;
}

/* Switch Styles */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: #19ae30;
}
.cookie-switch input:focus + .cookie-slider {
  box-shadow: 0 0 1px #19ae30;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-switch input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.header {
  padding: 8px 16px;
  background: #ffd220;
}
@media (min-width: 768px) {
  .header {
    padding: 16px 32px;
  }
}

.header__container {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  flex-wrap: wrap;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
}
.header__logo img {
  width: 30px;
  min-width: 30px;
  height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.header__logo p {
  color: #001938;
  font-size: clamp(24px, 3.6458333333vw, 28px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.48px;
  text-transform: uppercase;
}

.text-blue {
  color: #3590c9;
}

.text-red {
  color: #fb2c36;
}

.header__text {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.header__text p {
  font-size: clamp(16px, 2.34375vw, 18px);
  font-weight: 700;
  line-height: 1.4;
  width: -moz-fit-content;
  width: fit-content;
}
.header__text img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  max-height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.alert {
  padding: 16px 16px 0px;
}

.alert__text {
  max-width: 1020px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #a8deff;
  background: #def2ff;
}

.main {
  padding: 16px;
}
@media (min-width: 768px) {
  .main {
    padding: 24px 32px;
  }
}

.main__container {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.main__container > * {
  width: 100%;
}
@media (min-width: 1080px) {
  .main__container {
    display: grid;
    grid-template-columns: 1fr 296px;
    gap: 24px;
    align-items: flex-start;
  }
}

.main__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.main__content > * {
  width: 100%;
}

.main__header {
  display: flex;
  flex-direction: column;
}
.main__header h1 {
  font-size: clamp(32px, 4.6875vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}

.stars {
  display: flex;
  align-items: center;
}
.stars img {
  width: 16px;
  height: 15px;
  min-width: 16px;
  max-height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.main__header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.main__header-container > p {
  color: #888;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}
.main__header-container .rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main__header-container .rating p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

.slider {
  width: 100%;
}
@media (min-width: 1080px) {
  .slider {
    max-width: 700px;
  }
}

.swiper-thumbs {
  margin-top: 12px;
}
@media (min-width: 768px) {
  .swiper-thumbs {
    margin-top: 16px;
  }
}
.swiper-thumbs .swiper-slide {
  cursor: pointer;
}

.swiper-slide-thumb-active {
  outline: 3px solid #63bbf2;
  outline-offset: -3px;
}

.swiper-slide {
  width: 100%;
  aspect-ratio: 700/450;
  overflow: hidden;
  border-radius: 4px;
}
@media (min-width: 1080px) {
  .swiper-slide {
    max-width: 700px;
  }
}
.swiper-slide img,
.swiper-slide video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.caption {
  padding: 8px;
  border-radius: 8px;
  background: #3590c9;
  color: #fff;
  text-align: center;
  font-size: clamp(16px, 2.34375vw, 18px);
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .caption {
    padding: 16px;
  }
}

.text-yellow {
  color: #ffd220;
}

.main-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e7e7e7;
}

.main-author-text {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-author-text img {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
}
.main-author-text p {
  color: #888;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}
.main-author-text p strong {
  color: #262626;
}

.main-author-date {
  color: #888;
  text-align: right;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .content {
    gap: 16px;
  }
}
.content > * {
  width: 100%;
}

.h2 {
  font-size: clamp(28px, 4.1666666667vw, 32px);
  font-weight: 700;
  line-height: 1.2;
}

.h3 {
  font-size: clamp(24px, 3.6458333333vw, 28px);
  font-weight: 700;
  line-height: 1.25;
}

.video-container {
  width: 100%;
  height: auto;
}
.video-container video {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 4px;
}

.video-container.product-set-video {
  aspect-ratio: 700/677;
}
.video-container.product-set-video video {
  aspect-ratio: 700/677;
}

.media {
  width: 100%;
  height: auto;
}
.media img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 4px;
}

.highlight {
  padding: 8px 0;
}

.highlight-container {
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  position: relative;
}
@media (min-width: 768px) {
  .highlight-container {
    padding: 16px 24px;
  }
}
.highlight-container::before, .highlight-container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #fff, #3590c9, #fff);
}
.highlight-container::before {
  top: -1px;
  left: 0;
  right: 0;
}
.highlight-container::after {
  bottom: -1px;
  left: 0;
  right: 0;
}

.highlight-container p {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.highlight-container h3 {
  color: #3590c9;
  font-size: clamp(24px, 3.6458333333vw, 28px);
  font-weight: 700;
  line-height: 1.25;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .features {
    gap: 16px;
  }
}

.features__item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 100vmax;
  padding: 4px;
}
@media (min-width: 768px) {
  .features__item {
    padding: 8px;
  }
}
.features__item img {
  width: 80px;
  height: 80px;
  min-width: 80px;
  max-height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.features__item-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.features__item-content h4 {
  font-size: clamp(18px, 2.6041666667vw, 20px);
  font-weight: 700;
  line-height: 1.3;
}

.features__item--yellow {
  background-color: #ffd220;
}

.features__item--blue {
  background-color: #3590c9;
  color: #fff;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0;
}
@media (min-width: 768px) {
  .benefits {
    display: grid;
    grid-template-columns: 166fr 320fr 166fr;
    align-items: stretch;
    gap: 24px;
    padding: 24px 0;
  }
}

.benefits__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .benefits__cards {
    height: 100%;
    justify-content: center;
    gap: 24px;
  }
}
.benefits__cards:first-child {
  order: 2;
}
@media (min-width: 768px) {
  .benefits__cards:first-child {
    order: 1;
  }
}
.benefits__cards:last-child {
  order: 3;
}

.benefits__image {
  order: 1;
  max-width: 320px;
  height: auto;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .benefits__image {
    order: 2;
  }
}
.benefits__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.benefits__card {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #e7e7e7;
  background: #f6f6f6;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .benefits__card {
    gap: 4px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.benefits__card h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.desktop-only {
  display: none;
}
@media (min-width: 768px) {
  .desktop-only {
    display: block;
  }
}

.benefits__card-number {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  border-radius: 50%;
  background: #3590c9;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icons {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-items: stretch;
}
@media (min-width: 768px) {
  .icons {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.icons__item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.icons__item img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.icons__item p {
  color: #333;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 12px;
}
.list li img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.spec {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (min-width: 768px) {
  .spec {
    padding: 16px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    align-items: stretch;
  }
}

.spec__item {
  max-width: 328px;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .spec__item {
    padding: 0 16px;
  }
}
.spec__item img {
  width: 180px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 8px;
}
.spec__item p {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.h4 {
  font-size: clamp(18px, 2.6041666667vw, 20px);
  font-weight: 700;
  line-height: 1.3;
}

.comments__content {
  width: 100%;
  display: column;
  -moz-columns: 1;
       columns: 1;
  gap: 16px;
}
@media (min-width: 490px) {
  .comments__content {
    -moz-columns: 2;
         columns: 2;
  }
}

.comment {
  overflow: hidden;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 8px;
  padding: 16px;
  background: #f6f6f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.comment > * {
  width: 100%;
}
.comment img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.comment__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.comment__content h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}
.comment__content h3 strong {
  font-size: clamp(12px, 1.8229166667vw, 14px);
  font-weight: 600;
  line-height: 1.3;
}
.comment__content h3 span {
  color: #10934b;
  font-size: clamp(10px, 1.5625vw, 12px);
  font-weight: 400;
  line-height: 1.3;
}
.comment__content p {
  color: #4f4f4f;
  font-size: clamp(12px, 1.8229166667vw, 14px);
  font-weight: 400;
  line-height: 1.4;
}

.box {
  border-radius: 8px;
  border: 2px solid #10934b;
  background: #f9fffc;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .box {
    padding: 24px;
  }
}

.box__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
.box__content h3 {
  font-size: clamp(20px, 2.8645833333vw, 24px);
  font-weight: 700;
  line-height: 1.3;
}

.yellow-frame {
  padding: 8px 12px;
  border-radius: 8px;
  background: #ffd220;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.yellow-frame p {
  font-size: clamp(20px, 2.8645833333vw, 22px);
  font-weight: 700;
}
.yellow-frame p:last-child {
  font-size: clamp(18px, 2.6041666667vw, 20px);
}

.text-bold {
  font-weight: 700;
}

.box__text {
  font-size: clamp(16px, 2.34375vw, 18px);
  font-weight: 600;
}

@property --btn-gradient {
  syntax: "<color>";
  inherits: false;
  initial-value: #14bc5f;
}
.btn {
  --btn-gradient: #14bc5f;
  border-radius: 4px;
  border-bottom: 1px solid #10934b;
  background: linear-gradient(180deg, var(--btn-gradient) 0%, #10934b 100%);
  box-shadow: 0 4px 10px 0 rgba(12, 132, 76, 0.5);
  transform-origin: center;
  transform: scale(1);
  will-change: --btn-gradient, transform;
  cursor: pointer;
  transition: --btn-gradient 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.btn:hover {
  --btn-gradient: #10934b;
}
.btn:active {
  transform: scale(0.98);
}

.mobile-only {
  display: block;
}
@media (min-width: 530px) {
  .mobile-only {
    display: none;
  }
}

.btn--shopping {
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media (min-width: 530px) {
  .btn--shopping {
    padding: 16px;
  }
}
.btn--shopping p {
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 0 #10934b;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
@media (min-width: 530px) {
  .btn--shopping p {
    text-align: left;
  }
}
.btn--shopping img {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.icons-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  justify-content: center;
  gap: 4px;
}
@media (min-width: 550px) {
  .icons-2 {
    display: flex;
  }
}
@media (min-width: 768px) {
  .icons-2 {
    gap: 16px;
  }
}

.icons-2__item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  max-width: 240px;
}
@media (min-width: 550px) {
  .icons-2__item {
    width: 240px;
  }
}
@media (min-width: 768px) {
  .icons-2__item {
    gap: 16px;
  }
}
.icons-2__item img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.icons-2__item p {
  color: #333;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.alert-box {
  border-radius: 8px;
  border: 1px solid #fb2c36;
  background: #fff6f7;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.alert-box h3 {
  font-size: 16px;
  text-transform: uppercase;
}

.main__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 450px;
}
@media (min-width: 768px) {
  .main__aside {
    gap: 24px;
  }
}
.main__aside > * {
  width: 100%;
}

.banner {
  padding: 16px 0px;
  border-radius: 8px;
  background: #f6f6f6;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.banner__badge {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.banner__badge p {
  padding: 4px 8px;
  background: #ffd220;
  text-align: right;
  color: #001938;
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
}

.banner__badge-icon {
  padding: 8px 12px 8px 8px;
  border-top-right-radius: 100vmax;
  border-bottom-right-radius: 100vmax;
  background: #001938;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner__badge-icon img {
  width: 28px;
  height: 18px;
  min-width: 28px;
  max-height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.banner__text {
  padding: 8px 10px 0px;
  line-height: 1.4;
}

.banner__image {
  width: 100%;
  display: block;
  margin: 8px 0;
}

.banner__button {
  padding: 0 16px;
}

.btn--banner {
  width: 100%;
  padding: 8px;
}
@media (min-width: 530px) {
  .btn--banner {
    padding: 16px;
  }
}
.btn--banner p {
  color: #fff;
  text-shadow: 1px 1px 0 var(--colors-button-secondary-bg-hover, #10934b);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2px;
}

.aside-rating {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aside-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

.rating-box {
  border-radius: 8px;
  border: 1px solid #e7e7e7;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rating-box__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-number {
  display: flex;
  align-items: flex-end;
}
.rating-number .big {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
}
.rating-number .small {
  color: #d1d1d1;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
}

.rating-box__stars {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rating-box__stars p {
  color: #888;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

.rating-box__item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rating-box__item .rating-box__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.rating-box__bar {
  max-width: 208px;
  flex: 1;
  height: 8px;
  border-radius: 100vmax;
  background: #f6f6f6;
  overflow: hidden;
}

.rating-box__bar-fill {
  height: 100%;
  border-radius: 100vmax;
  background: #ffd220;
  display: block;
}

.rating-box__item:nth-child(1) .rating-box__bar-fill {
  width: 90%;
}
.rating-box__item:nth-child(2) .rating-box__bar-fill {
  width: 7%;
}
.rating-box__item:nth-child(3) .rating-box__bar-fill {
  width: 2%;
}
.rating-box__item:nth-child(4) .rating-box__bar-fill {
  width: 0%;
}
.rating-box__item:nth-child(5) .rating-box__bar-fill {
  width: 1%;
}

.aside-author {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aside-author__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 10px;
  border-radius: 8px;
  background: #f6f6f6;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.aside-author__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.aside-author__header img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
}
.aside-author__header h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}/*# sourceMappingURL=style.css.map */