/* width */

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}


/* Track */

::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: var(--c2-dark);
}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: var(--c2-medium);
}

:root {
    --c0-light: #fff;
    --c1-dark: #565050;
    /* marrón oscuro */
    --c1-medium: #7eb4b2;
    /* darkcyan */
    --c2-medium: #16bab3;
    --c2-dark3: #03b2ab;
    /* azul chillón */
    --c2-light2: #06b5ae;
    /* azul chillón */
    --c2-dark2: #159993;
    /* azul chillón */
    --c2-dark: #7eb4b2;
    /* azul verdoso */
    --c2-light: #eaf7f6;
    /* azul claro */
    --c3-light: #f9f7f2;
    --c3-medium: #5ac3bf;
    --c3-dark: #b5dad7;
    /* beige claro */
    /*f0ebe0*/
    --c4-light: #f0ebe0;
    /* beige claro2 */
    /*f0ebe0*/
    --border-radius: .15em;
    --border-radius-pq: .15em;
    /*--error-bg-color: coral;*/
    --error-bg-color: #ec7073/*#f38881;*/
    --error-border-color: #f38881;
    --text-color: white;
    --error-bg-color: white;
    --error-border-color: #ec7073;
    --error-border-color2: #3a8cde;
    --error-text-color: #ec7073;
    --main-bg-color: #fff;
    --main-bg-color2: #fff;
    --main-text-color: #000;
}

:root {
    --white: #ffffff;
    --black: #444444;
    --gray-100: #e3e3e3;
    --gray-200: #ced0ce;
    --gray-250: #cccccc;
    --gray-300: #767676;
    --red-300: #ee0000;
    --red-400: #cb0404;
    --blue-100: #eff6f9;
    --blue-300: #36b7c0;
    --primary-color: var(--red-300);
    --primary-darken-color: var(--red-400);
    --secondary-color: var(--black);
    --tertiary-color: var(--gray-300);
    --c-error: hsl(6, 70%, 55%);
    --c-success: hsl(126, 60%, 50%);
    --wrapper-max-width: 1200px;
}

body {
    opacity: 0;
    font-family: 'Open Sans', sans-serif;
    /*display: none;*/
}


/* USER SELECT NONE TAP MOBILE  */

body * {
    font-family: 'Open Sans', sans-serif;
    /* -webkit-tap-highlight-color: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; */
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

body p,
p,
h1,
h2,
h3,
h4,
span,
.popup_txt,
.FIELD input {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}


/* FIN USER SELECT NONE TAP MOBILE  */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-rendering: geometricPrecision;
    white-space: normal;
    /*white-space: nowrap;*/
}

:focus {
    outline: none !important;
}

body * {
    -webkit-touch-callout: none;
    /*    -webkit-user-select: none;
       -khtml-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;*/
    outline: 0;
    -webkit-tap-highlight-color: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

 :focus {
    outline: none !important;
}

input {
    -webkit-user-select: auto;
    -khtml-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(359deg);
    }
}

@keyframes logo {
    to {
        opacity: 1;
        transform: none;
    }
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

html {
    background: #fff;
    color: #000;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
    font-family: 'Open Sans', sans-serif;
}

br.movil {
    display: none;
}

body {
    margin: 0;
}

a {
    background: transparent;
    text-decoration: none;
}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

h2 {
    font-size: 1.5em;
    margin: 0.83em 0;
}

h3 {
    font-size: 1.17em;
    margin: 1em 0;
}

h4 {
    font-size: 1em;
    margin: 1.33em 0;
}

h5 {
    font-size: 0.83em;
    margin: 1.67em 0;
}

h6 {
    font-size: 0.75em;
    margin: 2.33em 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

mark {
    background: #ff0;
    color: #000;
}

code,
kbd,
pre,
samp {
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
}

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

q {
    quotes: "\201C" "\201D" "\2018" "\2019";
}

q:before,
q:after {
    content: '';
    content: none;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 0;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
    white-space: normal;
}

button,
input,
select,
textarea {
    font-family: 'Open Sans', sans-serif;
    font-size: 100%;
    margin: 0;
    vertical-align: baseline;
}

button,
input {
    line-height: normal;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

*,
*::after,
*::before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: inherit;
    font-family: inherit;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    box-shadow: 0 0 0 30px white inset !important;
}

input:-webkit-autofill {
    -webkit-text-fill-color: var(--black) !important;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    line-height: 1.5;
    min-height: 100vh;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-size: 15px;
    color: var(--black);
}

abbr[title] {
    border-bottom: 0;
    text-decoration: none;
}

img,
iframe,
video {
    vertical-align: middle;
}


/*img {
  display: block;
  width: 100%;
  height: auto; }*/

menu,
ul,
ol,
li,
dd {
    padding: 0;
    margin: 0;
    list-style-position: outside;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0;
}

a {
    color: var(--c2-dark);
    transition: color 250ms;
}

a:hover,
a:focus {
    color: var(--secondary-color);
}

a:focus {
    outline-offset: 0.25rem;
}

button:focus {
    outline-offset: 0.25rem;
}

::-moz-selection {
    color: var(--white);
    background-color: var(--c2-light);
}

::selection {
    color: #fff !important;
    background-color: var(--black);
}

@media print {
    @page {
        size: 210mm 297mm;
        margin: 10mm;
    }
    body {
        margin: 0px;
        -webkit-print-color-adjust: exact !important;
    }
}

body.is-locked {
    overflow: hidden;
}

.fixed {
    position: fixed;
}

.absolute {
    position: absolute !important;
}

.absolute-movil-relative {
    position: absolute;
}

.relative {
    position: relative;
}

.l50,
.l50-movil-l0 {
    left: 50%;
}

.l40 {
    left: 40%;
}

.l45 {
    left: 45%;
}

.w100 {
    width: 100% !important;
    /* max-width: 1920px; */
    margin: 0 auto;
    position: relative;
}

.w100vw {
    width: 100vw !important;
}

.anim {
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .25s linear;
}

.anim-long {
    -webkit-transition: all .7s linear !important;
    -moz-transition: all .7s linear !important;
    -ms-transition: all .7s linear !important;
    -o-transition: all .7s linear !important;
    transition: all .75s linear !important;
}

.anim-medium {
    -webkit-transition: all .5s linear !important;
    -moz-transition: all .5s linear !important;
    -ms-transition: all .5s linear !important;
    -o-transition: all .5s linear !important;
    transition: all .5s linear !important;
}

.easeinout {
    transition-timing-function: ease-in-out;
}


/*     ESTILOS/FX      */

.w20 {
    width: 20%;
}

.w25 {
    width: 25% !important;
}

.w30 {
    width: 30%;
}

.w33 {
    width: 33%;
}

.w40 {
    width: 40%;
}

.w45 {
    width: 45%;
}

.w50 {
    width: 50%;
}

.w55 {
    width: 55%;
}

.w60 {
    width: 60%;
}

.w70 {
    width: 70%;
}

.w75 {
    width: 75% !important;
}

.w80 {
    width: 80%;
}

.w90 {
    width: 90%;
}

.w100 {
    width: 100%;
}

.boton {
    position: relative;
    cursor: pointer;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .25s linear;
}

.boton_desactivar {
    position: relative;
    width: 180px;
    cursor: pointer;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .25s linear;
}

.over,
.touched {
    color: var(--c2-medium);
    /*background-color: white;*/
}

.xxxxxxxxxxxx.over,
.xxxxxxxxxx.touched {
    background-color: aliceblue;
}

.center {
    text-align: center;
}

.highlight-container:hover .img {
    transform: scale(.925);
}


/*     CONTAINERS      */

.maxwidth {
    max-width: 1250px;
}

.c {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    /*min-height: 110px;*/
    box-sizing: border-box;
    margin: 0 auto;
}

.c2 {
    display: flex;
    flex-direction: row;
    max-width: 1250px;
    margin: 0 auto;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}

.c2.wtotal {
    max-width: 100%;
}

.mw100 {
    max-width: 100%;
}

.mw90 {
    max-width: 90%;
}

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

.c2.right {
    flex-direction: row-reverse;
}

.c2 .el {
    box-sizing: border-box;
    margin: 10px;
    padding: 10px;
    width: 50%;
}

.c2.col .el {
    width: 100%;
    margin: 0px;
}

.c2 .el .img {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 10px;
    text-align: center;
}

.c3 {
    align-items: flex-start;
    align-items: stretch;
    margin-bottom: 30px !important;
}

.c img {
    max-width: 100%;
    border-radius: .15rem;
}

.align-left {
    text-align: left !important;
}

.align-right {
    text-align: right !important;
}

.onlymobile {
    display: none;
}

@media screen and (max-aspect-ratio: 1/1) and (orientation: portrait) {
    .onlymobile {
        display: block;
    }
}


/*@media screen and (max-aspect-ratio: 1/1) and (orientation: portrait) {
  .c2{
    flex-direction: column;
  }
  .c2.right{
    flex-direction: column-reverse;
  }
  .c2 .el
    width: 100%;
  }
}
*/

.lazy:not(.img) {
    background-image: url(../img/common/loading-large3.gif);
}

.lazy-big:not(.img) {
    background-image: url(../img/common/loading-large3.svg);
}

.add-button {
    position: relative;
    bottom: -56px;
    margin: 0 auto;
    font-size: 16px;
    background: var(--c1-medium);
    width: 100%;
    height: 50px;
    padding: 0px;
    font-family: 'Open Sans';
    border-radius: 0;
    border-top-left-radius: 0.15rem;
    border-top-right-radius: 0.15rem;
}

.add-button.over,
.add-button.touched,
.add-button.active {
    color: white;
    background-color: var(--c2-medium);
    padding-left: 20px;
}

#imgusertemporal {
    display: none;
}

.d-none {
    display: none !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.wrap {
    flex-wrap: wrap !important;
}

.align-start {
    align-items: flex-start !important;
}

.justify-end,
.f-jc-fe {
    justify-content: flex-end !important;
}

.f-ai-fe {
    align-items: flex-end;
}

.f-ai-c {
    align-items: center;
}

.justify-between,
.f-jc-sp {
    justify-content: space-between !important;
}

.min-h-100vh {
    min-height: 100vh;
}

.ovh {
    overflow: hidden !important;
}

.ovy {
    overflow-y: hidden !important;
}

.p-0 {
    padding: 0 !important;
}

.m-0 {
    margin: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.p-0-25 {
    padding: 0.25rem !important;
}

.p-0-5 {
    padding: 0.5rem !important;
}

.m-0-25 {
    margin: 0.25rem !important;
}

.m-0-5 {
    margin: 0.5rem !important;
}

.p-2 {
    padding: 2rem !important;
}

.m-2 {
    margin: 2rem !important;
}

.pt-0-5 {
    padding-top: 0.5rem !important;
}

.mt-0-5 {
    margin-top: 0.5rem !important;
}

.mt--0-5 {
    margin-top: -0.5rem !important;
}

.pr-0-5 {
    padding-right: 0.5rem !important;
}

.mr-0-5 {
    margin-right: 0.5rem !important;
}

.pb-0-5 {
    padding-bottom: 0.5rem !important;
}

.mb-0-5 {
    margin-bottom: 0.5rem !important;
}

.pl-0-5 {
    padding-left: 0.5rem !important;
}

.ml-0-5 {
    margin-left: 0.5rem !important;
}

.p-1 {
    padding: 1rem !important;
}

.m-1 {
    margin: 1rem !important;
}

.pt-1 {
    padding-top: 1rem !important;
}

.mt-05 {
    margin-top: 0.5rem !important;
}

.mt-1 {
    margin-top: 1rem !important;
}

.pr-1 {
    padding-right: 1rem !important;
}

.mr-1 {
    margin-right: 1rem !important;
}

.pb-1 {
    padding-bottom: 1rem !important;
}

.mb-05 {
    margin-bottom: 0.5rem !important;
}

.mb-1 {
    margin-bottom: 1rem !important;
}

.pl-1 {
    padding-left: 1rem !important;
}

.ml-1 {
    margin-left: 1rem !important;
}

.p-1-5 {
    padding: 1.5rem !important;
}

.m-1-5 {
    margin: 1.5rem !important;
}

.pt-1-5 {
    padding-top: 1.5rem !important;
}

.mt-1-5 {
    margin-top: 1.5rem !important;
}

.pr-1-5 {
    padding-right: 1.5rem !important;
}

.mr-1-5 {
    margin-right: 1.5rem !important;
}

.pb-1-5 {
    padding-bottom: 1.5rem !important;
}

.mb-1-5 {
    margin-bottom: 1.5rem !important;
}

.pl-1-5 {
    padding-left: 1.5rem !important;
}

.ml-1-5 {
    margin-left: 1.5rem !important;
}

.pt-2 {
    padding-top: 2rem !important;
}

.mt-2 {
    margin-top: 2rem !important;
}

.pr-2 {
    padding-right: 2rem !important;
}

.mr-2 {
    margin-right: 2rem !important;
}

.pb-2 {
    padding-bottom: 2rem !important;
}

.mb-2 {
    margin-bottom: 2rem !important;
}

.pl-2 {
    padding-left: 2rem !important;
}

.ml-2 {
    margin-left: 2rem !important;
}

.p-2-5 {
    padding: 2.5rem !important;
}

.m-2-5 {
    margin: 2.5rem !important;
}

.pt-2-5 {
    padding-top: 2.5rem !important;
}

.mt-2-5 {
    margin-top: 2.5rem !important;
}

.pr-2-5 {
    padding-right: 2.5rem !important;
}

.mr-2-5 {
    margin-right: 2.5rem !important;
}

.pb-2-5 {
    padding-bottom: 2.5rem !important;
}

.mb-2-5 {
    margin-bottom: 2.5rem !important;
}

.pl-2-5 {
    padding-left: 2.5rem !important;
}

.ml-2-5 {
    margin-left: 2.5rem !important;
}

.p-3 {
    padding: 3rem !important;
}

.m-3 {
    margin: 3rem !important;
}

.pt-3 {
    padding-top: 3rem !important;
}

.mt-3 {
    margin-top: 3rem !important;
}

.pr-3 {
    padding-right: 3rem !important;
}

.mr-3 {
    margin-right: 3rem !important;
}

.pb-3 {
    padding-bottom: 3rem !important;
}

.mb-3 {
    margin-bottom: 3rem !important;
}

.pl-3 {
    padding-left: 3rem !important;
}

.ml-3 {
    margin-left: 3rem !important;
}

.p-3-5 {
    padding: 3.5rem !important;
}

.m-3-5 {
    margin: 3.5rem !important;
}

.pt-3-5 {
    padding-top: 3.5rem !important;
}

.mt-3-5 {
    margin-top: 3.5rem !important;
}

.pr-3-5 {
    padding-right: 3.5rem !important;
}

.mr-3-5 {
    margin-right: 3.5rem !important;
}

.pb-3-5 {
    padding-bottom: 3.5rem !important;
}

.mb-3-5 {
    margin-bottom: 3.5rem !important;
}

.pl-3-5 {
    padding-left: 3.5rem !important;
}

.ml-3-5 {
    margin-left: 3.5rem !important;
}

.mt_-30 {
    margin-top: -30px;
}

.m40 {
    margin: 40px;
}

.p2 {
    padding: 2px !important;
}

.p5 {
    padding: 5px !important;
}

.p40 {
    padding: 40px;
}

.no-events {
    pointer-events: none !important;
}

.pointers-none {
    pointer-events: none;
}

.pointers-all {
    pointer-events: all;
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    visibility: hidden;
    opacity: 0;
    transition: opacity 150ms;
}

.mw {
    max-width: 1200px;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
}

.scale-1-5 {
    transform: scale(1.5);
}

.flex {
    display: flex !important;
    flex-flow: row;
}

.flexrow {
    display: flex !important;
    flex-direction: row;
}

.flexrow.inverse {
    flex-direction: row-reverse;
}

.flexcol {
    display: flex !important;
    flex-direction: column;
}

.flexcol.inverse {
    display: flex !important;
    flex-direction: column-reverse;
}

.f-jc-center,
.f-jc-c {
    justify-content: center;
}

.f-jc-sb {
    justify-content: space-between;
}

.f-ai-stretch {
    align-items: stretch;
}

.f-ai-center {
    align-items: center;
}

.f-center {
    align-items: center;
    justify-content: center;
    align-content: center;
    justify-items: center;
}

.f-center-h {
    justify-content: center;
    justify-items: center;
}

.f-center-v {
    align-items: center;
    align-content: center;
}

.f-wrap {
    flex-wrap: wrap;
}

.card-header {
    padding: 20px;
    transform-origin: bottom center;
}

.no_overflow,
.no-overflow {
    overflow: hidden;
}

.no-margin {
    margin: 0px !important;
}

.no-padding {
    padding: 0px !important;
}

.ta-left {
    text-align: left !important;
}

.ta-right {
    text-align: right !important;
}

.ta-justify {
    text-align: justify;
}

.grid {
    display: grid;
    grid-auto-columns: minmax(40rem, auto);
    /*grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));*/
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    grid-gap: .5rem;
}

.grid.v2 {
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
}

.grid.v3 {
    grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
    grid-gap: .5rem;
    align-items: center;
}

.grid.v3 a {
    align-self: center;
    justify-self: center;
}

.centered {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.centered-v {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.centered-h {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.hidden {
    display: none !important;
}

@media screen and (orientation: landscape) {
    .nomovil_landscape {
        display: none;
    }
}

@media screen and (max-aspect-ratio: 1/1) and (orientation: portrait) {
    .nomovil_portrait {
        display: none;
    }
}

@media screen and (max-aspect-ratio: 1/1) {
    .flexrow.movil {
        flex-direction: column;
    }
    body,
    p {
        font-size: 14px;
    }
    .nomobile {
        display: none;
    }
    br.movil {
        display: inline-block;
    }
    .absolute-movil-relative {
        position: relative;
    }
    .l50-movil-l0 {
        left: 0%;
    }
    .l0-movil {
        left: 0;
    }
    .mobile .w40,
    .mobile .w50,
    .mobile .w60 {
        width: 100%;
    }
    .popup video {
        border-radius: 25px;
        max-width: 100vw;
        max-height: 70vh;
    }
    .nomovil {
        display: none;
    }
    .c {
        padding: 10px;
        padding: 0px;
    }
    .c.c2:not(.radio),
    .c.c2.right:not(.radio) {
        flex-direction: column;
    }
    .c2 .el {
        padding: 20px;
    }
    .c2 .el.grfx {
        text-align: center;
        width: 70%;
        margin: -30px;
    }
    .c2 .el.grfx.big,
    .c2 .el.grfx.bigmovil {
        width: 100%;
    }
    .c2.c3 .el.grfx {
        margin: 0;
        width: 100%;
    }
    .c2.big .el.grfx,
    .c2.big.right .el.grfx,
    .c2.bigmovil .el.grfx,
    .c2.bigmovil.right .el.grfx {
        width: 100%;
        transform: scale(1);
        margin: -30px;
    }
    .c2 .el,
    .c2 .el.txt,
    .c2 .el.txt.big,
    .c2 .el.txt.bigmovil {
        width: 100%;
    }
    .c2.big .el .img.down,
    .c2.bigmovil .el .img.down {
        top: 0px;
    }
    .txt2 {
        margin-top: -30px !important;
    }
    .c2.big.right .el .img {
        width: 80%;
    }
    h2,
    h3 {
        line-height: calc(20px + 3vw);
    }
    .el.w20,
    .c2.col .el.w20 {
        height: 40px;
    }
    .flexrow.mobile {
        flex-direction: column;
    }
    .f-left-h-mov {
        align-items: flex-start;
        align-content: flex-start;
    }
    /* .grid {
        grid-template-columns: repeat(auto-fill, minmax(40vw, 1fr));
        grid-gap: .25rem;
    }*/
    .mb-nomobile {
        margin-bottom: 0px !important;
    }
    .mt-nomobile {
        margin-top: 0px !important;
    }
    .mobile .w45 {
        width: 100%;
    }
}

.inactive {
    pointer-events: none;
    opacity: .35 !important;
}

.prata {
    font-family: 'Prata', serif;
}

.black {
    color: var(--black);
}

.black-bg {
    background-color: var(--black);
}

.-c2-light-bg {
    background-color: var(--c2-light);
}

.-c3-light-bg {
    background-color: var(--c3-light) !important;
}

.-c4-light-bg {
    background-color: var(--c4-light);
}

section {
    min-height: 200px;
}

button.volver,
div.volver {
    color: var(--black);
    /* margin-left: -15px; */
    left: 130px;
    text-align: center;
    top: 10px;
    font-size: 15px;
    position: relative;
    width: 100px;
    border-radius: 0.25rem;
    padding: 5px;
}

button.volver::after,
div.volver::after {
    content: "";
}

button.volver.over,
div.volver.over {
    color: var(--c2-dark2);
    background-color: transparent;
    margin-left: -10px;
    background: var(--blue-100);
}

button.volver::before,
div.volver::before {
    content: "»";
    transform: rotate(-180deg);
    margin-top: 3px;
    position: absolute;
    margin-left: -10px;
    color: var(--black);
    transition: all 0.25s ease-in-out 0s;
}

button.volver.over::before,
div.volver.over::before {
    margin-left: -20px;
    color: var(--c2-dark2);
}

.white {
    color: white;
}

.firstletter {
    text-transform: capitalize;
}

.firstletter:first-letter {
    text-transform: capitalize;
}

.upper {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

.thin {
    font-weight: lighter;
}

.nopointers {
    pointer-events: none;
}

.pointersall {
    pointer-events: all;
}

.cover{
    background-size: cover !important;
}



