@charset 'utf-8';

.play-section {
  background: white;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 10;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .play-section {
    position: -webkit-sticky;
    position: fixed;
    bottom: -5px;
    width: 100vw;
  }
}

@media (max-width: 768px) {
  .play-section {
    max-width: 90vw;
    border-radius: 8px;
    margin: auto;
    bottom: -2rem;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 600px) {
    .play-section {
      max-width: 90vw;
      border-radius: 8px;
      margin: auto;
      bottom: 2rem;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
    }
  }

.play-pause {
  font-size: 65px;
  color: white;
  display: flex;
  align-items: center;
}

.volume-icon {
  font-size: 28px;
  margin-top: -5px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  border: none;
}

.volume-slide {
  width: 200px;
  display: flex;
  align-items: center;
}

.volume-control {
  display: none;
  padding: 10px;
  border-radius: 5px;
}

.volume-slide input[type="range"] {
  outline: none;
  border-radius: 5px;
  border: none;
}

input[type="range"]::-ms-thumb,
input[type="range"]::-ms-fill-upper,
input[type="range"]::-ms-fill-lower {
  border: none !important;
}

.percentual-volume {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  border: none;
}

.vagalume a {
  color: #fff;
  text-decoration: underline;
}

@media (min-width: 576px) {
  .volume-control {
    display: flex;
    justify-content: flex-end;
  }
}


#playerButton {
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 56px;
  height: 56px;
  cursor: pointer;
  margin-right: 20px;
}

.fa-play-circle {
  background-image: url("../images/player/play.svg");
}

.fa-play-circle:hover {
  background-image: url("../images/player/play-hover.svg");
}

.fa-pause-circle {
  background-image: url("../images/player/pause.svg");
}

.fa-pause-circle:hover {
  background-image: url("../images/player/pause-hover.svg");
}
#volumeImg {
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
.muted {
  background-image: url("../images/player/mute.svg");
}
.sound {
  background-image: url("../images/player/sound.svg");
}
.full {
  background-image: url("../images/player/volume-full.svg");
}
.close {
  color: white;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.fade-in {
  opacity: 1;
  transition: opacity 0.5s ease-in;
}

.slider {
  -webkit-appearance: none;
  height: 8px;
  width: 150px;
  background-color: #e5e7eb;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
  cursor: pointer;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
}

.slider::-moz-range-thumb {
  width: 8px;
  height: 8px;
  background: #000;
  cursor: pointer;
  border-radius: 50%;
}
