/*!********************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./slicing/src/scss/wt-components/video.scss ***!
  \********************************************************************************************************************************************************************************************/
.video {
  padding: 1.6rem;
}
@media only screen and (min-width: 992px) {
  .video {
    padding: 4.8rem 1.6rem;
  }
}
.video__wrapper {
  max-width: 128rem;
  margin: 0 auto;
}
.video__title {
  color: rgb(var(--primary-color));
}
.video__media {
  padding: 0 0.8rem;
}
.video__media-wrapper {
  position: relative;
  height: 0;
  max-width: 100%;
  margin-bottom: 1.6rem;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.video__media-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.video--embed {
  position: relative;
  height: 0;
  max-width: 100%;
  margin-bottom: 1.6rem;
  padding: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.video__thumbnail {
  width: 100%;
  height: auto;
}
.video__overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  background-color: rgba(var(--grey-dark), 0.5);
  overflow: hidden;
  transition: all 0.3s ease-out;
}
.video__overlay:hover {
  background-color: rgba(var(--grey-dark), 0.4);
  transition: all 0.3s ease-out;
}
.video__button {
  position: absolute;
  width: 150%;
  height: 150%;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  border: none;
  color: rgb(var(--white));
  background-color: rgba(var(--white), 0.2);
  background: transparent;
  cursor: pointer;
  outline: 0;
  z-index: 3;
  transition: all 0.3s ease-in-out;
}
.video__button span {
  margin-top: 0;
  display: block;
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 3.15rem;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 992px) {
  .video__button span {
    opacity: 0;
    margin-top: 2rem;
  }
}
.video__button:hover span {
  margin-top: 0;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.video__icon {
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  margin-right: 0.32rem;
  display: inline-block;
  font: 0/0 a;
  border: 0;
  color: transparent;
  text-shadow: none;
  background-image: url(../../images/icon-play-white.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  background-color: transparent;
}
