* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #242424;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

a,
button {
  text-decoration: none;
  outline: 0;
  cursor: pointer;
}

p a {
  color: #3e5cab;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}

p a:hover {
  color: #6962a7;
}

input {
  outline: none;
}

a:active,
a:hover,
a:visited {
  outline: none;
  text-decoration: none;
}

img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style-type: none;
  padding-inline-start: 0;
}

.hidden {
  display: none;
}

.no-wrap {
  white-space: nowrap;
}

.bold {
  font-weight: bold;
}

.header-wrapper {
  display: flex;
  flex-direction: column;
}

.header-top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}

.header-top {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #17141a;
}

.logo-img,
.logo-wrapper {
  width: 150px;
  margin: 0 auto;
}

.flex-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 15px;
}

h1,
h2 {
  text-transform: uppercase;
  line-height: 1.4;
  color: #13187b;
}

h1 {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 15px;
}
@media screen and (max-width: 479.9px) {
  h1 {
    font-size: 19px;
  }
}
h2 {
  font-size: 19px;
  font-weight: 600;
  margin: 20px 0;
  text-align: center;
}

.main-content p {
  margin-bottom: 15px;
  line-height: 1.4;
}

.marked-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}

.marked-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.marked-list li p {
  margin-bottom: 0;
}

.marked-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.marked-list li svg path {
  fill: #1e75c5;
}

.content-img-wrapper {
  width: 100%;
  max-width: 550px;
  margin: 15px auto;
  border-radius: 8px;
  overflow: hidden;
}

.bordered-block {
  padding-left: 10px;
  border-left: 2px solid #1e75c5;
}

.accented-text {
  font-style: italic;
  margin-bottom: 10px !important;
}

.prod-wrapper {
  width: 150px;
  display: block;
  margin: 0 auto 15px;
}

.btn {
  color: white;
  text-transform: uppercase;
  background-color: rgb(255, 0, 0);
  border-radius: 20px;
  text-align: center;
  border: none;
  min-height: 48px;
  width: 100%;
  max-width: 320px;
  padding: 10px 24px;
  display: block;
  align-content: center;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 auto;
  transition: all 0.2s ease-in-out;
}

.comments-title {
  text-align: left;
  padding-bottom: 3px;
  color: #242424;
  border-bottom: 2px solid #ff8100;
  width: fit-content;
}

.comment {
  padding: 15px 0;
  border-bottom: 1px solid #6f6f6f;
}

.comment.answer {
  margin-left: 25px;
}
.comment-live {
  width: 100%;
  max-width: 200px;
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .comment-live {
    max-width: 220px;
  }
}

.comment:last-child {
  border-bottom: none;
}

.comment__top {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 10px;
}

.comment__top-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.comment-name {
  font-weight: bold;
}

.comment-date {
  color: #6f6f6f;
  font-size: 15px;
  line-height: 1;
}

.comment__top-info p {
  margin-bottom: 0;
}

.comment-ava {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.comment .comment-text {
  margin-bottom: 0;
}

.sidebar {
  display: none;
  position: relative;
}

footer {
  padding: 15px;
  background-color: #17141a;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.copy {
  color: white;
  line-height: 1.3;
  text-align: center;
}

.colored-bg {
  background-color: rgb(221 223 241);
  padding: 15px;
  margin-bottom: 15px;
  border: 4px double white;
}

.colored-bg p:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 480px) {
  .logo-img,
  .logo-wrapper {
    width: 170px;
  }

  .prod-wrapper {
    width: 170px;
  }
}

@media screen and (min-width: 768px) {
  .logo-img,
  .logo-wrapper {
    width: 200px;
  }

  .header-bottom {
    font-size: 16px;
  }

  .main-content p,
  .btn {
    font-size: 18px;
  }

  .main-content .comment-date {
    font-size: 17px;
  }

  .main-content p {
    text-align: justify;
  }

  h1 {
    font-size: 25px;
  }

  h2 {
    font-size: 20px;
  }

  .prod-wrapper {
    width: 180px;
  }

  .btn {
    max-width: 340px;
  }

  .main-content {
    width: 100%;
  }

  .rd-promo__sale {
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1;
    color: rgb(255, 0, 0);
  }

  .rd-promo__title {
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 15px;
  }

  .rd-promo__title span {
    color: rgb(255, 0, 0);
    white-space: nowrap;
  }

  .rd-promo__text {
    font-size: 16px;
    margin-top: 20px;
  }

  .rd-promo__button {
    text-transform: uppercase;
    font-size: 16px;
    padding-inline: 30px;
    display: inline-block;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    color: rgb(255, 255, 255);
    background-color: rgb(255, 0, 0);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    padding: 16px 40px;
    transition: 0.2s ease-in-out;
  }

  .rd-promo__button:hover,
  .btn:hover {
    background-color: rgb(168 1 1);
  }

  .ev-sale-tag__label {
    position: absolute;
    top: -8%;
    left: 56%;
    width: 130px;
    padding-left: 10px;
    transform: rotate(45deg);
    transform-origin: left;
    animation: move 3s linear infinite;
  }
  .order--form .ev-sale-tag__label {
    left: 48%;
  }

  .ev-sale-tag__label::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 26px;
    height: 4px;
    background: #524038;
    border-radius: 4px;
    z-index: 2;
  }

  .ev-sale-tag__label::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    z-index: 1;
  }

  .ev-sale-tag__sale {
    display: block;
    width: 100%;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: white;
    background: red;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 15% 100%, 0% 50%);
    padding: 10px 6px 10px 20px;
  }
}

@media screen and (min-width: 920px) {
  .ev-sale-tag__label {
    left: 65%;
  }
}

@media screen and (min-width: 1024px) {
  h1 {
    font-size: 28px;
  }

  .flex-container {
    display: grid;
    grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
    padding: 30px 15px;
    gap: 30px;
  }

  .main-content {
    padding-right: 30px;
  }

  .sidebar {
    display: flex;
    flex-direction: column;
  }

  .rd-promo__product {
    position: relative;
    width: 180px;
    max-width: 100%;
    margin: 0 auto;
  }

  .rd-promo {
    right: 0;
    top: 32px;
    position: sticky;
    flex-direction: column;
    text-align: center;
    padding: 15px 15px;
    justify-content: center;
    align-items: center;
    line-height: 1.4;
    color: #242424;
    border-radius: 16px;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.25);
    background: rgba(210, 230, 255, 1);
    background: linear-gradient(
      0deg,
      rgba(210, 230, 255, 1) 0%,
      rgb(215, 215, 245) 50%,
      rgba(235, 240, 255, 1) 100%
    );

    width: 100%;
  }
}

.order--form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px auto !important;
}

.order__wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-radius: 8px;
  flex-direction: column;
  background: #f7f7f7;
  box-shadow: 0 0 5px #c5c5c5;
  width: 100%;
  padding: 15px 15px 15px;
  max-width: 450px;
}

@media (min-width: 640px) {
  div.order__wrapper {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    max-width: 610px;
    margin: 0 auto;
    padding-bottom: 30px;
    padding-top: 30px;
  }
}

.prod-wrapper--form {
  width: 100%;
  position: relative;
  max-width: 180px;
  left: -5px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  div.order__wrapper {
    flex-direction: row;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
  }

  .prod-wrapper--form {
    max-width: 200px;
  }
}

@media (min-width: 640px) {
  .prod-wrapper--form {
    width: 100%;
    margin: 0;
    max-width: 210px;
  }
}

@media (min-width: 981px) {
  div.order__wrapper {
    justify-content: space-around;
  }

  .prod-wrapper--form {
    max-width: 230px;
  }
}

.order__form {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 310px;
  width: 100%;
  padding: 15px 13px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 5px #ccc;
}

@media screen and (min-width: 340px) {
  .order__form {
    padding: 15px;
  }
}

.product,
.prod__img {
  max-width: 180px;
  width: 100%;
  margin: 0 auto;
}

.prod__img {
  margin-top: 30px;
}

@media (max-width: 639px) {
  .product,
  .prod__img,
  .prod-wrapper--form {
    max-width: 160px;
  }
}

@media (max-width: 479px) {
  .product,
  .prod__img {
    max-width: 150px;
  }
}
@media (min-width: 981px) {
  .product,
  .prod__img {
    max-width: 180px;
  }
}
@media (min-width: 1200px) {
  .red-border {
    right: -17px;
  }
}

.red-border,
.red-border__text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.red-border {
  color: #fff;
  width: 84px;
  height: 84px;
  font-size: 24px;
  position: absolute;
  top: -35px;
  right: 100px;
}

@media screen and (min-width: 981px) {
  .red-border {
    right: 116px;
  }
}
.red-border__text {
  position: relative;
  width: 72px;
  height: 72px;
  background-color: red;
  border-radius: 50%;
}

.red-border::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  box-sizing: border-box;
  width: 100px;
  height: 100px;
  border-bottom: 2px solid red;
  top: -7px;
  right: -7px;
  -webkit-animation: load 2s linear infinite;
  animation: load 2s linear infinite;
}

@keyframes load {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.order__title {
  font-size: 21px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 15px !important;
  line-height: 1.4;
  display: block;
}

.price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
}

@media screen and (min-width: 380px) {
  .price {
    justify-content: space-around;
  }
}

.order__form label {
  display: inline-block;
  width: 100%;
  margin-bottom: 0.5rem;
}

.order__input {
  font-size: 16px;
  max-width: 310px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 16px;
  background-color: #fff;
  border: 1px solid #c5c5c5;
  padding: 10px 10px 10px 20px;
}

.order__button {
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
  background: #ff0000;
  border: none;
  outline: 0;
  cursor: pointer;
  border-radius: 12px;
  padding: 15px;
  max-width: 310px;
  width: 100%;
  transition: all 0.3s ease-in-out;
  animation: 1s pulse infinite alternate ease-in-out;
}

.order__button:hover {
  background-color: rgb(168 1 1);
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}

.price__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.price__line {
  width: 1px;
  height: 40px;
  background: #c5c5c5;
}

.price__title {
  font-size: 16px;
  color: #666;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

@media screen and (min-width: 768px) {
  .price__title {
    font-size: 18px;
  }
}

.price__old {
  font-size: 19px;
  color: #666;
  position: relative;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  height: 33px;
  align-content: center;
}

.price__old::before {
  content: "";
  display: block;
  border-top: 1px solid red;
  height: 1px;
  width: 100%;
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  transform: rotate(-12deg);
}

.price__new {
  font-size: 22px;
  font-weight: 700;
  color: red;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}
.ev-sale-tag__label {
  position: absolute;
  top: -8%;
  left: 56%;
  width: 130px;
  padding-left: 10px;
  transform: rotate(45deg);
  transform-origin: left;
  animation: move 3s linear infinite;
}
.order--form .ev-sale-tag__label {
  left: 48%;
}

.order--form .ev-sale-tag__label::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 26px;
  height: 4px;
  background: #524038;
  border-radius: 4px;
  z-index: 2;
}

.order--form .ev-sale-tag__label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  z-index: 1;
}

.order--form .ev-sale-tag__sale {
  display: block;
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: white;
  background: red;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 15% 100%, 0% 50%);
  padding: 10px 6px 10px 20px;
}

@keyframes move {
  0% {
    transform: rotate(40deg);
  }

  50% {
    transform: rotate(50deg);
  }

  100% {
    transform: rotate(40deg);
  }
}
