

.modal-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999; }

.modal-box {
  width: 90vw;
  max-width: 700px;
  font-family: "Poppins", "sans-serif";
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 888;
  transform: translate(-50%, -50%); }
  .modal-box.modal-side {
    position: fixed;
    transform: none;
    top: auto;
    left: auto;
    right: -430px;
    bottom: 2vh;
    border: 2px solid #eee;
    width: 70vw;
    max-width: 400px;
    transition: right .5s ease; }
  .modal-box.modal-active {
    right: 30px; }

.modal-box .player {
  position: relative;
  overflow: hidden; }

.modal-box video {
  z-index: 1;
  max-width: 100%;
  margin: -80px 0; }
  @media screen and (max-width: 758px) {
    .modal-box video {
      margin: -35px 0; } }

.modal-box.modal-side video {
  margin: -35px 0; }
  @media screen and (max-width: 758px) {
    .modal-box.modal-side video {
      margin: -25px 0; } }

.modal-box .player:before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2; }

.modal-box .player a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 2; }

.modal-box .player div {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 55%;
  left: 50%;
  z-index: 3;
  color: #fff;
  text-decoration: none;
  text-align: center;
  display: block;
  font-weight: 200;
  font-size: 14px; }

.modal-box .player a img {
  display: block;
  margin: 0 auto;
  transition: transform .5s ease; }

.modal-box .player a span {
  transition: opacity .5s ease; }

.modal-box .player a:hover span {
  opacity: 0; }

.modal-box .player a:hover img {
  transform: scale(2.5); }

.modal-box.modal-side .player a:hover img {
  transform: scale(1.8); }

.modal-content {
  padding: 24px; }

.modal-content-title {
  font-size: 26px;
  color: #303030;
  margin-bottom: 20px;
  display: block; }
  @media screen and (max-width: 758px) {
    .modal-content-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px; } }

.modal-side .modal-content-title {
  font-size: 16px;
  font-weight: 600; }
  @media screen and (max-width: 758px) {
    .modal-side .modal-content-title {
      font-size: 14px; } }

.modal-content-p {
  font-weight: 200;
  font-size: 16px;
  margin-bottom: 20px;
  display: block; }

.modal-content-p strong {
  color: #9D4E8E; }

.modal-content-footer a {
  background-color: #fff;
  border: 2px solid #9D4E8E;
  color: #282828;
  padding: 5px 10px;
  box-shadow: 7px 7px 0px #DD9ED7;
  text-decoration: none;
  transition: all .5s ease;
  margin-bottom: 10px;
  display: inline-block; }

.modal-content-footer a:hover {
  box-shadow: 0px 0px 0px #DD9ED7;
  background-color: #9D4E8E;
  color: #fff; }

.modal-box-fechar {
  position: absolute;
  top: 30px;
  right: 20px;
  z-index: 4;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: all .5s ease;
  width: 40px;
  height: 40px;
  overflow: hidden;
  background-color: #fff;
  border: 2px solid #fff; }
  @media screen and (max-width: 758px) {
    .modal-box-fechar {
      top: 15px;
      right: 15px;
      width: 35px;
      height: 35px; } }

.modal-box-fechar:hover {
  background-color: transparent;
  border-color: #9D4E8E; }

.modal-box-fechar img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%; }
