﻿img.sostenibilidad {
    display: none;
}

* {
    font-family: roboto;
}


html,
body {
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.no-pointer {
    cursor: default !important;
}

.item2 {
    background-color: white;
}

.item3 {
    background-color: #008bb0;
}

.item4 {
    background-color: #012169;
}

.item5,
.item6,
.item7,
.item8,
.item9 {
    background-color: #013b79;
}

.item10 {
    background-color: #00558b;
}


.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.loading-spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



/*Animaciones para el menu*/

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0.1s;
}

.descargaMenu.collapsing {
    transition: .05s ease;
}

.descargaMenu.collapsing.show {
    transition: .5s ease;
}



@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
        right: -100%;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        right: 0;
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
        right: -100%;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        right: 0;
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}


@-webkit-keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        right: 0;
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        right: -100%;
    }
}

@keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        right: 0;
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        right: -100%;
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes scale-up-ver-center {
    0% {
        -webkit-transform: scaleY(.4);
        transform: scaleY(.4)
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1)
    }
}

@keyframes scale-up-ver-center {
    0% {
        -webkit-transform: scaleY(.4);
        transform: scaleY(.4)
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1)
    }
}

.scale-up-ver-center {
    -webkit-animation: scale-up-ver-center .4s cubic-bezier(.39, .575, .565, 1.000) both;
    animation: scale-up-ver-center .4s cubic-bezier(.39, .575, .565, 1.000) both
}

@-webkit-keyframes scale-down-ver-center {
    0% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1)
    }

    100% {
        -webkit-transform: scaleY(.3);
        transform: scaleY(0)
    }
}

@keyframes scale-down-ver-center {
    0% {
        -webkit-transform: scaleY(1);
        opacity: 1;
        transform: scaleY(1);
    }

    100% {
        -webkit-transform: scaleY(0);
        opacity: .1;
        transform: scaleY(0);
    }
}

.scale-down-ver-center {
    -webkit-animation: scale-down-ver-center .4s cubic-bezier(.25, .46, .45, .94) both;
    animation: scale-down-ver-center .4s cubic-bezier(.25, .46, .45, .94) both;
}

/* Animaciones de las barras */

@keyframes barra {
    from {
        height: 0;
    }
}





