.custom-input {
    position: relative;
}

.custom-input__field {
    width: 100%;
    border: 1px solid #D9D9D9;
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    padding: 9.5px 16px;
    font-size: 14px;
    outline: none;
    transition: 200ms ease all;
}

.custom-input__field:focus {
    border-color: #0C84D1;
}

.custom-input__help-block {
    font-size: 12px;
}

.custom-input__payment-symbol {
    font-size: 14px;
    color: #A0A0A0;
    display: none;
}

.custom-input--payment .custom-input__field {
    padding-right: 32px;
}

.custom-input--payment .custom-input__payment-symbol {
    display: inline-block;
    position: absolute;
    right: 16px;
    top: 9px;
}

.custom-input__field:disabled {
    color: #A0A0A0;
    background: #F1F1F1;
    border: 1px solid #D9D9D9;
}