/*
* Global button styling
*/
/*
* Breakpoint debugging
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
.video-place {
  width: 100%;
  padding: 0 20px 20px 0;
  font-size: var(--wp--preset--font-size--small);
}
.video-place > div {
  background-color: #D8D8D8;
  background-position: center;
  background-size: cover;
  transition: background-color 800ms;
  aspect-ratio: 16/9;
}
.video-place > div a {
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: 100%;
  height: 100%;
  padding: 2rem 2.5rem;
  color: white;
  font-size: var(--wp--preset--font-size--small);
  background: linear-gradient(to bottom, rgba(250, 159, 95, 0) 50%, rgb(250, 159, 95) 100%);
  transition: background-color 800ms;
}
.video-place > div a:hover {
  color: white;
  text-decoration: none;
  background: linear-gradient(to bottom, rgba(250, 159, 95, 0) 20%, rgb(250, 159, 95) 100%);
}
.video-place > div a:active {
  color: white;
  text-decoration: none;
}
.video-place > div a:focus {
  color: white;
  text-decoration: none;
}
.video-place > div .post-date {
  padding-top: 5px;
  font-size: var(--wp--preset--font-size--small);
  color: #8C8C8C;
}
.video-place > div:hover {
  background-color: #FA9F5F;
}
.video-place span.video-title {
  display: block;
  font-size: var(--wp--preset--font-size--small);
  font-weight: 700;
}

.columns1 .video-place {
  flex-basis: 100%;
  padding: 0 0 20px 0;
}

.columns2 .video-place {
  flex-basis: 50%;
}
@media (max-width: 782px) {
  .columns2 .video-place {
    flex-basis: 100%;
    padding: 0 0 20px 0;
  }
}

.columns3 .video-place {
  flex-basis: 33%;
}
@media (max-width: 1024px) {
  .columns3 .video-place {
    flex-basis: 50%;
  }
}
@media (max-width: 782px) {
  .columns3 .video-place {
    flex-basis: 100%;
    padding: 0 0 20px 0;
  }
}

.columns4 .video-place {
  flex-basis: 25%;
}
@media (max-width: 1024px) {
  .columns4 .video-place {
    flex-basis: 50%;
  }
}
@media (max-width: 782px) {
  .columns4 .video-place {
    flex-basis: 100%;
    padding: 0 0 20px 0;
  }
}

.columns5 .video-place {
  flex-basis: 20%;
}
@media (max-width: 1024px) {
  .columns5 .video-place {
    flex-basis: 50%;
  }
}
@media (max-width: 782px) {
  .columns5 .video-place {
    flex-basis: 100%;
    padding: 0 0 20px 0;
  }
}

a[data-fancybox] {
  cursor: pointer;
  display: flex;
  margin: 0px !important;
  padding: 20px 30px;
  flex-grow: 0;
  flex-shrink: 0;
}
a[data-fancybox] img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin-bottom: 2rem;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.embed-container .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background-color: white;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
  cursor: default;
  transition: 600ms;
}
.embed-container .video-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5970982143) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}
.embed-container .video-overlay .video-meta {
  max-width: 60%;
}
.embed-container .video-overlay h4 {
  color: white;
  padding: 0;
  margin-bottom: 0.5em;
  font-size: small;
}
.embed-container .video-overlay p {
  color: white;
  margin: 0;
  font-weight: 400;
}
.embed-container .video-overlay button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -2rem;
  width: 70px;
  height: 70px;
  background: var(--wp--preset--color--primary);
  border: 0;
  color: white;
  transition: 450ms ease-in-out;
  cursor: pointer;
}
.embed-container .video-overlay button:hover {
  background: var(--wp--preset--color--primary);
}
.embed-container .video-overlay button svg {
  width: 80%;
  height: 80%;
}
.embed-container .video-overlay.play {
  visibility: hidden;
  opacity: 0;
  transition-delay: 450ms;
}
.embed-container .video-overlay.play button {
  transform: translateX(100%);
}
@media (max-width: 782px) {
  .embed-container .video-overlay {
    padding: 1rem;
  }
  .embed-container .video-overlay .play-video {
    width: 40px;
    height: 40px;
    margin-right: -1rem;
  }
  .embed-container .video-overlay .video-meta {
    max-width: 80%;
  }
  .embed-container .video-overlay .video-meta h6 {
    display: none;
  }
}/*# sourceMappingURL=video-gallery.css.map */