body {
  padding: 0 3% 0 3%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.get_quote{
  transition: .3s;
  background: #e8f0f0;
  padding-bottom: 4%;
}

.get_quote h1{
  color: white;
  background-color:#022C43;
  width: 100%;
  /* height: 100px; */
  display: flex; 
  justify-content: center;
  align-items: center;
  margin-bottom: 4%;
  transition: .4s;
}

.form_content{
  background: #fff;
  max-width: 700px;
  margin: auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 5px 0px;
}

.form-quote_input{
  position: relative;
  text-align: center;
  width: 47%;

}

.form-quote_input label{
  position: absolute;
  left: 9px;
  top: 12px;
  transition: .2s;
  background: #fff;
  opacity: .5;
  pointer-events: none;
  padding: 0px 4px 0px 4px;
}

.form-quote_input input{
  background: #fff;
  width: 100%;
  height: 50px;
  padding: 0px 10px 0px 10px;
  border: 1px solid #dde1e3;
  border-radius: 5px;
  outline: none;
  box-shadow: 0px 0px 2px 0px;
}

.form-quote_input small{
  display: flex;
  color: #ff0000;
  visibility: hidden;
}

.was_validate input:invalid{
  border-color: #ff0000;
  box-shadow: none;
}

.was_validate input:not(:placeholder-shown):invalid{
  border-color: #ff0000;
}

.was_validate input:not(:placeholder-shown):invalid + label{
  color: #ff0000;
}

.was_validate input:invalid ~ small{
  visibility: visible;
}

.was_validate input:focus:invalid{
  border-color: #ff0000;
}

.was_validate input:focus:invalid + label{
  color: #ff0000;
}

.form-quote_input textarea{
  background: #fff;
  width: 100%;
  height: 100px;
  padding: 10px 10px 0px 10px;
  border: 1px solid #dde1e3;
  outline: none;
  border-radius: 5px;
  box-shadow: 0px 0px 2px 0px;
}

.form-quote_input input:focus, .form-quote_input textarea:focus,
.form-quote_input textarea:not(:placeholder-shown),
.form-quote_input input:not(:placeholder-shown),
.form-quote_option select:focus
{
 border-radius: 5px;
 border: 2px solid #022C43;
}

.form-quote_input input:focus + label, .form-quote_input input:not(:placeholder-shown) + label,
.form-quote_input textarea:focus + label, .form-quote_input textarea:not(:placeholder-shown) + label,
.form-quote_option select:focus+label
{
  font-weight: 600;
  background: #fff;
  color: #022C43;
  transform: scale(0.8) translateY(-30px);
  opacity: 1;
}

.form-quote_option select:focus ~ i,
.form-quote_option select:valid ~ i{
  color: #022C43;
}

.form-quote_option{
  position: relative;
  text-align: center;
}

.form-quote_option i{
  position: absolute;
  right: 10px;
  top: 15px;
  color: #dde1e3;
}

.form-quote_option select{
  background: #fff;
  width: 100%;
  height: 50px;
  border: 1px solid #dde1e3;
  outline: none;
  box-shadow: 0px 0px 2px 0px;
  padding: 0px 25px 0px 10px;
  appearance: none;
  border-radius: 5px;
}

.form-quote_option label{
  background: #fff;
  position: absolute;
  left: 9px;
  top: 12px;
  transition: .2s;
  opacity: .5;
  pointer-events: none;
  padding: 0px 4px 0px 4px;
}
.form-check label{
  transition: .3s;
  user-select: none;
  -webkit-user-select: none;
  border-radius: 10px;
  cursor: pointer;
}
.form-check input:checked + label{
  background-color: #022C43;
  color: #fff;
}

.color_option{
  text-align: center;
   height: 0; 
  overflow-y: scroll;
  transition:.5s;
}

.color_option::-webkit-scrollbar{
  width: 2px;
}

.color_option::-webkit-scrollbar-thumb{
  background: #888; 
}

.multiple_color{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.add_clr i{
  padding: 5px 10px 5px 10px;
  background: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: .3s;
}

.add_clr i:active{
  background: #022C43;
}

.form_content .upl{
  padding-left: 0;
}

.upl label{
  background: #022C43;
  color: #fff;
}
.upl label:hover{
  background: #888;
}

#uplname{
  color: #022C43;
}

.get_quote .btn{
  background: #022C43;
  color: #fff;
}

.get_quote .btn a{
  text-decoration: none;
  color: #fff;
}

.get_quote .bk{
  background: #888;
}

.get_quote .btn:focus{
  box-shadow: none;
}

.get_quote .btn:hover{
  background: #888;
  color: #fff;
}

@media screen and (max-width:630px) {
  .form-quote_input{
    width: 100%;
  }
  .form_content .upl{
    text-align: center;
  }
} 
@media screen and (max-width:760px){
  .get_quote h1{
    height:3.5rem;
  }
}
@media screen and (min-width:760px){
  .get_quote h1{
    height:100px;
  }
}