#tbvo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100000;
}

.tbvo__content {
  position: absolute;
  top: 15%;
  left: 5vw;
  width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.5));
}

.tbvo__content.portrait {
	top: 10%;
	left: 15vw;
	width: 70vw;
}

.tbvo__closer {
  background: var(--awb-color1);
  border-radius: 30px 30px 0 0;
  color: var(--awb-color6);
  padding: 0.5rem 1rem;
}

@keyframes fadeIn {
  0% {
    transform: scale(0.75);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.tbvo__content video {
  width: 100%;
  height: auto;
  animation: fadeIn 0.3s ease forwards;
  border-radius: 8px 0 8px 8px;
  overflow: hidden;
}
