.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #0d6efd;
    width: 20px;
    height: 20px;
    -webkit-animation: spin 0.5s linear infinite; /* Safari */
    animation: spin 0.5s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.paymentcontainer {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    /* overflow:auto;*/
    margin-left: auto;
    margin-right: auto;
    height: auto;
    width: 100%;
    max-width: 1220px;
}
.paymentrow {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}
.paymentimg {
    width: auto;
    height: 4vh;
    background: black;
    margin: 4px;
    border-radius: 4px;
}

.membershipwarning {
    color: red;
    font-style: italic;
    font-weight: bold;
    padding-top: 4px;
    display: none;
}
.membershipbuttonwrap {
    display: flex;
    flex-wrap: wrap;
}
.membershipbuttonwrapdob {
    display: flex;
}
.membershipbutton {
    width: auto;
}

hr {
    height: 2px !important;
}
