/* =Animation features
------------------------------- */
.animated-hide {
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
.animated-show {
  opacity: 1;
}
/* =Modules
------------------------------- */
.module:before,
.module:after {
  content: " ";
  display: table;
}
.module:after {
  clear: both;
}
/* =Full window height
------------------------------- */
.sbuilder-fullvh {
  min-height: 100vh;
}
.sbuilder-fullvh > .container > .row,
.sbuilder-fullvh > .container-fluid > .row {
  position: relative;
  height: 100vh;
}
.sbuilder-fullvh .sbuilder-col-align-center {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sbuilder-fullvh .sbuilder-col-align-bottom {
  position: absolute;
  bottom: 0;
}
/* =Background Video
------------------------------- */
.sb-video-bg__wrap {
  position: relative;
  background-color: transparent !important;
  background-image: none !important;
}
.sb-video-bg {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.sb-video-bg video {
  min-width: 100%;
  min-height: 100%;
  vertical-align: middle;
}
