.mb-1 {
  margin-bottom: 10px !important;
}

.mb-2 {
  margin-bottom: 20px !important;
}

.mb-3 {
  margin-bottom: 30px !important;
}

.mb-4 {
  margin-bottom: 40px !important;
}

.mb-5 {
  margin-bottom: 50px !important;
}

/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  3. Allow percentage-based heights in the application
*/
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  6. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/*
  7. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
}

/*
  8. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/*
  9. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

html {
  font-family: "Inter", sans-serif;
  color: #474747;
  line-height: 1.2;
}

p {
  font-size: 15px;
  line-height: 20px;
  margin: 20px 0px;
}

.heading1 {
  font-size: 30px;
  margin: 10px 0px;
}

.heading2 {
  font-size: 25px;
  margin: 10px 0px;
}

.heading3 {
  font-size: 20px;
  margin: 10px 0px;
}

.heading4 {
  font-size: 18px;
  margin: 10px 0px;
}

.heading5 {
  font-size: 15px;
  margin: 20px 0px;
}

.heading6 {
  font-size: 17px;
  margin: 20px 0px;
}

p.normal {
  font-size: 16px;
  line-height: 1.6;
  margin: 20px 0px;
}
@media (min-width: 768px) {
  p.normal {
    font-size: 16px;
    line-height: 1.8;
  }
}
@media (min-width: 992px) {
  p.normal {
    font-size: 17px;
  }
}
@media (min-width: 1200px) {
  p.normal {
    font-size: 18px;
  }
}

p.medium {
  font-size: 14px;
  line-height: 16.8px;
  margin: 20px 0px;
}

p.small {
  font-size: 12px;
  line-height: 14.4px;
  margin: 20px 0px;
}

.bold {
  font-weight: 600;
}

.light-grey {
  color: #9a9a9a;
}

.green {
  color: #4dba57;
}

.red {
  color: #ff0f00;
}

.blue {
  color: #337aad;
}

.text-align--left {
  text-align: left;
}
.text-align--center {
  text-align: center;
}
.text-align--right {
  text-align: right;
}

.main-title {
  text-align: center;
}
@media (min-width: 768px) {
  .main-title {
    text-align: left;
  }
}

.available-packs p {
  text-align: center;
  font-weight: 700;
  color: #821a6f;
  margin: 20px 0px;
}

.comments__header {
  position: relative;
  padding: 40px 0;
  background: #f2f9f8;
}
.comments__header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  width: 100%;
  height: 3px;
  background-color: #821a6f;
}
.comments__header p {
  position: relative;
  display: inline;
  padding: 0 20px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 37px;
  color: #821a6f;
  z-index: 10;
  background: #f2f9f8;
}
.comments #commentPushBlock {
  padding: 20px 0px 0px 0px;
}
.comments #comments-container {
  padding: 0px 0px 20px 0px;
}
.comments__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .comments__content {
    width: 100%;
  }
}
.comments__content .comment {
  display: flex;
  flex-direction: column;
  justify-items: flex-end;
  width: 100%;
  gap: 20px;
}
.comments__content .comment__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .comments__content .comment__content {
    align-items: flex-start;
    justify-content: unset;
    flex-direction: row;
  }
}
.comments__content .comment__content .imageMask {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #821a6f;
}
.comments__content .comment__content .imageMask img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.comments__content .comment__content__text {
  text-align: center;
}
@media (min-width: 768px) {
  .comments__content .comment__content__text {
    text-align: left;
  }
}
.comments__content .comment__content__text p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 15px;
  line-height: 18px;
}
.comments__content .comment__content__text img {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .comments__content .comment__content__text img {
    margin: 0;
  }
}
.comments__content .comment__content__text .author {
  font-weight: 700;
  text-transform: uppercase;
  color: #474747;
}
.comments__content .comment__content__text .date {
  margin: 5px 0;
  font-weight: 600;
  color: #9a9a9a;
}
.comments__content .comment__content__text .text {
  font-weight: 400;
  color: #474747;
}
.comments__content .comment__socials {
  display: flex;
  align-items: center;
  margin-left: auto;
  border-top: 1px solid #3e3e3e;
  padding-left: 30px;
  gap: 20px;
}
.comments__content .comment__socials a {
  color: black;
  text-decoration: none;
}
.comments__content .comment__socials p {
  margin: 10px 0px;
}
.comments__content .comment__socials .like,
.comments__content .comment__socials .dislike {
  display: flex;
  gap: 5px;
}
.comments__content .comment__socials .like p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 15px;
  color: #44ad71;
}
.comments__content .comment__socials .dislike p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 15px;
  color: #cf2400;
}
.comments__content .comment__socials .answer p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 15px;
}
.comments__content .comment--answer {
  position: relative;
}
@media (min-width: 768px) {
  .comments__content .comment--answer {
    padding-left: 60px;
  }
}
.comments__content .comment--answer::before {
  content: url("../img/icons/answerArrow.svg");
  position: absolute;
  top: 40px;
  left: calc(50% - 85px);
  width: 40px;
  height: 40px;
  transform: translate(0%, -50%);
}
@media (min-width: 768px) {
  .comments__content .comment--answer::before {
    left: 10px;
  }
}
.comments__content .comment--answer .imageMask {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #337aad;
}
.comments__content .comment--answer .imageMask img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.comments__container {
  padding: 0 5px;
}

.form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  margin: 20px 0px;
  padding: 20px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  border: 10px solid #821a6f;
  background-color: #c4c4c4;
  border-radius: 25px;
}
@media (min-width: 768px) {
  .form {
    flex-direction: row;
  }
}
.form__left {
  width: 100%;
}
@media (min-width: 768px) {
  .form__left {
    width: 50%;
  }
}
.form__left img {
  width: 100%;
  margin: 0 auto;
}
.form__right {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .form__right {
    width: 50%;
  }
}
.form__right img {
  margin-bottom: 20px;
}
.form__right p {
  margin: 0;
}
.form__right .old-price {
  font-weight: 700;
  font-size: 23px;
  line-height: 27px;
  text-decoration: line-through;
}
@media (min-width: 768px) {
  .form__right .old-price {
    font-size: 25px;
    line-height: 30px;
  }
}
.form__right .new-price {
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
}
@media (min-width: 768px) {
  .form__right .new-price {
    font-size: 35px;
    line-height: 42px;
  }
}
.form__right form {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.form__right form input {
  width: 100%;
  margin: 10px 0px;
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  border: none;
}
.form__right form button {
  padding: 10px 40px;
  margin: 20px 0px;
  background-color: #c23024;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  border: none;
  color: white;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
  cursor: pointer;
}

.form-comment {
  font-family: "Inter", sans-serif;
  margin: 40px auto;
  width: 100%;
}
.form-comment__top {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .form-comment__top {
    flex-direction: row;
    gap: 20px;
  }
}
.form-comment__top input {
  width: 100%;
  background: #f5f5f5;
  border: 1px solid #9a9da1;
  padding: 10px 20px;
}
@media (min-width: 768px) {
  .form-comment__top input {
    width: auto;
  }
}
.form-comment__top input::-moz-placeholder {
  color: #9a9da1;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
}
.form-comment__top input:-ms-input-placeholder {
  color: #9a9da1;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
}
.form-comment__top input::placeholder {
  color: #9a9da1;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
}
.form-comment__top #formAvatar {
  display: none;
}
.form-comment__top #formImage {
  display: none;
}
.form-comment__top .file-label {
  width: 100%;
  padding: 14px 12px;
  font-size: 10px;
  line-height: 16px;
  background: #ffffff;
  border: 1px solid #9a9da1;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
}
@media (min-width: 768px) {
  .form-comment__top .file-label {
    width: auto;
    font-size: 15px;
    line-height: 24px;
    padding: 10px 20px;
    text-align: left;
  }
}
.form-comment__textarea {
  width: 100%;
}
.form-comment__textarea textarea {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  background: #f5f5f5;
  border: 1px solid #9a9da1;
  padding: 10px 20px;
}
.form-comment__textarea textarea::-moz-placeholder {
  color: #9a9da1;
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
}
.form-comment__textarea textarea:-ms-input-placeholder {
  color: #9a9da1;
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
}
.form-comment__textarea textarea::placeholder {
  color: #9a9da1;
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
}
.form-comment__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .form-comment__footer {
    flex-direction: row;
  }
}
.form-comment__footer p {
  font-weight: 700;
  font-size: 9.2884px;
  line-height: 150%;
  text-transform: uppercase;
  color: #9a9da1;
  text-align: center;
}
@media (min-width: 768px) {
  .form-comment__footer p {
    text-align: left;
  }
}
.form-comment__footer button {
  padding: 10px 20px;
  background: #3e3e3e;
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  border: none;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
}

.form-comments__container {
  width: 95%;
  margin: 0 auto;
}

.modal-pack {
  width: 80%;
  position: fixed;
  display: flex;
  align-items: center;
  gap: 10px;
  right: 50%;
  top: 10px;
  z-index: 10;
  transform: translateX(50%);
  border-radius: 20px;
  box-shadow: 2px 2px 8px 0px rgb(66, 68, 90);
  padding: 10px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .modal-pack {
    width: 320px;
    right: 10px;
    top: 10px;
    transform: translateX(0%);
  }
}
.modal-pack a {
  text-decoration: none;
  color: black;
}
.modal-pack__left {
  width: 30%;
}
.modal-pack__right {
  width: 70%;
  padding-top: 10px;
}
.modal-pack__right a {
  display: flex;
  flex-direction: column;
}
.modal-pack__right .info {
  font-size: 14px;
  line-height: 16px;
  margin: 5px 0px;
}
.modal-pack__right .info .highlight {
  color: #44ad71;
  font-weight: 700;
}
.modal-pack__right .time-ago {
  font-size: 12px;
  line-height: 14px;
  color: #9a9a9a;
  margin: 5px 0px;
}
.modal-pack .close {
  position: absolute;
  top: 5px;
  right: 20px;
  z-index: 10;
  cursor: pointer;
}

.container {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    padding: 0 16px;
    margin: 0 auto;
  }
}/*# sourceMappingURL=main.css.map */