.popup-usp {
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  overflow-y: scroll;
}
.popup-usp .popup-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border-radius: 26px;
  width: 75%;
  position: relative;
}
.popup-usp .popup-content .close-btn {
  width: 30px;
  height: 30px;
  border-radius: 25px;
  position: absolute;
  border: 2px solid #000;
  top: 0;
  right: -40px;
  z-index: 1;
  cursor: pointer;
  opacity: 1;
}
.popup-usp .popup-content .close-btn:before, .popup-usp .popup-content .close-btn:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: " ";
  height: 20px;
  width: 2px;
  background-color: white;
}
.popup-usp .popup-content .close-btn:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.popup-usp .popup-content .close-btn:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.popup-usp .popup-content .form-container {
  max-height: 500px;
  overflow: auto;
}
.popup-usp .popup-content .form-container::after {
  content: "";
  position: absolute;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  right: -15px;
  bottom: -15px;
  border-radius: 26px;
  background-image: linear-gradient(223deg, #7d71ed 0%, #540798 100%);
  z-index: -1;
}

@media (min-width: 576px) {
  .popup-usp .popup-content {
    width: 85%;
  }
}
@media (min-width: 992px) {
  .popup-usp .popup-content {
    width: 40%;
  }
}
@media (min-width: 1200px) {
  .popup-usp .popup-content {
    width: 30%;
  }
}