.address-form label{
    font-size: 17px;
}
.address-form input{
    height: 55px !important;
    color: #A0ACB5 !important;
    font-family: 'Poppins-medium';
}
.address-form input::placeholder{
    color: #A0ACB5;
    font-family: 'Poppins-medium';
}
/*radio button*/
 input {
    display: none;
  }  
  label {
    display: inline-block;
    padding: 5px 10px;
    cursor: pointer;
  }
    label span {
    position: relative;
    line-height: 22px;
  }
  label span:before,
  label span:after {
    content: '';
  }
  label span:before {
    box-shadow: 0 0 20px 0 rgba(97, 104, 114, 0.15);
    border-radius: 10px;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: top;
     background-color: #fff;   
  }
  label span:after {
    border-radius: 10px;
    background-color: #A0ACB5;
    width: 30px;
    height: 30px;
    position: absolute;
    top: -2px;
    left: 0;
    transition: 300ms;
    opacity: 0;
  }
  label input:checked+span:after {
    opacity: 1;
  }
  /*button*/
  .address-btn-1{
      width: 120px;
  }
  .address-btn-2{
   width: 200px;
  }
