
html {
  font-size: 100%;
}
@media (max-width: 576px) {
  html {
    font-size: 85%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  html {
    font-size: 88%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  html {
    font-size: 90%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  html {
    font-size: 95%;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 100%;
  }
}

.serviceBooking_title {
  width: 100%;
  margin-bottom: 0;
  background-color: black;
  color: white;
  font-size: 1.875rem;
  font-weight: 700;
  font-weight: bold;
  text-transform: uppercase;
  padding: 1.4rem 0;
  text-align: center;
  display: none;
}



.serviceBooking .serviceBooking_form {
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
    width: 60%;
}

@media (max-width: 768px) {
  .serviceBooking .serviceBooking_form {
    width: 90%;
  } 
}
 
.serviceBooking .serviceBooking_form span {
  font-size: 0.75rem;
  color: red;
  padding-bottom: 1.25rem;
}

input,
select,
textarea {
  height: 45px !important;
  border-radius: 2px !important;
  border: 1px solid #bfbfbf !important;
  color: #776363 !important;
  margin-bottom: 0.25rem;
  padding: 0 0.5rem;
  position: relative;
}
select {
  background-image: url("../img/arrwo.png") !important;
  background-position: right !important;
  background-size: contain !important;
}


.form-select:focus {
  border-color: #bfbfbf;
  
  outline: 0;
  box-shadow: none;
}


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

button {
  width: 106px;
  height: 40px;
  border-radius: 20px;
  background-color: black;
  font-size: 0.813rem;
  font-weight: bold;
  color: white;
  text-transform: uppercase;

  background-repeat: no-repeat;
  text-align: start;
    padding: 0 16px;
    border: none;
    position: relative;
    margin-top: 0.5rem;
}

button::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
    background-image: url("../img/arrow-down.png") !important;
  background-position: right !important;
  background-size: 14px !important;
  background-repeat: no-repeat;
}

body.ar {
   direction: rtl;
  text-align: right;
}

body.ar button::before,
body.ar select {

  background-position: left !important;

}

body.ar button::before {
    right: auto;
    left: 16px;
    transform: scale(-1);
    top: auto;
}
