:root {
    font-size: 1vw;
    --a-1er-color: #669cdd;
    --a-2do-color: #73bc8d;
    --a-3er-color: #999998;
    --a-4to-color: #f5d122;
    --a-5to-color: #3d4d9c;
    --a-accent-color: #f89268;
    --a-text-color: #515151;
    --a-text-2do-color: #575757;
    --white-color-text: #ffffff;

    --text-dark-color: #000000;
    --primary-color-btn: #254b8a;
    --secondary-color-btn: #5374ab;
    --text-btn-solid-btn: #ffffff;
    --primary-color-text: #254b8a;
    
    
    --bg-color-primary: #669cdd;
    --bg-color-seconday: #3d4d9c;
    --bg-color-gray: #f7f7f7;
    --bg-color-white: #ffffff;

    --tabs-bg-color: #848484;
    --tabs-text-color: #d4d9d9;

    --big--size: 5.3rem; /* 86pt */
    --large--size: 4.5rem; /* 68pt */
    --medium--size: 3.2rem; /* 58pt */
    --medium-2do--size: 3rem; /* 51pt */
    --title--2do: 2.6rem;
    --title--size: 2rem; /* 32pt */
    --title-big-size: 1.8rem; /* 29pt */
    --secondary--size: 1.8rem;
    --text-big-size: 1.6rem; /* 26pt */
    --text-big-2do-size: 1.5rem; /* 25pt */
    --text-medium-size: 1.3rem; /* 21pt */
    --text-normal-size: 1.1rem; /* 18pt */
    --text-normal-2do-size: 1rem; /* 16pt */
    --text-small-size: 0.9rem; /* 14pt */
    --text-small-2do-size: 0.75rem; /* 12pt */

    --general-radius: 10px;
    --border-radius-image: 20px;
    --height-inputs: 3rem;
    
    --global-fonts-primary: "Georama", sans-serif;
    --global-fonts-secondary: "Barlow Condensed", sans-serif;
    --global-fonts-text: "Georama", sans-serif;
	--global-fonts-myriad: 'MyriadPro', sans-serif;

}
body {
    font-family: var(--global-fonts-primary);
    font-size: 1.1rem;
    color: var(--a-text-color);
    line-height: 1.2;
    overflow-x: hidden;
}
.color__white,
.color__white *{ 
    color: #ffffff; 
}
.bg__page {
    padding: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-color: #669cdd;
}
.myriad_pro{
	font-family: var(--global-fonts-myriad);
}
.font_fa_primary{
	font-family: var(--global-fonts-primary);
}
.font_fa_secondary{
	font-family: var(--global-fonts-secondary);
}
.font_fa_text{
	font-family: var(--global-fonts-text);
}

.border-radius-default{
	border-radius: 15px;
}
.border-radius-circle-img{
	border-radius: 100px;
	overflow: hidden;
	padding-top: 100%;
	position: relative;
}
.border-radius-circle-img img{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	object-fit: cover;
}
.container {
    max-width: 80rem;
    margin: auto;
    padding: 0 2rem;
    width: 100%;
}
/* columns */

.f-end{
    justify-content: flex-end;
}
.f-middle{
    align-items: center;
}
.f-space-b{
    justify-content: space-between;
}
.j-center{
    justify-content: center;
}

.row_cols {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.no-wrap{
    flex-wrap: nowrap;
}
.flex_auto{
    flex: auto;
}
.flex-1{
    flex-grow: 1;
}
.dir-row{
    flex-direction:row;
}
.dir-col{
    flex-direction:column;
}


.col-1 { flex: 0 0 8.33%; width: 8.33%; }
.col-2 { flex: 0 0 16.66%; width: 16.66%; }
.col-3 { flex: 0 0 25%; width: 25%; }
.col-4 { flex: 0 0 33.33%; width: 33.33%; }
.col-5 { flex: 0 0 41.66%; width: 41.66%; }
.col-6 { flex: 0 0 50%; width: 50%; }
.col-7 { flex: 0 0 58.33%; width: 58.33%; }
.col-8 { flex: 0 0 66.66%; width: 66.66%; }
.col-9 { flex: 0 0 75%; width: 75%; }
.col-10 { flex: 0 0 83.33%; width: 83.33%; }
.col-11 { flex: 0 0 91.66%; width: 91.66%; }
.col-12 { flex: 0 0 100%; width: 100%; }

.box_row_cols {
    display: flex;
    flex-wrap: wrap;
    --column-gap: 2rem;
    row-gap: 1rem;
    width: 100%;
}

.box-col-1 { flex: 0 0 calc(8.33% - calc( var(--column-gap) / 12 )); width: calc(8.33% - calc( var(--column-gap) / 12 )); }
.box-col-2 { flex: 0 0 calc(16.66% - calc( var(--column-gap) / 6 )); width: calc(16.66% - calc( var(--column-gap) / 6 )); }
.box-col-3 { flex: 0 0 calc(25% - calc( var(--column-gap) / 4 )); width: calc(25% - calc( var(--column-gap) / 4 )); }
.box-col-4 { flex: 0 0 calc(33.33% - calc( var(--column-gap) / 3 )); width: calc(33.33% - calc( var(--column-gap) / 3 )); }
.box-col-5 { flex: 0 0 calc(41.66% - var(--column-gap)); width: calc(41.66% - var(--column-gap)); }
.box-col-6 { flex: 0 0 calc(50% - calc( var(--column-gap) / 2 )); width: calc(50% - calc( var(--column-gap) / 2 )); }
.box-col-7 { flex: 0 0 calc(58.33% - var(--column-gap)); width: calc(58.33% - var(--column-gap)); }
.box-col-8 { flex: 0 0 calc(66.66% - var(--column-gap)); width: calc(66.66% - var(--column-gap)); }
.box-col-9 { flex: 0 0 calc(75% - var(--column-gap)); width: calc(75% - var(--column-gap)); }
.box-col-10 { flex: 0 0 calc(83.33% - var(--column-gap)); width: calc(83.33% - var(--column-gap)); }
.box-col-11 { flex: 0 0 calc(91.66% - var(--column-gap)); width: calc(91.66% - var(--column-gap)); }
.box-col-12 { flex: 0 0 100%; width: 100%; }

.r-gapx1{row-gap: 1rem !important;}
.r-gapx2{row-gap: 2rem !important;}
.r-gapx3{row-gap: 3rem !important;}
.r-gapx4{row-gap: 4rem !important;}

.c-gapx0-5{
	 column-gap: 0.5rem !important;
    --column-gap: 0.5rem !important;
}
.c-gapx1{
    column-gap: 1rem !important;
    --column-gap: 1rem !important;
}
.c-gapx2{
    column-gap: 2rem !important;
    --column-gap: 2rem !important;
}
.c-gapx3{
    column-gap: 3rem !important;
    --column-gap: 3rem !important;
}
.c-gapx4{
    column-gap: 4rem !important;
    --column-gap: 4rem !important;
}
body .mt-small {
    margin-top: .5rem;
}
body .mb-small {
    margin-bottom: .5rem;
}
body .mt-0{ margin-top: 0;}
body .mt-1{ margin-top: 1rem;}
body .mt-1_5{ margin-top: 1.5rem;}
body .mt-2{ margin-top: 2rem;}
body .mt-3{ margin-top: 3rem;}
body .mt-4{ margin-top: 4rem;}
body .mt-5{ margin-top: 5rem;}
body .mt-6{ margin-top: 6rem;}

body .mb-0{ margin-bottom: 0;}
body .mb-0_3{ margin-bottom: 0.3rem;}
body .mb-1{ margin-bottom: 1rem;}
body .mb-2{ margin-bottom: 2rem;}
body .mb-3{ margin-bottom: 3rem;}
body .mb-4{ margin-bottom: 4rem;}
body .mb-5{ margin-bottom: 5rem;}
body .mb-6{ margin-bottom: 6rem;}

body .ml-1{ margin-left: 1rem;}
body .ml-2{ margin-left: 2rem;}
body .ml-3{ margin-left: 3rem;}
body .ml-4{ margin-left: 4rem;}
body .ml-5{ margin-left: 5rem;}
body .ml-6{ margin-left: 6rem;}

body .mr-1{ margin-right: 1rem;}
body .mr-2{ margin-right: 2rem;}
body .mr-3{ margin-right: 3rem;}
body .mr-4{ margin-right: 4rem;}
body .mr-5{ margin-right: 5rem;}
body .mr-5{ margin-right: 6rem;}

.pd-0-5{padding: 0.5rem;}
.pd-1{padding: 1rem;}
.pd-2{padding: 2rem;}
.pd-3{padding: 3rem;}
.pd-4{padding: 4rem;}
.pd-5{padding: 5rem;}

.line_h_1x{
	line-height: 1;
}
.size__title{
	 font-size: var(--title--size);
}
.size__medium-2do{
	 font-size: var(--medium-2do--size);
}
.size__medium {
    font-size: var(--text-medium-size);
}
.size__normal_big-2do {
    font-size: var(--text-big-2do-size);
}
.size__normal-2do {
    font-size: var(--text-normal-2do-size);
}
.size__normal_big {
    font-size: var(--text-big-size);
}
.size__normal {
    font-size: var(--text-normal-size);
}
.size__small {
    font-size: var(--text-small-size);
    line-height: 1.2;
}
.size__small_ss {
    font-size: .75rem;
    line-height: 1.4;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--global-fonts-primary);
}
h1, .h1 {
    font-size: var(--medium--size);
}
h2, .h2 {
    font-size: var(--medium-2do--size);
}
.h2-small {
    font-size: var(--title--size);
}
h3, .h3 {
    font-size: var(--title-big-size);
}
.text-center{
	text-align: center;
}
.text-right{
	text-align: right;
}
.text-left{
	text-align: left;
}
.text-primary {
    color: var(--a-1er-color) !important;
}
.text-secondary {
    color: var(--a-2do-color) !important;
}
.text-dark {
    color: var(--text-dark-color);
}
.text-medium{
	font-weight: 500 !important;
}
.text-semibold{
	font-weight: 600 !important;
}
.text-bold{
	font-weight: bold !important;
}
.text-color-accent{
	color: var(--a-accent-color);
}
.text-color-yellow{
	color: var(--a-4to-color);
}
.text-color-gray{
	color: var(--a-3er-color);
}
.message-alert {
    display: flex;
    color: red;
    font-size: 1rem;
    align-items: center;
    column-gap: 0.5rem;
}
.__btn {
    padding: 0.8em 2.2em;
    display: inline-block;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--global-fonts-primary);
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 1.5rem;
    background-color: var(--a-accent-color);
    color: #ffffff;
    letter-spacing: 1px;
    border: none;
}

.__btn.secondary {
    background: var(--primary-color-btn);
    color: var(--text-btn-solid-btn);
}
.__btn.tertiary {
    background: var(--a-2do-color);
    color: #ffffff;
}

.__btn.bg-white-btn {
    border: 1px solid var(--bg-color-primary);
    color: var(--primary-color-btn) !important;
    background-color: #fff;
}
.__btn.blue_light{
	background-color: var(--bg-color-primary);
	color: #ffffff;
}
.__btn.size__small {
	font-size: .8rem;
}
.__btn.secondary:hover,
.__btn.secondary:active,
.__btn.secondary:focus {
    background: var(--secondary-color-btn);
    color: var(--text-btn-solid-btn);
}
.__btn.tertiary:hover,
.__btn.tertiary:active,
.__btn.tertiary:focus,
.__btn.tertiary.active {
    background: var(--primary-color-btn);
    color: #fff;
}
.__btn.bg-white-btn:hover,
.__btn.bg-white-btn:active,
.__btn.bg-white-btn:focus {
    background: var(--secondary-color-btn) !important;
    color: var(--text-btn-solid-btn) !important;
}


button {
    cursor: pointer;
}
.txt__left{
    text-align: left;
}
.txt__right{
    text-align: right;
}
.txt__center{
    text-align: center;
}
.hidden{
    display: none;
}
.dir-row-tb{
    flex-direction:row;
}
/*
.dir-row-mb{
    flex-direction:row;
}

.dir-col-tb{
    flex-direction:column;
}
.dir-col-mb{
    flex-direction:column;
}
*/

.dir-row{
    flex-direction:row;
}

.dir-col{
    flex-direction:column;
}

.separator__box {
    border-bottom: 1px solid #000000;
    width: 100%;
}
/* HEADER */
.menu ul,
.nav__container ul {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 0rem;
    margin: 0;
    background: var(--bg-color-primary);
    color: #ffffff;
    border-radius: 50px;
}
.menu li,
.nav__container li {
    position: relative;
}
.menu ul li:not(:last-child):after ,
.nav__container ul li:not(:last-child):after {
    content: '';
    border-left: 2px solid currentColor;
}
.menu ul a ,
.nav__container ul a {
    color: currentColor;
    text-decoration: none;
    padding: .5em 1em;
    display: inline-block;
}
.nav__container_date ul,
.nav__container_date ul {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 0rem;
    margin: 0;
    background: var(--bg-color-primary);
    color: #ffffff;
    border-radius: 50px;
    margin-top: 1.5rem;
}
.nav__container_date ul li span{
    color: currentColor;
    text-decoration: none;
    padding: .5em 1em;
    display: inline-block;
}
.nav__container_date li:not(:last-child):after {
    content: '';
    border-left: 2px solid currentColor;
}
.nav__container ul ul.sub-menu {
    flex-wrap: wrap;
    flex-direction: column;
    position: absolute;
    background: #ffffff;
    border-radius: 10px;
    top: 100%;
    width: 100%;
    left: 0;
    z-index: 99;
	opacity: 0;
	visibility: hidden;
}
.nav__container ul li.menu-item-has-children:hover > ul.sub-menu{
	visibility: visible;
	opacity: 1;
}
.nav__container ul ul.sub-menu > li > a {
    padding: .2em .5em;
}
li.pll-parent-menu-item > a >img,
li.lang-item a > img{
    width: 1.2rem !important;
    height: auto !important;
}
.nav__container ul ul.sub-menu > li.lang-item > a img {
    width: 1.2rem !important;
    height: auto !important;
}
.pop_up_menu_mob {
    display: none;
}
.pop_up_menu_mob.active {
    display: block;
}
button.btn_mobile_menu {
    border: none;
    padding: .5em 1em;
    border-radius: 8px;
    background: var(--bg-color-primary);
    color: #fff;
    font-size: 1.2rem;
}

.pop_up_menu_mob {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem;
    text-align: right;
    z-index: 999999;
    background: #669cddcc;
}
.pop_up_menu_mob ul.main-menu {
    flex-direction: column;
    background: transparent;
}
button.btn_mobile_menu_close {
    background: #ffffff;
    border: none;
    font-size: 1.2rem;
    border-radius: 50px;
    color: var(--bg-color-primary);
    width: 1.6em;
    height: 1.6em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pop_up_menu_mob .nav__container ul li:not(:last-child):after{
	display: none;
}
.pop_up_menu_mob li {
    font-size: 1.6rem;
    margin-bottom: .5em;
    font-weight: 500;
}
.pop_up_menu_mob li.pll-parent-menu-item > a >img, 
.pop_up_menu_mob li.lang-item a > img {
    width: 1.8rem !important;
    height: auto !important;
}
.pop_up_menu_mob nav.main-menu-container {
    height: calc(100vh - 4rem);
    align-items: center;
    display: flex;
    justify-content: center;
    overflow-y: auto;
}
/* DASHBOARD */
.box__info {
    width: auto;
    row-gap: 1rem;
    column-gap: 1rem;
    padding: .5rem 1em;
    border-radius: 50px;
    overflow: hidden;
    display: inline-flex;
}
.item__box__info strong {
    margin-left: .2em;
    font-weight: bold;
    font-size: 1.15em;
    vertical-align: middle;
    display: inline-block;
}
.item__box__info span {
    display: inline-block;
    vertical-align: middle;
}
.box__scroll .row_cols:not(:last-child) {
    border-bottom: 2px solid #e9e8e7;
}
.box__scroll {
    max-height: 20rem;
    overflow-y: auto;
}
.box__items_info {
    min-width: 10rem;
}
/* Estilizar el scroll para navegadores webkit (Chrome, Safari, Edge) */
.box__scroll {
    scrollbar-width: thin;
    scrollbar-color: #669cdd #d6d6d6;
}

/* Estilizar el scroll para navegadores webkit (Chrome, Safari, Edge) */
.box__scroll {
    scrollbar-width: thin; /* Para Firefox */
    scrollbar-color: #669cdd #d6d6d6; /* Para Firefox */
}

/* Personaliza el fondo del scroll */
.box__scroll::-webkit-scrollbar {
    width: 8px; /* Ancho de la barra de desplazamiento */
    border-radius: 10px; /* Bordes redondeados en toda la barra */
}

.box__scroll::-webkit-scrollbar-track {
    background: #d6d6d6; /* Color de fondo de la pista */
    border-radius: 10px; /* Bordes redondeados en la pista */
}

.box__scroll::-webkit-scrollbar-thumb {
    background-color: #669cdd; /* Color de la barra */
    border-radius: 10px; /* Bordes redondeados en la barra */
    border: 2px solid #d6d6d6; /* Espacio alrededor de la barra */
}

.box__scroll::-webkit-scrollbar-thumb:hover {
    background-color: #4d85b5; /* Color de la barra al pasar el mouse (puedes ajustar este tono si lo deseas) */
}
/* DASHBOARD */
.flex__form_items {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
    row-gap: 1rem;
}
.flex__form_items .profile__info {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
}
.flex__form_items .profile__info ._label {
    font-size: 0.95rem;
    width: auto;
    flex: auto;
}
.flex__form_items .profile__info .__val {
    flex-grow: 1;
}
.flex__form_items .profile__info .__val .field__input {
    border: none;
    background: #edeced;
    color: #000000;
    padding: .5em .8em;
    line-height: 1;
    border-radius: 80px;
    min-width: 12rem;
    max-width: 100%;
}
.flex__form_items .profile__info .__val .field__input.big__input {
    width: 25rem;
    max-width: 100%;
}
.flex__form_items .profile__info .__val .field__input.medium__input {
    min-width: 18rem;
    max-width: 100%;
}
.flex__form_items .profile__info .__val input#telefono {
    padding-left: 3rem;
}
ul.list__peferences_ul {
    padding: 0;
    margin: 0;
    margin-bottom: 1rem;
    list-style: none;
    font-family: var(--global-fonts-secondary);
}
ul.list__peferences_ul li {
    margin-bottom: .3em;
}
.col__flex_preferences {
    width: 20%;
    flex-basis: 20%;
    padding-right: 1rem;
}
ul.list__peferences_ul li input{
    display: none;
}
ul.list__peferences_ul li label {
    display: flex;
    cursor: pointer;
}
ul.list__peferences_ul li label span.checkbox__label {
    width: .9em;
    height: .9em;
    border: 1px solid var(--a-2do-color);
    border-radius: 50px;
    margin-right: .3em;
    position: relative;
}
ul.list__peferences_ul li input:checked + label span.checkbox__label {
    background: var(--a-2do-color);
    box-shadow: inset 0px 0px 0px 1.5px #ffffff;
}

/* STATEMENT */
.min__h_details {
    min-height: 30rem;
}
.info__details .logo img {
    width: 100%;
    max-width: 6.5rem;
}
.info__details {
    padding: 1rem 1.5rem;
}
.table__head {
    display: flex;
    width: 100%;
    border: 1px solid gray;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1.2rem;
    font-family: var(--global-fonts-primary);
    row-gap: 1rem;
    column-gap: 2rem;
}
.separator__line {
    border-top: 1px solid;
}
.table__head .item__details {
    /* width: 20%; */
}
.table__list__details {
    width: 100%;
    padding-top: 1rem;
}
table.table__list__details thead {
    color: #7b7a7a;
    font-size: 1rem;
    text-align: left;
}
table.table__list__details{
    border-width: 0;
    border-collapse:collapse;
}
table.table__list__details th, table.table__list__details td {
    padding: .5em 0.5em;
}
table.table__list__details tbody tr:nth-child(2n + 1) {
    background: #e9e9e9;
    color: #000000;
    border-radius: 50px;
    overflow: hidden;
}
.label__statement_period ._text_label span {
    display: block;
}
.statement_period input[type="radio"] {
    display: none !important;
}
.statement_period span.check__icon {
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
    flex-basis: 1.8rem;
    min-width: 1.8rem;
    border: 2px solid var(--a-2do-color);
    border-radius: 50px;
}
.statement_period label{
    cursor: pointer;
}
label.label__statement_period {
    display: flex;
    align-items: flex-start;
    column-gap: 0.5em;
}
.statement_period input[type="radio"]:checked + .__label__options span.check__icon {
    background: var(--a-2do-color);
    box-shadow: inset 0 0 0px 2px #ffffffff;
}
.field__select_periods {
    margin-top: 1rem;
    display: none;
}
.statement_period input[type="radio"]:checked + .__label__options + .field__select_periods{
    display: block;
}
.field__select_periods select {
    background: #ffffff;
    font-size: 1rem;
    line-height: 1;
    padding: .5em 1.2em;
    border-radius: 50px;
    margin-right: 0.5rem;
    cursor: pointer;
}
.load__section{
    position: relative;
}
main#main.loading .load__section:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #ffffff;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    opacity: .5;
}
main#main.loading{
    cursor: wait;
}
main#main.loading a,
main#main.loading button{
    pointer-events: none;
}
.__input_transfer {
    display: flex;
    align-items: center;
    column-gap: 0.8rem;
    margin-bottom: 1rem;
}
.__input_transfer input[readonly] {
    background: transparent;
    border: none !important;
    outline: none !important;
}
.__input_transfer input:not([readonly]) {
    border: 1px solid gray;
    padding: .5em 1em;
    border-radius: 50px;
}
select.contract__transfer {
    width: 100%;
    border-radius: 50px;
    padding: .5em 1em;
    font-weight: 600;
}
.__input_transfer select.client_id {
    padding: .5em 1em;
    width: 100%;
    max-width: 22rem;
    border-radius: 50px;
}
form .error {
    border-color: red;
    background: #ffe1e1;
    color: #990000;
}
.tab__transfer:not(.active){
    display: none;
}

.form__custom .field_input, .form__custom .field_input::placeholder {
    width: 100%;
    padding: 1.1rem 0.625rem;
    margin: 0rem 0 0.9rem;
    color: var(--a-text-2do-color);
    font-size: var(--text-big-2do-size);
    line-height: 1.77083rem;
    font-weight: 400;
    font-family: var(--global-fonts-primary);
    border-radius: 0.625rem;
    border: none;
}
.form__custom .btn-submit {
    padding: 0.9375rem 2.34375rem;
    color: #ffffff;
    background: var(--bg-color-primary);
    font-size: var(--text-big-2do-size);
    line-height: 1.77083rem;
    font-weight: 600;
    font-family: var(--global-fonts-primary);
    border: none;
    border-radius: 1.7rem;
}

/* RESET PW */
.label__tag {
    position: relative;
    background-color: #ffffff;
    margin-bottom: 0.9rem;
}
.label__tag input {
    background-color: transparent;
    z-index: 1;
    position: relative;
    width: 100%;
    padding: 1.1rem 0.625rem;
    color: var(--a-text-2do-color);
    font-size: var(--text-big-2do-size);
    line-height: 1.77083rem;
    font-weight: 400;
    font-family: var(--global-fonts-primary);
    border-radius: 0.625rem;
    border: none;
}
.label__tag label {
    position: absolute;
    color: #000000;
    top: 50%;
    line-height: 1;
    transform: translateY(-50%);
    left: 10px;
    font-weight: 400 !important;
    z-index: 0;
    transition: all 0.3s ease;
}
.has-value label {
    opacity: 0;
}
.label__tag input:focus + label,
.label__tag input.has-value + label,
.force__tag label,
.label__tag select:focus + label,
.label__tag select.has-value + label,
.force__tag select + label{
    font-size: .7rem;
    top: 0;
    color: #ffffff;
    background: var(--yellow-color);
    padding: .5em 1em;
    z-index: 10;
    line-height: 1;
}
.flex__form_register {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
}

.flex__form_register > .field__form {
    flex-basis: calc(50% - 0.5rem);
}
.col-span-12{
    width: 100%;
}
.label__tag input[type="date"]::placeholder {
    opacity: 0;
}
.label__tag input[type="date"]:focus::placeholder {
    opacity: 1;
}
.field__form .iti.iti--allow-dropdown {
    width: 100%;
    z-index: 9;
}
form#registerForm .field__form [readonly],
form#registerForm .field__form [readonly] + label {
    pointer-events: none;
}
.field__form .invalid {
    border: 1px solid #ab0000;
    background: rgba(255, 0, 0, .2);
}

form .field__form .tooltip {
    position: absolute;
    bottom: -1em;
    left: 10px;
    background-color: #ce1126;
    color: white;
    padding: 5px;
    border-radius: 0px;
    font-size: 0.8rem;
    line-height: 1;
    display: none;
}
.field__readOnly:hover span.tooltip {
    display: block !important;
}
form#registerForm .field__form [readonly] {
    cursor: not-allowed; /* Cambia el cursor cuando el campo es readOnly */
}
.bg-confirm-otp{    
    background: rgba(256, 256, 256, 0.7);
}
.show--pw-input {
    position: absolute !important;
    right: 0.5em;
    font-size: 1.2em;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    background-color: transparent;
    background-image: none;
    border: none;
}
.show--pw-input svg {
    width: 1em;
    height: 1em;
}
.pw_field.show_pw .showp{
    display: none !important;
}
.pw_field:not(.show_pw) .hidep{
    display: none !important;
}
.field_input.invalid {
    border: 1px solid red;
    background: #ffe9e9;
}
/****************
--- RESPONSIVE -----
***************/
@media screen and (min-width: 768px){

    .box-col-2:not(:nth-child(6n)) { margin-right: calc( var(--column-gap) / 5 ); }
    .box-col-3:not(:nth-child(4n)) { margin-right: calc( var(--column-gap) / 3 ); }
    .box-col-4:not(:nth-child(3n)) { margin-right: calc( var(--column-gap) / 2 ); }
    .box-col-5:not(:nth-child(2n)) { margin-right: calc( var(--column-gap) / 1 ); }
    .box-col-6:not(:nth-child(2n)) { margin-right: calc( var(--column-gap) / 1 ); }
    .box-col-7:not(:nth-child(2n)) { margin-right: calc( var(--column-gap) / 1 ); }
    .box-col-8:not(:nth-child(2n)) { margin-right: calc( var(--column-gap) / 1 ); }
    .box-col-9:not(:nth-child(2n)) { margin-right: calc( var(--column-gap) / 1 ); }
    .box-col-10:not(:nth-child(2n)) { margin-right: calc( var(--column-gap) / 1 ); }
    .box-col-11:not(:nth-child(2n)) { margin-right: calc( var(--column-gap) / 1 ); }
	
	.nav__container.mobile__menu {
		display: none;
	}
    .table__head .item__details:not(:last-child) {
        border-right: 1px solid;
        padding-right: 2rem;
    }
}

@media screen and (max-width: 1024px){
    :root{
        font-size: 14px;
    }
    
    .col-tb-1 { flex: 0 0 8.33%; width: 8.33%; }
    .col-tb-2 { flex: 0 0 16.66%; width: 16.66%; }
    .col-tb-3 { flex: 0 0 25%; width: 25%; }
    .col-tb-4 { flex: 0 0 33.33%; width: 33.33%; }
    .col-tb-5 { flex: 0 0 41.66%; width: 41.66%; }
    .col-tb-6 { flex: 0 0 50%; width: 50%; }
    .col-tb-7 { flex: 0 0 58.33%; width: 58.33%; }
    .col-tb-8 { flex: 0 0 66.66%; width: 66.66%; }
    .col-tb-9 { flex: 0 0 75%; width: 75%; }
    .col-tb-10 { flex: 0 0 83.33%; width: 83.33%; }
    .col-tb-11 { flex: 0 0 91.66%; width: 91.66%; }
    .col-tb-12 { flex: 0 0 100%; width: 100%; }
	
	body .mt-tb-0{ margin-top: 0;}
	body .mt-tb-1{ margin-top: 1rem;}
	body .mt-tb-1_5{ margin-top: 1.5rem;}
	body .mt-tb-2{ margin-top: 2rem;}
	body .mt-tb-3{ margin-top: 3rem;}
	body .mt-tb-4{ margin-top: 4rem;}
	body .mt-tb-5{ margin-top: 5rem;}
	body .mt-tb-6{ margin-top: 6rem;}

	body .mb-tb-0{ margin-bottom: 0;}
	body .mb-tb-0_3{ margin-bottom: 0.3rem;}
	body .mb-tb-1{ margin-bottom: 1rem;}
	body .mb-tb-2{ margin-bottom: 2rem;}
	body .mb-tb-3{ margin-bottom: 3rem;}
	body .mb-tb-4{ margin-bottom: 4rem;}
	body .mb-tb-5{ margin-bottom: 5rem;}
	body .mb-tb-6{ margin-bottom: 6rem;}

    body .ml-tb-0{ margin-left: 0;}
	body .ml-tb-1{ margin-left: 1rem;}
	body .ml-tb-2{ margin-left: 2rem;}
	body .ml-tb-3{ margin-left: 3rem;}
	body .ml-tb-4{ margin-left: 4rem;}
	body .ml-tb-5{ margin-left: 5rem;}
	body .ml-tb-6{ margin-left: 6rem;}

    body .mr-tb-0{ margin-right: 0;}
	body .mr-tb-1{ margin-right: 1rem;}
	body .mr-tb-2{ margin-right: 2rem;}
	body .mr-tb-3{ margin-right: 3rem;}
	body .mr-tb-4{ margin-right: 4rem;}
	body .mr-tb-5{ margin-right: 5rem;}
	body .mr-tb-5{ margin-right: 6rem;}t-0{ margin-top: 0;}
	body .mt-tb-1{ margin-top: 1rem;}
	body .mt-tb-1_5{ margin-top: 1.5rem;}
	body .mt-tb-2{ margin-top: 2rem;}
	body .mt-tb-3{ margin-top: 3rem;}
	body .mt-tb-4{ margin-top: 4rem;}
	body .mt-tb-5{ margin-top: 5rem;}
	body .mt-tb-6{ margin-top: 6rem;}

	body .mb-tb-0{ margin-bottom: 0;}
	body .mb-tb-0_3{ margin-bottom: 0.3rem;}
	body .mb-tb-1{ margin-bottom: 1rem;}
	body .mb-tb-2{ margin-bottom: 2rem;}
	body .mb-tb-3{ margin-bottom: 3rem;}
	body .mb-tb-4{ margin-bottom: 4rem;}
	body .mb-tb-5{ margin-bottom: 5rem;}
	body .mb-tb-6{ margin-bottom: 6rem;}
    
    .no-wrap-tb{
        flex-wrap: nowrap;
    }

    .dir-row-tb{
        flex-direction:row;
    }

    .dir-col-tb{
        flex-direction:column;
    }
    
}

@media screen and (max-width: 768px){
    :root{
        --container-spacig-global: .8rem;
    }
	.nav__container.desktop__menu {
		display: none;
	}
	header.header__site {
		display: flex;
		align-items: center;
		width: 100%;
		flex-direction: row-reverse;
		justify-content: space-between;
	}
	header.header__site .row_cols {
		width: auto !important;
		align-items: center;
		justify-content: space-between;
	}
	.nav__container_date ul {
		margin-top: 0;
	}
	.container {
		padding-left: 1.2rem;
		padding-right: 1.2rem;
	}
    body .hidden_mob{
        display: none;
    }

    .col-mb-1 { flex: 0 0 8.33%; width: 8.33%; }
    .col-mb-2 { flex: 0 0 16.66%; width: 16.66%; }
    .col-mb-3 { flex: 0 0 25%; width: 25%; }
    .col-mb-4 { flex: 0 0 33.33%; width: 33.33%; }
    .col-mb-5 { flex: 0 0 41.66%; width: 41.66%; }
    .col-mb-6 { flex: 0 0 50%; width: 50%; }
    .col-mb-7 { flex: 0 0 58.33%; width: 58.33%; }
    .col-mb-8 { flex: 0 0 66.66%; width: 66.66%; }
    .col-mb-9 { flex: 0 0 75%; width: 75%; }
    .col-mb-10 { flex: 0 0 83.33%; width: 83.33%; }
    .col-mb-11 { flex: 0 0 91.66%; width: 91.66%; }
    .col-mb-12 { flex: 0 0 100%; width: 100%; }

    .box-col-mb-1 { flex: 0 0 calc(8.33% - calc( var(--column-gap) / 12 )); width: calc(8.33% - calc( var(--column-gap) / 12 )); }
    .box-col-mb-2 { flex: 0 0 calc(16.66% - calc( var(--column-gap) / 6 )); width: calc(16.66% - calc( var(--column-gap) / 6 )); }
    .box-col-mb-3 { flex: 0 0 calc(25% - calc( var(--column-gap) / 4 )); width: calc(25% - calc( var(--column-gap) / 4 )); }
    .box-col-mb-4 { flex: 0 0 calc(33.33% - calc( var(--column-gap) / 3 )); width: calc(33.33% - calc( var(--column-gap) / 3 )); }
    .box-col-mb-5 { flex: 0 0 calc(41.66% - var(--column-gap)); width: calc(41.66% - var(--column-gap)); }
    .box-col-mb-6 { flex: 0 0 calc(50% - calc( var(--column-gap) / 2 )); width: calc(50% - calc( var(--column-gap) / 2 )); }
    .box-col-mb-7 { flex: 0 0 calc(58.33% - var(--column-gap)); width: calc(58.33% - var(--column-gap)); }
    .box-col-mb-8 { flex: 0 0 calc(66.66% - var(--column-gap)); width: calc(66.66% - var(--column-gap)); }
    .box-col-mb-9 { flex: 0 0 calc(75% - var(--column-gap)); width: calc(75% - var(--column-gap)); }
    .box-col-mb-10 { flex: 0 0 calc(83.33% - var(--column-gap)); width: calc(83.33% - var(--column-gap)); }
    .box-col-mb-11 { flex: 0 0 calc(91.66% - var(--column-gap)); width: calc(91.66% - var(--column-gap)); }
    .box-col-mb-12 { flex: 0 0 100%; width: 100%; }

    .box-col-mb-2:not(:nth-child(6n)) { margin-right: calc( var(--column-gap) / 5 ); }
    .box-col-mb-3:not(:nth-child(4n)) { margin-right: calc( var(--column-gap) / 3 ); }
    .box-col-mb-4:not(:nth-child(3n)) { margin-right: calc( var(--column-gap) / 2 ); }
    .box-col-mb-5:not(:nth-child(2n)) { margin-right: calc( var(--column-gap) / 1 ); }
    .box-col-mb-6:not(:nth-child(2n)) { margin-right: calc( var(--column-gap) / 1 ); }
    .box-col-mb-7:not(:nth-child(2n)) { margin-right: calc( var(--column-gap) / 1 ); }
    .box-col-mb-8:not(:nth-child(2n)) { margin-right: calc( var(--column-gap) / 1 ); }
    .box-col-mb-9:not(:nth-child(2n)) { margin-right: calc( var(--column-gap) / 1 ); }
    .box-col-mb-10:not(:nth-child(2n)) { margin-right: calc( var(--column-gap) / 1 ); }
    .box-col-mb-11:not(:nth-child(2n)) { margin-right: calc( var(--column-gap) / 1 ); }
	
	body .mt-mb-0{ margin-top: 0;}
	body .mt-mb-1{ margin-top: 1rem;}
	body .mt-mb-1_5{ margin-top: 1.5rem;}
	body .mt-mb-2{ margin-top: 2rem;}
	body .mt-mb-3{ margin-top: 3rem;}
	body .mt-mb-4{ margin-top: 4rem;}
	body .mt-mb-5{ margin-top: 5rem;}
	body .mt-mb-6{ margin-top: 6rem;}

	body .mb-mb-0{ margin-bottom: 0;}
	body .mb-mb-0_3{ margin-bottom: 0.3rem;}
	body .mb-mb-1{ margin-bottom: 1rem;}
	body .mb-mb-2{ margin-bottom: 2rem;}
	body .mb-mb-3{ margin-bottom: 3rem;}
	body .mb-mb-4{ margin-bottom: 4rem;}
	body .mb-mb-5{ margin-bottom: 5rem;}
	body .mb-mb-6{ margin-bottom: 6rem;}

    body .ml-mb-0{ margin-left: 0;}
	body .ml-mb-1{ margin-left: 1rem;}
	body .ml-mb-2{ margin-left: 2rem;}
	body .ml-mb-3{ margin-left: 3rem;}
	body .ml-mb-4{ margin-left: 4rem;}
	body .ml-mb-5{ margin-left: 5rem;}
	body .ml-mb-6{ margin-left: 6rem;}

    body .mr-mb-0{ margin-right: 0;}
	body .mr-mb-1{ margin-right: 1rem;}
	body .mr-mb-2{ margin-right: 2rem;}
	body .mr-mb-3{ margin-right: 3rem;}
	body .mr-mb-4{ margin-right: 4rem;}
	body .mr-mb-5{ margin-right: 5rem;}
	body .mr-mb-5{ margin-right: 6rem;}t-0{ margin-top: 0;}
	body .mt-mb-1{ margin-top: 1rem;}
	body .mt-mb-1_5{ margin-top: 1.5rem;}
	body .mt-mb-2{ margin-top: 2rem;}
	body .mt-mb-3{ margin-top: 3rem;}
	body .mt-mb-4{ margin-top: 4rem;}
	body .mt-mb-5{ margin-top: 5rem;}
	body .mt-mb-6{ margin-top: 6rem;}

	body .mb-mb-0{ margin-bottom: 0;}
	body .mb-mb-0_3{ margin-bottom: 0.3rem;}
	body .mb-mb-1{ margin-bottom: 1rem;}
	body .mb-mb-2{ margin-bottom: 2rem;}
	body .mb-mb-3{ margin-bottom: 3rem;}
	body .mb-mb-4{ margin-bottom: 4rem;}
	body .mb-mb-5{ margin-bottom: 5rem;}
	body .mb-mb-6{ margin-bottom: 6rem;}


    .no-wrap-mb{
        flex-wrap: nowrap;
    }

    .dir-row-mb{
        flex-direction:row;
    }
        
    .dir-col-mb{
        flex-direction:column;
    }
    .info__details {
        padding: 1rem 1.5rem;
        min-width: 41rem;
    }
}