@font-face {
  font-family: "Circular";
  src: url("fonts/CircularFontFamily/ProductSans-Regular.ttf");
}
.btn {
  user-select: none;
  font-size: 16px;
  border-radius: 500px;
  padding: 20px 40px;
  margin: 20px 0;
  text-decoration: none;
  color: #FFF;
  background-color: #1DB954;
  font-family: Circular;
  letter-spacing: 2px;
  cursor: pointer;
}
.btn:hover {
  opacity: 0.8;
}

body {
  background-color: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: 100px;
}

#savedOptions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  max-width: 80%;
}
#savedOptions > p {
  color: white;
  margin-left: 10px;
  margin-right: 10px;
  background: orangered;
}

#genresList {
  display: flex;
  flex-wrap: wrap;
  margin: 0 10%;
}
#genresList > label {
  margin: 5px 7px;
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#genresList > label:hover input ~ span {
  background-color: #868686;
}
#genresList > label > input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
#genresList > label > input:checked ~ span {
  background-color: #1DB954;
}
#genresList > label > span {
  background-color: #686868;
  border-radius: 500px;
  padding: 3px 10px;
  height: 100%;
  width: 100%;
  color: white;
  font-size: 14px;
  font-family: Circular;
  letter-spacing: 2px;
}

#modifiers {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}
#modifiers p {
  color: white;
  background-color: #1DB954;
  font-size: 16px;
  padding: 20px 40px;
  text-decoration: none;
  color: #FFF;
  margin: 0;
  background-color: #1DB954;
  font-family: Circular;
  letter-spacing: 2px;
  cursor: pointer;
}
#modifiers p:nth-child(1) {
  border-bottom-left-radius: 500px;
  border-top-left-radius: 500px;
}
#modifiers p:nth-last-child(1) {
  border-bottom-right-radius: 500px;
  border-top-right-radius: 500px;
}
#modifiers p:hover {
  opacity: 0.8;
  transform: scaleY(0.98);
}
#modifiers span {
  display: block;
  height: 39px;
  width: 1px;
  background-color: white;
  border-top: solid #1DB954 10px;
  border-bottom: solid #1DB954 10px;
}

#userSelector > div {
  width: 80px;
  height: 80px;
  border-radius: 500px;
  overflow: hidden;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}
#userSelector > div img {
  width: 80px;
  height: 80px;
}
#userSelector > div:hover {
  opacity: 0.8;
}

.popup {
  opacity: 0;
  align-items: center;
  margin-top: 30px;
  /* position:absolute;
  bottom:10px; */
  color: white;
  background-color: #1DB954;
  border-radius: 500px;
  padding: 3px 10px;
  font-size: 14px;
  font-family: Circular;
  letter-spacing: 2px;
}
.popup img {
  cursor: pointer;
  margin-left: 5px;
  width: 9px;
  height: 9px;
}

.popupUpdate {
  opacity: 0 !important;
  transition: opacity 150ms ease-in-out;
}

@media screen and (max-width: 600px) {
  #genresList {
    margin: 0;
  }

  #savedOptions {
    max-width: 100%;
  }
}