.ot-video-admin {
  padding: 15px;
  min-height: 200px;
  width: 100%;
  text-align: left;
  margin: 0;
  color: #1e1e1e;
  -moz-font-smoothing: subpixel-antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: inset 0 0 0 1px #1e1e1e;
  outline: 1px solid transparent;
}

.ot-video-container {
  position: relative;
}
.ot-video-container ._placeholder {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  height: 100%;
  width: 100%;
}
.ot-video-container iframe {
  max-width: 100%;
  max-height: var(--iframe-height);
  min-height: var(--iframe-height);
}

.ot-iframe-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  background-image: var(--thumbnail-url);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.ot-iframe-placeholder:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background-image: url(../assets/images/play.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 35px;
  width: 35px;
  transform: translate(-50%, -50%);
}
.ot-iframe-placeholder .content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  width: 100%;
  height: 100%;
  opacity: 0;
  text-align: center;
  padding: 10px;
  background: rgba(51, 51, 51, 0.5);
  transition: opacity 0.3s ease;
  z-index: 99;
}
.ot-iframe-placeholder p {
  color: #fff !important;
  font-size: 14px;
  line-height: 16px;
  margin: 0 0 5px 0;
}
.ot-iframe-placeholder p a:not(.btn) {
  color: #fff;
  text-decoration: underline;
}
.ot-iframe-placeholder .btn {
  display: block;
  width: fit-content;
  background: #0066cc;
  border: 1px solid #0066cc;
  line-height: 16px;
  font-size: 14px;
  color: #fff;
  margin: auto;
}
.ot-iframe-placeholder .btn:hover {
  color: #0066cc !important;
  background: #fff;
  border-color: #fff;
}
.ot-iframe-placeholder:hover .content {
  opacity: 1;
}