*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
  background: #ffff;
  overflow-x: hidden;
}

header {
  position: fixed;
  z-index: 1;
}
.menu {
  background-color: #202328;
  height: 100px;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 6px solid #efb810;
}

.menu .logoInformation {
  font-size: 20px;
  font-weight: bold;
  color: #efb810;
  text-align: center;
  padding-left: 20px;
  cursor: pointer;
}
.mainLogo {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.mainLogo .logo {
  width: 70px;
  margin-left: 15px;
}

.menuItems {
  display: flex;
  list-style: none;
  /*margin-right: 198px;*/
  align-items: center;
}

.menuItems li {
  border-radius: 3px;
  margin: 0 41px;
}

.menuItems li a {
  padding: 7px 13px;
  text-decoration: none;
  font-size: 18px;
  display: block;
  color: white;
  text-transform: uppercase;
}

.subMenu {
  display: flex;
  flex-direction: column;
  background: #202328;
  color: #fff;
  position: absolute;
  list-style: none;
  display: none;
  border-radius: 15px;
}

.subMenu li {
  border-bottom: 1px solid #efb810;
  margin: 0px 0px 0px;
}

.subMenu li a {
  font-size: 16px;
}

.menuItems .subMenuItems:hover > ul {
  display: block;
}

.menuItems .logo {
  background: #202328;
  cursor: pointer;
}

.menuItems li:hover {
  background: #efb810;
}
.menuItems li a:hover {
  color: #202328;
}

.buttonMenu {
  margin-right: 30px;
  font-size: 25px;
  color: #fff;
  cursor: pointer;
  display: none;
}

ul.show {
  top: 65px;
}

.difficulty {
  display: inline-block;
  background-color: #fff;
  height: 10px;
  width: 30px;
  font-size: 2px;
  padding: 1px;
  color: white;
  margin: 10px 7px 7px 7px;
  animation: skew 3s infinite;
  transform: skew(20deg);
  animation-direction: alternate;
  opacity: 2.7;
}
.colorNone {
  opacity: 0.5;
}
/*** bannerLol***/

#mainContainer .bannerLol {
  font-size: 24px;
  padding: 50px 0 50px 0;
}

/****** footer *****/
footer {
  border-top: 4px solid #efb810;
  background-color: #202328;
  bottom: 0px;
  color: #fff;
  width: 100vw;
  text-align: center;
  height: 90px;
}

footer section {
  margin-top: 30px;
  font-size: 18px;
}

/*Cards LandingPage*/

.showCardsLol {
  display: flex;
  padding: 0px;
  font-size: 30px;
  flex-direction: column;

  color: #ffffff;
}
#mainCardsLol {
  /* background-position: center center; */
  background-attachment: fixed;
  background-image: url(./images/fondomapa2.jpg);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100vw;
}
.showCardsLol img {
  width: 294px;
  border-radius: 30px 30px 0 0;
}
.showCardsLol p {
  padding: 10px;
  text-transform: uppercase;
}

/* boxCardsRoles */
.boxCardsRoles {
  border: 3px solid #af0e2d;
  background-color: #202328;
  /*width: 300px;
  height: 250px;*/
  border-radius: 30px;
  margin: 20px;
  position: relative;
  cursor: pointer;
}

.boxCardsRoles img {
  width: 294px;
  border-radius: 30px 30px 0 0;
}

.boxCardsRoles p {
  padding: 10px;
  text-transform: uppercase;
  color: white;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.boxCardsRoles p img {
  width: 50px;
  margin-right: 10px;
}

/* BoxCardsLol */
.boxCardsLol {
  width: 300px;
  height: 250px;
  margin: 20px;
  position: relative;
  /* perspective: 1000px; */
}
.boxCardsLol:hover .showCardsLol {
  transform: rotateY(180deg);
}
.showCardsLol {
  transform-style: preserve-3d;
  transition: all 0.5s linear;
}
.faceCardsLol {
  border: 3px solid #af0e2d;
  background-color: #202328;
  width: 300px;
  height: 250px;
  border-radius: 30px;
  position: absolute;
  backface-visibility: hidden;
}

.backOfCardsLol {
  border: 3px solid #af0e2d;
  background-color: #202328;
  width: 300px;
  height: 250px;
  border-radius: 30px;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  flex-direction: column;
}
/*table infoChampions*/
.infoChampions {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
  flex-direction: start;
}
.infoChampions td,
th {
  background-color: #333436; /**/
  width: 110px;
  padding: 5px;
  /* text-transform: uppercase; */
}

.infoChampions tr:first-child {
  color: #efb810;
}
/* modal champion */
.buttonInformation {
  width: 40%;
  background: #efb810;
  padding: 5px;
  border: 0;
  border-radius: 5px;
  font-size: 18px;
  color: #212224;
  cursor: pointer;
  font-weight: bold;
}
.buttonInformation:hover {
  background: #b38a0f;
  color: #fff;
}

.modalChampion {
  /*display: block;*/
  z-index: 2;
  position: fixed;
  /*overflow: auto;*/
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.modalChampionContent {
  margin: 10% auto;
  width: 60%;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2);
  /* animation-name: openModal; */
  animation-duration: 1s;
}
.headerModal {
  background: #efb810;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  font-size: 24px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
}
.bodyModal {
  padding: 10px 20px;
  background: #fff;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  height: 340px;
  display: flex;
  align-items: center;
}
.bodyModal img {
  width: 230px;
  height: 250px;
  border-radius: 15px;
  box-shadow: 3px 3px 8px #afb1b7;
  object-fit: cover;
}
.bodyModal h1 {
  font-size: 48px;
  text-shadow: 3px 3px 0 #f2bac5;
}
.bodyModal p {
  font-size: 24px;
}
span:hover {
  border-top-right-radius: 30px;
  color: #202328;
  background: #afb1b7;
}
.closeModal {
  color: #ffff;
  font-size: 24px;
  background: #202328;
  padding: 10px;
  border-top-right-radius: 30px;
}
.closeModal:hover,
.closeModal:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.blurbInformation {
  padding-left: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  /*border-left: 2px solid #efb810;*/
}
.informationChampion p {
  text-align: justify;
  font-size: 16px;
  line-height: 130%;
  padding-right: 25px;
}

.informationChampion {
  display: flex;
  padding-top: 20px;
}

/* main */
main {
  padding-top: 100px;
  text-align: center;
}
.mainSliderLol {
  align-items: center;
  display: inline-block;
}

main .mainCardsLol {
  padding-top: 1050px;
}
/*tableStats*/

/* sectionElementRol*/
.sectionElementRol {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.sectionElementRol div:first-child {
  display: inline-flex;
  align-items: center;
  font-size: 50px;
  font-weight: bold;
  margin-left: 10px;
  text-shadow: -4px 3px 0 #efb810;
}
.sectionElementRol img {
  width: 65px;
  margin: 20px 0 20px 0;
}

/** search & order **/
.searchLol {
  display: flex;
  align-items: center;
}
.searchLol input {
  padding: 0 20px 0 20px;
  font-size: 16px;
  margin-left: 20px;
  border-radius: 8px;
  /* text-transform: uppercase; */
}

/** orderChampionsLol **/
#orderChampionsLol {
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  flex-wrap: wrap;
}
#alphabeticalOrder {
  margin: 10px 27px 10px 8px;
}

/**** TABLE ********/
#tableStats {
  display: none;
  background-image: url(./images/fondomapa2.jpg);
  background-attachment: fixed;
  flex-wrap: wrap;
}

.championsStatsTable {
  background: #202328;
  color: #fff;
  margin: 50px;
  border-collapse: collapse;
}
.championsStatsTable thead {
  /*table-layout: fixed;*/
  /*background: #202328 !important;
  width: 500px;*/
  text-shadow: 0px 3px 3px #109fef;
}

#tablebody tr {
  /*display: block;*/
  border-bottom: 1px solid #fff;
}
#tablebody td {
  /*float: left;*/
  padding: 10px 5px 10px 5px;
}

.championsStatsTable td:nth-child(2) {
  /*display: block;
  position: relative;*/
  color: #efb810;
}

.championsStatsTable thead tr th {
  /*float: left;*/
  padding: 15px 5px 15px 5px;
}

/**** FIN *********/

/**** tabla porcentaje ***/
.championsPercentageTable {
  height: 50px;
  margin-top: 50px;
  margin-left: 50px;
  background: #202328;
}
.championsPercentageTable thead {
  color: #fff;
  text-shadow: 0px 3px 3px #109fef;
}
.championsPercentageTable thead tr th {
  padding: 15px 5px 15px 5px;
}
.championsPercentageTable tbody select {
  border: none;
  background: transparent;
  color: #efb810;
}
.championsPercentageTable tbody tr td {
  padding: 10px 5px 10px 5px;
}
#tdPorcentaje {
  color: #fff;
}
/* video */
video {
  object-fit: cover;
  width: 100vw;
  height: 80vh;
}
article {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
article img {
  margin-top: 12%;
  width: 50vw;
  max-width: 100vw;
}
.videoText {
  position: absolute;
  width: 100%;
  font-size: 50px;
  letter-spacing: 3px;
  color: #fff;
  /* font-family: Oswald, sans-serif; */
  text-shadow: 1px 1px 1px #16a085, 1px 1px 4px #2980b9;
  text-align: center;
}

/* media query, min-width ancho igual o superior a 1200px */ /* pantallas grandes */

@media only screen and (max-width: 600px) {
  .buttonMenu {
    display: inline-flex;
  }
  .menu {
    height: 65px;
  }
  .menuItems {
    position: fixed;
    width: 100vw;
    height: calc(100% - 65px);
    background: #202328;
    top: -150vh;
    text-align: center;
    transform: all 0.4s;
    flex-direction: column;
  }
  .menuItems li {
    margin: 10px 0 0 0;
    line-height: 30px;
  }
  .menuItems li a:hover {
    color: #efb810;
  }
  .menuItems li a {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
  }
  .menuItems li:hover {
    background: none;
  }
  .menu .logoInformation {
    font-size: 18px;
    padding-left: 10px;
  }
  .logo {
    padding-left: 20px;
  }
  .subMenu {
    position: relative;
  }
  .subMenu li a {
    font-size: 14px;
  }
  .mainSliderLol {
    margin-top: -34px;
  }
  video {
    object-fit: cover;
    width: 100vw;
    height: 65vh;
  }
  article {
    top: 50px;
  }
  .videoText {
    font-size: 30px;
  }
  article img {
    width: 65vw;
  }
  #mainContainer .bannerLol {
    font-size: 18px;
    padding: 15px 0 15px 0;
  }
  #mainCardsLol .boxCardsRoles,
  .faceCardsLol,
  .backOfCardsLol {
    width: 299px;
    height: 235px;
  }
  #mainCardsLol .boxCardsRoles p,
  .faceCardsLol p,
  .backOfCardsLol {
    padding: 0 5px 0 0;
    font-size: 20px;
  }
  .boxCardsRoles img {
    width: 293px;
  }
  .sectionElementRol img {
    width: 14vw;
    margin: 0px 0 18px 0;
  }
  .infoChampions {
    font-size: 16px;
    margin-top: 10px;
  }
  .modalChampionContent {
    width: 75vw;
  }
  .headerModal {
    width: 75vw;
  }
  .bodyModal {
    flex-wrap: wrap;
    justify-content: center;
    height: 80vh;
    width: 75vw;
  }
  .bodyModal img {
    width: 60vw;
    height: 30vh;
  }
  .bodyModal p {
    font-size: 16px;
  }
  .bodyModal h1 {
    font-size: 26px;
  }
  .bodyModal .informationChampion {
    flex-wrap: wrap;
    padding: 0;
  }
  .bodyModal .informationChampion p {
    font-size: 14px;
  }
  .sectionElementRol div:first-child {
    font-size: 35px;
  }
  footer {
    height: 60px;
  }

  footer section {
    margin-top: 20px;
    font-size: 15px;
  }
  .tableScroll {
    overflow-x: auto;
    display: flex;
    justify-content: center;
  }
}

@media only screen and (max-width: 992px) {
  .buttonMenu {
    display: inline-flex;
  }
  .menu {
    height: 65px;
  }
  .menuItems {
    position: fixed;
    width: 100vw;
    height: calc(100% - 65px);
    background: #202328;
    top: -150vh;
    text-align: center;
    transform: all 0.4s;
    flex-direction: column;
  }
  .menuItems li {
    margin: 10px 0 0 0;
    line-height: 30px;
  }
  .menuItems li a:hover {
    color: #efb810;
  }
  .menuItems li a {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
  }
  .menuItems li:hover {
    background: none;
  }
  .menu .logoInformation {
    font-size: 18px;
    padding-left: 10px;
  }
  .logo {
    padding-left: 20px;
  }
  .subMenu {
    position: relative;
  }
  .subMenu li a {
    font-size: 14px;
  }
  .mainSliderLol {
    margin-top: -34px;
  }
  video {
    object-fit: cover;
    width: 100vw;
    height: 60vh;
  }
  article {
    top: 50px;
  }
  .videoText {
    font-size: 30px;
  }
  article img {
    width: 55vw;
  }
  #mainContainer .bannerLol {
    font-size: 18px;
    padding: 15px 0 15px 0;
  }
  /* #mainCardsLol .boxCardsRoles,
  .faceCardsLol,
  .backOfCardsLol {
    width: 299px;
    height: 235px;
  } */
  #mainCardsLol .boxCardsRoles p,
  .faceCardsLol p,
  .backOfCardsLol {
    padding: 0 5px 0 0;
    font-size: 20px;
  }
  /* .boxCardsRoles img {
    width: 293px;
  } */
  .sectionElementRol img {
    width: 10vw;
    margin: 0px 0 18px 0;
  }
  .infoChampions {
    font-size: 16px;
    margin-top: 10px;
  }
  .modalChampionContent {
    width: 75vw;
  }
  .headerModal {
    width: 75vw;
  }
  .bodyModal {
    flex-wrap: wrap;
    justify-content: center;
    height: 75vh;
    width: 75vw;
  }
  .bodyModal img {
    width: 60vw;
    height: 30vh;
  }
  .bodyModal p {
    font-size: 20px;
  }
  .bodyModal h1 {
    font-size: 26px;
  }
  .bodyModal .informationChampion {
    flex-wrap: wrap;
    padding: 0;
  }
  .bodyModal .informationChampion p {
    font-size: 20px;
  }
  .sectionElementRol div:first-child {
    font-size: 35px;
  }
  footer {
    height: 60px;
  }

  footer section {
    margin-top: 20px;
    font-size: 15px;
  }
  .tableScroll {
    overflow-x: auto;
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 1360px) {          
  #mainCardsLol {
    padding: 0px 0px 0px;
  }
  .mainSliderLol article img {
    margin-top: 10%;
  }
  .menuItems li {
    margin: 0px 20px;
  }
  .menuItems li a {
    font-size: 18px;
  }
  .menu .logoInformation {
    font-size: 22px;
  }
}
@media (min-width: 1360px) and (max-width: 1440px) {
  #mainCardsLol {
    padding: 0px 170px 0px;
  }
  .mainSliderLol article img {
    margin-top: 18%;
  }
  .menuItems {
    margin-right: 50px;
  }
  .menuItems li {
    margin: 0px 20px;
  }
  .menuItems li a {
    font-size: 22px;
  }
  .menu .logoInformation {
    font-size: 22px;
  }
}

@media (min-width: 1440px) {
  #mainCardsLol {
    padding: 0px 210px 0px;
  }
  .mainSliderLol article img {
    margin-top: 15%;
  }
  .menuItems {
    margin-right: 50px;
  }
  .menuItems li {
    margin: 0px 20px;
  }
  .menuItems li a {
    font-size: 24px;
  }
  .menu .logoInformation {
    font-size: 24px;
  }
}
