@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poetsen+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Doto:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap');
body{
  background-color: rgb(56, 56, 56);
  background-size: cover;
  color: white;
  font-family: "Host Grotesk", sans-serif;
  transition: 0.4s;
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
   }
}


::-webkit-scrollbar {
  width: 10px;
}


::-webkit-scrollbar-track {
  background: #f1f1f1;
}


::-webkit-scrollbar-thumb {
  background: #888;
}


::-webkit-scrollbar-thumb:hover {
  background: #555;
}


#container {
  border-radius: 50px;
  background: #212121;
  box-shadow: -1px -5px 15px #41465b, 5px 5px 15px #41465b,
      inset 5px 5px 10px #212121, inset -5px -5px 10px #212121;

  width: 350px;
  border-radius: 14px;
  margin: 0px;
  margin-top: -50px;
  padding: 0px;
  color: rgb(161, 161, 161);
  font-family: "Host Grotesk", sans-serif;
  transition: 0.4s;
  font-size: 0.8em;
  border: 1px solid #404c5d;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

div {
  margin: 0px;
  padding: 0px;
  position: relative;
}

#wrapper {
  padding: 10px;
  position: relative;
}

#controls div, #timeInfo div {
  display: table-cell;
  vertical-align:middle;
  position: relative;
}

#volumeSlider {
  width:70px;

  height:10px;
  background-color: #DBDBDB;
  position: relative;
  border: 0px;
  border-radius: 14px;
}

#volumeSlider div {
  height:inherit;
  position: relative;
  border: 0px;
  border-radius: 14px;
}

#timeInfo {
  margin: 5px 0px;
  position: relative;
  font-size: 0px;
} 

#timeBar {
  width: 310px;
  height:20px;
  background-color: #b6b6b6;
  border: 1px solid #404c5d;
  border-radius: 8px;
  cursor: pointer;

}

#timeBar div {
  height:inherit;
  position: relative;
  border: 0px;
  border-radius: 7px;
  cursor: pointer;
}

#volumeIcon{
  padding-left: 20px;
  padding-right: 10px;
  position: relative;
}

.filler {
  width: inherit;
  background-color: #2e2d2d;
  position: relative;
  border: 0px;
  border-radius: 8px;
  float: left;
    height: 20px;
    cursor: pointer;
}


.button img {
  width:20px;
  margin-left: 1px;
  margin-top:4px;
}

.blank{
  padding: 5px;
}

.volumeAlign {
  padding-bottom: 15px;
}




.spinner {
  background-image: linear-gradient(rgb(186, 66, 255) 35%,rgb(0, 225, 255));
  width: 32px;
  height: 32px;
  animation: spinning82341 1.7s linear infinite;
  text-align: center;
  border-radius: 50px;
  filter: blur(1px);
  box-shadow: 0px -5px 20px 0px rgb(186, 66, 255), 0px 5px 20px 0px rgb(0, 225, 255);
}

.spinner1 {
  background-color: rgb(36, 36, 36);
  width: 32px;
  height: 32px;
  border-radius: 50px;
  filter: blur(10px);
}

@keyframes spinning82341 {
  to {
    transform: rotate(360deg);
  }
}



.info{
  border-radius: 50px;
  background: #212121;
  box-shadow: -1px -5px 15px #41465b, 5px 5px 15px #41465b,
      inset 5px 5px 10px #212121, inset -5px -5px 10px #212121;
  width: 320px;
  border-radius: 14px;
  margin: 0px;
  padding: 0px;
  color: white;
  font-family: "Host Grotesk", sans-serif;
  font-size: 0.8em;
  border: 1px solid #404c5d;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


.main{
  width: 400px;
  height: 50px;
  margin: auto;
  margin-top: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 10px;

}

.color-div{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px black solid;
  cursor: pointer;
}

#grey{
  background-color: #fca23c;
}

#white{
  background-color: #10CAD4;
}

#blue{
  background-color: #DB3042;
}

#yellow{
  background-color: #280028;
}

#black{
  background-color: black;
}

.text{
  text-align: center;
  font-size: 1.5rem;
  font-weight: bolder;
}






.loader {
  border: 10px solid #f3f3f3; /* Light grey */
  border-top: 10px solid #6844FB; /* Blue */
  border-radius: 50%;
  width: 5px;
  height: 5px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}




hr{
  border-radius: 600;
  border: 1px solid white;
}




.counter {
  color: #333;
  margin: 0 auto;
  text-align: center;
}
 
h1 {
  font-weight: normal;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
}
 
li {
  display: inline-block;
  font-size: 1.5em;
  list-style-type: none;
  padding: 1em;
  text-transform: uppercase;
}
 
li span {
  display: block;
  font-size: 4.5rem;
}
 
.message {
  font-size: 4rem;
}
 
#content {
  display: none;
  padding: 1rem;
}
 
.emoji {
  padding: 0 0.25rem;
}
 
@media all and (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }
 
  li {
    font-size: 1.125rem;
    padding: 0.75rem;
  }
 
  li span {
    font-size: 3.375rem;
  }
}

#trackInfo{
  padding-left: 10px;
}




.button {
    height: 50px;
    margin: 5px;
    width: 95px;
    background: #333;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: Consolas, Courier New, monospace;
    border: solid #404c5d 1px;
    font-size: 16px;
    color: rgb(161, 161, 161);
    -webkit-transition: 500ms;
    transition: 500ms;
    border-radius: 9999px;
    background: linear-gradient(145deg, #2e2d2d, #212121);
    -webkit-box-shadow: -1px -5px 15px #41465b, 5px 5px 15px #41465b,
      inset 5px 5px 10px #212121, inset -5px -5px 10px #212121;
    box-shadow: -1px -5px 15px #41465b, 5px 5px 15px #41465b,
      inset 5px 5px 10px #212121, inset -5px -5px 10px #212121;
  }
  
  .button:hover {
    -webkit-box-shadow: 1px 1px 13px #20232e, -1px -1px 13px #545b78;
    box-shadow: 1px 1px 13px #20232e, -1px -1px 13px #545b78;
    color: #d6d6d6;
    -webkit-transition: 500ms;
    transition: 500ms;
  }
  
  .button:active {
    -webkit-box-shadow: 1px 1px 13px #20232e, -1px -1px 33px #545b78;
    box-shadow: 1px 1px 13px #20232e, -1px -1px 33px #545b78;
    color: #d6d6d6;
    -webkit-transition: 100ms;
    transition: 100ms;
  }
  .button img {
    /* Ustawienie koloru RGB (161, 161, 161) */
    filter: invert(63%) sepia(0%) saturate(0%) hue-rotate(200deg) brightness(85%) contrast(90%);
    transition: filter 0.3s ease; /* Płynne przejście koloru */
}





#controls{
    margin-top: -12px;
}











button {
    height: 50px;
    margin: 5px;
    width: 120px;
    background: #333;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: Consolas, Courier New, monospace;
    border: solid #404c5d 1px;
    font-size: 16px;
    color: rgb(161, 161, 161);
    -webkit-transition: 500ms;
    transition: 500ms;
    border-radius: 9999px;
    background: linear-gradient(145deg, #2e2d2d, #212121);
    -webkit-box-shadow: -1px -5px 15px #41465b, 5px 5px 15px #41465b,
      inset 5px 5px 10px #212121, inset -5px -5px 10px #212121;
    box-shadow: -1px -5px 15px #41465b, 5px 5px 15px #41465b,
      inset 5px 5px 10px #212121, inset -5px -5px 10px #212121;
  }
  
  button:hover {
    -webkit-box-shadow: 1px 1px 13px #20232e, -1px -1px 13px #545b78;
    box-shadow: 1px 1px 13px #20232e, -1px -1px 13px #545b78;
    color: #d6d6d6;
    -webkit-transition: 500ms;
    transition: 500ms;
  }
  
  button:active {
    -webkit-box-shadow: 1px 1px 13px #20232e, -1px -1px 33px #545b78;
    box-shadow: 1px 1px 13px #20232e, -1px -1px 33px #545b78;
    color: #d6d6d6;
    -webkit-transition: 100ms;
    transition: 100ms;
  }
  

.footer {
  position: fixed;
  left: 0;
  bottom: 15px;
  width: fit-content;
  margin-left: 0.5%;
  margin-right: 50%;
  border-radius: 14px;
  background: #212121;
  box-shadow: -1px -5px 15px #41465b, 5px 5px 15px #41465b,
      inset 5px 5px 10px #212121, inset -5px -5px 10px #212121;

  color: white;
  border: 1px solid #404c5d;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  padding: 15px 15px;
}

.NEW{
  padding: 2px 2px;
  background-color: #DB3042;
  color: white;
  width: fit-content;
  border-radius: 5px;
}
.SOON{
  padding: 2px 2px;
  background-color: #c1c444;
  color: white;
  width: fit-content;
  border-radius: 5px;
}

.noto-color-emoji-regular {
  font-family: "Noto Color Emoji", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.buttonBack {
  display: block;
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0;
  overflow: hidden;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  border: 0;
}

.buttonBack:before,
.buttonBack:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  inset: 7px;
}

.buttonBack:before {
  border: 4px solid #f0eeef;
  transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
    transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
}

.buttonBack:after {
  border: 4px solid #96daf0;
  transform: scale(1.3);
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
}

.buttonBack:hover:before,
.buttonBack:focus:before {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.buttonBack:hover:after,
.buttonBack:focus:after {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
    transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
}

.button-box {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.button-elem {
  display: block;
  width: 20px;
  height: 20px;
  margin: 17px 18px 0 18px;
  transform: rotate(180deg);
  fill: #f0eeef;
}

.buttonBack:hover .button-box,
.buttonBack:focus .button-box {
  transition: 0.4s;
  transform: translateX(-56px);
}


.playstore-button {
  display: inline-flex;
  align-items: center;
  width: 240px;
  justify-content: left;
  border-radius: 9999px;
  background: linear-gradient(145deg, #2e2d2d, #212121);
  padding: 0.625rem 1.5rem;
  text-align: center;
  color: rgb(161, 161, 161);
  -webkit-box-shadow: -1px -5px 15px #41465b, 5px 5px 15px #41465b,
      inset 5px 5px 10px #212121, inset -5px -5px 10px #212121;
    box-shadow: -1px -5px 15px #41465b, 5px 5px 15px #41465b,
      inset 5px 5px 10px #212121, inset -5px -5px 10px #212121;
  outline: 0;
  -webkit-transition: 500ms;
    transition: 500ms;
  text-decoration: none;
}

.playstore-button:hover {
  background: linear-gradient(145deg, #2e2d2d, #212121);

      -webkit-box-shadow: 1px 1px 13px #20232e, -1px -1px 13px #545b78;
      box-shadow: 1px 1px 13px #20232e, -1px -1px 13px #545b78;
      color: #d6d6d6;
  border: 0px;
}

.icon {
  height: 1.5rem;
  width: 1.5rem;
}

.texts {
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.text-1 {
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-2 {
  font-weight: 600;
}
