/* Cube related */
#rightorwrong .scene {
  position: absolute;
  height: 80vh;
  min-width: calc(400px + 2rem);
  perspective: 1700px;
  z-index: 2;
  left: 10%;
}

#rightorwrong .cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
}

#rightorwrong .cube { transform: translateZ(-100px); }

#rightorwrong .cube__face {
  position: absolute;
  width: 350px;
  height: 80vh;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 24px;
  color: white;
  font-weight: bold;
}

#rightorwrong .cube-player, #rightorwrong .cube-result {
  width: 200px;
  height: 200px;
  background-color: black;
  background-size: cover;
  border-radius: 200px;
  border: 5px solid #70073e;
  background-position: center;
}


#rightorwrong .cube { transition: transform 0s; }
#rightorwrong .cube h2{
    margin-top: 2rem; margin-bottom: 2rem;
}


#rightorwrong .cube__face--front  {
    background-color: #310e68;
    background-image: linear-gradient(316deg, #310e68 0%, #5f0f40 74%);
    transform: rotateY(  20deg);
      -webkit-box-shadow:3px 0px 18px 0px black;  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
      -moz-box-shadow:   3px 0px 18px 0px black;  /* Firefox 3.5 - 3.6 */
      box-shadow:        3px 0px 18px 0px black;  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
  }
#rightorwrong .cube__face--right  { background: url('../img/characters/DrunkSteve.png'); transform: rotateY( 90deg); }
#rightorwrong .cube__face--back   { background-color: #833471; transform: rotateY(180deg); }
#rightorwrong .cube__face--left   { background: url('../img/characters/DrunkSteve.png'); background-size: cover; background-position: center; transform: rotateY(-90deg); }


#rightorwrong .cube__face--front  { transform: rotateY(  20deg) translateZ(175px); }
#rightorwrong .cube__face--right  { transform: rotateY( 110deg) translateZ(175px); }
#rightorwrong .cube__face--back   { transform: rotateY( 200deg) translateZ(175px); }
#rightorwrong .cube__face--left   { transform: rotateY(-70deg) translateZ(175px); }

#rightorwrong .cube.show-front  { transform: translateZ(-100px) rotateY(   0deg); }
#rightorwrong .cube.show-right  { transform: translateZ(-100px) rotateY( -90deg); }
#rightorwrong .cube.show-back   { transform: translateZ(-100px) rotateY(-180deg); }
#rightorwrong .cube.show-left   { transform: translateZ(-100px) rotateY(  90deg); }

#rightorwrong label { margin-right: 10px; }

#rightorwrong {
  background-image: url('../img/backdrops/bar2.jpg');
  background-size: cover;
}

.scrollbar {
  width: 70vw;
  height: 70vh;
  background: linear-gradient(to bottom right, #f3f3f3 46%, #ff8ab3 100%);
  margin-left: -50px;
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Righteous', sans-serif;
  overflow: hidden;
  box-shadow: inset 0 0 10px #000000;
}

.scrollbar h2 {
  margin-top: 7px;
  margin-bottom: 7px;
}

.scrollbar #correct, .scrollbar #incorrect {
  color: #009432;
  font-size: 2.5rem;
  margin-top: 7px;
  margin-bottom: 7px;
}

.scrollbar p {
  font-size: 22px;
}

.display-content {
  width: 100%;
  min-width:100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.display-content__centertool {
  width: 65%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin-left: 15%;
  padding: 50px;
}

.display-content {
	-webkit-animation: slide-left 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 10s both;
	        animation: slide-left 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 10s both;
}

.content.right .display-content{
    -webkit-animation: none;
    animation: none;
    transform: translateX(-100%);
}

.display-content .portraitplaceholder {
  margin-left: 0px;
}

.sphererow {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sphere {
  height: 18vh;
  width: 18vh;
  background-color: green;
  border-radius: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  box-shadow:        3px 0px 18px 0px black;
}

.innersphere {
  position: absolute;
  height: calc(18vh - 9px);
  width: calc(18vh - 9px);
  border: 7px dashed white;
  border-radius: 500PX;
  animation: spin 30s linear infinite;
}

.green, .red {
  font-size: 3rem;
  font-family: 'Righteous', sans-serif;
}

.green {
  color: #44bd32;
}

.red {
  color: #c23616;
}

.sphere:first-child {
  margin-left: 0%;
}

#shotwarning {
  color: #a60000;
}

#wrongsphere {
  font-size: 1.1rem !important;
  background: linear-gradient(to bottom right, #a60000 0%, #7c181b 100%);
}

#correctsphere {
  background-color: green;
}

.wrongtext, .righttext {
  position: absolute;
  z-index: 3 !important;
  color: white;
  font-family: 'Righteous', sans-serif;
}

.righttext {
  font-size: 2rem;
}

#centercross {
  position: absolute;
  color: #3e0000;
  font-size: 9rem;
  z-index: 0;
}


#centercross2 {
  position: absolute;
  color: #063e00;
  font-size: 6rem;
  z-index: 0;
}

#playericoncurrent {
  background: url('../img/characters/DrunkSteve.png');
  background-size: cover;
}

.modifiersrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.modifiersrow .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modifiersrow h2 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.modifier {
    height: 5rem;
    width: 5rem;
    background: gray;
    border-radius: 50%;
    margin-right: .5rem;
    margin-left: .5rem;
    display: inline-block;
    background-position: center;
    background-size: cover;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(0) !important;
    margin-right: 30px;
  }

.modifier:first-child {
  margin-right: 0px;
}

.modifier::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  border-radius: 100%;
  background: linear-gradient(27deg, rgb(68 9 121 / 28%) 0%, rgb(232 224 163 / 15%) 100%)
}

.modifier i {
    font-size: 2.4rem;
    color: white;
  }

.scrollbar__backplate {
  width: 71vw;
  height: 76vh;
  position: absolute;
  background-color: #310e68;
  background-image: linear-gradient(316deg, #310e68 0%, #5f0f40 74%);
  box-shadow: 0 8px 12px -6px black;
}

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

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
