@charset "UTF-8";
@import "base/normalize.css";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-width: 480px;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background-size: cover !important;
  background-blend-mode: multiply;
  transition: background-image 1s ease-in-out;
  overflow: hidden;
}

.header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 30vh;
  min-height: 220px;
  padding: 20px;
}
@media screen and (max-width: 480px) {
  .header {
    flex-direction: column;
    row-gap: 31px;
    flex-wrap: nowrap;
  }
}

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

.play-list {
  text-align: left;
}

.play-item {
  position: relative;
  padding: 5px;
  padding-left: 20px;
  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;
  font-weight: 900;
}

.item-active::before {
  color: #C5B358;
}

.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("../svg/play.svg");
}

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

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

.play-next {
  background-image: url("../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;
}
@media screen and (max-width: 480px) {
  .weather {
    display: none;
  }
}

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

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

.weather-icon {
  font-size: 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::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("../svg/slider-prev.svg");
}
@media screen and (max-width: 480px) {
  .slide-prev {
    left: 40%;
    top: 80%;
  }
}

.slide-next {
  right: 20px;
  background-image: url("../svg/slider-next.svg");
}
@media screen and (max-width: 480px) {
  .slide-next {
    right: 40%;
    top: 80%;
  }
}

.time {
  min-height: 124px;
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: 12px;
  font-size: 104px;
  font-family: "Arial-MT", sans-serif;
}

.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::placeholder {
  color: #fff;
  opacity: 0.6;
}

.footer {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  width: 100%;
  height: 30vh;
  min-height: 160px;
  padding: 20px;
  padding-bottom: 41px;
  flex-wrap: wrap;
}
.footer__content {
  width: 51%;
  flex-basis: 60%;
}
@media screen and (max-width: 480px) {
  .footer__content {
    display: none;
  }
}
.footer__icons {
  position: absolute;
  top: 92%;
  right: 6.5%;
  flex-basis: 20vw;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 9px;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .footer__icons {
    margin: 0;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .footer__icons {
    right: auto;
    width: 40%;
    left: 0;
  }
}
.footer__link {
  display: block;
  margin: auto;
  cursor: pointer;
  width: 38px;
  height: 38px;
  background-size: 38px 38px;
}
.footer__link-1 {
  background: url("../svg/github-icon.svg") no-repeat center center;
  opacity: 0.8;
}
.footer__link-1:hover {
  opacity: 1;
}
.footer__link-2 {
  background: url("../svg/rs_school-logo.svg") no-repeat center center;
}
.footer__link-2:hover {
  filter: invert(97%) sepia(13%) saturate(67%) hue-rotate(84deg) brightness(112%) contrast(87%);
}
@media screen and (max-width: 768px) {
  .footer {
    flex-direction: column;
  }
}

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

.quote {
  min-height: 32px;
}

.author {
  min-height: 20px;
}

@media (max-width: 768px) {
  .time {
    min-height: 80px;
    font-size: 66px;
  }

  .greeting-container {
    min-height: 40px;
    font-size: 23px;
    width: 80vw;
    flex-direction: column;
  }

  .greeting {
    padding: 5px;
  }

  .name {
    font-size: 24px;
    padding: 5px;
    padding-bottom: 0;
  }
}
@media (max-width: 480px) {
  .time {
    min-height: 72px;
    font-size: 42px;
  }
}
.play.paused {
  background: url("../svg/pause.svg") no-repeat center center;
  background-size: cover;
}

.play-item.active {
  font-weight: 600;
  opacity: 1;
  position: relative;
}
.play-item.active::before {
  content: "";
  background: url("../svg/play.svg") no-repeat center center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 2px;
  font-weight: 900;
  width: 20px;
  height: 20px;
}

.play-item.active-button::before {
  content: "";
  background: url("../svg/pause.svg") no-repeat center center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 2px;
  font-weight: 900;
  width: 20px;
  height: 20px;
}

.melody-container {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  flex-basis: 59%;
}

.melody-inputs {
  display: flex;
  flex-direction: row;
  justify-content: end;
  column-gap: 13px;
}
@media screen and (max-width: 1080px) {
  .melody-inputs {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .melody-inputs {
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .melody-inputs {
    flex-direction: row;
    justify-content: flex-start;
  }
}

.melody-time {
  flex-basis: 69%;
  display: flex;
  flex-direction: row;
  column-gap: 11px;
  flex-wrap: nowrap;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .melody-time {
    flex-wrap: wrap;
    row-gap: 16px;
    margin-bottom: 20px;
  }
}

.progress {
  appearance: none;
  height: 8px;
}

::-webkit-slider-thumb {
  appearance: none;
  width: 10px;
  height: 10px;
  background: #c5c5c5;
}

.melody-progress {
  width: 82%;
}

.melody-volume {
  display: flex;
  flex-direction: row;
  column-gap: 15px;
  align-items: center;
}

.volume-icon {
  background: url("../svg/volume.svg") no-repeat center center;
  background-size: cover;
  width: 29px;
  height: 20px;
  transition: 0.7s ease-in-out;
  cursor: pointer;
}
.volume-icon:hover {
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(100deg) brightness(302%) contrast(115%);
}

.volume-icon.mute {
  background: url("../svg/mute.svg") no-repeat center center;
  background-size: cover;
}

.volume-range {
  background: linear-gradient(to right, #505050 0%, #505050 7px, #ffffff 18%, #ffffff 100%);
}

.player.hidden,
.weather.hidden,
.time.hidden,
.date.hidden,
.greeting-container.hidden,
.footer__content.hidden,
.melody-container.hidden {
  opacity: 0;
  transition: 1s ease-in-out;
  visibility: hidden;
}

.settings {
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 77px;
  height: 70vh;
  width: 32%;
  background: #a29e95;
  border-radius: 31px;
  align-items: center;
  opacity: 0.9;
  z-index: 10;
}
.settings__cross {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 44px;
  height: 41px;
  cursor: pointer;
  transition: 1s;
}
.settings__cross:before, .settings__cross:after {
  content: "";
  position: absolute;
  top: 21px;
  right: 6px;
  height: 2px;
  width: 30px;
  background-color: #000000;
}
.settings__cross:before:hover, .settings__cross:after:hover {
  background: #161616;
}
.settings__cross:before {
  transform: rotate(45deg);
}
.settings__cross:after {
  transform: rotate(-45deg);
}
.settings__cross:hover {
  transform: scale(1.2);
}
.settings__menu {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 80px;
  align-items: flex-start;
  text-align: initial;
  font-size: 1.7rem;
  line-height: 1.9rem;
  font-weight: normal;
  font-style: normal;
}
.settings__menu > .link-4,
.settings__menu .link-5 {
  margin-bottom: -29px;
}
.settings__menu > .link-4:after,
.settings__menu .link-5:after {
  top: 93px;
}
@media screen and (max-width: 1800px) {
  .settings__menu > .link-4:after,
.settings__menu .link-5:after {
    top: 70px;
  }
}
@media screen and (max-width: 1800px) {
  .settings__menu {
    row-gap: 50px;
    font-size: 1rem;
    line-height: 1.9rem;
    font-weight: normal;
    font-style: normal;
  }
}
.settings__link {
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: 1s ease-in-out;
}
.settings__link:after {
  content: "";
  position: absolute;
  top: 53px;
  left: 0;
  width: 100%;
  border-bottom: 2px solid white;
}
@media screen and (max-width: 1800px) {
  .settings__link:after {
    top: 34px;
  }
}
.settings__link:hover {
  color: #363333;
}
.settings__link.active {
  font-weight: 600;
  color: #474747;
}
.settings__input {
  margin-top: 17px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .settings {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .settings {
    width: 100%;
  }
}

.settings.active {
  display: block;
}

.settings-icon {
  position: absolute;
  left: 76px;
  top: 78%;
  width: 46px;
  height: 46px;
  background: url("../img/settings.png") no-repeat center center;
  background-size: cover;
  cursor: pointer;
  transition: 1s ease-in-out;
  opacity: 0.7;
  z-index: 10;
}
.settings-icon:hover {
  transform: scale(1.3);
  opacity: 1;
}
@media screen and (max-width: 1800px) {
  .settings-icon {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 480px) {
  .settings-icon {
    left: 75%;
    top: 92%;
  }
}

@media screen and (max-width: 1800px) {
  .settings,
.settings.active {
    height: 95%;
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 400;
    font-style: normal;
  }
}
.choosen-api {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, 0);
  display: none;
  width: 30%;
  height: 100px;
  border-radius: 32px;
  background: white;
  opacity: 0.6;
  color: black;
  transition: 1s ease-in-out;
  opacity: 0;
}

.choosen-api.active {
  display: block;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  transition: 1s ease-in-out;
}

.settings-checkbox {
  display: none;
}
.settings-checkbox__container {
  display: flex;
  flex-direction: column;
  row-gap: 19px;
  margin-top: 41px;
  font-size: 1.8rem;
  text-align: initial;
}
@media screen and (max-width: 1440px) {
  .settings-checkbox__container {
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 400;
    font-style: normal;
    row-gap: 24px;
  }
}
.settings-checkbox__container > label {
  position: relative;
  display: flex;
  margin-bottom: 25px;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: baseline;
  transition: 1s ease-in-out;
}
.settings-checkbox__container > label:hover {
  color: #535353;
}
.settings-checkbox__btn {
  width: 40px;
  height: 50px;
  background: url("../svg/previous.svg") no-repeat center center;
  position: absolute;
  top: 16px;
  left: 29px;
  cursor: pointer;
  transition: 1s;
}
.settings-checkbox__btn:hover {
  transform: scale(1.2);
}

.settings-checkbox.active {
  display: block;
}

.checkbox-input {
  position: absolute;
  width: 95%;
  height: 29px;
  cursor: pointer;
  appearance: none;
}
.checkbox-input::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0px;
  width: 16px;
  height: 16px;
  border: 2px solid black;
  border-radius: 50%;
  cursor: pointer;
}

.checkbox-input:checked,
.checkbox-input.active {
  appearance: none;
}
.checkbox-input:checked::before,
.checkbox-input.active::before {
  background: #5c5c5c;
}

.todo {
  flex-basis: 20%;
}

.todo.hidden {
  opacity: 0;
  transition: 1s ease-in-out;
  visibility: hidden;
}

.todo-description {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 600;
  font-style: normal;
}
.todo-description__text {
  padding-bottom: 5px;
  cursor: pointer;
}
.todo-description__text:hover {
  color: #7c7c7c;
  border-bottom: 3px solid #7c7c7c;
}

.todo-menu {
  display: none;
  width: 31%;
  position: absolute;
  padding: 30px;
  height: 76%;
  bottom: 13px;
  right: 19px;
  background: #6d7164;
  opacity: 0.8;
  border-radius: 33px;
  font-size: 2.4rem;
  line-height: 2rem;
  font-weight: 400;
  font-style: normal;
  transition: 1s ease-in-out;
  opacity: 0;
}
.todo-menu__create {
  margin-top: 75px;
  margin-bottom: 26px;
}
@media screen and (max-width: 1800px) {
  .todo-menu__create {
    margin-top: 50px;
  }
}
.todo-menu__input {
  height: 86px;
  width: 100%;
  background-color: #a1a1a1;
  color: white;
  border: none;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 1800px) {
  .todo-menu__input {
    height: 50px;
  }
}
.todo-menu__input.error {
  color: red;
}
.todo-menu__btn {
  border: none;
  width: 70%;
  height: 60px;
  border-radius: 24px;
  color: white;
  background: #383232;
  font-size: 1.8rem;
  cursor: pointer;
  transition: 0.7s ease-in-out;
}
.todo-menu__btn:hover {
  background: #ffffff;
  color: #383232;
  transition: 1s ease-in-out;
}
@media screen and (max-width: 1800px) {
  .todo-menu__btn {
    width: 70%;
    height: 40px;
    font-size: 1rem;
    line-height: 1.2rem;
    font-weight: 400;
    font-style: normal;
  }
}
.todo-menu__tasks {
  text-align: initial;
  font-size: 2.2rem;
}
.todo-menu__list > li {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 23px;
  border-bottom: 2px solid;
  height: 64px;
  list-style-type: none;
}
@media screen and (max-width: 1800px) {
  .todo-menu {
    width: 36%;
    height: 95%;
    font-size: 1.8rem;
    line-height: 1.8rem;
    font-weight: 400;
    font-style: normal;
  }
}
@media screen and (max-width: 1080px) {
  .todo-menu {
    width: 46%;
  }
}
@media screen and (max-width: 480px) {
  .todo-menu {
    width: 90%;
  }
}

.todo-menu.active {
  display: block;
  transition: 1s ease-in-out;
  opacity: 0.9;
}

.todo-label.checked {
  color: green;
  text-decoration: line-through;
}

.hideEl {
  display: none;
}

/*# sourceMappingURL=style.css.map */
