input {
    font-family: 'Roboto', Arial, sans-serif !important;
    font-size: 14px !important;
}

input[type='text'],
input[type='password'],
input[type="number"],
input[type="date"],
select{
    height: 40px;
    padding: 0px 16px;
    color: #333;
    border: 1px solid #B6B6B6;
    box-sizing: border-box;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: none;

    transition: background .1s linear, box-shadow .1s linear;
}

input[type='text']:hover,
input[type='password']:hover,
input[type="number"]:hover,
input[type="date"]:hover{
    background:#fafafa;
}

input[type='text']:focus,
input[type='password']:focus,
input[type="number"]:focus,
input[type="date"]:focus{
    background:#fff;
    border: 0;
    outline: 0;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.15); 
    -webkit-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.15);
    -webkit-appearance: none;
}

input[type='radio'] {
    transform: scale(1.25);
    margin: 5px;
}

label {
    vertical-align: text-top;
}

input + .button-cancel-search {
display: none;
width: 15px;
height: 15px;
background: url(../img/icon_close.svg) no-repeat center center;
opacity: .35;
right: 12px;
position: relative;
top: 12px;
cursor: pointer;
margin-left: -15px;
}

input + .button-cancel-search:hover,
input + .button-cancel-search:focus {
    opacity: .5;
}

input.hasValue + .button-cancel-search {
    display: block;
}