/* ------------------ arp quests ------------------ */
.arp-quest {
    padding: 0 15px;
    margin-bottom: 40px;
    position: relative;
    max-width:1920px;
}

.arp-quest__main {
    padding: 5px !important;
    overflow: hidden;
}

.arp-quest__main .quest-description {
    margin-top: 15px;
}

.arp-quest__content {
    padding: 50px;
}

.arp-quest__main-image {
    max-width: 50%;
}

.arp-quest__details {
  align-items: center;
  margin: 0;
}

.arp-quest__divider {
    width: 100%;
    height: 1px;
    background-color: hsla(165,6%,86%,0.4);
    margin-top: .5rem;
    margin-bottom: .5rem;
}

.arp-quest__content .btn {
    background-color: #fff;
    border-color: #000;
    padding-left: 30px;
    padding-right: 30px;
}

.arp-quest__play,
.arp-quest__timer,
.arp-quest__prizes,
.arp-quest__footer {
  text-align: center;
}

@media(max-width:567px) {
    .arp-quest .media {
        flex-direction: column;
    }

    .arp-quest .media-body {
        margin-top:1em;
    }

    .arp-quest__main-image {
        max-width:100%;
        display:block;
    }

    .arp-quest__content {
        padding:unset;
    }
}

@media(min-width:768px) {
    .arp-quest {
        padding: 0 70px;
    }
}

@media(max-width:768px) {
  .arp-quest__timer {
    margin-bottom: 10px;
  }
}

.arp-quest__footer a {
  color: inherit !important;
}

.arp-quest__content .game-end-wrapper {
  line-height: 1;
}

@media(min-width:1440px) {
  .arp-quest__content .game-end-wrapper {
    font-size: 1.2rem;
  }
}

.arp-quest__content .game-ends {
  font-weight: bold;
}

.arp-quest__prize {
  border-left: 1px dashed hsla(165,6%,86%,0.4);
  padding-top: 5px;
  padding-bottom: 5px;
}

.arp-quest__prize:nth-last-child(n+3) {
  border-bottom: 1px solid hsla(165,6%,86%,0.4);
}

@media(max-width:1200px) {
  .arp-quest__prize:nth-child(odd) {
    border-left: none;
  }
}

.arp-quest__prize-wrapper {
  align-items: center;
  display: flex;
  height: 100%;
}

.arp-quest__game-modal {
    top: 0;
    bottom: 0;
    left: 0;
    right: -5000px;
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.arp-quest__game-modal.toggled {
  right: 0;
  opacity: 1;
  position: relative;
  z-index: 1;
}

.arp-quest__game-modal .close {
    position: absolute;
    top: 2px;
    right: 7px;
}

.arp-quest__game-modal-content {

    height: 100%;
}

.arp-quest__leaderboard {
    margin-top: 50%;
    transform: translateY(-50%);
}

.arp-quest__leaderboard-title {
  text-transform: uppercase;
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 2px solid hsla(165,6%,86%,0.4);
}

.arp-quest__leaderboard-list {
  counter-reset: number;
  list-style-type: none;
  padding-left: 0;
  font-size: 0.9rem;
}

.arp-quest__leaderboard-list li {
  padding-top: 5px;
  padding-bottom: 5px;
}

.arp-quest__leaderboard-list li:not(:last-child) {
  border-bottom: 1px solid hsla(165,6%,86%,0.4);
}

.arp-quest__leaderboard-list li:before {
  counter-increment: number;
  font-weight: bold;
  content: counter(number);
}

.arp-quest__leaderboard-list-item:before {
  content: "\2022""\a0";
}

.arp-quest__btn-sideways {
  position: absolute;
  top: 6rem;
  height: 100%;
  padding: 15px 0px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 60px;
  background-color: hsla(240, 1%, 16%, 0.8);
  color: hsla(0, 0%, 100%, 1) !important;
  transition: all 0.5s cubic-bezier(0.5, 0.05, 0.6, 0.2);
  opacity: 0;
  pointer-events: none;
  max-height: 600px;
}

.arp-quest__btn-sideways.previous {
  left: 0;
  transform: translateX(-50px);
}

.arp-quest__btn-sideways.next {
  right: 0;
  transform: translateX(50px);
}

.arp-quest__btn-sideways.previous.active, .arp-quest__btn-sideways.next.active {
  pointer-events: auto;
  transform: translateX(0);
  opacity: 1;
  z-index: 2;
}

.arp-quest__btn-sideways__label {
  writing-mode: vertical-lr;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  transform: rotate(180deg) translateX(50%) translateY(50%);
  font-family: 'AlienwareLight', sans-serif;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.5rem;
}

.arp-quest__prize img {
  max-height: 100px;
}

.arp-quest__comments-wrapper {
  background-color:white;
  padding:1rem;
  margin-bottom:2rem;
}