@charset "UTF-8";

@font-face {
    font-family: 'FontEuroamericano';
    /*src: url('~/Content/fonts/fonts.ttf') format('truetype');*/
    src: url('/Content/fonts/fonts.ttf') format('truetype');
}

body {
    font-family: 'FontEuroamericano', sans-serif;
}
/*
.info-container {
    background-color: #748132;
    color: #ffffff;
    border: solid 20px #748132;
    padding: 10px;
}


.info-separator {
    margin-right: 20px;
    margin-left:20px;
}
*/


.info-container {
    background-color: #748132;
    color: #ffffff;
    border: solid 20px #748132;
    padding: 10px;
}

.info-separator {
    margin-right: 20px;
    margin-left: 20px;
}


#loadingOverlay {
    display: none; /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1000;
}

    #loadingOverlay .loader {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 120px; /* Aumenta el tamaño del contenedor */
        height: 120px; /* Aumenta el tamaño del contenedor */
        display: flex;
        align-items: center;
        justify-content: center;
    }

        #loadingOverlay .loader img {
            position: absolute;
            width: 60px; /* Aumenta el tamaño de la imagen */
            height: 60px; /* Aumenta el tamaño de la imagen */
            z-index: 1;
        }

        #loadingOverlay .loader:before {
            content: "";
            position: absolute;
            width: 120px; /* Aumenta el tamaño del círculo */
            height: 120px; /* Aumenta el tamaño del círculo */
            border: 8px solid rgba(113, 131, 33, 0.3);
            border-top: 8px solid rgb(113, 131, 33);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

.texto {
    font-size: 14px
}

.titulo {
    font-weight: bold;
}

.rounded-background {
    display: inline-block;
    padding: 5px 10px;
    background-color: #748033;
    border-radius: 500px;
    color: #ffffff;
}

footer {
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
}

    footer p {
        margin: 0;
    }


.banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #748132;
    margin: 0;
    padding: 0;
}
.banner-container img{
    width: 8%;
}
@media (max-width: 768px) {
    .banner-container img {
        width: 40%;
    }
}

/* Animación de giro */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
