@import '../../r/r.css';

/*
* * * * *
* Configuracion general
* * * * * 
*/
html {overflow: hidden;}
body { background: #ffffff;}

/* SECTION - Footer */
    footer#footer {
        display: block;
        position: relative;
        z-index: 5;
        height: fit-content;
        width: 100%;
        background-color: #000000;
        padding: 0.3rem 1rem;
        margin-top: auto;
    }

    .ftr_2 {
        display: flex;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
        padding: 0.5rem 0;
        height: 100%;
        justify-content: center;
    }
    .ftr_2 a {
        color: #ffffff;
        margin: 0 0.7rem;
    }

    .ftr_1 {
        display: flex;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
        padding: 0.5rem 0;
        height: 100%;
        justify-content: space-evenly;
    }
    .ftr_1 a {color: #ffffff;}
    .ftr_1 figure {
        transform: translateY(4px);
    }
/* !SECTION - */

/*  */
    .p-05rem {padding: 0.5rem;}
    .p-1rem {padding: 1rem;}
    .pt-15 {padding-top: 1.5rem;}
    .p-2rem {padding: 2rem;}
    .p-3 {padding: 3rem;}
    .p-4 {padding: 4rem;}
    .p-5 {padding: 5rem;}
    .pt-1rem {padding-top: 1rem;}
    .pt-2rem {padding-top: 2rem;}
    .pt-3 {padding-top: 3rem;}
    .pt-4 {padding-top: 4rem;}
    .pt-5 {padding-top: 5rem;}
    .pl-5px {padding-left: 5px;}
    .pr-5px {padding-right: 5px;}
    .color-white {color: #fff;}
    .mt-8px {margin-top: 8px;}
    .font-weight-bold {font-weight: bold;}
    .font-gm { font-family: 'gm' !important; }
    .mt-03rem {margin-top: 0.3rem;} 
    .p5px {padding: 5px;}
    .align-content-center {align-content: center;}
    .align-items-center { align-items: center;}
    .align-i-l { align-items:start;}
    .justify-content-end {justify-content: end;}

/* SECTION - Datos generales */
    
    /* Corregido */
    .max-ancho
    {
        max-width: 1366px;
        display: block;
        width: 100%;
        margin:0 auto;
        padding: 0 3rem;
        box-sizing: border-box;
    }

    #scripts
    {
        display: none;
    }

    .wrapper {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        box-sizing: border-box;
        width: 100vw;
        min-height: 100%;
        height: max-content;
    }
    .wrapper-color {background-color: #f7f8fb;}

    .main
    {
        display: flex;
        box-sizing: border-box;
        padding: var(--alto-cabecera) 0 0 0;
        flex: 1;
    }

    .btn.mod-negro-hover-verde:hover, .btn.mod-negro-hover-verde-active
    {
        border-color: transparent;
        color: #ffffff;
        background-color: #1E2141;
    }
    .btn.btn-link-mod-verde
    {
        border-color: transparent;
        color: #ffffff;
        background-color: #1E2141;
        font-family: "gm";
        width: fit-content;
        padding: 0.4rem 1rem;
        height: auto;
        font-weight: bold;
        font-size: 0.9rem;
        letter-spacing: .05rem;
    }

    .btn.btn-link-mod-verde-oscuro {
        border-color: transparent;
        color: #ffffff;
        background-color: #00674f;
        font-family: "gm";
        width: fit-content;
        padding: 0.4rem 1rem;
        height: auto;
        font-weight: bold;
        font-size: 0.9rem;
        letter-spacing: .05rem;
    }

    .btn.btn-link-mod-negro
    {
        background-color: transparent;
        color: #000000;
        border-color: #000000;
    }

    .btn.btn-link-mod 
    {
        background-color: transparent;
        color: #ffffff;
        border-color: #ffffff;
    }
    .texto-verde
    {
        color:#1E2141
    }

/* !SECTION - */

/* SECTION - Menu Cabecera */
    aside#cuerpoMenu {
        padding-top: 2rem;
        position: fixed;
        width: 100vw;
        height: calc(100% - var(--alto-cabecera));
        z-index: 99999;
        background-color: rgba(255,255,255,.8);
        text-align: center;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: flex-start;
        align-items: stretch;
        bottom: 0;
        backdrop-filter: blur(4px);
        transform:translateX(101%);
        transition: transform 300ms ease-in-out;
    }

    aside#cuerpoMenu .columns .column a {
        padding: 0.4rem 0;
        width: 50%;
        display: block;
        font-size: 1rem;
        margin: .3rem auto;
        border-radius: 0.4rem;
        color: #3b3b3b;
        text-align: center;
    }
    nav#menu {
        width: 30px;
        height: 30px;
        cursor: pointer;
        display: inline-block;
        box-sizing: border-box;
        padding: 0.13rem;
        border-radius: 0.1rem;
        transition: padding 100ms ease-in-out;
        transition-property: border-radius,padding;
    }

    .contenedorLogoMenu {
        display: flex;
        width: 100%;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: space-between;
        align-items: center;
    }

    div#contenedorRayitas {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    div#contenedorRayitas span {
        background-color: #000000;
        width: 100%;
        height: 4px;
        display: block;
        margin: 2px 0;
        border-radius: 1rem;
    }

    nav#menu:hover {
        background-color: #f0f0f0;
        padding: 0.23rem;
        border-radius: 0.2rem;
    }

    .selected
    {
        color:#ababab !important;
        border: none;
        box-shadow: none !important;
    }
    #menu_desk .col-oneline a:hover
    {
        color:#1E2141;
    }
    #menu_desk .col-oneline a
    {
        color:#222222;
        height: 100%;
        padding: 0.4rem 0.5rem;
        border-radius: 5px;
    }
    #menu_desk .col-oneline
    {
        align-items: center;
        gap:1rem;
    }
    #cabecera
    {
        display: flex;
        width: 100%;
        height: var(--alto-cabecera);
        box-sizing: border-box;
        padding: 0.4rem;
        box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        z-index: 99;
        background-color:rgba(255,255,255,.9)
    }
    #cabecera_mobile
    {
        display: flex;
        width: 100%;
        height: var(--alto-cabecera);
        box-sizing: border-box;
        padding: 0.4rem;
        box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        z-index: 99;
        background-color:rgba(255,255,255,.9)
    }

    .contenedorLogoMenu figure 
    {
        height: 100%;
        width: auto;
    }

    .contenedorLogoMenu figure img 
    {
        height: 100%;
        width: auto;
        max-width: unset;
        max-height: 37px;
    }
/* !SECTION - */

/* SECTION - 05  */
    .box-main {
        display: flex;
        justify-content: center;
    }
    .box-main .box-main_left {
        text-align: left; 
        color: #fff;
        /*padding: 1rem 2rem;*/
    }
    .box-main .box-main_right {
        text-align: left;
    }
    .box-main .box-main_right .form-register {
        display: flex;
        flex-direction: column;
        background-color: #fff;
        border-radius: 10px;
        padding: 1rem 2rem;
        text-align: left;
        position: relative;
        overflow: hidden;
        width: 100%;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
    }
    .pt-1.d-flex-carga {
    display: flex;
    gap: 0 1rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

div#_cartelActualizar {
    /*
    flex: 1 0 100px;
    */
    flex: 1 0 350px;
    width: 100%;
}
.pt-1.d-flex-carga .form-group {
    flex: 1 0 118px;
    min-width: 250px;
}
.pt-1.cont-button_register {
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
}

.pt-1.cont-button_register input, .pt-1.cont-button_register button {
    min-width: 200px;
}

    .box-main .box-main_right .tittle-register {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 0rem 0;
    }
    .box-main .box-main_right .tittle-register span {
        color: var(--color-verde); 
        font-size: 1.5rem; 
        font-weight: bold;
        font-family: 'gm';
    }
    .box-main .box-main_right .tittle-register img {
        width: 55px;
    }
    .box-main .box-main_right .cont-legales {
        color: black;
    }
    .box-main .box-main_right .cont-button_register {
        text-align: center;
        padding: 2rem 0 1rem 0;
    }
/* !SECTION - */


.ftr_1_phone {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 5px;
}

.ftr_1_redes {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 5px;
}

/* ICONS */
.icon-linkedin {
    display: block;
    text-indent: -9999px;
    width: 15px;
    height: 15px;
    background: url('../../assets/icons/efis/linkedin.svg');
    background-repeat: no-repeat;
}

.icon-instagram {
    display: block;
    text-indent: -9999px;
    width: 15px;
    height: 15px;
    background: url('../../assets/icons/efis/instagram.svg');
    background-repeat: no-repeat;
}

.icon-tel {
    display: block;
    text-indent: -9999px;
    width: 15px;
    height: 15px;
    background: url('../../assets/icons/efis/tel.svg');
    background-repeat: no-repeat;
}

.icon-luz img { 
    width: 60px;
    margin-bottom: 0.2rem;
}

#comenzar_gestion .column-box-active {
        background-color: #FFFFFF;
    box-shadow: 0 0 0 1px #01BFC2;
}
#comenzar_gestion .column-box span {
    display: block;
}

.cg-columns {
    /*height: 150px; 
    align-items: center; 
    */
    display: flex;
    gap: 5px;
}
/*
.cg-columns-boxx {
    min-width: 120px;
}
*/
.cg-columns-boxx { width: -webkit-fill-available; }

.cg-columns-box { cursor: pointer; }

.cg-columns-box, .cg-columns-box-inactive {
    background-color: #262A50;
    height: max-content;
    align-content: center;
    transition: all .5s;
    width: calc(100% - .5rem - 5px);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    min-height: 210px;
    border-radius: 14px;
}
.cg-columns-box span, .cg-columns-box-inactive span {
    font-size: .85rem;
}
.cg-columns-box-inactive {
    padding-top: 0.5rem;
    pointer-events: none;
}

.cg-columns-box:hover {
    filter: contrast(1.5);
    
}



/* .dash-avatar {} */
.dash-avatar div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* FLEX */
    .dash-avatar_figure {
        border-radius: 100%;
        background-color: #ffffff;
        overflow: hidden;
        width: 80px;
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 0 0 4px #ffffff;
        position: relative;
        z-index: 2;
        top: 0;
        margin-bottom: 0;
        margin-top: 1rem;
    }
    .dash-avatar_figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
.dash-avatar_datos {
    height: 100%; 
    padding: 0 1rem;
    color: white;
}
.dash-resumen {
    align-content: space-between;
    position: relative;
    z-index: 1;
}
    .dash-resumen_select {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: auto;
        border-bottom: 1px solid #6fc3a9;
    }
        .dash-resumen_select figure {
            padding: 0 10px 0 0;
        }
        .dash-resumen_select select {
            width: 200px;
        }
    .dash-resumen_title {
        padding: 0 0 10px 10px;
        color: white;
    }
.dash-resumen_box {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: center;
}
.dash-resumen_card {
    padding: 0.5rem 0.2rem;
    flex:1 0 200px !important;
}

    .dash-resumen_card_cont {
        align-items: center;
        justify-content: center;
        height: 100%;
        background: #fff;
        border-radius: 5px;
        padding-top: 10px;
        position: relative;
        transition: box-shadow 300mslinear;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    
    .color-light-green
    {
        background-color: #E0FFEF;
    }
    .color-light-cyan
    {
        background-color: #DFF4F4;
    }
    .color-light-yellow
    {
        background-color: #FFFDD0;
    }
    .dash-resumen_card_cont figure
    {
        width: 70px;
        height: 70px;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        border-radius: 100%;
    }
    .dash-resumen_card_cont img 
    {
        width: 60%;
        max-width: 35px;
    }
    .dash-resumen_card_title {
        color: #1E2141;
    }
    .dash-resumen_card_price {
        color: #000
    }
.max-ancho-columns {
    max-width: 1024px;
    /* display: block; */
    width: 100%;
    margin: 0 auto;
}

#dash-box {
    height: 100%;
    position: relative;
    flex: 1 0 300px;
    width: 100%;
    background-color: #f7f8fb;
}
#dash-box .max-ancho-columns {
    margin-top: 2rem; 
    margin-bottom: 2rem;
}
#dash-box .dash-box_left_box-1 {
    background-color: #ffffff; 
    border: 1px solid #cdcdcd; 
    border-radius: 3px;
    height: 100%;
}
#dash-box .dash-box_left_box-1 img {
    width: 70px
}


.dash-box_right_header {
    height: fit-content;
    padding: 1.5rem 1rem 0;
    width: 100%;
}
.dash-box_right_actual {
    background-color: #ffffff;
}
.p-left_10px {
    padding-left: 10px;
}
.dash-box_right_list {
    align-items: center;
    padding: 0.5rem 1rem;
    text-align: left;
}
.dash-box_right_list figure {
    background-color: #1E2141; 
    height: 40px; 
    width: 40px;
}
.box_right_list_bottom {
    background-color: #1E2141; 
    border-radius: 15px; 
    padding: 7px 20px; 
    color: #fff;
    text-align: center;
}

.main-dash {
    display: block;
    width: 100vw;
    min-height: 100vh;
    height: fit-content;
    box-sizing: border-box;
    padding: var(--alto-cabecera) 0rem 0 0rem;
    background-color: var(--color-background-menu);
}


.dash-box_right_cols_card {
    border: 1px solid; 
    border-radius: 3px; 
    background-color: #e3fae3;
    min-width: 160px;
}

.dash-box_right_cols_cards {
    justify-content: center; 
    gap: 10px
}
.dash-box_right_cols_card {
    border-color: #cdcdcd;
}
.table {
/*    box-shadow: 0 0 10px 0 rgba(0,0,0,.2);*/
}
.table td .columns {
    min-height: 40px;
    align-items: center;
}
.color-ei-0
{
    color:#00AC4F !important;
}
.table td figure {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-color: transparent;
    border: none;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    box-shadow: 0 0 0 2px #E9EAFA;
    color: #E9EAFA;
}

#email, #contrasenia {margin-top: 0.3rem;}
#recuperar_contrasenia:hover{color: var(--color-verde);}
.cg-columns-box-name {
    font-weight: bold;
    padding: 0;
    margin: 0;
    display: inline-block;
    border-bottom: 1px solid;
    line-height: 2;
    font-size: .75rem;
}
.actualizar-datos-factura {
    font-size: 16px;
}
#link-carga:visited {
    color: #1E2141;
}
.titulo-h1  {
    font-size: 1rem;
}
.titulo-h3  {
    font-size: 16px;
}
.texto-verde-oscuro {
    color: #1E2141;
}

.dash-box1 {
    padding: 1rem 0;
}

/* Correcciones */

    .m-der {
        margin-right: 1rem;
    }

    /* LOGIN */
    .box-main_right {
        max-width: 600px;
    }

    /* Fin login*/

    /* Dashboard - Carga */

    section#comenzar_gestion {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        justify-content: space-around;
        align-items: center;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .box-main_left, .box-main_right {
        flex: 1 0 350px;
        z-index: 2;
    }

    .box-main_right {
        max-width: 800px;
    }


    .form-register .label {
        font-weight: bold;
    }

    #gestionar_tarifa select.form-select {
        color: #000000;
    }

    .header_gestion span, .header_gestion p {
        font-size: .9rem;
        color: var(--texto-gris);
    }

    .tarjeta_actualizar p, .tarjeta_actualizar div
    {
        position: relative;
        z-index:3;
    }
    .tarjeta_actualizar
    {
        width: 90%;
        min-width: 200px;
        margin-top: 0.5rem;
        border-radius: 10px;
        background: #262A50;
        background: -webkit-linear-gradient(33deg, rgba(38, 42, 80, 1) 0%, rgba(90, 96, 221, 1) 100%);
        background: -moz-linear-gradient(33deg, rgba(38, 42, 80, 1) 0%, rgba(90, 96, 221, 1) 100%);
        background: linear-gradient(33deg, rgba(38, 42, 80, 1) 0%, rgba(90, 96, 221, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#262A50", endColorstr="#5A60DD", GradientType=0);
        box-shadow: -10px -10px 10px -10px #00b5b8, 10px 10px 10px -10px #ae205f, 0 0 0 1px white;
        position: relative;
        overflow: hidden;
    }
    .tarjeta_actualizar::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        background: url(../assets/icons/nuevos/efisarrow.svg) no-repeat scroll 80% 50% / auto 100% transparent;
        opacity: 0.1;
    }
    #_cartelActualizarTabla figure img {    width: 70px;    }

    div#dashboard_content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        align-content: flex-start;
        flex-direction: row;
        height: 100%;
        min-height: 100%;
        min-height: 85.3vh;
    }
    

    #_cuerpoInformacion { 
        height: fit-content;
    }

    div#_cuerpoInformacion{
        width: 100%;
        flex: 1 0 380px;
    }

    div#_contenedorCuerpo 
    {
        display: flex;
        flex-direction: wrap;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: flex-start;
        align-content: center;
        width: 98%;
        max-width: 1460px;
        margin-left: 5px;
    }


    div#_tablaCuerpoInformacion {
        width: 100%;
    }

    .globo_editar 
    {
        
        box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.035);
        -webkit-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.035);
        -moz-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.035);
        
        border: #d4d4d4 1px solid;
        border-radius: 5px;
        background-color: #ffffff;
        position: relative;
        height: fit-content;
        margin: 1rem;
        padding: 1rem;
    }

    .btn_content {
        text-align: center;
    }

    .completo-calculando {
        position: absolute;
        top: 0;
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        z-index: 5;
        background-color: rgba(0, 0, 0, .6);
        backdrop-filter: blur(11px);
    }

    img.icono-calculando {
        height: 4rem;
    }

    .completo-calculando p.brilla
    {
        font-size: 1rem;
        color: #ffffff;
        margin-top: 0.7rem;
        margin-bottom: 0.1rem;
    }
    .completo-calculando p.brilla span {
        font-size: inherit;
        display: inline-block;
        text-transform: uppercase;
        letter-spacing: -2px;
    }

    .completo-calculando p {
        font-size: 1.2rem;
        color: #ffffff;
        margin-top: 1.5rem;
    }

    span.calculando-texto {
        color: #ffffff;
        font-size: .8rem;
    }

    /* Fin Dashboard*/

    /* Tarifas */

    span.empresa-inicial {
        color: #E9EAFA;
        font-family: 'gm';
        font-weight: bold;
        font-size: 1.5rem;
    }

    .dash-background {
        background: url(../assets/fondo.jpg) no-repeat fixed center center / 100% 100% #1E2141;
    }

    #table_tarifa .texto-tarifa {
        margin-left: 0.5rem;
    }

    /* Fin tarifas */

    /* HISTORIAL */
    .texto-ahorra { color: var(--exito);}
    .texto-no-ahorra { color: var(--error);}
    /* FIN HISTORIAL */

    nav#menu_desk {
        width: fit-content;
    }

    nav#menu_desk .col-oneline {
        overflow-y: hidden;
    }

    .text-login {
        font-size: 1rem !important;
    }

    .text-subtitulo {
        font-size: 1rem !important;
    }

    .btn {
        font-size: .7rem;
    }

section#dashboard 
{
    max-width: 300px;
    height: 100%;
    position: relative;
    flex: 1 0 300px;
    background-color: #EDEFF4;
}
div#_mejorAhorro {
    padding: 2rem 0rem;
}
.table-linea tr td {
    border-top: 1px solid #EEEEEE;
}
#myChart
{
    height: 300px;
}
section#iniciar_sesion {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 0 auto;
    max-width: 940px;
}

#chart-histo canvas
{
    width: 100%;
}
#chart-histo
{
    display: block;
    height: 250px;
    margin-top: 1.2rem;
    width: 100%;
    min-width: 400px;
}
.btn_content.d-flex-cuenta {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

/* GERMARN - confirmar */

div#confirmar_contenedor {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    /* margin: auto; */
}

section#confirmar {
    margin: auto;
}

#confirmar .title {
    font-weight: bolder;
}

#confirmar_contenedor a.btn.btn-primary {
    margin-top: 0.75rem;
}

section#iniciar_sesion {
    min-height: 90vh;
}

.cont-button_volver {
    text-align: center;
}

/* German 19/04 */

#perfil_editar {
    display: flex;
    flex-direction: row;
    padding: 0;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: center;
    gap: 0.4rem;
    box-sizing: border-box;
}

#perfil_editar input.form-input.input-general {
    font-size: .8rem;
    padding: 0.2rem 0.5rem;
    box-shadow: 0 0 0 1px #eeeeee;
    border-radius: 5rem;
    min-height: 30px;
    box-sizing: border-box;
}

#perfil_editar input.form-input.input-general:focus,
#perfil_editar input.form-input.input-general:active,
#perfil_editar input.form-input.input-general:hover {
    box-shadow: none;
}

#modal_cuenta .modal-container {
    padding: 0;
    max-width: 900px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
    border-radius: 13px;
}

#modal_cuenta .modal-container .panel
{
    border:none;
    border-radius: 10px;
}

.tile-action button img {
    height: 21px;
}

.tile-action button img {
    width: 20px;
}
#perfil_editar .tile.tile-centered .tile-action
{

}
#perfil_editar .tile.tile-centered {
    justify-content: center;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-end;
    align-items: flex-end;
}
#perfil_editar .tile.tile-centered button {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(-3px) translateX(-60%);
    width: 20px;
}
/*form#perfil_editar .tile::before {
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: #f1f1f1;
    content: "";
    z-index: 2;
}*/

form#perfil_editar .tile:last-child::before {
    content: unset;
}
#perfil_editar .tile-subtitle {
        font-size: .8rem;
    padding: 0.2rem 0.5rem;
    box-shadow: 0 0 0 1px #eeeeee;
    border-radius: 5rem;
    margin: 0.2rem 0;
    min-height: 30px;
}

.figure-contanim
{
    width: 100px;
    height: 100px;
    position: relative;
}

.svg-capa3.rotate-carga {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100px;
    width: 100px;
}

figure.figure-contanim svg#Capa_2 {
    height: 100%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

svg#Capa_1 {
    height: 100px;
    width: auto;
}

.svg-capa3.rotate-carga svg {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.rotate-carga {
  -webkit-animation: rotate-carga 3s normal linear infinite;
  animation: rotate-carga 3s normal linear infinite;
  transform-origin: center center;
}

@keyframes rotate-carga {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  25% {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
  }
  50% {
    -webkit-transform: rotate3d(0, 0, 1, -180deg);
    transform: rotate3d(0, 0, 1, -180deg);
  }
  75% {
    -webkit-transform: rotate3d(0, 0, 1, -270deg);
    transform: rotate3d(0, 0, 1, -270deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, -360deg);
    transform: rotate3d(0, 0, 1, -360deg);
  }
}

.brilla
{
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px #2d9da9;
  }
  to {
    text-shadow: 0 0 30px #34b3c1, 0 0 10px #4dbbc7;
  }
}
dmalert {
    max-width: 300px !important;
    border-left: 5px solid #1e2141;
    border-radius: 5px 0px 0px 5px  !important;
}
span.input-group-addon {
    font-size: 0.9rem;
    vertical-align: middle;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4 !important;
}
#email_us small {
    width: 100%;
    display: block;
}
li.tab-item {
    background-color: #f0f0f0;
    border-radius: 5px 5px  0 0;
    text-align: center;
}

li.tab-item a {
    padding: 0.5rem 0.7rem 0.4rem 0.7rem !important;
    text-align: center;
    width: 100%;
}

li.tab-item.active {
    background: #ffffff;
}

main#_flexPanelMain {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
}
.tarjeta_usuario {
    background-color: #ffffff;
    width: 90%;
    min-width: 200px;
    margin-top: 1rem;
    border-radius: 10px;
    padding: 1rem;
    overflow:hidden;
}
.cont-avatar-figure-banner {
    position: relative;
}

.cont-avatar-figure-banner::before {
    content: "";
    --s: 24px; /* control the size*/
    --c1: #01bfc2;
    --c2: #565cd2;
    background:
    radial-gradient(36% 72% at 25% -50%,var(--c2) 98%,#0000)
     0 0/calc(2*var(--s)) var(--s),
    radial-gradient(36% 72% at 75% 150%,var(--c2) 98%,#0000)
     0 0/calc(2*var(--s)) var(--s),
    radial-gradient(72% 36% at 150% 25%,var(--c2) 98%,#0000)
     0 0/var(--s) calc(2*var(--s)),
    radial-gradient(72% 36% at -50% 75%,var(--c2) 98%,#0000)
     0 0/var(--s) calc(2*var(--s)),
    repeating-conic-gradient(var(--c2) 0 45deg,var(--c1) 0 25%)
     0 0/calc(2*var(--s)) calc(2*var(--s));
    position: absolute;
    left: -1rem;
    top: -1rem;
    height: 100%;
    width: calc(100% + 2rem);
    z-index: 0;
}
.no-border
{
    border:none;
}
.btn-enlace
{
    line-height: 1.4rem;
}
.w100-important
{
    width: 100% !important;
}
.contiene_grafico, .contiene_tabla, .cont-info-resumen {
    background-color: #ffffff;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}
.contiene_tabla h2
{
    padding: 1rem;
}
.p-absolute.circulo-gris-deco {
    width: 100px;
    height: 100px;
    background: transparent;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 100%;
    box-shadow: 0 0 0 35px #EEEEEE;
    z-index: 0;
}

div#_contenidoInformacion {
    width: 100px;
    height: 100px;
    background: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.contenedor-grafica svg {
    position: relative;
    top: 0;
    left: 50%;
    transform: translate(-50%,0%);
    width: 200px;
    height: 200px;
}

#comenzar_gestion {
    max-width: 100%;
    margin: 0 !important;
}
#comenzar_gestion::before
{
    content:"";
        background: #01BFC2;
    background: -webkit-linear-gradient(218deg, rgba(1, 191, 194, 1) 0%, rgba(90, 96, 221, 1) 35%, rgba(37, 44, 109, 1) 75%);
    background: -moz-linear-gradient(218deg, rgba(1, 191, 194, 1) 0%, rgba(90, 96, 221, 1) 35%, rgba(37, 44, 109, 1) 75%);
    background: linear-gradient(218deg, rgba(1, 191, 194, 1) 0%, rgba(90, 96, 221, 1) 35%, rgba(37, 44, 109, 1) 75%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#01BFC2", endColorstr="#252C6D", GradientType=0);
    margin: 0 auto;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: 0;
}

.cag
{
    color:#01BFC2
}
.txt-important
{
    font-size:calc(11px + (15 - 11) * ((100vw - 300px) / (1600 - 300))) !important  ;
}

.text-blue
{
    color:#262A50;
}
#_ruedita {
    transition: stroke-dasharray 2s linear;
}
.contiene_grafico {
    min-width: 230px;
}

.contiene_tabla {
    min-width: 300px;
}
.oculto.no-oculto {
    opacity: 1;
    transform: translateY(-3px);
}
.oculto
{
    opacity: 0;
    transition: transform 500ms linear, opacity 500ms linear;
    transform: translateY(-10px);
}
.modal-blur .modal-overlay {
    backdrop-filter: blur(11px);
}
.bg-transparent
{
    background-color:transparent
}
i svg {
    height: 80px;
}
path.fa-primary {
    fill: #373f97;
}

.fa-secondary {
    opacity: .4;
    fill: #00D7DC;
}

div[data-step-cuerpo] {
    transition: opacity 300ms linear, transform 300ms linear;
    opacity: 0;
    transform: translateY(30px);
}

div[data-step-cuerpo][no-hidden] {
    opacity: 1;
    transform: translateY(0px);
}
.overflow-hidden-important {
    overflow: hidden !important;
}


/* precarga */
aside[data-precarga-rdigital] 
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0);
    z-index: 99999;
}
span.precarga_contenedor {
    position     : absolute;
    top          : 50%;
    left         : 50%;
    transform    : translate(-50%, -50%);
    z-index      : 2;
    text-align   : center;
    background   : #ffffff;
    border-radius: 12px;
    line-height  : 0;
  }
  .lds-ellipsis.loading.loading-lg 
  {
      background-color: #373f97;
      padding         : 2rem;
      border-radius   : 11px;
  }
  .lds-ellipsis.loading.loading-lg::after
  {
    border-left: .1rem solid #99eff1;
    border-bottom: .1rem solid #99eff1;
  }

  
aside[data-precarga-rdigital] .wrapper {
    margin: 30px;
    padding: 30px;
    background: #fff;
    width: 360px;
    height: 640px;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  
aside[data-precarga-rdigital]  .wrapper-cell {
    display: -webkit-box;
    display: flex;
    margin-bottom: 30px;
  }


  @-webkit-keyframes placeHolderShimmer {
    0% {
      background-position: -468px 0;
    }
    100% {
      background-position: 468px 0;
    }
  }
  
  @keyframes placeHolderShimmer {
    0% {
      background-position: -468px 0;
    }
    100% {
      background-position: 468px 0;
    }
  }
  
  .pw-contenedor-full
  {
    display: inline-block;
    width: 100%;
    height: auto;
  }
  .pw-contenedor-mitad
  {
    display: inline-block;
    width: 49%;
    height: auto;
  }
  .pw-imagen-full
  {
    width: 100%;
    display: inline-block;
  }
  .pw-contenedor-margen
  {
    margin: 5px 0;
  }
  .pw-imagen
  {
    max-height: 100px;
    max-width: 90px;
    width: 100%;
    display: inline-block;
  }
  
  .pw-texto
  {
    width: 100% !important;
    height: 10px !important;
    margin: 0px 0;
    display: inline-block;
  }
  
  .animated-background, .image-precarga, .text-precarga-line, .preca-winebe {
    -webkit-animation-duration: 1.25s;
            animation-duration: 1.25s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-name: placeHolderShimmer;
            animation-name: placeHolderShimmer;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    background: #F6F6F6;
    background: -webkit-gradient(linear, left top, right top, color-stop(8%, #F6F6F6), color-stop(18%, #F0F0F0), color-stop(33%, #F6F6F6));
    background: linear-gradient(to right, #F6F6F6 8%, #F0F0F0 18%, #F6F6F6 33%);
    background-size: 800px 104px;
    height: 96px;
    position: relative;
  }
  
  .image-precarga {
      height: 40px;
      width: 40px;
      border-radius: 100%;
  }
  
  .text-precarga {
    margin-left: 0px;
  }
  
  .text-precarga-line {
    height: 14px;
    width: 100%;
    margin: 4px 0;
  }