.ts-video {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  -ms-grid-rows: 1fr;
}

.ts-video-item {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
}

.ts-video-play-button-container {
  width: 14rem;
  height: 14rem;
  align-self: center;
  justify-self: center;
  -ms-grid-column-align: center;
  -ms-grid-row-align: center;
  border: none;
  background: transparent;
  padding: 0;
}

.ts-video-play-button-container-img {
  width: 14rem;
  height: 14rem;
}

.ts-video-container {
  z-index: 100;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  box-sizing: border-box;
}

.ts-video-wrapper {
  background-color: #fff;
  overflow: visible;
  width: 84rem;
  box-sizing: border-box;
  padding: 2rem;
  position: relative;
  top: 50%;
  transform: perspective(0.0625rem) translateY(-50%);
  max-width: 100%;
  margin: 0 auto;
}

section.ts-video-container .closeVideo {
  display: block;
  width: 3.75rem;
  height: 3.75rem;
  background-color: #fff;
  position: absolute;
  top: -1.875rem;
  right: -1.875rem;
  border-radius: 2.1875rem;
  box-sizing: border-box;
  border: none;
}

section.ts-video-container .closeVideo:before,section.ts-video-container .closeVideo:after {
  position: absolute;
  left: 1.8125rem;
  top: .8125rem;
  content: ' ';
  height: 2.0625rem;
  width: .125rem;
  background-color: #333;
  opacity: .3;
  transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -webkit-transition: opacity 0.2s ease-in-out;
}

section.ts-video-container .closeVideo:hover:before,section.ts-video-container .closeVideo:hover:after {
  opacity: 1;
}

section.ts-video-container .closeVideo:before {
  transform: rotate(45deg);
}

section.ts-video-container .closeVideo:after {
  transform: rotate(-45deg);
}

#TeamsVideo {
  width: 100%;
  height: auto;
}

iframe#TeamsVideo {
  border: 0;
  margin: 0;
  height: 46rem;
  width: 80rem;
  max-width: 100%;
  max-height: 54vw;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .ts-video-play-button-container {
    width: 11rem;
    height: 11rem;
  }

  .ts-video-play-button-container-img {
    width: 11rem;
    height: 11rem;
  }
}

@media screen and (max-width: 767px) {
  .ts-video-play-button-container {
    width: 8rem;
    height: 8rem;
  }

  .ts-video-play-button-container-img {
    width: 8rem;
    height: 8rem;
  }
}
