/* =====================================================
   SZUNDI PLAYER V2
===================================================== */

.szundi-player {
  position: fixed;

  left: 0;
  right: 0;
  bottom: 0;

  height: 44px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 18px;

  background: rgba(8, 17, 31, 0.44);

  backdrop-filter: blur(14px);

  border-top: 1px solid rgba(212, 166, 70, 0.25);

  z-index: 99999;

  font-family: Inter, sans-serif;
}

/* ==========================
   BAL OLDAL
========================== */

.player-left {
  width: 340px;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.player-status {
  color: #d4a646;

  font-size: 10px;

  letter-spacing: 2px;

  text-transform: uppercase;

  margin-bottom: 2px;
}

.player-title {
  color: #ffffff;

  font-size: 15px;

  font-weight: 600;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;
}

/* ==========================
   KÖZÉP
========================== */

.player-center {
  display: flex;

  justify-content: center;

  align-items: center;

  flex: 1;
}

.player-stop {
  width: 34px;

  height: 34px;

  border: none;

  border-radius: 50%;

  background: #d4a646;

  color: #08111f;

  display: flex;

  justify-content: center;

  align-items: center;

  cursor: pointer;

  transition: 0.25s;

  box-shadow: 0 0 0 2px rgba(212, 166, 70, 0.25);
}

.player-stop:hover {
  transform: scale(1.08);

  box-shadow: 0 0 18px rgba(212, 166, 70, 0.55);
}

.player-stop svg {
  width: 18px;

  height: 18px;
}

/* ==========================
   JOBB OLDAL
========================== */

.player-right {
  display: flex;

  align-items: center;

  gap: 10px;
}

#current-time,
#duration {
  color: #d7d7d7;

  font-size: 12px;

  min-width: 38px;

  text-align: center;
}

/* ==========================
   PROGRESS
========================== */

#player-progress {
  width: 180px;

  height: 4px;

  cursor: pointer;

  accent-color: #d4a646;
}

/* ==========================
   HANGERŐ
========================== */

.volume-icon {
  color: #d4a646;

  font-size: 14px;
}

#volume-slider {
  width: 80px;

  height: 4px;

  accent-color: #d4a646;

  cursor: pointer;
}

/* ==========================
   MOBIL
========================== */

@media (max-width: 900px) {
  .player-left {
    width: 170px;
  }

  .player-title {
    font-size: 13px;
  }

  #player-progress {
    width: 90px;
  }

  #volume-slider {
    display: none;
  }

  .volume-icon {
    display: none;
  }
}
