.plyr__control, .plyr__progress, .plyr__volume {
  --plyr-color-main: #40B940;
  --plyr-control-radius: 100px;
}

.plyr button {
  font: revert;
  line-height: 0;
}

.plyr__volume {
  width: 100px;
}

.botao {
  display: inline-block;
  padding-right: 5px;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #000;
}

.center {
  width: 90%;
  margin-left: 5%;
}
@media only screen and (max-width: 768px) {
  .center {
    width: 100%;
    margin-left: 0;
  }
}

.aside {
  display: flex;
  flex-direction: column;
  min-width: 250px;
  height: 100%;
}

.aside:nth-of-type(2) .episode:first-child {
  margin-top: auto;
}

.header {
  position: relative;
  height: 215px;
}
.header .bg {
  position: absolute;
  z-index: -1;
  opacity: 0.1;
  width: 100%;
  height: 215px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
}
.header .player-ui {
  position: relative;
  z-index: 3;
}
.header .player-ui .title {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}
.header .player-ui .title h3 {
  margin: 0;
  color: white;
  font-size: 18px;
  font-weight: 100;
  overflow: hidden;
  height: 54px;
  text-align: center;
}
.header .player-ui .small {
  padding: 15px 35px 0px 35px;
  display: flex;
  justify-content: space-between;
}
.header .player-ui .small p, .header .player-ui .small i {
  margin: 0;
  color: white;
  font-size: 14px;
}
.header .player-ui .small p {
  color: #ddd;
}
.header .player-ui .small i {
  font-size: 18px;
}
.header .player-ui .progress {
  margin: 5px 20px 0px 20px;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.header .player-ui .progress .time {
  color: white;
  display: flex;
  width: auto;
}
.header .player-ui .progress .time div {
  margin-left: 10px;
}
.header .player-ui .progress .played {
  flex: 1;
}
.header .player-ui .controls {
  display: flex;
  justify-content: space-between;
  padding: 15px 50px 0px 50px;
}
.header .player-ui .controls i {
  color: white;
  font-size: 32px;
}

.episodes {
  scrollbar-width: thin;
  background-color: #000;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  max-height: 500px;
  border-top: 4px solid black;
}

.episode:hover, .plSel {
  background-color: #2D2E2F !important;
}

.episode {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background-color: #0D0E0F;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.episode .info {
  display: flex;
  align-items: center;
  min-width: 80px;
  flex: 1;
  cursor: pointer;
}
.episode .info .img {
  width: 60px;
  height: 60px;
  margin-right: 10px;
  min-width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.episode .info .img .bg2 {
  position: absolute;
  z-index: 1;
  background: black;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
}
.episode .info .img span {
  color: #DDD;
  font-size: 50px;
  z-index: 2;
  opacity: 0.7;
}
.episode .playing {
  min-width: 70px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  text-align: right;
}
.episode .titles h5, .episode .titles p {
  margin: 0;
  color: white;
}
.episode .titles h5 {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 7px;
}
.episode .titles p {
  font-size: 13px;
  color: #929292;
}