/* Style the tab

Color Azul Nuevo Logo

Azul : #0e4a9d

*/
.tab {

    overflow-y: auto;
    /*border: 1px solid green;*/

}

.SelectedList {
    background-color: #0e4a9d;
    color: white !important;
    font-weight: bold;
}
 
.SelectedList:hover{
    background-color: #0e4a9d;
}

/* Style the buttons inside the tab */
.tab button {
    display: inline;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 10px;
    transition: 0.3s;
    /* font-size: medium;*/
    width: 33.3%;
    color: white !important;
    border-radius: 8px;
    background-color: #0e4a9d ; /* #0277BD */; 
    /* vertical-align: top;*/ 
    text-align: center;
    
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #58a5f0;

}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #58a5f0;
} 

/* Style the tab content */
.tabcontent {
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
    width: 100%;
   /* border: 1px solid red;*/
    /*overflow-y: scroll;*/
    height: 100%;
}

#Tab1{
    /*  border: 1px solid red;*/
    overflow-y: scroll;
    height: 95%;
}
#Tab2{
    /* border: 1px solid green;*/
    overflow-y: scroll;
    display: none;
}
#Tab3{
    /* border: 1px solid blue;*/
    overflow-y: scroll;
    display: none;
}


/* Listas de los Temas */
.tabcontent>ul {
    width: 100%;
    height: auto;
    border: 0px solid #179b77;
    text-align: left;
    padding: 1px;

}

.tabcontent>ul>li {

    width: 100%;
    border-top: 1px solid #CFD8DC;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    color: black !important;

    /* Required for text-overflow to do anything */
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden

}

.tabcontent>ul>li:hover {
    
    color: #1883ba;
    background-color: #ffffff;
    cursor: pointer;
    
}

/** Formaularios */

.cpa-form
{
    width: 100%;
    border: 0px solid red;
    font-size: 16px;
}

.form_textArea{
    width: 95%;
    border: 0px solid blue;
    font-size: 16px;
    text-align: center;
}

.form_UploadFile{
    width: 100%;
    height: auto;
    border: 0px solid blue;
} 


.TextAreaNuevo {
    padding: 10px;
    width: 99%;
    height: 100px;
    line-height: 1em;
    border-radius: 5px;
    border:1px solid #0277BD;
    font-size: 16px;
    color: black;
    font-weight: bold;
}

/* PErsonalizados */
.button-enviar-comentario {
    background-color: #0277BD;
    /* Green */
    border: none;
    color: white;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 2px;
    cursor: pointer;
    border-radius: 5px;
    width: 100px;
}

.button-enviar-comentario:hover {
    background-color: #58a5f0;
}

.button-enviar-comentario a {
    color: white;
}
/* Fade in tabs */
@-webkit-keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}