.music-container {
  height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(#bfdbf7, #1f7a8c);
  flex-direction: column;
}

#card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
  margin-bottom: 3vh;
  height: 250px;
}

#card #display {
  width: 60%;
  border-radius: 20px 0 0 20px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(30px) hue-rotate(20deg);
  box-shadow: 2px 0 5px -2px rgb(0 0 0 / 35%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em;
}

#card #display>* {
  text-align: center;
}

#card #display #art {
  height: 200px;
  margin: 0 auto;
}

#card #music-list-container {
  width: 40%;
  background: #8ebdd6;
  display: flex;
  flex-direction: column;
  border-radius: 0px 20px 20px 0px;
  padding: 10px 0px;
}

#card #list {
  overflow-y: auto;
  z-index: 0;
}

#card #list .item {
  padding: 0 1em;
  background: white;
  transition: all 0.3s ease;
}

#card #list .item.is-active {
  background: rgb(219 228 248);
  transition: all 0.3s ease;
}

#card #list .item:hover {
  cursor: pointer;
}

#card #music-list-container .no-music-added {
  margin: auto;
  text-align: center;
}

#card #music-list-container .music-loading {
  margin: auto;
}

#card #music-list-container .music-loading svg path,
#card #music-list-container .music-loading svg rect {
  fill: #1f7a8c;
}

#card #music-list-container .music-list-controller {
  display: flex;
  padding: 5px;
}

#card #music-list-container .music-list-controller button {
  margin-left: 5px;
}

#card .music-list-container-overlay {
  background-color: rgba(10, 10, 10, .86);
  z-index: 1;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

#music-upload-modal .modal-card {
  top: 40vh;
}

#music-upload-modal .file-name-line {
  margin-left: 10px;
  align-self: center;
  max-width: 350px;
}

#music-upload-modal .upload-progress-container {
  overflow-y: auto;
  max-height: 150px;
}

#music-upload-modal .upload-progress-container .upload-label-status-container {
  margin: unset;
}

#music-upload-modal .upload-progress-container .progress {
  margin-bottom: 0;
}

#music-upload-modal .upload-progress-container .upload-label-status-container .upload-status {
  direction: rtl;
}

.modal .modal-card {
  top: 40vh;
}

#music-session-code-container {
  background-color: #022b3a;
  border-radius: 0px 0px 15px 15px;
  color: #ffffff;
  cursor: pointer;
  margin: unset;
  text-align: center;
}

#music-session-code-container .column {
  width: 50px;
}

#music-session-code-container .music-session-code-copied-container {
  display: flex;
  align-items: center;
}

#music-session-code-button-container {
  min-height: 110px;
}

.music-container audio {
  max-width: 100%;
  width: 50vw;
}

#host-notification-message {
  min-height: 64px;
  cursor: pointer;
}

#header {
  padding: 10px 20px;
  box-shadow: 0 0.25em 0.25em -0.125em rgb(10 10 10 / 10%), 0 0 0 1px rgb(10 10 10 / 2%);
  max-width: 500px;
}

#title {
  font-size: 100%;
  font-weight: 400;
}

.hide-text-overflow {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.loop-toggle {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 80px;
  height: 40px;
  margin: 10px;
  border-radius: 50px;
  display: inline-block;
  background-color: #f1f3f4;
  cursor: pointer;
  -webkit-transition: background-color 0.4s ease-in-out;
  -moz-transition: background-color 0.4s ease-in-out;
  -o-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
  cursor: pointer;
}

.loop-toggle.active {
  background-color: #f1f3f4;
}

.loop-toggle.active .round-btn {
  left: 45px;
}

.loop-toggle .round-btn {
  width: 30px;
  height: 30px;
  background-color: #000000;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 5px;
  top: 50%;
  margin-top: -15px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.loop-toggle .loop-input {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  cursor: pointer;
  filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.loop-toggle .active {
  float: left;
  position: relative;
  top: 10px;
  left: 10px;
  color: #f1f3f4;
  background: url(../assets/icons/repeat-active.svg);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-animation: glow 3s ease-in-out infinite alternate;
  -moz-animation: glow 3s ease-in-out infinite alternate;
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 0 #23d160);
    -webkit-filter: drop-shadow(0 0 0 #23d160);
    -moz-filter: drop-shadow(0 0 0 #23d160);
  }

  to {
    filter: drop-shadow(0 0 2px #23d160);
    -webkit-filter: drop-shadow(0 0 2px #23d160);
    -moz-filter: drop-shadow(0 0 2px #23d160);
  }
}

@-webkit-keyframes glow {
  from {
    filter: drop-shadow(0 0 0 #23d160);
    -webkit-filter: drop-shadow(0 0 0 #23d160);
    -moz-filter: drop-shadow(0 0 0 #23d160);
  }

  to {
    filter: drop-shadow(0 0 2px #23d160);
    -webkit-filter: drop-shadow(0 0 2px #23d160);
    -moz-filter: drop-shadow(0 0 2px #23d160);
  }
}

.loop-toggle .inactive {
  float: left;
  position: relative;
  top: 10px;
  left: 30px;
  color: #f1f3f4;
  background: url(../assets/icons/repeat.svg);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
}

@-moz-document url-prefix() {
  .loop-toggle {
    position: relative;
    top: -35px;
    left: -350px;
  }
}

.button-no-opacity {
  opacity: 0;
}

.button-full-opacity {
  opacity: 1;
}

.listeners-container .listener-profile {
  margin: 10px;
}

.listeners-container .listener-profile.host-profile {
  background-color: #8ebdd6;
  padding: 10px;
}

.listeners-container .listener-profile.guest-profile {
  background-color: #eff1fa;
  padding: 5px 10px;
  margin: 10px;
}

.listeners-container .active-listeners-container {
  max-height: 100px;
  overflow-y: auto;
}

.listeners-container .image {
  overflow: hidden;
}

.listeners-container .host-name-input:not(:focus),
.listeners-container .host-mood-input:not(:focus) {
  background-color: inherit;
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
  width: 10px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background-color: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: #d6dee1;
  border-radius: 20px;
  border: 3px solid transparent;
  background-clip: content-box;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: #a8bbbf;
}