input,
select {
    box-sizing: border-box;
    padding: 7px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
    color: inherit;
}

input,
.select {
    box-sizing: border-box;
    height: 30px;
    border: 1px solid #ddd;
    background: none;
    box-shadow: 0px 1px 3px 0.00px rgba(0, 0, 0, 0.1) inset;
    border-radius: 2px;
    line-height: 30px;
    vertical-align: top;
}

.select {
    display: inline-block;
    background: url(img/select.png) no-repeat 95% center;
    background-position: calc(100% - 10px) center;
    overflow: hidden;
}

.select select {
    display: inline-block;
    width: 100%;
    width: calc(100% + 50px);
    height: 30px;
    padding: 0px 20px 0px 7px;
    line-height: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font: inherit;
}

.select select::-ms-expand {
    display: none;
}

option {
    box-sizing: border-box;
    display: block;
    padding: 0px;
    height: 100%;
}

input[type="date"],
input.date {
    background: url(img/date-selector.svg) no-repeat 95% center;
    background-position: calc(100% - 5px) center;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    width: 12px;
    height: 12px;
    border: 1px solid #ddd;
    vertical-align: middle;
    display: none;
    opacity: 0;
}

input[type="checkbox"]+label,
input[type="radio"]+label {
    padding-left: 30px;
    position: relative;
}

input[type="checkbox"]+label:after,
input[type="radio"]+label:after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 0px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 1px solid #aaa;
    border-radius: 2px;
    box-shadow: 0px 1px 3px 0.00px rgba(0, 0, 0, 0.1) inset;
    color: #666;
    background: #FFF;
    text-align: center;
}

input[type="checkbox"]+label:after {
    width: 12px;
    height: 12px;
    font-size: 10px;
    line-height: 10px;
    border-radius: 2px;
}

input[type="checkbox"]:checked+label:after {
    content: '✓';
}

input[type="radio"]+label:after {
    width: 15px;
    height: 15px;
    border-radius: 8px;
    font-size: 20px;
    line-height: 14px;
    text-align: center;
}

input[type="radio"]:not(.searchTypeMobile):checked+label:after {
    content: '•';
}

.input.disabled {
    opacity: .4;
}

a.link {
    color: #4c92c7;
    font: 400 14px / 20px Arial;
    text-decoration: underline;
    cursor: pointer;
}

.button {
    display: inline-block;
    box-sizing: border-box;
    height: 45px;
    border: 1px solid #005c60;
    padding: 0px 25px;
    background: #008286 linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: 2px;
    color: #FFF;
    font: 400 14px / 0px Arial;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 5px;
}

.button.big {
    height: 60px;
    padding: 20px 45px;
    font: 400 20px / 20px Arial;
    border-radius: 2px;
}

.button.red {
    background: #9f0b16;
    border: 1px solid #930a15;
}

.button.grey {
    border: 1px solid #494949;
    background: #616161 linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}

@media (min-width: 1025px) {
     ::-webkit-calendar-picker-indicator,
     ::-webkit-inner-spin-button,
     ::-webkit-outer-spin-button,
     ::-webkit-clear-button {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        display: none;
    }
}