/* stylelint-disable-next-line wrap-rem-on-px/wrap-rem-on-px */
/* stylelint-disable wrap-rem-on-px/wrap-rem-on-px */
/* stylelint-enable wrap-rem-on-px/wrap-rem-on-px */
/*
USAGE:
font-size: fluid(12, 62); : from rem(12)@380px to  rem(62)@1440px
gap: fluid(10, 33, 992);  : from rem(10)@991px to  rem(33)@1440px
margin-right: fluid(32, 65, 320, 2560);  : from rem(32)@320px to  rem(65)@2560px
*/
/*
AUTOFILL

USAGE:
@include mixin.autofill(background-color, text-color);
@include mixin.autofill;

Note: Call this mixin in the wrapper or container to where you intend to manipulate the
      default chrome autofill styles for input, textarea and select elements.
*/
/* stylelint-disable */
/* stylelint-enable */
:root {
  --u-size-tiny: 0.25rem;
  --u-size-2x-tiny: 0.5rem;
  --u-size-3x-tiny: 0.75rem;
  --u-size-small: 1rem;
  --u-size-medium: 1.5rem;
  --u-size-2x-medium: 2rem;
  --u-size-large: 3rem;
  --u-size-2x-large: 4rem;
  --u-size-3x-large: 6rem;
  --u-size-huge: 8rem;
  --u-size-2x-huge: 12rem;
  --u-size-3x-huge: 16rem;
}

/* ===================================
   Brand Palette
=================================== */
:root {
  --black: #000;
  --white: #fff;
  --primary-blue-dark: #024482;
  --primary-blue-light: #C8EBFF;
  --blue-light-secondary: #C0DFEC;
  --primary-blue: #025FD8;
  --primary-cream: #FFFCEE;
  --pink: #FFC7F5;
  --yellow: #FBE546;
  --orange: #FF9F32;
  --red: #FF5F2D;
  --green: #8CE202;
  --base-light: #FFFCEE;
  --base-lighter: #FFFCEE;
}

.ss.video-module {
  position: relative;
}
.ss.video-module .video-module__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  color: transparent;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.ss.video-module .video-module__overlay-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}
.ss.video-module .video-module__figure {
  position: relative;
  width: 100%;
}
.ss.video-module .video-module__figure img {
  object-fit: cover;
  height: clamp(42.5rem, 16.38095vw + 38.507143125rem, 53.25rem);
  width: 100%;
}
.ss.video-module .video-module__figure video {
  background-color: var(--black);
  height: clamp(42.5rem, 16.38095vw + 38.507143125rem, 53.25rem);
  object-fit: cover;
  display: block;
}
@media screen and (min-width:768px) {
  .ss.video-module .video-module__figure video {
    aspect-ratio: 1440/852;
    height: 100%;
  }
}
.ss.video-module .video-module__controls {
  position: absolute;
  top: var(--u-size-3x-tiny);
  left: var(--u-size-3x-tiny);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
@media screen and (min-width:1199px) {
  .ss.video-module .video-module__controls {
    top: var(--u-size-2x-medium);
    left: var(--u-size-2x-medium);
  }
}
.ss.video-module .video-module__play-pause-btn {
  pointer-events: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
  font-size: 0;
}
.ss.video-module .video-module__play-pause-btn .video-module__play-icon,
.ss.video-module .video-module__play-pause-btn .video-module__pause-icon {
  display: block;
  width: 3.125rem;
  height: 3.125rem;
}
@media screen and (min-width:1199px) {
  .ss.video-module .video-module__play-pause-btn .video-module__play-icon,
  .ss.video-module .video-module__play-pause-btn .video-module__pause-icon {
    width: 5rem;
    height: 5rem;
  }
}
.ss.video-module .video-module__play-pause-btn .video-module__play-icon svg,
.ss.video-module .video-module__play-pause-btn .video-module__pause-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.ss.video-module .video-module__play-pause-btn .video-module__pause-icon[hidden],
.ss.video-module .video-module__play-pause-btn .video-module__play-icon[hidden] {
  display: none;
}
.ss.video-module .video-module__embed {
  width: 100%;
  height: clamp(42.5rem, 16.38095vw + 38.507143125rem, 53.25rem);
}
.ss.video-module .video-module__embed iframe {
  width: 100%;
  height: 100%;
}
.ss.video-module--sm .video-module__figure img {
  height: auto;
  aspect-ratio: 390/301;
}
@media screen and (min-width:768px) {
  .ss.video-module--sm .video-module__figure img {
    aspect-ratio: 1440/506;
  }
}

/*# sourceMappingURL=style.css.map */
