/* START: Modal slide-in and out */
body.modal-open {
  overflow: hidden;
  height: 50%;
}
.modal-overlay {
  position: fixed;
  top: 1%;
  right: 0;
  width: 545px;
  height: 97%;
  z-index: 9999;
  transform: translateX(100%);
  /* start hidden to the right */
  transition: transform 0.5s ease;
}

.modal-overlay.active {
  transform: translateX(0);
  /* slide in */
}

.modal-overlay.closing {
  transform: translateX(100%);
  /* slide out */
}

/* Optional fade for backdrop */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* END */



/* .modal-overlay {
  position: fixed;
  top: 0;
  right: -26px;
  width: 545px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
} */

.subscribe-box {
  background: #EFEFEF;
  width: 100%;
  height: 100%;
  /* max-width: 500px; */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: auto;
}

.subscribe-box::before,
.subscribe-box::after {
  content: '';
  position: absolute;
  width: 284px;
  height: 284px;
  background: radial-gradient(circle at 50% 50%, rgba(147, 214, 255, 0.396) 0%, rgba(24, 25, 27, 0) 100%);
  background: radial-gradient(circle at 50% 50%, rgba(147, 214, 255, 0.396) 0%, rgba(24, 25, 27, 0) 89%);
  opacity: .4;
  pointer-events: none;

}


.coming-soon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff82;
  padding: 4rem;
}
.coming-soon h3{
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 25px;
  color: #454545;
}

.subscribe-box::before {
  top: 0;
  right: 0;
}

.subscribe-box::after {
  bottom: 114px;
  left: 86px;
}

.subscribe-inner {
  padding: 2rem;
  padding-bottom: 0;
  padding-top: 50px;
}

.subscribe-box h2 {
  font-size: 36px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  text-align: left;
  color: #359bd8;
  line-height: 54px;
  text-shadow: 0px 8px 30px rgba(255, 255, 255, 0.25), 0px 4px 8px rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.subscribe-box h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #454545;
}

.subscribe-box p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #454545;
  padding: 1rem 0;
}

.subscribe-box form {
  background: #F5F5F5;
  padding: 2rem;
}

.subscribe-box form button {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  background: #2D92CE;
  border-radius: 6px;
  line-height: 34px;
}

.subscribe-box form .btn:hover {
  color: #fff;
  background-color: #2D92CE;
}

.subscribe-box form .btn:disabled {
  background-color: #D6D6D6;
  border-color: #D6D6D6;
  color: #A4A4A4;
}

.subscribe-box form .form-control::placeholder {
  font-family: 'Montserrat', sans-serif;
  color: #9A9A9A;
  font-size: 16px;
}

.form-control:focus {
  border: none;
  box-shadow: none;
  background: #E3E3E3;
}

.subscribe-box form label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  vertical-align: middle;
  color: #272727;
}

.subscribe-box form label span {
  font-weight: 600;
  color: #2D92CE;
}

.form-control {
  background: #E3E3E3;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4rem;
  padding-left: 25px;
  /* color: #B1B1B1 */
}
textarea{
  resize: none;
}
.subscribe-box form .form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 15px;
}

.subscribe-box form .form-check-input[type="checkbox"] {
  border-radius: 2px;
  cursor: pointer;
}

.subscribe-box form .form-check-input:checked {
  background-color: #2D92CE;
  border-color: #2D92CE;
}

.subscribe-box form .form-check-input:focus {
  box-shadow: none;
}

.close-btn {
  color: #484848;  
  width: 21px;           
  height: 21px;
  display: inline-block; 
  background: url('../images/icon/closes.svg') no-repeat center center;
  background-size: contain;
  border: none;  
  cursor: pointer;
}

.benefits {
  padding: 2rem;
  /* border-top: 1px solid #BABABA; */
  padding-top: 0;
}

.benefit-item { 
  font-family: 'Montserrat';
  font-weight: 400;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 50px;
}

.benefit-item strong {
  margin-right: 15px;
}

.benefit-item span {
  color: #454545;
  font-weight: 600;
  text-decoration: underline;
}

.d-none {
  display: none;
}


/*thank you meaaage CSS */

.thank-you-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1100;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thank-you-content {
  background: #EFEFEF;
  max-width: 575px;
  width: 90%;
  padding: 30px 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  /* animation: fadeInUp 0.4s ease-in-out; */
  /* height: 44%; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  position: relative;
}
.thank-you-content-bg-layer{
 content: '';
  position: absolute;
  top: -10px;
  left: 18px;
  background-color: #359BD8;
  width: 99%;
  height: 100%;
  z-index: -1;
}
.thank-you-content-bg{
  position: relative;
  width: 100%;  
}
.thank-you-content-bg .tahnk-you-img{
  margin: 30px 0;
}
.thank-you-content-bg::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 253px;
  height: 253px; 
  background: radial-gradient(circle at 50% 50%, rgba(147, 214, 255, 0.396) 0%, rgba(24, 25, 27, 0) 89%);
  opacity: .5;  
}
.thank-you-content-bg::before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 311px;
  height: 311px;  
  background: radial-gradient(circle at 50% 50%, rgba(147, 214, 255, 0.396) 0%, rgba(24, 25, 27, 0) 89%);
  opacity: .5;  
}





.thank-you-modal.closing {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.thank-you-content .text-success{
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  color: #202B3A !important;
}
.thank-you-content .text-success i{
  color: #27C840;
}
.thank-you-content p{
  font-family: 'Montserrat';
  font-weight: 400;  
  font-size: 16px;  
  line-height: 18px;  
  text-align: center;
  color: #202B3A;
  padding-top: 15px;
  position: relative;
  z-index: 1;
}
.thank-you-content p img{
  margin-right: 10px;
  vertical-align: top;
}
#closeThankYou{
  background: #359BD8;
  color: #EFEFEF;
  border: none;
  border-radius: 8px;
  padding: .4rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
  z-index: 1;
  position: relative;
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}













@media (max-width: 575px) {
 
.modal-overlay {  
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.subscribe-box{
  max-width: 100%;
}
.form-control{
  font-size: .8rem;
  line-height: 1.5rem;
}
.subscribe-box form, .benefits{
  padding: 1rem;
}
.subscribe-inner{
  padding: 1rem;
  padding-top: 2rem;
}
.subscribe-box p{
  padding-top: 5px;
  padding-bottom: 0;
}
.subscribe-box h2{
  font-size: 20px;
}
.subscribe-box h6{
  font-size: 14px;
}
.subscribe-box p{
  font-size: 12px;
}
.subscribe-box::before, .subscribe-box::after {
  width: 379px;
  height: 379px;
}
.subscribe-box::before {
  top: -49px;
}
.subscribe-box::after {
  bottom: 0;
  left: 0;
}
.subscribe-box form label{
  font-size: 10px;
}
.subscribe-box form .form-check-input {
  width: 18px;
  height: 18px;
}
.subscribe-box form button{
  font-size: 16px;
  line-height: 24px;
}
.subscribe-box form .form-control::placeholder{
  font-size: 14px;
}

.benefit-item span{
  font-size: 12px;
}


}