.donation {
    max-width: 400px;
    margin: auto;
    font-family: 'RacamaRegular', Arial, sans-serif;
    padding: 15px;
    border: 2px solid #1F2D3D;
    color: #1F2D3D;
}

.inputBlock {
    padding-bottom: 20px;
    text-align: center;
    display: flex;
    align-content: stretch;
    flex-wrap: nowrap;
    justify-content: space-between;
    flex-direction: row;
}

input {
    background: #F8F8F8;
}

.confirmation {
    font-size: 13px;
    flex-direction: column;
}

.confirmation > div {
    padding-bottom: 5px;
}

.value_field label, .recurrent_field label, input[type=submit] {
    font-size: 21px;
    cursor: pointer;
    display: block;
    padding: 10px 20px;
    border: 1px solid #1F2D3D;
}

.recurrent_field {
    margin: 0 -10px;
}

.recurrent_field label {
    flex: 1 1 auto;
    margin: 0 10px;
}

.check-with-label:checked + .label-for-check {
    font-weight: bold;
    background: #3E6CBE;
    border-color: transparent;
    color: #ffffff;
}

.value_field input, .recurrent_field input {
    display: none;
}

input[type=text], input[type=number] {
    font-size: 21px;
    padding: 10px 20px;
    border: 1px solid #1F2D3D;
    flex-grow: 1;
}

/*input[type=number]:not(:placeholder-shown) {*/
/*    border-color: #92C4A4;*/
/*    background: #92C4A4;*/
/*    color: #ffffff;*/
/*    font-weight: bold;*/
/*}*/

input[type=text]:focus-visible, input[type=number]:focus-visible {
    border-color: #1F2D3D;
    outline-color: #1F2D3D;
}

input[type=submit] {
    color: #ffffff;
    font-family: 'RacamaRegular', Arial, sans-serif;
    font-weight: 600;
    border-width: 1px;
    background-color: #3E6CBE;
    border-color: transparent;
    border-style: solid;
    padding: 13px 30px;
    cursor: pointer;
    width: 100%;
}

@media (max-width: 480px) {
    .value_field, .recurrent_field {
        flex-direction: column;
    }

    .value_field label, .recurrent_field label {
        margin-bottom: 10px;
        text-align: center;
    }
    
    .donation {
        margin-left: 10px;
        margin-right: 10px;
    }
}
