/* Overlay */
#hrLoaderOverlay {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 999999;
}

/* Modal box */
#hrLoaderBox {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #002f62;
    color: #fff;
    width: 92vw;
    max-width: 420px;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
    text-align: center;
}

#hrLoaderSpinner { font-size: 28px; margin-bottom: 14px; }
#hrLoaderMsg     { font-size: 16px; line-height: 1.5; }

.hrLoaderBar {
    margin-top: 16px;
    height: 10px;
    background: #394a6d;
    border-radius: 6px;
    overflow: hidden;
}

.hrLoaderBar > div {
    height: 10px;
    width: 0;
    background: #f0c26b;
    transition: width .5s;
}

.hrLoaderActions {
    margin-top: 18px;
    display: none;
    gap: 10px;
    justify-content: center;
}

.hrBtn {
    border: 0;
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 700;
    cursor: pointer;
}

.hrBtn-primary,
.hrBtn-primary:link,
.hrBtn-primary:visited {
    background: #f0c26b;
    color: #002f62 !important;
    text-decoration: none;
    display: inline-block;
}

.hrBtn-ghost {
    background: transparent;
    border: 1px solid #f0c26b;
    color: #f0c26b;
}
