﻿.videoTileComponent .text {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 15px;
}
.videoTileComponent .video-container {
    background: var(--componentLightBlueColor);
}
.videoTileComponent .video-container .media-contanier {
  position: relative;
  /* button {
      position: absolute;
      width: 41px;
      height: 41px;
      padding: 0;
      inset-inline-start: calc(50% - 20px);
      top: calc(50% - 20px);
      border-radius: 20px;
      border: 2px solid $mainTitleColor;
      text-align: center;

      &::after {
          content: ' ';
          display: block;
          width: 0px;
          height: 0px;
          border-top: 9px solid transparent;
          border-bottom: 9px solid transparent;
          border-inline-end: 14px solid #1f3e7e;
          margin: auto;
          margin-inline-end: 14px;
      }
  }*/
}
.videoTileComponent .video-container .media-contanier video {
  cursor: pointer;
}
.videoTileComponent .video-container .tile-info {
  padding: 16px;
  color: var(--textColor);
}
.videoTileComponent .video-container .tile-info .noteTitle {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 8px;
  position: relative;
}
.videoTileComponent .video-container .tile-info .noteTitle img {
  position: absolute;
  inset-inline-end: 0;
  inset-block-start: calc(50% - 8px);
  width: auto;
}

/*overried*/
.videoTileComponent .video-container .media-contanier .image {
  width: 100%;
}
.videoTileComponent .video-container .media-contanier iframe.image {
  height: 30vw;
}
.videoTileComponent .video-container .media-contanier button::after {
  content: none;
}
.videoTileComponent.videoTextHoverComponent .video-container {
  position: relative;
}
.videoTileComponent.videoTextHoverComponent .tile-info {
    display: block;
    width: 65%;
    position: absolute;
    inset-inline-start: 16px;
    inset-block-end: 16px;
    background: var(--componentLightBlueColor);
}

@media screen and (max-width: 1199px) {
  .videoTileComponent .video-container .media-contanier iframe.image {
    height: 45vw;
  }
  .videoTextHoverComponent .video-container .tile-info {
    width: 100%;
    position: relative;
    inset-inline-start: 0;
    inset-block-end: 0;
  }
}
/*overried*/
