/*CONTENEDOR INFORMACION*/
.contenido_informacion_scroll{
    width: calc(100% - 1em);
    background-color: var(--color_principal);
    border-radius: 1em;
    position: relative;
    overflow: hidden;
    margin: 0 .5em;
}
    .contenido_informacion_total{
        display: flex;
    }
        .contenido_informacion{
            width: 100%;
            padding: 4em 1.5em;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 1;
        }
        .contenido_informacion_titulo{
            font-size: 2.3em;
            font-weight: 700;
            width: 100%;
            max-width: 15em;
            text-align: center;
        }
        .contenido_pagina_informacion .contenido_informacion_opcion:nth-child(2){
            margin-top: 0 !important;
        }
        .contenido_informacion_opcion{
            margin-top: .5em;
        }
        .contenido_informacion_sub_titulo{
            font-weight: 100;
        }
        .contenido_informacion_ver{
            color: white;
            padding: .5em 2em;
            background: black;
            border-radius: .5em;
            margin-top: 2em;
            cursor: pointer;
            border: 1px;
            border-style: dashed;
            border-color: black;
            transition: background-color .5s, border-color .5s;
        }
        .contenido_informacion_ver:hover{
            border-color: var(--color_principal);
        }

    .contenido_informacion_fondo{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .contenido_informacion_fondo div{
        position: absolute;
        width: 2em;
        height: 2em;
        border-radius: 100%;
        background: #9E82E8;
        z-index: 0;
    }
    .contenido_informacion_fondo div:nth-child(1){
        width: 5em;
        height: 5em;
        bottom: 0;
        left: 0;
        margin: .5em;
        background: #FFA307;
    }

    .contenido_informacion_fondo div:nth-child(2){
        width: 1em;
        height: 1em;
        bottom: 0;
        right: 0;
        margin: .5em;
        background: #507CD6;
    }

    .contenido_informacion_fondo div:nth-child(3){
        width: 2em;
        height: 2em;
        bottom: 50%;
        right: 10%;
        margin: .5em;
        background: #FFA307;
    }

    .contenido_informacion_fondo div:nth-child(4){
        width: 10em;
        height: 10em;
        bottom: 50%;
        right: 15%;
        margin: .5em;
        background: #FE4E58;
    }


    .contenido_informacion_fondo div:nth-child(5){
        width: 10em;
        height: 10em;
        bottom: 0;
        margin-bottom: -5em;
        background: #88A3BA;
    }

    .contenido_informacion_fondo div:nth-child(6){
        width: 6em;
        height: 6em;
        left: 0;
        margin-left: -3em;
        margin-top: -3em;
        top: 0;
        margin-bottom: -5em;
        background: #6C40B2;
    }

    .contenido_informacion_fondo div:nth-child(7){
        width: 4em;
        height: 4em;
        left: 0;
        top: 0;
        margin: 10%;
        background: #8D8E8D;
    }

    .contenido_informacion_paginacion{
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 1em;
    }
        .contenido_informacion_paginacion_button.pagina{
            width: 2.5em;
            height: .2em;
            background-color: rgba(0, 0, 0, .25);
            border-radius: .7em;
            margin: 0 .15em;
            cursor: pointer;
            z-index: 1;
        }
        
        #body.select_modo_noche .contenido_informacion_paginacion_button.pagina{
            background-color: rgba(255, 255, 255, .1) !important;
        }
        .contenido_informacion_paginacion_button.pagina.active{
            background-color: black;
        }
        #body.select_modo_noche .contenido_informacion_paginacion_button.pagina.active{
            background-color: white !important;
        }
    
    .contenido_informacion_boton_despl{
        position: absolute;
        background-color: transparent;
        padding: 1em;
        height: calc(100% - 2em);
        display: flex;
        align-items: center;
        transition: background-color .5s;
        z-index: 1;
        cursor: pointer;
    }
        .contenido_informacion_boton_despl:hover{
            background-color: rgba(255, 255, 255, .2);
        }

        .contenido_informacion_boton_despl.left{
            left: 0;
            top: 0;
        }
        .contenido_informacion_boton_despl.right{
            right: 0;
            top: 0;
        }
