@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/*******************************/
/** Definicion de Variables   **/
/*******************************/
:root {
    --blanco: #ffffff;
    --oscuro: #212121;
    --claro: #e6e6e6;
/*    --primario: #FFC107;*/
    --primario: #FF6C0E;
    --primario_hover: #fd924d;
/*    --secundario: #0097A7;*/
    --secundario: #0071CE;
    --gris: #757575;
    --gris_oscuro: #363636;
    
    /** Colores montuln
        rgb(0, 0, 0);
        rgb(62, 62, 62);
    **/
    --alto_boton: 4rem;
    --fuente_boton: 1.4rem;
}

/*******************************/
/** Limpieza de estilos       **/
/*******************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
/*    font-family: 'Josefin Sans', sans-serif;*/
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
    /** 1rem=10px **/
    width: 100%;
    /* overflow: ; */
}

body {  
    margin: 0 auto;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.6rem;
/*    border: 3px solid red;*/
/*    max-width: 144rem;*/
}

::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
    color: black;
}

.mayusc {
    text-transform: uppercase;
}

.minusc {
    text-transform: lowercase;
}

#conten_general {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    height: 100%;
/*    overflow: hidden;*/
}

/* #################################################################### */
/* #################################################################### */
/* CONTENEDOR SUPERIOR   */
/* #################################################################### */
/* #################################################################### */
#conten_sup {
    width: 100%;
    height: 7rem;
    position: sticky;
/*    height: 3.5rem;*/
    background-color: var(--blanco);
    z-index: 13;
    display: flex;
    justify-content: space-between;
    transition: all .5s;
}

@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
    
}

@media (min-width: 700px) {
    #conten_sup {  
/*
        position: sticky;
        height: 5rem;
        background-color: var(--blanco);
        z-index: 13;
        display: flex;
        transition: all .5s;
        border: 5px solid black;
*/
    }
}


#chk_menu_responsivo {
    display: none;   
}

.icon_menu_responsivo {
    display: block;
    margin-top: 1rem;
    font-size: 5rem;
    color: #7b7b7b;
}

@media (min-width: 700px) {
    .icon_menu_responsivo {
        display: none;   
    }
}

#conten_sup_izq {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
/*    border: 1px solid red;*/
}

@media (min-width: 700px) {
    #conten_sup_izq {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 20%;
/*        margin-left: 1rem;*/
    }
}

#conten_sup_izq a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}


@media (min-width: 700px) {
    #conten_sup_izq a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        position: relative;
/*        display: flex;*/
/*        width: 50%;*/
/*        height: auto;*/
    }
}

#conten_sup_izq img {
    display: flex;
/*    justify-content: center;*/
/*    align-items: center;*/
    text-align: center;
    width: 50%;
/*    width: auto;*/
/*    height: 100%;*/
}


@media (min-width: 700px) {
    #conten_sup_izq img {
        display: flex;
        max-width: 45px;
        width: 60%;
        height: auto;
    }
}


#conten_sup_der {
/*    width: 8rem;*/
/*    border: 1px solid green;*/
    display: flex;
    justify-content: space-between;
}

@media (min-width: 700px) {
    #conten_sup_der {
        width: 80%;
        display: flex;
        justify-content: center;
    }
}

#conten_sup_der_sup {
/*    border: 1px solid orange;*/
    width: 20%;
    height: 100%;
    
    display: flex;
    justify-content: center;
    align-items: center;
/*    align-items: flex-end;*/
/*    justify-content: flex-end;*/
}

@media (min-width: 700px) {
    #conten_sup_der_sup {
/*        margin-right: 5%;*/
/*        width: 100%;*/
/*        height: 100%;*/
/*        margin-right: 5%;*/
/*        display: flex;*/
/*        align-items: flex-end;*/
/*        justify-content: flex-end;*/
    }
}

#conten_sup_der_sup a {
/*    margin-left: 2%;*/
/*    margin-right: 2%;*/
    margin: 0rem 2rem;
}

@media (min-width: 700px) {
    #conten_sup_der_sup a:last-child {
/*        margin-right: 2rem;   */
    }
}
    
#conten_sup_der_sup img {
    height: 2.5rem;
    width: 2.5rem;
    margin-right: 4%;
    margin-top: .5rem;
/*    border: 1px solid red;*/
/*    filter: grayscale(1);*/
}


@media (min-width: 391px) {
/*
    #conten_sup_der_sup img {
        height: 1.5rem;
        width: 1.5rem;
    }
*/
}

@media (min-width: 700px) {
    #conten_sup_der_sup img {
        height: 2.5rem;
        width: 2.5rem;
    }
}

@media (min-width: 700px) {
    #conten_sup_der_sup img:hover {
        cursor: pointer;
    /*    filter: grayscale(0);*/
        transition: all .4s;
    }
}


@media (min-width: 1200px) {
    #conten_sup_der_sup img {
        height: 2.5rem;
        width: 2.5rem;
    }
}

@media (min-width: 1441px) {
    #conten_sup_der_sup img {
        height: 3.5rem;
        width: 3.5rem;
    }
}


#conten_sup_der_inf {
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    margin-left: -100%;
    margin-top: 7.1rem;
/*    top: 3rem;*/
    z-index: 1;
    background-color: white;
    transition: all 0.4s;
/*    border: 5px solid red;*/
}

@media (min-width: 700px) {
    #conten_sup_der_inf {
        display: flex;
        align-items: center;
        position: relative;
/*        width: 89%;*/
/*        height: 50%;*/
/*        height: 3rem;*/
/*        border: 1px solid red;*/
        margin-top: 0rem;
        top: 0;
/*        justify-content: flex-start;*/
        margin-left: 0%;
        transition: all 0.4s;
    }
}

.icono_home {
    display: none;
}

@media (min-width: 700px) {
    .icono_home {
        display: flex;
        font-size: 3rem;
        color: #0f0f7e;
    }
}    

@media (min-width: 700px) {
    .icono_home:hover {
        cursor: pointer;
        color: red;
        transition: all .4s;
    }
}

/* Menu principal */
.nav_menu_principal {
    z-index: 1;
    display: flex;
    width: 100%;
    background-color: var(--blanco);
/*    border: 1px solid red;*/
}

/* Tamaño Iphone */

@media (min-width: 700px) {
    .nav_menu_principal {
        z-index: 1;
        display: flex;
        height: 100%;
/*        width: 85%;*/
    }
}

.nav_menu_principal ul {
    display: block;
    justify-content: center;
    width: 100%;
/*    border: 5px solid black;*/
}

@media (min-width: 700px) {
    .nav_menu_principal ul {
        display: flex;
        height: 100%;
    }
}

.opc_menu {
    list-style: none;
    padding-left: 1rem;
/*    border: 5px solid red;*/
}

@media (min-width: 700px) {
    .opc_menu {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
        height: 100%;
        
/*        padding-left: 0rem;*/
    }
}

.opc_menu label {
    border-bottom: 1px solid #e2e2e2;
    padding: 1rem 1rem;
    font-size: 1.4rem;
    display: flex;
    width: 100%;
    height: 4rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 2px solid white;
}

@media (min-width: 700px) and (max-width: 800px) {
    .opc_menu label {
        border-bottom: none;
        padding: .5rem .5rem;
/*        padding: .1rem .1rem;*/
        font-size: 1rem;
        display: flex;
        width: 100%;
        height: auto;
/*        height: 3rem;*/
    }
}

@media (min-width: 801px) and (max-width: 890px) {
    .opc_menu label {
        border-bottom: none;
        padding: .5rem .5rem;
/*        padding: .1rem .1rem;*/
        font-size: 1.2rem;
        display: flex;
        width: 100%;
/*        height: 3rem;*/
    }
}

@media (min-width: 891px) and (max-width: 1120px) {
    .opc_menu label {
        border-bottom: none;
        padding: .5rem .5rem;
/*        padding: .1rem .1rem;*/
        font-size: 1.4rem;
        display: flex;
        width: 100%;
/*        height: 3rem;*/
    }
}

@media (min-width: 1121px) and (max-width: 1179px) {
    .opc_menu label {
        border-bottom: none;
/*        padding: .1rem .1rem;*/
        font-size: 1.6rem;
        display: flex;
        width: 100%;
/*        height: 3rem;*/
    }
}

@media (min-width: 1180px) and (max-width: 1380px) {
    .opc_menu label {
        border-bottom: none;
/*        padding: .1rem .1rem;*/
        font-size: 1.7rem;
        display: flex;
        width: 100%;
/*        height: 3rem;*/
    }
}

@media (min-width: 1381px) and (max-width: 1550px) {
    .opc_menu label {
        border-bottom: none;
/*        padding: .1rem .1rem;*/
        font-size: 1.8rem;
        display: flex;
        width: 100%;
/*        height: 3rem;*/
    }
}

@media (min-width: 1550px) and (max-width: 3000px) {
    .opc_menu label {
        border-bottom: none;
/*        padding: .1rem .1rem;*/
        font-size: 2rem;
        display: flex;
        width: 100%;
/*        height: 3rem;*/
    }
}





/*
@media (max-width: 700px) {
    .opc_menu label {
        border-bottom: none;
        padding: .1rem .1rem;
        font-size: 1rem;
        display: flex;
        width: 100%;
        height: 3rem;
    }
}
*/

/*
@media (min-width: 700px) {
    .opc_menu label {
        border-bottom: none;
        padding: .5rem .5rem;
        font-size: 1.3rem;
        display: flex;
        width: 100%;
        height: 3rem;
    }
}
*/

/*
@media (min-width: 1000px) {
    .opc_menu label {
        font-size: 1.4rem;
    }
}
*/

.opc_menu label:hover {
    cursor: pointer;
/*    transition: all .1s;*/
    border-bottom: 2px solid red;
}

@media (min-width: 700px) {
    .opc_menu ul li label {
        padding: .5rem .5rem;
        font-size: 1.4rem;
        display: flex;
        width: 100%;
    }
}


@media (min-width: 700px) {
    .opc_menu {
        list-style: none;
        padding: .5rem .5rem;
        font-size: .9rem;
    }
}


@media (min-width: 820px) {
    .opc_menu {
        list-style: none;
        padding: .5rem .5rem;
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .opc_menu {
        list-style: none;
        padding: .5rem .5rem;
        font-size: 1.2rem;
    }
}

@media (min-width: 1280px) {
    .opc_menu {
        list-style: none;
        padding: .5rem 1rem;
        font-size: 1.5rem;
    }
}

@media (min-width: 1441px) {
    .opc_menu {
        list-style: none;
        padding: .5rem .5rem;
        font-size: 1.9rem;
    }
}

@media (min-width: 1500px) {
    .opc_menu {
        list-style: none;
        padding: .5rem 1rem;
        font-size: 2rem;
    }
}

@media (min-width: 1630px) {
    .opc_menu {
        list-style: none;
        padding: .5rem 1rem;
        font-size: 2.2rem;
    }
}

.opc_menu ul {
    position: relative;
    list-style: none;
    font-size: 2rem;
    display: none;
    z-index: 1;
    background-color: white;
    padding: 0rem 3rem 0rem 1rem;
}

@media (min-width: 700px) {
    .opc_menu ul {
        position: absolute;
        list-style: none;
        font-size: 2rem;
        display: none;
        z-index: 1;
        background-color: white;
        padding: 1rem 1rem 1rem 1rem;
        width: auto;
        height: auto;
        border-right: 1px solid #e2e2e2;
        border-bottom: 1px solid #e2e2e2;
    }    
}

.opc_menu ul li {
    color: black;
    padding: .5rem;
}

@media (min-width: 700px) {
    .opc_menu ul li:hover {
        color: red;
        transition: all .4s
    }
}

.opc_menu:hover > ul {
    display: block;
}

    .nav_opc_submenu {
        margin-top: 0rem;
    }

    @media (min-width: 700px) {
        .nav_opc_submenu {
            margin-top: 17rem;
        }
    }

    .nav_opc_submenu li a label {
        font-size: 1.3rem;
    }

    @media (min-width: 700px) {
        .nav_opc_submenu li a label {
            font-size: 1.7rem;
        }
    }

/* #################################################################### */
/* #################################################################### */
/* CONTENEDOR CENTRAL   */
/* #################################################################### */
/* #################################################################### */
#conten_cen {
    width: 100%;
}


/* #################################################################### */
/* #################################################################### */
/* CONTENEDOR INFERIOR   */
/* #################################################################### */
/* #################################################################### */
#conten_inf {
    margin-top: .5rem;
    display: flex;
    width: 100%;
}

@media (min-width: 700px) {
    #conten_inf {
        margin-top: 2rem;
        display: flex;
        width: 100%;
    }
}


/* ################################## */
/* ################################## */
/* Seccion de la seccion pie pagina   */
/* ################################## */
/* ################################## */
#conten_pie_pagina_principal {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
/*    background-color: #0F218C;*/
    font-size: 1.5rem;
}

@media (min-width: 700px) {
    #conten_pie_pagina_principal {
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
/*        background-color: #0F218C;*/
        font-size: 1.8rem;
    }
}

#conten_pie_pagina_principal nav ul li {
    list-style: none;
    padding: .3rem;
    color: white;
}

#conten_col1_pie {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

@media (min-width: 700px) {
    #conten_col1_pie {
        margin-top: 0rem;
        min-width: 31%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

    #conten_col1_pie img {
    /*    max-width: */
        width: 40%;
        max-width: 30px;
    }

    @media (min-width: 700px) {
        #conten_col1_pie img {
/*            max-width: 28rem;*/
            width: 60%;
            max-width: 60px;
        }
    }

#conten_col2_pie a,
#conten_col3_pie a, 
#conten_col4_pie a {
    text-decoration: none;
    color: white;
}

#conten_col2_pie {
    font-size: 1.2rem;
    padding: 1rem;
    width: 33.33%;
}

@media (min-width: 700px) {
    #conten_col2_pie {
        font-size: 1.5rem;
        padding: 2rem;
        min-width: 23%;
    }
}

#conten_col3_pie {
    font-size: 1.2rem;
    padding: 1rem;
    width: 33.33%;
}

@media (min-width: 700px) {
    #conten_col3_pie {
        font-size: 1.5rem;
        padding: 2rem;
        min-width: 23%;
    }
}

@media (min-width: 700px) {
    #conten_col3_pie {
        font-size: 1.5rem;
        padding: 2rem;
        min-width: 23%;
    }
}

#conten_col4_pie {
    font-size: 1.2rem;
    padding: 1rem;
    width: 33.33%;
}

@media (min-width: 700px) {
    #conten_col4_pie {
        font-size: 1.5rem;
        padding: 2rem;
        min-width: 23%;
    }
}
/**--------------------------------------------------------------**/
/**@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@**/
/**##############################################################**/
/** INICIO Estilo Ventana Modal Procesando **/
/**##############################################################**/
/**@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@**/
/**--------------------------------------------------------------**/
#contenedor_procesando {
    background-color: rgb(0, 0, 0,.2);
    position: fixed;
    height: 100%;
    width: 100%;
    display: flex;
    visibility: hidden;
    z-index: 50;
}

#contenedor_imagen_procesando {
    margin: 0 auto;
    align-self: center;
    position: relative;
}

#contenedor_imagen_procesando img {
    width: 100%;
}
/**--------------------------------------------------------------**/
/**@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@**/
/**##############################################################**/
/** FIN Estilo Ventana Modal Procesando **/
/**##############################################################**/
/**@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@**/
/**--------------------------------------------------------------**/


/**--------------------------------------------------------------**/
/**@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@**/
/**##############################################################**/
/** INICIO Estilo En Mantencion **/
/**##############################################################**/
/**@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@**/
/**--------------------------------------------------------------**/
#conten_manten {
    display: flex;
    position: relative;
}


#conten_manten_img img {
    width: 100%;
}

#conten_manten_redes_sociales {
    position: absolute;
    display: flex;
    justify-content: space-around;
/*    height: 3rem;*/
    width: 20rem;
    right: 5%;
    top: 5%;
}

#conten_manten_redes_sociales img {
    width: 5rem;
    height: 5rem;
    transition: all .3s;
}

@media (min-width: 700px) {
    #conten_manten_redes_sociales img:hover {
        cursor: pointer;
        transform: scale(1.2);
    }
}
/**--------------------------------------------------------------**/
/**@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@**/
/**##############################################################**/
/** FIN Estilo En Mantencion **/
/**##############################################################**/
/**@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@**/
/**--------------------------------------------------------------**/


/* ################################################## */
/* ################################################## */
/* -------------------------------------------------- */
/* ------------ SLIDER  --------------------- */
/* -------------------------------------------------- */
/* ################################################## */
/* ################################################## */    
#contenedor_slider {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    height: 0;
    padding-bottom: 34%;
/*    border: 5px solid blue;*/
    max-width: 1440px;
}

/*
#contenedor_slider img {
    width: 100%;
}
*/

#contenedor_slider ul {
    position: relative;
    margin: auto;
}

#contenedor_slider ul li {
   float: left;
    
}

#contenedor_slider ul li img {
    width: 100%;
    max-width: 1440px;
}

.captionRight {
    position: absolute;
    top: 0;
    margin-left: 16%;
    margin-top: 5%;
    font-size: 1em;
    color: black;
    cursor: pointer;
    width: 16%;
    text-align: center;
}

.captionLeft {
    position: absolute;
    top: 0;
    margin-left: 0%;
    margin-top: 5%;
    color: black;
    cursor: pointer;
    width: 15%;
    text-align: center;
}

#contenedor_slider .captionRight h1 {
    padding: -5px 0;
    font-size: 4.7vw;
    font-weight: lighter;
    color: black;
}

 #contenedor_slider .captionLeft h1 {
    padding: -5px 0;
    font-size: 4.7vw;
    font-weight: lighter;
}

#contenedor_slider .captionRight h3 {
    padding-bottom: 10px 0;
    font-size: 1.2em;
    font-weight: lighter;
}

#contenedor_slider .captionLeft h3 {
    padding-bottom: 10px 0;
    font-size: 1.2em;
    font-weight: lighter;
}


#indicador_imagen {
    position: absolute;
    width: 100%;
    margin: auto;
    font-size: 15px;
    text-align: center;
    top: 85%;
    color: white;
}

@media (min-width: 700px) {
    #indicador_imagen {
        position: absolute;
        width: 100%;
        margin: auto;
        font-size: 25px;
        text-align: center;
        top: 90%;
        color: white;
    }
}

@media (min-width: 1440px) {
    #indicador_imagen {
        position: absolute;
        width: 100%;
        margin: auto;
        font-size: 25px;
        text-align: center;
        top: 92%;
        color: white;
    }
}

#indicador_imagen li {
    display: inline-block;
    margin: 0px 5px;
    cursor: pointer;
    opacity: 0.5;
    text-shadow: 0px 0px 5px black;
}

#indicador_imagen li:first-child {
    opacity: 1;
}

#btn_prev {
    position: absolute;
    top: 45%;
    font-size: 3rem;
    color: #bcbbbb;
    transition: all .4s;
    left: 0%;
}

@media (min-width: 700px) {
    #btn_prev {
        position: absolute;
        top: 50%;
        font-size: 5rem;
        color: #bcbbbb;
        transition: all .4s;
        left: 0%;
    }
}

#btn_next {
    position: absolute;
    top: 45%;
    font-size: 3rem;
    color: #bcbbbb;
    transition: all .4s;
    right: 0%;
}

@media (min-width: 700px) {
    #btn_next {
        position: absolute;
        top: 50%;
        font-size: 5rem;
        color: #bcbbbb;
        transition: all .4s;
        right: 0%;
    }
}

@media (min-width: 700px) {
    #btn_next:hover {
        color: #9d9d9d;
        transform: scale(1.2);
        cursor: pointer;
    }
}

@media (min-width: 700px) {
    #btn_prev:hover {
        color: #9d9d9d;
        transform: scale(1.2);
        cursor: pointer;
    }
}


/*##################################################*/
/*##################################################*/
/*########### FIN slider ###########*/
/*##################################################*/
/*##################################################*/    

#conten_up_down {
    position: fixed;
    right: 3rem;
    bottom: 8rem;
    transition: all .3s;
    display: none;
}

#conten_up_down {
    padding: .5rem .5rem .1rem .5rem;
    background-color: rgba(141, 141, 141, 0.9);
    color: white;
    border-radius: .3rem;
    font-size: 3rem;
}

#conten_up_down:hover {
    cursor: pointer;
    background-color: var(--primario);
}

#conten_video_youtube {
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 56.2%;
    width: 100%;
}

.video_url_youtube {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 700px) {
    .video_url_youtube {
        
/*        width: 800px;*/
/*        max-width: 98%;*/
/*        height: 450px;*/
    }
}
    
.linea_division_ploma {
    display: flex;
    width: 100%;
    background-color: #d8d8d8;
    height: 1px;
    margin-top: 3rem;
    margin-bottom: 3rem;
    
}


@media (min-width: 700px) {
    .linea_division_ploma {
        display: flex;
        width: 100%;
        background-color: #d8d8d8;
        height: 1px;
    }
}




/* Contenedor de todos los mensajes */
#conten_mensaje_info {
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    right: 2rem;
    width: 31rem;
    min-height: 6rem;
    top: 6.7rem;
    z-index: 0;
}

/* ################################################################# */
/* ################################################################# */
/* Inicio del contenedor del cuadro de mensaje CORRECTO */
/* ################################################################# */
/* ################################################################# */
.conten_cuadro_mensaje_info_correcto {
    display: flex;
    flex-wrap: nowrap;
    min-height: 3rem;
    padding: .5rem 3rem .5rem .5rem;
    background-color: #4fc74f;
    opacity: .8;
    position: relative;
    margin: .5rem;
}

    /* Label X cerrar */
    .conten_cuadro_mensaje_info_correcto .icono_cerrar_modal_mensaje_info {
        display: flex;
        transform: scaleX(1.2);
        position: absolute;
        right: .8rem;
        top: 0rem;
        font-size: 2rem;
        font-weight: 100;
        color: #f4f4f4;
        transition: all .3s;
    }

    .conten_cuadro_mensaje_info_correcto .icono_cerrar_modal_mensaje_info:hover {
        color: #a2a2a2;
        cursor: pointer;
    }

    /* Contenedor icono de informacion */
    .conten_cuadro_mensaje_info_correcto .conten_span_icono_info_izq {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        width: 4rem;
    }

        /* Icono de informacion */
        .conten_cuadro_mensaje_info_correcto .conten_span_icono_info_izq span {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
            font-size: 2.4rem;
            color: #f4f4f4;
        }

    /* Contenedor texto de informacion */
    .conten_cuadro_mensaje_info_correcto .conten_texto_info_der {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

        /* Texto de informacion */
    .conten_cuadro_mensaje_info_correcto .conten_texto_info_der label{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        font-size: 1.4rem;
        padding: .5rem;
        color: #f4f4f4;
    }
/* ################################################################# */
/* ################################################################# */
/* ################################################################# */
/* ################################################################# */
/* ################################################################# */        


/* ################################################################# */
/* ################################################################# */
/* Inicio del contenedor del cuadro de mensaje ERROR */
/* ################################################################# */
/* ################################################################# */
.conten_cuadro_mensaje_info_error {
    display: flex;
    flex-wrap: nowrap;
    min-height: 5rem;
    padding: .5rem 3rem .5rem .5rem;
    background-color: rgb(191, 8, 8);
    opacity: .7;
    position: relative;
    margin: .2rem .5rem .2rem .5rem;
}

    /* Label X cerrar */
    .conten_cuadro_mensaje_info_error .icono_cerrar_modal_mensaje_info {
        display: flex;
        transform: scaleX(1.2);
        position: absolute;
        right: .8rem;
        top: 0rem;
        font-size: 2rem;
        font-weight: 100;
        color: #f4f4f4;
        transition: all .3s;
    }

    .conten_cuadro_mensaje_info_error .icono_cerrar_modal_mensaje_info:hover {
        color: #a2a2a2;
        cursor: pointer;
    }

    /* Contenedor icono de informacion */
    .conten_cuadro_mensaje_info_error .conten_span_icono_info_izq {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        width: 4rem;
    }

        /* Icono de informacion */
        .conten_cuadro_mensaje_info_error .conten_span_icono_info_izq span {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
            font-size: 2.4rem;
            color: #f4f4f4;
        }

    /* Contenedor texto de informacion */
    .conten_cuadro_mensaje_info_error .conten_texto_info_der {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

        /* Texto de informacion */
    .conten_cuadro_mensaje_info_error .conten_texto_info_der label{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        font-size: 1.4rem;
        padding: .5rem;
        color: #f4f4f4;
    }
/* ################################################################# */
/* ################################################################# */
/* ################################################################# */
/* ################################################################# */
/* ################################################################# */     



/* ################################################################# */
/* ################################################################# */
/* Inicio del contenedor del cuadro de mensaje CORRECTO */
/* ################################################################# */
/* ################################################################# */
.conten_cuadro_mensaje_info_advertencia {
    display: flex;
    flex-wrap: nowrap;
    min-height: 3rem;
    padding: .5rem 3rem .5rem .5rem;
    background-color: #de6c25;
    opacity: .7;
    position: relative;
    margin: .5rem;
}

    /* Label X cerrar */
    .conten_cuadro_mensaje_info_advertencia .icono_cerrar_modal_mensaje_info {
        display: flex;
        transform: scaleX(1.2);
        position: absolute;
        right: .8rem;
        top: 0rem;
        font-size: 2rem;
        font-weight: 100;
        color: #f4f4f4;
        transition: all .3s;
    }

    .conten_cuadro_mensaje_info_advertencia .icono_cerrar_modal_mensaje_info:hover {
        color: #a2a2a2;
        cursor: pointer;
    }

    /* Contenedor icono de informacion */
    .conten_cuadro_mensaje_info_advertencia .conten_span_icono_info_izq {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        width: 4rem;
    }

        /* Icono de informacion */
        .conten_cuadro_mensaje_info_advertencia .conten_span_icono_info_izq span {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
            font-size: 2.4rem;
            color: #f4f4f4;
        }

    /* Contenedor texto de informacion */
    .conten_cuadro_mensaje_info_advertencia .conten_texto_info_der {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

        /* Texto de informacion */
    .conten_cuadro_mensaje_info_advertencia .conten_texto_info_der label{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        font-size: 1.4rem;
        padding: .5rem;
        color: #f4f4f4;
    }
/* ################################################################# */
/* ################################################################# */
/* ################################################################# */
/* ################################################################# */
/* ################################################################# */        





/* ################################################################# */
/* ################################################################# */
/* Inicio del contenedor del cuadro de mensaje INFORMACION */
/* ################################################################# */
/* ################################################################# */
.conten_cuadro_mensaje_info_informacion {
    display: flex;
    flex-wrap: nowrap;
    min-height: 3rem;
    padding: .5rem 3rem .5rem .5rem;
    background-color: #79d2ff;
    opacity: .8;
    position: relative;
    margin: .5rem;
}

    /* Label X cerrar */
    .conten_cuadro_mensaje_info_informacion .icono_cerrar_modal_mensaje_info {
        display: flex;
        transform: scaleX(1.2);
        position: absolute;
        right: .8rem;
        top: 0rem;
        font-size: 2rem;
        font-weight: 100;
        color: #f4f4f4;
        transition: all .3s;
    }

    .conten_cuadro_mensaje_info_informacion .icono_cerrar_modal_mensaje_info:hover {
        color: #a2a2a2;
        cursor: pointer;
    }

    /* Contenedor icono de informacion */
    .conten_cuadro_mensaje_info_informacion .conten_span_icono_info_izq {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        width: 4rem;
    }

        /* Icono de informacion */
        .conten_cuadro_mensaje_info_informacion .conten_span_icono_info_izq span {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            font-size: 2.4rem;
            color: #f4f4f4;
        }

    /* Contenedor texto de informacion */
    .conten_cuadro_mensaje_info_informacion .conten_texto_info_der {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

        /* Texto de informacion */
    .conten_cuadro_mensaje_info_informacion .conten_texto_info_der label {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        font-size: 1.4rem;
        padding: .5rem;
        color: #001d2c;
    }
/* ################################################################# */
/* ################################################################# */
/* ################################################################# */
/* ################################################################# */
/* ################################################################# */     








/* ====================================================== */
/*                      TOOLTIP                           */
/* ====================================================== */

/* Tooltip text */
.tooltiptexturl {
    visibility: hidden;
    color: white;
    position: absolute;
    margin-top: 1.7rem;
    margin-left: -.4rem;
    text-align: center;
    overflow-wrap: normal;
    white-space: nowrap;
    display: flex;
    padding: .3rem .5rem;
    width: auto;
    align-items: center;
    justify-content: center;
    background-color: rgb(38, 38, 38, 0.9);
    font-size: 1rem;
}
















/*conten_texto_info_der*/


/*
    .conten_cuadro_mensaje_info_informacion span:hover {
        cursor: pointer;
        border: 1px solid black;
*/
/*    }*/

    /* Texto central */
/*    .conten_cuadro_mensaje_info_informacion label:nth-child(1) {*/
/*
        
        font-size: 2.5rem;
        color: #f4f4f4;
        border: 1px solid black;
*/
/*    }*/

    /* Label cerrar */
/*
    .conten_cuadro_mensaje_info_informacion label:nth-child(2) {
        display: flex;
        transform: scaleX(1.2);
        position: absolute;
        right: .8rem;
        top: 0rem;
        font-size: 2rem;
        font-weight: 100;
        color: #f4f4f4;
    }
*/

/*
    .icono_cerrar_modal_mensaje_info {
        display: flex;
        transform: scaleX(1.2);
        position: absolute;
        right: .8rem;
        top: 0rem;
        font-size: 2rem;
        font-weight: 100;
        color: #f4f4f4;
    }

    .icono_cerrar_modal_mensaje_info:hover {
        cursor: pointer;
        color: #606060;
    }


.conten_span_icono_info_der {
    display: flex;
    padding: .5rem;
}

    .conten_span_icono_info_der label {
    }


.conten_cuadro_mensaje_info_correcto {
    background-color: #CBE6BF;
    color: green;
    font-weight: 300;
    min-height: 5rem;
    padding: .5rem 2rem .5rem .5rem;
    position: relative;
    margin: .5rem;
    border-radius: .5rem;
    box-shadow: 0px 0px 3px;
}

.conten_cuadro_mensaje_info_error {
    background-color: #E8C5C5;
    opacity: .8;
    color: #8d0000;
    font-weight: 300;
    min-height: 5rem;
    padding: .5rem 2rem .5rem .5rem;
    position: relative;
    margin: .5rem;
}

.conten_cuadro_mensaje_info_advertencia {
    background-color: #F9F2C9;
    color: #740c0c;
    min-height: 5rem;
    padding: .5rem 2rem .5rem .5rem;
    position: relative;
    margin: .5rem;
    border-radius: .5rem;
    box-shadow: 0px 0px 3px;
}



.descripcion_mensaje_info {
    font-size: 1.3rem;
    font-weight: bold;
}

.texto_mensaje_info {
    font-size: 1.2rem;
}


.barra_horizontal_mensaje_info_correcto {
    border: 2px solid green;
    position: absolute;
    margin-left: -.5rem;
    border-radius: .5rem;
    width: 100%;
    bottom: 0px;
}

.barra_horizontal_mensaje_info_error {
    border: 2px solid #8d0000;
    position: absolute;
    margin-left: -.5rem;
    border-radius: .5rem;
    width: 100%;
    bottom: 0px;
}

.barra_horizontal_mensaje_info_advertencia {
    border: 2px solid #740c0c;
    position: absolute;
    margin-left: -.5rem;
    border-radius: .5rem;
    width: 100%;
    bottom: 0px;
}

.barra_horizontal_mensaje_info_informacion {
    border: 2px solid #113111;
    position: absolute;
    margin-left: -.5rem;
    border-radius: .5rem;
    width: 100%;
    bottom: 0px;
}
*/


#conten_img_jugadores {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    margin-top: 20px;
    width: 100%;
    max-width: 1440px;
/*    border: 5px solid red;*/
}

    .conten_bloque_jugadores {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        width: 100%;
/*        border: 5px solid blue;*/
    }
    
        .titulo_bloque_jugadores {
            display: flex;
            justify-content: center;
            padding: 10px;
/*            border: 5px solid green;*/
            width: 100%;
            font-size: 35px;
            color: #585858;
            margin-top: 30px;
        }

        .conten_img_jugador {
            display: flex;
            position: relative;
            border: 3px solid #ff0000;
        }

        .conten_img_jugador img {
            display: flex;
            width: 150px;
            border: 3px solid #ffffff;
            box-shadow: 5px 5px 10px;
        }

        .conten_img_jugador label {
            justify-content: center;
            display: flex;
            width: 100%;
            position: absolute;
            background-color: rgba(219, 219, 219, .8);
            bottom: 0px;
            padding: 10px 5px 10px 5px;
            font-size: 13px;
        }


/* ####################### */
/* Sitio en mantencion */
/* ####################### */
#img_en_mantencion_1 {
    display: none;
}

#img_en_mantencion_2 {
    display: flex;
}

@media (min-width: 700px) {
    #img_en_mantencion_1 {
        display: flex;
    }
    
    #img_en_mantencion_2 {
        display: none;
    }
}
/* ####################### */
