:root {
  font-family: "Sawarabi Gothic", sans-serif;
  --text-first: #fafafa;
  --text-second: #000000;
  --first-color: #FDBB2C;
  --second-color: #fbbf3f;
  --third-color: #ffb107;
  --fourth-color: #002a79;
  --fifth-color: #002a78;
  --six-color: #2F2E2E;
  --g1: #004b8f;
  --g2: #ffb107;
}

body {
  background: #2f2e2e;
}

.btn-animated {
  margin: 15px 0;
  position: relative;
  display: flex;
}

.btn-animated .btn-items-animated {
  margin: 0 5px;
  width: 100%;
}

.text-link {
  letter-spacing: 3px;
}

.btn-animated .btn-items-animated a {
  text-decoration: none;
  width: 100%;
  padding: 10px 5px;
  color: #fff;
  background: -webkit-linear-gradient(top, hsl(0, 0%, 33%) 0%, #252525 100%);
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  position: relative;
  letter-spacing: 5px;
}

.btn-animated .btn-items-animated a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ad8585;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}

.btn-items-animated a span {
  position: absolute;
}

.btn-items-animated a span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(43, 8, 8, 0)),
    to(#0f0)
  );
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  -webkit-animation: 2s animateTop linear -1s infinite;
  animation: 2s animateTop linear -1s infinite;
}

.btn-items-animated a span:nth-child(2) {
  top: 0;
  right: 0;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(43, 8, 8, 0)),
    to(#0f0)
  );
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}

.btn-items-animated a span:nth-child(3) {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(43, 8, 8, 0)),
    to(#0f0)
  );
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}

.btn-items-animated a span:nth-child(4) {
  top: 0;
  left: 0;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(43, 8, 8, 0)),
    to(#0f0)
  );
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1 infinite;
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes beat {
  to {
    transform: scale(1.2);
  }
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.list-league {
  display: flex;
  cursor: pointer;
}

ul li img {
  width: 30px;
}

ul li a {
  color: black;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-left: 10px;
  color: white;
}

ul li a:hover {
  color: #fde818;
}

ul li.active a {
  color: #fde818;
}

#loader {
  position: absolute;
  background: white;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  z-index: +9999;
}

.loading {
  height: 100vh;
  overflow: hidden;
  position: fixed;
  margin-top: 0px;
}

.nav-bottom {
  position: fixed;
  bottom: 0;
  display: flex;
  z-index: 11;
  overflow: hidden;
  width: 100%;
  border-top: 3px solid var(--second-color);
}

.item-nav-bottom {
  background: linear-gradient(0deg, var(--g2) 0%, var(--first-color) 100%);
  color: var(--text-first);
  font-weight: bold;
  text-align: center;
  font-size: 0.8rem;
  padding: 0.3rem;
}

.item-nav-bottom:hover {
  background: linear-gradient(0deg, var(--first-color) 0%, var(--g2) 100%);
  cursor: pointer;
}

.item-nav-bottom p {
  margin: 0;
  padding: 0;
  margin-bottom: 0;
  letter-spacing: 1px;
}

.col {
  flex: 1 0 0%;
}
