/* ==========================================================================
Base styles: opinionated defaults
========================================================================== */
html {
  background-color: #0148D8;
  color: #fff;
}

body {
  font-family: "Raleway", sans-serif;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/bg-play-station.jpg);
  background-color: #0148D8 !important;
  min-height: 100vh;
  color: #fff !important;
  position: relative;
  padding-bottom: 30px;
}
body:before {
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border-radius: 30px;
  border: 1px solid #DDEC0E;
  position: absolute;
  content: "";
  left: 15px;
  top: 15px;
  pointer-events: none;
}

h1 {
  font-family: "Raleway", sans-serif;
  font-weight: 900 !important;
  position: relative;
  color: #0148D8;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 40px;
}
h1::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 110%;
  left: 50%;
  top: -15%;
  transform: rotate(-1deg) translate(-50%, 0);
  background-color: #DDEC0E;
  z-index: -1;
}

h2 {
  font-family: "Raleway", sans-serif;
  font-weight: 100;
}

.btn {
  font-family: "Raleway", sans-serif;
}

.btn.btn-primary {
  background-color: #00C1F4;
  color: #fff;
  font-weight: 400;
  border-radius: 100px;
  padding: 10px 50px;
  font-size: 1.5em;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.btn.btn-primary:hover {
  color: #00C1F4;
}

.btn.btn-secondary {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 200;
  border-radius: 100px;
  padding: 10px 50px;
  min-width: 313px;
  font-size: 1.2em;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.btn.btn-secondary:hover {
  background-color: #fff;
  border: 1px solid #0148D8;
  color: #0148D8;
}

.menu-brand {
  position: absolute;
  max-width: 250px;
  left: 42px;
  top: 32px;
  margin-bottom: 15px;
}
.menu-brand img,
.menu-brand svg {
  width: 100%;
}

.info {
  position: absolute;
  width: 90%;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.info-ganador {
  position: absolute;
  width: 100%;
  height: 100%;
  place-content: center;
  display: grid;
  text-align: center;
}
.info-ganador h1 {
  font-size: 3em;
}
.info-ganador h2 {
  font-size: 2.8em;
}

.final > div {
  place-content: center;
  text-align: center;
  min-height: 300px;
}
.final div + div {
  top: 0;
  right: 4%;
}
.final h1::before {
  width: 100%;
}

.ganadores {
  font-family: "Raleway", sans-serif;
  border-radius: 40px;
  border: 1px solid #DDEC0E;
  text-align: center;
  background-color: #0148d8;
  min-height: 200px;
}
.ganadores h3 {
  font-weight: 700;
  background-color: #0148D8;
  padding: 0 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: -20px auto 20px;
}
.ganadores ul {
  padding: 0 20px;
  flex-flow: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  justify-content: space-evenly;
  -moz-column-count: 3;
       column-count: 3;
  text-align: left;
}
.ganadores ul li {
  list-style: none;
  font-size: 1.6em;
  line-height: 1em;
  margin-bottom: 10px;
}

.suplentes {
  max-height: 266px;
}
.suplentes div {
  max-height: 220px;
  overflow-y: auto;
}
.stikers {
  max-width: 150px;
  max-height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  pointer-events: none;
}

.stiker-anim-1 {
  animation-duration: 2s;
  animation-name: zoomin;
  filter: blur(0);
  transform: none;
}

.stiker-anim-2 {
  animation-duration: 6s;
  animation-name: zoomin;
  filter: blur(0);
  transform: none;
}

.stiker-anim-3 {
  animation-duration: 10s;
  animation-name: zoomin;
  filter: blur(0);
  transform: none;
}

@keyframes zoomin {
  0% {
    filter: blur(0.4rem);
    transform: scale3d(350%, 350%, 150%);
    opacity: 0;
  }
  60% {
    filter: blur(0.4rem);
    transform: scale3d(350%, 350%, 150%);
    opacity: 0;
  }
  70% {
    filter: blur(0.4rem);
    transform: scale3d(350%, 350%, 150%);
    opacity: 1;
  }
  100% {
    filter: blur(0);
    transform: scale3d(100%, 100%, 0);
  }
}
footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
footer img {
  -o-object-fit: contain;
     object-fit: contain;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 1600px) {
  .ganadores ul li {
    font-size: 1.7em;
  }
  .suplentes {
    max-height: 466px;
  }
  .suplentes div {
    max-height: 420px;
  }
}
@media only screen and (min-width: 1200px) {
  .stikers {
    max-width: 250px;
    max-height: 250px;
  }
  .info-ganador h1 {
    font-size: 5em;
    max-width: 1200px;
  }
  .info-ganador h2 {
    font-size: 4.8em;
  }
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
  * Don't show links that are fragment identifiers,
  * or use the `javascript:` pseudo protocol
  */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
  * Printing Tables:
  * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
  */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}/*# sourceMappingURL=main.css.map */