.rvp-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}
.rvp-row span,
.rvp-row-message span {
    text-align: left !important;
}
.rvp-row input,
.rvp-row select {
    display: flex;
    height: 35px !important;
    padding-left: 5px !important;
    background-color: white !important;
    border-radius: 0 !important;
    border: 1px solid grey;
}
.rvp-row select {
    padding: 0 !important;
}
.rvp-row textarea {
    padding-left: 5px !important;
    border-radius: 0px;
    border: 1px solid grey;
}
.rvp-row input[type="checkbox"],
.rvp-row input[type="radio"] {
    margin-left: 0px !important;
    padding-left: 0px !important;
    width: 15px !important;
    height: 15px !important;
}
.rvp-row label {
    display: flex;
    height: 35px;
    border: 1px solid grey;
    padding-left: 5px;
    padding-right: 5px;
    margin-right: 10px;
    align-items: center;
    justify-content: center;
}
.rvp-row label span {
    padding-left: 10px;
    padding-right: 10px;
}
.rvp-row .rvp-label {
    display: flex;
    flex-direction: row;
}
.rvp-row .rvp-amount-fixed {
    display: flex;
    height: 35px;
    border: 1px solid grey;
    padding-left: 5px;
    align-items: center;
}
.rvp-row-message {
    display: flex;
}
.rvp-banks {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    text-align: center;
    align-items: center;
    gap: 10px;
}
.rvp-bank {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 3px solid gainsboro;
    background-color: gainsboro;
}
.rvp-bank.rvp-bank-selected {
    border: 3px solid grey;
}
.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-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    width: 300px;
    height: 40px;
    background-color: black !important;
    cursor: pointer;
    color: white !important;
    font-weight: bold;
    border-radius: 0 !important;
    border: none;
    margin-top: 10px;
}
.rvp-message {
    display: none;
    flex-direction: column;
    width: 100%;
    color: red;
    margin-top: 5px;
}
.rvp-error, .rvp-redirect {
    display: none;
    align-items: center;
    justify-content: center;
}
.rvp-error {
    border: 1px solid red;
    color: red;
    height: 40px;
    margin-top: 10px;
}
.rvp-redirect {
    border: 1px solid grey;
    color: grey;
    height: 40px;
    margin-top: 10px;
}