/* 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;
}

.float-label.form-group {
  position: relative;
}

.float-label input {
  position: relative;
  transition: all .2s ease-in-out;
}

.float-label label {
  position: absolute;
  top: 16px;
  left: 12px;
  text-align: left;
  width: 90%;
  padding: 0 5px;
  height: 25px;
  line-height: 14px;
  font-size: 14px;
  font-weight: 400;
  background: #fff;
  color: #000;
  margin: 0px auto;
  cursor: text;
  transition: all .15s ease-in-out;
}

.float-label input:focus, .float-label textarea:focus {
  border: 2px solid #007df8;
  box-shadow: none;
  outline: 0;
}
 /* Code changed start on 12-02-2024 */
.float-label input:focus+label, .float-label textarea:focus+label {
  top: -8px;
  color: #007df8;
  font-weight: 500;
  font-size: 13px;
  width: auto;
}
 
.float-label input:focus+span+label, .float-label textarea:focus+span+label {
  top: -8px;
  color: #007df8;
  font-weight: 500;
  font-size: 13px;
  width: auto;
}
.float-label input:valid+label, .float-label textarea:valid+label {
  top: -8px;
  color: #000;
  font-weight: 500;
  font-size: 13px;
  width: auto;
}
.float-label input:valid+span+label, .float-label textarea:valid+span+label {
  top: -8px;
  color: #000;
  font-weight: 500;
  font-size: 13px;
  width: auto;
}
.form-group span.error {
  color: #f00;
  font-size: 11px;
  font-weight: 600;
  display: block;
}
/* Code changed end on 12-02-2024 */
.zip-form {
  display: flex;
  width: 100%;
  align-items: center;
  max-width: 460px;
  margin-top: 20px;
}

.zip-form .form-control {
  height: 70px;
  padding: 20px;
  color: #656565;
  border: none;
  background-color: #ffffff;
  border-radius: 5px;
  transition: .5s ease all;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  width: 55%;
}

.zip-form .default-btn {
  width: 45%;
  min-width: 150px;
  height: 70px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.zip-form label.error {
  display: none !important;
}

.form-control.error { 
  border: 2px solid #ff0000;
} 
.form-group span.error {
  color: #f00;
  font-size: 11px;
  font-weight: 600;
  display: block;
}
.box label.error , .contact-form label.error{
  display: none !important;
}
.form-control {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4375em;
  color: rgba(0, 0, 0, 0.87);
  width: 100%;
  position: relative;
  border-radius: 4px;
  padding: 10px 20px;
  height: 50px;
}

select.form-control {
  appearance: none;
  user-select: none;
  cursor: pointer;
  background-image: url(../img/arrow.svg);
  background-size: 10px;
  background-position: 95% 50%;
  background-repeat: no-repeat;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.field-suggestion {
  font-size: 12px;
  color: #000;
  text-align: center;
}
.footer-text {
  font-size: 12px;
  font-weight: 500;
  margin-top: 40px;
  line-height: 1.3;
  text-align: left;
  color: #000;
}
.step-btn.working {
  background: gray !important;
  cursor: not-allowed;
  opacity: .5;
}
@media (max-width:767px) {
  .zip-form {
    display: block;
    max-width: 300px;
    margin: auto;
  }
  .zip-form .form-control {
    width: 100%;
    border-radius: 5px;
}
  .zip-form .default-btn {
    margin-top: 10px;
    margin-left: 0;
    width: 100%;
    border-radius: 5px;
  }
}