.text-bold {
    font-weight: bold;
}

.space5 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.space10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.space15 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.space20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.back-epaa {
    background-color: #74cde6;
    border-radius: 30px;
}

.back-epaa h2 {
    color: #ffffff;
}

/** SPINNER CREATION **/
.loader {
    position: relative;
    text-align: center;
    margin: 15px auto 35px auto;
    z-index: 9999;
    display: block;
    width: 80px;
    height: 80px;
    border: 10px solid rgba(116, 205, 230, .3);
    border-radius: 50%;
    border-top-color: #006087;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

/** MODAL STYLING **/

.modal-content {
    border-radius: 0px;
    box-shadow: 0 0 20px 8px rgba(0, 0, 0, 0.7);
}

.modal-backdrop.show {
    opacity: 0.75;
}

.loader-txt p {
    font-size: 13px;
    color: #666;
}

.loader-txt p small {
    font-size: 11.5px;
    color: #999;
}

#select_month{
    cursor: pointer;
}