body,
html {
    margin: 0;
    width: 100%;
    height: 100%;
}

.block-container-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.full-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-loading .full-loading--content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.full-loading.full-loading--opacity {
    background-color: rgba(255, 255, 255, 0.9) !important;
}

.lds-dual-ring {
    display: flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
}

.lds-dual-ring:after {
    content: ' ';
    display: block;
    width: 50px;
    height: 50px;
    margin: 8px;
    border-radius: 50%;
    border: 4px solid #103c91;
    border-color: #103c91 transparent #5ab463 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
    box-sizing: border-box;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
