.add-review {
  position: relative;
  max-width: 470px;
  width: 100%;
  margin: auto;
  padding: 40px 50px;
  border-radius: 30px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
}
.add-review__close {
  transition: 0.3s;
  position: absolute;
  top: 14px;
  right: 14px;
  fill: #696969;
  width: 24px;
  height: 24px;
  opacity: 0.5;
  cursor: pointer;
}
.add-review__close:hover {
  opacity: 1;
}
.add-review__title {
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  line-height: 140%;
  text-align: center;
  color: #252831;
}
.add-review__label {
  display: flex;
  width: 100%;
  margin-bottom: 16px;
}
.add-review__label > label {
  display: none !important;
}
.add-review__label__input {
  display: flex;
  width: 100%;
  height: 50px;
  background: #fff;
  padding: 0 20px;
  font-size: 18px;
  line-height: 160%;
  color: #252831;
  font-weight: 400;
  border: 1px solid #c1c1c1;
  border-radius: 10px;
}
.add-review__label__input::placeholder {
  color: #696969;
  font-weight: 300;
}
.add-review__label__input.is-invalid {
  border-color: #f00d1d;
}
.add-review__label__input.is-invalid::placeholder {
  color: #f00d1d;
}
.add-review__label__textarea {
  display: flex;
  width: 100%;
  height: 200px;
  resize: none;
  background: #fff;
  padding: 15px 20px;
  font-size: 18px;
  line-height: 160%;
  color: #252831;
  font-weight: 400;
  border: 1px solid #c1c1c1;
  border-radius: 10px;
}
.add-review__label__textarea::placeholder {
  color: #696969;
  font-weight: 300;
}
.add-review__label__textarea.is-invalid {
  border-color: #f00d1d;
}
.add-review__label__textarea.is-invalid::placeholder {
  color: #f00d1d;
}
.add-review__info {
  font-weight: 300;
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  color: #434354;
  margin-top: 14px;
}
.add-review__info a {
  color: #434354;
  text-decoration: underline;
}
.add-review__info a:hover {
  text-decoration: none;
}
.add-review__button {
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #434354;
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  width: 100%;
  height: 60px;
  margin-top: 30px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
}
.add-review__button:hover {
  background: #252831;
}
.add-review__button.is-disabled {
  pointer-events: none;
  background: rgba(67, 67, 84, 0.6);
}

.add-completed {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  width: 100%;
  margin: auto;
  max-width: 470px;
  padding: 26px 30px 35px;
  text-align: center;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
}
.add-completed__close {
  transition: 0.3s;
  position: absolute;
  top: 24px;
  right: 24px;
  fill: #696969;
  width: 24px;
  height: 24px;
  opacity: 0.5;
  cursor: pointer;
}
.add-completed__close:hover {
  opacity: 1;
}
.add-completed__icon {
  width: 146px;
  height: 146px;
  margin-bottom: 18px;
}
.add-completed__title {
  font-weight: 700;
  font-size: 23px;
  line-height: 160%;
  text-align: center;
  color: #252831;
  margin-bottom: 8px;
}
.add-completed__desc {
  font-weight: 300;
  font-size: 18px;
  line-height: 160%;
  text-align: center;
  color: #252831;
}

.mfp-modal-review.mfp-bg {
  background: rgba(247, 247, 247, 0.5);
  will-change: backdrop-filter, opacity, transition;
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000;
  transform: translate3d(0, 0, 0);
  transform: translateZ(0);
  backdrop-filter: blur(0);
  opacity: 0;
}
.mfp-modal-review.mfp-bg.mfp-ready {
  opacity: 1;
  backdrop-filter: blur(2px);
  background: rgba(34, 39, 52, 0.5);
}

.modal-add-completed.mfp-bg {
  background: rgba(247, 247, 247, 0.5);
  will-change: backdrop-filter, opacity, transition;
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000;
  transform: translate3d(0, 0, 0);
  transform: translateZ(0);
  backdrop-filter: blur(0);
  opacity: 0;
}
.modal-add-completed.mfp-bg.mfp-ready {
  backdrop-filter: blur(2px);
  background: rgba(34, 39, 52, 0.5);
}

@media (max-width:767px) {
  .add-review {
    max-width: 400px;
    padding: 40px 30px 20px;
  }
  .add-review__close {
    top: 14px;
    right: 14px;
  }
  .add-review__title {
    margin-bottom: 25px;
    font-size: 28px;
  }
  .add-review__label__input {
    height: 45px;
    padding: 0 15px;
  }
  .add-review__label__textarea {
    height: 160px;
    padding: 10px 15px;
  }
  .add-review__button {
    font-size: 18px;
    height: 50px;
    margin-top: 20px;
  }
  .add-review__info {
    font-size: 14px;
  }

  .add-completed {
    max-width: 400px;
    padding: 26px 30px 35px;
  }
  .add-completed__close {
    top: 14px;
    right: 14px;
  }
  .add-completed__icon {
    width: 130px;
    height: 130px;
    margin-bottom: 10px;
  }
}
@media (max-width:575px) {
  .add-review {
    max-width: 375px;
    padding: 40px 20px 20px;
  }

  .add-completed {
    max-width: 375px;
    padding: 25px 20px 30px;
  }
  .add-completed__desc {
    font-size: 16px;
    line-height: 150%;
  }
}