@import url(https://fonts.googleapis.com/css?family=Nunito);* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

ul {
  list-style: none;
  padding: 0;
}

#app,
body {
  background: #222;
}

#app {
  display: grid;
  grid-template-rows: auto auto auto;
  grid-template-columns: 100%;
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label,
li {
  color: #fff;
}

label,
button {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

label sup,
label small {
  font-weight: 300;
  text-transform: lowercase;
}

h6 {
  font-weight: 200;
  text-transform: uppercase;
}

iframe {
  width: 100%;
}

small {
  color: #fff;
  font-weight: 200;
  margin-top: -10px;
}

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

.super-heading {
  background: linear-gradient(#e5e5e5, #cccccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
  -webkit-text-stroke: 1px #e5e5e5;
}

.logout {
  display: flex;
}

.logout a,
.logout button {
  background: #3c3c3c;
  border: none;
  color: #fff;
  display: block;
  flex: 1;
  padding: 10px;
  text-align: center;
  width: 50%;
}

.logout a {
  background: #e5e5e5;
  color: rgb(47, 47, 47);
}

/* Errors List */

.errors-list {
  background: rgba(214, 35, 35, 0.4);
  border-radius: 8px;
  border: 1px solid #d62323;
  padding: 10px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.errors-list ul {
  list-style: disc;
  margin: 0;
  padding-left: 20px;
}

.errors-list ul li {
  color: #e97676;
}

/* Page Specific Styles */

header {
  display: grid;
  grid-template-columns: 150px auto;
  padding: 10px;
}

header .burger {
  cursor: pointer;
  margin-left: auto;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}

@media screen and (min-width: 768px) {
  header .burger {
    display: none;
  }
}

header .burger i {
  color: #fff;
  font-size: 40px;
}

header .burger:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

header .logo-nav {
  margin-top: 10px;
}

header .logo-nav img {
  height: 65px;
}

@media screen and (min-width: 992px) {
  header .logo-nav img {
    height: 90px;
  }
}

header nav {
  grid-column: 1/span 2;
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  padding: 0 5px;
  transition: max-height 0.5s linear;
  -webkit-transition: max-height 0.5s linear;
  -moz-transition: max-height 0.5s linear;
  -ms-transition: max-height 0.5s linear;
  -o-transition: max-height 0.5s linear;
}

@media screen and (min-width: 768px) {
  header nav {
    grid-column: 2/span 1;
    max-height: 150px;
    overflow: visible;
  }
}

header nav.expand {
  max-height: 400px;
}

header nav ul {
  align-items: center;
  color: #e5e5e5;
  height: 100%;
  justify-content: flex-end;
  margin-top: auto;
  margin-right: 0;
  max-width: 600px;
  list-style: none;
}

@media screen and (min-width: 768px) {
  header nav ul {
    display: flex;
    margin-left: auto;
  }
}

header nav ul li {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1.5px;
  margin-top: 20px;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  header nav ul li {
    margin-top: 0;
    margin-left: 20px;
  }
}

@media screen and (min-width: 992px) {
  header nav ul li {
    font-size: 13px;
    margin-left: 40px;
  }
}

header nav ul li a {
  display: block;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

header nav ul li a,
header nav ul li a:hover {
  font-style: none;
  color: inherit;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  header nav ul li a:hover {
    transform: scale(1.4);
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
  }
}

@media screen and (min-width: 992px) {
  header nav ul li a:hover {
    transform: scale(1.4);
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
  }
}

header nav ul li h4 {
  display: inline-flex;
  font: inherit;
  margin-bottom: 0;
}

header nav ul li h4 i {
  margin-left: 4px;
}

#multilang {
  position: absolute;
  right: 10px;
  top: calc(50% - -40px);
}

@media screen and (min-width: 576px) {
  #multilang {
    right: 20px;
    top: 20px;
  }
}

#multilang form {
  display: none;
}

#multilang .icon {
  border: 3px solid #c99f2f;
  border-radius: 50%;
  cursor: pointer;
  height: 45px;
  padding: 0;
  transition: all 0.3s ease;
  width: 45px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

#multilang .icon:hover {
  box-shadow: 0 0 10px 0 #fcfbc5;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

#multilang .icon img {
  height: 100%;
  margin: 0;
  max-width: none;
  width: 100%;
}

#multilang .language-select {
  max-height: 0;
  margin-top: 7px;
  overflow: hidden;
  padding-top: 5px;
}

#multilang .language-select.on {
  max-height: 100px;
}

#multilang .language-select li {
  border-radius: 50%;
  cursor: pointer;
  height: 32px;
  margin: 0 auto 5px;
  transition: all 0.3s ease;
  width: 32px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

#multilang .language-select li:hover {
  box-shadow: 0 0 7px 0 #fcfbc5;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

#multilang .language-select li img {
  height: 100%;
  max-width: none;
  width: 100%;
}

.expand-nav {
  background: rgba(34, 34, 34, 0.3);
  max-height: 0;
  left: -15px;
  list-style: none;
  overflow: hidden;
  padding: 0;
  top: 100%;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

@media screen and (min-width: 768px) {
  .expand-nav {
    position: absolute;
    width: 150%;
  }
}

.expand-nav.expand {
  margin-top: 20px;
  max-height: 150px;
}

.expand-nav.expand:before,
.expand-nav.expand:after {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .expand-nav.expand a:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
}

.expand-nav:before,
.expand-nav:after {
  background: #fff;
  content: "";
  display: block;
  height: 2px;
  margin: auto;
  transition: width 0.7s ease;
  width: 0;
  -webkit-transition: width 0.7s ease 0.3s;
  -moz-transition: width 0.7s ease;
  -ms-transition: width 0.7s ease;
  -o-transition: width 0.7s ease;
}

.expand-nav li {
  margin: 10px 0 0 5px;
}

.expand-nav li:last-child {
  margin-bottom: 10px;
}

.home-intro {
  padding: 20px;
}

.home-intro img {
  margin-left: auto;
  max-width: 400px;
  width: 80%;
}

.home-intro h2 {
  color: #fff;
  font-size: 22px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.home-intro h4 {
  color: rgb(47, 47, 47);
  background: linear-gradient(#e5e5e5, #b2b2b2);
  border-radius: 4px;
  font-size: 17px;
  padding: 4px 8px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

@media screen and (min-width: 992px) {
  .home-intro h4 {
    font-size: 24px;
  }
}

.events {
  min-height: 600px;
}

.events h3 {
  color: #e5e5e5;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.event-lister {
  display: grid;
  grid-row-gap: 50px;
  grid-template-columns: repeat(3, 28%);
  justify-content: space-evenly;
}

.event-lister .event-item {
  border-radius: 4px;
  box-shadow: 0 0 18px 0 #222;
  overflow: hidden;
  transition: 0.3s all ease;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
}

.event-lister .event-item,
.event-lister .event-item:hover {
  text-decoration: none;
}

.event-lister .cover img {
  width: 100%;
}

.event-lister .content {
  background: #fff;
  padding: 4px 8px;
}

.event-lister .content h3 {
  color: rgb(47, 47, 47);
  font-size: 18px;
  text-align: left;
}

.event-lister .heading {
  display: flex;
  justify-content: space-between;
}

.event-lister .heading span {
  color: #7c7c7c;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 20px;
}

footer {
  background: linear-gradient(#222, rgb(47, 47, 47));
  display: flex;
  flex-direction: column;
  text-align: cetner;
}

footer h5,
footer p {
  text-align: center;
}

footer h5 {
  color: #fff;
}

footer p {
  color: #e5e5e5;
  font-size: 13px;
  margin: 0;
}

footer ul {
  display: flex;
  justify-content: center;
}

footer ul li {
  margin: 0 10px;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a i {
  font-size: 30px;
}

.static-payouts .po-img {
  max-width: 800px;
  width: 80%;
}

.static-payouts .po-img img {
  width: 100%;
}

.line-break {
  border-top: 1px solid rgba(255, 255, 255, 0.2666666667);
  margin: 20px auto;
  max-width: 800px;
  width: 80%;
}

.web-cover {
  position: relative;
  background-image: linear-gradient(#111, #111), linear-gradient(#111, #111);
  background-size: 100% 4px, 100% 100%;
  background-repeat: no-repeat;
  background-position: bottom;
}

@media screen and (min-width: 768px) {
  .web-cover {
    background-size: 100% 8px, 100% 100%;
  }
}

.web-cover img {
  margin: auto;
  display: block;
  max-height: 200px;
  max-width: 90%;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
}

.swiper-pagination-bullet {
  background: #fff !important;
}

.bg-winners {
  background-image: url(/images/bg.jpg?97433f4fe115d73ad2dd035790b513f7);
  background-size: cover;
  background-position: center;
}

.winners-list {
  padding: 100px 0;
}

.winners-wrapper .winner-item {
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgb(47, 47, 47);
  border-radius: 4px;
  padding: 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.winners-wrapper .winner-item .img {
  margin-bottom: 10px;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.winners-wrapper .winner-item .img img {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.winners-wrapper .winner-item h4,
.winners-wrapper .winner-item p {
  text-align: center;
}

.winners-wrapper .winner-item h4 {
  color: #c99f2f;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.winners-wrapper .winner-item p {
  color: #b5b5b5;
  font-size: 12px;
}

.winners-wrapper .winner-item ul {
  margin: 0;
  padding: 0;
}

.winners-wrapper .winner-item ul li {
  align-items: center;
  background: rgba(47, 47, 47, 0.25);
  border-radius: 4px;
  color: #b5b5b5;
  display: flex;
  margin: 4px 0;
  padding: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.winners-wrapper .winner-item ul li strong {
  color: #d9d9d9;
  display: inline-block;
  margin-left: auto;
  text-transform: capitalize;
}

.winners-wrapper .winner-item ul li img {
  margin-right: 4px;
  width: 30px;
}

.payouts-banner {
  align-items: center;
  background: linear-gradient(90deg, #BD8A16, #E8D468, #FDFBCA, #EAD674, #C59825);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .payouts-banner {
    flex-direction: row;
    justify-content: space-between;
    padding: 4px 40px;
  }
}

.payouts-banner h4,
.payouts-banner li,
.payouts-banner ul {
  padding: 0;
  margin: 0 23px 0 0;
}

.payouts-banner h4,
.payouts-banner li {
  color: #222;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .payouts-banner h4,
  .payouts-banner li {
    font-size: 24px;
  }
}

.payouts-banner li {
  background-color: #111;
  border-radius: 4px;
  height: 35px;
  line-height: 35px;
  margin: 2px;
  text-align: center;
  width: 35px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.payouts-banner ul {
  display: flex;
}

.payouts-ticker {
  overflow: hidden;
}

.payouts-ticker li {
  animation-fill-mode: forwards;
  color: #dbb346;
  position: relative;
}

.payouts-ticker li.tick {
  animation: tick 1s normal;
  -webkit-animation: tick 1s normal;
}

.payouts-ticker li.tick:nth-child(2) {
  animation-duration: 1.5s;
}

.payouts-ticker li.tick:nth-child(3) {
  animation-duration: 1s;
}

.payouts-ticker li.tick:nth-child(4) {
  animation-duration: 0.6s;
}

.payouts-ticker li.tick:nth-child(6) {
  animation-duration: 0.18s;
}

.payouts-ticker li.tick:nth-child(7) {
  animation-duration: 0.12s;
}

.payouts-ticker li.tick:nth-child(8) {
  animation-duration: 0.08s;
}

.rules-index li {
  background: linear-gradient(#fff, #e5e5e5);
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  color: rgb(47, 47, 47);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  text-transform: uppercase;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.rules-index li.active {
  background: linear-gradient(rgb(47, 47, 47), #222);
  border: 1px solid #626262;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .rules-container {
    display: grid;
    grid-template-columns: 25% 75%;
  }
}

.rules-container h2 {
  grid-column: 1/span 2;
  margin-bottom: 30px;
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .rules-container h2 {
    margin-bottom: 80px;
    margin-top: 80px;
  }
}

@media screen and (min-width: 768px) {
  .rules-container ul {
    padding-right: 20px;
  }
}

.rules-container [data-item] {
  display: none;
}

.rules-container article {
  background: linear-gradient(#fff, #e5e5e5);
  border: 1px solid rgb(47, 47, 47);
  border-radius: 4px;
  padding: 5px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .rules-container article {
    padding: 20px;
  }
}

.rules-container article p {
  color: rgb(47, 47, 47);
}

.rules-container article ul {
  list-style: square;
  margin-top: 5px;
  padding-left: 15px;
}

@media screen and (min-width: 768px) {
  .rules-container article ul {
    padding-left: 20px;
  }
}

.rules-container article li {
  border-radius: 4px;
  color: rgb(47, 47, 47) !important;
  margin-bottom: 5px;
  padding: 4px 8px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.rules-container article p,
.rules-container article li {
  font-size: 13px;
}

.smoothcomp-coupon-wrapper {
  height: 100vh;
  left: 0;
  overscroll-behavior: contain;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 9;
}

.smoothcomp-coupon {
  background: linear-gradient(rgb(47, 47, 47), #222);
  border: 1px solid #626262;
  border-radius: 8px;
  box-shadow: 0 0 1000px 1000px rgba(47, 47, 47, 0.4), 0 0 100px 20px rgba(255, 255, 255, 0.4);
  left: 50%;
  max-height: 90vh;
  max-width: 800px;
  overflow-y: scroll;
  overscroll-behavior: none;
  padding: 20px;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: 10;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.smoothcomp-coupon .invalid-feedback {
  display: block;
  font-size: 12px;
  height: 14px;
  margin-top: -2px;
  width: 100%;
}

.smoothcomp-coupon label {
  font-size: 13px;
  font-weight: 400;
  text-transform: capitalize;
}

.smoothcomp-coupon input,
.smoothcomp-coupon textarea,
.smoothcomp-coupon select {
  font-size: 0.9em;
  padding: 4px 6px;
}

.smoothcomp-coupon a {
  color: #fff;
  text-decoration: underline;
}

.smoothcomp-coupon button {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.smoothcomp-coupon img {
  display: block;
  max-height: 120px;
  margin: 0px auto 20px;
}

.success-alert i {
  color: #378a2b;
  display: block;
  font-size: 180px;
  margin-bottom: -50px;
}

.rankings-table img {
  height: 20px;
}

.rankings-nav {
  display: flex;
  margin: 0;
  padding: none;
}

.rankings-nav li {
  background: linear-gradient(#fff, #e5e5e5);
  border-radius: 10px 10px 0 0;
  color: rgb(47, 47, 47);
  cursor: pointer;
  flex: 1;
  font-size: 11px;
  font-weight: 700;
  margin: 5px 5px 0;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
}

.rankings-nav li a {
  color: inherit;
  display: inline-block;
  width: 100%;
}

.rankings-nav li.active {
  background: linear-gradient(rgb(47, 47, 47), #222);
  color: #fff;
}

.no-livestreams {
  align-items: center;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.no-livestreams .img {
  background: #090909;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.no-livestreams h3 {
  color: rgb(79, 79, 79);
  font-weight: 700;
  text-transform: uppercase;
}

.no-livestreams p {
  background: linear-gradient(90deg, transparent, #090909, transparent);
  color: rgb(79, 79, 79);
  padding: 4px 70px;
}

.host-home {
  background: black;
  padding: 50px 0;
  text-align: center;
}

.host-home img {
  display: block;
  margin-bottom: 20px;
  width: 100%;
}

.host-home a {
  background: linear-gradient(#dbb346, #c99f2f, #fcfbc5);
  color: #222;
  font-weight: 700;
  text-transform: uppercase;
}

.host-events ul {
  list-style: disc;
  padding-left: 20px;
}

.host-main {
  background: url(/images/host_bg.png?76880683c406f4d71e6bc9c985051eb9);
  background-position: center;
  background-size: cover;
}

.host-text {
  background: #000;
  display: block;
  overflow: hidden;
  padding: 10px;
}

.host-text:hover img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.host-text img {
  display: block;
  margin: auto;
  max-height: 150px;
  max-width: 100%;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}

@keyframes tick {
  0% {
    color: #111;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }

  50% {
    transform: translateY(120%);
    -webkit-transform: translateY(120%);
    -moz-transform: translateY(120%);
    -ms-transform: translateY(120%);
    -o-transform: translateY(120%);
  }

  51% {
    color: #dbb346;
    transform: translateY(-120%);
    -webkit-transform: translateY(-120%);
    -moz-transform: translateY(-120%);
    -ms-transform: translateY(-120%);
    -o-transform: translateY(-120%);
  }

  100% {
    color: #dbb346;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}

.ranking_iframe {
  height: 90vh;
}

