@import url(https://fonts.googleapis.com/css?family=Oswald&display=swap);body {
  background: #000;
}

button:focus {
  outline: none;
}

.tab-container {
  width: 100%;
}

.tab-container .tab-content-wrapper {
  width: 100%;
  overflow: hidden;
}

.tab-container .tab-content-wrapper .tab-content-scroll {
  position: relative;
}

.tab-container .tab-content-wrapper .tab-content {
  width: 100vw;
}

.tab-container .tab-navigator .navigator-item {
  margin: 0 10px;
}

.btn-lol {
  border: 3px solid transparent;
  background: #1e2328;
  -webkit-border-image: -webkit-gradient(linear, left top, left bottom, from(#08abac), to(#01698b)) 1;
  -webkit-border-image: linear-gradient(#08abac, #01698b) 1;
       -o-border-image: linear-gradient(#08abac, #01698b) 1;
          border-image: -webkit-gradient(linear, left top, left bottom, from(#08abac), to(#01698b)) 1;
          border-image: linear-gradient(#08abac, #01698b) 1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  text-transform: uppercase;
  font-size: 18px;
  color: #f0e6d2;
  font-family: "Beaufort";
  padding: 0.5rem 3rem;
  font-weight: 700;
}

.btn-lol.active,
.btn-lol:hover {
  background-image: url(https://gh.imlucas.com.br/hextech-css/dist/img/btn.jpg);
  background-position: center center;
  background-size: cover;
  box-shadow: 0 0 10px 4px rgba(192, 252, 253, 0.4), inset 0 0 5px 2px rgba(192, 252, 253, 0.3);
  border: 3px solid rgba(192, 252, 253, 0.75);
  cursor: pointer;
}

.list-ranking {
  list-style: none;
  margin: 2rem 0 0 0;
  padding: 0;
}

.list-ranking .list-item {
  width: 100%;
  height: 120px;
  background: -webkit-gradient(linear, left top, right top, from(#021122), to(#052952));
  background: linear-gradient(to right, #021122 0%, #052952 100%);
  border: 1px solid #515462;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-bottom: 10px;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  box-shadow: #0c213a 2px 2px 5px;
  cursor: pointer;
}

.list-ranking .list-item:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 1s;
  transition: 1s;
  z-index: 5;
  margin: 20px 0;
  background: #112339;
}

.list-ranking .list-item:hover .rank {
  color: #173047;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.list-ranking .list-item .rank {
  font-size: 110px;
  line-height: 102px;
  position: absolute;
  bottom: 0;
  left: -5px;
  font-weight: 700;
  color: #17304759;
  font-family: "Oswald", sans-serif;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.list-ranking .list-item .infomation {
  color: #fff;
  z-index: 2;
  position: absolute;
  top: 25px;
  left: 30px;
}

.list-ranking .list-item .infomation .name {
  font-size: 18px;
  font-weight: 700;
}

.list-ranking .list-item .infomation .title {
  font-size: 14px;
}

.list-ranking .list-item .infomation .count {
  font-size: 13px;
  font-style: italic;
}

.list-ranking .list-item .image {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: auto;
  border-radius: 15px;
  padding: 10px;
}

@media only screen and (max-width: 1200px) {
  .list-ranking {
    margin: 80px 0 0 0;
  }
}

@media only screen and (max-width: 400px) {
  .tab-container .tab-navigator .navigator-item {
    margin: 0;
  }
}

