.video-tile {
  margin: 0;
  height: 100%;
  height: 100%;
}

.video-tile > video {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-element {
    background-image: var(--bg-image);
    background-position: center;
    background-size: cover;
}
@media (max-width: 500px) {
    .video-element {
        background-image: var(--bg-imagemob);
    }
}

.video--playwrap {
    position: relative;
    color: #fff;
    cursor: pointer;
}

.cms__banner {
    margin-bottom: 20px;
    background-position: center;
    background-size: cover;
    color: #fff;
}

.video--playwrap video {
    width: 100%;
    margin: 0 auto;
}

.video-element {
    background-image: var(--bg-image);
    background-position: center;
    background-size: cover;
}

.video-container {
    max-height: 450px;
}

video.video-redirect-element.fw-video-element.video-element {
    max-height: 450px;
    aspect-ratio: 7.5 / 3;
}

.video-controls {
    bottom: 10px;
    right: 10px;
}

.control-button {
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 6px;
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
}

.video-element {
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
}

.video-tile-noredir.video--playwrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #fff;;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  padding-inline-start: 4px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2 0l6 4-6 4z'/%3E%3C/svg%3E") center/contain no-repeat;
  background-size: 26px 26px;
  background-color: rgba(0, 0, 0, 0.1);
}

[dir=rtl] .video-tile-noredir.video--playwrap::after {
    padding-left: 8px;
}

.video-tile-noredir.video--playwrap.playing::after {
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 480px) {
  .video-element {
    background-image: var(--bg-imagemob);
  }
  .video-tile-noredir {
    height: 176px;
  }
  .cms__banner {
    margin-bottom: unset;
  }
}

button.playPauseBtn {
    background-color: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 1.25rem; 
    border-radius: 50%;
    position: absolute;
    bottom: 20px;
    right: 50px;
    height: 38px;
    width: 38px;
    justify-content: center;
    display: flex;
    align-items: center;
}
