@import url(menu.css);
@import url(registro.css);
@import url(picks-table.css);
@import url(posiciones.css);
@import url(duelo.css);
@import url(products.css);
@import url(contact.css);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  min-height: 100vh; /* Footer stays on bottom */
  display: flex; /* Footer stays on bottom */
  flex-direction: column; /* Footer stays on bottom */
}

header {
  width: 100%;
  height: 120px; /* Logo height: 50px */
  background: #ffffff;
  color: #000000;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

header img {
  float: left;
  margin-top: 8px;
}

.contenedor {
  width: 97%;
  margin: auto;
}

header .contenedor {
  display: table;
}

main {
  margin-top: 145px;
}

select {
  padding: 10px;
  text-align: center;
  background-color: #dedede;
  border-color: #000000;
  min-width: 20%;
  font-size: 16px;
  margin-bottom: 30px;
}

.txt {
  width: 65%;
  line-height: 175%;
  margin: auto;
  margin-top: 30px;
  text-align: center;
}



.button {
  border: none;
  color: #000000;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-top: 15px;
  background-color: #3ec1c2;
  min-width: 20%;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 25px;
}

.button a {
  color: #000000;
  text-decoration: none;
}

footer {
    margin-top: auto;
    width: 100%;
    /*background-color: #122335;*/
    color: #000000;
    text-align: center;
    /*padding: 20px 0;*/
    /*font-size: 14px;*/
}

footer a {
  text-decoration: none;
}


.inicio {
  background-color: #3ec1c2;
  padding: 15px 0;
  font-size: 14px;
  color: #000000;
}

.inicio:hover {
  background-color: #2ed1d2;
}

.history {
  width: 65%;
  line-height: 250%;
  margin: auto;
  margin-top: 25px;
  text-align: justify;
}

.footer {
  background-color: #2ed1d2;
  padding: 15px 0;
  font-size: 14px;
}

.break {
  margin-top: 20px;
  line-height: 1.6;
}

.break a {
  color: #122335;
  text-decoration: none;
}

.responsive {
  max-width: 100%;
  height: auto;
}

.contenedor-404 {
  width: 97%;
  margin: auto;
  text-align: center;
}

.historia h1 {
  text-align: center;
  margin-bottom: 25px;
}

.historia {
  line-height: 175%;
  width: 75%;
  margin: auto;
}

.contacto h1 {
  text-align: center;
  margin-bottom: 25px;
}

.contacto {
  width: 90%;
  margin: auto;
  text-align: justify;
  line-height: 175%;
}

.contacto iframe {
  margin-bottom: 25px;
}

.no-dec {
  text-decoration: none;
}


/* Mobile Version */
@media (max-width:1024px) {
  select {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .button-registro {
    width: 100%;
  }
}
/* Mobile Version */



/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
