/**
 * CSS for youtube player display
 */
.modal-content-width {
  width: 768px;
}
@media (max-width: 767px) {
  .modal-content-width {
    width: 100%;
    max-width: 100%;
  }
}

.czd-video-player {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: black transparent;
  background-color: rgba(0, 0, 0, 0.95);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#F2000000,endColorstr=#F2000000)";
  -webkit-transform: translateZ(0);
}
.czd-video-player .czd-video-title,
.czd-video-player .czd-video-close {
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.czd-video-player .czd-video-title {
  font-size: 22px;
  font-weight: bold;
}
.czd-video-player .czd-video-close a {
  color: inherit;
}
.czd-video-player .czd-video-content {
  padding: 0 20px;
}
.czd-video-player .czd-video-content iframe {
  width: 100%;
  height: 100%;
  max-height: 100%;
}
