#legalArticle {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    min-height: 500px;
    height: calc(100% - 50px);
    display: flex;
    align-items:center;
    justify-content: left;
    gap: 10px;
}

/* indice */
#legal-index {
    position: relative;
    width: 15%;
    height: 100%;
    overflow-y: scroll;
    border-right: 1px solid #424242;

}

#legal-index ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#point-element-index {
    position: relative;
    list-style-type: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    transition: 300ms ease;
    padding-bottom: 5px;
}#point-element-index:hover {
    border-radius: 5px;
    transition: 300ms ease;
    background-color:  var(--bg-box-color-1);
}
#point-element-index a {
    text-decoration: none;
    color: var(--font-box-color-1);
    font-weight: 500;
    transition: 300ms ease;
}

/* subindice */
#legal-subindex {
    position: relative;
    width: 90%;
    height: 100%;
    overflow-y: scroll;
    border-left: var(--banner-color) 1px solid;
}

/* Contenido legal */
#legal-content{
    position: relative;
    margin-left: 4%;
    width: 80%;
    height: 100%;
    overflow-y: scroll;
    scroll-behavior: smooth;
}
#legal-content p {
    text-align: justify;
    width: 90%;
}

/* Tabla con conrtenido legal */
#title-of-legal-table {
    position: relative;
    text-align: center;
    font-size: 15pt;
    font-weight: bold;
    color: var(--font-box-color-1);
    margin: 10px;
}
#legal-info-table {
    position: relative;
    border: 1px solid #424242;
}
#legal-info-table th {
    background-color: var(--bg-box-color-1);
    color: var(--font-box-color-1);
    font-weight: bold;
    padding: 10px;
    border: 1px solid #424242;
}#legal-info-table td {
    padding: 10px;
    border: 1px solid #424242;
}


/* Diseno responsivo */
@media (max-width: 1000px) {
    /* lementos basicos */
    #legal-article {
        display: block;
    }

    #legal-content p {
        width: 100%;
    }

    #legal-content {
        margin-left: 0;
        width: 100%;
    }

    #legal-index {
        position: fixed;
        z-index: 4;
        top: 50px;
        left: 0;
        width: 300px;
        height: calc(100% - 40px);
        background: transparent;
        backdrop-filter: blur(50px);
        transform: translateX(-100%);
    }

    /* Boton */
    .spawn-legal-index {
        position: fixed;
        top: 50px;
        left: 0px;
        width: 40px;
        height: 40px;
        z-index: 5;
        background: transparent;
        backdrop-filter: blur(50px);
        color: var(--font-box-color-1);
        border-radius: 5px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        font-weight: bolder;
        font-size: 15pt;
        border: 0;
        cursor: pointer;
    }
}

/* Mas */
.build-section {
    position: relative;
    width: 300px;
    height: 150px;
    background-color: var(--bg-box-color-1);
    border-radius: 10px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--font-box-color-1);
    font-size: 1.5em;
    font-weight: bold;
    cursor:not-allowed;
    user-select: none;
}
