.funspinner {
    display: flex;
    flex-wrap: wrap;
}

.funspinner__box {
    background-color: white;
    z-index: 10;

    opacity: 1;
    transition: opacity 500ms;

    position: absolute;
    top: 70px;
    left: 260px;

    width: 100%;
    width: -webkit-calc(100vw - 260px) !important;
    width: -moz-calc(100vw - 260px) !important;
    width: calc(100vw - 260px) !important;

    height: 100%;
    height: -webkit-calc(100vh - 70px) !important;
    height: -moz-calc(100vh - 70px) !important;
    height: calc(100vh - 70px) !important;

    margin: 0 0 0 -1px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .3);
}

body.sidebar-icon-only .funspinner__box {
    left: 70px;
    width: 100%;
    width: -webkit-calc(100vw - 70px) !important;
    width: -moz-calc(100vw - 70px) !important;
    width: calc(100vw - 70px) !important;
}

@media screen and (max-width: 991px) {
    .funspinner__box,
    body.sidebar-icon-only .funspinner__box {
        left: 0;
        width: 100% !important;
    }
}

.funspinner__box.hidding {
    opacity: 0;
}

body.sidebar-icon-only .funspinner__box {
    left: 70px;
}

.funspinner__box > b {
    top: 1rem;
    left: 1rem;
    position: absolute;
    font-weight: normal;
}
.funspinner__box > div {
    text-align: center;
}
.funspinner__box svg {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.progresser {
    width: 12rem;
    height: auto;
}
.progresser__bar {
    width: 12rem;
    height: 0.7rem;
    border-radius: 1rem;
    overflow: hidden;
    background-color: #fff;
}
.progresser__bar-item {
    width: 3rem;
    height: 0.7rem;
    margin: 0 0 0 -2rem;
    border-radius: 1rem;
    /*background-color: #000;*/
    background-image: linear-gradient(to right, #1B309A, #007ACB, #9CD4E5);
    animation: progresser 2s infinite cubic-bezier(0.76, 0, 0.24, 1);
}
@keyframes progresser {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(12rem);
    }
    100% {
        transform: translateX(0);
    }
}

.progresser p {
    font-size: 1.13rem;
    font-weight: 300;
    margin-top: 6px;
    margin-bottom: 6px;
}

.progresser img {
    max-width: 64px;
    max-height: 64px;
}
