/* ------------------banner(service request)---------------------- */
.service-request-banner {
  background-image: url("../images/service-request/banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 176px;
  display: grid;
  place-items: center start;
  margin-bottom: 24px;
}
.banner-heading {
  font-weight: 700;
  font-size: 30px;
  color: #fff;
}
@media (max-width: 768px) {
  .service-request-banner {
    height: 88px;
  }
  .banner-heading {
    font-size: 22px;
  }
}

/* <!------------------------- service request form -----------------------------> */

.card {
  background-color: rgba(243, 243, 243, 0.4);
  border: none;
  border-radius: 0;
  padding: 80px 40px;
}

.card-title {
  font-weight: 500;
  color: #2b2d37;
  font-size: 24px;
  margin-bottom: 8px;
}

.card-subtitle {
  font-weight: 400;
  color: #6b748c;
  font-size: 14px;
  margin-bottom: 48px;
}

.form-label {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #393939;
}
.form-check-label {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #6b748c;
}

.form-control {
  border-radius: 0;
}
.text-field {
  padding-right: 0 !important;
}
.product-dropdown {
  position: relative;
}
.custom-product-dropdown {
  position: relative;
  border: 1px solid #ced4da;
  background-color: white;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  color: #393939;
  font-weight: 500;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-product-arrow {
  font-size: 14px;
}

.custom-product-options {
  display: none;
  position: absolute;
  top: 102%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ced4da;
  z-index: 99;
}

.custom-product-option {
  padding: 10px 16px;
  cursor: pointer;
}

.custom-product-option:hover {
  background-color: #dd1f4d;
  color: white;
}
.form-check-input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease-in-out;
  margin-top: 2px;
}
.input-group-text {
  color: #dd1f4d;
}
.form-check-input:focus {
  box-shadow: none;
  border-color: #ccc;
}

.form-check-input:checked {
  background-color: #dd1f4d;
  border-color: #dd1f4d;
}

.textarea {
  resize: none;
  border-radius: 0;
}
textarea:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: #ced4da !important;
}

.selected,
textarea::placeholder {
  color: #b3b8c6;
  font-weight: 500;
  font-size: 14px;
}
.selected-filled {
  color: #393939 !important;
}
.service-button {
  border-radius: 0 !important;
  padding-left: 80px !important;
  padding-right: 80px !important;
  max-width: 240px;
}
@media (max-width: 578px) {
  .card {
    padding: 40px 20px;
  }
  .input-control,
  .custom-product-dropdown {
    height: 47px !important;
    line-height: 1.5;
  }
}
