.botao-video {
  text-transform: capitalize;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  cursor: pointer;
  /* background-image: url(../img/play-button.png);
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-position: 8px center; */
  display: flex;
  align-items: center;
  transition: all 300ms ease;
}
.pulse-yt-bt {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.6);
  animation: pulse-bt 2s infinite;
  top: 0;
  left: 0;
  margin-right: 1rem;
}
.pulse-yt-bt > svg {
  position: absolute;
}
/* .pulse:hover {
  animation: none;
} */

@-webkit-keyframes pulse-bt {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse-bt {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }
  70% {
    -moz-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.modal-youtube {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  background-color: #000000a6;
  overflow: hidden;
  outline: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in, visibility 0.3s ease-in;
}

.modal-youtube-content {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 1110px;
  margin: 0 auto;
  position: relative;
}
.modal-youtube-content > .close {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 4rem;
  right: -2rem;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .modal-youtube-content > .close {
    right: 0rem;
  }
}
@media only screen and (max-width: 768px) {
  .modal-youtube-content > iframe {
    height: auto;
  }
}
