* {
    box-sizing: border-box;
    font-weight: 500;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: "Montserrat", "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color .3s ease;
    background-color: #ececec;
    font-size: 112.5%;

}

.text {
    font-size: 16px;
    margin-bottom: 1rem;
    margin-top: .5rem;
}

.first-loading {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #ececec;
    font-size: 22px;
}

.first-loading .fake-logo svg {
    height: 100px;
    width: 100px;
    margin-bottom: 2rem;
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.child {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 35px;
    height: 35px;
    border: 3px solid;
    border-radius: 50%;
    animation: spinnerLoading 1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #12968f transparent transparent transparent;
}

.child:nth-child(1) {
    animation-delay: 0.2s;
}

.child:nth-child(2) {
    animation-delay: 0.3s;
}

.child:nth-child(3) {
    animation-delay: 0.4s;
}

.force-reload-cl {
    border: none;
    background: #2BD1CB;
    padding: .7rem 1.3rem;
    margin-left: 1rem;
    margin-top: 2rem;
    cursor: pointer;
    font-size: 20px;
    border-radius: 6px;
    transition: all .3s ease;
    color: #242424;
}

.force-reload-cl:hover {
    box-shadow: 0 2px 4px #c4c4c4;
}

.show {
    display: block !important;
}

@keyframes spinnerLoading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 968px) {

    .first-loading .fake-logo svg {
        height: 80px;
        width: 80px;
    }

    .wrapper {
        margin-top: 1rem;
    }

    .child {
        width: 25px;
        height: 25px;
        border-width: 2px;
    }

    .text {
        font-size: 14px;
    }

    .show {
        text-align: center;
        margin-top: 2rem;
    }

    .show button {
        padding: .6rem 1rem;
    }
}

