﻿html, body, #app {
    height: 100%;
}

.loading-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    z-index: 1;
    margin-bottom: -200px;
}

.logo {
    display: block;
    width: 240px;
    height: auto;
    margin: 0px auto;
}

.leyenda {
    text-align: center;
    margin: 0px 0px 0px 0px;
    font-size: 1.5rem;
}

.lds-dual-ring {
    /*margin-top: -2.5rem;*/
    display: inline-block;
    width: 300px;
    height: 300px;
    z-index: 2;
}

    .lds-dual-ring:after {
        content: " ";
        display: block;
        width: 280px;
        height: 280px;
        margin: 0px auto;
        border-radius: 50%;
        border: 6px solid #000;
        border-color: #000 transparent #000 transparent;
        animation: lds-dual-ring 1.2s linear infinite;
    }

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
