@font-face {
  font-family: "Arial-MT";
  src: url("../assets/fonts/Arial-MT.woff");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background: center/cover, rgba(0, 0, 0, 0.5);
  background-image: url("../assets/img/bg.jpg");
  background-blend-mode: multiply;
  transition: background-image 1s ease-in-out;
  overflow: hidden;
}

.tags-container {
  transition: 1s ease-in-out;
}

.delay {
  transition: opacity 0.5s ease-in-out;
}

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.hidden-away {
  opacity: 0;
  position: absolute;
  transition: 1s ease-in-out;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 30vh;
  min-height: 220px;
  padding: 20px;
}

.player {
  display: flex;
  flex-direction: column;
}

.player-controls-container {
  margin-bottom: 28px;
  display: flex;
}

.player-advanced-controls {
  display: flex;
  align-items: flex-end;
}

.player-track-info {
  text-align: left;
  margin-bottom: 5px;
}

.player-progress-info {
  display: flex;
  align-items: center;
}

.player-progress {
  width: 20vw;
  margin-right: 20px;
}

.mute {
  width: 24px;
  height: 24px;
  background-size: 24px 24px;
  background-image: url("../assets/svg/volume-high.svg");
  margin-right: 8px;
  cursor: pointer;
  transform: translateY(25%);
  background-color: transparent;
  border: none;
  opacity: 0.8;
  transition: 0.3s;
}
.mute:active {
  border: 0;
  outline: 0;
}
.mute:hover {
  opacity: 1;
}

.mute.muted {
  background-image: url(../assets/svg/volume-mute.svg);
}

.volume {
  width: 5vw;
  background: linear-gradient(to right, rgb(255, 255, 255), rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 100%);
}

.input-range {
  -webkit-appearance: none;
  height: 8px;
  outline: 0;
  opacity: 0.9;
  cursor: pointer;
}
.input-range::-webkit-slider-thumb {
  width: 8px;
  height: 8px;
  -webkit-appearance: none;
  background: transparent;
}

.progress-bar {
  flex-grow: 1;
  margin-right: 10px;
  background: linear-gradient(to right, rgb(255, 255, 255), rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 120px;
  margin-right: 20px;
}

.play-list {
  text-align: left;
  margin-right: auto;
}

.play-item {
  position: relative;
  padding: 5px;
  padding-left: 30px;
  list-style: none;
  opacity: 0.8;
  cursor: pointer;
  transition: 0.3s;
}
.play-item:hover {
  opacity: 1;
}
.play-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background-size: 22px 22px;
  background-image: url("../assets/svg/play.svg");
}

.play-item.pause::before {
  background-image: url("../assets/svg/pause.svg");
}

.item-active {
  color: #c5b358;
}
.item-active:before {
  filter: invert(12%) sepia(46%) saturate(1162%) hue-rotate(332deg) brightness(100%) contrast(30%);
}

.player-icon,
.slider-icon,
.change-quote {
  width: 32px;
  height: 32px;
  background-size: 32px 32px;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: 0;
  outline: 0;
  opacity: 0.8;
  cursor: pointer;
  transition: 0.3s;
}
.player-icon:hover,
.slider-icon:hover,
.change-quote:hover {
  opacity: 1;
}
.player-icon:active,
.slider-icon:active,
.change-quote:active {
  border: 0;
  outline: 0;
  transform: scale(1.1);
}

.play {
  width: 40px;
  height: 40px;
  background-size: 40px 40px;
  background-image: url("../assets/svg/play.svg");
}

.play.pause {
  background-image: url("../assets/svg/pause.svg");
}

.play-prev {
  background-image: url("../assets/svg/play-prev.svg");
}

.play-next {
  background-image: url("../assets/svg/play-next.svg");
}

.weather {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 5px;
  width: 180px;
  min-height: 180px;
  text-align: left;
}

.weather-error {
  margin-top: -10px;
}

.description-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
}

.weather-icon {
  font-size: 44px;
  min-height: 44px;
}

.city {
  width: 170px;
  height: 34px;
  padding: 5px;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  border: 0;
  outline: 0;
  border-bottom: 1px solid #fff;
  background-color: transparent;
}
.city::-moz-placeholder {
  font-size: 20px;
  color: #fff;
  opacity: 0.6;
}
.city:-ms-input-placeholder {
  font-size: 20px;
  color: #fff;
  opacity: 0.6;
}
.city::placeholder {
  font-size: 20px;
  color: #fff;
  opacity: 0.6;
}

.main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40vh;
  min-height: 260px;
  padding: 20px;
}

.slider-icon {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  cursor: pointer;
}

.slide-prev {
  left: 20px;
  background-image: url("../assets/svg/slider-prev.svg");
}

.slide-next {
  right: 20px;
  background-image: url("../assets/svg/slider-next.svg");
}

.time {
  min-height: 124px;
  margin-bottom: 10px;
  font-family: "Arial-MT";
  font-size: 100px;
  letter-spacing: -4px;
}

.date {
  min-height: 28px;
  font-size: 24px;
  margin-bottom: 20px;
}

.greeting-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch;
  align-items: center;
  min-height: 48px;
  width: 100vw;
  font-size: 40px;
}

.greeting {
  flex: 1;
  padding: 10px;
  text-align: right;
}

.name {
  flex: 1;
  max-width: 50%;
  padding: 10px;
  font-size: 40px;
  text-align: left;
  color: #fff;
  background-color: transparent;
  border: 0;
  outline: 0;
}
.name::-moz-placeholder {
  color: #fff;
  opacity: 0.6;
}
.name:-ms-input-placeholder {
  color: #fff;
  opacity: 0.6;
}
.name::placeholder {
  color: #fff;
  opacity: 0.6;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  height: 30vh;
  min-height: 160px;
  padding: 20px;
}

.change-quote {
  margin-bottom: 30px;
  background-image: url("../assets/svg/reload.svg");
}

.quote {
  min-height: 32px;
}

.author {
  min-height: 20px;
}

.settings {
  position: relative;
}

.settings-btn {
  width: 30px;
  height: 30px;
  background-size: 30px 30px;
  background-image: url(../assets/svg/settings.svg);
  cursor: pointer;
  background-color: transparent;
  border: none;
  opacity: 0.8;
  transition: 0.3s;
}
.settings-btn:hover {
  opacity: 1;
}
.settings-btn:active {
  border: 0;
  outline: 0;
  transform: scale(1.1);
}

.settings-container {
  position: absolute;
  bottom: 60px;
  left: 0;
  min-width: 370px;
  text-align: left;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  border: none;
  font-size: 18px;
  z-index: 100;
}
@media (max-width: 1400px) {
  .settings-container {
 
    background-color: rgb(13, 12, 12) !important;
  }
   
 }
.settings-container ul {
  list-style: none;
}
.settings-container li {
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

label {
  margin-right: 10px;
}

.input-label {
  cursor: pointer;
  opacity: 0.8;
  transition: 0.3s;
}
.input-label:hover {
  cursor: pointer;
  opacity: 1;
}

.checkbox-label {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-basis: 100%;
  align-items: center;
  height: 28px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0.8;
  transition: 0.3s;
}
.checkbox-label:hover {
  cursor: pointer;
  opacity: 1;
}

.switch-span {
  margin-right: 10px;
}

select {
  cursor: pointer;
}

.settings-container select,
.tags-container input {
  padding: 3px;
  border-radius: 3px;
  border: none;
}
.settings-container select:focus-visible,
.tags-container input:focus-visible {
  outline: 1px solid darkgray;
}

.checkbox-switch {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  width: 50px;
  height: 22px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 25%/50%;
  vertical-align: middle;
  background: #eee;
  transition: 0.2s;
  margin-left: 10px;
}
.checkbox-switch:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  transition: 0.15s;
}

.settings {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-basis: 240px;
}

.copyright {
  text-align: end;
  flex-basis: 240px;
}
.copyright a {
  opacity: 0.8;
  transition: opacity 0.3s ease-in-out;
}
.copyright a:hover {
  opacity: 1;
}

.github img {
  width: 40px;
  height: 40px;
}

.rsschool img {
  height: 40px;
}

.checkbox-input {
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.checkbox-input:checked + .checkbox-switch {
  background: #78cc78;
}
.checkbox-input:checked + .checkbox-switch:before {
  transform: translateX(28px);
}

@media (max-width: 768px) {
  .time {
    min-height: 80px;
    font-size: 72px;
  }
  .greeting-container {
    min-height: 40px;
    font-size: 32px;
  }
  .greeting {
    padding: 5px;
  }
  .name {
    font-size: 32px;
    padding: 5px;
  }
  .player-controls-container {
    flex-direction: column;
  }
  .player-controls {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .player-advanced-controls {
    align-items: initial;
    flex-direction: column;
  }
  .player-progress {
    width: 100%;
  }
  .player-volume {
    display: flex;
    align-items: baseline;
  }
  .volume {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .time {
    font-size: 50px;
    margin-top: 125px;
  }
  .quote-container {
    display: none;
  }
  .greeting {
    font-size: 25px;
  }
  .name {
    font-size: 25px;
  }
  .settings-btn {
    width: 30px;
    height: 30px;
    background-size: 30px 30px;
  }
  .rsschool img {
    margin-right: 60px;
    height: 35px;
  }
  .github img {
    width: 35px;
    height: 35px;
  }
}/*# sourceMappingURL=style.css.map */