/* Existing styles */
.main-cantainar {
  display: flex;
  column-gap: 40px;
}


.iti__flag {
background-position: none !important;
}

body {
  font-family: "Inter" !important;
}

.form-col {
  width: 65%;
}

.summary-col {
  width: 35%;
  height: fit-content;
  position: sticky;
  top: 0;
  margin: 80px 0 0;
  border-radius: 30px;
  padding: 8px;
  background: black;
}

.order-form {
  margin: 70px auto 0;
}
.ant-steps-item-icon {
  background-color: black;
  color: white;
  margin: 0 auto 0;
  border-radius: 50px;
  width: 70px;
  height: 70px;
  align-items: center;
  display: flex;
  justify-content: center;
  font-size: 25px;
}
.ant-steps-item-icon:hover {
  background-color: #ff9c0f;
  color: #fff;
  transition: 0.6s;
}
.step-bar {
  display: flex;
  justify-content: center;
  column-gap: 70px;
}
.step-btn {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  box-shadow: none;
}
.step-btn:hover {
  background: transparent;
  border: 0;
  padding: 0;
}
.step-btn:focus {
  background: transparent;
  border: 0;
  padding: 0;
}
.f {
  color: #fff !important;
}

.step-item-title h5 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  margin: 15px 0 0;
  letter-spacing: 1px;
  color: #000;
}
.steps-title h3 {
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 600 !important;
  letter-spacing: 1px;
  border-bottom: 3px solid #003366;
  padding: 0 0 14px;
}

h4.summary-title {
  text-align: center;
  margin: 20px 0 10px;
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  padding: 0 0 15px;
  color: #fff;
  background: #ff8508 !important;
  padding: 20px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  position: relative;
  top: -20px;
  border-bottom: 3px dotted #e1e2e4;
}

label.labels {
  font-size: 16px;
  font-weight: 500;
  line-height: 35px;
}

.order_summary_txt {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  font-family: Montserrat, sans-serif;
}
.label-field {
  margin: 0 0 20px;
}
label {
  font-weight: 400;
}
.medium-width-input,
.medium-width-selectbox {
  width: 100%;
  padding: 8px;
  border-radius: 7px;
  font-size: 15px;
}
.medium-width-input:focus {
  border: 1px solid #000;
}

.custom-file-input {
  display: none;
}

.custom-file-label {
  color: #000;
  background-color: #ffcc00;
  padding: 13px 21px;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 16px;
}
.order_summary_txt_value {
  color: white !important;
}

.upload-file {
  border: 2px dotted #000;
  padding: 40px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 5px;
}
.upload-img {
  width: 8%;
}
.upload-file-content {
  font-size: 13px;
  margin-bottom: 10px !important;
  font-weight: 500 !important;
}
.upload-btn-content {
  font-size: 15px;
  font-weight: 500;
}
.pre-btn,
.next-btn {
  background-color: black;
  border: 0;
  padding: 10px 65px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 17px;
  border-radius: 3px;
  color: #fff;
}

.pre-next-btns {
  display: flex;
  column-gap: 10px;
}

.next-btn:hover {
  background-color: #ff7708 !important;
  color: white !important;
  transition: .6s;
}

.pre-btn:hover {
  background-color: #ff7708 !important;
  color: white !important;
  transition: .6s;
}

.pre-btn:focus,
.next-btn:focus {
  background-color: #ffcc00;
  color: #000;
}

.iti {
  width: 100%;
}
.iti__selected-dial-code {
  display: none; /* Hide the country code */
}

.form-section {
  display: none;
}
.form-section.active {
  display: block;
}

.ant-steps-item-icon.active {
  background-color: #ff9c0f !important;
  color: #fff;
}

/* Hide the default radio button */
input[type="radio"] {
  position: absolute;
  opacity: 0;
}

/* Custom radio button */
input[type="radio"] + label {
  position: relative;
  padding: 0 25px;
  cursor: pointer;
}

input[type="radio"] + label::before,
input[type="radio"]:checked + label::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

input[type="radio"] + label::before {
  width: 15px;
  height: 15px;
  border: 2px solid #005113;
}

input[type="radio"]:checked + label::after {
  width: 8px;
  height: 8px;
  background-color: #005113;
  left: 5px;
}

.row {
  display: flex;
  justify-content: space-between;
  padding: 5px 15px;
}

.badge-card-row {
  padding: 20px;
}

.border-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 15px 15px;
  border-bottom: 1px solid #fff;
}

/* media query */

@media only screen and (max-width: 768px) {
  .main-cantainar {
    display: block;
  }
  .summary-col {
    width: 70%;
    margin: 25px auto 0;
  }
  .form-col {
    width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  .text-wrappeng {
    font-size: 13px !important;
  }
  
  .pre-btn, .next-btn {
      
    margin: 3px !important;
    width: 100% !important;
  }
  

  .main-cantainar {
    display: block;
  }
  .form-col {
    width: 100%;
  }
  .summary-col {
    width: 100%;
    border-radius: 30px;
    margin: 25px 0 0;
    padding: 10px;
  }
  .row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
  }
  .order_summary_txt {
    font-size: 15px;
    font-weight: 500;
  }
  .step-bar {
    display: block;
  }

  button.step-btn {
    padding: 13px;
    margin: auto;
    display: flex;
  }

  .step-item-title h5 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 15px 0 0;
    letter-spacing: 1px;
  }

  .steps-title h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 400 !important;
    letter-spacing: 1px;
    border-top: 3px solid #82ba59;
    border-bottom: 3px solid #82ba59;
    padding: 30px 0;
  }
  .order-form {
    margin: 15px auto 0;
  }
}

/*Additional Notes */

span.txtnotehig {
  font-size: 12px;
  font-weight: 600;
  position: relative;
  top: -10px;
  text-transform: capitalize;
  color: red;
}

/* Service selection grid and boxes */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.service-box {
  border: 2px solid #000;
  border-radius: 10px;
  padding: 18px;
  background: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  transition: all .25s ease;
  text-align: left;
}
.service-box:hover {
  background: #ffefdb;
  border-color: #ff9c0f;
  transform: translateY(-2px);
}
.service-title {
  font-weight: 700;
  font-size: 16px;
  color: #000;
  text-transform: capitalize;
}
.service-desc {
  font-size: 13px;
  color: #333;
}

@media only screen and (max-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 480px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}



.service-box.active {
  background: #ffefdb;
  border-color: #ff9c0f;
  transform: translateY(-2px);
}


span.badge-cus-orng {
    background: orange;
    padding: 3px 5px 2px 5px;
    border-radius: 20px;
    font-size: 11px;
}

span.cpndisct {
    background: orange;
    padding: 2px 15px 2px 15px;
    border-bottom-right-radius: 34px;
    font-size: 15px;
    border: 2px dotted #ffffff9c;
    border-bottom-left-radius: 34px;
    font-weight: 600;
    border-top-right-radius: 34px;
}