/* PLAYER 03 */

/* ----------------- General styles ----------------- */

body {
  font-family: 'Brandon Grotesque', Arial, sans-serif;
}

.rwmas-3 .video-player__controls {
  background-color: transparent !important;
}

.rwmas-3 .video-player__controls--audio-only {
  width: 100% !important;
  padding: 0px;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
  position: relative;
}

.rwmas-3 .video-player__control-buttons {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 0px;
  margin-top: -20px;
  order: 1;
}

.rwmas-3 .video-player__left-controls button:nth-child(2) {
  width: 38px;
  height: 38px;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin-right: 10px;
}

.rwmas-3 .video-player__left-controls button:nth-child(2):focus {
  outline: none !important;
  box-shadow: none !important;
}



/* ----------------- Desktop styles ----------------- */

@media screen and (min-width: 1024px) {
  .rwmas-3 .video-player__controls--audio-only {
    width: 120% !important;
  }

  .rwmas-3 .video-player__left-controls button:nth-child(2) {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }

  /* SVGs para desktop */
  .rwmas-3 .video-player__left-controls button:nth-child(2) svg {
    width: 40px;
    height: 40px;
  }

  .rwmas-3 .video-player__seek-bar {
    height: 5px;
  }

  .rwmas-3 .video-player__seek-bar::-webkit-slider-thumb {
    width: 15px;
    height: 15px;
  }

  .rwmas-3 .video-player__time-info {
    font-size: 16px;
  }
}



/* ----------------- Mobile styles ----------------- */

.rwmas-3 .video-player__left-controls button:nth-child(2) svg {
  width: 38px;
  height: 38px;
  fill: #4CAEE1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-220%, 45%);
}

/* Estado inicial (Play) */
.rwmas-3 .video-player__left-controls button:nth-child(2) svg path {
  d: path('M8 5v14l11-7z'); /* Path do ícone de Play */
}

/* Estado de Pause ao clicar */
.rwmas-3 .video-player__left-controls button:nth-child(2):focus svg path {
  d: path('M6 19h4V5H6v14zm8-14v14h4V5h-4z'); /* Path do ícone de Pause */
}

.rwmas-3 .video-player__seek-bar-container {
  flex-grow: 1;
  order: 2;
  margin-top: 0;
}

.rwmas-3 .video-player__seek-bar {
  width: 100%;
  height: 5px;
  background: rgba(76, 174, 225, 0.3) !important;
  border-radius: 5px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.rwmas-3 .video-player__seek-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: #4CAEE1 !important;
  border-radius: 50%;
  cursor: pointer;
}

.rwmas-3 .video-player__time-info {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #4CAEE1;
  margin-top: 5px;
  width: 100%;
}

.rwmas-3 .video-player__left-controls button:nth-child(1),
.rwmas-3 .video-player__left-controls button:nth-child(3),
.rwmas-3 .video-player__right-controls {
  display: none !important;
}



/* ----------------- Tablet styles ----------------- */

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .rwmas-3 .video-player__controls--audio-only {
    width: 110% !important;
  }

  .rwmas-3 .video-player__left-controls button:nth-child(2) {
    width: 36px;
    height: 36px;
    margin-right: 10px;
  }

  /* SVGs para tablet */
  .rwmas-3 .video-player__left-controls button:nth-child(2) svg {
    width: 36px;
    height: 36px;
  }

  .rwmas-3 .video-player__seek-bar {
    height: 4px;
  }

  .rwmas-3 .video-player__seek-bar::-webkit-slider-thumb {
    width: 13px;
    height: 13px;
  }

  .rwmas-3 .video-player__time-info {
    font-size: 14px;
  }
}