/* Variables */
/* Font */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap");
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #363636;
  color: white; }

/* Versiones Desktop/Mobile */
#Desktop {
  display: block; }

#Mobile {
  display: none; }

@media only screen and (max-width: 600px) {
  #Desktop {
    display: none; }

  #Mobile {
    display: block; } }
/* header */
header {
  width: 100%;
  background-color: #2B2B2B;
  display: flex;
  justify-content: center;
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
  z-index: 1;
  /*Sombra*/
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.7); }
  header div {
    width: 100px; }
    header div img {
      width: 100%; }

/* Contenedero | Box */
#contenedor {
  width: 100%;
  background-color: #363636;
  display: flex;
  justify-content: center; }
  #contenedor #box {
    width: 80%;
    margin-top: 30px;
    margin-bottom: 30px;
    background-color: #404040;
    /* Sombras */
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.7);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.7);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.7);
    /* Bordes redondos */
    border-radius: 25px 25px 25px 25px;
    -moz-border-radius: 25px 25px 25px 25px;
    -webkit-border-radius: 25px 25px 25px 25px;
    border: 0px solid #000000; }
    #contenedor #box #img-cont {
      width: 100%; }
      #contenedor #box #img-cont img {
        width: 100%;
        /* Bordes Redondos */
        border-radius: 25px 25px 0px 0px;
        -moz-border-radius: 25px 25px 0px 0px;
        -webkit-border-radius: 25px 25px 0px 0px;
        border: 0px solid #000000; }
    #contenedor #box #cont-preguntas {
      width: 100%;
      padding: 25px;
      display: flex;
      flex-wrap: wrap;
      text-align: center; }
      #contenedor #box #cont-preguntas h1 {
        width: 100%;
        font-size: 14pt;
        padding-bottom: 10px; }

/* Footer */
footer {
  width: 100%;
  height: 60px;
  background-color: #2B2B2B;
  position: absolute;
  bottom: 0;
  /*Sombra*/
  -webkit-box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.7);
  box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.7); }

.hidden {
  display: none; }

/* boton */
button {
  width: 100%;
  height: 45px;
  margin-top: 10px;
  margin-bottom: 10px;
  background: none;
  border: 3px solid #F2A516;
  color: #F2A516;
  font-weight: 600;
  /* Bordes Redondos */
  border-radius: 10px 10px 10px 10px;
  -moz-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px; }

input:focus,
input.form-control:focus,
button:focus {
  outline: none !important;
  outline-width: 0 !important;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none; }

#cont-puntaje {
  width: 100%;
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  text-align: center; }
  #cont-puntaje h5 {
    width: 100%;
    font-size: 14pt;
    padding-bottom: 10px; }
  #cont-puntaje h1 {
    width: 100%;
    color: #F2A516;
    font-weight: 700;
    font-size: 40pt; }
  #cont-puntaje p {
    width: 100%;
    padding-top: 10px; }
  #cont-puntaje h3 {
    width: 100%;
    text-align: center; }

#marcador {
  width: 100%;
  display: flex;
  justify-content: center;
  /* Bordes redondos */
  border-radius: 15px 15px 0px 0px;
  -moz-border-radius: 15px 15px 0px 0px;
  -webkit-border-radius: 15px 15px 0px 0px;
  border: 0px solid #000000; }
  #marcador #logo-marcador {
    width: 150px;
    padding-top: 15px;
    padding-bottom: 15px; }
    #marcador #logo-marcador img {
      width: 100%; }

input {
  width: 100%;
  height: 45px;
  text-align: center;
  /* Bordes Redondos */
  border-radius: 10px 10px 10px 10px;
  -moz-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px; }

h3 {
  font-size: 22pt;
  margin-top: 15px;
  margin-bottom: 15px; }

.modal-content {
  background-color: #2B2B2B !important; }

.btn-close {
  background-color: white !important; }

#tabla-marcador {
  width: 100%;
  height: 400px;
  overflow: hidden; }
  #tabla-marcador h3 {
    width: 100%;
    text-align: center;
    font-weight: 700;
    color: #F2A516; }
  #tabla-marcador table {
    width: 100%;
    text-align: center; }
    #tabla-marcador table .titulos-tabla {
      font-weight: 700;
      font-size: 14pt;
      padding-bottom: 20px; }
    #tabla-marcador table .color-principal {
      color: #F2A516;
      font-weight: 600; }

/*# sourceMappingURL=TriviaStyles.css.map */
