.rvp-wrapper-donation input {
    display: flex;
    height: 35px !important;
    padding-left: 5px !important;
    background-color: white !important;
    border-radius: 0 !important;
    border: 1px solid grey;
    margin-bottom: 10px;
}
.rvp-wrapper-donation .rvp-banks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    text-align: center;
    align-items: center;
    gap: 10px;
}
.rvp-wrapper-donation .rvp-bank {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 3px solid gainsboro;
    background-color: gainsboro;
}
.rvp-wrapper-donation .rvp-bank.rvp-bank-selected {
    border: 3px solid grey;
}
.rvp-wrapper-donation .rvp-image {
    object-fit: contain !important;
    object-position: center center !important;
    width: 100px !important;
    height: 50px !important;
    padding: 10px !important;
    background-color: gainsboro !important;
}
.rvp-wrapper-donation .rvp-quick-buttons {
    display: flex;
    width: 100%;
    gap: 10px;
    margin-bottom: 10px;
}
.rvp-wrapper-donation .rvp-quick-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    background-color: gainsboro !important;
    border-radius: 0 !important;
    border: none;
    cursor: pointer;
    color: black !important;
}
.rvp-wrapper-donation .rvp-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    width: 200px;
    height: 40px;
    background-color: black !important;
    cursor: pointer;
    color: white !important;
    font-weight: bold;
    border-radius: 0 !important;
    border: none;
    margin-top: 10px;
}
.rvp-wrapper-donation .rvp-message {
    display: none;
    flex-direction: column;
    width: 100%;
    height: 40px;
    margin-top: 10px;
    justify-content: center;
    align-items: center;
}
.rvp-wrapper-donation .rvp-message.error {
    border: 1px solid red;
    color: red;
}
.rvp-wrapper-donation .rvp-message.success {
    border: 1px solid green;
    color: green;
}