.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;
    text-align: center;
}
.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;
}

.orderlink {
    color: black;
}

.orderblock {
    border: 2px solid #cccccc;
    border-radius: 0px;
    color: black;
    background-color: #fdfdfd;
    margin-bottom: 16px;
}

.orderheading {
    padding: 6px 14px;
    margin-bottom: 0px;
}

.orderflex {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.orderitem {
    text-align: left;
    background-color: #eeeeee;
    padding: 2px 14px;
    margin: 0px;
}

.orderitemalt {
    background-color: white;
}

.orderbottom {
    text-align: center;
    padding: 4px;
    margin: 0px;
    font-style: oblique;
    font-variant: small-caps;
    background-color: #f0f0ff;
}

.summary-left {
    flex-basis: 30%;
    font-style: normal;
}
.summary-right {
    flex-basis: 70%;
    font-style: normal;
    text-align: right;
}

.invalid_entry {
    padding: 1rem;
    color: red;
    font-size: 1.1rem;
    font-weight: 500;
    display: none;
}
