/* Estilos iniciales para html */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
    /*========== Colors ==========*/
    --text-color: hsl(228, 15%, 50%);
    --text-color-white: #ffffff;
    --text-color-dark: #000000;


    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: 'Poppins', sans-serif;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    /*========== Opacity background ==========*/
    --opacity--bkg: rgba(255, 255, 255, 0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
input,
textarea {
    font-family: "Poppins", sans-serif;
}

body {
    position: relative;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    /*background-image: url(../img/bkg_logosSch.png);*/
    background-size: contain;
    /* background-size: auto auto; */
    color: var(--text-color);
    transition: .3s;
}

body::before {
    z-index: -3;
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: var(--opacity--bkg);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.titleContentApp {
    padding: 1rem 0rem;
    text-align: left;
    color: #222327;
    margin-left: 5rem;
}

.main_container_app {
    width: 100vw;
    display: flex;
    /* align-items: center; */
    justify-content: space-around;
    flex-direction: row;
}

.left_menu {
    width: 550px;
    height: 450px; /* Depende de cuantos tabs en left menu allá */
    /* position: relative; */
    margin: 2rem 2rem;
    background-color: var(--text-color-white);
    box-shadow: 0 0.4rem 0.9rem rgba(0, 0, 0, 0.2);
    padding: 2rem 2rem;
    border-radius: 2rem;
}

.left_menu h3 {
    text-align: left;
    color: #222327;
    margin-left: 1rem;
}

/* .left_menu_content {

} */

.left_tab_contenido {
    cursor: pointer;
    margin: 1rem 1rem;
    padding: 1rem 2rem;
    background-color: var(--text-color-white);
    color: #222327;
    box-shadow: 0 0.4rem 0.9rem rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
}

.left_tab_contenido.active {    
    border: 2px solid #222327;
}

.left_tab_contenido h5 {
    text-align: left;
    /* color: #222327; */
}

.left_tab_contenido p {
    text-align: justify;
}

.right_content {
    width: 1200px;
    /* position: relative; */
    margin: 2rem 2rem;
    background-color: var(--text-color-white);
    box-shadow: 0 0.4rem 0.9rem rgba(0, 0, 0, 0.2);
    padding: 2rem 2rem;
    border-radius: 2rem;
}

.right_div_contenido {
    /* margin: 1rem 0rem; */
    /* padding: 1rem 2rem; */
    background-color: transparent;
    /* box-shadow: 0 0.4rem 0.9rem rgba(0, 0, 0, 0.2); */
    border-radius: 1rem;
    display: none;
}

.right_div_contenido.active {
    display: block;
}

.right_div_contenido h4 {
    text-align: left;
    color: #222327;
}

.right_div_contenido p {
    text-align: justify;
}

.btnEsr {
    width: 10rem;
    padding: 5px 30px;
    border-radius: 30px;
    text-align: center;
    font-size: 0.8rem;
    cursor: pointer;
    color: var(--text-color-white);
    background-color: #222327;
    box-shadow: 0 0.4rem 0.9rem rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 820px) {
    .titleContentApp {
        margin-left: unset;
        text-align: center;
    }

    .main_container_app {
        width: 100vw;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .right_content {
        width: 350px;
    }    
}

@media screen and (max-width: 375px) {
    .titleContentApp {
        margin-left: unset;
        text-align: center;
    }

    .left_menu {
        width: 320px;
    }

    .right_content {
        width: 320px;
    }    
}
