/**************************************
***            VARIABLES             ****
***************************************/
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

@font-face {
  font-family: "Gotham-book";
  src: url("../font_gotham/Gotham-Book.otf");
}
@font-face {
  font-family: "GothamNarrow-Bold";
  src: url("../font_gotham/Gotham-Bold.otf");
}
body {
  font-family: "Gotham-book";
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.font-small {
  font-size: 0.8em;
}

.w5 {
  width: 5%;
}

.w10 {
  width: 10%;
}

.w80 {
  width: 80%;
}

.w50 {
  width: calc(50% - 20px);
  gap: 10px;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

.wauto {
  width: auto;
}

.h100 {
  height: 100%;
}

.minheight100 {
  min-height: 100vh;
}

.relative {
  position: relative;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.container-wrap {
  display: flex;
  flex-wrap: wrap;
}

.container-nowrap {
  display: flex;
  flex-wrap: nowrap;
}

.space-around {
  justify-content: space-around;
}

.space-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.center {
  width: 100%;
  max-width: 1144px;
  margin: 0 auto;
}

.order1 {
  order: 1;
}

.order2 {
  order: 2;
}

.al-ct {
  text-align: center;
}

.al-lf {
  text-align: left;
}

.al-rg {
  text-align: right;
}

.mg5 {
  margin: 5px;
}

.mg10 {
  margin: 10px;
}

.mg20 {
  margin: 20px;
}

.mg-tp40 {
  margin-top: 40px;
}

.mg-tp24 {
  margin-top: 24px;
}

.mg-bt4 {
  margin-bottom: 4px;
}

.mg-bt10 {
  margin-bottom: 10px;
}

.mg-bt24 {
  margin-bottom: 24px;
}

.mg-lt10 {
  margin-left: 10px;
}

.mg-auto {
  margin: 0 auto;
}

.bold {
  font-weight: 700;
}

.hidden {
  display: none;
}

.mostrar {
  display: flex;
}

.overflow {
  overflow: hidden;
}

.main {
  position: relative;
}

/**************************************
***            BOTONES             ****
***************************************/
.btn {
  padding: 10px 24px;
  border-radius: 4px;
  color: #ffffff;
  border: 1px solid #5ab206;
  transition: all 0.2s linear;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  justify-content: center;
}

.btn-verde {
  background-color: #5ab206;
}

.btn-outline {
  background-color: transparent;
}

.btn-outline-verde {
  background-color: transparent;
  color: #5ab206;
}

.btn-rojo {
  background-color: #ff0000;
  border: 1px solid #ff0000;
}

/*************************************
***            titulos            ***
*************************************/
.titulo {
  color: #003e68;
  font-size: 1.8em;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ir-arriba {
  position: fixed;
  bottom: 5px;
  right: 5px;
  background-color: #003e68;
  color: #ffffff;
  padding: 8px;
  border-radius: 2px;
  font-size: 18px;
  cursor: pointer;
  z-index: 20;
}
.ir-arriba:hover {
  box-shadow: 0px 0px 3px #003e68;
}
.ir-arriba:hover .fa-chevron-up {
  font-weight: bold;
}

.rotar10 {
  transform: rotate(10deg);
  transition: all 1s ease;
}

.rotar180 {
  transform: rotate(180deg);
  transition: all 1s ease;
}

.rotar360 {
  transform: rotate(360deg);
  transition: all 1s ease;
}

.btnWhatsapp {
  position: fixed;
  bottom: 55px;
  right: 5px;
  z-index: 20;
  color: #ffffff;
}
.btnWhatsapp .ico-whatsapp {
  background-color: #003e68;
  color: #ffffff;
  text-align: center;
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 50%;
  font-size: 30px;
  line-height: 50px;
  cursor: pointer;
  transition: all 1s ease;
}
.btnWhatsapp .text-whatsapp {
  width: 180px;
  right: 100%;
  position: absolute;
  background-color: #ffffff;
  color: #0a131c;
  border-radius: 4px;
  margin-right: 6px;
  margin-top: 10px;
  padding: 4px;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}
.btnWhatsapp .popup-what {
  display: none;
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 350px;
  margin-bottom: 15px;
  border-radius: 5px 15px;
  overflow: hidden;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}
.btnWhatsapp .popup-what .box1, .btnWhatsapp .popup-what .box2 {
  padding: 30px;
}
.btnWhatsapp .popup-what .box1 {
  background: #003e68;
  margin: 0 auto;
}
.btnWhatsapp .popup-what .box1 .fa-whatsapp {
  font-size: 36px;
}
.btnWhatsapp .popup-what .box1 .box-text span {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
  display: block;
}
.btnWhatsapp .popup-what .box1 .box-text p {
  font-size: 12px;
  line-height: 20px;
}
.btnWhatsapp .popup-what .box2 {
  background: #ffffff;
  color: #003e68;
}
.btnWhatsapp .popup-what .box2 a {
  border-left: 3px solid #003e68;
  display: block;
  padding-left: 5px;
}
.btnWhatsapp .popup-what .box2 a .gris {
  color: #bfbfbf;
  font-size: 12px;
}
.btnWhatsapp .popup-what .box2 a .fa-whatsapp {
  font-size: 28px;
  color: #003e68;
}

hr {
  background-color: #bfbfbf;
  border: none;
  width: 100%;
  height: 1px;
  margin: 12px 0;
}

@media (max-width: 768px) {
  .btnWhatsapp .text-whatsapp {
    display: none;
    opacity: 0;
  }
}
@media (max-width: 1140px) {
  .center {
    padding: 0 20px;
  }
}
@media (max-width: 700px) {
  .center {
    padding: 0 16px;
  }
}
/********************************************
****               HEADER                ****
*********************************************/
.header {
  display: flex;
  height: 67px;
  background: #0a131c;
  z-index: 1100;
  color: #ffffff;
  position: sticky;
  top: 0;
}
.header .box-logo {
  transition: all 0.5s ease;
}
.header .box-logo .img-logo {
  width: 213px;
  height: 39px;
}
.header .navbar {
  transition: all 0.5s ease;
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.header .navbar .list-nav-link {
  display: flex;
  align-items: center;
  position: relative;
}
.header .navbar .list-nav-link .nav-link {
  padding: 22px 17px;
  transition: all 0.5s ease;
  background-color: transparent;
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  height: 67px;
}
.header .navbar .list-nav-link .nav-link:hover {
  background: rgba(0, 0, 0, 0.6);
}
.header .navbar .list-nav-link .nav-link .ico-perfil {
  height: 24px;
}
.header .navbar .list-nav-link .nav-link.active {
  background: rgba(0, 0, 0, 0.6);
}
.header .navbar .list-nav-link .movil {
  display: none;
}
.header .navbar .list-nav-link .sub-perfil {
  flex-direction: column;
  position: absolute;
  top: 90%;
  left: -35%;
  background-color: #ffffff;
  border-radius: 4px;
  padding: 4px 0;
  width: 82px;
}
.header .navbar .list-nav-link .sub-perfil .nav-link {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 20px;
  color: #011027;
  padding: 4px 8px;
  height: auto;
}
.header .navbar .list-nav-link .sub-perfil .nav-link .ico-subperfil {
  width: 12px;
  height: 12px;
  margin-right: 4px;
}
.header .navbar.left0 {
  left: 0;
}

@media (max-width: 1140px) {
  .header .center {
    padding: 0;
  }
  .header .align-items-center {
    justify-content: space-between;
  }
  .header .box-logo, .header .btn-menu {
    padding: 0 16px;
  }
  .header .btn-menu {
    display: block;
    cursor: pointer;
  }
  .header .navbar {
    width: 237px;
    background-color: #0a131c;
    position: absolute;
    top: 67px;
    height: calc(100vh - 67px);
    left: -237px;
    flex-direction: column;
  }
  .header .navbar .list-nav-link {
    flex-direction: column;
  }
  .header .navbar .list-nav-link .hidden {
    display: block;
  }
  .header .navbar .list-nav-link .nav-link {
    width: 100%;
    display: flex;
    align-items: center;
    transition: all 0.5s ease;
  }
  .header .navbar .list-nav-link .nav-link span {
    margin-right: 24px;
  }
  .header .navbar .list-nav-link .nav-link .ico-perfil {
    height: 24px;
  }
  .header .navbar .list-nav-link .movil {
    display: flex;
  }
  .header .navbar .list-nav-link .web {
    display: none;
  }
}
/********************************************
****               FOOTER                ****
*********************************************/
.footer {
  background-color: #eeeeee;
  color: #011027;
  padding: 40px 0;
}
.footer .box-logo {
  width: 238px;
}
.footer .item-footer {
  color: #011027;
}
.footer .item-footer .title {
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer .item-footer .icon-redes {
  height: 15px;
  width: auto;
}
.footer .item-footer .list a {
  font-size: 14px;
  display: flex;
  margin-bottom: 8px;
}
.footer .item-footer .list a .icon-redes {
  margin-right: 10px;
}
.footer hr {
  margin: 24px 0;
}
.footer .box-container-footer {
  width: 812px;
}
.footer .box-container-footer div:nth-child(1) {
  width: 329px;
}
.footer .box-container-footer div:nth-child(2) {
  width: 244px;
}
.footer .box-container-footer div:nth-child(3) {
  width: 124px;
}
.footer .footer-bar {
  font-weight: 700;
  font-size: 16px;
  width: 100%;
}
.footer .footer-bar a {
  padding-left: 24px;
}
@media (max-width: 700px) {
  .footer .box-logo {
    width: 100%;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
  }
  .footer .box-logo img {
    width: 238px;
  }
  .footer .box-container-footer {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .footer .box-container-footer div:nth-child(1), .footer .box-container-footer div:nth-child(2) {
    width: 100%;
    margin-bottom: 12px;
  }
  .footer .footer-bar {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .footer .footer-bar p {
    margin-bottom: 4px;
  }
  .footer .footer-bar a:nth-child(1) {
    padding-left: 0;
  }
}

/********************************************
****            SLIDER               ****
*********************************************/
.slider {
  position: absolute;
  width: 100%;
  height: 485px;
  outline: none;
}
.slider .square1_dots {
  position: absolute;
  min-width: 10%;
  bottom: 40px;
}
.slider .square1_dots span::before {
  width: 42px;
  height: 3px;
  background-color: #ffffff !important;
}
.slider .square1_dots span.current::before {
  background-color: #5ab206 !important;
}
.slider .box-hover {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.slider .box-texto {
  position: absolute;
  color: #ffffff;
  top: 87px;
  width: 541px;
}
.slider .box-texto .title {
  font-size: 80px;
  line-height: 100%;
  font-weight: 700;
  margin-bottom: 8px;
}
.slider .box-texto .texto {
  font-size: 14px;
  line-height: 100%;
  width: 350px;
}
.slider .box-botones {
  position: absolute;
  right: 0;
  top: 348px;
  width: 372px;
}
.slider .box-image-number {
  position: absolute;
  right: -80px;
  top: 272px;
}
.slider .box-image-number img {
  display: block !important;
}

@media (min-width: 1141px) {
  .slider .square1_dots {
    width: 1140px;
    text-align: left;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 1140px) {
  .slider .box-botones {
    right: 16px;
  }
  .slider .square1_dots {
    left: 16px;
    width: auto;
  }
}
@media (max-width: 850px) {
  .slider .box-texto {
    width: 100%;
  }
  .slider .box-texto .title {
    font-size: 40px;
  }
  .slider .box-botones {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column-reverse;
    left: 16px;
    align-items: flex-start;
    top: 250px;
  }
  .slider .box-botones .btn {
    margin-bottom: 16px;
  }
  .slider .box-image-number {
    display: none;
  }
}
/********************************************
****               HOME                ****
*********************************************/
.home-partidos {
  background-color: #011027;
  color: #ffffff;
  height: 225px;
  width: 100%;
  position: relative;
}
.home-partidos .img-back {
  position: absolute;
  left: 0;
  width: 261px;
  height: 225px;
}
.home-partidos .box-container-texto {
  transition: all 0.5s ease;
}
.home-partidos .box-container-texto .box-texto {
  width: 261px;
  transition: all 0.5s ease;
}
.home-partidos .box-container-texto .box-texto .title {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 100%;
  font-weight: 700;
}
.home-partidos .box-container-texto .box-texto .texto {
  font-size: 14px;
}
.home-partidos .box-container-card {
  overflow-y: auto;
}
.home-partidos .box-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 286px;
  padding: 0 30px;
  height: 225px;
}
.home-partidos .box-card:nth-child(odd) {
  background-color: #091932;
}
.home-partidos .box-card:nth-child(even) {
  background-color: #011027;
}
.home-partidos .box-card .title {
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
}
.home-partidos .box-card .date {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
}
.home-partidos .box-card .box-resultados {
  margin-top: 24px;
  justify-content: space-between;
  display: flex;
  align-items: center;
}
.home-partidos .box-card .box-resultados .item-resultado {
  width: 63px;
}
.home-partidos .box-card .box-resultados .item-resultado .texto {
  font-size: 12px;
}
@media (max-width: 700px) {
  .home-partidos {
    overflow: hidden;
    height: auto;
  }
  .home-partidos div:first-child {
    flex-wrap: wrap;
  }
  .home-partidos .box-container-texto, .home-partidos .box-container-card {
    width: 100%;
  }
  .home-partidos .box-container-texto {
    padding: 20px;
  }
  .home-partidos .box-container-texto .box-texto {
    width: 100%;
  }
  .home-partidos .img-back {
    display: none;
  }
}

.home-nosotros {
  background: url("../img/background.svg");
  background-repeat: no-repeat;
  height: 585px;
  background-position: center;
}
.home-nosotros .box-texto {
  width: 400px;
  padding: 70px 0;
}
.home-nosotros .box-texto .title {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 24px;
  color: #011027;
  padding-right: 40px;
  line-height: 100%;
  width: 370px;
  font-family: "GothamNarrow-Bold";
}
.home-nosotros .box-texto .subtitle {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fe2414;
}
.home-nosotros .box-texto .texto {
  margin-bottom: 24px;
  color: #011027;
}
.home-nosotros .box-image {
  height: 585px;
}
.home-nosotros .box-image img {
  height: 100%;
}
@media (max-width: 1050px) {
  .home-nosotros .box-texto {
    width: 40%;
  }
  .home-nosotros .box-image {
    width: 60%;
  }
}
@media (max-width: 700px) {
  .home-nosotros {
    height: auto;
  }
  .home-nosotros .container-nowrap {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    padding: 32px;
  }
  .home-nosotros .box-texto, .home-nosotros .box-image {
    width: 100%;
    height: auto;
  }
  .home-nosotros .box-texto {
    text-align: center;
    padding: 30px 0;
  }
  .home-nosotros .box-texto .title {
    width: 100%;
    font-size: 40px;
  }
}

.home-banner {
  background: url("../img/home/image2.jpg");
  background-repeat: no-repeat;
  height: 437px;
  padding: 110px 0;
  color: #ffffff;
  background-position: center;
}
.home-banner .box-texto {
  width: 400px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.home-banner .box-texto .title {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 100%;
  width: 300px;
  font-family: "GothamNarrow-Bold";
}
.home-banner .box-texto .texto {
  margin-bottom: 24px;
  font-weight: 500;
}
@media (max-width: 700px) {
  .home-banner {
    padding: 90px 45px;
    height: auto;
  }
  .home-banner .box-texto {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .home-banner .box-texto .title {
    width: 100%;
    font-size: 40px;
  }
}

.game-banner {
  background: url("../img/partidos/imagen1.png");
  background-repeat: no-repeat;
  background-position: center;
  height: 378px;
  color: #ffffff;
  background-size: cover;
}
.game-banner .boxoverlay {
  background-color: rgba(0, 2, 11, 0.6);
  height: 378px;
}
.game-banner .center {
  max-width: 1280px;
}
.game-banner .box-texto {
  width: 350px;
  padding: 74px 0;
  display: flex;
  flex-direction: column;
}
.game-banner .box-texto .title {
  font-size: 80px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 100%;
  font-family: "GothamNarrow-Bold";
}
.game-banner .box-texto .texto {
  margin-bottom: 24px;
  font-weight: 500;
}
.game-banner .box-texto-detail {
  display: flex;
  flex-direction: column;
}
.game-banner .box-texto-detail .title {
  font-size: 80px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 100%;
  font-family: "GothamNarrow-Bold";
  width: 800px;
}
.game-banner .box-texto-detail .texto {
  margin-bottom: 24px;
  font-weight: 400;
  font-size: 14px;
  background-color: #ffffff;
  line-height: 20px;
  color: #0050ca;
  padding: 10px;
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 870px) {
  .game-banner {
    height: 250px;
  }
  .game-banner .box-texto-detail {
    width: 100%;
  }
  .game-banner .box-texto-detail .title {
    width: 100%;
    font-size: 48px;
  }
}
@media (max-width: 650px) {
  .game-banner .box-texto, .game-banner .box-texto-detail {
    width: 100%;
  }
  .game-banner .box-texto .title, .game-banner .box-texto-detail .title {
    width: 100%;
    font-size: 48px;
  }
}

.game-container-grid {
  padding: 40px 0;
}
.game-container-grid .center {
  max-width: 1280px;
}
.game-container-grid .img-ico {
  width: 24px;
}
.game-container-grid .box-filtros {
  margin-bottom: 16px;
  height: 24px;
}
.game-container-grid .box-filtros .texto {
  font-size: 14px;
  font-weight: 500;
}
.game-container-grid .box-filtros .container-iconos {
  display: flex;
}
.game-container-grid .box-filtros .container-iconos .icon-filter {
  margin-left: 8px;
}
.game-container-grid .box-texto {
  margin-bottom: 40px;
}
.game-container-grid .box-texto .subtitle {
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.game-container-grid .box-texto .subtitle img {
  width: 25px;
}
.game-container-grid .box-retorno {
  width: 300px;
}
.game-container-grid hr {
  margin: 16px 0;
}
.game-container-grid .container-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(304px, 1fr));
  gap: 20px;
  transition: all 0.5s ease;
}
.game-container-grid .container-grid .card-partido {
  padding: 8px;
  box-sizing: border-box;
  box-shadow: 0px 0px 8px rgba(10, 19, 28, 0.16);
  border-radius: 4px;
}
.game-container-grid .container-grid .card-partido .image-card {
  border-radius: 8px;
  height: 165px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 16px;
}
.game-container-grid .container-grid .card-partido .box-texto {
  color: #0a131c;
}
.game-container-grid .container-grid .card-partido .box-texto img {
  width: auto;
}
.game-container-grid .container-grid .card-partido .box-texto span {
  margin-right: 4px;
}
.game-container-grid .container-grid .card-partido .box-texto .title {
  font-weight: 700;
  font-size: 16px;
}
.game-container-grid .container-grid .card-partido .box-texto .texto {
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 8px;
}
.game-container-grid .container-grid .card-partido .box-texto .texto-count {
  color: #e17211;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.game-container-grid .container-grid .card-partido .box-texto .texto-icon {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 8px;
}
.game-container-grid .container-grid .card-partido .box-texto .texto-icon img {
  margin-right: 6px;
}
.game-container-grid .container-grid .card-partido .box-precio {
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  margin-bottom: 8px;
}
@media (max-width: 1320px) {
  .game-container-grid .container-grid {
    grid-template-columns: repeat(4, 1fr);
    transition: all 0.5s ease;
  }
  .game-container-grid .center {
    padding: 0px 20px;
  }
}
@media (max-width: 990px) {
  .game-container-grid .container-grid {
    grid-template-columns: repeat(3, 1fr);
    transition: all 0.5s ease;
  }
}
@media (max-width: 780px) {
  .game-container-grid .container-grid {
    grid-template-columns: repeat(2, 1fr);
    transition: all 0.5s ease;
  }
}
@media (max-width: 510px) {
  .game-container-grid .container-grid {
    grid-template-columns: 1fr;
  }
}
.game-container-grid .container-grid-detail {
  display: grid;
  grid-template-columns: 486px 1fr;
  gap: 104px;
}
.game-container-grid .container-grid-detail .card-partido .title {
  font-size: 16px;
  font-weight: 700;
}
.game-container-grid .container-grid-detail .card-partido .subtitle {
  font-size: 14px;
  line-height: 20px;
  color: #0050ca;
}
.game-container-grid .container-grid-detail .card-partido .box-precio .texto {
  font-size: 24px;
  font-weight: 700;
}
.game-container-grid .container-grid-detail .card-partido .card-options {
  display: grid;
  grid-template-columns: 85px 110px 125px;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.game-container-grid .container-grid-detail .card-partido .card-options .texto-icon {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.game-container-grid .container-grid-detail .card-partido .card-options .img-ico {
  width: 22px;
  margin-right: 4px;
}
.game-container-grid .container-grid-detail .card-partido .select-game {
  color: #5ab206;
  border: none;
  width: 130px;
  position: relative;
}
.game-container-grid .container-grid-detail .card-partido .select-game .img-ico {
  width: 20px;
  margin-left: 4px;
}
.game-container-grid .container-grid-detail .card-partido .box-game-roster {
  width: 100%;
  height: 0px;
  background-color: #ffffff;
  overflow-y: scroll;
  transition: all 0.5s ease;
  margin: 12px 0;
}
.game-container-grid .container-grid-detail .card-partido .box-game-roster .item-roster {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f6f6f6;
  color: #0a131c;
  border-radius: 4px;
  margin-bottom: 8px;
  height: 39px;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 700;
}
.game-container-grid .container-grid-detail .card-partido .box-game-roster .item-roster .img-avatar {
  width: 27px;
  margin-right: 8px;
}
.game-container-grid .container-grid-detail .card-partido .box-game-roster.open {
  height: 180px;
}
.game-container-grid .container-grid-detail .card-partido .text {
  white-space: pre-line;
}
.game-container-grid .container-grid-detail .card-partido .texto-count {
  color: #e17211;
  font-weight: 500;
}
.game-container-grid .container-grid-detail .card-partido .box-card-beneficios {
  display: grid;
  grid-template-columns: repeat(5, 70px);
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.game-container-grid .container-grid-detail .card-partido hr {
  margin: 24px 0px;
}
.game-container-grid .container-grid-detail .card-partido .select-position {
  font-size: 14px;
  height: 46px;
  border-color: #bfbfbf;
}
.game-container-grid .container-grid-detail .card-partido .btn-link {
  color: #011027;
  margin-top: 24px;
  text-decoration: underline;
  font-size: 12px;
  font-weight: 700;
}
.game-container-grid .container-grid-detail .card-partido .lista {
  margin-left: 24px;
}
.game-container-grid .container-grid-detail .box-imagenes .box-imagenes-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 8px;
       column-gap: 8px;
  margin-top: 32px;
}
.game-container-grid .container-grid-detail .box-imagenes .box-imagenes-list .img-list {
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 125px;
}
@media (max-width: 1280px) {
  .game-container-grid .container-grid-detail {
    gap: 48px;
  }
  .game-container-grid .container-grid-detail .box-imagenes-list .img-list {
    width: 100%;
  }
}
@media (max-width: 1010px) {
  .game-container-grid .container-grid-detail {
    grid-template-columns: repeat(2, 1fr);
  }
  .game-container-grid .container-grid-detail .card-partido .box-card-beneficios {
    grid-template-columns: repeat(3, 70px);
  }
  .game-container-grid .container-grid-detail .box-imagenes .box-imagenes-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
@media (max-width: 700px) {
  .game-container-grid .container-grid-detail {
    grid-template-columns: 1fr;
  }
  .game-container-grid .container-grid-detail .box-imagenes {
    display: none;
  }
}
@media (max-width: 450px) {
  .game-container-grid .container-grid-detail {
    grid-template-columns: 1fr;
  }
  .game-container-grid .container-grid-detail .card-partido .card-options {
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}

.league-banner {
  background: url("../img/ligas/ligas.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 485px;
  color: #ffffff;
  background-position: center;
}
.league-banner .boxoverlay {
  background-color: rgba(0, 2, 11, 0.6);
  height: 485px;
}
.league-banner .box-texto {
  width: 500px;
  display: flex;
  flex-direction: column;
  padding: 110px 0;
}
.league-banner .box-texto .title {
  font-size: 80px;
  font-weight: 700;
  line-height: 100%;
  width: 450px;
  font-family: "GothamNarrow-Bold";
}
.league-banner .box-texto .texto {
  font-weight: 400;
  font-size: 14px;
}
.league-banner .box-botones {
  position: absolute;
  right: 30px;
  top: 400px;
}
@media (max-width: 700px) {
  .league-banner {
    height: auto;
  }
  .league-banner .box-texto {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .league-banner .box-texto .title {
    width: 100%;
    font-size: 32px;
  }
}

.league-position {
  padding: 40px 0px;
  text-align: center;
}
.league-position .box-texto {
  margin-bottom: 40px;
}
.league-position .box-texto .subtitle {
  margin-bottom: 4px;
}
.league-position .box-texto .title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
}

.league-feature {
  padding: 40px 0px;
}
.league-feature .box-texto {
  margin-bottom: 24px;
}
.league-feature .box-texto .title {
  margin-bottom: 4px;
}
.league-feature .box-botones {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.accordion {
  border: 1px solid #989898;
  width: 100%;
  position: relative;
  border-radius: 8px;
  padding: 10px;
  background-color: #eeeeee;
  display: none;
}
.accordion .header-accordion {
  display: flex;
  justify-content: space-between;
  color: #011027;
  font-size: 14px;
  font-weight: 500;
}
.accordion .header-accordion .img-ico {
  width: 20px;
  margin-left: 4px;
}
.accordion .box-tabla .box-header {
  border-bottom: 1px solid #989898;
  padding: 8px;
}
.accordion .tabla-accordion {
  height: 0px;
  transition: all 0.5s ease;
}
.accordion .tabla-accordion .box-header, .accordion .tabla-accordion .box-body {
  display: none;
  height: 0px;
  transition: all 0.5s ease;
}
.accordion .tabla-accordion.open {
  height: auto;
  transition: all 0.5s ease;
}
.accordion .tabla-accordion.open .box-header, .accordion .tabla-accordion.open .box-body {
  display: grid;
  height: auto;
  transition: all 0.5s ease;
}
@media (max-width: 580px) {
  .accordion {
    display: block;
  }
}

.box-tabla {
  width: 100%;
  font-size: 14px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 20px;
  color: #011027;
  text-align: left;
}
.box-tabla .img-logo {
  width: 22px;
  margin-right: 4px;
}
.box-tabla .box-header {
  background-color: #eeeeee;
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(500px, 1fr) repeat(8, minmax(22px, 1fr));
  -moz-column-gap: 50px;
       column-gap: 50px;
}
.box-tabla .box-body {
  padding: 8px 16px;
  display: grid;
  grid-template-columns: minmax(500px, 1fr) repeat(8, minmax(22px, 1fr));
  -moz-column-gap: 50px;
       column-gap: 50px;
  border-bottom: 1px solid #eeeeee;
}
.box-tabla .tb-position {
  grid-template-columns: minmax(500px, 1fr) repeat(8, minmax(22px, 1fr));
  -moz-column-gap: 50px;
       column-gap: 50px;
}
.box-tabla .tb-fixture {
  grid-template-columns: repeat(3, 1fr);
}
.box-tabla .tb-fixture .item-header:last-child {
  text-align: right;
}
.box-tabla .tb-fixture .item-body:last-child {
  justify-content: end;
  text-align: right;
}
.box-tabla .item-body {
  display: flex;
  align-items: center;
}
@media (max-width: 1140px) {
  .box-tabla .tb-position {
    grid-template-columns: minmax(150px, 1fr) repeat(8, minmax(22px, 1fr));
  }
}
@media (max-width: 850px) {
  .box-tabla .tb-position {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
@media (max-width: 460px) {
  .box-tabla .tb-position {
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
}

@media (max-width: 580px) {
  .table-hidden {
    display: none;
  }
}

.league-contacto {
  background: url("../img/ligas/contacto.png");
  height: 239px;
  background-size: cover;
  background-position: center;
}
.league-contacto .boxoverlay {
  background-color: rgba(0, 2, 11, 0.6);
  height: 239px;
}
.league-contacto .box-texto {
  color: #ffffff;
  padding: 53px 0 24px;
}
.league-contacto .box-texto .title {
  font-size: 40px;
  font-weight: 900;
}
.league-contacto .box-texto .texto {
  font-size: 14px;
}

.services-banner {
  background: url("../img/services/banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 395px;
  color: #ffffff;
  background-position: center;
}
.services-banner .boxoverlay {
  background-color: rgba(0, 2, 11, 0.6);
  width: 100%;
  height: 395px;
}
.services-banner .box-texto {
  width: 500px;
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  transition: all 0.5s ease;
}
.services-banner .box-texto .title {
  font-size: 80px;
  font-weight: 900;
  line-height: 100%;
  width: 450px;
  font-family: "GothamNarrow-Bold";
  margin-bottom: 24px;
}
.services-banner .box-texto .texto {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 24px;
}
.services-banner .box-texto .btn {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 500px) {
  .services-banner .box-texto {
    width: 100%;
    text-align: center;
    align-items: center;
    padding-top: 100px;
    transition: all 0.5s ease;
  }
  .services-banner .box-texto .title {
    width: 100%;
    font-size: 40px;
  }
}

.box-servicies {
  padding: 60px 32px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
}
.box-servicies .box-image-service {
  position: relative;
  transition: all 0.5s ease;
}
.box-servicies .box-image-service .boxoverlay {
  background-color: rgba(0, 2, 11, 0.6);
  width: 100%;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
}
.box-servicies .box-image-service .img-service {
  height: 417px;
  -o-object-fit: cover;
     object-fit: cover;
}
.box-servicies .box-image-service .box-texto {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 0;
  transition: all 0.5s ease;
}
.box-servicies .box-image-service .box-texto .col1 {
  width: 520px;
  transition: all 0.5s ease;
}
.box-servicies .box-image-service .box-texto .col2 {
  width: 450px;
  text-align: right;
  transition: all 0.5s ease;
}
.box-servicies .box-image-service .box-texto .title {
  font-size: 80px;
  font-weight: 900;
  line-height: 100%;
  font-family: "GothamNarrow-Bold";
}
.box-servicies .box-image-service .box-texto .subtitle {
  font-size: 40px;
  font-weight: 900;
  line-height: 100%;
  font-family: "GothamNarrow-Bold";
  margin-bottom: 24px;
}
.box-servicies .box-image-service .box-texto .texto {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 24px;
}
.box-servicies .box-image-service .box-texto .box-botones {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}
.box-servicies .box-image-service .box-texto:nth-child(2) {
  flex-direction: column-reverse;
}
.box-servicies .box-image-service .box-texto:nth-child(2) {
  flex-direction: column-reverse;
}
@media (max-width: 1250px) {
  .box-servicies .boxoverlay .box-texto {
    padding: 100px 30px;
  }
}
@media (max-width: 880px) {
  .box-servicies {
    padding: 60px 0;
  }
  .box-servicies .boxoverlay .col1 {
    display: none;
    transition: all 0.5s ease;
  }
  .box-servicies .boxoverlay .box-texto {
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 100%;
  }
  .box-servicies .boxoverlay .box-texto .col2 {
    width: 100%;
    text-align: center;
  }
  .box-servicies .boxoverlay .box-texto .col2 .box-botones {
    justify-content: center;
  }
}

.sponsor-banner {
  background: url("../img/sponsor/imagen.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 395px;
  color: #ffffff;
  background-position: center;
}
.sponsor-banner .boxoverlay {
  background-color: rgba(0, 2, 11, 0.6);
  width: 100%;
  height: 395px;
}
.sponsor-banner .box-texto {
  width: 500px;
  display: flex;
  flex-direction: column;
  padding-top: 40px;
}
.sponsor-banner .box-texto .title {
  font-size: 80px;
  font-weight: 900;
  line-height: 100%;
  width: 480px;
  font-family: "GothamNarrow-Bold";
  margin-bottom: 24px;
}
.sponsor-banner .box-texto .texto {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 24px;
}
.sponsor-banner .box-texto .btn {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 550px) {
  .sponsor-banner .box-texto {
    width: 100%;
    text-align: center;
    align-items: center;
    padding-top: 100px;
  }
  .sponsor-banner .box-texto .title {
    width: 100%;
    font-size: 40px;
  }
}

.sponsor-formulario {
  padding: 60px 0;
  display: flex;
  justify-content: center;
}
.sponsor-formulario .box-formulario {
  width: 680px;
  transition: all 0.5s ease;
}
.sponsor-formulario .box-formulario .formulario {
  margin-top: 30px;
}
.sponsor-formulario .box-formulario label {
  font-weight: 700;
}
.sponsor-formulario .box-formulario .box-input {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.sponsor-formulario .box-formulario .box-input input {
  padding: 10px 20px;
  margin: 8px 0;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  outline: none;
  box-sizing: border-box;
}
.sponsor-formulario .box-formulario .box-texto {
  display: flex;
  flex-direction: column;
}
.sponsor-formulario .box-formulario .box-texto .title {
  font-size: 40px;
  font-weight: 900;
  line-height: 100%;
  font-family: "GothamNarrow-Bold";
  margin-bottom: 12px;
}
.sponsor-formulario .box-formulario .box-texto .texto {
  font-size: 14px;
  margin-bottom: 30px;
}
@media (max-width: 680px) {
  .sponsor-formulario .box-formulario {
    width: 90%;
    margin: auto;
    transition: all 0.5s ease;
  }
}

/************************************
***          LOGIN           ***
*************************************/
.login {
  min-height: 100vh;
}
.login .box-imagen {
  min-height: 100vh;
  background-color: #003e68;
  color: #ffffff;
}
.login .box-login {
  min-height: 100vh;
  background-color: #003e68;
  color: #ffffff;
  padding: 20px;
}
.login .box-login .Box-form-login .titulo {
  margin-bottom: 20px;
}
.login .box-login .Box-form-login #form {
  transition: 0.5s all linear;
}
.login .box-login .Box-form-login .input {
  border: 1px solid #003e68;
  color: #003e68;
  padding: 8px 20px;
  border-radius: 4px;
  margin: 10px 2px;
}
.login .box-login .Box-form-login .inputEmail {
  position: relative;
}
.login .box-login .Box-form-login .inputEmail #validaemail {
  font-style: italic;
}
.login .box-login .Box-form-login #form.invalido .inputEmail::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 20px;
  width: 20px;
  height: 20px;
  background: url(../img/ico/cancel-black.png);
  background-size: cover;
  z-index: 10;
}
.login .box-login .Box-form-login #form.valido .inputEmail::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 20px;
  width: 20px;
  height: 20px;
  background: url(../img/ico/check-black-circle.png);
  background-size: cover;
  z-index: 10;
}
.login .box-login .Box-form-login .inputBox {
  position: relative;
  height: 40px;
}
.login .box-login .Box-form-login .inputBox input {
  position: absolute;
  left: 0;
  top: 0;
}
.login .box-login .Box-form-login .inputBox input:placeholder {
  color: #003e68;
}
.login .box-login .Box-form-login .inputBox #toggle {
  position: absolute;
  right: 14px;
  color: gray;
  cursor: pointer;
  font-size: 24px;
  top: 25%;
}
.login .box-login .Box-form-login .btn {
  color: #ffffff;
  background: #003e68;
  border: 1px solid #003e68;
  padding: 15px;
  display: block;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  margin: 10px 0;
  transition: 0.1s all ease-out;
  letter-spacing: 3px;
}
.login .box-login .Box-form-login .btn:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .login .box-login, .login .box-imagen {
    width: 50%;
    transition: all 0.5s ease;
  }
}
@media (max-width: 500px) {
  .minheight100 {
    min-height: 50%;
  }
  .login {
    min-height: 50vh;
  }
  .login .box-login {
    width: 100%;
  }
  .login .box-imagen {
    display: none;
  }
}
.alerta-exito {
  display: flex;
  justify-content: space-between;
  background-color: rgba(0, 161, 153, 0.9);
  color: #ffffff;
  padding: 15px;
  margin: 16px 0;
}

.alerta-error {
  display: flex;
  justify-content: space-between;
  background-color: rgba(255, 0, 0, 0.9);
  color: #ffffff;
  padding: 15px;
  margin: 16px 0;
}

/********************************************
****               MODAL                ****
*********************************************/
#info {
  position: absolute;
  top: 60px;
  right: 5px;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  z-index: 1200;
}
@media (max-width: 500px) {
  #info {
    width: 99%;
  }
}

.text-red {
  color: #ff0000;
}

.inputError {
  border-color: #ff0000 !important;
}

.modal {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(1, 16, 39, 0.8);
  justify-content: center;
  align-items: center;
  animation: modal 400ms 200ms;
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
  z-index: 1500;
}
.modal .closed-modal {
  display: flex;
  justify-content: flex-end;
  padding: 15px;
  font-size: 20px;
  color: #ffffff;
}
.modal .box-modal {
  background-color: #ffffff;
  color: #0a131c;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  position: relative;
  font-family: "Lato", sans-serif;
}
.modal .box-modal img {
  width: 156px;
}
.modal .box-modal .img-ico-small {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
.modal .box-modal .img-ico {
  width: 20px;
  height: 20px;
}
.modal .box-modal .header-modal {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal .box-modal .title {
  color: #011027;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 40px;
}
.modal .box-modal .title-big {
  color: #011027;
  font-weight: 700;
  font-size: 32px;
}
.modal .box-modal .texto {
  font-size: 12px;
  line-height: 28px;
  font-weight: 500;
}
.modal .box-modal .texto-alerta {
  font-size: 12px;
  line-height: 16px;
  display: flex;
  align-items: center;
}
.modal .box-modal .btn-outline {
  color: #5ab206;
  font-weight: 600;
}
.modal .box-modal form input, .modal .box-modal form select {
  font-size: 14px;
  padding: 0 12px;
  line-height: 36px;
  border-radius: 4px;
  border-color: #bfbfbf;
  outline: none;
}
.modal .box-modal form label {
  font-weight: 700;
  margin-bottom: 4px;
  display: block;
}
.modal .box-modal form select {
  padding: 12px;
}
.modal .box-modal .box-input {
  margin-bottom: 12px;
}
.modal .box-modal .box-input .errorInput {
  height: 20px;
  color: #ff0000;
}
.modal .box-modal .inputBox {
  position: relative;
  min-height: 60px;
}
.modal .box-modal .inputBox input {
  position: absolute;
  left: 0;
  top: 0;
}
.modal .box-modal .inputBox .toggle {
  position: absolute;
  right: 14px;
  color: #bfbfbf;
  cursor: pointer;
  font-size: 16px;
  top: 42%;
  transform: translateY(-50%);
}
.modal .box-modal .box-botones {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal .box-modal .sinlogin {
  font-weight: 700;
  font-size: 24px;
}
.modal .box-modal .sinlogin .texto {
  margin-bottom: 40px;
}
.modal .box-modal .footer-modal {
  position: relative;
  margin-top: 16px;
}
.modal .box-modal .footer-modal label {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  font-size: 12px;
  padding: 0 12px;
}
.modal .box-modal .footer-modal .btn {
  width: 100%;
  margin-top: 16px;
}
.modal .modal-little {
  width: 460px;
  padding: 24px;
}
.modal .modal-midle {
  width: 806px;
  padding: 40px;
}
.modal .form-grid {
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 24px;
       column-gap: 24px;
  max-height: 450px;
  height: 55vh;
  min-height: 300px;
  overflow-y: auto;
  margin-bottom: 30px;
}

.modalfull {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(1, 16, 39, 0.8);
  justify-content: flex-end;
  animation: modal 400ms 200ms;
  animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
  z-index: 1500;
}
.modalfull .closed-modal {
  display: flex;
  justify-content: flex-end;
  padding: 15px;
  font-size: 20px;
  color: #ffffff;
}
.modalfull .box-fullModal {
  width: 416px;
  background-color: #ffffff;
  color: #0a131c;
  right: 0;
  height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
}
.modalfull .box-fullModal hr {
  border: 1px solid #E5E7EB;
  width: 100%;
  margin: 20px 0;
}
.modalfull .box-fullModal form input, .modalfull .box-fullModal form select {
  font-size: 14px;
  padding: 0 12px;
  line-height: 36px;
  border-radius: 4px;
  border-color: #bfbfbf;
  outline: none;
}
.modalfull .box-fullModal form label {
  font-weight: 700;
  margin-bottom: 4px;
  display: block;
}
.modalfull .box-fullModal form select {
  padding: 12px;
}
.modalfull .box-fullModal .header-modal {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #E5E7EB;
}
.modalfull .box-fullModal .header-modal .btn-cerrar {
  display: flex;
  justify-content: flex-end;
  padding: 12px 10px;
}
.modalfull .box-fullModal .header-modal .btn-cerrar img {
  height: 20px;
  width: 20px;
}
.modalfull .box-fullModal .header-modal .title {
  font-size: 20px;
  line-height: 32px;
  font-weight: 900;
  padding: 8px 16px;
}
.modalfull .box-fullModal .form-container-grid {
  display: grid;
  grid-template-rows: auto 1fr;
  height: calc(100vh - 92px);
}
.modalfull .box-fullModal .container-body {
  padding: 16px;
  color: #0a131c;
  overflow-y: auto;
}
.modalfull .box-fullModal .container-body .img-perfil {
  height: 122px;
  width: 122px;
  margin-bottom: 12px;
}
.modalfull .box-fullModal .container-body .label {
  font-weight: 700;
  margin-bottom: 8px;
}
.modalfull .box-fullModal .container-body div {
  margin-bottom: 8px;
  font-size: 14px;
}
.modalfull .box-fullModal .container-body .form-grid {
  grid-template-columns: 1fr;
  -moz-column-gap: 12px;
       column-gap: 12px;
  height: 100%;
  overflow-y: auto;
}
.modalfull .box-fullModal .footer-modal {
  background-color: #F9F9FB;
  height: 72px;
  display: flex;
  justify-content: flex-end;
  padding: 16px;
  gap: 12px;
}

@keyframes modal {
  100% {
    visibility: visible;
    opacity: 1;
  }
}
/************************************
***          ANIMATE           ***
*************************************/
/*
fadeInRightBig
fadeInRight
bounceInRight
slideInUp - slideInDown
*//*# sourceMappingURL=futbolstyle.css.map */