.margin-custom-button {
    margin: 5px;
}

@media (max-width: 576px) {
    .hide-for-sm {
        display: none;
    }

    .nopading {
        padding: 0px !important;
    }
}

@media (min-width: 976px) {
    .hide-for-lg {
        display: none;
    }
}
.center-input {
    display: block;
    margin: 0 auto;
    text-align: center;
}
h3 {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.opps {
    width: 496px;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 0 45px;
    margin: 40px auto;
    overflow: hidden;
    border: 1px solid #b0afb5;
    font-family: 'Open Sans', sans-serif;
    color: #4f5365;
    background-color: #ffffff;
}

.opps-reminder {
    position: relative;
    top: -1px;
    padding: 9px 0 10px;
    font-size: 11px;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    background: #000000;
}

.opps-info {
    margin-top: 26px;
    position: relative;
}

.opps-info:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.opps-brand {
    width: 45%;
    float: left;
}

.opps-brand img {
    max-width: 100% !important;
    margin-top: 2px;
}

.opps-ammount {
    width: 55%;
    float: right;
}

.opps-ammount h2 {
    font-size: 36px;
    color: #000000;
    line-height: 24px;
    margin-bottom: 15px;
}

.opps-ammount h2 sup {
    font-size: 16px;
    position: relative;
    top: -2px
}

.opps-ammount p {
    font-size: 10px;
    line-height: 14px;
}

.opps-reference {
    margin-top: 14px;
    margin-left: -15px !important;
}

h1 {
    font-size: 27px;
    color: #000000;
    text-align: center;
    margin-top: -1px;
    padding: 6px 0 7px;
    border: 1px solid #b0afb5;
    border-radius: 4px;
    background: #f8f9fa;
}

.opps-instructions {
    margin: 0, auto;
    max-width: 100%;
}

ol {
    margin: 17px 0 0 16px;
}

li + li {
    margin-top: 10px;
    color: #000000;
}

a {
    color: #1155cc;
}

.opps-footnote {
    margin-top: 22px;
    padding: 22px 20 24px;
    text-align: center;
    border: 1px solid grey;
    border-radius: 4px;
    background: #ffffff;
}

.stroke {
    text-align: center;
    color: #59358a;
    text-shadow: -1px -1px 1px #fff, 1px -1px 1px #fff, -1px 1px 1px #fff, 1px 1px 1px #fff;
}

.hideFormsInit {
    display: none;
}

@media (max-width: 576px) {
    .hide-for-sm {
        display: none;
    }
}
.payment-options {
    display: flex;
    gap: 20px;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.payment-option:hover {
    transform: scale(1.05);
}

.checkbox-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment-option input[type="checkbox"] {
    display: none;
}

.payment-option img {
    width: 100px;
    height: auto;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: border 0.3s;
}

/*.payment-option input[type="checkbox"]:checked + .checkbox-image img {*/
/*    border: 2px solid #571666;*/
/*}*/

.checkbox {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-color: white;
    border: 2px solid #571666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-option input[type="checkbox"]:checked + .checkbox-image .checkbox::after {
    content: '✔';
    color: #571666;
    font-size: 19px;
}