/* Common elements found in the "global.css" */
/* footer {
    background-color: #f5f5f5;
    padding: 1em;
    text-align: center;
}

footer p {
    margin-bottom: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
} */

#MASTER_RELOAD {
    transition: 0.3s;
    margin: 0px -15px;
    min-height: 80vh;
}


#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;
    /* overflow:auto; */
}

#overlay {
    /* background: rgba(255, 255, 255, 1.0); */
    /* color: #666666; */
    position: fixed;
    overflow: hidden;
    /* overflow:auto; */
    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;
    /* overflow:auto; */
    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;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 2;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
    text-align: center;
}

/* Modal Content */
.modal-content {
    background-color: #000000;
    color: #fff;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #f99;
    max-width: 500px;
    width: 80%;
    /* Could be more or less, depending on screen size */
    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: 10px;
    font-size: 16px;
    color: #ffffff;
}

.modal-content #birthdate {
    text-align: center;
}

/* Styling for the Date Picker */
#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;
}