.henna-bg{
  width: 100%;
  height: 60vh;
  background-image: url(../img/henna-BG.png);
  background-size: cover;
}

.nail-service-bg{
  width: 100%;
  height: 60vh;
  background-image: url(../img/nail-service-BG.png);
  background-size: cover;
}
.contact-bg{
  width: 100%;
  height: 60vh;
  background-image: url(../img/contact-BG.png);
  background-size: cover;
}
  
.input{
  border: 1px solid #EDEDED;
  color: black;
}
.input:active,
.input:focus
{
  border: 1px solid #FBAB00;
  background-color: #FFFCF4;
  outline: none;
}

.input::placeholder{
  font-size: 14px;
  font-weight: 400;
  line-height: 26.32px;
  letter-spacing: 0.14em;
  text-align: left;
  color: #777777;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.file-upload-box {
  border: 2px dashed #EDEDED;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
}

.file-upload-text {
  font-family: Arial, sans-serif;
  color: #333;
}

.file-upload-text a {
  color: #7e57c2;
  text-decoration: none;
}

.file-upload-text a:hover {
  text-decoration: underline;
}


select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Some browsers will not display the caret when using calc, so we put the fallback first */ 
  background: url(../img/select-down-arrow.png) white no-repeat 98.5% !important; /* !important used for overriding all other customisations */
  background: url(../img/select-down-arrow.png) white no-repeat calc(100% - 10px) !important; /* Better placement regardless of input width */
}
/*For IE*/
select::-ms-expand { display: none; }

.accordion-button:not(.collapsed){
  background-color:#F9F9F9 ;
}

.accordion-button{
  background-color:#F9F9F9 ;
  font-size: 18px;
  font-weight: 500;
  line-height: 23.2px;
  letter-spacing: 0.16em;
  text-align: left;
  color: #898989;
  text-transform: uppercase;
}
.accordion-button:not(.collapsed){
  color: #898989;
}

.accordion-button:focus{
  box-shadow: none;
}

/* Hide the default checkbox */
.customCheckbox {
  display: none;
}

/* Style the custom checkbox */
.custom-checkbox {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  background-color: white;
}

/* The arrow */
.custom-checkbox::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 10px;
  border: solid transparent;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s;
}

/* When the checkbox is checked */
.customCheckbox:checked+.custom-checkbox {
  background-color: #FBAB00;
}

.customCheckbox:checked+.custom-checkbox::after {
  border-color: white;
  opacity: 1;
}


@media (max-width:768px){
  .henna-bg{
    height: 30vh;
  }
  .nail-service-bg{
    height: 30vh;
  }
  .contact-bg-bg{
    height: 30vh;
  }

  .accordion-button{
    background-color:#F9F9F9 ;
    font-size: 12px;
    font-weight: 500;
    line-height: 23.2px;
    letter-spacing: 0.16em;
    text-align: left;
    color: #898989;
  }
  
}