@charset "UTF-8";
/* Spacing */
/* Grid settings */
/* Row inner box */
/* Breakpoint options */
/* Calculated variables - do not edit unless you are a space cowboy */
/* Split colours - set colours when using .row.split */
/* Overlays - for modals, cookie popups */
/* Type */
/* Quotes */
/* Icons - see font-awesome.scss for more info */
/* Buttons */ /* Woocommerce */ /* Notifications */ /* Pagination */ /* Logo */ /* Header */
/* Header navigation */
/* Footer */
/* Mobile menu */ /* Cookie bar */ /* Social links */ /* Transitions */ /* Loader */ /* Modals */ /* Dots */
/* Tables */
.col-type-video {
  overflow: hidden;
}
.col-type-video .video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.col-type-video .video-poster::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.col-type-video .video-poster.shrink {
  transform: scale(0.995);
}
.col-type-video video {
  position: relative;
  z-index: 1;
}
.col-type-video img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.col-type-video .video-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.col-type-video .hide-button {
  display: none;
}
.col-type-video .video-play {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  cursor: pointer;
  transition: color var(--transition-time) ease-in-out;
}
.col-type-video .video-play::before {
  content: "▶";
  font-family: "md-regular";
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background-color var(--transition-time) ease-in-out, color var(--transition-time) ease-in-out;
  font-size: 16px;
  width: 75px;
  height: 75px;
  border-radius: 75px;
  line-height: 75px;
  text-align: center;
  box-sizing: border-box;
  display: block;
  cursor: pointer;
  padding-left: 3px;
  font-size: 50px;
  background-color: transparent;
  border: 2px solid var(--acid-yellow) !important;
  color: var(--acid-yellow) !important;
}
@media (max-width: 768px) {
  .col-type-video .video-play::before {
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.col-type-video .video-play:hover::before {
  background-color: var(--acid-yellow);
  color: var(--black) !important;
}

.video-poster::after {
  background-color: rgba(0, 0, 0, 0.4);
}
