/********* COLORES */

/* ORO 1 = #D19245
/* ORO 2 = #DCB350
/* ORO 3 = #F1E69C

/* AZUL 1 = #141654
/* AZUL 2 = #2B398B
/* AZUL 3 = #0080BC

/* NARANJA 1 = #E95A24

/********* TIPOGRAFIAS */

/* font-family: "Roboto", sans-serif;
/* font-family: "Rubik", sans-serif;

/********* NAVEGADOR */

.navegador {
    width: 100%;
    height: 60px;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 96;
    background-color: #2B398B;
}

.logo-navegador {
    width: 150px;
    height: 60px;
    position: absolute;
    top: 0;
    left: 10px;
    background-image: url('../img/logo_titulo_blanco.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

.opciones-navegador {
    width: auto;
    height: 60px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    right: 10px;
    display: flex;
}

.boton-opciones-navegador {
    width: auto;
    height: 32px;
    line-height: 32px;
    margin: 14px 5px;
    padding: 0 10px;
    background-color: #DCB350;
    border-radius: 5px;
    font-family: "Rubik", sans-serif;
    font-size: 14px;
    color: #fff;
    text-align: right;
    cursor: pointer;
}

.botonwallet-navegador {
    width: 40px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    margin: 14px 5px;
    background-color: #0080BC;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
}

.icono-opciones-navegador {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    margin: 5px 0;
}

.panel-opciones {
    width: 330px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -340px;
    background: #2B398B;
    z-index: 98;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    transition: 0.6s all ease-out;
    -webkit-transition: 0.6s all ease-out;
}

.panel-opciones.active {
    right: 0;
}

.boton-panel-opciones {
    width: 250px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #DCB350;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Rubik", sans-serif;
    font-size: 14px;
    color: #fff;
    letter-spacing: 2px;
    margin: 10px auto;
}

.red {
    background-color: #dc6050;
}

.seccion-tokens-panel-opciones {
    width: 90%;
    height: auto;
    margin: 10px auto;
    display: flex;
    align-items: flex-end;
    align-content: flex-end;
    justify-content: flex-end;
}

.indicador-tokens-panel-opciones {
    width: auto;
    height: 32px;
    line-height: 32px;
    padding: 0 10px;
    background-color: #DCB350;
    border-radius: 5px;
    font-family: "Rubik", sans-serif;
    font-size: 14px;
    color: #fff;
    text-align: right;
    cursor: pointer;
    margin-right: 10px;
}

.botonwallet-tokens-panel-opciones {
    width: 40px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background-color: #0080BC;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
}

.boton-agregar-tokens-panel-opciones {
    width: 90px;
    height: 32px;
    line-height: 32px;
    background-color: #439943;
    border-radius: 5px;
    font-family: "Rubik", sans-serif;
    font-size: 14px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    margin-right: 10px;
    
    animation-name: boton-comprar;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite; 
    -webkit-animation-name: comprar;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite; 
    -webkit-animation-timing-function: linear;
}

@-webkit-keyframes comprar {
    0% {
        background-color: #439943;
    }

    50% {
        background-color: #3ceb3c;
    }

    100% {
        background-color: #439943;
    }
}

@keyframes comprar {
    0% {
        background-color: #439943;
    }

    50% {
        background-color: #3ceb3c;
    }

    100% {
        background-color: #439943;
    }
}

.separador-secciones-panel-opciones {
    width: 90%;
    height: 1px;
    background-color: #919191;
    margin: 10px auto;
}

.seccion-panel-opciones {
    width: 100%;
    height: auto;
    margin: 5px auto;
    display: flex;
    flex-wrap: wrap;
}

.opcion-panel-opciones {
    width: 90%;
    height: 40px;
    margin: 5px auto;
    background-color: #384ab1;
    border-radius: 5px;
    display: flex;
    cursor: pointer;
    transition: 0.6s all ease-out;
    -webkit-transition: 0.6s all ease-out;
}

.opcion-panel-opciones:hover {
    background-color: #141654;
}

.icono-opcion-panel-opciones {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 16px;
    margin: 5px;
    margin-right: 10px;
    background-color: #495fdf;
    border-radius: 5px;
    color: #ffffff;
}

.texto-opcion-panel-opciones {
    width: calc(100% - 95px);
    height: 40px;
    line-height: 40px;
    font-family: "Rubik", sans-serif;
    font-size: 14px;
    color: #fff;
    text-align: left;
}

.iconoalt-opcion-panel-opciones {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 16px;
    margin: 5px;
    margin-left: 10px;
    border-radius: 5px;
    color: #ffffff;
}

.iconos-panel-opciones {
    width: 90%;
    height: auto;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.icono-panel-opciones {
    margin: 0 5px;
    font-size: 30px;
    color: #fafafa;
}

.botonatras-panel-opiones {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin: 10px auto;
    margin-right: calc(95% - 40px);
    background-color: #DCB350;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 98;
}

/********* SOMBRA */

.sombra {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.75;
    z-index: 97;
    transition: 0.6s all ease-out;
    -webkit-transition: 0.6s all ease-out;
    display: none;
    cursor: pointer;
}

.sombra.active {
    display: block;
}

/********* WALLET */

.wallet {
    width: 320px;
    height: 500px;
    position: fixed;
    top: calc(50% - 200px);
    left: calc(50% - 160px);
    background-color: #fff;
    border-radius: 25px;
    z-index: 99;
    display: none;
}

.active {
    display: block;
}

.header-wallet {
    width: 100%;
    height: 50px;
    line-height: 50px;
    margin: 0 auto;
    background-color: #2B398B;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    color: #fff;
    text-align: center;
}

.seccion-wallet {
    width: 90%;
    height: auto;
    margin: 10px auto;
    padding: 10px 0;
    border-bottom: 1px solid #cecece;
    display: flex;
    flex-wrap: wrap;
}

.titulo-seccion-wallet {
    width: 100%;
    height: 20px;
    line-height: 20px;
    text-align: left;
    margin: 0 auto;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
}

.numero-seccion-wallet {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: left;
    margin: 10px auto;
    font-family: "Anton", sans-serif;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #333333;
}

.subnumero-seccion-wallet {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #2B398B;
    margin-left: 5px;
    letter-spacing: 1px;
}

.contenedores-tickets-wallet {
    width: 100%;
    height: auto;
    margin: 10px auto;
    display: flex;
    align-items: center;
    align-content: space-between;
    justify-content: space-between;
}

.contenedor-tickets-wallet {
    width: 60px;
    height: 80px;
    background-color: #333333;
    border-radius: 5px;
}

.ticketsblue {
    background-color: #316fda;
}

.ticketsgreen {
    background-color: #1da286;
}

.ticketsgold {
    background-color: #d19a32;
}

.ticketsblack {
    background-color: #0d141a;
}

.icono-contenedor-tickets-wallet {
    width: 100%;
    height: 25px;
    line-height: 25px;
    margin: 5px auto;
    font-size: 25px;
    text-align: center;
}

.iconoblue {
    color: #69b2fd;
}

.iconogreen {
    color: #5cfdd5;
}

.iconogold {
    color: #ffe150;
}

.iconoblack {
    color: #455c6f;
}

.titulo-contenedor-tickets-wallet {
    width: 100%;
    height: 15px;
    line-height: 15px;
    text-align: center;
    margin: 5px auto;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.numero-contenedor-tickets-wallet {
    width: 100%;
    height: 15px;
    line-height: 15px;
    text-align: center;
    margin: 5px auto;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.transacciones-wallet {
    width: 100%;
    height: 135px;
    overflow: scroll;
}

.transaccion-wallet {
    width: 100%;
    height: auto;
    margin: 5px auto;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.textos-transaccion-wallet {
    width: calc(100% - 40px);
    height: auto;
    margin: 0 auto;
}

.titulo-transaccion-wallet {
    width: 100%;
    height: 20px;
    line-height: 20px;
    text-align: left;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2B398B;
}

.subtitulo-transaccion-wallet {
    width: 100%;
    height: auto;
    margin: 5px auto;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #5e5e5e;
}

.texto-transaccion-wallet {
    width: 100%;
    height: auto;
    margin: 0 auto;
    font-family: "Roboto", sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: #9c9c9c;
}

.numero-transaccion-wallet {
    width: 40px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #5b5b5b;
    border-radius: 5px;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.compra {
    background-color: #bdf8c0;
    color: #135513;
}