#MASTER_RELOAD {
    transition: 0.3s;
    margin: 0px -15px;
    min-height: 65vh;
}


#SUBCONTENT_PAYLOAD .row {
    padding-top: 0px;
}

.soft-cover {
    background-color: #0000009e;
    color: #666666;
    height: 100%;
    width: 100%;
    z-index: 8;
    top: 0;
    left: 0;
    float: left;
    text-align: center;
    opacity: 1.00;
    position: fixed;
}

#overlay {
    position: fixed;
    overflow: hidden;
    height: 100%;
    width: 100%;
    z-index: 2;
    top: 0;
    left: 0;
    float: left;
    text-align: center;
    opacity: 1.00;
}

#overlay_soft {
    background: #00000080;
    color: #666666;
    position: fixed;
    overflow: hidden;
    height: 100%;
    width: 100%;
    z-index: 3;
    top: 0;
    left: 0;
    float: left;
    text-align: center;
    opacity: 1.00;
}



.spinner {
    position: relative;
    top: 270px;
    margin: 0 auto;
    height: 34px;
    width: 34px;
    animation: rotate 0.3s infinite linear;
    border: 3px solid #2c2c2c;
    border-right-color: transparent;
    border-radius: 50%;
}

.spinner2 {
    position: relative;
    top: 45px;
    margin: 0 auto;
    height: 34px;
    width: 34px;
    animation: rotate 0.3s infinite linear;
    border: 3px solid #ffffff;
    border-right-color: transparent;
    border-radius: 50%;
}

.spinner_soft {
    position: relative;
    top: 270px;
    margin: 0 auto;
    height: 34px;
    width: 34px;
    animation: rotate 0.3s infinite linear;
    border: 3px solid #ffffff;
    border-right-color: transparent;
    border-radius: 50%;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: auto;
    height: 64px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 18px;
    height: 18px;
    margin: 4px;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



.modal {
    display: none;
    position: fixed;
    z-index: 999999999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* background-color: rgba(0, 0, 0, 0.5); */
    text-align: center;
}
.modal-backdrop {
    z-index: 9999;
}

/* Modal Content */
.modal-content {
    background-color: #000000;
    color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #606060 !important;
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, .13), 0 1px 2px 0 rgba(0, 0, 0, .11);
    max-width: 500px;
    width: 80%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.modal-content .notice-1 {
    margin-top: 10px;
    font-size: 12px;
    color: #727483;
}
.modal-content .notice-2 {
    margin-top: 5px;
    font-size: 14px;
    color: #ffffff;
}

.modal-content #birthdate {
    text-align: center;
}

.scroll-terms{
    text-align: left;
    font-size: 12px;
    color: #989898;
    background-color: #111;
    border-radius: 8px;
    height: 100%;
    min-height:90px;
    max-height: 150px;
    padding: 13px;
    margin: 0px 0px 15px 0px;
    overflow-y: scroll;
}
.terms-buttons{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.bp-agree{
    background-color: #62b454 !important;
    border: 1px solid #000;
}

.bp-exit{
    background-color: #bb5151 !important;    
    border: 1px solid #000;
}

#birthdate {
    max-width: 345px;
    padding: 20px;
    width: 100%;
    height: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    margin: 0px 0px 20px 0px;
}

#birthdate:focus {
    border-color: #007BFF;
    box-shadow: 0 0 5px #007BFF;
    outline: none;
}