@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
  background: #f5f5f5;
}

.thank-you-popup .fade.in {
  display: flex !important;
  background: rgba(0, 0, 0, 0.5);
}
.thank-you-popup .success-icon {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px dashed rgba(53, 183, 243, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.thank-you-popup .success-icon img {
  max-width: 42px;
  margin: auto;
  transform: translateY(2px);
}
.thank-you-popup .thankyou-modal-body {
  padding: 70px 30px;
  position: relative;
}
.thank-you-popup .thankyou-modal-body .popup-close-btn {
  border: none;
  outline: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
}
.thank-you-popup .thankyou-modal-body h3 {
  color: #111;
  text-align: center;
  font-family: Inter;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 5px;
}
.thank-you-popup .thankyou-modal-body p {
  color: #333;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 20px;
}
.thank-you-popup .thankyou-modal-body p.mb-0 {
  margin-bottom: 0;
}
.thank-you-popup .thankyou-modal-body p span {
  font-size: 15px;
  line-height: 120%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thank-you-popup .thankyou-modal-body .icon-btns {
  margin: 0px -30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: rgba(0, 0, 0, 0.1);
  margin-top: 12px;
}
.thank-you-popup .thankyou-modal-body .icon-btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 30%;
  height: 60px;
  text-decoration: none;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  color: #333;
  font-family: Inter;
  font-size: 15px;
  font-weight: 500;
  line-height: 240%;
}
.thank-you-popup .thankyou-modal-body .icon-btns a:nth-child(2) {
  width: 40%;
}
.thank-you-popup .thankyou-modal-body .icon-btns a:nth-last-child(1) {
  border: none;
}
.thank-you-popup .thankyou-modal-body .popup-btns {
  padding: 40px 30px 0px 30px;
  margin: 0px -30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.thank-you-popup .thankyou-modal-body .popup-btns .btn-action {
  border-radius: 6px;
  background: #35B7F3;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48%;
  color: #FFF;
  font-family: Inter;
  font-size: 15px;
  font-weight: 700;
  line-height: 240%;
}
.thank-you-popup .modal-dialog {
  max-width: 540px;
  width: 100%;
  padding: 0px 10px;
  margin: auto;
}
.thank-you-popup .modal-content {
    max-width: 100%;
  text-align: center;
  padding: 0;
  border-radius: 8px;
  box-shadow: none;
  border: none;
  position: relative;
}

.thank-you-popup .form-control {
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: none;
    color: #727272;
    font-size: 14px;
    font-weight: 400;
    height: auto;
    padding: 13px 15px;
}

.thank-you-popup .mt-5 {
    margin-top: 50px;
}

.thank-you-popup label {
    font-weight: normal;
}

.thank-you-popup .popup-btns a {
    text-decoration: none;
}
@media only screen and (max-width: 480px) {
  .thank-you-popup .thankyou-modal-body {
    padding: 40px 30px;
  }
  .thank-you-popup .thankyou-modal-body p {
    margin-bottom: 15px;
  }
  .thank-you-popup .thankyou-modal-body .icon-btns a {
    width: 30% !important;
    flex-direction: column;
    height: 70px;
    gap: 7px;
  }
  .thank-you-popup .thankyou-modal-body .icon-btns a:nth-child(2) {
    width: 40% !important;
  }
  .thank-you-popup .thankyou-modal-body .icon-btns a span {
    font-size: 14px;
    line-height: 100%;
  }
  .thank-you-popup .thankyou-modal-body .popup-btns {
    padding: 20px 15px 0px 15px;
  }
  .thank-you-popup .thankyou-modal-body .popup-btns .btn-action {
    font-size: 14px;
  }
}