/** SPINNER **/
.spinner-wrapper {
    background-color: rgba(255, 255, 255, 0.5);
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000
}

.spinner {
    animation: spin 1.5s infinite linear;
    border: 4px solid #c9e6ff;
    border-radius: 50%;
    border-top: 4px solid #164d95;
    box-sizing: border-box;
    display: $inline-block;
    width: 40px !important;
    height: 40px !important
}

.spinner-text {
    display: $block;
    font-size: 12px;
    text-align: center;
    width: 300%;
    margin-left: -100%;
    word-break: break-all;
    margin-top: 5px;
}

.spinner-wrapper .spinner-container {
    bottom: -1px;
    left: -1px;
    margin: auto;
    position: fixed;
    top: -1px;
    right: -1px;
    width: 40px !important;
    height: 40px !important
}

.spinner-local {
    position: absolute !important;
}

.spinner-box {
    background-color: rgba(60, 141, 188, 0.9);
    border-radius: 3px;
}

.spinner-dark .spinner {
    border-color: rgba(255, 255, 255, 0.3);
    border-top-color: white;
}

.spinner-dark .spinner-text {
    color: white;
}

.error-number {
    font-size: 80px;
    font-weight: bold;
    vertical-align: middle;
    margin-top: 30px;
}

.error-title {
    font-size: 24px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}
