:root {
  --play-icon-background-color: var(--primary-color);
  --play-icon-color: #fff;
  --video-banner-border-radius: 0;
  --vid-banner-transition: 600ms var(--ease-out-expo);
}

.video-banner-wrapper {
  position: relative;
  display: block;
  margin: 0 auto;
}

.video-embed {
  position: relative;
  display: block;
  /*padding-bottom: 40% !important;
  padding-top: 30px !important;*/
  padding: 0px !important;
  height: auto;
  width: 100%;
  aspect-ratio: 2.3;
  min-height: 380px;
  margin: 0;
  background: #000;
  border-radius: var(--video-banner-border-radius);
  overflow: hidden;
  transition: all var(--vid-banner-transition);
  box-shadow: 0px 0.9px 1.1px -2px rgba(0, 0, 0, 0.07),
              0px 2.5px 3.1px -2px rgba(0, 0, 0, 0.1),
              0px 6px 7.5px -2px rgba(0, 0, 0, 0.13),
              0px 20px 25px -2px rgba(0, 0, 0, 0.2);

  box-shadow: none;
}

.video-embed:hover,
.video-embed:active,
.video-embed:focus {
  box-shadow: 0px 1.4px 1.8px -2px rgba(0, 0, 0, 0.07),
              0px 3.8px 5px -2px rgba(0, 0, 0, 0.1),
              0px 9px 12.1px -2px rgba(0, 0, 0, 0.13),
              0px 30px 40px -2px rgba(0, 0, 0, 0.2);

  box-shadow: none;
}

@media (max-width: 1024px) {
  .video-embed {
/*    padding-bottom: 56.25% !important;*/
  }
}

@media (max-width: 767px) {
  .video-embed {
/*    padding-bottom: 66.25% !important;*/
  }
}

@media (max-width: 550px) {
  .video-embed {
/*    padding-bottom: 74% !important;*/
  }
}

.video-embed iframe,
.video-embed video,
.video-embed img.video-background-image-standin {
  position: absolute;
  display: block;
  z-index: 1;
  margin: 0 !important;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  left: 0;
  background: transparent;
  z-index: 10;
  overflow: hidden;
  object-fit: cover;
  object-position: center center;
}

.video-embed .video-banner-background-image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--video-banner-border-radius);
  overflow: hidden;
}

.video-embed .play-icon-holder {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  color: #fff;
  width: 100%;
}

.video-embed .play-icon-holder .video-title-holder {
  position: relative;
  padding: 14px 0 0;
  color: inherit;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.3;
  transition: all var(--vid-banner-transition);
  width: auto;
  font-smoothing: auto;
}

.video-embed .play-icon-holder .video-length {
  position: relative;
  display: block;
  margin: 14px auto 0;
  padding: 7px 10px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-family: var(--header-font);
  text-transform: uppercase;
  line-height: 1.3 !important;
  font-size: 12px;
  letter-spacing: 0.06em !important;
  font-weight: 800;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video-embed .play-icon-holder .play-icn {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  background: color-mix(in srgb, var(--play-icon-background-color) 40%, transparent);
  color: var(--play-icon-color);
  text-align: center;
  padding: 0;
  transition: all var(--vid-banner-transition);
  transform: scale(1);
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

.video-embed:hover .play-icon-holder .play-icn,
.video-embed:active .play-icon-holder .play-icn,
.video-embed:focus .play-icon-holder .play-icn {
  transform: scale(1.1);
  background: color-mix(in srgb, var(--play-icon-background-color) 50%, transparent);
}

.video-embed .play-icon-holder .play-icn:before {
  position: absolute;
  content: '';
  left: 6px;
  right: 6px;
  top: 6px;
  bottom: 6px;
  z-index: 10;
  border-radius: 50%;
  background: var(--play-icon-background-color);
  transition: all var(--vid-banner-transition);
}

.video-embed:hover .play-icon-holder .play-icn:before,
.video-embed:active .play-icon-holder .play-icn:before,
.video-embed:focus .play-icon-holder .play-icn:before {
  left: 4px;
  right: 4px;
  top: 4px;
  bottom: 4px;
}

.video-embed .play-icon-holder .play-icn .material-icons {
  position: relative;
  z-index: 20;
  text-align: center;
  color: inherit;
  font-size: 32px;
  height: auto;
}
