* {
  pointer-events: auto;
  margin: 0;
  padding: 0;
  font-family: 'Titillium Web';
  transform: translate3d(0,0,0);
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1.0, 1.0);
  transition: all 0.3s ease-in-out;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
  background: #888; 
}
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

*:not(.dropdown-item) {
  color: white !important;
}

body {
  background: #1c1e21;
}

/* Header */
.header {
  margin: 0px 48px 0px 48px;
  position: relative;
  width: calc(100% - 96);
  height: 152px;
}

.header-logo {
  position: absolute;
  top: 50%;
  transform: translateY(10%);
  width: 128px;
}

.nav {
  background: #161719;
  padding: 4px 24px 7px 24px;
}

.dropdown-menu {
  z-index: 99999999999999999999999999999999;
  border: 1.25px solid white;
  background: #161719;
}

.dropdown-menu .dropdown-item {
  color: #f3f3f3 !important;
  transition: 0.25s ease-in-out;
}

.dropdown-item:hover {
  font-weight: bold;
  background: transparent;
}

.dropdown-item:hover, .dropdown-menu:hover .dropdown-item {
  color: white !important;
}

/* Main */
#page-content {
  margin-top: 32px;
  margin-bottom: 48px;
}

#page-content .container {
  z-index: 25;
}

.heading {
  margin-bottom: 4px;
  font-weight: bold;
  font-size: 19px;
}

.heading i {
  margin-right: 6px;
}

.top-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.ts-1 { grid-area: 1 / 1 / 2 / 2; }
.ts-2 { grid-area: 1 / 2 / 2 / 5; }

.shows {
  box-shadow: 0 3.5px 8px rgba(17, 17, 18, 0.55);
  background: #131315;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shows > div:not(:last-child) {
  border-bottom: 2px solid white;
}

.show-1 {
  grid-area: 1 / 1 / 2 / 2;
  padding: 8px 14px 8px 14px;
  border-top-left-radius: 12px;
}

.show-2 {
  grid-area: 2 / 1 / 3 / 2;
  padding: 8px 14px 8px 14px;
}

.show-3 {
  grid-area: 3 / 1 / 4 / 2;
  padding: 8px 14px 12px 14px;
  border-bottom-left-radius: 12px;
}

.main-story {
  font-size: 18px;
  min-height: 110px;
  box-shadow: 0 3.5px 8px rgba(17, 17, 18, 0.55);
  width: 100%;
  height: 100%;
  background: #131315;
  border-radius: 12px;
}

.stories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.stories > div {
  position: relative;
  box-shadow: 0 3.5px 8px rgba(17, 17, 18, 0.55);
  height: 89.5px;
  background: #141517;
  padding: 12px 26px 12px 26px;
}

.story-title {
  width: calc(100% - 48px);
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.stories > div:hover, .shows > div:hover {
  background: #131315;
  cursor: pointer;
  transform: scale(1.05);
  filter: brightness(1.05);
  box-shadow: 0 3.5px 14px rgba(21, 21, 22, 0.63);
}

.main-story:hover {
  cursor: pointer;
  transform: scale(1.025);
}

.story-1 { grid-area: 1 / 1 / 2 / 2; }

.story-2 {
  border-top-right-radius: 12px;
  grid-area: 1 / 2 / 2 / 3;
}

.story-3 { grid-area: 2 / 1 / 3 / 2; }

.story-4 {
  border-bottom-right-radius: 12px;
  grid-area: 2 / 2 / 3 / 3;
}

.shows small {
  font-size: 10px;
  text-transform: uppercase;
  color: #cdcdcd !important;
}

.shows small ~ p {
  margin-bottom: 0px;
  font-weight: bold;
  margin-top: -5px;
}

.story-bg {
  width: 100%;
  height: 100%;
  z-index: -5;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.story-1, .story-1 .story-bg {
  border-top-left-radius: 12px;
}

.story-2, .story-2 .story-bg {
  border-top-right-radius: 12px;
}

.story-3, .story-3 .story-bg {
  border-bottom-left-radius: 12px;
}

.story-4, .story-4 .story-bg {
  border-bottom-right-radius: 12px;
}

.main-story-bg img {
  filter: brightness(0.6) blur(10px) !important;
}

.story-bg img {
  width: 100%;
  height: 100%;
  filter: brightness(0.5) blur(5px);
  transform: scale(0.999999);
}

.stories > div:hover .story-bg img {
  filter: brightness(0.6) blur(7.5px);
}

.main-story:hover .main-story-bg img {
  filter: brightness(0.65) blur(12.5px) !important;
}

.main-story-bg {
  border-radius: 12px;
}

.af-list > .row > div, .fs-list > .row > div {
  position: relative;
  margin: 5px;
  box-shadow: 0 3.5px 8px rgba(17, 17, 18, 0.55);
  height: 89.5px;
  background: #141517;
  padding: 12px 26px 12px 26px;
}

.af-list > .row > div:hover, .fs-list > .row > div:hover {
  cursor: pointer;
  transform: scale(1.025);
  filter: brightness(1.05);
  box-shadow: 0 3.5px 14px rgba(21, 21, 22, 0.63);
}

.af-list > .row > div:hover .story-bg img, .fs-list > .row > div:hover .story-bg img {
  filter: brightness(0.6) blur(7.5px);
}

.af-1, .af-1 .story-bg, .fs-1, .fs-1 .story-bg {
  border-top-left-radius: 12px;
}

.af-2, .af-2 .story-bg, .fs-2, .fs-2 .story-bg {
  border-top-right-radius: 12px;
}

.af-3, .af-3 .story-bg, .fs-3, .fs-3 .story-bg {
  border-bottom-left-radius: 12px;
}

.af-4, .af-4 .story-bg, .fs-4, .fs-4 .story-bg {
  border-bottom-right-radius: 12px;
}

.ad {
  min-height: 0;
  height: 85px;
  margin-bottom: 25px;
}

.story-title {
  line-height: 1;
}

.story-title p {
  font-size: 24px;
  margin-bottom: -2px;
}

.story-title small, .story-title small * {
  text-transform: uppercase;
  color: #cdcdcd !important;
  font-size: 12px;
}

/* Player */
.player {
  line-height: 1;
  padding: 16px 82px 22px 82px;
  background: #131315;
  box-shadow: 0 -2.5px 12px rgba(16, 16, 17, 0.75);
  position: sticky;
  bottom: 0;
  left: 0;
}

.player > div {
  display: inline-block;
}

.controls-container-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.controls-container-2 {
  width: 100%;
  height: 100%;
  position: relative;
}

.controls {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.controls i {
  color: #c5c5c5 !important;
}

.controls i:hover {
  cursor: pointer;
  filter: brightness(0.75);
  transform: scale(1.1);
}

#play-button {
  color: white !important;
  margin: 12px;
  font-size: 22px;
}

.player-right {
  float: right;
  text-align: right;
}

.song-art {
  position: relative;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 6px;
  border: 2px solid white;
  width: 48px;
  height: 48px;
}

.player-right .song-art {
  margin-right: 0px;
  margin-left: 10px;
}

.song-art:hover {
  cursor: pointer;
  filter: brightness(0.8);
}

.stats {
  transform: translateY(25%);
  display: inline-block;
}

.stats p {
  margin-bottom: 0;
}

.stats .song-title, .stats .dj-name {
  font-weight: bold;
  font-size: 21px;
}

.stats .song-artist, .stats .listeners {
  margin-top: 2.5px;
  text-transform: uppercase;
  color: #cdcdcd;
  font-size: 11px;
}

.slider-container {
  width: 150px;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  background: #d3d3d3;
  outline: none;
}

.slider:hover {
  cursor: pointer;
  filter: brightness(0.75);
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}

.vizualizer {
  z-index: -10;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
}

#vizualizer {
  width: 100%;
  height: 100%;
}

input {
color: black;
}

::placeholder {
  color: black;
}

