@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* .container-player {
  max-width: 687px;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
} */

.player {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #e5e6f0;
  border-color: #d7daeb;
  border-left-style: solid;
  border-left-width: 1px;
  border-right-style: solid;
  border-right-width: 1px;
  height: 60px;
  z-index: 1;
  position: relative;
}

.icon-repeat {
  height: 41.94px;
  position: relative;
  width: 41.34px;
  cursor: pointer;
  transition: 0.3s;
}

.icon-repeat:hover {
  opacity: 0.85;
}

.icon-next {
  height: 27px;
  position: relative;
  width: 21px;
  cursor: pointer;
  transition: 0.3s;
}

.icon-next:hover {
  opacity: 0.85;
}

.icon-play {
  height: 42px;
  position: relative;
  width: 42px;
  cursor: pointer;
  transition: 0.3s;
}

.icon-play:hover {
  opacity: 0.9;
}

.icon-stop {
  height: 42px;
  position: relative;
  width: 42px;
  cursor: pointer;
  transition: 0.3s;
}

.icon-stop:hover {
  opacity: 0.9;
}

.icon-text {
  height: 27.75px;
  position: relative;
  width: 27.75px;
  cursor: pointer;
  transition: 0.3s;
}

.icon-text:hover {
  opacity: 0.85;
}

.icon-playlist {
  height: 22px;
  position: relative;
  width: 31px;
  cursor: pointer;
  transition: 0.3s;
}

.icon-playlist:hover {
  opacity: 0.85;
}

.icon-back {
  height: 27px;
  position: relative;
  width: 21px;
  cursor: pointer;
  transition: 0.3s;
}

.icon-back:hover {
  opacity: 0.85;
}

.icon-learning {
  height: 31px;
  position: relative;
  width: 37px;
  cursor: pointer;
  transition: 0.3s;
}

.icon-learning:hover {
  opacity: 0.85;
}

.hide {
  display: none;
}

@media screen and (max-width: 768px) {
  .icon-text {
    display: none;
  }

  .icon-repeat {
    display: none;
  }
}
