.review-popup {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  position: fixed;
  padding-bottom: 30px;
  overflow-y: scroll;
}

body {
  position: relative;
}
.review-popup-wrapper {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #80808094;
  z-index: 999;
  top: 0;
  left: 0;
}
.reviews-send-btn {
  padding-left: 112px;
  padding-right: 112px;
}

.review-popup__product {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}

.review-popup__rating-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.184px;
  margin-bottom: 12px;
}

.review-popup__body {
  max-width: 633px;
  background-color: white;
  border-radius: 5px;
  margin: 0px auto;
  padding: 20px;
  margin-top: 10%;
  z-index: 999999999;
}

.f_row {
  margin-bottom: 20px;
}

.review-popup__rating-stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  margin-bottom: 30px;
}

.review-popup__rating-stars span {
  display: block;
  width: 24px;
  height: 24px;
  background: url("/assets/img/reviews/reviews-disabled-star.svg") no-repeat;
  cursor: pointer;
}
.review-popup__rating-stars span._active ~ span,
.review-popup__rating-stars span._active {
  background: url("/assets/img/reviews/review_round-star.svg") no-repeat;
}

.review-popup__rating-stars span:hover ~ span,
.review-popup__rating-stars span:hover {
  background: url("/assets/img/reviews/review_round-star.svg") no-repeat;
}

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

.popup-close {
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-top: 5px;
}

.popup-close::after,
.popup-close::before {
  content: "";
  display: block;
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #a1a1a1;
}

.popup-close::after {
  transform: rotateZ(45deg);
}

.popup-close::before {
  transform: rotateZ(-45deg);
}

.f_cols1 {
  margin-bottom: 0;
}

._lock {
  overflow: hidden;
}

@media only screen and (max-width: 633px) {
  .review-popup__body {
    width: 90%;
  }
}

@media only screen and (max-width: 440px) {
  .f_cols1 {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }

  .reviews-send-btn {
    width: 100%;
    padding-left: auto;
    padding-right: auto;
  }
}
