@font-face {
  font-family: HammerEight;
  src: url(HammerEight.woff);
}
@font-face {
  font-display: swap;
  font-family: Pixel;
  font-stretch: normal;
  font-style: normal;
  font-weight: 200;
  src: url(Pixel.woff2) format("woff2");
}

.pixelFont {
  font-family: "Pixel", sans-serif;
  position: relative;
}
body {
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cards {
  margin: auto;
  display: flex;
  flex-direction: row;
  row-gap: 0px;
  max-width: 28rem;
  justify-content: center;
  margin-top: 4rem;
  width: auto;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 300ms ease-in-out;
}
.cardsStatic {
  background-color: #fff;
}
.extraFlexSort {
  display: flex;
  flex-direction: column;
  column-gap: 0px;
  height: 100%;
  width: 100%;
}
.card {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #fff;
  column-gap: 0px;
  row-gap: 0px;
  gap: 0px;
  overflow: hidden;
  max-width: 28rem;
  max-height: 44rem;
  height: 44rem;
  flex-grow: 1;
  transition: all 300ms ease-in-out;
}
.card .gradient {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.075),
    rgba(0, 0, 0, 0)
  );
}
.card img {
  width: 100%;
  height: 40%;
  flex-shrink: 0;
  object-fit: cover;
}
.card h2 {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 2.5rem;
  font-weight: 400;
  font-family: "HammerEight";
}
.card p {
  margin: 0.75rem 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 2rem;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #666;
}
.loadingAnimation {
  position: absolute;
  margin: auto;
  width: 28rem;
  height: 44rem;
  justify-content: center;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #fff;
  left: calc((100vw / 2) - 14rem);
  z-index: 301;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.totalPlayer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-grow: 1;
  flex-shrink: 0;
  margin-top: 1rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  column-gap: 1rem;
}
.artistLocationInfo {
  width: 100%;
  padding-top: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-content: end;
}
.artistLocationInfo table {
  border-spacing: 1rem 0;
  border-collapse: initial;
}
.artistLocationInfo tr {
  text-align: left;
}
.artistLocationInfo th {
  font-weight: 100;
  font-family: "Pixel", sans-serif;
  color: rgba(0, 0, 0, 0.4);
}
.artistLocationInfo td {
  font-weight: 400;
  font-family: "HammerEight";
}
.buttons {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 1rem;
  padding-bottom: 1.75rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  align-self: end;
  width: 100%;
}
.button {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  padding: 0.5rem 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
.dislike {
  background-color: rgba(220, 53, 69, 0.8);
}
.like {
  background-color: rgba(40, 167, 69, 0.8);
}
.shuffle {
  background-color: rgba(116, 116, 116, 0.8);
}
.dislike:hover {
  background-color: rgba(220, 53, 69, 0.6);
}
.like:hover {
  background-color: rgba(40, 167, 69, 0.6);
}
.shuffle:hover {
  background-color: rgba(116, 116, 116, 0.6);
}
.dislike:active {
  background-color: rgba(220, 53, 69, 0.6);
}
.like:active {
  background-color: rgba(40, 167, 69, 0.6);
}
.shuffle:active {
  background-color: rgba(116, 116, 116, 0.6);
}
.socials {
  background-color: rgba(116, 116, 116, 0.2);
}
.socials:hover {
  background-color: rgba(116, 116, 116, 0.08);
}
.socials:active {
  background-color: rgba(116, 116, 116, 0.08);
}
.hiddenSpotifyIFrame {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
}
.menu {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 100%;
  width: 0;
  background-color: #fff;
  z-index: 1;
  overflow-x: hidden;
  transition: width 0.5s;
}
.menu.show {
  width: 300px;
}
.menu .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #ccc;
}
.menu .header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
}
.menu .header button {
  background-color: transparent;
  border: none;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}
.menu .card {
  margin: 1rem;
}
.menu .card h4 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.menu .card p {
  margin: 0;
  font-size: 1rem;
  color: #666;
}
.menuOptionsWrapper {
  z-index: 200;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  clip-path: circle(0px at calc(100% - 15px) 15px);
  transition: all 0.3s ease-in-out;
}
.menuOptionsWrapper ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
}
.menuOptionsWrapper ul li {
  margin: 20px 0;
}
.menuOptionsWrapper ul li a {
  color: none;
  text-decoration: none;
  font-size: 35px;
  font-weight: 100;
  font-family: "Poppins", sans-serif;
  padding: 5px 30px;
  color: #fff;
  border-radius: 50px;
  background: rgba(0, 0, 0, 1);
  position: relative;
  line-height: 50px;
  transition: all 0.3s ease;
}
.menuOptionsWrapper ul li a:hover {
  background: rgb(39, 39, 39);
}
.menuOptionsWrapper ul li a:active {
  background: rgb(39, 39, 39);
}
.hamburger {
  top: 10px;
  right: 10px;
  font-size: 2rem;
  background-color: transparent;
  border: none;
  color: #333;
  cursor: pointer;
  z-index: 100;
}
.optionsHamburger {
  z-index: 300;
  transition: all 0.3s ease-in-out;
}
.optionsLine {
  fill: none;
  stroke: black;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line {
  fill: none;
  stroke: black;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.arrow1 {
  transition: all 0.3s ease-in-out;
  transform-origin: 50% 50%;
  transform: rotate(0deg);
}
.opened .arrow1 {
  transition: all 0.3s ease-in-out;
  transform-origin: 50% 50%;
  transform: rotate(180deg);
}
.backToTop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: none;
  padding: 1em;
  margin: 1em;
  transition: all 0.25s ease-in-out;
}
.iframeWrapper {
  width: 100%;
  height: 100%;
}
.iframeWrapper iframe {
  border-radius: 0.75rem;
  overflow: hidden;
}
.copyright {
  position: fixed;
  align-self: flex-end;
  font-size: 0.75rem;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #a3a3a3;
  bottom: 1rem;
}
.artistName {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  max-width: 28rem;
  margin: 0 0;
  color: white;
}
.artistCard {
  justify-content: space-between;
}
.progressBar {
  font-size: 0.75rem;
  font-weight: 100;
  font-family: "Poppins", sans-serif;
  white-space: pre;
}
.socialLinks {
  display: flex;
  gap: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  flex-wrap: wrap;
  margin: 0.75rem 0 1.5rem;
  align-self: flex-start;
}
.autoplay {
  width: 3rem;
}
.slider {
  fill: rgba(116, 116, 116, 0.8);
  transition: all 200ms ease-out;
}
.slideButton {
  fill: rgb(255, 255, 255);
  transition: all 300ms ease-in-out;
}
.play {
  fill: rgb(255, 255, 255);
  opacity: 0;
  transition: all 150ms ease-out;
}
.pause {
  fill: rgba(0, 0, 0, 0.4);
  opacity: 1;
  transition: all 200ms ease-in-out;
}
.autoplayOpened .slideButton {
  transform: translateX(50%);
}
.autoplayOpened .slider {
  fill: rgba(40, 167, 69, 0.6);
  transition: all 400ms ease-in;
}
.autoplayOpened .play {
  opacity: 1;
}
.autoplayOpened .pause {
  opacity: 0;
}
.autoplayHovered .slider {
  fill: rgba(116, 116, 116, 0.6);
}
.autoplayOpened.autoplayHovered .slider {
  fill: rgba(40, 167, 69, 0.4);
}
.controlButtons {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: center;
}
.unselectable {
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
}
.cursorLinkPointer {
  cursor: pointer;
}
@media (hover: none) {
  .loadingAnimation {
    left: 0;
    min-height: 100%;
    height: 100%;
    border-radius: 0;
    min-width: 100%;
    width: 100%;
  }
}
@media (hover: none) and (orientation: landscape) {
  .card img {
    height: 100%;
    width: 20rem;
    min-width: 20rem;
  }
  .artistName {
    height: 100%;
    margin: 0 0;
    max-width: 20rem;
  }
  .artistCard {
    flex-direction: row;
  }
  .extraFlexSort {
    padding-top: 64px;
  }
  .gradient {
    height: 100%;
    width: 20rem;
    min-width: 20rem;
  }
  .loadBar {
    position: absolute;
    bottom: 0px;
    width: calc(100vw - 20rem);
  }
  .infoHeader {
    font-size: 2rem !important;
  }
  .totalPlayer {
    margin-top: 0;
  }
  .artistLocationInfo th {
    font-size: 2vw;
  }
  .artistLocationInfo td {
    font-size: 2.6vw;
  }
}
@media (hover: none) and (orientation: portrait) {
  .infoCard {
    height: auto !important;
    min-height: auto !important;
    max-height: 100dvh;
  }
  .card img {
    height: 40svh;
    width: 100%;
  }
  .artistName {
    height: 40svh;
  }
  .artistCard {
    flex-direction: column;
  }
  .gradient {
    height: 40svh;
    width: 100%;
  }
  .infoHeader {
    font-size: 7vw !important;
  }
  .artistLocationInfo th {
    font-size: 4vw;
  }
  .artistLocationInfo td {
    font-size: 5.3vw;
  }
}
@media (hover: hover) {
  .artistName {
    height: 40%;
  }
  .gradient {
    height: 40%;
    width: 100%;
  }
  .infoHeader {
    font-size: 2rem !important;
    min-width: 28rem;
    max-width: 28rem;
    width: 28rem;
    align-self: flex-end;
  }
  .card p {
    min-width: 28rem;
    max-width: 28rem;
    width: 28rem;
    align-self: flex-end;
  }
  .socialLinks {
    min-width: 28rem;
    max-width: 28rem;
    width: 28rem;
    align-self: flex-end;
  }
  .artistCard {
    z-index: 5;
    border-radius: 1rem 0 0 1rem;
  }
  .infoCard {
    border-radius: 0 1rem 1rem 0;
  }
  .artistLocationInfo th {
    font-size: 1.1rem;
  }
  .artistLocationInfo td {
    font-size: 1.55rem;
  }
}
