.separatorLine {
  border-radius: 3px;
  background: #ffe383;
  box-shadow: 0 0 .5rem #ffc602, inset 0 0 .5rem #ffc602, 0 0 2rem #ffc602
}

.plusIcon {
  color: #ffd647;
  text-shadow: -1px -0.2rem 2px #ffc602, .2rem .2rem 8px #ffc602, 0 0 2px #ffc602
}

.button.raised {
  background: transparent;
  color: #fff;
  backdrop-filter: blur(2px);
  border: 1px solid #ffe383;
  box-shadow: 0 0 0 1px #ffe383, inset 0 0 0 #ffe383, 0 0 1px #ffc602, inset 0 0 5px #ffc602, 0 0 12px #ffc602, inset 0 0 6px #ffc602;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}

.button.raised svg {
  fill: #fff
}

.button.raised:hover,
.button.raised:focus {
  background: #ffc602;
  color: #fff;
  border-color: #ffc602
}

@-webkit-keyframes equalizerAnimation {
  0% {
    -webkit-transform: scaleY(0.2);
    transform: scaleY(0.2)
  }

  10% {
    -webkit-transform: scaleY(0.7);
    transform: scaleY(0.7)
  }

  50% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4)
  }

  60% {
    -webkit-transform: scaleY(0.3);
    transform: scaleY(0.3)
  }

  80% {
    -webkit-transform: scaleY(0.7);
    transform: scaleY(0.7)
  }

  to {
    -webkit-transform: scaleY(0.2);
    transform: scaleY(0.2)
  }
}

@keyframes equalizerAnimation {
  0% {
    -webkit-transform: scaleY(0.2);
    transform: scaleY(0.2)
  }

  10% {
    -webkit-transform: scaleY(0.7);
    transform: scaleY(0.7)
  }

  50% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4)
  }

  60% {
    -webkit-transform: scaleY(0.3);
    transform: scaleY(0.3)
  }

  80% {
    -webkit-transform: scaleY(0.7);
    transform: scaleY(0.7)
  }

  to {
    -webkit-transform: scaleY(0.2);
    transform: scaleY(0.2)
  }
}

#musicButtonContainer {
  position: fixed;
  bottom: 50px;
  width: 100%;
  z-index: 20;
  pointer-events: none
}

#musicButtonContainer .audioContainer {
  width: 0;
  height: 0
}

#musicButtonContainer .audioContainer .customAudioPlayer {
  width: 0;
  height: 0
}

#musicButtonContainer .mainWrap #musicButton {
  float: left;
  width: 36px;
  height: 36px;
  background: transparent;
  backdrop-filter: blur(2px);
  border: 1px solid #ffe383;
  box-shadow: 0 0 0 1px #ffe383, inset 0 0 0 #ffe383, 0 0 1px #ffc602, inset 0 0 5px #ffc602, 0 0 12px #ffc602, inset 0 0 6px #ffc602;
  pointer-events: all;
  box-sizing: border-box;
  padding: 4px 0;
  border-radius: 3px;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}

#musicButtonContainer .mainWrap #musicButton:hover {
  background: #ffc602;
  border-color: #ffc602
}

#musicButtonContainer .mainWrap #musicButton .equalizerContainer {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-justify-content: center;
  justify-content: center;
  height: 24px
}

#musicButtonContainer .mainWrap #musicButton .equalizerContainer .equalizerLine {
  background-color: #fff;
  display: -webkit-flex;
  display: flex;
  width: 2px;
  height: 20px;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  -moz-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-animation: equalizerAnimation 6s infinite;
  animation: equalizerAnimation 6s infinite
}

#musicButtonContainer .mainWrap #musicButton .equalizerContainer .equalizerLine:not(:first-child) {
  margin-left: 2px
}

#musicButtonContainer .mainWrap #musicButton .equalizerContainer .equalizerLine:first-child {
  webkit-animation-delay: -0.5s;
  animation-delay: -0.5s
}

#musicButtonContainer .mainWrap #musicButton .equalizerContainer .equalizerLine:nth-child(2) {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s
}

#musicButtonContainer .mainWrap #musicButton .equalizerContainer .equalizerLine:nth-child(3) {
  -webkit-animation-delay: -1.2s;
  animation-delay: -1.2s
}

#musicButtonContainer .mainWrap #musicButton .equalizerContainer .equalizerLine:nth-child(4) {
  -webkit-animation-delay: -1.5s;
  animation-delay: -1.5s
}

#musicButtonContainer .mainWrap #musicButton .equalizerContainer .equalizerLine:nth-child(5) {
  -webkit-animation-delay: -1.2s;
  animation-delay: -1.2s
}

#musicButtonContainer .mainWrap #musicButton .equalizerContainer .equalizerLine:nth-child(6) {
  -webkit-animation-delay: -1.7s;
  animation-delay: -1.7s
}

#musicButtonContainer .mainWrap #musicButton.paused .equalizerContainer .equalizerLine {
  -webkit-animation-play-state: paused;
  animation-play-state: paused
}

#musicButtonContainer .mainWrap #musicDisclaimer {
  display: none;
  float: left;
  line-height: 36px;
  margin-left: 15px;
  will-change: opacity;
  opacity: 1;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease
}

#musicButtonContainer .mainWrap #musicDisclaimer.hide {
  opacity: 0
}

#musicButtonContainer .mainWrap #musicDisclaimer span {
  font-size: 18px
}

@media all and (min-width: 768px) {
  #musicButtonContainer .mainWrap #musicDisclaimer {
    display: inline-block
  }
}

@-webkit-keyframes showElement {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes showElement {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

#splashScreen #splashScreenContent {
  margin: 0 auto;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center
}

#splashScreen #splashScreenContent .splashScreenElement {
  text-align: center;
  margin-bottom: 30px
}

#splashScreen #splashScreenContent .splashScreenText {
  font-family: "Akzidenz-Grotesk Pro Bold Extended", sans-serif;
  font-size: 36px
}

#splashScreen #splashScreenContent .itemOne,
#splashScreen #splashScreenContent .itemTwo,
#splashScreen #splashScreenContent .itemThree,
#splashScreen #splashScreenContent .itemFour,
#splashScreen #splashScreenContent .itemFive {
  opacity: 0;
  -webkit-animation: showElement .7s;
  animation: showElement .7s;
  animation-fill-mode: forwards
}

#splashScreen #splashScreenContent .itemOne {
  -webkit-animation-delay: 1s;
  animation-delay: 1s
}

#splashScreen #splashScreenContent .itemTwo {
  -webkit-animation-delay: 3s;
  animation-delay: 3s
}

#splashScreen #splashScreenContent .itemThree {
  -webkit-animation-delay: 5s;
  animation-delay: 5s
}

#splashScreen #splashScreenContent .itemFour {
  -webkit-animation-delay: 7s;
  animation-delay: 7s
}

#splashScreen #splashScreenContent .itemFive {
  -webkit-animation-delay: 9s;
  animation-delay: 9s
}

.separatorWrapper .separatorLine {
  border-radius: 3px;
  background: #ffe383;
  box-shadow: 0 0 .5rem #ffc602, inset 0 0 .5rem #ffc602, 0 0 2rem #ffc602
}

.tabsSlider .insideWrapper .tabsMenu li a {
  padding: 0 0 10px 0 !important
}

.tabsSlider .insideWrapper .tabsMenu li a:after {
  border-radius: 3px
}

.tabsSlider .insideWrapper .tabsMenu li a:hover:after {
  background: #ffe383 !important;
  box-shadow: 0 0 .5rem #ffc602, inset 0 0 .5rem #ffc602, 0 0 2rem #ffc602
}

.tabsSlider .insideWrapper .tabsMenu li.ui-tabs-active a:after {
  background: #ffe383 !important;
  box-shadow: 0 0 .5rem #ffc602, inset 0 0 .5rem #ffc602, 0 0 2rem #ffc602
}

.tabsSelectWrapper .insideWrapper .selectFilterWrapper .selectTabFilterLabel:after {
  background: #ffe383 !important;
  box-shadow: 0 0 .5rem #ffc602, inset 0 0 .5rem #ffc602, 0 0 2rem #ffc602
}

.stripe-custom_rumble_vote_system .mainWrap .customRumbleWrapper .insideWrapper .customRumbleFilters.filterLine .filterItemMasonry.active:after {
  background: #ffe383 !important;
  box-shadow: 0 0 .5rem #ffc602, inset 0 0 .5rem #ffc602, 0 0 2rem #ffc602
}

.stripe-custom_rumble_vote_system .mainWrap .customRumbleWrapper .insideWrapper .customRumbleFilters.filterLine .filterItemMasonry:hover:after {
  background: #ffe383 !important;
  box-shadow: 0 0 .5rem #ffc602, inset 0 0 .5rem #ffc602, 0 0 2rem #ffc602
}

.stripe-news_stream #archiveWrap .gridWrap .gridItem13 #archiveForm .filterListWrap .filterItemList input[type=radio]+label:hover>span:after,
.stripe-news_stream #archiveWrap .gridWrap .gridItem13 #archiveForm .filterListWrap .filterItemList input[type=radio]:checked+label>span:after {
  background: #ffe383 !important;
  box-shadow: 0 0 .5rem #ffc602, inset 0 0 .5rem #ffc602, 0 0 2rem #ffc602
}