/*** Begin Session Expiration Modal Styles ***/
.countdown {
    font-size: 20px;
    text-align: center;
}
#sessionExpirationButton {
    margin: 4px;
}
#sessionExpirationMessageHeader, #sessionExpirationMessageFooter {
    text-align: center;
}
.no-close-button .close-modal {
    display: none!important;
}
/*** End Session Expiration Modal Styles ***/

#loadingModal {
    background: #002d72;
    width: 260px;
}

#loadingMessageText {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
}

.dialogWorkingBox {
    width: 200px;
    height: 100px;
    background: #002d72;
    display: flex;
    justify-content: center;
    margin: auto;
    align-items: center;
    /* box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.3); */
}

.dialogWorkingContainer {
    height: 15px;
    width: 105px;
    display: flex;
    position: relative;
}
.dialogWorkingContainer .circle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #fff;
    animation: move 500ms linear 0ms infinite;
    margin-right: 30px;
}
.dialogWorkingContainer .circle:first-child {
    position: absolute;
    top: 0;
    left: 0;
    animation: grow 500ms linear 0ms infinite;
}
.dialogWorkingContainer .circle:last-child {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 0;
    animation: grow 500ms linear 0s infinite reverse;
}

@keyframes grow {
    from {
        transform: scale(0, 0);
        opacity: 0;
    }
    to {
        transform: scale(1, 1);
        opacity: 1;
    }
}
@keyframes move {
    from {
        transform: translateX(0px);
    }
    to {
        transform: translateX(45px);
    }
}
