body {
  font-family: Exo-Regular!important;
}

.description {
  font-size: 12px;
  margin: 15px 0;
  display: block;
}

h1 {
  font-size: 40px;
  line-height:48px;
}

body {
  background-image: url("../scripts/img/bg2.jpg");
}

#more-info-text,
.round-changes {
  background: rgba(68, 124, 255, 0.2);
  padding: 15px;
}

.button-link.discord-link {
  color:white;
  margin-top:8px;
}

.dismiss {
  cursor: pointer;
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 18px;
}
.action-table tr:first-child {
  color: #007bff;
}

.custom-margin {
  margin-bottom: 36px;
}
.page-message {
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  display: block !important;
  text-align: center;
}

#new-round {
  background: rgba(68, 124, 255, 0.2);
  text-align: center;
  margin-bottom: 15px;
  padding: 10px 5px;
}

#slideshow {
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide {
  display: none;
  width: 600px;
  height: 296px;
}
.slide.show {
  display: block;
}
.slide:first-child {
  background: url("../scripts/img/slide1.jpg") no-repeat top center / contain
    transparent;
}
.slide:nth-child(2) {
  background: url("../scripts/img/slide2.jpg") no-repeat top center / contain
    transparent;
}
.slide:nth-child(3) {
  background: url("../scripts/img/slide3.jpg") no-repeat top center / contain
    transparent;
}

@media only screen and (max-width: 768px) {
  .slide {
    width: 500px;
    height: 246px;
  }
  .custom-margin {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 640px) {
  .slide {
    width: 300px;
    height: 148px;
  }
}

/* sections css */
@media only screen and (min-width: 1024px) {
  .hidden-col {
    position: relative;
    min-height: 550px;
   
  }

  .hidden-col.with-style {

  }
  .hidden-section:not(#login) {
    border: 2px solid white;
    background: rgba(4, 18, 51, 0.5);
  }

  .hidden-section {
    position: absolute;
    background-color: transparent;
    top: 0;
    left: 0;
    transform: translateX(-10%);
    transition: 0.3s;
    margin-top: 0;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    opacity: 0;
    z-index: -1;
    text-align: left;
    overflow: auto;
  }
  .hidden-section.active-section {
    opacity: 1;
    transform: translateX(0%);
    z-index: 1;
  }

  /* #login carries offset-lg-2 in the markup - margin-left: 16.667% - which meant
     something while these blocks were in normal flow. .hidden-section above takes
     them out of flow at left: 0 with a full-column width, so that margin no longer
     offsets the block against anything: it just shifts it 16.667% right and pushes
     it out of its own column. The block is text-center, so its text landed right of
     centre with an empty gap to its left.

     Only inside this media query, because that is the only place .hidden-section is
     absolute. Between 992px (where d-lg-block reveals #login) and 1024px the blocks
     are still in normal flow and the offset is still doing its job.

     Scoped with .landing-page so it beats .offset-lg-2 on specificity rather than on
     which stylesheet happens to load last. */
  .landing-page .hidden-section {
    margin-left: 0;
  }
}

.side-menu-col a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: black;
  display: flex;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  align-items: center;
  justify-content: center;
  color: white !important;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
}

#landing-loader {
  height: 100vh;
  width: 100vw;
  background: black;
  position: fixed;
  top: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.loading-wrapper {
  width: 150px;
  height: 150px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loading-wrapper::before,
.loading-wrapper::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  animation: clipMe2 5s linear infinite;
  content: "";
  z-index: -1;
  margin: -5%;
  box-shadow: inset 0 0 0 2px #007bff;
}
.loading-wrapper::before {
  animation-delay: -2s;
}

.button-wrapper {
  width: 80px;
  height: 80px;
  position: relative;
  margin-bottom: 15px;
}
.button-wrapper::before,
.button-wrapper::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.button-wrapper.active:before,
.button-wrapper.active:after {
  animation: clipMe 8s linear infinite;
  content: "";
  z-index: -1;
  margin: -5%;
  box-shadow: inset 0 0 0 2px #007bff;
}

.button-wrapper.active::before {
  animation-delay: -4s;
}

@keyframes clipMe {
  0%,
  100% {
    clip: rect(0px, 88px, 2px, 0px);
  }
  25% {
    clip: rect(0px, 2px, 88px, 0px);
  }
  50% {
    clip: rect(86px, 88px, 88px, 0px);
  }
  75% {
    clip: rect(0px, 88px, 88px, 86px);
  }
}

@keyframes clipMe2 {
  0%,
  100% {
    clip: rect(0px, 165px, 2px, 0px);
  }
  25% {
    clip: rect(0px, 2px, 165px, 0px);
  }
  50% {
    clip: rect(160px, 165px, 165px, 0px);
  }
  75% {
    clip: rect(0px, 165px, 165px, 160px);
  }
}

/* end sections css */
