body {
    margin: 0 !important;
    padding: 0 !important;
    height: 100%;
    background: #242424;
    font-family: "Roboto", sans-serif !important;
}

html {
    height: 100%;
}

button {
    font-family: "Roboto", sans-serif !important;
}

input {
    font-family: "Roboto", sans-serif !important;
}

textarea {
    font-family: "Roboto", sans-serif !important;
}

strong {
    font-weight: 500;
    letter-spacing: 0.15px;
}

* {
    box-sizing: border-box;
}

#react-container {
    height: 100% !important;
    background: white;
}

#loader-wrapper {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1000;
}

.loaded #loader-wrapper {
    visibility: hidden;
}

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

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

#ball-clip-rotate {
    z-index: 1001;
    background-color: #333;
    border-radius: 100%;
    border: 2px solid #333;
    opacity: 0.8;
    border-bottom-color: transparent;
    height: 30px;
    width: 30px;
    background: transparent !important;
    display: inline-block;
    animation: rotate 0.75s 0s linear infinite;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.4);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleIn-grayscale {
    from {
        filter: grayscale(1);
    }

    to {
        filter: grayscale(0);
    }
}

@keyframes wave-squares {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}
