@font-face {
    font-family: NewsGothicBold;
    src: url(fonts/News_Gothic_Bold.ttf) format("truetype");
}
@font-face {
    font-family: ShenzhenIndustrialW00Regular;
    src: url(fonts/ShenzhenIndustrialW00Regular.ttf) format("truetype");
}
html,
body {
    /*height: 100%;
    width: 100%;*/
}
body {
    margin: 0px;
    font-family: NewsGothicBold;
    background-color: black;
}
.semana-sep{
    color: #f9fe3b;
    font-size: 2.6em;
    padding: 0.4em;
    font-family: "ShenzhenIndustrialW00Regular";
    }
    
.notificacion {
    height: 65px;
    width: 700px;
    background-color: #b41c24;
    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: 2px solid white;
    position: fixed;
    top: 0;
    left: 36%;
    z-index: 12;
    border-radius: 10px;
    overflow: hidden;
}
.notificacion .texto {
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
    left: 30px;
}
.notificacion .texto p {
    color: white;
    font-family: "ShenzhenIndustrialW00Regular";
    font-size: 22px;
    width: 500px;
    text-align: center;
}
.notificacion .texto .batman {
    height: 90px;
    position: relative;
    top: 10px;
    left: 10px;
}
.notificacion .salir {
    align-self: flex-start;
    padding: 10px;
    height: 15px;
}
.notificacion .salir:hover {
    cursor: pointer;
}
.input-codigo {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: absolute;
    top: 49.5%;
    left: 51%;
    transform: translate(-50%, -50%);
    z-index: 1;
    margin-left: 5vw;
    padding: 3vw 0vw;
}
.input-codigo input {
    border: none;
    font-family: "ShenzhenIndustrialW00Regular";
    font-size: 20px;
    width: 230px;
    height: 40px;
    border-radius: 50px;
    padding: 5px 10px;
    color: black;
}
.input-codigo input::placeholder {
    color: gray;
}
.input-codigo button {
    background-color: #b41c24;
    border: none;
    border-radius: 50%;
    position: relative;
    right: 40px;
    height: 55px;
    width: 55px;
}
.input-codigo button:hover {
    cursor: pointer;
}
.input-codigo button img {
    height: 40px;
}

.popup-premios {
    position: fixed;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 10;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    visibility: visible;
    opacity: 1;
    transition: 0.5s all;
}
.popup-premios .popup {
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    background: url(../images/popup-premios.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 350px;
    height: 500px;
}
.popup-premios .popup .salir {
    position: absolute;
    top: 20px;
    right: 20px;
}
.popup-premios .popup h2,
.popup-premios .popup p {
    font-family: "ShenzhenIndustrialW00Regular";
    text-align: center;
}
.popup-premios .popup h2 {
    font-size: 40px;
    margin: 15px 0 0;
}
.popup-premios .popup p {
    font-size: 20px;
    margin: 0 0 5px;
}
.popup-premios .popup .carousel-popup {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.popup-premios .popup .carousel-popup .c-carousel {
    display: flex;
    flex-direction: row;
    margin: 20px 0;
}
.popup-premios .popup .carousel-popup .c-carousel .slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.7s all;
}
.popup-premios .popup .carousel-popup .c-carousel .show {
    visibility: visible;
    opacity: 1;
}
.popup-premios .popup .carousel-popup .c-carousel .hide,
.popup-premios .popup .carousel-popup .c-carousel .hide-left {
    visibility: hidden;
    opacity: 0;
    position: absolute;
}
.popup-premios .popup .carousel-popup .c-carousel .slide .semana {
    position: relative;
    top: -20px;
}
.popup-premios .popup .carousel-popup .c-carousel .slide img {
    height: 200px;
}

.popup-premios .popup .carousel-popup .controls {
    display: flex;
    flex-direction: row;
}
.popup-premios .popup .carousel-popup .controls .buttons {
    height: 20px;
    width: 20px;
    margin: 0 5px;
    background-color: white;
    border-radius: 50%;
}
.popup-premios .popup .carousel-popup .controls .buttons:hover {
    cursor: pointer;
}

.hide {
    visibility: hidden;
    z-index: -10;
    opacity: 0;
}
/*------------------------------------------*/
.content-user {
    background-color: #b41c24;
    width: min-content;
    height: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 5px 3px;
    position: absolute;
    top: 15vh;
    left: 25vw;
    z-index: 9;
}
.content-user .user {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    background-color: #a40404;
    border-radius: 50%;
    padding: 5px;
    position: relative;
    left: -3px;
}
.content-user .user img {
    height: 20px;
}
.content-user p {
    padding: 3px;
    font-size: 13px;
    color: white;
}
/*------------------------------------------*/

.carousel-snacks {
   
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: 0.5s all;
    position: absolute;
    top: 69%;
    padding: 3vw;
    left: 55%;
    transform: translate(-50%, -50%) scale(0.80);
}
.carousel-snacks .button {
    background: none;
    border: none;
    outline: none;
    position: relative;
    z-index: 7;
}
.carousel-snacks .button:hover {
    cursor: pointer;
}

.carousel-snacks .button img {
    height: 70px;
}
.carousel-snacks .button:nth-child(1) {
    left: 55px;
}
.carousel-snacks .button:nth-child(3) {
    left: -50px;
}
.carousel-snacks .button:nth-child(1) img {
    transform: rotate(180deg);
}

.carousel-snacks .productos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.carousel-snacks .productos img {
    position: relative;
    transition: 0.5s all;
    height: 220px;
}
.carousel-snacks .productos .secondary {
    transform: scale(1);
    z-index: 5;
}
.carousel-snacks .productos .primary {
    transform: scale(1.15);
    z-index: 6;
}

.carousel-snacks .productos img:nth-child(1) {
    left: 40px;
}
.carousel-snacks .productos img:nth-child(2) {
    transition: 0.5s all;
    top: 0px;
}
.carousel-snacks .productos img:nth-child(3) {
    left: -40px;
}

/*------------------------------------------*/
.redes {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #b41c24;
    width: min-content;
    border-radius: 17px;
    padding: 3px;
    position: absolute;
    bottom: -17vh;
    right: 16vw;
}
.redes a {
    padding: 4px 3px;
    margin-top: 5px;
}
.redes a img {
    height: 18px;
}
/*------------------------------------------*/
.carousel-premios {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50vh;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 2; 
}
.carousel-premios .carousel {
    display: flex;
    flex-direction: row;
    width: 790px;
    height: 730px;
    transition: 0.5s all;
}
.carousel-premios .carousel .slide .img-slide {
    height: 470px;
}
.carousel-premios .carousel .slide {
    transition: 0.4s all;
    margin: 0 auto;
    position: absolute;
    top: 63%;
    left: 49.5%;
    transform: translate(-50%, -50%);
}
.carousel-premios .carousel .slide .text {
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.carousel-premios .carousel .slide .text p {
    color: white;
    font-size: 37px;
    text-align: center;
    font-family: "ShenzhenIndustrialW00Regular";
    text-transform: uppercase;
    padding: 3px;
    margin: 0;
}
.carousel-premios .carousel .hide {
    visibility: hidden;
    opacity: 0;
    left: 60%;
}
.carousel-premios .carousel .hide-left {
    visibility: hidden;
    opacity: 0;
    left: 40%;
}
.carousel-premios .carousel .show {
    visibility: visible;
    opacity: 1;
    left: 49.5%;
}
.carousel-premios .content-buttons-carousel {
    height: 50px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.carousel-premios .content-buttons-carousel .buttons-carousel {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
}
.carousel-premios .content-buttons-carousel .buttons-carousel .button-carousel {
    height: 21px;
    width: 21px;
    background-color: white;
    margin: 5px 5.5px;
    border-radius: 50%;
}
.buttons-carousel .button-carousel:hover {
    cursor: pointer;
}
/*------------------------------------------*/
.carousel-chappas {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}
.carousel-chappas .chappas {
    display: flex;
    flex-direction: row;
}
.carousel-chappas .chappas .box {
    display: grid;
    grid-template-columns: auto auto auto;
    /* background-color: blue; */
    height: 600px;
    width: 570px;
    /* justify-content: center; */
    /* align-items: center; */
    grid-row-gap: 35px;
    grid-column-gap: 60px;
    position: relative;
    left: 49.5%;
    transform: translate(-50%);
    transition: 0.5s all;
}
.carousel-chappas .chappas .show {
    visibility: visible;
    opacity: 1;
}
.carousel-chappas .chappas .hide {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: -50%;
    z-index: 3;
}
.carousel-chappas .chappas .chappa {
    position: relative;
    height: 150px;
    width: 150px;
    /* background-color: red; */
}
.carousel-chappas .chappas .chappa img {
    height: 155px;
    filter: drop-shadow(5px 8px 4px rgba(0, 0, 0, 0.5));
}
.carousel-chappas .chappas .chappa .number {
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.45);
    background-color: #e80404;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -10px;
    right: 10px;
}
.carousel-chappas .chappas .chappa .number p {
    font-family: "NewsGothicBold";
    font-size: 30px;
    font-weight: bolder;
    color: white;
}
.carousel-chappas .posicion p {
    color: white;
    font-weight: bolder;
    font-size: 22px;
    position: relative;
    top: 15px;
}
.carousel-chappas .arrows {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 70px;
}
.carousel-chappas .arrows button {
    background: none;
    border: none;
    outline: none;
}
.carousel-chappas .arrows button:hover {
    cursor: pointer;
}
.carousel-chappas .arrows button img {
    height: 75px;
}
.carousel-chappas .arrows button:nth-child(1) {
    transform: rotate(180deg);
}
.carousel-chappas .arrows .buttons-chappas {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 350px;
    margin: 0 auto;
}
.carousel-chappas .arrows .buttons-chappas .button-chappas {
    height: 20px;
    width: 20px;
    background-color: white;
    border-radius: 50%;
    margin: 6px 5px;
}
.carousel-chappas .arrows .buttons-chappas .button-chappas:hover {
    cursor: pointer;
}
/*------------------------------------------*/
.how {
    top: 42vh;
    left: 50%;
    transform: translate(-50%, -50%);
}
.how .carousel .slide {
    width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.how .carousel .hide {
    left: 55%;
}
.how .carousel .hide-left {
    left: 45%;
}
.how .carousel .slide .img-slide {
    height: 400px;
    margin: 0 auto;
}

.how .carousel .slide .text {
    position: relative;
    top: 5px;
    left: 5px;
    width: 100%;
}
.how .carousel .slide .text p {
    color: white;
    font-size: 25px;
    text-align: center;
    font-family: "ShenzhenIndustrialW00Regular";
    text-transform: uppercase;
    padding: 3px;
}
/*------------------------------------------*/
button:focus,
input:focus,
div:focus {
    outline: none;
}

.gameiframe iframe {
    width: calc(100% - 14vw);
    height: 100vh;
    border: none;
    left: 14vw;
    position: relative;
    background-color: #000;
}
.game-logo {
    position: absolute;
    top: 43vh;
    width: 13vw;
    left: 0.5vw;
}

.home-btns {
    position: absolute;
    top: 60vw;
    width: 70vw;
    left: 50%;
    margin-left: -35vw;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.home-btns button {
    background-color: #fff;
    color: #ee1e24;
    width: 90vw;
    font-family: "NewsGothicBold";
    font-size: 6vw;
    border: solid 0.25vw #fff;
    cursor: pointer;
    border-radius: 3vw;
    margin-bottom: 6vw;
    line-height: 12vw;
    padding: 0vw;
    vertical-align: text-bottom;
}
.home-btns button img {
    float: right;
    width: 12vw;
}
.home-btns button:hover {
    background-color: #ee1e24;
    color: #fff;
}

.login-content {
    background-image: url(../images/login-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    position: relative;
    width: 100%;
    height: 120vh;
}

.recuperar-content {
    background-image: url(../images/recuperar-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    position: relative;
    width: 100%;
    height: 100vh;
}

.restablecer-content {
    background-image: url(../images/recuperar-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    position: relative;
    width: 100%;
    height: 100vh;
}

.reg-content {
    background-image: url(../images/register-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 216vw;
}
.reg-form {
    display: flex;
    flex-direction: column;
    min-height: 182vw;
    padding-top: 34vw;
}

.jugar-content {
    background-image: url(../images/codigook-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    position: relative;
    width: 100%;
    height: 100vh;
}

.sp-text {
    color: #fff;
    font-family: "NewsGothicBold";
    font-size: 3vw;
    position: relative;
    padding-left: 0.5vw;
    padding-top: 2.5vw;
    padding-bottom: 0.3vw;
    display: block;
}
.sp-text-chk {
    color: #fff;
    font-family: "NewsGothicBold";
    font-size: 3vw;
    position: relative;
    display: inline-block;
    vertical-align: super;
    margin-left: 0.3vw;
    margin-right: 8vw;
}
.sp-text-chk a{
    color: #fff;
}
.reg-left {
    position: relative;
    top: 0vw;
    left: 50%;
    width: 80vw;
    margin-left: -37vw;
    display: inline-block;
}
.reg-left input[type="text"],
.reg-left input[type="password"],
.reg-left input[type="number"],
.reg-left input[type="email"],
.reg-left select {
    font-size: 3vw;
    border-radius: 2.5vw;
    padding: 0.8vw 2vw;
    width: 70vw;
    color: #cc0000;
    font-family: "NewsGothicBold";
}
.reg-left input[type="text"]::placeholder {
    color: #d6262f;
    font-size: 3vw;
}

.reg-right {
    position: relative;
    display: block;
    top: auto;
    left: 50%;
    width: 80vw;
    margin-left: -37vw;
}
.reg-right input[type="text"],
.reg-right input[type="password"],
.reg-right input[type="number"],
.reg-right input[type="email"] {
    font-size: 3vw;
    border-radius: 2.5vw;
    padding: 0.8vw 2vw;
    width: 70vw;
    color: #cc0000;
    font-family: "NewsGothicBold";
}
.reg-right select {
    font-size: 3vw;
    border-radius: 2.5vw;
    padding: 0.8vw 2vw;
    width: 74.3vw;
    color: #cc0000;
    font-family: "NewsGothicBold";
}
.reg-right input[type="text"]::placeholder {
    color: #d6262f;
    font-size: 3vw;
}
.reg-right input[type="checkbox"] {
    display: inline-block;
    width: 5vw;
    height: 5vw;
    margin-top: 1vw;
    margin-bottom: 1vw;
}
#phone_code {
    width: 21vw;
    display: inline-block;
}
#phone {
    width: 47.5vw;
    display: inline-block;
    margin-bottom: 2vw;
}

.reg-form-ok {
    display: none;
}
.reg-form-err {
    display: none;
}

.reg-ok-text {
    font-family: ShenzhenIndustrialW00Regular;
    color: #fff;
    font-size: 13vw;
    top: 40vw;
    position: absolute;
    text-align: center;
    width: 40vw;
    left: 50%;
    margin-left: -20vw;
}
.reg-ok-text2 {
    font-family: ShenzhenIndustrialW00Regular;
    color: #fff;
    font-size: 8vw;
    top: 61vw;
    position: absolute;
    text-align: center;
    width: 80vw;
    left: 50%;
    margin-left: -40vw;
}

.preloader {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 999;
    background-color: #000;
    background-image: url("../images/preloader/landing-mob.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
}
.preloader img {
    width: 50vw;
    top: 48vh;
    position: absolute;
    left: 50%;
    margin-left: -25vw;
}

.image-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 0;
}

.girar {
    z-index: 9;
    display: none;
}
.game-content {
    background-color: #fff;
}

.site-girar {
    position: fixed;
    top: 0px;
    left: 0vw;
    bottom: 0px;
    right: 0px;
    height: 100vh;
    width: 100%;
    z-index: 999;
    display: none;
}

.cp {
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px;
    width: 18.667vw;
}

.header {
    width: 100%;
    height: auto;
    position: absolute;
    top: 1vw;
}
.header .home-logo {
    position: absolute;
    z-index: 1;
    top: 18vw;
    width: 78.667vw;
    left: 11vw;
}
.header .logo-cp {
    position: absolute;
    z-index: 1;
    top: 0px;
    width: 61.735vw;
    left: 15vw;
}
.header .home-menu {
    position: absolute;
    z-index: 1;
    top: 1vw;
    width: 6vw;
    right: 2vw;
    cursor: pointer;
}
.header .home-menu-bt {
    position: absolute;
    z-index: 1;
    top: 24vw;
    width: 11vw;
    right: 2vw;
    cursor: pointer;
}
.header .home-menu-sel {
    position: absolute;
    z-index: 1;
    top: 1vw;
    width: 13vw;
    right: 2vw;
    cursor: pointer;
}
.header .menu {
    position: absolute;
    z-index: 1;
    top: 0px;
    width: 11.735vw;
    right: 2vw;
    cursor: pointer;
}
.menu-modal {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #cc0000;
    color: #fff;
    z-index: 10;
    font-family: NewsGothicBold;
    font-size: 5.06666vw;
    display: none;
}
.menu-modal .menu-icon {
    width: 11.735vw;
    position: absolute;
    top: 4.2vw;
    right: 2vw;
    cursor: pointer;
}
.menu-modal .menu-logo-cp {
    width: 61.735vw;
    position: absolute;
    top: 4.2vw;
    left: 20vw;
}
.menu-modal ul {
    padding: 0px;
    margin: 0px;
    height: 100%;
}
.menu-modal ul li {
    list-style-type: none;
    display: flex;
    height: 11.9%;
    border-top: solid 0.5vw #fff;
    justify-content: flex-end;
    text-align: right;
    align-items: center;
    cursor: pointer;
}
.menu-modal ul li:hover {
    background-color: #000;
    color: #cc0000;
}
.menu-modal ul li span {
    margin-right: 18.5vw;
}
.menu-modal .menu-selected {
    background-color: #000;
    color: #cc0000;
}
.basestitle {
    position: absolute;
    top: 66vw;
    font-family: BrochaBold;
    font-size: 5.68vw;
    color: #fff;
    z-index: 1;
    text-align: center;
    width: 84vw;
    left: 50%;
    margin-left: -42vw;
    text-shadow: 0px 0.533333vw 0.533333vw #4e4d4d;
}
.policytitle {
    position: absolute;
    top: 76vw;
    font-family: BrochaBold;
    font-size: 5.68vw;
    color: #fff;
    z-index: 1;
    text-align: center;
    width: 84vw;
    left: 50%;
    margin-left: -42vw;
    text-shadow: 0px 0.533333vw 0.533333vw #4e4d4d;
}
.cppolicytitle {
    position: absolute;
    top: 86vw;
    font-family: BrochaBold;
    font-size: 5.68vw;
    color: #fff;
    z-index: 1;
    text-align: center;
    width: 84vw;
    left: 50%;
    margin-left: -42vw;
    text-shadow: 0px 0.533333vw 0.533333vw #4e4d4d;
}
.home-content {
    position: relative;
    top: 18vw;
    height: 157vw;
}
..ranking-content {
    position: relative;
    top: 0vw;
}
.ranking-popup {
    display: none;
}
.ranking-popup-mob {
    position: absolute;
    top: 27vw;
    left: 50%;
    width: 80vw;
    margin-left: -40vw;
}
.ranking-popup-close {
    position: absolute;
    top: 24.6vw;
    left: 50%;
    width: 8vw;
    margin-left: 26vw;
    cursor: pointer;
    z-index: 2;
}
.ranking-puesto {
    position: absolute;
    color: #fff;
    font-size: 4vw;
    top: 150vw;
    left: 50%;
    margin-left: -8.9vw;
    background-color: #40738b9c;
    border: solid 0.2vw #fff;
    padding: 0.8vw 1vw;
    text-align: left;
    min-width: 36vw;
    display: none;
}
.ranking-list {
    position: absolute;
    width: 68vw;
    height: 94vw;
    top: 50vw;
    left: 50%;
    margin-left: -34vw;
    overflow: scroll;
}
.ranking-items {
    display: flex;
    flex-direction: column;
}
.ranking-item {
    font-family: "NewsGothicBold";
    font-size: 4.5vw;
    color: #fff;
    background-image: url(../images/dsk/ganadores-item-bg.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: auto 100%;
    height: 10vw;
    margin-bottom: 0.5vw;
}
/*------------------------*/
.ranking-item .estrella {
    height: 40px;
    position: relative;
    top: 6px;
    left: 0px;
    visibility: hidden;
}
.premio .estrella {
    visibility: visible;
}
/*------------------------*/
.ranking-item .num {
    background-color: #40738b;
    width: 6vw;
    height: 6vw;
    border: solid 0.3vw #fff;
    border-radius: 50%;
    font-size: 3vw;
    line-height: 6vw;
    text-align: center;
    display: inline-block;
    margin: 2vw 1vw 1vw 4vw;
}
.ganadores-list .ranking-item .num {
    background-color: #fa0505;
}
.ranking-item .name {
    margin: 1.3vw 0vw;
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
    max-width: 35.6vw;
    overflow: hidden;
    white-space: nowrap;
}
/*------------------------*/
.ranking-item .num,
.ranking-item .name {
    position: relative;
    left: -60px;
}
/*------------------------*/
.ranking-item .name-top {
    color: #f7bf03;
}
.ranking-item .score {
    margin: 4vw 6vw 1.3vw 0vw;
    display: inline-block;
    vertical-align: middle;
    font-size: 3vw;
    font-weight: 700;
    float: right;
}
.ranking-item .score .pts {
    font-size: 2vw;
    margin-left: 1vw;
}
/*------------------------*/
.btn-wins img {
    width: 9.271vw;
}
.img-estrella {
    width: 3.386vw;
}
.img-info, .img-rank {
    width: 24.4271vw;
}
.bottom-ranking {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    bottom: unset;
    left: 25%;
    width: 60vw;
}
.bottom-ranking .img-aviso{
    position: relative;
    left: 70px;
}
.bottom-ranking .text-bottom {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: relative;
    left: 70px;
}
.text-ranking {
    display: flex;
    flex-direction: column;
}
.text-ranking img:nth-child(1) {
    margin-bottom: 10px;
}
/*------------------------*/
.codigo-content {
    position: relative;
    top: 0vw;
}
.code-home-msg {

}
.codes {
    position: absolute;
    top: 50vw;
    width: 80vw;
    left: 50%;
    margin-left: -40vw;
    text-align: center;
}
#code {
    font-size: 7vw;
    border-radius: 2vw;
    padding: 0vw 0.5vw;
    width: 70vw;
    border: solid 0.155vw #fff;
    font-family: "NewsGothicBold";
    color: #cc0000;
    text-align: center;
    margin: 2vw 0.7vw;
    text-transform: uppercase;
}
.selector-content {
    position: relative;
    top: 18vw;
}
.conoce {
    position: absolute;
    top: 50vw;
    font-family: BrochaBold;
    font-size: 5.68vw;
    color: #fff;
    z-index: 1;
    text-align: center;
    width: 84vw;
    left: 50%;
    margin-left: -42vw;
    text-shadow: 0px 0.533333vw 0.533333vw #4e4d4d;
}
.descubre {
    position: absolute;
    top: 128.2vw;
    font-family: "BrochaRegular";
    font-size: 7.2vw;
    font-weight: 500;
    color: #fff;
    z-index: 1;
    text-align: center;
    width: 80vw;
    left: 50%;
    margin-left: -40vw;
}
.participar {
    position: absolute;
    top: 78vw;
    z-index: 1;
    border: none;
    width: 50vw;
    padding: 3vw 0vw;
    left: 50%;
    margin-left: -25vw;
}

.ingresaaqui {
    position: absolute;
    top: 101vw;
    font-family: BrochaBold;
    font-size: 4.13067vw;
    color: #fff;
    z-index: 1;
    text-transform: uppercase;
    background-color: #f08200;
    border: none;
    border-radius: 4vw;
    width: 44vw;
    padding: 3vw 0vw;
    left: 50%;
    margin-left: -22vw;
}

.recuperar-content #email {
    position: absolute;
    top: 32vw;
    z-index: 1;
    font-family: NewsGothicBold;
    font-size: 3.74vw;
    color: #d6262f;
    border-radius: 3.5vw;
    padding: 5vw 5vw;
    width: 77vw;
    left: 50%;
    margin-left: -43.5vw;
    border: solid 0.155vw #fff;
    text-align: center;
}

.restablecer-content #password {
    position: absolute;
    top: 45vw;
    z-index: 1;
    font-family: NewsGothicBold;
    font-size: 3.74vw;
    color: #d6262f;
    border-radius: 2vw;
    padding: 1.5vw;
    width: 77vw;
    left: 50%;
    margin-left: -40vw;
    border: solid 0.155vw #fff;
    text-align: center;
}

.restablecer-content #rpassword {
    position: absolute;
    top: 62vw;
    z-index: 1;
    font-family: NewsGothicBold;
    font-size: 3.74vw;
    color: #d6262f;
    border-radius: 2vw;
    padding: 1.5vw;
    width: 77vw;
    left: 50%;
    margin-left: -40vw;
    border: solid 0.155vw #fff;
    text-align: center;
}

.login-content #nickname {
    position: absolute;
    top: 32vw;
    z-index: 1;
    font-family: NewsGothicBold;
    font-size: 3.74vw;
    color: #d6262f;
    border-radius: 3.5vw;
    padding: 5vw 5vw;
    width: 77vw;
    left: 50%;
    margin-left: -43.5vw;
    border: solid 0.155vw #fff;
    text-align: center;
}
.login-content #password {
    position: absolute;
    top: 50vw;
    z-index: 1;
    font-family: NewsGothicBold;
    font-size: 3.74vw;
    color: #d6262f;
    border-radius: 3.5vw;
    padding: 5vw 5vw;
    width: 77vw;
    left: 50%;
    margin-left: -43.5vw;
    border: solid 0.155vw #fff;
    text-align: center;
}

.sp-nickname {
    color: #fff;
    font-family: "NewsGothicBold";
    font-size: 4vw;
    top: 44vw;
    position: absolute;
    left: 50%;
    margin-left: -34vw;
}
.sp-email {
    color: #fff;
    font-family: "NewsGothicBold";
    font-size: 4vw;
    top: 44vw;
    position: absolute;
    left: 50%;
    margin-left: -34vw;
}
.sp-pass {
    color: #fff;
    font-family: "NewsGothicBold";
    font-size: 4vw;
    top: 38vw;
    position: absolute;
    left: 50%;
    margin-left: -38vw;
}
.sp-rpass {
    color: #fff;
    font-family: "NewsGothicBold";
    font-size: 4vw;
    top: 55vw;
    position: absolute;
    left: 50%;
    margin-left: -38vw;
}
.sp-error {
    color: #fff;
    font-family: "NewsGothicBold";
    font-size: 4vw;
    top: 44vw;
    position: absolute;
    left: 50%;
    margin-left: -40vw;
    width: 80vw;
    text-align: center;
}

.recuperar-content #email {
    top: 60vw;
    font-size: 4vw;
    border-radius: 1.2vw;
    padding: 1vw 0vw;
    width: 70vw;
    margin-left: -35vw;
}

.login-content #nickname {
    top: 50vw;
    font-size: 4vw;
    border-radius: 1.2vw;
    padding: 1vw 0vw;
    width: 70vw;
    margin-left: -35vw;
}
.sp-password {
    color: #fff;
    font-family: "NewsGothicBold";
    font-size: 4vw;
    top: 60vw;
    position: absolute;
    left: 50%;
    margin-left: -34vw;
}
.login-content #password {
    top: 66vw;
    font-size: 4vw;
    border-radius: 1.2vw;
    padding: 1vw 0vw;
    width: 70vw;
    margin-left: -35vw;
}
.login-content #password::placeholder,
.login-content #nickname::placeholder {
    color: #d6262f;
    font-size: 4vw;
}

::placeholder {
    color: #d6262f;
}
.reg-question-container {
    position: absolute;
    top: 67.7vw;
    z-index: 1;
    font-family: BrochaRegular;
    font-size: 4vw;
    color: #525050;
    border-radius: 3.5vw;
    padding: 0vw 0vw 5vw 0vw;
    width: 87vw;
    left: 50%;
    margin-left: -43.5vw;
    background-color: #fff;
}
.reg-question {
    width: 100%;
    line-height: 5vw;
    padding: 2vw 0vw;
    background-color: #f2f1f1;
    position: relative;
    display: block;
    border-radius: 3.5vw;
    text-align: center;
    box-shadow: 0vw 0.5vw 0.5vw #d9d9d9;
}
.reg-question-container textarea {
    margin: 2vw;
    width: 82vw;
    font-family: BrochaRegular;
    font-size: 4vw;
    color: #525050;
    border: none;
    resize: none;
}
.reg-question-container .chars {
    position: absolute;
    right: 3vw;
    bottom: 2vw;
}
.bases-div {
    position: absolute;
    top: 114vw;
    text-align: center;
    width: 100%;
    color: #484848;
    font-family: "BrochaRegular";
    font-size: 3.73333vw;
}
.bases-div a {
    color: #484848;
}
.bases-div #bases {
    width: 5vw;
    height: 5vw;
    border-radius: 10vw;
    border: none;
    display: inline-block;
    position: relative;
}
.bases-div label {
    display: inline-block;
    position: relative;
    line-height: 6vw;
    vertical-align: top;
}
.privacy-div {
    position: absolute;
    top: 120vw;
    text-align: center;
    width: 100%;
    color: #484848;
    font-family: "BrochaRegular";
    font-size: 3.73333vw;
}
.privacy-div a {
    color: #484848;
}
.privacy-div #privacy {
    width: 5vw;
    height: 5vw;
    border-radius: 10vw;
    border: none;
    display: inline-block;
    position: relative;
}
.privacy-div label {
    display: inline-block;
    position: relative;
    line-height: 6vw;
    vertical-align: top;
}
.registrarme {
    position: absolute;
    top: 125.6vw;
    font-family: NewsGothicBold;
    font-size: 4.66666vw;
    color: #cc3333;
    z-index: 1;
    text-transform: uppercase;
    background-color: #fff;
    border: none;
    border-radius: 1.2vw;
    width: 50vw;
    padding: 2.5vw 0vw;
    left: 50%;
    margin-left: -25vw;
}
.registrarme-ok {
    position: absolute;
    top: 125.6vw;
    font-family: NewsGothicBold;
    font-size: 4.66666vw;
    color: #cc3333;
    z-index: 1;
    text-transform: uppercase;
    background-color: #fff;
    border: none;
    border-radius: 1.2vw;
    width: 50vw;
    padding: 2.5vw 0vw;
    left: 50%;
    margin-left: -25vw;
}
.registrarme-err-ok {
    position: absolute;
    top: 125.6vw;
    font-family: NewsGothicBold;
    font-size: 4.66666vw;
    color: #cc3333;
    z-index: 1;
    text-transform: uppercase;
    background-color: #fff;
    border: none;
    border-radius: 1.2vw;
    width: 50vw;
    padding: 2.5vw 0vw;
    left: 50%;
    margin-left: -25vw;
}
.registrarme {
    top: 0vw;
    font-size: 4.5vw;
    width: 32vw;
    padding: 1.8vw 0vw;
    margin-left: -16vw;
    margin-top: 2vw;
    cursor: pointer;
    position: relative;
}
.registrarme-ok {
    top: 88vw;
    font-size: 6vw;
    width: 44vw;
    padding: 1vw 0vw;
    margin-left: -22vw;
    border-radius: 2.5vw;
    cursor: pointer;
}
.registrarme-err-ok {
    top: 88vw;
    font-size: 6vw;
    width: 44vw;
    padding: 0.7vw 0vw;
    margin-left: -22vw;
    border-radius: 2.5vw;
    cursor: pointer;
}
.login {
    position: absolute;
    top: 125.6vw;
    font-family: NewsGothicBold;
    font-size: 4.66666vw;
    color: #cc3333;
    z-index: 1;
    text-transform: uppercase;
    background-color: #fff;
    border: none;
    border-radius: 1.2vw;
    width: 50vw;
    padding: 2.5vw 0vw;
    left: 50%;
    margin-left: -25vw;
}
.login {
    top: 79vw;
    font-size: 4vw;
    width: 40vw;
    padding: 2vw 0vw;
    margin-left: -20vw;
    cursor: pointer;
}
.recuperar {
    position: absolute;
    top: 125.6vw;
    font-family: NewsGothicBold;
    font-size: 4.66666vw;
    color: #cc3333;
    z-index: 1;
    text-transform: uppercase;
    background-color: #fff;
    border: none;
    border-radius: 1.2vw;
    width: 50vw;
    padding: 2.5vw 0vw;
    left: 50%;
    margin-left: -25vw;
}
.recuperar {
    top: 75vw;
    font-size: 4vw;
    width: 40vw;
    padding: 2vw 0vw;
    margin-left: -20vw;
    cursor: pointer;
}
.restablecer {
    position: absolute;
    top: 125.6vw;
    font-family: NewsGothicBold;
    font-size: 4.66666vw;
    color: #cc3333;
    z-index: 1;
    text-transform: uppercase;
    background-color: #fff;
    border: none;
    border-radius: 1.2vw;
    width: 50vw;
    padding: 2.5vw 0vw;
    left: 50%;
    margin-left: -25vw;
}
.restablecer {
    top: 79vw;
    font-size: 4vw;
    width: 40vw;
    padding: 2vw 0vw;
    margin-left: -20vw;
    cursor: pointer;
}
.accept {
    position: absolute;
    top: 120.6vh
    font-family: NewsGothicBold;
    font-size: 4.66666vw;
    color: #cc3333;
    z-index: 1;
    text-transform: uppercase;
    background-color: #fff;
    border: none;
    border-radius: 1.2vw;
    width: 50vw;
    padding: 2.5vw 0vw;
    left: 50%;
    margin-left: -25vw;
}
.sendcode {
    position: absolute;
    top: 125.6vw;
    font-family: NewsGothicBold;
    font-size: 4.66666vw;
    color: #cc3333;
    z-index: 1;
    text-transform: uppercase;
    background-color: #fff;
    border: none;
    border-radius: 1.2vw;
    width: 50vw;
    padding: 2.5vw 0vw;
    left: 50%;
    margin-left: -25vw;
}
.sendcode {
    top: 73vw;
    font-size: 5.5vw;
    width: 36vw;
    padding: 1.8vw 0vw;
    margin-left: -18vw;
    border-radius: 2vw;
    cursor: pointer;
}
.gamebtn {
    position: absolute;
    top: 66vw;
    font-family: NewsGothicBold;
    font-size: 5.5vw;
    color: #ee1e24;
    z-index: 1;
    text-transform: uppercase;
    background-color: #fff;
    border: none;
    border-radius: 2vw;
    width: 40vw;
    padding: 1.8vw 0vw;
    left: 50%;
    margin-left: -20vw;
    display: none;
    display: none;
}
.gamebtn-bottom {
    top: 72vw;
}
.codigo-st {
    position: absolute;
    display: none;
    width: 90vw;
    top: 40vw;
    left: 50%;
    margin-left: -45vw;
}
.reg-text {
    position: absolute;
    top: 49vw;
    background-color: #fff;
    width: 74vw;
    left: 50%;
    margin-left: -43vw;
    border-radius: 3.5vw;
    font-size: 4.26666vw;
    color: #484848;
    padding: 3vw 6vw;
    text-align: center;
}
.reg-text a {
    color: #f2964b;
    font-family: BrochaBold;
}
.jugar {
    position: absolute;
    top: 127vw;
    font-family: BrochaBold;
    font-size: 7.2vw;
    color: #fff;
    z-index: 1;
    text-transform: uppercase;
    background-color: #426da9;
    border: none;
    border-radius: 4vw;
    width: 44vw;
    padding: 1.3vw 0vw;
    left: 50%;
    margin-left: -2vw;
}
.reg-recuerda {
    position: absolute;
    top: 87vw;
    background-color: #fff;
    width: 74vw;
    left: 50%;
    margin-left: -43vw;
    border-radius: 3.5vw;
    font-size: 4.26666vw;
    color: #484848;
    padding: 3vw 6vw;
    text-align: center;
}
.reg-felicidades {
    position: absolute;
    top: 53vw;
    background-color: #fff;
    width: 74vw;
    left: 50%;
    margin-left: -43vw;
    border-radius: 3.5vw;
    font-size: 5.33334vw;
    color: #484848;
    padding: 3.7vw 6vw;
    text-align: center;
    font-weight: bold;
}
.reg-felicidades span {
    font-size: 7.33334vw;
    display: block;
    margin-bottom: 1vw;
}
#game {
    display: block;
    border: none;
    width: 100%;
    height: 100vh;
}
.help-bg {
    display: inline;
    position: absolute;
    top: 47vw;
    width: 80vw;
    left: 50%;
    margin-left: -40vw;
}

.help-dsk-bg {
    display: none;
}
.text-title {
    position: absolute;
    top: 71vw;
    width: 60vw;
    left: 50%;
    color: #fff;
    margin-left: -30vw;
    font-family: "BrochaRegular";
    font-size: 4.5vw;
    text-align: center;
}
.text-1 {
    position: absolute;
    top: 98vw;
    width: 48vw;
    left: 50%;
    color: #000;
    margin-left: -18vw;
    font-family: "BrochaRegular";
    font-size: 4.5vw;
}
.text-2 {
    position: absolute;
    top: 98vw;
    width: 56vw;
    left: 50%;
    color: #000;
    margin-left: -18vw;
    font-family: "BrochaRegular";
    font-size: 4.5vw;
    display: none;
}
.text-num {
    position: absolute;
    top: 99vw;
    width: 10vw;
    height: 10vw;
    left: 50%;
    margin-left: -33vw;
    font-family: "BrochaBold";
    font-size: 7.5vw;
    line-height: 10vw;
    text-align: center;
    color: #fff;
    background-color: #f08217;
    border-radius: 50%;
}
.bullet-1 {
    position: absolute;
    top: 136vw;
    left: 50%;
    margin-left: -5vw;
    width: 6vw;
    cursor: pointer;
}
.bullet-2 {
    position: absolute;
    top: 136vw;
    left: 50%;
    margin-left: 3vw;
    width: 6vw;
    cursor: pointer;
}
.help-popup-close {
    position: absolute;
    top: 53vw;
    left: 84vw;
    z-index: 1;
    cursor: pointer;
    width: 11.2vw;
}
.boost-1 {
    position: absolute;
    top: 40vw;
    width: 83.735vw;
    left: 50%;
    margin-left: -41.86vw;
    cursor: pointer;
}
.boost-participar {
    position: absolute;
    top: 161vw;
    width: 58.934vw;
    left: 50%;
    margin-left: -29.467vw;
    cursor: pointer;
}
.boost-popup-close {
    position: absolute;
    top: 47vw;
    left: 84vw;
    z-index: 1;
    cursor: pointer;
    width: 11.2vw;
}
.cp-dsk,
.help-dsk-1,
.help-dsk-2,
.boost-dsk-1 {
    display: none;
}
.error-msg {
    color: #fff;
    position: absolute;
    top: 140vw;
    width: 100%;
    font-size: 4vw;
    text-align: center;
    display: none;
    left: 0vw;
}
.error-msg a {
    color: #fff;
}
.error-msg {
    top: 110vw;
    font-size: 4vw;
}
.input-codigo .error-msg {
    text-align: left;
    top: -2vw;
    font-size: 2.5vw;
    margin-left: 2vw;
}
.codigo-content .error-msg {
    top: 86vw;
    font-size: 4vw;
}
.reg-content .error-msg {
    top: 0vw;
    font-size: 3vw;
    position: relative;
    margin-top: 2.5vw;
}
.recuperar-content .error-msg {
    top: 86vw;
    font-size: 4vw;
}
.restablecer-content .error-msg {
    top: 91vw;
    font-size: 4vw;
}
.lnkgame {
    color: #fff;
    position: absolute;
    top: 88vw;
    width: 70vw;
    left: 50%;
    margin-left: -35vw;
    text-align: center;
    font-family: "BrochaBold";
    font-size: 5.68vw;
    text-shadow: 0px 0.533333vw 0.533333vw #4e4d4d;
}
.lnkgame a {
    color: #f08217;
}
.lnkreg {
    color: #fff;
    position: absolute;
    top: 152vw;
    width: 80vw;
    left: 50%;
    margin-left: -40vw;
    text-align: center;
    font-family: NewsGothicBold;
    font-size: 4vw;
}
.lnkreg a {
    color: #fff;
}
.lnkreg {
    top: 102vw;
    width: 80vw;
    margin-left: -40vw;
    font-size: 3.5vw;
}
.lnkrec {
    color: #fff;
    position: absolute;
    top: 148vw;
    width: 80vw;
    left: 50%;
    margin-left: -40vw;
    text-align: center;
    font-family: NewsGothicBold;
    font-size: 4vw;
}
.lnkrec a {
    color: #fff;
}
.lnkrec {
    top: 95vw;
    width: 80vw;
    margin-left: -40vw;
    font-size: 3.5vw;
}
.popup-content {
    display: none;
}
.input-required {
    border: solid 0.155vw #000;
}
.code-text {
    position: absolute;
    font-family: "NewsGothicBold";
    color: #fff;
    font-size: 7vw;
    width: 90vw;
    text-align: center;
    left: 50%;
    top: 47vw;
    margin-left: -45vw;
    display: none;
}

.bases-content {
    background-color: #000;
    position: relative;
    height: 100vh;
    width: 100%;
}
.bases-content .title {
    background-color: #ff0000;
    font-family: "NewsGothicBold";
    font-size: 3.4vw;
    color: #fff;
    position: absolute;
    top: 10vw;
    padding: 2vw 2vw;
    border-radius: 1vw;
    width: 50vw;
    text-align: center;
    left: 50%;
    margin-left: -28vw;
}
.bases-content .subtitle {
    font-family: "NewsGothicBold";
    font-size: 3.2vw;
    color: #fff;
    position: relative;
    top: 0vw;
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 0.5vw;
    margin-top: 6.5vw;
}
.bases-content p {
    font-family: "NewsGothicBold";
    font-size: 2vw;
    color: #fff;
    position: relative;
    width: 100%;
    text-align: left;
    margin-top: 2.5vw;
}
.bases-text {
    position: absolute;
    top: 22vw;
    left: 40%;
    width: 80vw;
    margin-left: -30vw;
}

@media only screen and (orientation: landscape) and (hover: hover) {
    .preloader {
        background-image: url(../images/preloader/landing-desktop-1.png);
    }
    .preloader img {
        width: 25.157vw;
        top: 48vh;
        position: absolute;
        left: 50%;
        margin-left: -12.5vw;
    }
    .semana-sep{
    color: #f9fe3b;
    font-size: 2.6em;
    padding: 0.4em;
    font-family: "ShenzhenIndustrialW00Regular";
    }
    .header .home-menu {
        top: -6.1vw;
        width: 4.375vw;
        right: 2vw;
        margin-left: 30vw;
    }
    .cp {
        display: none;
    }
    .cp-dsk {
        display: inline;
        position: absolute;
        top: 2vw;
        left: 20vw;
        width: 12.448vw;
        z-index: 1;
    }
    .discovery-logo {
        width: 100%;
        height: 3.5vw;
        background-color: #fff;
        text-align: center;
        z-index: 11;
        overflow: hidden;
    }
    .discovery-logo img {
        width: auto;
        height: 150%;
        display: inline;
        margin-top: -0.7vw;
    }
    .header {
        top: 7.3vw;
    }
    .header .home-logo {
        top: 0px;
        width: 30.313vw;
        left: 50%;
        margin-left: -15.1565vw;
    }
    .conoce {
        position: relative;
        display: block;
        padding-top: 19vw;
        top: 0vw;
        font-size: 2.2vw;
        width: 35vw;
        margin-left: -17.5vw;
        text-shadow: 0px 0.2vw 0.3vw #292929;
    }
    .basestitle {
        top: 27vw;
        font-size: 2.2vw;
        width: 35vw;
        margin-left: -17.5vw;
        text-shadow: 0px 0.2vw 0.3vw #292929;
    }
    .policytitle {
        top: 31vw;
        font-size: 2.2vw;
        width: 35vw;
        margin-left: -17.5vw;
        text-shadow: 0px 0.2vw 0.3vw #292929;
    }
    .cppolicytitle {
        top: 35vw;
        font-size: 2.2vw;
        width: 35vw;
        margin-left: -17.5vw;
        text-shadow: 0px 0.2vw 0.3vw #292929;
    }
    .descubre {
        top: 37.7vw;
        font-size: 2.81vw;
    }

    .participar {
        top: 42vh;
        z-index: 1;
        border: none;
        width: 22.12vw;
        padding: 1vw 0vw;
        left: 50%;
        margin-left: -6.06vw;
        cursor: pointer;
        position: absolute;
        margin-top: 0vw;
        display: block;
    }
    .ingresaaqui {
        top: 0vw;
        font-size: 1.7vw;
        color: #fff;
        z-index: 1;
        text-transform: uppercase;
        background-color: #f08200;
        border: none;
        border-radius: 4vw;
        width: 19.22vw;
        padding: 1vw 0vw;
        left: 50%;
        margin-left: -9.61vw;
        cursor: pointer;
        position: relative;
        display: block;
        margin-top: 7vw;
    }
    .home-content {
        background-image: url(../images/dsk/bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top center;
        position: relative;
        width: 100%;
        height: 100vh;
        top: 0px;
        padding-bottom: 20vh;
    }
    .selector-content {
        background-image: url(../images/dsk/home-bg.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: top center;
        position: relative;
        width: 100%;
        height: 100vh;
        top: 0px;
    }
    .game-content {
        background-image: url(../images/dsk/game-bg.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: top center;
        position: relative;
        width: 100%;
        height: 100vh;
        top: 0px;
    }
    .jugar-content {
        background-image: url(../images/dsk/jugar-bg.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: top center;
        position: relative;
        width: 100%;
        height: 100vh;
        top: 0px;
    }
    .premios-content {
        background-image: url(../images/dsk/premios-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top center;
        position: relative;
        width: 100vw;
        height: 100vh;
        top: 0px;
    }
    .productos-content {
        background-image: url(../images/dsk/productos-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top center;
        position: relative;
        width: 100%;
        height: 100vh;
        top: 0px;
    }
    .how-content {
        background-image: url(../images/dsk/how-bg.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position:top center;
        position: relative;
        top: 0px;
        width: 100%;
        height: 100vh;
    }
    .chapas-content {
        background-image: url(../images/dsk/chappas-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top center;
        position: relative;
        width: 100vw;
        height: 130vh;
        top: 0px;
    }
    .home-btns {
        position: absolute;
        top: 15vw;
        width: 60vw;
        left: 50%;
        margin-left: -30vw;
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .home-btns button {
        background-color: #fff;
        color: #ee1e24;
        width: 24vw;
        font-family: "NewsGothicBold";
        font-size: 2vw;
        border: solid 0.25vw #fff;
        cursor: pointer;
        border-radius: 1.2vw;
        margin-bottom: 4vw;
        line-height: 3.8vw;
        padding: 0vw;
        vertical-align: text-bottom;
    }
    .home-btns button img {
        float: right;
        width: 3.7176vw;
    }
    .home-btns button:hover {
        background-color: #ee1e24;
        color: #fff;
    }
    .image-bg {
        display: none;
    }
    .menu-modal {
        width: 41.25vw;
        font-size: 1.46vw;
        margin-left: -20.625vw;
        left: 50%;
    }
    .menu-modal .menu-logo-cp {
        width: 20vw;
        top: 1.4vw;
        left: 10vw;
    }
    .menu-modal .menu-icon {
        display: none;
    }
    .menu-modal ul li span {
        margin-right: 4vw;
    }
    .login-content {
        background-image: url(../images/dsk/login-bg.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: top center;
        position: relative;
        width: 100%;
        height: 100vh;
    }
    .recuperar-content {
        background-image: url(../images/dsk/recuperar-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top center;
        position: relative;
        width: 100%;
        height: 100vh;
    }
    .restablecer-content {
        background-image: url(../images/dsk/recuperar-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top center;
        position: relative;
        width: 100%;
        height: 100vh;
    }
    .codigo-content {
        background-image: url(../images/dsk/codigo-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top center;
        position: relative;
        width: 100%;
        height: 100vh;
    }
       .ranking-content {
        background-image: url(../images/dsk/ranking-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top center;
        position: relative;
        width: 100%;
        height: 100vh;
    }
    .ganadores-content {
        background-image: url(../images/dsk/ganadores-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top center;
        position: relative;
        width: 100%;
        height: 100vh;
    }
    .ranking-popup {
        position: relative;
        top: 8vw;
        left: 50%;
        width: 53.021vw;
        margin-left: -26.5105vw;
        display: inline-block;
        margin-bottom: 9vw;
    }
    .ranking-popup-mob {
        display: none;
    }
    .ranking-popup-close {
        position: absolute;
        top: 8vw;
        left: 50%;
        width: 3.1777vw;
        margin-left: 26vw;
        cursor: pointer;
    }
    .ranking-puesto {
        position: absolute;
        color: #fff;
        font-size: 1.1vw;
        top: 37.9vw;
        left: 50%;
        margin-left: 9.5vw;
        background-color: #40738b9c;
        border: solid 0.2vw #fff;
        padding: 0.3vw 0.5vw;
        text-align: left;
        min-width: 10.3vw;
    }
    .ranking-list {
        position: absolute;
        width: 48vw;
        height: 22vw;
        top: 15.5vw;
        left: 50%;
        margin-left: -23.3vw;
        overflow-y: scroll;
        overflow-x: hidden;
    }
    .ranking-items {
        display: flex;
        flex-direction: column;
    }

    .ranking-item {
        font-family: "NewsGothicBold";
        font-size: 3vw;
        color: #fff;
        background-image: url(../images/dsk/ranking-item-bg.png);
        background-repeat: no-repeat;
        background-position: top left;
        background-size: auto 100%;
        height: 7.032vw;
        margin-bottom: 0.5vw;
    }
    .ganadores-item {
        background-image: url(../images/dsk/ganadores-item-bg.png);
    }
    .ranking-item .num {
        background-color: #40738b;
        width: 4vw;
        height: 4vw;
        border: solid 0.25vw #fff;
        border-radius: 50%;
        font-size: 2.3vw;
        line-height: 4vw;
        text-align: center;
        display: inline-block;
        margin: 1.3vw 1vw 1.3vw 4vw;
    }
    .ranking-item .name {
        margin: 1.3vw 0vw;
        display: inline-block;
        vertical-align: middle;
        max-width: 22.2vw;
        overflow: hidden;
        white-space: nowrap;
    }
    .ranking-item .name-top {
        color: #f7bf03;
    }
    .ranking-item .score {
        margin: 3vw 6vw 1.3vw 0vw;
        display: inline-block;
        vertical-align: middle;
        font-size: 1.8vw;
        font-weight: 700;
        float: right;
    }
    .ranking-item .score .pts {
        font-size: 1vw;
        margin-left: 0.4vw;
    }
    .reg-content {
        background-image: url(../images/dsk/register-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top center;
        position: relative;
        width: 100%;
        height: 100vh;
        min-height: unset;
    }
    .reg-form {
        display: inline;
        flex-direction: unset;
        min-height: unset;
        padding-top: 0vw;
    }
    .header .logo-cp {
        top: -2vw;
        width: 28.2vw;
        left: 50%;
        margin-left: -14.1vw;
    }
    .sp-text {
        color: #fff;
        font-family: "NewsGothicBold";
        font-size: 1vw;
        position: relative;
        padding-left: 0.5vw;
        padding-top: 0.3vw;
        display: block;
    }
    .sp-text-chk {
        color: #fff;
        font-family: "NewsGothicBold";
        font-size: 1.1vw;
        position: relative;
        display: inline-block;
        vertical-align: super;
        margin-left: 0.3vw;
        margin-right: 4vw;
    }
    .reg-left {
        position: absolute;
        top: 7vw;
        left: 50%;
        width: 26vw;
        margin-left: -29vw;
    }
    .reg-left input[type="text"],
    .reg-left input[type="password"],
    .reg-left input[type="email"],
    .reg-left select {
        font-size: 1vw;
        border-radius: 1.2vw;
        padding: 0.3vw 1vw;
        width: 27vw;
        color: #cc0000;
        font-family: "NewsGothicBold";
    }
    .reg-left input[type="text"]::placeholder {
        color: #d6262f;
        font-size: 1vw;
    }

    .reg-right {
        position: absolute;
        top: 7vw;
        left: 50%;
        width: 30vw;
        margin-left: 3vw;
    }
    .reg-right input[type="text"],
    .reg-right input[type="password"],
    .reg-right input[type="number"],
    .reg-right input[type="email"] {
        font-size: 1vw;
        border-radius: 1.2vw;
        padding: 0.3vw 1vw;
        width: 27vw;
        color: #cc0000;
        font-family: "NewsGothicBold";
    }
    .reg-right select {
        font-size: 1vw;
        border-radius: 1.2vw;
        padding: 0.3vw 1vw;
        width: 29.1vw;
        color: #cc0000;
        font-family: "NewsGothicBold";
    }
    #phone_code {
        width: 8vw;
    }
    #phone {
        width: 18.5vw;
        margin-bottom: 1vw;
    }
    .reg-right input[type="text"]::placeholder {
        color: #d6262f;
        font-size: 1vw;
    }
    .reg-right input[type="checkbox"] {
        display: inline-block;
        width: 1.5vw;
        height: 1.5vw;
        margin-top: 0.5vw;
        margin-bottom: 0.5vw;
    }

    .reg-form-ok {
        display: none;
    }
    .reg-form-err {
        display: none;
    }

    .reg-ok-text {
        font-family: ShenzhenIndustrialW00Regular;
        color: #fff;
        font-size: 4.5vw;
        top: 14vw;
        position: absolute;
        text-align: center;
        width: 40vw;
        left: 50%;
        margin-left: -20vw;
    }
    .reg-ok-text2 {
        font-family: ShenzhenIndustrialW00Regular;
        color: #fff;
        font-size: 3.7vw;
        top: 21vw;
        position: absolute;
        text-align: center;
        width: 40vw;
        left: 50%;
        margin-left: -20vw;
    }

    .codes {
        position: absolute;
        top: 11.5vw;
        width: 40vw;
        left: 50%;
        margin-left: -20vw;
        text-align: center;
    }
    #code {
        font-size: 3.5vw;
        border-radius: 0.6vw;
        padding: 0vw 0.5vw;
        width: 36vw;
        border: solid 0.155vw #fff;
        font-family: "NewsGothicBold";
        color: #cc0000;
        text-align: center;
        margin: 2vw 0.7vw;
        text-transform: uppercase;
    }
    .codigo-content .error-msg {
        top: 38vw;
        font-size: 1.3vw;
    }
    .recuperar-content .error-msg {
        top: 26vw;
        font-size: 1.3vw;
    }
    .restablecer-content .error-msg {
        top: 32.5vw;
        font-size: 1.3vw;
        width: 26vw;
        left: 50%;
        margin-left: -13vw;
    }

    .sp-nickname {
        color: #fff;
        font-family: "NewsGothicBold";
        font-size: 2vw;
        top: 12.4vw;
        position: absolute;
        left: 50%;
        margin-left: -14vw;
    }
    .sp-email {
        color: #fff;
        font-family: "NewsGothicBold";
        font-size: 1.9vw;
        top: 9.4vw;
        position: absolute;
        left: 50%;
        margin-left: -14vw;
        text-align: center;
    }
    .sp-pass {
        color: #fff;
        font-family: "NewsGothicBold";
        font-size: 1.9vw;
        top: 12vw;
        position: absolute;
        left: 50%;
        margin-left: -14vw;
        text-align: center;
    }
    .sp-rpass {
        color: #fff;
        font-family: "NewsGothicBold";
        font-size: 1.9vw;
        top: 19vw;
        position: absolute;
        left: 50%;
        margin-left: -14vw;
        text-align: center;
    }
    .sp-error {
        color: #fff;
        font-family: "NewsGothicBold";
        font-size: 1.9vw;
        top: 15vw;
        position: absolute;
        left: 50%;
        width: 50vw;
        margin-left: -25vw;
        text-align: center;
    }

    .login-content #nickname {
        top: 15vw;
        font-size: 2vw;
        border-radius: 1.2vw;
        padding: 0.3vw 1vw;
        width: 29.7vw;
        margin-left: -14.85vw;
    }
    .recuperar-content #email {
        top: 15vw;
        font-size: 2vw;
        border-radius: 1.2vw;
        padding: 0.3vw 1vw;
        width: 29.7vw;
        margin-left: -14.85vw;
    }
    .restablecer-content #password {
        top: 15vw;
        font-size: 2vw;
        border-radius: 1.2vw;
        padding: 0.3vw 1vw;
        width: 29.7vw;
        margin-left: -14.85vw;
    }
    .restablecer-content #rpassword {
        top: 22vw;
        font-size: 2vw;
        border-radius: 1.2vw;
        padding: 0.3vw 1vw;
        width: 29.7vw;
        margin-left: -14.85vw;
    }
    .sp-password {
        color: #fff;
        font-family: "NewsGothicBold";
        font-size: 2vw;
        top: 19.4vw;
        position: absolute;
        left: 50%;
        margin-left: -14vw;
    }
    .login-content #password {
        top: 22vw;
        font-size: 2vw;
        border-radius: 1.2vw;
        padding: 0.3vw 1vw;
        width: 29.7vw;
        margin-left: -14.85vw;
    }
    .login-content #password::placeholder,
    .login-content #nickname::placeholder {
        color: #d6262f;
        font-size: 2vw;
    }
    .bases-div {
        top: 34.6vw;
        font-size: 1.023vw;
    }
    .bases-div #bases {
        width: 1.4vw;
        height: 1.4vw;
    }
    .bases-div label {
        line-height: 2vw;
    }
    .privacy-div {
        top: 37vw;
        font-size: 1.023vw;
    }
    .privacy-div #privacy {
        width: 1.4vw;
        height: 1.4vw;
    }
    .privacy-div label {
        line-height: 2vw;
    }
    .registrarme {
        top: 31.5vw;
        font-size: 1.6vw;
        width: 14vw;
        padding: 0.5vw 0vw;
        margin-left: -7.59vw;
        cursor: pointer;
    }
    .registrarme-ok {
        top: 35vw;
        font-size: 2vw;
        width: 15.643vw;
        padding: 0.7vw 0vw;
        margin-left: -6.59vw;
        cursor: pointer;
    }
    .registrarme-err-ok {
        top: 35vw;
        font-size: 2vw;
        width: 15.643vw;
        padding: 0.7vw 0vw;
        margin-left: -6.59vw;
        cursor: pointer;
    }
    .login {
        top: 28.5vw;
        font-size: 2vw;
        width: 15.643vw;
        padding: 1vw 0vw;
        margin-left: -7.8215vw;
        cursor: pointer;
    }
    .recuperar {
        top: 20vw;
        font-size: 2vw;
        width: 15.643vw;
        padding: 1vw 0vw;
        margin-left: -7.8215vw;
        cursor: pointer;
    }
    .restablecer {
        top: 27vw;
        font-size: 2vw;
        width: 15.643vw;
        padding: 1vw 0vw;
        margin-left: -7.8215vw;
        cursor: pointer;
    }
    .accept {
        font-size: 2vw;
        width: 15.643vw;
        padding: 1vw 0vw;
        cursor: pointer;
        position: relative;
        top: 2vw;
        right: 0vw;
        left: unset;
        margin-left: unset;
        float: right;
        z-index: 1;
    }
    .sendcode {
        top: 24vw;
        font-size: 2vw;
        width: 15.643vw;
        padding: 1vw 0vw;
        margin-left: -7.8215vw;
        cursor: pointer;
    }
    .gamebtn {
        top: 25vw;
        font-size: 2vw;
        width: 15.643vw;
        padding: 0.9vw 0vw;
        margin-left: -7.5vw;
        cursor: pointer;
    }
    .reg-text {
        position: relative;
        display: inline-block;
        margin-bottom: 50vw;
        top: 15.87vw;
        width: 21.7vw;
        margin-left: -11.9vw;
        border-radius: 1.4vw;
        font-size: 1.1vw;
        padding: 1vw 1vw;
    }
    .regdo-content {
        background-image: url(../images/dsk/regdo-bg.png);
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-position: top center;
        position: relative;
        height: 100vh;
        width: 100%;
    }
    .reg-felicidades {
        top: 17.4vw;
        width: 29.05vw;
        margin-left: -15.525vw;
        border-radius: 1.4vw;
        font-size: 2.1vw;
        padding: 1vw;
    }
    .reg-felicidades span {
        font-size: 2.735vw;
        margin-bottom: 0.7vw;
    }
    .reg-recuerda {
        top: 26.9vw;
        width: 27.05vw;
        margin-left: -15.525vw;
        border-radius: 1.4vw;
        font-size: 1.08vw;
        padding: 1vw 2vw;
    }
    .jugar {
        top: 34vw;
        font-size: 1.87vw;
        border-radius: 4vw;
        width: 11.3vw;
        padding: 0.3vw 0vw;
        margin-left: -5.65vw;
        cursor: pointer;
    }
    #game {
        position: absolute;
        width: 110vh;
        left: 50%;
        margin-left: -55vh;
        top: 17vw;
        height: 50.88vh;
    }
    .popup-content {
        background-image: url(../images/dsk/popup-bg.png);
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-position: top center;
        position: relative;
        height: 100vh;
        width: 100%;
    }
    .bases-content {
        background-color: #000;
        position: relative;
        height: 100vh;
        width: 100%;
    }
    .bases-content .title {
        background-color: #ff0000;
        font-family: "NewsGothicBold";
        font-size: 1.4vw;
        color: #fff;
        position: absolute;
        top: 10vw;
        padding: 1vw 2vw;
        border-radius: 1vw;
        width: 20vw;
        text-align: center;
        left: 50%;
        margin-left: -12vw;
    }
    .bases-content .subtitle {
        font-family: "NewsGothicBold";
        font-size: 1.2vw;
        font-weight: 200;
        color: #fff;
        position: relative;
        top: 0vw;
        width: 100%;
        display: block;
        text-align: center;
        margin-bottom: 0.5vw;
    }
    .bases-content p {
        font-family: "NewsGothicBold";
        font-size: 1.2vw;
        color: #fff;
        position: relative;
        width: 100%;
        text-align: left;
    }
    .bases-text {
        position: absolute;
        top: 17vw;
        left: 50%;
        width: 60vw;
        margin-left: -30vw;
    }
    .help-bg {
        display: none;
    }

    .help-dsk-bg {
        display: inline;
        position: absolute;
        top: 18vw;
        width: 47.35vw;
        left: 50%;
        margin-left: -23.675vw;
    }
    .text-title {
        position: absolute;
        top: 25.3vw;
        width: 35vw;
        left: 50%;
        color: #fff;
        margin-left: -17.5vw;
        font-family: "BrochaRegular";
        font-size: 1.5vw;
        text-align: center;
    }
    .text-1 {
        position: absolute;
        top: 32.5vw;
        width: 32vw;
        left: 50%;
        color: #000;
        margin-left: -13vw;
        font-family: "BrochaRegular";
        font-size: 1.4vw;
    }
    .text-2 {
        position: absolute;
        top: 32.5vw;
        width: 32vw;
        left: 50%;
        color: #000;
        margin-left: -13vw;
        font-family: "BrochaRegular";
        font-size: 1.4vw;
        display: none;
    }
    .text-num {
        position: absolute;
        top: 32vw;
        width: 3.2vw;
        height: 3.2vw;
        left: 50%;
        margin-left: -20vw;
        font-family: "BrochaBold";
        font-size: 2.4vw;
        line-height: 3.2vw;
        text-align: center;
        color: #fff;
        background-color: #f08217;
        border-radius: 50%;
    }
    .bullet-1 {
        position: absolute;
        top: 40vw;
        left: 50%;
        margin-left: -1.3vw;
        width: 2vw;
        cursor: pointer;
    }
    .bullet-2 {
        position: absolute;
        top: 40vw;
        left: 50%;
        margin-left: 1.3vw;
        width: 2vw;
        cursor: pointer;
    }
    .boost-1 {
        display: none;
    }
    .boost-dsk-1 {
        display: inline;
        position: absolute;
        top: 17vw;
        width: 37.14vw;
        left: 50%;
        margin-left: -18.57vw;
    }
    .help-popup-close {
        top: 19.5vw;
        left: 71.4vw;
        width: 3.23vw;
    }
    .boost-popup-close {
        position: absolute;
        z-index: 1;
        cursor: pointer;
        top: 19vw;
        left: 65.5vw;
        width: 3.23vw;
    }
    .boost-participar {
        top: 42.2vw;
        width: 17.188vw;
        margin-left: -8.594vw;
    }
    .error-msg {
        top: 39vw;
        font-size: 1.1vw;
    }
    .reg-content .error-msg {
        top: 34.5vw;
        font-size: 1.1vw;
        position: absolute;
    }
    .input-codigo .error-msg {
        text-align: left;
        top: 6.4vw;
        font-size: 0.7vw;
        margin-left: 0.5vw;
    }
    .lnkgame {
        top: 5vw;
        width: 40vw;
        margin-left: -20vw;
        font-size: 2.2vw;
        position: relative;
        display: block;
        text-shadow: 0px 0.2vw 0.3vw #292929;
    }
    .lnkreg {
        top: 36.6vw;
        width: 40vw;
        margin-left: -20vw;
        font-size: 1.1vw;
    }
    .lnkrec {
        top: 35vw;
        width: 40vw;
        margin-left: -20vw;
        font-size: 1.1vw;
    }
    .reg-question-container {
        top: 21.2vw;
        font-size: 1vw;
        border-radius: 1.2vw;
        padding: 0vw 0vw 1vw 0vw;
        width: 24vw;
        margin-left: -12vw;
    }
    .reg-question {
        line-height: 1.3vw;
        padding: 1vw 0vw;
        border-radius: 1.2vw;
        box-shadow: 0vw 0.1vw 0.1vw #d9d9d9;
    }
    .reg-question-container textarea {
        margin: 0.5vw;
        width: 94%;
        font-size: 1.2vw;
    }
    .reg-question-container .chars {
        right: 1vw;
        bottom: 0.4vw;
    }
    .input-required {
        border: solid 0.155vw #000 !important;
    }
    .game-bg-play {
        position: absolute;
        top: 19vh;
        left: 50%;
        width: 60.73vw;
        margin-left: -30.365vw;
    }
    .gameiframe {
        position: absolute;
        width: 102.5vh;
        margin-left: -40.5vh;
        height: 51.1vh;
        background-color: #000;
        z-index: 9;
        top: 25vh;
        left: 50%;
        border-radius: 1vw;
        border: solid 0.4vw #fff;
        overflow: hidden;
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    .gameiframe iframe {
        width: 1024px;
        height: 585px;
        border: none;
        left: 0vw;
    }
    .game-logo {
        display: none;
    }
    .code-text {
        position: absolute;
        font-family: "NewsGothicBold";
        color: #fff;
        font-size: 2.6vw;
        width: 40vw;
        display: block;
        text-align: center;
        left: 50%;
        top: 16.5vw;
        margin-left: -20vw;
        display: none;
    }
    .gamebtn-bottom {
        top: 32vw;
        font-size: 2vw;
        padding: 1vw 5vw;
        width: auto;
        margin-left: 14vw;
    }
.codigo-st {
       position: absolute;
       display: none;
       width: 50vw;
       top: 12vw;
       left: 50%;
       margin-left: -25vw;
   }
}
@media (max-width: 1670px) {
    .carousel-premios {
        top: 43vh;
    }
    .carousel-premios .content-buttons-carousel .buttons-carousel .button-carousel {
        height: 21px;
        width: 21px;
    }

    .carousel-chappas {
        top: 510px;
    }
    .carousel-chappas .chappas .box {
        grid-row-gap: 30px;
        grid-column-gap: 30px;
        height: 550px;
    }
    .carousel-chappas .chappas .chappa img {
        height: 140px;
    }
    .carousel-chappas .chappas .chappa .number {
        background-color: #e80404;
        height: 40px;
        width: 40px;
        bottom: -15px;
        right: 5px;
    }
    .carousel-chappas .chappas .chappa .number p {
        font-size: 25px;
    }
    .carousel-chappas .posicion p {
        font-size: 18px;
        top: 10px;
    }
    .carousel-chappas .arrows button img {
        height: 60px;
    }
    .carousel-chappas .arrows .buttons-chappas {
        width: 320px;
        /* background-color: red; */
    }
    .carousel-chappas .arrows .buttons-chappas .button-chappas {
        height: 18px;
        width: 18px;
    }


    .how {
        top: 37.5vh;
    }
    .how .carousel .slide .img-slide {
        height: 380px;
    }
    .how .carousel .slide .text {
        top: -8px;
    }
    .how .carousel .slide .text p {
        font-size: 22.5px;
    }
    .how .content-buttons-carousel {
        position: relative;
        left: -50px;
        top: -50px;
    }
    
    @media (max-width: 1366px) {
   .semana-sep{
    color: #f9fe3b;
    font-size: 1.6em;
    padding: 0.4em;
    font-family: "ShenzhenIndustrialW00Regular";
    }
        .bottom-ranking {
        display: flex;
        flex-direction: row;
        align-items: center;
        position: relative;
        bottom: unset;
        left: 25%;
        width: 60vw;
    }
        .carousel-premios {
            top: 43vh;
        }
        .carousel-premios .content-buttons-carousel .buttons-carousel .button-carousel {
            height: 21px;
            width: 21px;
        }
        
    
        .carousel-chappas {
            top: 510px;
        }
        .carousel-chappas .chappas .box {
            grid-row-gap: 30px;
            grid-column-gap: 30px;
            height: 550px;
        }
        .carousel-chappas .chappas .chappa img {
            height: 140px;
        }
        .carousel-chappas .chappas .chappa .number {
            background-color: #e80404;
            height: 40px;
            width: 40px;
            bottom: -15px;
            right: 5px;
        }
        .carousel-chappas .chappas .chappa .number p {
            font-size: 25px;
        }
        .carousel-chappas .posicion p {
            font-size: 18px;
            top: 10px;
        }
        .carousel-chappas .arrows button img {
            height: 60px;
        }
        .carousel-chappas .arrows .buttons-chappas {
            width: 320px;
            /* background-color: red; */
        }
        .carousel-chappas .arrows .buttons-chappas .button-chappas {
            height: 18px;
            width: 18px;
        }
    
    
        .how {
            top: 37.5vh;
        }
        .how .carousel .slide .img-slide {
            height: 380px;
        }
        .how .carousel .slide .text {
            top: -8px;
        }
        .how .carousel .slide .text p {
            font-size: 22.5px;
        }
        .how .content-buttons-carousel {
            position: relative;
            left: -5px;
            top: -35px;
        }
    }
}

/****/
@media (max-width: 970px) {
    .semana-sep{
    color: #f9fe3b;
    font-size: 1.6em;
    padding: 0.4em;
    font-family: "ShenzhenIndustrialW00Regular";
    }
    .input-codigo {
        top: 880px;
        left: 50%;
        transform: translate(-50%, -50%);
        margin-left: 2vw;
    }
    .input-codigo input {
        width: 400px;
        height: 85px;
    }
    .input-codigo button {
        height: 100px;
        width: 100px;
    }
    .notificacion {
        left: 0;
        width: 100vw;
        border: none;
        border-bottom: 2px solid white;
        border-radius: 0;
    }
    .notificacion .texto {
        left: 0;
    }
    .notificacion .texto p {
        width: 100%;
        padding-left: 20px;
    }
    .notificacion .texto img {
        display: none;
    }
    .notificacion img {
        align-self: center;
    }

    .content-user {
        display: flex;
        top: 20vh;
        left: 0;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
    }
    .carousel-snacks {
        /* top: 1530px; */
        position: relative;
        top: 173vh;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
    }
    .carousel-snacks .button {
        top: 10px;
    }
    .carousel-snacks .button:nth-child(1) {
        left: 145px;
    }
    .carousel-snacks .button:nth-child(3) {
        left: -125px;
    }
    .carousel-snacks .productos img {
        transition: 0.5s all;
    }
    .carousel-snacks .productos::before {
        content: "";
        position: absolute;
        top: 56%;
        left: 51%;
        transform: translate(-50%, -50%);
        height: 240px;
        width: 240px;
        border-radius: 50%;
        border: 8px solid white;
        background-color: #003399;
    }
    .carousel-snacks .productos .secondary {
        opacity: 0;
        z-index: 5;
    }
    .carousel-snacks .productos .primary {
        top: 10px;
        opacity: 1;
        z-index: 6;
    }
    .carousel-snacks .productos .primary:nth-child(1) {
        left: 190px !important;
        margin: 0;
    }
    .carousel-snacks .productos .primary:nth-child(3) {
        left: -175px !important;
        margin: 0;
    }
    .redes {
        border-radius: 35px;
        top: 7vh;
        left: 0;
        height: 9.5vh;
        width: 20vw;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .redes a {
        padding: 5px;
    }	
    .redes a:nth-child(2) {
        display: flex;
    }
    .redes a img {
        height: 2.8vh;
    }
    .carousel-premios {
        top: 900px;
    }
    .carousel-premios .carousel {
        width: 100vw;
    }
    .carousel-premios .carousel .slide .img-slide {
        height: 510px;
    }
    .carousel-premios .carousel .slide .text {
        height: 100px;
        position: relative;
        top: 50px;
    }
    .carousel-premios .carousel .slide .text p {
        font-size: 51px;
    }
    .carousel-premios .content-buttons-carousel {
        position: relative;
        top: 120px;
    }
    .carousel-premios .content-buttons-carousel .buttons-carousel .button-carousel {
        height: 30px;
        width: 30px;
    }

   .carousel-chappas {
        top: 1000px;
    }
    .carousel-chappas .chappas .box {
        grid-row-gap: 55px;
        grid-column-gap: 70px;
        /* margin-right: 25px; */
        height: 900px;
        width: 100vw;
    }
    .carousel-chappas .chappas .chappa {
        height: 260px;
        width: 260px;
    }
    .carousel-chappas .chappas .chappa img {
        height: 260px;
    }
    .carousel-chappas .chappas .chappa .number {
        background-color: #e80404;
        height: 60px;
        width: 60px;
        bottom: 0;
        right: 15px;
    }
    .carousel-chappas .chappas .chappa .number p {
        font-size: 40px;
    }
    .carousel-chappas .posicion p {
        font-size: 40px;
        top: 90px;
    }
    .carousel-chappas .arrows button img {
        height: 120px;
    }
    .carousel-chappas .arrows {
        margin-top: 140px;
    }
    .carousel-chappas .arrows .buttons-chappas {
        width: 650px;
    }
    .carousel-chappas .arrows .buttons-chappas .button-chappas {
        height: 30px;
        width: 30px;
        margin: 0px 12px;
    }


    .how {
        top: 730px;
    }
    .how .carousel {
        width: 100vw;
        height: auto;
    }
    .how .carousel .slide {
        width: 100vw;
    }
    .how .carousel .slide .img-slide {
        height: 490px;
    }
    .how .carousel .slide .text {
        top: 170px;
        width: 955px;
    }
    .how .carousel .slide .text p {
        font-size: 55px;
    }
    .how .content-buttons-carousel {
        left: 5px;
        top: 670px;
    }
    .how .content-buttons-carousel .buttons-carousel .button-carousel {
        height: 50px;
        width: 50px;
        margin: 3px 15px;
    }
     .notificacion .texto p {
    color: white;
    font-family: "ShenzhenIndustrialW00Regular";
    font-size: 17px;
}
}
@media (max-width: 930px) {
    .semana-sep{
    color: #f9fe3b;
    font-size: 1.6em;
    padding: 0.4em;
    font-family: "ShenzhenIndustrialW00Regular";
    }
    .content-user {
        top: 20vh;
    }
    .carousel-snacks {
        top: 165vh;
        left: 50%;
        width: 100%;
    }
    .redes {
        top: 7vh;
    }
    .carousel-premios {
        top: 850px;
    }
    
 .carousel-chappas .chappas .box {
        grid-row-gap: 35px;
        grid-column-gap: 40px;
    }
}
    .notificacion .texto p {
    color: white;
    font-family: "ShenzhenIndustrialW00Regular";
    font-size: 19px;
}
}
@media (max-width: 850px) {
    .semana-sep{
    color: #f9fe3b;
    font-size: 1.6em;
    padding: 0.4em;
    font-family: "ShenzhenIndustrialW00Regular";
    }
    .content-user {
        top: 17vh;
    }
    .carousel-snacks {
        /* top: 1170px; */
        top: 152vh;
        left: 50%;
        width: 100%;
    }
    .redes {
        top: 6vh;
        height: 8vh;
    }
    .carousel-premios {
        top: 780px;
    }
    .carousel-premios .carousel .slide .img-slide {
        height: 450px;
    }
    .notificacion .texto p {
    color: white;
    font-family: "ShenzhenIndustrialW00Regular";
    font-size: 17px;
}
     .carousel-chappas .chappas .box {
        grid-row-gap: 55px;
        grid-column-gap: 35px;
        height: 850px;
        width: 100vw;
        margin: 0 auto;
    }
    .carousel-chappas .chappas .box .chappa {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        height: 200px;
        width: 200px;
        margin: 0 auto;
    }
    .carousel-chappas .chappas .box .chappa img {
        height: 200px;
    }
    .carousel-chappas .chappas .box .chappa .number {
        bottom: -10px;
        right: 10px;
    }
    .carousel-chappas .arrows .buttons-chappas {
        width: 550px;
    }
    .carousel-chappas .arrows .buttons-chappas .button-chappas {
        height: 25px;
        width: 25px;
        margin: 0px 12px;
    }
    
}
@media (max-width: 800px) {
    .semana-sep{
    color: #f9fe3b;
    font-size: 1.6em;
    padding: 0.4em;
    font-family: "ShenzhenIndustrialW00Regular";
    }
    .carousel-snacks {
        /* top: 1090px; */
        top: 142vh;
        left: 50%;
        width: 100%;
    }
    .carousel-premios {
        top: 750px;
    }
    .carousel-premios .carousel .slide .img-slide {
        height: 400px;
    }
    .carousel-premios .content-buttons-carousel {
        top: 80px;
    }

    .how {
        top: 600px;
    }
    .how .carousel .slide .img-slide {
        height: 435px;
    }
    .how .carousel .slide .text {
        top: 130px;
        left: 0;
        width: 760px;
    }
    .how .carousel .slide .text p {
        font-size: 48px;
    }
    .how .content-buttons-carousel {
        left: 0;
        top: 553px;
    }
    .how .content-buttons-carousel .buttons-carousel .button-carousel {
        height: 40px;
        width: 40px;
        margin: 0 12.5px;
    }
   .notificacion .texto p {
    color: white;
    font-family: "ShenzhenIndustrialW00Regular";
    font-size: 17px;
}
.redes{
    height: 6.5vh;
}
.redes a {
    padding: 4px;
}
.redes a:nth-child(2) {
    display: flex;
}
@media (max-width: 768px) {
    .semana-sep{
    color: #f9fe3b;
    font-size: 1.6em;
    padding: 0.4em;
    font-family: "ShenzhenIndustrialW00Regular";
    }
    .notificacion {
        width: 100vw;
    }
    .notificacion img {
        padding: 0 25px;
    }
    .input-codigo {
        top: 700px;
    }
    .input-codigo input {
        height: 70px;
        width: 320px;
    }
    .input-codigo button {
        height: 85px;
        width: 85px;
    }
    .input-codigo button img {
        height: 55px;
    }

    .carousel-snacks {
        top: 0vw;
        left: 50%;
    }
    .redes {
        top: 6vh;
        height: 2.5vh;
        padding: 2vh;
        justify-content: space-between;
    }
    .redes a img {
        height: 22px;
    }
    .redes a:nth-child(2) {
        display: flex;
    } 
    .carousel-premios {
        top: 720px;
    }
    .carousel-premios .carousel .slide .img-slide {
        height: 400px;
    }
    .carousel-premios .content-buttons-carousel {
        top: 60px;
    }

    .carousel-chappas {
        top: 890px;
    }
    .carousel-chappas .chappas .box {
        grid-row-gap: 40px;
        grid-column-gap: 45px;
    }
    .carousel-chappas .chappas .chappa img {
        height: 160px;
    }
    .carousel-chappas .chappas .chappa .number {
        background-color: #e80404;
        height: 60px;
        width: 60px;
        bottom: 0;
        right: 15px;
    }
    .carousel-chappas .chappas .chappa .number p {
        font-size: 40px;
    }
    .carousel-chappas .posicion p {
        font-size: 30px;
        top: 80px;
    }
    .carousel-chappas .arrows button img {
        height: 90px;
    }
    .carousel-chappas .arrows {
        margin-top: 90px;
    }
    .carousel-chappas .arrows .buttons-chappas {
        width: 530px;
    }
    .carousel-chappas .arrows .buttons-chappas .button-chappas {
        height: 25px;
        width: 25px;
        margin: 0px 10px;
    }


    .how {
        top: 580px;
    }
    .how .carousel .slide .img-slide {
        height: 420px;
    }
    .how .carousel .slide .text {
        top: 115px;
        left: 0;
        width: 728px;
    }
    .how .carousel .slide .text p {
        font-size: 45px;
    }
    .how .content-buttons-carousel {
        left: 0;
        top: 527px;
    }
    .how .content-buttons-carousel .buttons-carousel .button-carousel {
        height: 37px;
        width: 37px;
        margin: 0 12.5px;
    }
   .notificacion .texto p {
    color: white;
    font-family: "ShenzhenIndustrialW00Regular";
    font-size: 17px;
}
}
@media (max-width: 700px) {
    .semana-sep{
    color: #f9fe3b;
    font-size: 1.6em;
    padding: 0.4em;
    font-family: "ShenzhenIndustrialW00Regular";
    }
    .content-user {
        top: 15vh;
    }
    .carousel-snacks {
        top: 1080px;
        left: 50%;
        width: 100%;
    }
    .redes {
        top: 6vh;
    }
    .redes a img {
        height: 25px;
    }
    .carousel-premios {
        top: 640px;
    }
    .carousel-premios .carousel .slide .img-slide {
        height: 370px;
    }
     .carousel-chappas .chappas .box .chappa {
        height: 150px;
        width: 150px;
    }
    .carousel-chappas .chappas .box .chappa img {
        height: 150px;
    }
    .carousel-chappas .arrows .buttons-chappas {
        width: 450px;
    }
    .carousel-chappas .arrows .buttons-chappas .button-chappas {
        height: 20px;
        width: 20px;
    }

    .how {
        top: 530px;
    }
    .how .carousel .slide .img-slide {
        height: 380px;
    }
    .how .carousel .slide .text {
        top: 110px;
        left: 0;
        width: 680px;
    }
    .how .carousel .slide .text p {
        font-size: 42px;
    }
    .how .content-buttons-carousel {
        left: 0;
        top: 479px;
    }
    .how .content-buttons-carousel .buttons-carousel .button-carousel {
        height: 35px;
        width: 35px;
        margin: 0 11px;
    }
    .notificacion .texto p {
    color: white;
    font-family: "ShenzhenIndustrialW00Regular";
    font-size: 17px;
}
}
/*****/
@media (max-width: 650px) {
    .semana-sep{
    color: #f9fe3b;
    font-size: 1.6em;
    padding: 0.4em;
    font-family: "ShenzhenIndustrialW00Regular";
    }
    .bottom-ranking {
        position: absolute;
        left: 11%;
        top: 1160px;
    }
    .bottom-ranking .img-aviso{
        left: 20px;
        height: 10px;
    }
    .bottom-ranking .text-bottom {
        left: 10px;
    }
    .bottom-ranking .text-bottom .img-estrella {
        height: 35px;
        padding-right: 5px;
    }
    .bottom-ranking .text-bottom .text-ranking .img-info {
        height: 40px;
        width: 270px;
    }
    .bottom-ranking .text-bottom .text-ranking .img-rank {
        height: 10px;
    }
    .content-user {
        top: 13vh;
    }
    .carousel-snacks {
        top: 1020px;
        left: 50%;
    }
    .carousel-snacks .button {
        top: 8px;
    }
    .carousel-snacks .button img {
        height: 40px;
    }
    .carousel-snacks .button:nth-child(1) {
        left: 90px;
    }
    .carousel-snacks .button:nth-child(3) {
        left: -80px;
    }
    .carousel-snacks .productos::before {
        content: "";
        position: absolute;
        top: 56%;
        left: 51%;
        transform: translate(-50%, -50%);
        height: 130px;
        width: 130px;
        border-radius: 50%;
        border: 8px solid white;
        background-color: blue;
    }
    .carousel-snacks .productos .primary,
    .carousel-snacks .productos .secondary {
        height: 140px;
    }
    .carousel-snacks .productos .secondary {
        transition: 0.5s all;
        opacity: 0;
        z-index: 5;
    }
    .carousel-snacks .productos .primary {
        opacity: 1;
        z-index: 6;
    }
    .carousel-snacks .productos .primary:nth-child(1) {
        left: 120px !important;
    }

    .carousel-snacks .productos .primary:nth-child(3) {
        left: -115px !important;
        margin: 0;
    }
    .redes {
        top: 6vh;
        height: 2.5vh;
        padding: 2vh;
        justify-content: space-between;
    }
    .redes a img {
        height: 20px;
    }
    .redes a:nth-child(2) {
        display: flex;
    } 

    .carousel-premios {
        top: 600px;
    }
    .carousel-premios .carousel .slide .img-slide {
        height: 340px;
    }

    .carousel-chappas {
        top: 750px;
    }
    .carousel-chappas .chappas .box {
        grid-row-gap: 25px;
        grid-column-gap: 35px;
    }
    .carousel-chappas .chappas .chappa img {
        height: 180px;
    }
    .carousel-chappas .chappas .chappa .number {
        background-color: #e80404;
        height: 45px;
        width: 45px;
        bottom: 0;
        right: 5px;
    }
    .carousel-chappas .chappas .chappa .number p {
        font-size: 27px;
    }
    .carousel-chappas .posicion p {
        font-size: 27px;
        top: 53px;
    }
    .carousel-chappas .arrows button img {
        height: 80px;
    }
    .carousel-chappas .arrows {
        margin-top: 50px;
    }
    .carousel-chappas .arrows .buttons-chappas {
        width: 420px;
        /* background-color: red; */
    }
    .carousel-chappas .arrows .buttons-chappas .button-chappas {
        height: 20px;
        width: 20px;
    }

    .how {
        top: 500px;
    }
    .how .carousel .slide .img-slide {
        height: 350px;
    }
    .how .carousel .slide .text {
        top: 110px;
        left: 0;
        width: 520px;
    }
    .how .carousel .slide .text p {
        font-size: 38px;
    }
    .how .content-buttons-carousel {
        left: 0;
        top: 435px;
    }
    .how .content-buttons-carousel .buttons-carousel .button-carousel {
        height: 27px;
        width: 27px;
        margin: 3px 12px;
    }
    .notificacion .texto p {
    color: white;
    font-family: "ShenzhenIndustrialW00Regular";
    font-size: 17px;
}
}
@media (max-width: 600px) {
    .semana-sep{
    color: #f9fe3b;
    font-size: 1.6em;
    padding: 0.4em;
    font-family: "ShenzhenIndustrialW00Regular";
    }
     .bottom-ranking {
        top: 1070px;
    }
    .bottom-ranking .img-aviso{
        left: 20px;
        height: 9px;
    }
    .bottom-ranking .text-bottom .text-ranking .img-info {
        height: 35px;
        width: 240px;
    }
    .input-codigo {
        top: 545px;
        margin-left: 3vw;
    }
    .input-codigo input {
        height: 50px;
        width: 250px;
    }
    .input-codigo button {
        height: 65px;
        width: 65px;
    }
    .input-codigo button img {
        height: 40px;
    }
    .carousel-snacks {
        top: 940px;
        left: 50%;
    }
    .redes {
        top: 6vh;
        height: 2.2vh;
        padding: 2vh;
        justify-content: space-between;
    }
    .redes a img {
        height: 18px;
    }
    .redes a:nth-child(2) {
        display: flex;
    } 

    .carousel-premios {
        top: 550px;
    }
    .carousel-premios .carousel .slide .img-slide {
        height: 310px;
    }
    .carousel-premios .carousel .slide .text p {
        font-size: 40px;
    }
    .carousel-premios .content-buttons-carousel {
        top: 20px;
    }

 .carousel-chappas {
        top: 700px;
    }
    .carousel-chappas .chappas .box {
        grid-row-gap: 25px;
        grid-column-gap: 35px;
    }
    .carousel-chappas .chappas .chappa img {
        height: 165px;
    }
    .carousel-chappas .chappas .chappa .number {
        background-color: #e80404;
        height: 35px;
        width: 35px;
        bottom: 0;
        right: 5px;
    }
    .carousel-chappas .chappas .chappa .number p {
        font-size: 21px;
    }
    .carousel-chappas .posicion p {
        font-size: 23px;
        top: 37px;
    }
    .carousel-chappas .arrows button img {
        height: 60px;
    }
    .carousel-chappas .arrows {
        margin-top: 40px;
    }
    .carousel-chappas .arrows .buttons-chappas {
        width: 450px;
    }
    .carousel-chappas .arrows .buttons-chappas .button-chappas {
        height: 18px;
        width: 18px;
    }
    .how {
        top: 470px;
    }
    .how .carousel .slide .img-slide {
        height: 310px;
    }
    .how .carousel .slide .text {
        top: 80px;
        left: 0;
        width: 580px;
    }
    .how .carousel .slide .text p {
        font-size: 35px;
    }
    .how .content-buttons-carousel {
        left: 0;
        top: 395px;
    }
    .how .content-buttons-carousel .buttons-carousel .button-carousel {
        height: 27px;
        width: 27px;
        margin: 3px 10px;
    }
    .notificacion .texto p {
    color: white;
    font-family: "ShenzhenIndustrialW00Regular";
    font-size: 17px;
}
}
@media (max-width: 550px) {
    .semana-sep{
    color: #f9fe3b;
    font-size: 1.6em;
    padding: 0.4em;
    font-family: "ShenzhenIndustrialW00Regular";
    }
     .bottom-ranking {
        top: 980px;
    }
    .bottom-ranking .btn img {
        height: 40px;
    }
    .bottom-ranking .text-bottom .text-ranking .img-info {
        height: 32px;
        width: 230px;
    }
    .content-user {
        top: 12vh;
    }
    .carousel-snacks {
        top: 850px;
        left: 50%;
    }
    .carousel-snacks .button:nth-child(1) {
        left: 110px;
    }
    .carousel-snacks .button:nth-child(3) {
        left: -97px;
    }
    .redes {
        top: 6vh;
        height: 1.5vh;
        padding: 2vh;
        justify-content: space-between;
    }
    .redes a img {
        height: 16px;
    }
    .redes a:nth-child(2) {
        display: flex;
    }

    .carousel-premios {
        top: 510px;
        height: 550px;
    }
    .carousel-premios .carousel .slide .img-slide {
        height: 290px;
    }
    .carousel-premios .carousel .slide .text {
        top: 0px;
    }
    .carousel-premios .carousel .slide .text p {
        font-size: 35px;
    }
    .carousel-premios .content-buttons-carousel {
        top: 0px;
    }
    .carousel-premios .content-buttons-carousel .buttons-carousel .button-carousel {
        height: 25px;
        width: 25px;
    }

     .carousel-chappas {
        top: 635px;
    }
    .carousel-chappas .chappas .box {
        grid-row-gap: 25px;
        grid-column-gap: 35px;
        height: 550px;
    }
    .carousel-chappas .chappas .chappa img {
        height: 150px;
    }
    .carousel-chappas .chappas .chappa .number {
        background-color: #e80404;
        height: 35px;
        width: 35px;
        bottom: 0;
        right: 5px;
    }
    .carousel-chappas .chappas .chappa .number p {
        font-size: 21px;
    }
    .carousel-chappas .posicion p {
        font-size: 21px;
        top: 45px;
    }
    .carousel-chappas .arrows {
        margin-top: 40px;
    }
    .carousel-chappas .arrows .buttons-chappas {
        width: 360px;
        /* background-color: red; */
    }
    .carousel-chappas .arrows .buttons-chappas .button-chappas {
        height: 17px;
        width: 17px;
        margin: 3px 6px;
    }
    .how {
        top: 400px;
    }
    .how .carousel .slide .img-slide {
        height: 290px;
    }
    .how .carousel .slide .text {
        top: 70px;
        left: 0;
        width: 520px;
    }
    .how .carousel .slide .text p {
        font-size: 32px;
    }
    .how .content-buttons-carousel {
        left: 0;
        top: 390px;
    }
    .how .content-buttons-carousel .buttons-carousel .button-carousel {
        height: 27px;
        width: 27px;
        margin: 3px 7px;
    }
   .notificacion .texto p {
    color: white;
    font-family: "ShenzhenIndustrialW00Regular";
    font-size: 17px;
}
}
@media (max-width: 520px) {
    .semana-sep{
    color: #f9fe3b;
    font-size: 1.6em;
    padding: 0.4em;
    font-family: "ShenzhenIndustrialW00Regular";
    }
    .bottom-ranking {
        top: 930px;
    }
    .bottom-ranking .btn img {
        height: 35px;
    }
    .bottom-ranking .text-bottom .text-ranking .img-info {
        height: 35px;
        width: 230px;
    }
    .notificacion p {
        font-size: 19px;
    }

    .input-codigo {
        top: 475px;
        margin-left: 3vw;
    }
    .input-codigo input {
        height: 40px;
        width: 210px;
    }
    .input-codigo button {
        height: 55px;
        width: 55px;
    }
    .input-codigo button img {
        height: 30px;
    }

    .carousel-snacks {
        top: 800px;
        left: 50%;
    }

    .carousel-premios {
        top: 490px;
    }
    .carousel-premios .carousel .slide .img-slide {
        height: 270px;
    }
    .carousel-premios .carousel .slide .text {
        top: 10px;
    }
    .carousel-premios .content-buttons-carousel {
        top: 0px;
    }

   .carousel-chappas {
        top: 605px;
    }
    .carousel-chappas .chappas .box .chappa {
        height: 125px;
        width: 125px;
    }
    .carousel-chappas .chappas .box .chappa img {
        height: 125px;
    }
    .carousel-chappas .chappas .chappa .number p {
        font-size: 21px;
    }
    .carousel-chappas .posicion p {
        font-size: 21px;
        top: 40px;
    }
    .carousel-chappas .arrows button img {
        height: 50px;
    }
    .carousel-chappas .arrows {
        margin-top: 30px;
    }
    .carousel-chappas .arrows .buttons-chappas {
        width: 330px;
        /* background-color: red; */
    }
    .carousel-chappas .arrows .buttons-chappas .button-chappas {
        height: 15px;
        width: 15px;
    }

    .how {
        top: 380px;
    }
    .how .carousel .slide .img-slide {
        height: 280px;
    }
    .how .carousel .slide .text {
        top: 70px;
        left: 0;
        width: 400px;
    }
    .how .carousel .slide .text p {
        font-size: 28px;
    }
    .how .content-buttons-carousel {
        left: 0;
        top: 370px;
    }
    .how .content-buttons-carousel .buttons-carousel .button-carousel {
        height: 27px;
        width: 27px;
        margin: 3px 7px;
    }
}
@media (max-width: 500px) {
    .semana-sep{
    color: #f9fe3b;
    font-size: 1.6em;
    padding: 0.4em;
    font-family: "ShenzhenIndustrialW00Regular";
    }
     .bottom-ranking {
        top: 890px;
    }
    .bottom-ranking .btn img {
        height: 35px;
    }
    .bottom-ranking .text-bottom .text-ranking .img-info {
        height: 35px;
        width: 210px;
    }
    .bottom-ranking .text-bottom .text-ranking .img-rank {
        height: 9px;
    }
    .btn img {
        height: 50px;
    }
    .ranking-item .estrella {
        z-index: 10;
        height: 20px;
        left: 0px;
        top: 0px;
    }
    .ranking-item .name {
        font-size: 20px;
    }
    .ranking-item .num,
    .ranking-item .name {
        top: 0px;
        left: -20px;
    }
    .input-codigo {
        top: 455px;
        margin-left: 4vw;
    }
    .popup-premios .popup {
        width: 350px;
    }
    .popup-premios .popup h2 {
        font-size: 45px;
    }
    .popup-premios .popup p {
        font-size: 25px;
    }
    .popup-premios .popup #disclaimer {
        font-size: 7px;
    }

    .content-user {
        top: 10vh;
    }
    .carousel-snacks {
        top: 830px;
        left: 50%;
        transform: translate(-50%, -75%);
    }
    .carousel-snacks .button {
        top: 5px;
    }
    .carousel-snacks .button img {
        height: 40px;
    }
    .carousel-snacks .button:nth-child(1) {
        left: 140px;
    }
    .carousel-snacks .button:nth-child(3) {
        left: -133px;
    }
    .carousel-snacks .productos {
        width: 100vw;
    }
    .carousel-snacks .productos::before {
        height: 130px;
        width: 130px;
        top: 53%;
    }
    .carousel-snacks .productos img {
        top: 5px;
        transition: 0.5s all;
    }
    .carousel-snacks .productos img:nth-child(1) {
        left: 20px;
    }
    .carousel-snacks .productos img:nth-child(2) {
        transition: 0.5s all;
        top: 10px;
        left: -10px;
    }
    .carousel-snacks .productos img:nth-child(3) {
        left: -70px;
    }
    .carousel-snacks .productos .primary,
    .carousel-snacks .productos .secondary {
        height: 140px;
    }
    .carousel-snacks .productos .secondary {
        transition: 0.5s all;
        opacity: 0;
        z-index: 5;
    }
    .carousel-snacks .productos .primary {
        opacity: 1;
        z-index: 6;
    }
    .redes {
        top: 3.8vh;
        height: 1.3vh;
        padding: 2vh;
        justify-content: space-between;
    }
    .redes a img {
        height: 15px;
    }
    .redes a:nth-child(2) {
        display: flex;
    }

    .carousel-premios {
        top: 480px;
        height: 500px;
    }
    .carousel-premios .carousel .slide .img-slide {
        height: 260px;
        top: 80px;
    }
    .carousel-premios .carousel .slide .text {
        top: 0px;
    }
    .carousel-premios .carousel .slide .text p {
        font-size: 30px;
    }

   .carousel-chappas {
        top: 580px;
    }

    .how {
        top: 370px;
    }
    .how .carousel .slide .img-slide {
        height: 260px;
    }
    .how .carousel .slide .text {
        top: 60px;
        left: 0;
        width: 400px;
    }
    .how .carousel .slide .text p {
        font-size: 28px;
    }
    .how .content-buttons-carousel {
        left: 0;
        top: 350px;
    }
    .how .content-buttons-carousel .buttons-carousel .button-carousel {
        height: 20px;
        width: 20px;
        margin: 3px 7px;
    }
   .notificacion .texto p {
    color: white;
    font-family: "ShenzhenIndustrialW00Regular";
    font-size: 17px;
}
}
@media (max-width: 425px) {
    .semana-sep{
    color: #f9fe3b;
    font-size: 1.6em;
    padding: 0.4em;
    font-family: "ShenzhenIndustrialW00Regular";
    }
    .bottom-ranking {
        top: 760px;
    }
    .bottom-ranking .btn img {
        height: 35px;
    }
    .bottom-ranking .text-bottom {
        left: 5px;
    }
    .bottom-ranking .text-bottom .img-estrella {
        height: 20px;
    }
    .bottom-ranking .text-bottom .text-ranking .img-info {
        height: 30px;
        width: 190px;
    }
    .bottom-ranking .text-bottom .text-ranking .img-rank {
        height: 7px;
    }
    .input-codigo {
        top: 385px;
        margin-left: 5vw;
    }
    .input-codigo input {
        width: 170px;
        height: 35px;
        font-size: 20px;
    }
    .input-codigo button {
        height: 50px;
        width: 50px;
    }
    .input-codigo button img {
        height: 35px;
    }

    .content-user {
        top: 10vh;
    }
    .carousel-snacks {
        position: relative;
        top: 660px;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .carousel-snacks .button {
        top: 10px;
    }
    .carousel-snacks .button img {
        height: 30px;
    }
    .carousel-snacks .button:nth-child(1) {
        left: 120px;
    }
    .carousel-snacks .button:nth-child(3) {
        left: -111px;
    }
    .carousel-snacks .productos .secondary,
    .carousel-snacks .productos .primary {
        height: 120px;
        top: 10px;
    }
    .carousel-snacks .productos::before {
        height: 110px;
        width: 110px;
        top: 56%;
    }
    .carousel-snacks .productos img:nth-child(2) {
        transition: 0.5s all;
    }
    .carousel-snacks .productos .secondary {
        transition: 0.5s all;
        opacity: 0;
        z-index: 5;
    }
    .carousel-snacks .productos .primary {
        opacity: 1;
        z-index: 6;
    }
    .carousel-snacks .productos .primary:nth-child(1) {
        left: 105px !important;
    }
    .carousel-snacks .productos .primary:nth-child(2) {
        left: -2px !important;
    }
    .carousel-snacks .productos .primary:nth-child(3) {
        left: -100px !important;
        margin: 0;
    }
    
    .redes {
        top: 4vh;
        height: 4vh;
        width: 14vh;
        border-radius: 15px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
        padding: 1.5px;
        left: -1vh;
    }
    .redes a {
        padding: 4px 3px;
    }
    .redes a img {
        height: 14px;
    }

     .carousel-chappas {
        top: 500px;
    }
    .carousel-chappas .chappas .box {
        height: 450px;
    }
    .carousel-chappas .chappas .box .chappa {
        height: 100px;
        width: 100px;
    }
    .carousel-chappas .chappas .box .chappa img {
        height: 100px;
    }

    .carousel-chappas .chappas .chappa .number p {
        font-size: 17px;
    }
    .carousel-chappas .posicion p {
        font-size: 17px;
        top: 28px;
    }
    .carousel-chappas .arrows {
        margin-top: 20px;
    }
    .carousel-chappas .arrows .buttons-chappas {
        width: 280px;
    }
    .carousel-chappas .arrows .buttons-chappas .button-chappas {
        height: 12px;
        width: 12px;
        /* background-color: blue; */
    }
    
    .how {
        top: 320px;
    }
    .how .carousel {
        width: 100vw;
        height: auto;
    }
    .how .carousel .slide .img-slide {
        height: 220px;
        top: 40px;
    }
    .how .carousel .slide .text {
        top: 40px;
        left: 0;
        width: 400px;
    }
    .how .carousel .slide .text p {
        font-size: 23px;
    }
    .how .content-buttons-carousel {
        left: 0;
        top: 290px;
    }
    .how .content-buttons-carousel .buttons-carousel .button-carousel {
        height: 20px;
        width: 20px;
        margin: 3px 6px;
    }
    .notificacion .texto p {
    color: white;
    font-family: "ShenzhenIndustrialW00Regular";
    font-size: 17px;
}
}
@media (max-width: 405px) {
    .semana-sep{
    color: #f9fe3b;
    font-size: 1.6em;
    padding: 0.4em;
    font-family: "ShenzhenIndustrialW00Regular";
    }
     .bottom-ranking {
        top: 725px;
    }
    .bottom-ranking .btn img {
        height: 30px;
    }
    .bottom-ranking .text-bottom {
        left: 5px;
    }
    .bottom-ranking .text-bottom .img-estrella {
        height: 20px;
    }
    .bottom-ranking .text-bottom .text-ranking .img-info {
        height: 30px;
        width: 180px;
    }
    .bottom-ranking .text-bottom .text-ranking .img-rank {
        height: 7px;
    }
    .ranking-item .estrella {
        height: 18px;
        left: -0px;
        top: 3px;
    }
    .ranking-item .name {
        font-size: 15px;
    }
    .ranking-item .num,
    .ranking-item .name {
        top: 0px;
        left: -15px;
    }
    .input-codigo {
        top: 365px;
    }
    .carousel-snacks {
        top: 630px;
    }
}
@media (max-width: 400px) {
    .semana-sep{
    color: #f9fe3b;
    font-size: 1.6em;
    padding: 0.4em;
    font-family: "ShenzhenIndustrialW00Regular";
    }
     .bottom-ranking {
        top: 725px;
    }
    .bottom-ranking .btn img {
        height: auto;
        width: 20vw;
    }
    .bottom-ranking .img-aviso{
        left: 20px;
        height: 7px;
    }
    .bottom-ranking .text-bottom {
        left: 5px;
    }
    .bottom-ranking .text-bottom .img-estrella {
        height: auto;
        width: 7vw;
    }
    .bottom-ranking .text-bottom .text-ranking .img-info {
        height: auto;
        width: 50vw;
    }
    .bottom-ranking .text-bottom .text-ranking .img-rank {
        height: auto;
        width: 50vw;
    }
    .input-codigo {
        top: 365px;
        margin-left: 5vw;
    }
    .input-codigo input {
        width: 160px;
        height: 30px;
    }
    .input-codigo button {
        height: 45px;
        width: 45px;
    }
    .input-codigo button img {
        height: 35px;
    }

    .content-user {
        top: 10vh;
    }
    .carousel-snacks {
        position: relative;
        top: 0vw;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .carousel-snacks .button:nth-child(1) {
        left: 103px;
    }
    .carousel-snacks .button:nth-child(3) {
        left: -95px;
    }

    .carousel-premios {
        top: 400px;
        height: 400px;
    }
    .carousel-premios .carousel .slide .img-slide {
        height: 220px;
    }
    .carousel-premios .carousel .slide .text p {
        font-size: 25px;
    }
    .carousel-premios .content-buttons-carousel {
        top: 10px;
    }

     .carousel-chappas {
        top: 465px;
    }
    .carousel-chappas .chappas .box{
        height: 400px;
    }
    .carousel-chappas .chappas .box .chappa {
        height: 105px;
        width: 105px;
    }
    .carousel-chappas .chappas .box .chappa img {
        height: 105px;
    }
    .carousel-chappas .chappas .chappa .number {
        background-color: #e80404;
        height: 25px;
        width: 25px;
        bottom: 0;
        right: 5px;
    }
    .carousel-chappas .chappas .chappa .number p {
        font-size: 17px;
    }
    .carousel-chappas .posicion p {
        font-size: 16px;
        /* color: blue; */
        top: 37px;
    }
    .carousel-chappas .arrows button img {
        height: 45px;
    }
    .carousel-chappas .arrows {
        margin-top: 20px;
    }
    .carousel-chappas .arrows .buttons-chappas {
        width: 280px;
    }
    .carousel-chappas .arrows .buttons-chappas .button-chappas {
        height: 13px;
        width: 13px;
        /* background-color: blue; */
    }

    .how {
        top: 310px;
    }
    .how .carousel .slide .img-slide {
        height: 200px;
    }
    .how .carousel .slide .text {
        top: 45px;
        left: 0;
        width: 380px;
    }
    .how .carousel .slide .text p {
        font-size: 25px;
    }
    .how .content-buttons-carousel {
        left: 0;
        top: 265px;
    }
    .how .content-buttons-carousel .buttons-carousel .button-carousel {
        height: 20px;
        width: 20px;
        margin: 3px 6px;
    }
   .notificacion .texto p {
    color: white;
    font-family: "ShenzhenIndustrialW00Regular";
    font-size: 17px;
}
}
@media (max-width: 375px) {
    .semana-sep{
    color: #f9fe3b;
    font-size: 1.6em;
    padding: 0.4em;
    font-family: "ShenzhenIndustrialW00Regular";
    }
      .bottom-ranking {
        top: 680px;
    }
    .bottom-ranking .btn img {
        height: auto;
        width: 20vw;
    }
    .bottom-ranking .img-aviso{
        left: 20px;
        height: 6.5px;
    }
    .bottom-ranking .text-bottom {
        left: 5px;
    }
    .bottom-ranking .text-bottom .img-estrella {
        height: auto;
        width: 7vw;
    }
    .bottom-ranking .text-bottom .text-ranking .img-info {
        height: auto;
        width: 54vw;
    }

    .input-codigo {
        top: 340px;
    }
    .input-codigo input {
        width: 150px;
        height: 30px;
        font-size: 17px;
    }
    .input-codigo button img {
        height: 30px;
    }

    .carousel-snacks {
        position: relative;
        top: 0vw;
        left: 50%;
        z-index: 9;
    }
    .carousel-snacks .button {
        top: 10px;
    }
    .carousel-snacks .button:nth-child(1) {
        left: 100px;
    }
    .carousel-snacks .button:nth-child(3) {
        left: -95px;
    }
    .carousel-snacks .productos::before {
        height: 90px;
        width: 90px;
        top: 56%;
        border: 5px solid white;
    }
    .carousel-snacks .productos .secondary,
    .carousel-snacks .productos .primary {
        height: 100px;
    }
    .carousel-snacks .productos .secondary {
        transition: 0.5s all;
        opacity: 0;
        z-index: 5;
    }
    .carousel-snacks .productos .primary {
        opacity: 1;
        z-index: 6;
    }
    .carousel-snacks .productos .primary:nth-child(1) {
        left: 85px !important;
    }
    .carousel-snacks .productos .primary:nth-child(2) {
        left: -3px !important;
    }
    .carousel-snacks .productos .primary:nth-child(3) {
        left: -80px !important;
    }

    .carousel-premios {
        top: 370px;
        height: 350px;
    }
    .carousel-premios .carousel .slide .img-slide {
        height: 300px;
    }
    .carousel-premios .carousel .slide .text p {
        font-size: 22px;
    }
    .carousel-premios .content-buttons-carousel {
        top: 10px;
    }

      .carousel-chappas {
        top: 445px;
    }
    .carousel-chappas .chappas .box {
        grid-row-gap: 20px;
        grid-column-gap: 30px;
    }
    .carousel-chappas .chappas .box .chappa{
        height: 97px;
        width: 97px;
    }
    .carousel-chappas .chappas .box .chappa img {
        height: 97px;
    }
    .carousel-chappas .chappas .chappa .number p {
        font-size: 17px;
    }
    .carousel-chappas .posicion p {
        font-size: 16px;
        top: 30px;
    }
    .carousel-chappas .arrows {
        margin-top: 15px;
    }
    .carousel-chappas .arrows .buttons-chappas {
        width: 240px;
    }
    .carousel-chappas .arrows .buttons-chappas .button-chappas {
        height: 12px;
        width: 12px;
        margin: 3px 4px;
    }

    .how {
        top: 300px;
        left: 50%;
    }
    .how .carousel {
        width: 100vw;
    }
    .how .carousel .slide .img-slide {
        height: 190px;
    }
    .how .carousel .slide .text {
        top: 30px;
        left: 0;
        width: 350px;
    }
    .how .carousel .slide .text p {
        font-size: 22px;
    }
    .how .content-buttons-carousel {
        left: 0;
        top: 240px;
    }
    .how .content-buttons-carousel .buttons-carousel .button-carousel {
        height: 20px;
        width: 20px;
        margin: 3px 6px;
    }
    .notificacion .texto p {
    color: white;
    font-family: "ShenzhenIndustrialW00Regular";
    font-size: 17px;
}
.redes {
    top: 4vh;
    height: 4vh;
    width: 16vh;
    border-radius: 15px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    padding: 1.5px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    left: -1vh;
}
.redes a {
    padding: 4px 3px;
}
.redes a img {
    height: 14px;
}
