body {
  font-family: "Work Sans", sans-serif;
}

.certifications p {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -2%;
}

.images {
  width: 114.04px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.final-popup {
  height: 88vh;
}
.final-popup .modal-dialog {
	width: 590px;
	height: 420px;
}

#img1 {
  width: 46.76px;
  height: 52.96px;
}
#img2 {
  width: 39.2px;
  height: 54.59px;
}

/* Modal base styling */
.modal {
  border-radius: 8px;
  padding: 0 40px;
  width: 338px;
  margin: 0;
}

/* Step-specific modal heights */
.step-1 .modal {
  height: 487px; /* Height for Step 1 */
}

.step-2 .modal {
  height: 487px; /* Height for Step 2 */
}

.step-3 .modal {
  height: 487px; /* Height for Step 3 */
}


.step {
  display: none;
}

.step.active {
  display: block;
}

.pricing-step-content h2 {
  font-size: 24px;
  font-weight: 600;
}
/* .pricingPage {
  margin-top: 120px;
} */
.pricing-step-content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.5px;
  text-align: left;
  color: #00000099;
}


/* Input group styling its available in bookdemo*/

.input-group img {
  margin-right: 10px; /* Space between image and input */
  width: 24px; /* Adjust width as needed */
  margin-left: 13px;
  height: 24px; /* Adjust height as needed */
  /* margin-left: 8px; */
}

.input-group input {
  flex: 1; /* Make input field take up remaining space */
  border: none;
  outline: none;
  margin: 0; /* Remove margin if not needed */
  border-radius: 5px;
  font-size: 16px;
  background-color: #f9f9f9; /* White background for input fields */
}
/* Prevent background change on input focus */
.input-group input[type="text"]:focus,
.input-group input[type="email"]:focus {
  background-color: #fafbfe; /* Keep background transparent */
  outline: none; /* Remove default outline */
}


/* Button styling */


#continue-to-2 {
  height: 50px;
  color: #ffffff;
  border: 1px solid #065ad8;
  border-radius: 8px;
  background-color: #065ad8;
  margin-top: 10px;
}



button#backToStep1,
button#backToStep2 {
  background-color: transparent;
  color: #007bff;
  border: 1px solid #007bff;
}

/* Cloud provider checkbox styling */


.cloud-provider-checkbox input {
  display: none;
}

/* .cloud-provider-checkbox input:checked + .label-content {
  border-color: #1890ff;
} */

.cloud-provider-checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  border: 2px solid red;
  z-index: -1;
}

.cloud-provider-checkbox.highlighted {
  background-color: #e6f7ff;
  border-color: #1890ff;
}

.cloud-provider-checkbox img {
  width: 27.562px;
}

.label-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: background-color 0.3s ease;
}

.inside-lable-content {
  display: flex;
}

.checkbox-text {
  font-size: 16px;
  font-weight: 400;
  margin-left: 10px;
  color: #808080;
  line-height: 20px;
}

/* Custom checkbox styling */
.custom-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #1890ff; /* Blue border */
  position: relative;
  margin-right: 10px;
  border-radius: 50%; /* Makes the checkbox circular */
  background-color: transparent; /* Transparent when not checked */
  display: inline-block;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Empty checkbox (before checked) */
.custom-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #1890ff; /* Blue border */
  position: relative;
  margin-right: 10px;
  border-radius: 3px; /* Slight rounding for a box, adjust if needed */
  background-color: transparent; /* Transparent when not checked */
  display: inline-block;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.certify-content {
  display: none;
}

/* Empty checkbox (before checked) */
.custom-checkbox::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 3px; /* Keep it square, not rounded */
  transition: background-color 0.3s ease;
}

/* Checked state: fully blue background and large white tick */
input:checked + .label-content .custom-checkbox {
  background-color: #1890ff; /* Blue background */
  border-color: #1890ff; /* Full blue border */
}

input:checked + .label-content .custom-checkbox::after {
  content: '\2713'; /* Unicode for checkmark */
  font-size: 16px;  /* Large tick mark */
  color: white;     /* White color for the tick */
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center; /* Center the tick */
}

/* Optional: hide the default checkbox */
.custom-checkbox-input {
  display: none;
}

/* Label content for spacing */
.label-content {
  display: inline-flex;
  align-items: center;
}



/* Radio button styling */
.radio-group {
  margin-bottom: 12px;
}

.radio-group label {
  display: flex;
  align-items: center;
  border: 1px solid #0000001a;
  border-radius: 6px;
  padding: 8px 16px 8px 16px;
  justify-content: center;
  margin-bottom: 10px;
  height: 30px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.radio-group input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-group input:checked + label {
  border-color: #1890ff;
  background-color: #e6f7ff;
}

.radio-text {
  font-size: 16px;
  font-weight: 400;
  color: #808080;
}

.thank-you-content {
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.thank-you-content img {
  width: 105px;
  height: 116.75px;
  margin-bottom: 20px;
}

.thank-you-content h2 {
  font-size: 20px;
  color: #000000;
  line-height: 26px;
  letter-spacing: -2%;
}

.thank-you-content p {
  font-size: 16px;
  color: #00000099;
  line-height: 26px;
  letter-spacing: -2%;
}

.error-message {
  color: red;
  font-size: 14px;
  margin-top: 5px;
}

/* country selector styling */

.select-box {
  height: 45px;
  display: flex;
  align-items: center;
  border: 1px solid #ddd; /* Border around input group */
  border-radius: 5px;
  margin-right: 12px;
}

.cc {
  margin-left: 5px;
}
.select-box input {
  min-width: 23rem;
  padding: 1rem 0.6rem;
  font-size: 1.1rem;
  border: 0.1rem solid transparent;
  outline: none;
}

input[type="tel"] {
  border-radius: 0 0.5rem 0.5rem 0;
}

.selected-option {
  background-color: #eee;
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.selected-option div {
  position: relative;
  background-color: #f9f9f9;
  padding: 0 2.8rem 0 0.5rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: space-around;
  padding-left: 20px;
  height: 45px;
}

.select-box .options {
  background-color: #fafbfe;
  border-radius: 0.5rem;
  display: none;
}

.select-box .options.active {
  display: block;
  border: 1px solid #ddd;
}

.select-box .options::before {
  position: absolute;
  left: 1rem;
  top: -1.2rem;
  width: 0;
  height: 0;
  border: 0.6rem solid transparent;
}

input.search-box {
  color: #000000;
  border-radius: 0.5rem 0.5rem 0 0;
  border: 1px solid #ddd;
}

.pricingPage{
  height: 88vh;
}
@media (max-width: 768px) {
  .pricingPage {
    height: 111vh !important;
}

}


  /* Button full width on smaller screens */

  .input-group {
    width: 100%;
    margin-bottom: 15px;
    flex-direction: row;
  }

  .input-group img {
    width: 22px;
    height: 22px;
  }

  .thank-you-content img {
    width: 105px;
    height: 116.75px;
    margin-bottom: 10px;
  }

.selected-option{
  margin-top: 0;
}




/* Mobile view (max-width: 480px) */
@media (max-width: 768px) {
  /* .pricing-page {
    padding: 0 10px;
  } */


  .pricing-step-content h2 {
    font-size: 20px;
  }

  .pricing-step-content p {
    font-size: 13px;
  }



  .input-group input {
    width: 100%;
    margin-top: 5px;
    font-size: 14px;
  }


  .thank-you-content h2 {
    font-size: 18px;
  }

  .thank-you-content p {
    font-size: 14px;
    line-height: 22px;
  }


}
/* General hover button styling for all devices */


/* change order to the mobile screen */
@media (max-width: 768px) {
  .right-content {
    order: 1;
  }
  .pricing-head {
    order: -1; 
  }
  .certifications {
    order: 3;
  }
  .content-left {
    width: 100%;
  }
  .certifications {
    display: none;
  }
  .certify-content {
    display: block;
    margin-bottom: 70px;
  }

}


/* Change order to tablet screen */

@media (min-width: 600px) and (max-width: 1023px) {
  /* Add your styles for tablet view here */
  /* .pricingPage {
    margin-top: 120px;
  } */
  .pricingPage{
    margin-top: 60px;
  }
  .certifications {
    display: none;
  }
  .certify-content {
    display: block;
  }
  .pricing-head {
    order: -1;
  }
  .left-section {
    order: 1; 
  }
  .content-left {
    width: 100%;
  }
}.
