/**
	This file does note generate code.  It is imported by other sass files to include
	variables, mixins, and functions.
	*/
/* Settings
   -------------------------------------------------------------------------- */
/**
	Global variables
*/
/* Site Max Width. Used in 03-base/_template.scss
   -------------------------------------------------------------------------- */
/* Location of compiled icons in theme.
   Used in project/build/common/sass/04-components/_icons.scss
   -------------------------------------------------------------------------- */
/* Breakpoints
	px is excluded so we can do math on the breakpoints
   -------------------------------------------------------------------------- */
/* Colors
   Suffix color variables with a 3 digit number.  Generally try to progress from
   lightest/dullest to darkest/most vibrant.
   -------------------------------------------------------------------------- */
/* Filter Colors
   -------------------------------------------------------------------------- */
/* Default transition.  Used in transition() mixin.
   ------------------------------------------------------------------------ */
/* Tools
   -------------------------------------------------------------------------- */
/**
	This file does note generate code.  It is imported by other sass files to include
	variables, mixins, and functions.
	*/
/* Settings
   -------------------------------------------------------------------------- */
/**
	This file does note generate code.  It is imported by other sass files to include
	variables, mixins, and functions.
	*/
/* Settings
   -------------------------------------------------------------------------- */
/**
	General mixins
*/
/* Variable Size
   Function can be used to make any property value variable
   -------------------------------------------------------------------------- */
/* Basic Transition
   -------------------------------------------------------------------------- */
/* Default Unordered List
   This mixin is used in place of defining base ul styles and then having to
   override them everywhere.  Ex: in a menu.
   This should be included when you output an acf wysiwyg field.
   -------------------------------------------------------------------------- */
/* Default Link Style
   This mixin is used in place of defining base a styles and then having to
   override them everywhere. Ex: text links vs buttons.
   This should be included when you output an acf wysiwyg field.
   -------------------------------------------------------------------------- */
/* Default Table
   -------------------------------------------------------------------------- */
/* Default Gradient
   -------------------------------------------------------------------------- */
/* Button Reset
   -------------------------------------------------------------------------- */
/* List Reset
   -------------------------------------------------------------------------- */
/* 100vh Mixin
   -------------------------------------------------------------------------- */
/* Accessibility Mixins to allow or prevent animations and transitions
   -------------------------------------------------------------------------- */
/* Tools
   -------------------------------------------------------------------------- */
/**
	Typography specific mixins
	These mixins are used in classes in build/common/sass/03-base/_typography.scss.
	They can also be used in a component/layout stylesheet, but that should be avoided.
*/
/* Fonts
   -------------------------------------------------------------------------- */
/* Typography
   -------------------------------------------------------------------------- */
/**
	This file does note generate code.  It is imported by other sass files to include
	variables, mixins, and functions.
	*/
/* Settings
   -------------------------------------------------------------------------- */
/* Tools
   -------------------------------------------------------------------------- */
/**
	Form specific mixins
	A set of default styles that can be applied to Gravity Forms and other forms
*/
.basic-video {
  position: relative;
  display: block;
  overflow: hidden;
  height: 100%;
}
.basic-video video {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
}
.basic-video__gradient--default::before, .basic-video__gradient--default::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
}
.basic-video__gradient--default::before {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(59.3%, rgba(0, 0, 0, 0)), color-stop(99.07%, black));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 59.3%, black 99.07%);
}
.basic-video__gradient--default::after {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(69.31%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.9)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 69.31%, rgba(0, 0, 0, 0.9) 100%);
}
.basic-video__control {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  border: 0;
  background: none;
  color: currentColor;
  cursor: pointer;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  background-color: color-mix(in srgb, white, transparent 20%);
  color: #1f2221;
  position: absolute;
  display: grid;
  place-items: center center;
  inset: auto 16px 16px auto;
  border-radius: 24px;
  height: 48px;
  width: 48px;
}
.basic-video:not(:has(.basic-video__poster--hidden)) .basic-video__control {
  display: none;
}
.basic-video__control {
  --icon-size: 12px;
}
.basic-video__control .v-icon__svg {
  grid-column: 1/-1;
  grid-row: 1/-1;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.basic-video__control--pause .v-icon__svg--pause {
  opacity: 1;
}
.basic-video__control--pause .v-icon__svg--play {
  opacity: 0;
}
.basic-video__control--play .v-icon__svg--pause {
  opacity: 0;
}
.basic-video__control--play .v-icon__svg--play {
  opacity: 1;
}
.basic-video__poster {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: black;
}
.basic-video__poster--hidden {
  display: none;
}
.basic-video__poster-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  opacity: 1;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background-color: transparent;
}
.basic-video__poster-button--hidden {
  display: none;
}
.basic-video__poster-play {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  width: 80px;
  height: 80px;
  border: 4px solid white;
  border-radius: 50%;
  padding-left: 5px;
  background: rgba(255, 255, 255, 0.5);
  color: white;
  font-size: 30px;
}