/* scroll bar */

/* width */
::-webkit-scrollbar {
    width: 14px;
}

/* Track */
::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 5px grey; */
    box-shadow: inset 0 0 5px lightblue;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    /* background: red; */
    /* background: #366192; */
    border-radius: 10px;
    border: 2px solid #366192;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    /* background: #b30000; */
    background: #366192;
}

body {
    font-family: Avenir, Helvetica, sans-serif, Arial;
    font-size: larger;
    background-color: black;
    color: white;
}


.app-frame {
    width: 80%;
    margin: auto;
}



.nav-main {
    width: 100%;
    height: 45px;
    top: 0px;
    background-color: #366192;
    display: flex;
    margin: auto;
}

.items-container {
    width: auto;
    margin: auto;
    display: flex;
}

.menu-item {
    font-size: 20px;
    color: white;
    padding: 10px;
}


.items-link {
    color: white;
    text-decoration: none;
}

/* .menu-item:hover { */
.items-link:hover {
    cursor: pointer;
    border: none;
    font-size: 24px;
    color: lightblue;
    padding-top: 5px;
    text-decoration: underline;
    letter-spacing: 2px;
}


.secondary-title {
    text-align: center;
    letter-spacing: 2px;
    font-weight: lighter;
    margin-top: 40px;
    margin-bottom: 2px;
    font-size: 30px;
}

.main-text {
    margin-top: 5px;
    text-align: justify;
    padding: 5px;
    font-weight: lighter;
}
/* 
.main-text:hover {
    background-color: #366192;
    color: white;
    font-style: italic;
    box-shadow: 10px 10px rgb(78, 77, 77);
} */

.characteristics-text {
    margin-top: 20px;
    text-align: justify;
    padding: 5px;
    font-weight: lighter;
    font-size: medium;
}

/* 
.characteristics-text:hover {
    background-color: #366192;
    color: white;
    font-style: italic;
    box-shadow: 10px 10px rgb(78, 77, 77);
} */




.tabs {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: auto;
    padding: 5px;
}

.tabs input[type="radio"] {
    /* quita los puntos del radio button */
    display: none;
}

/* 
.tabs label {
    padding: 10px;
    background-color: white;
    border: 1px solid lightblue;
    font-weight: bold;
    margin-left: 1px;
} */

.tabs label {
    padding: 10px;
    background-color: black;
    /* border: 1px solid lightblue; */
    border: none;
    font-weight: bold;
    margin-left: 1px;
}

/* 
.tabs .tab {
    width: 100%;
    padding: 20px;
    background-color: white;
    order: 1;
    display: none;
    border-radius: 10px;
} 
 */


.tabs .tab {
    width: 100%;
    padding: 20px;
    background-color: black;
    order: 1;
    /*esto pone los tab horizontales arriba */
    display: none;
    /*oculta el tab*/
    border-radius: 10px;
}


.tabs .tab h2 {
    font-size: 20px;
    margin-top: 5px;
}

.tabs input[type="radio"]:checked+label+.tab {
    display: block;
    /*muestra el tab*/
}

.tabs input[type="radio"]:checked+label {
    /* background-color: lightblue; */
    border: none;
    border-bottom: 2px solid lightblue;
}

.lbl {
    cursor: pointer;
    border-radius: 5px;
    font-size: medium;
    font-weight: lighter;
    
}

.lbl:hover{
    border: 1px solid lightblue;
}


.brochure-container {
    text-align: center;
    margin-top: 20px;
}

.brochure-imagen {
    width: 90%;
}




.container {
    position: relative;
    text-align: center;
    width: 100%;
}

.img {
    width: 100%;
    margin: auto;
    border-radius: 10px;
}

.center-top {
    position: absolute;
    top: 50px;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}

.main-title {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    text-align: center;
    font-size: 70px;
    color: whitesmoke;
    width: 100%;
}


.social {
    width: 50px;
}



.modal {
    width: 100vw;
    height: 100vh;

    position: fixed;
    top: 0px;
    left: 0px;

    text-align: center;
    background-color: rgba(128, 128, 128, 0.4);

    z-index: 6;
}


.modal-contenido {

    min-width: 50%;
    max-width: 80%;

    width: auto;
    height: 50%;

    background-color: lightgoldenrodyellow;
    border-radius: 10px;
    box-shadow: 7px 7px black;

    display: table;
    overflow-y: scroll;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.modal-texto {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 15px;

    font-size: 14px;

    display: table-cell;
    vertical-align: middle;

    /* adicional */
    /* width: 80%; */
    /* overflow-x: scroll; */
    color:black;
}



.button-red {
    background-color: red;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;

}

.button-red:hover {
    background-color: rgb(200, 3, 3);
}


.button-blue {
    background-color: rgb(76, 145, 190);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;

}

.button-blue:hover {
    background-color: rgb(25, 110, 167);
}


.button-green {
    background-color: #04BD69;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;

}

.button-green:hover {
    background-color: rgb(5, 215, 120);
}


.button-yellow {
    background-color: darkorange;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 5px;
    cursor: pointer;

}

.button-yellow:hover {
    background-color: rgb(249, 166, 64);
}


.button-black {
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;

}

.button-black:hover {
    background-color: rgb(48, 47, 47);
}


.button-gray {
    background-color: gray;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
}

.button-gray.hover {
    background-color: rgb(69, 67, 67);
}


/* titulo web page */

.titulo-web{
    font-family:monospace;
}



@media screen and (max-width:768px) {
    .app-frame {
        width: 95%;
    }

    .brochure-imagen {
        width: 100%;
    }

    .center-top {
        top: 20px;
    }

    .img {
        width: 100%;
        margin: auto;
    }

    .main-title {
        width: 100%;
        font-size: 20px;
    }

    .social {
        width: 80px;
    }

    .modal-contenido {
        width: 92%;
        height: 70%;
    }
}