@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@400;700&family=Roboto+Condensed&display=swap');

:root {
    --TipoLetraTitulo: 'Roboto Condensed', sans-serif;
    --TipoLetraParrafo: 'Oxygen', sans-serif;
    --ColorFondo: rgb(45, 45, 45); /*gris */
    --ColorCabecera: #17414d; /*azul*/
    --ColorContenedor: rgb(203, 192, 211); /**/
}

/*Para que sea responsive*/
@-ms-viewport {
    width: device-width;
}

*:focus {
    outline: none;
}

* {
    padding: 0px;
    margin: 0px;
}

body {
    margin: 1.5rem;
    min-width: 600px;
    max-width: 1200px;
    min-height: 300px;
    max-height: 100vh;
    justify-content: center;
    color: var(--ColorFondo);
    background: var(--ColorFondo);
}

h1 {
    font-size: 2rem ;
}
h2 {
    font-size: 1.9rem;
    font-family: var(--TipoLetraTitulo);
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--ColorCabecera);
    text-transform: uppercase;
    border-bottom: 1px solid rgb(204, 204, 204);
    width: 70%;
}
h3 {
    font-size: 1.4rem;
}

p, li {
    font-family: var(--TipoLetraParrafo);
    font-size: 1.1rem;
    font-weight: 300;
    padding: 1%;
    line-height: 24px;
    text-align: justify;
}

ul {
    padding: 2%;
    padding-left: 10%;
}

li {
    padding: 0;
}

blockquote {
    padding: 0 2%;
    padding-left: 3%;
    margin: 2% 0 2% 2%;
    border-left: solid 10px var(--ColorCabecera);
    background-color: whitesmoke;
}

a {
    color: #072235;
    font-weight: bold;
    text-decoration: underline;
}

    a:hover {
        text-decoration: none;
    }

.cabecera {
    display:block;
    color: whitesmoke;
    text-align: center;
    width: 75%;
    min-height: 100px;
    padding: 20px;
    margin: 10px  auto;
    background: var(--ColorCabecera);
}

    .cabecera h1 {
        padding-top: 20px;
        font-size:2.5rem!important;
    }

 /*   .cabecera .slogan {
        padding: 1px 10px;
        color: #FFFFFF;
        border-top: 1px solid #FFFFFF;
    }
*/
.contenedor {
    display: block;
    background: #fff;
    width: 75%;
    margin: 5px auto;
    padding: 3.5% 3%;
    font-family: 'Oxygen', sans-serif;
}

 
.contenedorFormulario {
    position: relative;
    left: 8%;
    border-radius: 0.8rem;
    width: 80%;
}

.etiquetaInputs {
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1;
    color: var(--ColorFondo);
}

input[type=text], input[type=Password], input[type=email], input[type=number], textarea {
    box-sizing: border-box;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1;
    vertical-align: baseline;
    color: rgb(102, 102, 102);
    border: 0.0625rem solid rgb(204, 204, 204);
    border-radius: 0.2rem;
    padding: 0.8rem 1rem;
    width: 18.75rem;
}

input[type=number] {
    font-size: 0.8rem;
    line-height: 0.7;
}

.btnBoton {
    background-color: var(--ColorCabecera);
    font-size: 1rem;
    border-radius: 0.3rem;
    transition: all 300ms ease-in-out;
    padding: 0.625rem 1.25rem;
    margin: 10px 10px 10px 60px;
    color: whitesmoke;
    cursor: pointer;
}

    .btnBoton:hover {
        font-size: 1.2rem;
        font-weight: 600;
        box-shadow: 0 0.3rem 1rem 0 rgba(0,0,0,0.24), 0 0.3rem 1.875rem 0 rgba(0,0,0,0.19);
    }
/***********************************Pagina Loteria************************************/
/*texto del radiobutton*/
.radiobuttonLoteriaEtiqueta {
    display: inline-block;
    padding-right: 40px;
    position: relative;
    color: #444;
}
    /*cuadrado al lado del radiobutton*/
    .radiobuttonLoteriaEtiqueta:before {
        content: '';
        position: absolute;
        width: 18px;
        height: 18px;
        border: 3px solid #444;
        left: 0;
        top: -1px;
        bottom: 10px;
        right: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
/*radiobutton ckecked*/
.radiobuttonLoteriaOption:checked + .radiobuttonLoteriaEtiqueta:before {
    content: '✓';
    line-height: 10px;
    text-align: center;
    color: forestgreen;
    transition: all 0.3s ease;
    font-weight: 800;
    font-size: 30px;
}

.radiobuttonLoteriaOption {
    display: none;
}
    /*cuando se deshabilita*/
    .radiobuttonLoteriaOption[disabled] + .radiobuttonLoteriaEtiqueta:before {
        border-color: transparent;
    }

/*tabla*/
.tablaLoteria {
    margin: 5px auto;
}

    .tablaLoteria th { /*cabecera*/
        padding : 12px;
        text-align: center;
        background-color: var(--ColorCabecera);
        color: white;
    }

    .tablaLoteria tr { /*table row*/
        min-height: 50px;
    }

        .tablaLoteria tr:nth-child(even) { /*alternado color de las filas*/
            background-color: whitesmoke;
        }

    .tablaLoteria td {
        padding: 10px;
    }

.btnComoLink {
    background: none!important;
    border: none;
    padding: 0!important;
    font-family: var(--TipoLetraParrafo);
    font-size: 1.3rem;
    font-weight: 700;
     font-style: italic;
    cursor: pointer;
}

/*Mensajes*/
.exito, .error, .informacion { 
width:60%;
position:relative;
display:block;
}
/*verificar si se sigue usando!!*/
    .exito span, .informacion span, .error span {
        font-family: var(--TipoLetraParrafo);
        font-size: 2rem;
        font-weight: 700;
        color: #333333;
    }

.exito {
    background-repeat: no-repeat;
    margin: 20px;
    padding: 20px 20px 20px 50px;
    background-color: white;
    background-image: url('../Imagenes/exito.gif');
    color: #269136;
    border: 1px #269136 dotted;
}

.informacion {
    background-repeat: no-repeat;
    margin: 20px;
    padding: 20px 20px 20px 50px;
    background-color: white;
    background-image: url('../Imagenes/information.gif');
    color: #4564A6;
    border: 1px #4564A6 dotted;
}

.error {
    background-repeat: no-repeat;
    margin: 20px;
    padding: 20px 20px 20px 50px;
    background-color: white;
    background-image: url('../Imagenes/error.gif');
    color: #CC0000;
    border: 1px #800000 dotted;
}

.btnCerrarMensaje{
    position: absolute;
    right: -15px;
    top: -15px;
    padding: 3px 10px;
}
 
/**/
/* basado en: https://codepen.io/jacoboakley/pen/ZpRbqB */
.container {
    display: flex;
    flex-direction: row;
    max-width: 100%;
    margin: 0 auto;
    flex-flow: row wrap;
}

.card {
    width: auto;
    box-shadow: 2px 1px 12px rgba(0, 0, 0, .3);
    border-radius: 3px;
    cursor: pointer;
    transition: all 500ms ease-in-out;
    transform: perspective(600px) rotateY(0deg);
    user-select: none;
    margin: 10px;
    display: flex;
    flex-direction: column;
    flex: 1 1 170px;
    transform-origin: 50% 50%;
    transition: all 500ms ease-in-out;
    transform-style: preserve-3d;
    height: 190px;
    max-width: 133px;
}

.front, .back {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backface-visibility: hidden;
    height: 190px;
    max-width: 133px;
}

.front {
    border: 2px solid black;
}

    .front:hover {
        bottom: 2px;
        left: 2px;
        box-shadow: 0px 0px 20px 1px #000;
    }

.back {
    border: 2px solid black;
    transform: rotateY(180deg);
    width: 100%;
}

    .back:hover {
        bottom: 2px;
        right: 2px;
        box-shadow: 0px 0px 20px 1px #000;
    }


/*Tablas opciones para rondas*/
.divTablaOpcionesRonda {
    width: 45%;
    margin: 5px;
    padding: 0;
    display: inline-block;
}

.titulo {
    font-size: 0.9rem;
    font-weight: 500;
    background-color: var(--ColorCabecera);
    color: white;
}
/*radio button apariencia checkbox2 el otro es loteria*/
.rbSimulaCbx { /*input[type='radio']*/
    appearance: none;  
    border: 1px solid #d3d3d3;
    width: 15px;
    height: 15px;
    content: none;
    outline: none;
    margin: 0;
    background-color: transparent;
    border-radius: 3px;
}

    .rbSimulaCbx:checked {
        appearance: none;  
        outline: none;
        padding: 0;
        content: none;
        border: none;
        background-color: #276FF4;
    }

        .rbSimulaCbx:checked::before {
            position: absolute;
            color: white !important;
            content: "\00A0\2713\00A0" !important;
            border: 1px solid #d3d3d3;
            font-weight: bolder;
            font-size: 10px;
            border-radius: 3px;
        }

 /*menu*/
 .menu {
    text-align: center;
    transition: all 0.3s ease;
}
.menu li {
    list-style: none;
    display: inline-block;
}

.menu li a
 { 
text-decoration:none;
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-left: 20px;
    padding:20px;
    color:white;
    transition: all 0.3s ease;
}
.menu li a:hover{
font-size: 22px;
 font-weight: 800;
}