.video-shariff-play {
  position: relative;
  text-align: center;
  display: block;
}

a.video-shariff-play img {
  display: inline-block;
}

.video-shariff-preview {
  position: absolute;
  left: 0;
  right: 0;
  top: 30%;
  text-align: center;
}
.video-shariff-preview-overlay {
  background: rgba(0, 0, 0, 0.4);
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

a.video-shariff-play:hover .video-shariff-preview-overlay,
a.video-shariff-play:focus .video-shariff-preview-overlay{
  background: transparent;
}
.video-shariff-preview span {
  display: block;
  position: relative;
}
.video-shariff-preview-icon {
  background: transparent;
  border-radius: 0.375rem;
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-left: 36px solid var(--color-magenta);
  border-bottom: 24px solid transparent;
  margin: -1.45rem -2rem;
  left: 50%;

}
.video-shariff-preview-text {
  display: inline;
  top: 3rem;
  margin: 0 auto;
  width: 80%;
  font-weight: normal;
  color: var(--color-white);
  background-color: var(--color-magenta);
  padding: 6px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
@media screen and (min-width: 800px) {
  .video-shariff-preview {
    top: 50%;
  }
  .video-shariff-preview-text {
    width: 60%;
  }
  .cols-container .video-shariff-preview {
    top: 42%;
  }
  .cols-container .video-shariff-preview-text {
    width: 85%;
  }
}
