@font-face {
  font-family: 'Arial-MT';
  src: url("../assets/fonts/Arial-MT.woff"); /* Путь к файлу со шрифтом */
 }

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*, a:focus {

  outline: none !important;

}

body {
  min-width: 480px;
  min-height: 100vh;
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: multiply;
  transition: background-image 1.5s ease-in-out;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 35vh;
  min-height: 220px;  
  padding: 20px;
}
/* Audioplayer */
.player{
display: flex;
 min-width: 250px;
 transition: all 1s ease;
}
.simple_player{

  width: 15vw;
}
.complicated_player{
  width: 25vw;
 
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  /* background: royalblue; */
  
  border-radius: 20px;
  
}


.player-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 120px;
  margin-bottom: 20px;
}
.mute_button{
  width: 22px;
  height: 20px;
  background: url("../assets/svg/volume.svg");
  filter: invert(36%) sepia(89%) saturate(3120%) hue-rotate(192deg) brightness(106%) contrast(103%);
  background-size: cover;
  background-repeat: no-repeat;
  border: none;
  transition: all 0.5;
  margin-right: 20px;
}
.muted{
  background: url("../assets/svg/mute.svg");
  filter: invert(36%) sepia(89%) saturate(3120%) hue-rotate(192deg) brightness(106%) contrast(103%);
  background-size: cover;
  background-repeat: no-repeat;
}
.mute_button:hover{
  cursor: pointer;
  transition: all 0.5;
  transform: scale(1.1);
}
.progress_time_bar{
  width: 20%;
  padding: 5px;
}
#time{
  min-width: 180px;
}
.track_info{
  width: 20vw;
  
}
.track_name{
  text-align: left;
}
.current_time{
  display: flex;
  align-self: flex-end;

}
.player_sound{
  min-width: 200px;
  display: flex;
  justify-content: flex-start;
  align-self: center;
  padding: 3px;  
 
}
.but_play{
  width: 12px;
  height: 12px;
  float: right;
  margin-top: 5px;
}
.playlis_container{
  width: 200px;
  display: flex;
  justify-content: space-between;
}
.buttons{
  display: flex;
  flex-direction: column;
}
.play_mini{
  width: 15px;
  height: 15px;
  margin-bottom: 5px;
  background: url("../assets/svg/play.svg");
  background-size: cover;
  background-repeat: no-repeat;
  border: none;
}
.play-list {
  text-align: left;
  width: 25vw;
}
.playing{
  text-shadow:2px 2px 2px rgb(2, 196, 255);
  /* font-size: 18px; */
  transition: all 0.8s ;
}
li{
  transition: all 0.8s ;
  
}
.play-item {
  position: relative;
  padding: 5px;
  padding-left: 20px;
  list-style: none;
  opacity: .8;
  cursor: pointer;
  transition: .3s;
}

.play-item:hover {
  opacity: 1;
}

.play-item::before {
  content: "\2713";  
  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: .8;
  cursor: pointer;
  transition: .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");
}

.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;
  transition: all 1s ease;
}

.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: .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;
  transition: all 1s ease; 
}

.date {
  min-height: 28px;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all 1s ease; 
}

.greeting-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch;
  align-items: center;
  min-height: 48px;
  width: 100vw;
  font-size: 40px;
  transition: all 1s ease;
  margin-bottom: 30px;
}
.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: #888886;
  opacity: .6;
}
.todo_container{
  max-width: 1200px;
  width: 100%;
  height: 10vh;
  transition: all 1s ease;
}
.todo_title{
  font-size: 26px;
  margin-bottom: 30px;
}
.todo_input{
  max-width: 900px;
  width: 100%;
  color: white;
  font-size: 30px;
  background: transparent;
  border: none;
  border-bottom: 2px solid white;
  text-align: center;
  margin: auto;
}
.output{
  max-width: 900px;
  width: 100%;
  color: white;
  font-size: 30px;
  margin: auto;
  display: flex;
  justify-content: center;
}
.toDo_button{
 width: 28px;
 height: 28px;
 cursor: pointer;
 filter: invert(96%) sepia(99%) saturate(2%) hue-rotate(189deg) brightness(105%) contrast(100%);
 background: url("../assets/svg/delete.svg");
 background-size: cover;
 background-repeat: no-repeat;
 cursor: pointer;
 border: none;
 text-decoration:line-through;
 display: none;
}

#toDo{
  width: 20px;
  height: 20px;
}
.footer {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 25vh;
  min-height: 160px;  
  padding: 20px;
}
.footer_info{
  max-width: 200px;
  width: 100%;
  display: flex;
  justify-content:space-evenly;
  position: absolute;
  margin-right: 0;
}
.options{
  align-self: flex-start;
  width: 60px;
  height: 60px;
  background-image: url("../assets/svg/options.svg");
  filter: invert(89%) sepia(1%) saturate(818%) hue-rotate(21deg) brightness(113%) contrast(79%);
  background-size: cover;
  cursor: pointer;
  transition: all 0.8s;
  margin-bottom: -50px;
}
.footer_info{
  align-self: flex-end;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rs_logo{
  height: 25px;
  width: 67px;
  background: url("../assets/svg/rs_school.svg");
  background-size: cover;
  background-repeat: no-repeat;
  filter: invert(89%) sepia(1%) saturate(818%) hue-rotate(21deg) brightness(113%) contrast(79%);
}
.rs_logo:hover{
  transform: scale(1.1);
  transition: all 0.5s;
}
.github{
  width: 25px;
  height: 25px;
}
.github:hover{
  transform: scale(1.1);
  transition: all 0.5s;
}
.github img{
  width: 100%;
}
.options:hover{
  transition: all 0.8s;
  transform: scale(1.2);
}
.options:active{
  transition: all 0.6s;
  transform: rotate(180Deg);
}
.options_form{
  border-radius: 10px;
  max-width: 300px;
  max-height: 800px;
  display: flex;
  flex-direction: column;
  background: rgb(216, 214, 216);
  opacity: 0.9;
  position: absolute;
  left: -700px;
  transition: linear 0.9s;
}
.form-active{
  transition: linear 0.9s;
  left: 100px;
}

.options_language{
  border: 1px solid green;
  width: 96%;
  height: 15%;
  background: cornflowerblue;
  margin: 5px;
  border-radius: 10px;
}
h3{
  color: rgb(36, 35, 35);
  text-align: left;
  padding: 10px;
}
.language_radio{
  color: rgb(36, 35, 35);
}
.language_select{
display: flex;
flex-direction: column;
align-items: flex-start;
padding-left: 15px;
}
.source_select{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 15px;
}
.options_sourse{
  width: 96%;
  height: 25%;
  background: cornflowerblue;
  margin: 5px;
  border-radius: 10px;
}
.options_visibility{
  width: 96%;
  height: 60%;
  background: cornflowerblue;
  margin: 5px;
  border-radius: 10px;
}
.visibility_select{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 15px;
}
.change-quote {
  margin-bottom: 30px;
  background-image: url("../assets/svg/reload.svg");  
}

.quote {
  min-height: 32px;
}

.author {
  min-height: 20px;
}
.quote_box{
  transition: all 1s ease;
}
@media (max-width: 1024px){
  .track_info{
    font-size: 13px;
  }
}
@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;
  }
  .play-list{
   font-size: 14px;
  }
  .play_mini{
    width: 12px;
    height: 12px;
  }
  .play-prev{
    width: 20px;  
    height: 20px;
    background-size: cover;
  }
  .play-next{
    width: 20px;  
    height: 20px;
    background-size: cover;
  }
  .play{
    width: 25px;  
    height: 25px;
    background-size: cover;
  }
  .track_info{
    font-size: 14px;
  }

}
@media (max-width: 480px){
  .main{
    height: 35vh;
  }
  .time{
    font-size: 40px;
  }
  .date{
    font-size: 16px;
  }
  .greeting{
    font-size: 20px;
  }
  .name{
    font-size: 20px;
  }
  .play-list{
    width: 150px;
    font-size: 13px;
   }
   .current_time{
     width: 200px;
   }
   .track_info{
     font-size: 12px;
     width: 200px;
   }
   .options{
     width: 45px;
     height: 45px;
   }
   .todo_title{
     font-size: 18px;
   }
   .todo_input{
     font-size: 18px;
   }
   .checkbox_form{
     font-size: 18px;
   }
   #toDo{
     width: 15px;
     height: 15px;
   }
   .toDo_button{
     width: 15px;
     height: 15px;
   }
   .player-controls{
     width: 80px;
   }
   .footer_info{
     width: 150px;
   }
}