/******************************
*   Tipografias
******************************/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
@import url('all.css');
@import url('typo.css');

:root {
    --negro: 0, 0, 0;
    --blanco: 255, 255, 255;
    --ama01: 255, 231, 39;
    --ama02: 253, 226, 0;
    --ama03: 255, 197, 0;
    --naranja: 255, 100, 0;
    --azul01: 0, 209, 252;
    --azul02: 94, 166, 252;
    --turquesa: 0, 97, 132;
    --crema: 255, 252, 226;
    --verde: 100, 188, 45;
    --rosa: 251, 0, 150;
}
::selection {
    background: rgb(var(--ama01), 1);
    color: rgb(var(--naranja), 1);
}
::-moz-selection {
    background: rgb(var(--ama01), 1);
    color: rgb(var(--naranja), 1);
}
::-webkit-selection {
    background: rgb(var(--ama01), 1);
    color: rgb(var(--naranja), 1);
}

/******************************
*   Reset
******************************/
*{
    border: 0px;
    margin: 0px;
    padding: 0px;
}
html {
    scroll-behavior: smooth;
    scroll-padding: 88px;
}
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    color: rgb(var(--blanco), 1);
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1.2;
}
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; }
figure figcaption {
    opacity: 0;
    display: none;
}
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;
}
ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: 'Boldine';
    font-weight: normal;
    font-style: normal;
}
.campo input,
.campo select,
.campo textarea {
    width: 100%;
    padding: 12px 16px 12px;
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 19px;
    height: 47px;
    background: rgb(var(--blanco), 1);
    color: rgb(var(--turquesa), 1);
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    line-height: 1;
}
.campo textarea {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    min-height: 180px;
}
/* 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(--turquesa), 1);
  -webkit-box-shadow: 0 0 0px 1000px transparent 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; }
p { margin: 0; }
p + p { margin-top: 20px; }
.tab {
    width: 100%;
    overflow: auto;
}
.tab table {
    width: 100%;
    min-width: 700px;
}
.tab table td {
    padding: 8px;
    position: relative;
    z-index: 1;
}
.tab table thead {
    background: rgb(var(--blanco), 1);
    color: rgb(var(--negro), 1);
    font-weight: bold;
}
.tab table tbody tr + tr td { border-top: 1px solid rgb(var(--blanco), .2); }

/******************************
*   Loader
******************************/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    z-index: 10000;
}
.loader > div {
    width: 33.33%;
    height: 100%;
    background: rgb(var(--naranja), 1);
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
    transform: scale(1.02);
}
.log {
    position: absolute;
    width: 110px;
    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%);
}

/******************************
*   Monedas
******************************/
.cont__mone {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.fil__mone {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    display: flex;
    justify-content: space-between;
    top: 70px;
}
.bg__bille {
    width: 45%;
    position: relative;
    height: calc(100vh - 70px);
    overflow: hidden;
}
.bille__bg { position: absolute; }
.colbille01 .bille01 {
    width: 60%;
    left: -20%;
    top: 5%;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    filter: blur(5px);
}
.colbille01 .bille02 {
    width: 35%;
    bottom: 10px;
    left: 10%;
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -o-transform: rotate(-15deg);
    transform: rotate(-15deg);
}
.colbille02 .bille01 {
    width: 60%;
    filter: blur(5px);
    top: -3%;
    right: -3%;
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
}
.colbille02 .bille02 {
    width: 30%;
    bottom: 10px;
    right: 8%;
    -webkit-transform: rotate(70deg);
    -moz-transform: rotate(70deg);
    -ms-transform: rotate(70deg);
    -o-transform: rotate(70deg);
    transform: rotate(70deg);
}

/******************************
*   General
******************************/
.wrapper {
    position: relative;
    background: rgb(var(--naranja), 1);
}
.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.bg__01 { background: rgb(var(--azul02)); }
.bg__01::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/billetes-trama.svg') center;
    background-size: 1300px;
    opacity: .1;
}
.bg__02 { background: rgb(var(--ama02)); }
.bg__03 { background: rgb(var(--naranja)); }
.bg__03::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/trama.svg') center no-repeat;
    background-size: cover;
    opacity: .6;
 }
main {
    min-height: calc(100vh - 88px);
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1;
}
main section {
    width: 100%;
    position: relative;
    padding: 60px 0 60px;
}

.success{
    font-size: 8vh;
}

/*----- Head Section -----*/
.head__sect {
    text-align: center;
    position: relative;
}
.head__sect * { line-height: 1; }
.head__sect + *,
* + .head__sect { margin-top: 40px; }
.head__sect * + * { margin-top: 20px; }
.head__sect h3 {
    font-size: 12vw;
    display: inline-block;
    position: relative;
    line-height: 1;
    text-transform: uppercase;
    color: rgb(var(--azul01), 1);
}
.head__sect h3::before,
.head__sect h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 30px;
    margin: 0 auto;
    background: url('../img/rombos.svg') center no-repeat;
    background-size: contain;
}
.title span {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
}
.title > span::before,
.title > span::after,
.title > span > span::before,
.title > span > *,
.title > span > span > * { grid-area: 1 / 1 / 2 / 2; }
.title > span::before,
.title > span::after,
.title > span > span::before {
    content: attr(name);
    position: relative;
    z-index: -1;
}
.title > span::before,
.title > span::after {
    -webkit-transform: translateY(6%);
    -moz-transform: translateY(6%);
    -ms-transform: translateY(6%);
    -o-transform: translateY(6%);
    transform: translateY(6%);
}
.title > span::before {
    -webkit-text-stroke-width: 8px;
    -webkit-text-stroke-color: rgb(var(--blanco), 1);
    color: rgb(var(--blanco), 1);
    filter: drop-shadow(0px 0px 0px rgb(var(--blanco), 1));
}
.title > span::after {
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: rgb(var(--negro), 1);
    color: rgb(var(--negro), 1);
}
.title > span > span::before {
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: rgb(var(--negro), 1);
    color: rgb(var(--negro), 1);
}
.title.t__amarillo { color: rgb(var(--ama03), 1); }
.title.t__rosa { color: rgb(var(--rosa), 1); }
h3.t__simple { color: rgb(var(--turquesa), 1); }
h3.t__simple::before,
h3.t__simple::after { content: unset; }
.t__simple [class*="fa-"] {
    display: block; 
    margin-bottom: 20px;
}

.head__sect p {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
}
.h01 p { color: rgb(var(--turquesa), 1); }

/*----- CTA -----*/
.c__cta {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    gap: 15px;
}
.cta::after {
    content: attr(name);
    position: relative;
}
.cta::after {    
    -webkit-text-stroke-width: 4px;
    -webkit-text-stroke-color: rgb(var(--negro));
    color: rgb(var(--negro));
    z-index: -1;
}
.cta::before {
    -webkit-text-stroke-width: 8px;
    -webkit-text-stroke-color: rgb(var(--blanco));
    color: rgb(var(--blanco));
    z-index: -1;
}
.cta {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.cta::before,
.cta::after,
.cta span { grid-area: 1 / 1 / 2 / 2; }
.cta span {
    color: rgb(var(--blanco));
    position: relative;
    z-index: 1;
}
.cta,
a.cta {
    font-family: 'Boldine';
    font-weight: normal;
    font-style: normal;
    color: rgb(var(--negro), 1);
    text-transform: uppercase;
    font-size: 24px;
    line-height: 1;
    position: relative;
    z-index: 1;
    padding: 10px 20px 6px;
    border-radius: 10px;
    border: 2px solid rgb(var(--negro));
}
.cta > * { position: relative; }
.cta__01 { background: rgb(var(--azul01), 1); }
.cta__02 { background: rgb(var(--naranja), 1); }
.cta__03 { background: rgb(var(--verde), 1); }
.cta__04 { background: rgb(var(--ama02), 1); }

a.cta__simple {
    display: inline-block;
    color: rgb(var(--negro), 1);
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    text-decoration: underline;
    font-weight: bold;
    padding: 12px;
}
.cta__dis {
    pointer-events: none;
    filter: grayscale(1);
    opacity: .9;
}
.c__blok {
    margin-top: 40px;
    text-align: center;
}
#confettiCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/******************************
*   Home
******************************/

/*----- Inicio -----*/
.inicio {
    padding-top: 30px;
    padding-bottom: 30px;
    -webkit-mask-image: url('../img/trama-triangulo.svg');
    mask-image: url('../img/trama-triangulo.svg');
    mask-size: 60px;
    -webkit-mask-repeat: repeat-x;
    mask-repeat: repeat-x;
    -webkit-mask-position: bottom center;
    mask-position: bottom center;
    background: rgb(var(--naranja));
}
.inicio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/trama.svg) center no-repeat;
    background-size: cover;
    opacity: .6;
}
.inicio > div { width: 100%; }
.glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: color-dodge;
    will-change: filter;
    opacity: .3;
}
.glow figure,
.glow figure img {
    width: 100%;
    height: 100%;
    will-change: filter;
}
.glow figure img {
    object-fit: cover;
    object-position: center;
}
.inicio__cont { position: relative; }
.fill__ini {
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
}
.mano {
    width: 40%;
    margin: 0 auto;
    position: relative;
}
.mano > figure { position: relative; }
.billetes {
    position: absolute;
    width: 81%;
    top: 0;
    right: -2%;
}
.billetes figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.billetes figure:nth-child(1) { position: relative; }
.ini__logo {
    max-width: 50vh;
    width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0px 6px 3px rgb(var(--negro), .2));
    will-change: filter;
}
.ini__logo,
.ini__logo figure:nth-child(1) { position: relative; }
.ini__logo figure {
    position: absolute;
    will-change: filter;
}
.letras {
    top: 0;
    left: 0;
    width: 100%;
}
.g01 {
    width: 12%;
    top: 28%;
    left: 14%;
}
.g02 {
    width: 8%;
    top: 45%;
    right: 0;
}
.sq01 {
    width: 12%;
    top: 11%;
    right: 9%;
}
.sq02 {
    width: 17%;
    left: 31%;
    bottom: 5%;
}
.promo__ini {
    margin: 0 auto;
    max-width: 300px;
    width: 60%;
    position: relative;
}
.promo__ini figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.promo__ini figure:nth-child(1) { position: relative; }

.back__bille,
.bille__ini { position: absolute; }
.bille__ini { min-width: 100px; }
.back__bille {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}
.bi01 {
    width: 14%;
    bottom: 10%;
    left: -6%;
    filter: blur(5px);
}
.bi01 img {
    -webkit-transform: rotate(89deg);
    -moz-transform: rotate(89deg);
    -ms-transform: rotate(89deg);
    -o-transform: rotate(89deg);
    transform: rotate(89deg);
}
.bi02 {
    width: 12%;
    top: 20%;
    left: 3%;
    filter: blur(2px);
}
.bi03 {
    width: 14%;
    top: 1%;
    right: -2%;
    filter: blur(3px);
}
.bi03 img {
    -webkit-transform: rotate(19deg);
    -moz-transform: rotate(19deg);
    -ms-transform: rotate(19deg);
    -o-transform: rotate(19deg);
    transform: rotate(19deg);
}
.bi04 {
    width: 9%;
    bottom: 47%;
    right: -2%;
    filter: blur(2px);
}
.bi04 img {
    -webkit-transform: rotate(19deg);
    -moz-transform: rotate(19deg);
    -ms-transform: rotate(19deg);
    -o-transform: rotate(19deg);
    transform: rotate(19deg);
}
.bi05 {
    width: 10%;
    bottom: 9%;
    right: 1%;
    filter: blur(2px);
}
.bi05 img {
    -webkit-transform: rotate(19deg);
    -moz-transform: rotate(19deg);
    -ms-transform: rotate(19deg);
    -o-transform: rotate(19deg);
    transform: rotate(19deg);
}

/*----- Ingresa -----*/
.ingresa .container { position: relative; }
.whats { color: #72FF1A; }
.web { color: rgb(var(--ama01)); }
.info__regis {
    display: flex;
    flex-direction: column;
    gap: 40px 0;
}
.regis__col {
    display: flex;
    align-items: center;
    justify-content: center;
}
.regis__col a {
    display: block;
    width: 100%;
    height: 100%;
}
.regis__img a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.regis__col > div { width: 50%; }
.regis__col > div:nth-child(1) {
    position: relative;
    z-index: 1;
}
.regis__col > * + * { margin-left: -12%; }
.regis__img {
    position: relative;
    filter: drop-shadow(0px 2px 5px rgb(var(--negro), .6));
    will-change: filter;
}
.regis__img figure {
    width: 100%;
    height: 100%;
    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%);
}
.regis__img figure img {
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.regis__whats .regis__img { padding-top: 50%; }
.regis__whats.regis__col > * + * { margin-left: -17%; }
.regis__web .regis__img { padding-top: 30%; }

.bille__llega {
    position: absolute;
    width: 10%;
    min-width: 80px;
}
.bille__llega img { width: 100%; }
.bi__01 {
    top: 65%;
    left: -3%;
}
.bi__02 {
    top: 0%;   
    right: 0%;
    filter: blur(3px);
}
.bi__03 {
    bottom: 0%;
    right: 5%;
}

/*----- Mecanica -----*/
.c__pre {
    width: 350px;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}
.c__pre > * + * { margin-top: 20px; }
.premio__graf {
    width: 80%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
.premio__graf figure {
    position: relative;
    z-index: 1;
}
.circ {
    width: 100%;
    padding-top: 100%;
    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%);
    border-radius: 50%;
    background: rgba(var(--blanco), .3);
}
.prem__number {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 30%;
    min-width: 60px;
}
.prem__number span {
    position: absolute;
    top: 52%;
    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%);
    z-index: 1;
    font-family: 'Boldine';
    font-weight: normal;
    font-style: normal;
    font-size: 28px;
    line-height: 1;
}
.bg__prem {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: calc(100% + 30px);
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.bille__p {
    position: absolute;
    min-width: 90px;
}
.bip__01 {
    width: 10%;
    top: 6%;
    left: 3%;
}
.bip__02 {
    width: 14%;
    top: 40%;
    right: -4%;
    filter: blur(5px);
}
.bip__03 {
    width: 14%;
    bottom: 3%;
    left: -5%;
    filter: blur(5px);
    -webkit-transform: rotate(70deg);
    -moz-transform: rotate(70deg);
    -ms-transform: rotate(70deg);
    -o-transform: rotate(70deg);
    transform: rotate(70deg);
}

/*----- Ganadores -----*/
.ganadores { padding-bottom: 0; }
.ganadores canvas { z-index: 1; }
.gana__info {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}
.txt__gana {
    font-size: 40px;
    font-family: 'Boldine';
    font-weight: normal;
    font-style: normal;
    filter: drop-shadow(-3px 4px 0px rgb(var(--negro), .2));
}
.txt__gana span {
    display: block;
    line-height: 1;
}
.txt__gana span:nth-child(2) { color: rgb(var(--ama01)); }
.counter__winner {
    margin: 30px 0;
    font-family: 'Boldine';
    font-weight: normal;
    font-style: normal;
}
.counter__winner > div {
    display: inline-flex;
    gap: 16px;
    align-items: baseline;
    background: rgb(var(--negro));
    padding: 20px 30px;
    font-size: 42px;
    line-height: 1;
    color: rgb(var(--ama01));
    border-radius: 20px;
    border: 2px solid rgb(var(--ama01));
}
.numer__win {
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.numer__win > * {
    display: block;
    grid-area: 1 / 1 / 2 / 2;
}
.numer__win > * > * { display: inline-block; }
.num__2 > span {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
}
.img__winner {
    margin: 0 auto;
    width: 70%;
    position: relative;
}
.img__winner span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    padding-top: 80%;
    border-radius: 50%;
    background: rgba(var(--blanco), .6);
    filter: blur(40px);
    will-change: filter;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.img__winner figure { position: relative; }

.img__ganadores {
    width: 100%;
    opacity: .15;
    margin-bottom: -30px;
}

/******************************
*   Formularios
******************************/
* + .whats__info,
.whats__info + * { margin-top: 40px; }
.whats__info { text-align: center; }
.info__text {
    padding: 12px;
    border-radius: 12px;
    background: #1B340B;
    border: 2px solid #72FF1A;
    display: inline-block;
    color: rgb(var(--blanco));
}
.txt__whats { color: #72FF1A; }
.txt__regis {
    text-transform: uppercase;
    color: rgb(var(--ama01));
}
.clr__01,
.clr__01 .campo label { color: rgb(var(--turquesa)); }
.clr__01 .no__account a,
.clr__01 .camp__error { color: rgb(var(--naranja)); }
.clr__02,
.clr__02 .campo label { color: rgb(var(--blanco)); }
.clr__02 .no__account a,
.clr__02 .camp__error { color: rgb(var(--ama02)); }
.clr__02 .camp__error span { color: rgb(var(--ama02)); }
.clr__02 .cta__02::before { background: rgb(var(--verde), 1); }
.cont__form {
    margin-left: auto;
    margin-right: auto;
}
.form__large { width: 100%; }
.form__medium { max-width: 600px; }
.form__small { max-width: 400px; }
.cont__campos + .cont__campos { margin-top: 20px; }
.cont__campos .campo.c__cta { padding: 0; }
.campo  { padding: 12px 12px; }
.campo label,
.campo strong {
    display: inline-block;
    font-weight: bold;
    margin-bottom: 5px;
}
.cont__campos strong { padding-left: 15px; }
.cont__input { position: relative; }
.cont__input input,
.cont__input select { padding-left: 47px; }
.cont__select select { padding-right: 47px; }
.icon__camp {
    position: absolute;
    top: 0;
    left: 0;
    width: 47px;
    height: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    color: rgb(var(--azul01));
}
.icon__camp img { width: 45%; }
.ar__camp {
    left: inherit;
    right: 0;
    color: rgba(var(--negro), .4);
}
.camp__check > div {
    position: relative;
    display: inline-block;
}
.camp__check > div  { margin: 12px; }
.camp__check > div label {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    cursor: pointer;
    font-size: 18px;
    padding-left: 28px;
    text-transform: inherit;
}
.camp__check > div label a { text-decoration: underline; }
.camp__check > div label input,
.camp__check > div label i {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgb(var(--blanco), 1);
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
}
.camp__check > div label i::before {
    display: block;
    content: "\f00c";
    font-weight: 900;
    font-family: "Font Awesome 6 Pro";
    color: rgb(var(--turquesa), 1);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -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);
}
.camp__check > div label input:checked + i { background: rgb(var(--azul01), 1); }
.camp__check > div label input:checked + i::before {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.camp__error {
    /* display: none; */
    padding-top: 6px;
    text-align: right;
    font-size: 18px;
}
.camp__error span {
    display: inline-block;
    margin-right: 4px;
}
.camp__error span::before {
    content: "\f057";
    font-weight: 900;
    font-family: "Font Awesome 6 Pro";
}
.no__account {
    margin-top: 40px;
    text-align: center;
}
.no__account a { text-decoration: underline; }

/******************************
*   Aviso
******************************/
.cont__aviso {
    max-width: 600px;
    margin: 40px auto 0;
    text-align: center;
    position: relative;
    padding: 0 30px 30px 30px;
    z-index: 1;
}
.cont__aviso::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    bottom: 0;
    background: rgb(var(--turquesa), 1);
    border: 2px solid rgb(var(--negro), 1);
    border-radius: 20px;
    z-index: -1;
}
.icon__avi {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    border-radius: 50%;
    position: relative;
    background: rgb(var(--ama01), 1);
    border: 2px solid rgb(var(--negro), 1);
}
.icon__avi span {
    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%);
    font-size: 28px;
    font-family: 'Boldine';
    color: rgb(var(--negro), 1);
    font-weight: normal;
    font-style: normal;
}
.cont__aviso p:nth-of-type(1) { color: rgb(var(--blanco), 1); }
.cont__aviso p:nth-of-type(2) { color: rgb(var(--ama02), 1); }
.cont__aviso a {
    color: rgb(var(--azul01), 1);
    text-decoration: underline;
}

#registro-exitoso .camp__error { text-align: center; }
.text__info {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    max-width: 700px;
}
.c__cta .text__info { margin-bottom: 8px; }

/******************************
*   Perfil
******************************/
#perfil main .tab__gana table tr td { text-align: center; }
#perfil main .tab__gana table tr td::before { background: rgb(var(--crema)); }
#perfil main .tab__gana table tr.fil__win td::before { background: rgb(var(--ama01)); }
#perfil main .tab__gana table tr td { color: rgb(var(--negro)); }
.icon__user {
    display: inline-block;
    color: rgb(var(--ama02));
    margin-right: 6px;
}
.user__name {
    display: inline-block;
    font-weight: bold;
}
.col__head {
    position: relative;
    display: flex;
    gap: 15px;
}
.col__head:last-child {
    flex-flow: row wrap;
    justify-content: center;
}
.cod__restan {
    font-size: 90%;
    text-align: center;
    color: rgb(var(--ama01), 1);
    line-height: 1;
}
hr {
    border-top: 1px solid rgb(var(--blanco), .6);
    margin-top: 20px;
    margin-bottom: 20px;
}
hr.line {
    border-top: 1px solid rgb(var(--turquesa), .6);
    width: 80px;
    margin-left: auto;
    margin-right: auto;
}
.head__sect h3.t__histo { font-size: 42px; }
.head__sect h3.t__histo::before,
.head__sect h3.t__histo::after { content: unset; }
.premio__tab { width: 50px; }
.cont__blo {
    text-align: center;
    overflow-x: scroll;
    overflow-x: auto;
    width: 100%;
}
.cont__blo div {
    display: inline-block;
    white-space: nowrap;
}
.cont__blo div > div {
    display: flex;
    gap: 10px;
}
.cont__blo { scrollbar-color: rgb(var(--ama02), .8); }
/* Works on Chrome, Edge, and Safari */
.cont__blo::-webkit-scrollbar { height: 5px; }
.cont__blo::-webkit-scrollbar-track { background: rgb(var(--ama02), 0); }
.cont__blo::-webkit-scrollbar-thumb { background-color: rgb(var(--ama02), .8); }
.cont__blo {
    overflow: auto;
    overflow: scroll;
    overflow-y: hidden!important;
    display: inline-block;
    padding-bottom: 8px;
}
.cont__blo a {
    font-size: 16px;
    font-weight: normal;
    text-shadow: inherit;
    color: rgb(var(--blanco), 1);
    position: relative;
    z-index: 1;
}
.cont__blo a span::after {
    content: attr(name);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: rgb(var(--negro), 1);
    z-index: -1;
}
.cont__blo .cta.active,
.cont__blo a.cta.active { pointer-events: none; }
.cont__blo .cta.active::before,
.cont__blo a.cta.active::before,
.cont__blo .cta:hover::before,
.cont__blo a.cta:hover::before  { background: rgb(var(--ama02), 1); }
.pagination {
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
    text-align: center;
}
.pagination>li>a,
.pagination>li>span {
    color: #ffffff;
    background-color: initial;
    border: 0;
    font-weight: bold;
}
.pagination>.active>span {
    position: relative;
    z-index: 1;
    color: rgb(var(--negro), 1);
}
.pagination>.active>span::before {
    content: '';
    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%);
    width: 100%;
    padding-top: 100%;
    background: rgb(var(--ama02), 1);
    z-index: -1;
    border-radius: 50%;
}
.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    background-color: transparent;
    border-color: transparent;
    color: initial;
}
.page-item.disabled { display: none; }
.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    z-index: 2;
    color: rgb(var(--negro), 1);
    background-color: transparent;
    border-color: transparent;
}
.page-link[aria-label="Next »"],
.page-link[aria-label="« Previous"] {
    transform: scale(1.5) translateY(-2px);
}
.prem__td {
    display: flex;
    gap: 8px;
    justify-content: center;
}
.win__alert {
    text-transform: uppercase;
    font-family: 'Boldine';
    font-weight: normal;
    font-style: normal;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.win__alert::before,
.win__alert > * { grid-area: 1 / 1 / 2 / 2; }
.win__alert i {
    font-style: normal;
    position: relative;
    z-index: 1;
}
.no__win {
    color: rgb(var(--naranja));
    font-size: 28px;
}
.win__text,
.win__number { font-size: 34px; }
.win__text::before,
.win__number::before {
    content: attr(name);
    -webkit-text-stroke-width: 4px;
    -webkit-text-stroke-color: rgb(var(--negro));
    color: rgb(var(--negro));
    filter: drop-shadow(0px 3px 0px rgb(var(--negro), 1));
}
.win__text i { color: rgb(var(--naranja)); }
.win__number i { color: rgb(var(--azul01)); }

/******************************
*   LB
******************************/
.lb {
    position: relative;
    z-index: 150;
}
.cont__lb {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgb(var(--negro), .6);
}
.c__center {
    width: 100%;
    min-height: 100vh;
    padding: 60px 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.box__lb {
    max-width: 600px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    padding: 40px 30px;  
    z-index: 1;
    text-align: center;
}
.box__lb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center,  rgba(250,142,0,1) 0%,rgba(231,112,2,1) 100%);
    z-index: -1;
    -webkit-mask-image: url('../img/trama-triangulo2.svg');
    mask-image: url('../img/trama-triangulo2.svg');
    -webkit-mask-size: auto 100%; /* Mantiene el alto del SVG */
    mask-size: auto 100%; /* Ajusta a la altura */
    -webkit-mask-repeat: repeat-x;
    mask-repeat: repeat-x;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
}
.box__lb h3 {
    color: rgb(var(--negro));
    font-size: 42px;
}
.box__lb h3 + * { margin-top: 30px; }
.btn__clos {
    position: absolute;
    cursor: pointer;
    top: 10px;
    right: 0;
    width: 50px;
    height: 50px;
}
.btn__clos i {
    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%);
    font-size: 28px;
}
.c__ceres { text-align: center; }
.c__ceres a {
    display: inline-block;
    height: 28px;
}
.c__ceres a + a { margin-left: 15px; }
.c__ceres a img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
}
.img__lb {
    max-width: 250px;
    width: 80%;
    margin: 30px auto -130px;
    filter: drop-shadow(0px 2px 5px rgb(var(--negro), .6));
    will-change: filter;
}
.alert__lb {
    margin: 0 auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid;
    background: rgb(var(--ama02));
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
#lb__sonsulta .box__lb::before { background: rgb(var(--azul02)); }
#lb__sonsulta .box__lb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/billetes-trama.svg') center;
    background-size: 1300px;
    opacity: .1;
    z-index: -1;
    -webkit-mask-image: url('../img/trama-triangulo2.svg');
    mask-image: url('../img/trama-triangulo2.svg');
    -webkit-mask-size: auto 100%; /* Mantiene el alto del SVG */
    mask-size: auto 100%; /* Ajusta a la altura */
    -webkit-mask-repeat: repeat-x;
    mask-repeat: repeat-x;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
}
#lb__sonsulta .box__lb h3 {
    color: rgb(var(--ama01));
    filter: drop-shadow(-3px 4px 0px rgb(var(--negro), .2));
}
.box__lb table {
    margin-left: auto;
    margin-right: auto;
}
.box__lb table tr td { padding: 5px; }
.box__lb table tr td:nth-child(1) {
    text-align: right;
    font-weight: bold;
}
.box__lb table tr td:nth-child(2) {
    text-align: left;
    color: rgb(var(--ama01));
}
.discla {
    font-size: 75%;
    font-style: italic;
    text-align: center;
    margin-top: 30px;
}

/******************************
*   Retirar
******************************/

/******************************
*   Registrar
******************************/
.fil__regis {
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
    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;
    flex-direction: column;
    gap: 60px;
}

.img__regis { position: relative; }
.img__regis span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--blanco), .2);
    border-radius: 50%;
}
.img__regis figure { position: relative; }

.registra__codigo { text-align: left; }
.camp__hide { display: none; }
.fil__regis ::placeholder { color: rgba(var(--negro), .3); }

/******************************
*   Premio
******************************/
.cont__premio {
    position: relative;
    text-align: center;
}
.cont__premio > * + * { margin-top: 30px; }
.cont__premio > * {
    margin-right: auto;
    margin-left: auto;
    position: relative;
}
.prem__head {
    line-height: 1;
    display: inline-block;
}
.prem__head::before {
    content: '';
    position: absolute;
    width: 130%;
    padding-top: 130%;
    border-radius: 50%;
    background: rgba(var(--blanco), .6);
    filter: blur(40px);
    will-change: filter;
    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%);
}
.t__ganaste {
    font-size: 12vw;
    color: rgb(var(--naranja));
}
.t__ganaste span {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
}
.t__ganaste > span::before,
.t__ganaste > span::after,
.t__ganaste > span > span::before,
.t__ganaste > span > *,
.t__ganaste > span > span > * { grid-area: 1 / 1 / 2 / 2; }
.t__ganaste > span::before,
.t__ganaste > span::after,
.t__ganaste > span > span::before {
    content: attr(name);
    position: relative;
    z-index: -1;
}
.t__ganaste > span::before,
.t__ganaste > span::after {
    -webkit-transform: translateY(6%);
    -moz-transform: translateY(6%);
    -ms-transform: translateY(6%);
    -o-transform: translateY(6%);
    transform: translateY(6%);
}
.t__ganaste > span::before {
    -webkit-text-stroke-width: 8px;
    -webkit-text-stroke-color: rgb(var(--blanco), 1);
    color: rgb(var(--blanco), 1);
    filter: drop-shadow(0px 0px 0px rgb(var(--blanco), 1));
    transform: translate(-4px, 4px);
}
.t__ganaste > span::after {
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: rgb(var(--negro), 1);
    color: rgb(var(--negro), 1);
    transform: translate(-4px, 4px);
}
.t__ganaste > span > span::before {
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: rgb(var(--negro), 1);
    color: rgb(var(--negro), 1);
}
.t__cantidad {
    text-transform: uppercase;
    font-family: 'Boldine';
    font-weight: normal;
    font-style: normal;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    color: rgb(var(--azul01));
    font-size: 15vw;
}
.t__cantidad::before,
.t__cantidad > * { grid-area: 1 / 1 / 2 / 2; }
.t__cantidad i {
    font-style: normal;
    position: relative;
    z-index: 1;
}
.t__cantidad::before {
    content: attr(name);
    -webkit-text-stroke-width: 4px;
    -webkit-text-stroke-color: rgb(var(--negro));
    color: rgb(var(--negro));
    filter: drop-shadow(0px 3px 0px rgb(var(--negro), 1));
}
.logo__prem { max-width: 230px; }
.code {
    display: inline-block;
    line-height: 1;
    background: rgb(var(--blanco));
    padding: 12px;
    color: rgb(var(--negro));
}
.code span { opacity: .5; }


/******************************
*   Ganadores
******************************/
#ganadores .title { max-width: 490px; }
.tab__gana {
    padding: 0 0 0 0;
    overflow: auto;
}
.tab__gana table {
    max-width: 700px;
    min-width: 500px;
    white-space: nowrap;
    width: 100%;
    margin: 0 auto;
}
.tab__gana table tr td {
    position: relative;
    padding: 22px 10px;
    color: rgb(var(--negro), 1);
}
.tab__gana table tr td::before {
    content: '';
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: -1px;
    right: -1px;
    background: rgb(var(--ama01), 1);
    z-index: -1;
}
.tab__gana table tr td:first-child::before {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.tab__gana table tr td:last-child::before {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
.tab__gana table tr td:nth-child(2) {
    font-size: 24px;
    font-family: 'Boldine';
    font-weight: normal;
    font-style: normal;
}
.premio__gan {
    width: 90px;
    margin: 0 auto;
}
.number__pos {
    position: relative;
    margin: -12px;
    width: 85px;
    height: 85px;
    background: url('../img/star.svg') center no-repeat;
    background-size: contain;
    z-index: 10;
}
.number__pos span {
    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%);
    font-family: 'Boldine';
    font-weight: normal;
    font-style: normal;
    color: rgb(var(--blanco), 1);
    font-size: 22px;
}
.slide__gana { padding: 0 20px; }
.item__winner {
    width: 80%;
    margin: 0 auto;
}
.item__winner figure {
    width: 100%;
    padding-top: 100%;
    border-radius: 50%;
    background: rgb(var(--naranja), 1);
    position: relative;
    overflow: hidden;
}
.item__winner figure img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    position: absolute;
    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%);
}
.slide__gana .slick-dots li button::before {
    color: rgb(var(--blanco), 1);
    font-size: 12px;
}
.slide__gana .slick-dots li.slick-active button::before { color: rgb(var(--ama01), 1); }

.wrapper#ganadores .img__ganadores { margin-bottom: -120px; }

/******************************
*   Faqs
******************************/
.cont__acordeon {
    margin-right: auto;
    margin-left: auto;
    max-width: 850px;
}
.opt__info { display: none; }
.acor__opt + .acor__opt { margin-top: 10px; }
.opt__title {
    padding: 15px;
    background: rgb(var(--azul01), 1);
    color: rgb(var(--turquesa), 1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.opt__title h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}
.arrw {
    width: 20px;
    height: 20px;
    position: relative;
}
.arrw::before,
.arrw::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: currentcolor;
    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%);
    -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);
}
.arrw::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);
}
.active .arrw::after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -moz-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    -o-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
}
.opt__info {
    padding: 15px;
    background: rgb(var(--azul01), .1);
    color: rgb(var(--turquesa), 1);
}

/******************************
*   Legal
******************************/
.info__legal {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    padding: 20px;
    border-radius: 12px;
    /* background: rgb(var(--ama01), .3); */
    text-align: justify;
}
.info__legal h4,
.info__legal h5 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-decoration: underline;
}
.info__legal h4 {
    color: rgb(var(--blanco), 1);
    /* text-shadow: 0 0 10px rgb(var(--negro), 1); */
}
.info__legal h5 {
    /* font-size: 22px; */
    font-size: 18px;
}
.info__legal * + h4,
.info__legal * + h5 { margin-top: 40px; }
.info__legal h4 + *,
.info__legal h5 + * { margin-top: 10px; }
.info__legal * + div,
.info__legal div + * { margin-top: 30px; }
.info__legal ul li + li,
.info__legal ol li + li { margin-top: 15px; }
.info__legal p + ul,
.info__legal p + ol,
.info__legal ul + p,
.info__legal ol + p { margin-top: 20px; }
.info__legal ul,
.info__legal ol { padding-inline-start: 20px; }
.info__legal ul { list-style: disc; }
.info__legal ol { list-style: decimal; }
.info__legal ul[type='a'],
.info__legal ol[type='a'] { list-style: lower-latin; }
.info__legal ul[type='i'],
.info__legal ol[type='i'] { list-style: lower-roman; }
.info__legal ul li::marker,
.info__legal ol li::marker {
    color: rgb(var(--blanco), 1);
    /* text-shadow: 0 0 10px rgb(var(--negro), 1); */
}
.tab__prod.tab table { min-width: auto;}

/******************************
*   Fin promo
******************************/
#fin-promo main { min-height: initial; }
#fin-promo footer { margin-top: -60px; }
#fin-promo .foo__tri { background: rgb(var(--azul02), 1); }
#fin-promo .foo__tri::before {
    background: url('../img/billetes-trama.svg') center;
    background-size: 1300px;
    opacity: .1;
}
#fin-promo .container { position: relative; }
#fin-promo .container > * + * { margin-top: 40px; }
.logo__fin { max-width: 40vh; }
.logo__tor {
    max-width: 20vh;
    width: 60%;
    margin: 0 auto;
}
.fin {
    padding-top: 60px;
    padding-bottom: 120px;
}
.fin .head__sect h3::before,
.fin .head__sect h3::after { content: unset; }
.fin .head__sect p { color: rgb(var(--crema), 1); }

/******************************
*   Error
******************************/
.c__wrong {
    text-align: center;
    color: rgb(var(--ama02), 1);
    font-weight: bold;
}
.c__wrong span {
    font-size: 100px;
    font-family: 'Boldine';
    font-weight: normal;
    font-style: normal;
    color: rgb(var(--blanco), 1);
    position: relative;
    display: inline-block;
}
.c__wrong span::after {
    content: attr(name);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: rgb(var(--negro), 1);
    text-shadow: 0 5px 0 rgb(var(--negro), 1);
    z-index: -1;
}
.c__wrong p { font-size: 20px; }



/******************************
*   Mobile
******************************/
/* Extra Small Devices, Phones */
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
@media (max-width : 649px) {

/*----- Mecanica -----*/
.con__prem > * + * { margin-top: 30px; }

.fil { text-align: center; }
.head__perf > div + div { margin-top: 30px; }

/*----- Registrar -----*/
.img__regis {
    margin-right: auto;
    margin-left: auto;
    max-width: 300px;
    width: 70%;
}


}
@media (min-width : 650px) {
/* main section { padding: 80px 0;  } */
.head__sect h3 { font-size: 64px; }
.head__sect h3.t__simple { font-size: 48px; }

#fin-promo .head__sect h3 { font-size: 48px; }

/*----- Inicio -----*/
.inicio { mask-size: 90px; }

/*----- Mecanica -----*/
.con__prem {
    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-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
    gap: 60px;
}
.item__premio { width: calc(33.33% - 40px); }
.c__pre {
    width: 40vh;
    max-width: 100%;
}

/*----- Ganadores -----*/
.ganadores .head__sect h3 { max-width: 390px; }
.gana__info {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    text-align: left;
}
.info__col { width: calc(50% - 15px); }
.img__winner { width: 100%; }

.img__ganadores { margin-bottom: -60px; }

/*----- Formularios -----*/
.form__large .cont__campos {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
}
.form__large .cont__campos .campo { width: 50%; }
.form__large .campo.c__cta,
.campo__check { width: 100% !important; }
.camp__check { text-align: center; }

/*----- Perfil -----*/
.fil {
    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;
    gap: 30px;
}
.head__perf {
    -webkit-box-align: flex-end;
    -webkit-align-items: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
}

/*----- Registrar -----*/
.fil__regis {
    text-align: center;
    flex-direction: row;
}
.fil__regis > div:nth-child(1) { width: calc(40% - 30px); }
.fil__regis > div:nth-child(2) { width: calc(60% - 30px); }
.fil__regis > div {
    display: inline-block;
    vertical-align: middle;
}

}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {
.tab {
    border: 1px solid rgb(var(--blanco), .3);
    background: rgb(var(--negro), .2);
}
.tab > div { padding: 10px; }
.tab > div table {
    margin-right: 10px;
    display: inline-table;
}
table { font-size: 16px; }

/*----- Inicio -----*/
.col__02 {
    margin-top: 20px;
    margin-bottom: -30px;
}

/*----- Retirar -----*/

}
/* Medium Devices to Large Devices */
@media (min-width : 768px){
.head__sect h3::before,
.head__sect h3::after {
    position: absolute;
    top: 10px;
}
.head__sect h3::before { right: calc(100% + 8px); }
.head__sect h3::after { left: calc(100% + 8px); }

.bg__bille { width: 28%; }
.cont__text .bg__bille { width: 300px; }

.colbille01 .bille02 { bottom: 10%; }
.colbille02 .bille02 { bottom: 10%; }

/*----- Inicio -----*/
.inicio {
    padding-top: 0px;
    padding-bottom: 0;
}
.glow { opacity: .8; }
.glow + .glow { opacity: .3; }
.glow figure {
    -webkit-transform: translateX(-4%);
    -moz-transform: translateX(-4%);
    -ms-transform: translateX(-4%);
    -o-transform: translateX(-4%);
    transform: translateX(-4%);
}
.fill__ini > * { width: 33.33%; }
.col__01,
.col__03 {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.col__01 { left: 0; }
.col__03 { right: 0; }
.col__02 { margin: 0 auto; }
.promo__ini {
    max-width: 30vh;
    width: 50%;
}
.mano {
    max-width: 45vh;
    width: 100%;
}

.bi02 {
    top: 4%;
    left: 18%;
}
.bi04 {
    bottom: 32%;
    right: 28%;
}

/*----- Ingresa -----*/
.ingresa .head__sect h3 { max-width: 270px; }
.info__regis { flex-direction: row; }
.regis__col { width: 50%; }
.regis__whats .regis__img { padding-top: 30%; }
.regis__whats.regis__col > * + * { margin-left: -22%; }

.bi__01 { top: 36%; }
.bi__02 {
    top: 4%;
    right: 3%;
}
.bi__03 {
    bottom: 0%;
    right: 10%;
}

/*----- Premio -----*/
.t__ganaste { font-size: 80px; }
.t__cantidad { font-size: 100px; }

/*----- Fin -----*/
#fin-promo .glow figure {
    -webkit-transform: translateX(-4%);
    -moz-transform: translateX(-4%);
    -ms-transform: translateX(-4%);
    -o-transform: translateX(-4%);
    transform: translateX(-4%) translateY(-14%);
    overflow: hidden;
    /* Aplica una máscara con un degradado */
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%);
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%);
}

}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
@media (max-width : 992px)  {
/*----- Perfil -----*/

}
@media (min-width : 992px)  {

/*----- Mecanica -----*/

/*----- Campo -----*/
.form__large .cont__campos .campo { width: 33.33%; }
}
/* Large Devices, Wide Screens */
@media (min-width : 992px) and (max-width : 1200px) {
}
@media (min-width : 1201px)  {
}






/******************************
*   Header
******************************/
.header {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    z-index: 100;
    top: 0;
}
.cont__men {
    width: 100%;
    padding: 10px;
    background: rgb(var(--ama01), 1);
    -webkit-box-shadow: 0 3px 10px 0 rgba(var(--negro), .1);
    box-shadow: 0 3px 10px 0 rgba(var(--negro), .1);
    z-index: 100;
}
.logo {
    position: absolute;
    width: 80px;
    left: 20px;
    top: 50%;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, .2));
}
.logo a {
    display: block;
    width: 100%;
    overflow: hidden;
}
.logo a span {
    position: absolute;
    visibility: hidden;
}
.cont__nav {
    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: flex-end;
}
.opt__men {
    font-family: 'Boldine';
    font-weight: normal;
    font-style: normal;
    text-align: center;
    line-height: 1;
}
.opt__men ul li { position: relative; }
.opt__men ul li a::before,
.opt__men ul li a span { grid-area: 1 / 1 / 2 / 2; }
.opt__men ul li a {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
    color: rgb(var(--blanco), 1);
    position: relative;
    z-index: 1;
}
.opt__men ul li a::before {
    content: attr(name);
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: rgb(var(--negro));
    color: rgb(var(--negro));
    z-index: -1;
}
.opt__men ul li a span {
    position: relative;
    font-style: normal;
    z-index: 1;
}
.opt__men ul li a.ingresa { color: rgb(var(--azul01), 2); }
.opt__men ul li.c__ses a { color: rgb(var(--naranja), 1); }
.btn__mob {
    width: 50px;
    position: relative;
    z-index: 1;
    cursor: pointer;
}
.btn__mob > div{
    width: 50px;
    height: 50px;
    -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__mob > div > div { position: absolute; }
.bars {
    width: 60%;
    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__mob .bars span,
.btn__clos .bars span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background: rgb(var(--naranja), 1);
    transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
}
.btn__mob .bars span + span,
.btn__clos .bars span + span {  margin-top: 6px; }
.btn__mob.active .bars span:nth-child(1),
.btn__clos.active .bars span:nth-child(1) {
    -webkit-transform: translate(0px, 8px) rotate(45deg);
    -moz-transform: translate(0px, 8px) rotate(45deg);
    -ms-transform: translate(0px, 8px) rotate(45deg);
    -o-transform: translate(0px, 8px) rotate(45deg);
    transform: translate(0px, 8px) rotate(45deg);
}
.btn__mob.active .bars span:nth-child(2),
.btn__clos.active .bars span:nth-child(2) {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
}
.btn__mob.active .bars span:nth-child(3),
.btn__clos.active .bars span:nth-child(3) {
    -webkit-transform: translate(0px, -8px) rotate(-45deg);
    -moz-transform: translate(0px, -8px) rotate(-45deg);
    -ms-transform: translate(0px, -8px) rotate(-45deg);
    -o-transform: translate(0px, -8px) rotate(-45deg);
    transform: translate(0px, -8px) rotate(-45deg);
}

/******************************
*   Header:  Mobile
******************************/
/* 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) {
.opt__men ul li a { font-size: 7vw; }
}
/* Medium Devices to Large Devices */
@media (min-width : 768px){
}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 1190px) {
.opt__men ul li a { font-size: 32px; }
}
@media (max-width : 1190px) {
/* header { height: 70px; } */
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    display: none;
    background: rgb(var(--ama01), .9);
}
.menu__center {
    width: 100%;
    padding: 60px 0;
    min-height: 100vh;
    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;
}
.center { width: 100%; }
div + .opt__men { margin-top: 40px; }
.opt__men ul {
    width: 500px;
    max-width: 90%;
    margin: 0 auto;
}
.opt__men ul li + li { margin-top: 28px; }
}
/* Medium Devices to Large Devices */
@media (min-width : 1191px){
.cont__men {
    height: 88px;
    padding: 24px 20px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: flex-end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: flex-end;
    justify-content: flex-end;

    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;

}
.btn__mob { display: none; }
.logo {
    width: 100px;
    left: 30px;
}
.opt__men ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}
.opt__men ul li + li { margin-left: 15px; }
.opt__men ul li a,
.opt__men ul li a.cta { font-size: 24px; }
.c__ses {
    padding-left: 15px;
    position: relative;
}
.c__ses::before {
    content: '';
    position: absolute;
    width: 2px;
    top: -4px;
    bottom: -4px;
    left: -1px;
    background: rgb(var(--naranja), 1);
    border-radius: 10px;
}

.fil__mone { top: 88px; }
.bg__bille { height: calc(100vh - 88px); }
}
/* Large Devices, Wide Screens */
@media (min-width : 992px) and (max-width : 1200px) {
}
@media (min-width : 1300px) {
}


.mt-10px{
    margin-top: 15px !important;
}

@media only screen and (max-width: 500px) {
    .g-recaptcha {
        transform:scale(0.8);
        transform-origin:0 0;
    }
}



/******************************
*   Footer
******************************/
.footer {
    text-align: center;
    position: relative;
    z-index: 1;
}
.foo__tri {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgb(var(--naranja), 1);
    z-index: -1;
    -webkit-mask-image: url('../img/trama-triangulo.svg');
    mask-image: url('../img/trama-triangulo.svg');
    mask-size: 60px;
    -webkit-mask-repeat: repeat-x;
    mask-repeat: repeat-x;
    -webkit-mask-position: top center;
    mask-position: top center;
}
.foo__tri::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/trama.svg') center no-repeat;
    background-size: cover;
    opacity: .6;
}
.cont__compo {
    margin: 0 auto;
    max-width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
    padding: 2% 0;
}

/* .cont__compo,
.cont__compo * { border: 1px solid rgba(var(--blanco), .4); } */

.fil__compo {
    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;
    position: relative;
    z-index: 1;
}
.fil01 { z-index: 1; }
.fil02 {
    margin-top: -4%;
    z-index: 2;
}
.gurp_comp {
    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: flex-end;
    -webkit-align-items: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
    will-change: filter;
}
.gurp_comp figure {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    position: relative;
    filter: drop-shadow(0px 2px 5px rgb(var(--negro), .6));
    will-change: filter;
}

.fil01 .gurp_comp:nth-child(1) { width: 30%; }
.fil01 .gurp_comp:nth-child(3) { width: 28%; }
.fil01 .gurp_comp:nth-child(2) {
    width: 32%;
    z-index: 1;
}
.fil01 .gurp_comp:nth-child(1) { margin-right: -4%; }
.fil01 .gurp_comp:nth-child(3) { margin-left: -1%; }
.fil01 .gurp_comp figure { width: 25%; }

.fil01 .gurp_comp:nth-child(2) figure:nth-child(2),
.fil01 .gurp_comp:nth-child(3) figure:nth-child(2) { z-index: 4; }

.fil01 .gurp_comp:nth-child(3) figure:nth-child(1) { z-index: 3; }
.fil01 .gurp_comp:nth-child(3) figure:nth-child(3) { z-index: 2; }
.fil01 .gurp_comp:nth-child(3) figure:nth-child(4) { z-index: 1; }

.fil02 {
    -webkit-box-align: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}
.fil02 .gurp_comp:nth-child(1),
.fil02 .gurp_comp:nth-child(3) { width: 36%;}
.fil02 .gurp_comp:nth-child(2) {
    width: 28%;
    z-index: 1;
}
.fil02 .gurp_comp:nth-child(1) figure,
.fil02 .gurp_comp:nth-child(3) figure { width: 14.25%;}
.fil02 .gurp_comp:nth-child(2) figure { width: 100%; }
.fil02 .gurp_comp:nth-child(3) figure:nth-child(1) { z-index: 7; }
.fil02 .gurp_comp:nth-child(3) figure:nth-child(2) { z-index: 6; }
.fil02 .gurp_comp:nth-child(3) figure:nth-child(3) { z-index: 5; }
.fil02 .gurp_comp:nth-child(3) figure:nth-child(4) { z-index: 4; }
.fil02 .gurp_comp:nth-child(3) figure:nth-child(5) { z-index: 3; }
.fil02 .gurp_comp:nth-child(3) figure:nth-child(6) { z-index: 2; }
.fil02 .gurp_comp:nth-child(3) figure:nth-child(7) { z-index: 1; }



.info__footer { padding: 100px 0 30px; }
.fil__foo + .fil__foo { margin-top: 50px; }
.links ul {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    gap: 15px;
}
.logo__foo {
    margin: 0 auto 30px;
    width: 120px;
}
.legal {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}


/******************************
*   Footer:  Mobile
******************************/
/* Extra Small Devices, Phones */
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
@media (max-width : 649px) {

}
@media (min-width : 650px) {
.foo__tri { mask-size: 90px; }

}
/* 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){
.links ul li { display: inline-block; }
}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
@media (max-width : 991px) {
}
/* Medium Devices to Large Devices */
@media (min-width : 992px) {
}
/* Large Devices, Wide Screens */
@media (min-width : 992px) and (max-width : 1200px) {
}
@media (min-width : 1201px) {
}
@media (min-width : 2001px) {
}
