/******************************
*   Tipografias
******************************/
@import url('helvetica.css');
@import url('helvetica-cd.css');

:root {
    --v01: 108, 192, 74;
    --v02: 44, 109, 60;
    --color:  112, 112, 112;
    --v_txt:  22, 69, 33;
    --blanco: 255, 255, 255;
    --negro: 0, 0, 0;
    --amarillo: 255, 245, 0;

    --deg_gene: linear-gradient(-30deg, rgb(var(--v02), 1), rgb(var(--v01), 1));
    --deg_01: linear-gradient(30deg, rgb(var(--v02), 1), rgb(var(--v01), 1));
}

::selection {
    background: rgb(var(--v01), 1);
    color: rgb(var(--blanco), 1);
}
::-moz-selection {
    background: rgb(var(--v01), 1);
    color: rgb(var(--blanco), 1);
}
::-webkit-selection {
    background: rgb(var(--v01), 1);
    color: rgb(var(--blanco), 1);
}

/******************************
*   Reset
******************************/
* {
    border: 0px;
    margin: 0px;
    padding: 0px;
}
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    background: var(--deg_gene);
    color: rgb(var(--color), 1); 
    font-family: 'HelveticaNeue';
    font-weight: 300;
    font-style: normal;
    line-height: 1.4;
    top: 0 !important;
}
figure {
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
figure img { margin: 0 auto; }
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a, a:link, a:hover, a:visited {
    text-decoration: none;
    color: inherit;
    cursor: pointer;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 500;
    font-style: normal;
}
input[type="text"],
input[type="password"],
input[type="search"],
input[type="email"],
select,
textarea {
    display: block;
    width: 100%;
    padding: 0 0 12px;
    border-bottom: 1px solid rgb(var(--blanco), 1);
    color: rgb(var(--blanco), 1);
    background: transparent;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}
textarea {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
}
select {
    background: rgb(var(--blanco), 1);
    border-radius: 12px;
    padding: 12px;
}
select,
select option { color: rgb(var(--v_txt), 1); }
/* Change autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: rgb(var(--blanco), 1);
    -webkit-box-shadow: 0 0 0px 1000px rgb(var(--blanco), 0) inset;
    transition: background-color 5000s ease-in-out 0s;
}
input::placeholder,
textarea::placeholder { color: #565656; }
button { background: transparent; }
input:focus,
select:focus,
textarea:focus,
button:focus { outline: none !important; }
#onetrust-consent-sdk #onetrust-banner-sdk {
    background-color: #FFFFFF;
    bottom: inherit !important;
    position: fixed !important;
    top:0!important;
}
/* #ot-sdk-btn {
    margin-top: 12px;
    padding: 0 !important;
    font-size: 12px !important;
    color: inherit !important;
    border: 0 !important;
    text-decoration: underline!important;
}
#ot-sdk-btn:hover { background: transparent!important; } */

/******************************
*   Loader
******************************/
.pre {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 1000000;
    background: var(--deg_gene);
    color: rgb(var(--blanco), 1);
    text-align: center;
    padding: 0 15px;
}
.pre > div {
    min-height: 100vh;
    min-height: 100dvh;
}
.log__loader {
    margin: 0 auto;
    width: 180px;
}
.log__loader + p { margin-top: 20px; }
.legal__load {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px;
}
.legal__load .legal { opacity: .6; }
#slect-usuario .legal { margin: 0; }
.log__screen {
    margin: 0 auto;
    width: 200px;
    max-width: 80%;
    -webkit-transform: translateY(-60px);
    -moz-transform: translateY(-60px);
    -ms-transform: translateY(-60px);
    -o-transform: translateY(-60px);
    transform: translateY(-60px);
}
.hand__key {
    position: absolute;
    width: 90%;
    bottom: -20px;
    left: 50%;
    height: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.hand__key img {
    object-fit: contain;
    object-position: bottom;
    height: 100%;
    -webkit-transform: translateX(-70px);
    -moz-transform: translateX(-70px);
    -ms-transform: translateX(-70px);
    -o-transform: translateX(-70px);
    transform: translateX(-70px);
}
.count__load {
    position: relative;
    width: 40px;
    height: 40px;
    margin: 20px auto 0;
    animation: rotate 7s infinite linear; 
}
@keyframes rotate {
  0 {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.count__load span {
    position: absolute;
    width: 3px;
    height: 100%;
    left: 50%;
    top: 50%;
}
.count__load span::before,
.count__load span::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    height: 25%;
    border-radius: 10px;
    background: rgb(var(--v01), 1);
}
.count__load span::before { transform-origin: bottom; }
.count__load span::after { transform-origin: top; }
.count__load span::before { top: 0; }
.count__load span::after { bottom: 0; }
.count__load span:nth-child(1) {
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.count__load span:nth-child(2) {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    -o-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}
.count__load span:nth-child(3) {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    -moz-transform: translate(-50%, -50%) rotate(90deg);
    -ms-transform: translate(-50%, -50%) rotate(90deg);
    -o-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}
.count__load span:nth-child(4) {
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    -moz-transform: translate(-50%, -50%) rotate(135deg);
    -ms-transform: translate(-50%, -50%) rotate(135deg);
    -o-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg);
}
.count__load span:nth-child(1)::before,
.count__load span:nth-child(1)::after,
.count__load span:nth-child(2)::before,
.count__load span:nth-child(2)::after,
.count__load span:nth-child(3)::before,
.count__load span:nth-child(3)::after,
.count__load span:nth-child(4)::before,
.count__load span:nth-child(4)::after { animation: min 1s infinite alternate linear; }
.count__load span:nth-child(2)::before { animation-delay: .5s; }
.count__load span:nth-child(3)::before { animation-delay: .6s; }
.count__load span:nth-child(4)::before { animation-delay: .7s; }
.count__load span:nth-child(1)::after { animation-delay: .8s; }
.count__load span:nth-child(2)::after { animation-delay: .9s; }
.count__load span:nth-child(3)::after { animation-delay: 1.1s; }
.count__load span:nth-child(4)::after { animation-delay: 1.2s; }

@keyframes min {
  0 {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(.6);
    background: rgb(var(--blanco), .5);
  }
}

/******************************
*	General
******************************/
mian * + a,
* + img,
* + figure,
main a + *,
img + *,
figure + * { margin-top: 40px; }
main a,
img,
figure { display: block; }
/*------ Textos ------*/
h2, h3, h4, h5, h6 { color: rgb(var(--v_txt), 1); }
h2, h3 { font-size: 20px; }
h4, h5, h6 { font-size: 16px; }

h2 + p,
h3 + p,
h2 + ul,
h3 + ul,
h2 + ol,
h3 + ol,
h2 + h4,
h2 + h5,
h2 + h6,
h3 + h4,
h3 + h5,
h3 + h6,
h2 + div,
h3 + div { border-top: 1px solid rgb(var(--v01), .25); }

h2 + p,
h3 + p,
h2 + ul,
h3 + ul,
h2 + ol,
h3 + ol,
h2 + h4,
h2 + h5,
h2 + h6,
h3 + h4,
h3 + h5,
h3 + h6,
h2 + div,
h3 + div  {
    margin-top: 10px !important;
    padding-top: 20px;
}

h2 + h2,
h2 + h3,
h3 + h2,
h3 + h3,
h3 + h2,
h3 + h3,
h4 + h2,
h4 + h3,
h5 + h2,
h5 + h3,
h6 + h2,
h6 + h3,
p + h3,
p + h4,
p + h5,
p + h6,
ul + h3,
ul + h4,
ul + h5,
ul + h6,
ol + h3,
ol + h4,
ol + h5,
ol + h6 { margin-top: 30px; }

p { margin: 0; }
p a { display: inline-block; }

p + p, 
h4 + p,
h5 + p,
h6 + p,
h4 + ul,
h5 + ul,
h6 + ul,
h4 + ol,
h5 + ol,
h6 + ol,
h4 + h4,
h4 + h5,
h4 + h6,
h5 + h4,
h5 + h5,
h5 + h6,
h6 + h4,
h6 + h5,
h6 + h6,
p + ol,
p + ul,
ul + ul,
ul + ol,
ol + ul,
ol + ol,
ol + p,
ul + p,
div + p,
p + div { margin-top: 15px; }

ol, ul { padding-inline-start: 20px; }
ul { list-style: disc; }
ol { list-style: decimal; }
ul[type='a'],
ol[type='a'] { list-style: lower-latin; }
ul[type='i'],
ol[type='i'] { list-style: lower-roman; }

ul li::marker,
ol li::marker {
    color: rgb(var(--v01), 1);
    font-weight: normal;
}
ul li + li,
ol li + li { margin-top: 15px; }

.list {
    list-style: none;
    padding-inline-start: 0px;
}
.list li {
    padding: 12px 0;
    position: relative;
}
.list li + li::before {
    content: '';
    width: 100%;
    position: absolute;
    top: 0;
    border-top: 1px solid;
}
.list__lienas li { padding: 16px 0; }
.list__lienas li + li { margin-top: 0; }

.referencias {
    padding-top: 50px;
    font-size: 12px;
}
.referencias strong {
    display: block;
    margin-bottom: 6px;
}
.referencias ol li + li { margin-top: 2px; }

/*------ Contenedores ------*/
.wrapper { position: relative; }
main {
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    z-index: 1;
}
.info__center {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.info__center > div,
.info__center > section { width: 100%;}
.c__w { color: rgb(var(--blanco), 1); }
.space__b { padding: 60px 0; }
.txt__c { text-align: center; }

/*------ Secciones ------*/
.h__sect {
    padding-top: 20px;
    padding-bottom: 20px;
    color: rgb(var(--blanco), 1);
    position: relative;
}
.h__sect::before {
    content: '';
    position: absolute;
    top: -70px;
    left: 0;
    right: 0;
    bottom: -60px;
    background: var(--deg_gene);
    z-index: -1;
}
.cont__sect {
    min-height: calc(100vh - 230px);
    min-height: calc(100dvh - 230px);
    padding-top: 20px;
    padding-bottom: 40px;
    background: rgb(var(--blanco), 1);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}
.sect__02 { border-radius: 0; }
.ti01 {
    text-align: center;
    font-size: 20px;
}

/*------ Logo ------*/
.logo__wi {
    width: 180px;
    margin-right: auto;
    margin-left: auto;
}
.logo__wi + div,
.logo__wi + p { margin-top: 30px; }
.logo__min { width: 100px; }

/*------ Cta ------*/
.c__cta,
.camp + .camp.c__cta {
    margin-top: 60px !important;
    text-align: center;
}
.cta {
    display: inline-block;
    padding: 20px;
    border-radius: 12px;
    line-height: 1;
    font-weight: normal;
    max-width: 250px;
    width: 100%;
    margin: 10px !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.cta__01 {
    color: rgb(var(--blanco), 1) !important;
    background: rgb(var(--v_txt), 1);
}
.cta__02 {
    color: rgb(var(--v_txt), 1) !important;
    border: 1px solid rgb(var(--v_txt), 1);
}
.cta__02:hover {
    color: rgb(var(--blanco), 1) !important;
    border: 1px solid rgb(var(--v_txt), 1);
}
.cta__02::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 0%;
    right: 0;
    left: auto;
    height: 100%;
    background: rgb(var(--v_txt), 1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: -1;
}
.cta__02:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}
.cta span {
    display: inline-block;
    margin-left: 10px;
    -webkit-transform: translateY(1px) scale(1.3);
    -moz-transform: translateY(1px) scale(1.3);
    -ms-transform: translateY(1px) scale(1.3);
    -o-transform: translateY(1px) scale(1.3);
    transform: translateY(1px) scale(1.3);
}
li .c__cta { margin-top: 20px; }
.cta.disabled {
    background: rgb(var(--color), 1);
    opacity: .6;
    pointer-events: none;
}

.txt__ini {
    max-width: 400px;
    margin: 0 auto 20px;
    padding: 0 20px;
}
/*------ Icono ------*/
.icon__circ {
    max-width: 200px;
    width: 100%;
    border-radius: 50%;
    background: rgb(var(--v_txt), 1);
}
.cont__icon {
    margin: 0 auto 20px;
    width: 80px;
}

/*------ Separaciones ------*/
.cont__sect .container > div + *,
.cont__sect .container > * + div { margin-top: 20px; }
.cont__sect .list li + li::before { border-color: rgb(var(--v01), .25); }
.cont__sect p a {
    text-decoration: underline;
    color: rgb(var(--v_txt), 1);
}

/*------ Fil flex ------*/
.cont__fil { 
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}
.fil__flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.col__01,
.col__03 {
    width: 50px;
    min-width: 50px;
}
.col__02 { width: 100%; }

.fil__flex .col__02:first-child {
    padding-left: 25px;
    position: relative;
}
.fil__flex .col__02:first-child::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgb(var(--v01), 1);
    border-radius: 50%;
    left: 4px;
    top: 4px;
}
.fil__flex .col__02.inactive { padding-left: 0; }
.fil__flex .col__02.inactive::before { content: unset; }

/*------ Tipo de linea ------*/
.linea,
.liena__tipo {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.linea {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-family: 'Helvetica Neue';
    font-weight: 900;
    font-style: normal;
    position: relative;
    background: rgb(var(--v01), 1);
}
.linea__nume {
    color: rgb(var(--v_txt), 1);
    font-size: 24px;
    line-height: 1;
}
.liena__tipo {
    position: absolute;
    top: -2px;
    right: -4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 14px;
    color: rgb(var(--blanco), 1);
    background: rgb(var(--v02), 1);
    text-transform: uppercase;
}

/*------ // ------*/
.col__02 { width: calc(100% - 50px); }
.col__01 + .col__02 .txt__box { padding-left: 30px; }
.txt__box {
    padding-right: 30px;
    color: rgb(var(--v_txt), 1);
    text-align: left;
}
.txt__box p { margin: 0; }
.txt__box p:first-child { line-height: 1.2; }
.low__level {
    opacity: .6;
    font-size: 14px;
}
.xtract__text {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: rgb(var(--color), 1);
}
.icon__end { text-align: center; }
.list__lienas li a .icon__end span {
    opacity: .3;
    display: inline-block;
    -webkit-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -moz-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -ms-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -o-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
}
.list__lienas li a:hover .icon__end span {
    -webkit-transform: translateX(6px);
    -moz-transform: translateX(6px);
    -ms-transform: translateX(6px);
    -o-transform: translateX(6px);
    transform: translateX(6px);
}
.icon__save {
    width: 100%;
    text-align: center;
    cursor: pointer;
    font-family: 'icomoon' !important;
}

.icon {
    font-size: 36px;
    color: rgb(var(--v02), 1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.icon::before { content: "\e90a"; }
.note__save .icon { color: rgb(var(--v01), 1); }
.note__save .icon::before { content: "\e909"; }

.opt__vid {
    display: block;
    position: relative;
}
.opt__vid::before,
.opt__vid::after {
    content: '';
    position: absolute;
}
.opt__vid::before {
    width: 50px;
    padding-top: 50px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgb(var(--negro), .4);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.opt__vid:hover::before { background: rgb(var(--negro), .6); }
.opt__vid::after {
    top: 50%;
    left: 50.2%;
    width: 0;
    height: 0;
    border-left: 15px solid rgb(var(--blanco), 1);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/******************************
*   Header
******************************/
.header { height: 70px; }
.cont__menu {
    color: rgb(var(--blanco), 1);
    position: fixed;
    padding: 10px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;

    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.bg__men {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgb(var(--blanco), 1);
    z-index: -1;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.setc__men {
    --largo: 50px;
    --alto: 50px;
}
.s__01 {
    width: var(--largo);
    height: var(--alto);
}
.icon__men {
    width: var(--largo);
    height: var(--alto);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.icon__men span { font-size: 18px; }
.logo svg {
    width: 100%;
    height: auto;
    display: block;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.logo svg .st0 { fill: rgb(var(--blanco), 1); }
.logo svg .st1 { fill: #1b5f2b; }
.s__02 .logo { width: 120px; }
.btn__men {
    width: var(--largo);
    height: var(--alto);
    position: relative;
    cursor: pointer;
}
.btn__men > div {
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.btn__men > div span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgb(var(--blanco), 1);
    -webkit-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -moz-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -ms-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -o-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
}
.btn__men > div span + span { margin-top: 6px; }
.btn__men.active > div span + span{ margin-top: 0px; }
.btn__men.active > div span:nth-child(1) {
    -webkit-transform: translate(0px, 2px) rotate(45deg);
    -moz-transform: translate(0px, 2px) rotate(45deg);
    -ms-transform: translate(0px, 2px) rotate(45deg);
    -o-transform: translate(0px, 2px) rotate(45deg);
    transform: translate(0px, 2px) rotate(45deg);
}
.btn__men.active > div span:nth-child(2) {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}
.btn__men.active > div span:nth-child(3) {
    -webkit-transform: translate(0px, -2px) rotate(-45deg);
    -moz-transform: translate(0px, -2px) rotate(-45deg);
    -ms-transform: translate(0px, -2px) rotate(-45deg);
    -o-transform: translate(0px, -2px) rotate(-45deg);
    transform: translate(0px, -2px) rotate(-45deg);
}
.s__03 {
    position: relative;
    z-index: 10;
}
.menu {
    position: fixed;
    display: none;
    top: 0%;
    left: 0;
    width: 100%;
    background: var(--deg_gene);
    color: rgb(var(--blanco), 1);
    padding: 15px 0 0;
    -webkit-transform: translateY( -100%);
    -moz-transform: translateY( -100%);
    -ms-transform: translateY( -100%);
    -o-transform: translateY( -100%);
    transform: translateY( -100%);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    -webkit-box-shadow: 0 5px 10px 0 rgb(var(--negro), .2);
    box-shadow: 0 5px 10px 0 rgb(var(--negro), .2);
}
.menu .logo {
    width: 130px;
    margin: 6px 0 6px;
}
.cont__nav {
    /* width: 100%; */
    height: 75vh;
    height: 75dvh;
    overflow: auto;
    margin-left: -15px;
    margin-right: -15px;
}
.nav__info {
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 15px;
}
.nav__info > div + div { margin-top: 40px; }
.nav__info nav ul li {
    padding-right: 10px;
    margin-top: 0;
}
.nav__info nav ul li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: bold;
}
.nav__info nav ul li a .icon-a-next { font-size: 12px; }
.info__extra {
    font-weight: bold;
    font-size: 18px;
}
.info__extra a {
    display: block;
    margin: 0;
}
.info__extra a span {
    margin-left: 10px;
    display: inline-block;
    font-size: 14px;
    -webkit-transform: translateY(1px);
    -moz-transform: translateY(1px);
    -ms-transform: translateY(1px);
    -o-transform: translateY(1px);
    transform: translateY(1px);
}
.cont__legal .legal { color: rgb(var(--blanco), .7); }

.cont__legal .alerta {
    max-width: 100%;
    margin-bottom: 20px;
}
.cont__legal .alerta .clos__alerta {display: none; }
.nav__info .cont__legal { padding-bottom: 15px; }

/*-----------------------  Active ----------------------- */
.active .cont__menu { color: rgb(var(--v02), 1); }
.active .bg__men {
    height: 100%;
    -webkit-box-shadow: 0 0px 10px 0 rgb(var(--negro), .1);
    box-shadow: 0 0px 10px 0 rgb(var(--negro), .1);
}
.active .s__02 .logo svg .st1 { fill: #69b547; }
.active .s__02 .logo svg .st0 { fill: #1b5f2b; }

.active .btn__men > div span { background: rgb(var(--v02), 1); }
.btn__men.active > div span { background: rgb(var(--blanco), 1); }

/*-----------------------  Regresar Simple ----------------------- */
.opt__back {
    position: absolute;
    top: 15px;
    left: 10px;
    z-index: 10;
    color: rgb(var(--blanco), 1);
    cursor: pointer;
}
.opt__back .icon__men {
    width: 50px;
    height: 50px;
}

/******************************
*   Menu Secundario
******************************/
.men__secu {
    padding: 15px 0;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1;
    background: rgb(var(--blanco), 1);
    -webkit-box-shadow: 0 -5px 5px 0 rgb(var(--negro), .03);
    box-shadow: 0 -5px 5px 0 rgb(var(--negro), .03);
    margin-bottom: -1px;
}
.men__secu ul {
    list-style: none;
    margin: 0 auto;
    min-width: 320px;
    max-width: 400px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: space-around;
    -webkit-justify-content: space-around;
    -ms-flex-pack: space-around;
    justify-content: space-around;
    padding-inline-start: 0px;
}
.men__secu ul li { margin: 0; }
.men__secu ul li a {
    font-size: 32px;
    display: flex;
    color: rgb(var(--negro), .4);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.men__secu ul li:nth-child(3) a {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}
.men__secu ul li:hover a,
.men__secu ul li.active a { color: rgb(var(--v02), 1); }

/******************************
*   Footer
******************************/
.footer {
    padding: 20px 0;
    background: rgb(var(--blanco), 1); 
    color: rgb(var(--color), .8); 
}
.footer .legal { text-align: center; }
.legal { font-size: 10px; }
.legal a {
    margin-top: 12px;
    text-decoration: underline;
    font-size: 12px;
    display: inline-block;
}
.legal a + button { margin-left: 10px; }

/******************************
*   Card
******************************/
.cont__cards {
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
}
.s__cards .slick-list { border-radius: 20px; }
.s__cards a:focus { outline: none; }
.card {
    border-radius: 20px;
    padding: 20px;
    color: rgb(var(--blanco), 1);
    line-height: 1.2;
    position: relative;
    overflow: hidden;
}
.card a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    margin: 0;
}
.c_01 { background: var(--deg_01); }
.c_02 { background: var(--deg_gene); }
.fil__col,
.c__col {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.fil__col {
    margin: 0 -20px; 
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
}
.c__col {
    padding: 0 20px;
    flex-direction: column;
    -webkit-box-pack: space-around;
    -webkit-justify-content: space-around;
    -ms-flex-pack: space-around;
    justify-content: space-around;
}
.c__col > div + div { margin-top: 20px; }
.c_02 .c__col { font-size: 24px; }
.img__card {
    width: 130px;
    height: 130px;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, .3));
}
.img__card img {
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: center;
    margin: 0 0 0 auto;
}
.c__slide .img__card { width: 200px; }
.flex__mid {
    display: flex;
    align-items: center;
}
.c__col .flex__mid span { font-size: 14px; }
* + .arr { margin-right: 6px; }
.arr + * { margin-left: 6px; }
.arr { display: inline-block; }
.arr > div {
    width: 25px;
    height: 25px;
    border-radius: 1000px;
    background: rgb(var(--blanco), 1);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.arr > div i {
    font-size: 10px;
    color: rgb(var(--v_txt), 1);
    -webkit-transform: translateX(1px);
    -moz-transform: translateX(1px);
    -ms-transform: translateX(1px);
    -o-transform: translateX(1px);
    transform: translateX(1px);
}

/******************************
*   Dots Slider
******************************/
.s__doots.slick-dotted.slick-slider { margin-bottom: 0px; }
.s__doots .slick-dots {
    margin-top: 5px;
    position: relative;
    bottom: 0;
    padding-inline-start: 0px;
}
.s__doots .slick-dots li {
    width: initial;
    height: initial;
}
.s__doots .slick-dots li button {
    width: initial;
    height: initial;
    padding: 0;
}
.s__doots .slick-dots li button::before {
    position: relative;
    font-size: 10px;
    line-height: 0;
    color: rgb(var(--color), 1);
    width: 100%;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.s__doots .slick-dots li.slick-active button::before { color: rgb(var(--v01), 1); }

.doot__w .slick-dots li button::before,
.doot__w .slick-dots li.slick-active button::before { color: rgb(var(--blanco), 1); }

/******************************
*   Grid
******************************/
.grid__opt {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
    margin: 0 -8px;
}
.opt__item {
    padding: 8px;
    width: 33.33%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.item {
    border-radius: 20px;
    -webkit-box-shadow: 0 0px 10px 0 rgb(var(--negro), .1);
    box-shadow: 0 0px 10px 0 rgb(var(--negro), .1);
    height: 100%;
}
.item a {
    display: block;
    padding: 10px;
}
.img__tipo figure {
    width: 65%;
    margin: 0 auto;
}
.txt__tipo {
    line-height: 1.1;
    text-align: center;
    color: rgb(var(--v_txt), 1);
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

/******************************
*   Seleccion de usuario
******************************/
#slect-usuario .space__b { padding-bottom: 140px; }
.select__user {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;

    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}
.select__user {
    max-width: 550px;
    margin: 0 auto;
}
.select__user + div,
div + .select__user,
.select__user + p,
p + .select__user { margin-top: 30px; }
.select__user > div {
    width: 50%;
    padding: 0 30px;
    position: relative;
}
.select__user > div + div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid rgb(var(--blanco), .3);
    height: 100%;
}
.select__user > div a { display: block; }
.select__user > div a div {
    max-width: 84px;
    width: 60%;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}
.footer__opt {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
}
.logo__key {
    width: 120px;
    margin: 0 auto 10px;
}
.logo__msd {
    width: 90px;
    margin: 0 auto 10px;
}

/******************************
*   Formulario: Campos
******************************/
.cont__form {
    max-width: 450px;
    width: 90%;
    margin: 30px auto;
    text-align: left;
}
.cont__form label {
    font-weight: 300;
    font-style: normal;
    margin-bottom: 8px;
}
.camp,
.c__in { position: relative; }
.camp + .camp { margin-top: 30px; }
.icon__a {
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: rgb(var(--v_txt), 1);
    pointer-events: none;
}
.show__pass {
    position: absolute;
    top: 0;
    right: 10px;
    width: 30px;
    height: 100%;
    z-index: 1;
    cursor: pointer;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.show__pass img { width: 100%; }
* + .otra__opt { margin-top: 20px; }
.otra__opt { text-align: center; }
.otra__opt p { margin-bottom: 10px; }
.otra__opt a { margin: 0; }
.fil__avatar {
    margin-top: 20px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.item__ava + .item__ava { margin-left: 30px; }
.item__ava { width: 80px; }
.item__ava label {
    position: relative;
    margin: 0;
    cursor: pointer;
}
.item__ava label,
.item__ava label figure {
    display: block;
    width: 100%;
}
.item__ava label input {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    border: 0;
    opacity: 0;
}
.item__ava label i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgb(var(--v01), 1);
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}
.item__ava label input:checked + i {
    opacity: 1;
    -webkit-box-shadow: 0 5px 8px 0 rgb(var(--negro), .3);
    box-shadow: 0 5px 8px 0 rgb(var(--negro), .3);
}
.c__check label {
    padding-left: 25px;
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
}
.c__check label input { opacity: 0; }
.c__check label input,
.c__check label i {
    position: absolute;
    width: 18px;
    height: 18px;
    top: 2px;
    left: 0;
    margin: 0;
}
.c__check label i {
    border: 1px solid rgb(var(--blanco), 1);
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.c__check label input:checked + i { background: rgb(var(--blanco), 1); }
.txt__msn,
.msn__error { color: rgb(var(--amarillo), 1); }
.txt__msn { text-align: center; }
.msn__error {
    position: absolute;
    top: calc(100% + 2px);
    font-size: 14px;
}
.forget { text-align: center; }
.msn__01 { color: rgb(var(--blanco), 1); }
.check {
    width: 70px;
    margin: 0 auto 30px;
}
.cont__sect .cont__form { margin: 0 auto; }
.cont__sect .cont__form input[type="text"],
.cont__sect .cont__form input[type="password"],
.cont__sect .cont__form input[type="search"],
.cont__sect .cont__form select,
.cont__sect .cont__form textarea {
    display: block;
    width: 100%;
    padding: 12px 0;
    border-bottom: 0;
    color: rgb(var(--v_txt), 1);
    background: transparent;
    -moz-appearance: none;
    -webkit-appearance: none;
}
.cont__sect .cont__form label {
    margin-bottom: 0;
    color: rgb(var(--v_txt), 1);
    font-weight: normal;
}
.edit__camp {
    font-size: 28px;
    color: rgb(var(--v01), 1);
    cursor: pointer;
}
.edit__camp.active { color: rgb(var(--color), 1); }
#cantactanos .cont__sect .cont__form input[type="text"] {
    color: rgb(var(--color), 1);
    border-bottom: 1px solid rgb(var(--color), .6);
}
#cantactanos .txt__msn,
#cantactanos .msn__error { color: rgb(var(--v02), 1); }
#cantactanos .txt__msn span,
#cantactanos .msn__error span { display: block; }
.chbox { position: relative; }
.chbox + .chbox { margin-top: 12px; }
.chbox label {
    cursor: pointer;
    padding-left: 30px;
    margin: 0;
}
.chbox input,
.chbox i {
    position: absolute;
    width: 20px;
    height: 20px;
    margin: 0;
    left: 0;
}
.chbox input {
    opacity: 0;
    cursor: pointer;
}
.chbox i {
    pointer-events: none;
    border-radius: 4px;
    border: 1px solid rgb(var(--color), .6);
}
.chbox input:checked + i {
    background: rgb(var(--v01), 1);
    border: 1px solid rgb(var(--v01), 1);
}
.labl {
    display: block;
    margin-bottom: 12px;
    color: rgb(var(--v_txt), 1);
    font-weight: normal;
}
.txt__term {
    font-size: 14px;
}
.txt__term a { text-decoration: underline; }
.codigo__seg { text-align: center; }
input[type="text"].c__codigo {
    background: rgb(var(--blanco), 1);
    padding: 12px;
    border-bottom: 0;
    color: rgb(var(--color), 1);
    text-align: center;
    border-radius: 12px;
    font-weight: bold;
    font-size: 22px;
    margin: 0 auto;
}

/******************************
*   Perfil
******************************/
#perfil .sect__02 {
    padding-top: 0;
    min-height: 100vh;
    min-height: 100dvh;
}
#articulos .sect__02 { padding-top: 80px; }
#articulos .perf__control { color: rgb(var(--v_txt), 1); }
.perf__control {
    position: fixed;
    width: 100%;
    z-index: 100;
    padding: 20px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: rgb(var(--blanco), 1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.perf__control.active {
    background: rgb(var(--blanco), 1);
    color: rgb(var(--v_txt), 1);
    -webkit-box-shadow: 0 4px 10px 0 rgb(var(--negro), .2);
    box-shadow: 0 4px 10px 0 rgb(var(--negro), .2);
}
.cntrl__01,
.cntrl__03 { width: 30px; }
.cntrl__02 {
    text-align: center;
    font-size: 20px;
    font-weight: normal;
}
.head__pef {
    padding: 80px 20px 30px;
    background: var(--deg_gene);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    margin-bottom: 30px;
    color: rgb(var(--blanco), 1);
    text-align: center;
}
.perf__datos > div + div  { padding-top: 30px; }
.perf__icon {
    margin: 0 auto;
    width: 90px;
    position: relative;
}
.perf__icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgb(var(--v01), 1);
}
.perf__user h4,
.perf__user h5 {
    margin: 0;
    color: rgb(var(--blanco), 1);
    line-height: 1.2;
}
.perf__user h4 { font-weight: normal; }
.perf__user h5 {
    opacity: .8;
    font-weight: 300;
}
.btn__art { text-align: center; }
.btn__art a {
    display: inline-block;
    padding: 12px 15px;
    border-radius: 12px;
    line-height: 1;
    font-weight: normal;
    max-width: 270px;
    width: 100%;
    background: rgb(var(--v_txt), 1);
}
.btn__art a > div {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
}
.btn__col + .btn__col { margin-left: 6px; }
.cbtn__01 {
    font-size: 32px;
    color: rgb(var(--v01), 1);
    line-height: 0;
}
.logout a { font-weight: bold; }
.mod__head + .mod__head { margin-top: 20px; }
.mod__head a { display: inline-block; }
.cont__user {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.cont__user div + div { margin-left: 20px; }
.user__icon { width: 70px; }
.icon__user {
    width: 70px;
    height: 70px;
    position: relative;
    cursor: pointer;
    pointer-events: all;
}
.perf__icon .icon__user {
    width: 90px;
    height: 90px;
}
.icon__user.no__photo::before,
.icon__user.no__photo::after {
    content: '';
    position: absolute;
    width: 35%;
    height: 2px;
    background: rgb(var(--v01), 1);
    top: 50%;
    left: 50%;
}
.icon__user.no__photo::before {
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.icon__user.no__photo::after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    -moz-transform: translate(-50%, -50%) rotate(90deg);
    -ms-transform: translate(-50%, -50%) rotate(90deg);
    -o-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}
.user__info span {
    text-align: left;
    display: block;
}
.info__saludo { font-weight: bold; }
.info__name { font-weight: normal; }
.info__espe {
    font-size: 14px;
    opacity: .6;
}
#perfil .fil__flex {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: flex-end;
}
#perfil .fil__flex .col__02:first-child { padding-left: 0px; }
#perfil .fil__flex .col__02:first-child::before { content: unset; }
#perfil .col__03 { margin-bottom: 5px; }

#articulos .cont__sect {
    min-height: calc(100vh - 50px);
    min-height: calc(100dvh - 50px);
}
.add__ava {
    margin: 5px auto 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgb(var(--v_txt), 1);
    color: rgb(var(--v01), 1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    line-height: 1;
}
.add__ava span {
    display: block;
    line-height: 0;
    transform: translate(0px, -3px);
}

/******************************
*   Busqeuda
******************************/
.search {
    max-width: 600px;
    margin: 0 auto;
}
.search .camp input {
    border: 0;
    border-radius: 12px;
    background: rgb(var(--blanco), 1);
    color: rgb(var(--v_txt), 1);
    padding: 12px 12px 12px 40px;
}
.search .camp button {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    color: rgb(var(--color), 1);
    width: 40px;
}

/******************************
*   Alerta
******************************/
.c__alerta {
    position: fixed;
    bottom: 0px;
    width: 100%;
    padding: 15px;
    z-index: 10;
    -webkit-transition: all .6s cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -moz-transition: all .6s cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -ms-transition: all .6s cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -o-transition: all .6s cubic-bezier(0.68, -0.1, 0.265, 1.55);
    transition: all .6s cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
}
.c__alerta.active {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
}
.alerta a { margin: 0 auto; }
.alerta + .alerta { margin-top: 15px; }
.alerta {
    padding: 15px;
    border-radius: 16px;
    background: rgb(var(--blanco), 1);
    -webkit-box-shadow: 0 0 10px 0 rgb(var(--negro), .15);
    box-shadow: 0 0 10px 0 rgb(var(--negro), .15);
    border: 1px solid rgb(var(--color), .1);
    color: rgb(var(--color), 1);
    margin: 0 auto;
    max-width: 600px;
    position: relative;
}
.clos__msn {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    cursor: pointer;
    z-index: 1;
}
.clos__msn::before,
.clos__msn::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 2px;
    background: rgb(var(--v02), 1);
    top: 50%;
    left: 50%;
}
.clos__msn::before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    -o-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}
.clos__msn::after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    -o-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}
.fil__ale {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.col__al + .col__al { margin-left: 20px; }
.al__01 span {
    font-size: 36px;
    color: rgb(var(--v01), 1);
}
.al__02 span {
    display: block;
    line-height: 1.3;
}
.al__02 span:nth-child(1) {
    color: rgb(var(--v_txt), 1);
    font-weight: bold;
}
.al__02 span:nth-child(2) {
    font-size: 14px;
    opacity: .9;
}
.icon__app { width: 50px; }

/******************************
*   Videos
******************************/
.c__vid .opt__vid + a { margin-top: 12px; }
.c__vid h3 {
    font-size: 18px;
    text-align: center;
}
.codigos {
    text-align: center;
    font-weight: 500;
}

/******************************
*	Divice
******************************/
#aceso-directo .logo__wi + p { margin-top: 10px; }
#aceso-directo .space__b { padding-top: 80px; }
.icon__wikey {
    width: 70px;
    margin: 0 auto 30px;
    filter: drop-shadow(0px 10px 10px rgb(var(--negro), .3));
}
.type__divice {
    margin: 40px auto 0;
    max-width: 600px;
}
.type__divice > div + div { margin-top: 40px; }
.type__divice .txt__box { color: rgb(var(--blanco), 1); }

.slide__pasos { margin: 0 -15px; }
.cont__paso {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
}
.cont__paso * + *  { margin-top: 30px; }
.cont__paso p {
    font-weight: normal;
    line-height: 1.2;
}
.cont__paso figure img { max-height: 45vh; }

/******************************
*   Pop Up
******************************/
.c__lb {
    position: relative;
    z-index: 10000;
}
.lb__info {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgb(var(--negro), .6);
    overflow: auto;
}
.lb__info .info__center {
    min-height: 100vh;
    min-height: 100dvh;
}
.lb__info .info__center .info { padding: 0 15px; }
.box__lb {
    margin: 0 auto;
    max-width: 600px;
    position: relative;
    border-radius: 12px;
    background: rgb(var(--blanco), 1);
    -webkit-box-shadow: 0 5px 10px 0 rgb(var(--negro), .2);
    box-shadow: 0 5px 10px 0 rgb(var(--negro), .2);
}
.box__lb .clos__msn {
    width: 45px;
    height: 45px;
}
.box__text {
    padding: 50px 30px 30px;
    text-align: center;
}
.box__text p a { display: initial; }
.icon__lb {
    width: 60px;
    margin: 0 auto 30px;
}
.box__text .c__cta { margin-top: 40px !important; }
.box__text .cta {
    padding: 15px 20px;
    max-width: 150px;
}
#iniciar-sesion strong { font-weight: 500; }


/******************************
*	Mobile
******************************/
/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
@media (max-width : 667px) {
/*------------------------------   Grid   ------------------------------*/
.txt__tipo {
    font-size: 12px;
    margin-left: -3px;
    margin-right: -3px;
    min-height: 28px;
}
/*------------------------------   Grid: Video   ------------------------------*/
.g__vid .opt__item { width: 50%; }
}
@media (min-width : 668px) {
/*------------------------------   Perfil   ------------------------------*/
.cont__user {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.mod__head { text-align: center; }
/*------------------------------   Grid   ------------------------------*/
.txt__tipo {
    min-height: 36px;
    padding: 0 12px;
    font-size: 14px;
}
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {
/*------------------------------   Grid   ------------------------------*/
.img__tipo + div { margin-top: 10px; }
}
/* Medium Devices to Large Devices */
@media (min-width : 768px){  
/*------------------------------   Menu Secundario   ------------------------------*/
.men__secu ul li a { font-size: 32px; }
/*------------------------------   Grid   ------------------------------*/
.item a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.item a > div { width: 50%; }
.img__tipo figure { width: 70%; }
}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
@media (max-width : 991px) {
}
@media (min-width : 992px) {
.container { width: 970px; } 
/*------------------------------   Grid   ------------------------------*/
.grid__opt { margin: 0 -15px; }
.opt__item { padding: 15px; }
}
/* Large Devices, Wide Screens */
@media (min-width : 992px) and (max-width : 1200px) {
}



/******************************
*	Footer
******************************/
/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {
}
/* Medium Devices to Large Devices */
@media (min-width : 768px){
}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
/* Large Devices, Wide Screens */
@media (min-width : 992px) and (max-width : 1200px) {
}

/******************************
*	Header
******************************/
/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {
}
/* Medium Devices to Large Devices */
@media (min-width : 768px) {
.s__02 .logo { width: 150px; }
.menu .container {
    width: 100%;
    padding: 0;
}
.menu .logo {
    margin-left: auto;
    margin-right: auto;
}
.nav__info {
    width: 668px;
    margin-left: auto;
    margin-right: auto;
}
.a__next:last-child {
    -webkit-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -moz-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -ms-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -o-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
}
.nav__info nav ul li a:hover .a__next:last-child {
    -webkit-transform: translateX(6px);
    -moz-transform: translateX(6px);
    -ms-transform: translateX(6px);
    -o-transform: translateX(6px);
    transform: translateX(6px);
}
}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
/* Large Devices, Wide Screens */
@media (min-width : 992px) and (max-width : 1200px) {
}