/* Hide Labels */
    .yt-form .gfield .gfield_label {
        display: none;
}
    /* Default Styling */
    .yt-form .gfield input, .yt-form .gfield select {
        width: 100%;
        border-radius: 9999px;
        border-width: 1px;
        background-color: transparent;
        padding-top: 1rem;
        padding-bottom: 1rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        font-weight: 400;
        --tw-text-opacity: 1;
        color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
    .yt-form .gfield input::-moz-placeholder, .yt-form .gfield select::-moz-placeholder {
        font-weight: 400;
        --tw-text-opacity: 1;
        color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
    .yt-form .gfield input::placeholder, .yt-form .gfield select::placeholder {
        font-weight: 400;
        --tw-text-opacity: 1;
        color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
    .yt-form .gfield input option, .yt-form .gfield select option {
        /* You should change this color, but its important to set the option text color because on windows machines it is not visible */
        --tw-text-opacity: 1;
        color: rgb(0 0 0 / var(--tw-text-opacity, 1));
      }
  .yt-form .gform_button {
        position: relative;
        min-width: 15rem;
        cursor: pointer;
        border-radius: 9999px;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        padding-left: 2rem;
        padding-right: 2rem;
        font-size: 1.25rem;
        line-height: 1.75rem;
        transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 500ms;
}
  /* Specific Variations */
  .yt-form--horizontal .gform_fields {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
}
  .yt-form--horizontal .gform_fields .gfield:last-child {
        grid-column: span 2 / span 2;
}
  .yt-form--horizontal .gform_footer {
        padding-top: 4rem;
        text-align: center;
}
/**
* animates a partial underline appearing underneath the target element
*/
.mp-anim--pu {
        position: relative;
}
.mp-anim--pu:after {
    content: '';
    transform: scaleX(0);
    position: absolute;
    left: 50%;
    bottom: 0px;
    margin-bottom: -0.5rem;
    border-bottom-width: 1px;
  }
.mp-anim--pu--8:after {
      animation: 1s expand .5s forwards;
      margin-left: -1rem;
      width: 2rem;
      --tw-border-opacity: 1;
      border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
    }
.mp-anim--pu--12:after {
      animation: 1s expand .5s forwards;
      margin-left: -1.5rem;
      width: 3rem;
      --tw-border-opacity: 1;
      border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
    }
@keyframes expand {
  0% { transform: scaleX(0); } 100% { transform: scaleX(1); }
}
.mp-link {
        position: relative;
}
.mp-link--underline::after {
      transition: width .3s;
      content: '';
      position: absolute;
      bottom: 0px;
      left: 0px;
      margin-bottom: -0.5rem;
      width: 0px;
      border-bottom-width: 2px;
    }
.mp-link--underline:hover::after {
        width: 100%;
}
.modal__overlay {
        position: fixed;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
  background: rgba(0,0,0,0.6);
}
.modal__container {
  max-height: 100vh;
  overflow-y: auto;
  box-sizing: border-box;
}
@keyframes mmfadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes mmfadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
@keyframes mpzoomIn {
  from { transform: scale(1.3); }
  to { transform: scale(1); }
}
@keyframes mpzoomOut {
  from { transform: scale(1); }
  to { transform: scale(0); }
}
.micromodal-zoom {
        display: none;
}
.micromodal-zoom.is-open {
        display: block;
}
.micromodal-zoom[aria-hidden="false"] .modal__overlay {
      animation: mmfadeIn .3s cubic-bezier(.58,.85,.44,.97);
    }
.micromodal-zoom[aria-hidden="false"] .modal__container {
      animation: mpzoomIn .3s cubic-bezier(0, 0, .2, 1);
    }
.micromodal-zoom[aria-hidden="true"] .modal__overlay {
      animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
    }
.micromodal-zoom[aria-hidden="true"] .modal__container {
      animation: mpzoomOut .3s cubic-bezier(0, 0, .2, 1);
    }
.micromodal-zoom .modal__container,
.micromodal-zoom .modal__overlay {
  will-change: transform;
}
.mp-tooltip {
        position: relative;
}
.mp-tooltip:before {
    content: attr(data-text);
    width: 200px;
    z-index: 20;
    position: absolute;
    top: 50%;
    display: none;
    padding: 1rem;
    text-align: center;
  }
.mp-tooltip:hover:before, .mp-tooltip:hover:after {
        display: block;
}
.mp-tooltip:after {
    content: "";
    margin-bottom: -10px;
    transform: translateX(-50%);
    position: absolute;
    bottom: 0px;
    left: 50%;
    display: none;
  }
.mp-tooltip--bottom:before {
    left: initial;
    margin: initial;
    right: 0;
    top: 0;
    margin-top: 20px;
    margin-right: -10px;
  }
.height-limiter {
        position: relative;
}
.height-limiter .height-limiter__main {
    --mask: linear-gradient(to bottom,
            rgba(0,0,0, 1) 0,   rgba(0,0,0, 1) 40%,
            rgba(0,0,0, 0) 95%, rgba(0,0,0, 0) 0
    ) 100% 50% / 100% 100% repeat-x;
    -webkit-mask: var(--mask);
    mask: var(--mask);
    max-height: 300px;
    overflow: hidden;
  }
.height-limiter .height-limiter__toggle {
        margin-left: auto;
        margin-right: auto;
        margin-top: 2rem;
        display: block;
        width: 2rem;
        transition-property: transform;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 300ms;
}
.height-limiter.unfurled .height-limiter__main {
      -webkit-mask: none;
              mask: none;
      max-height: none;
    }
.height-limiter.unfurled .height-limiter__toggle {
        --tw-rotate: 180deg;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
/** Sticky Widget **/
.ez-toc-widget-sticky, .ez-toc-counter {
        margin-bottom: 2rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
}
.ez-toc-widget-sticky .ez-toc-widget-sticky-list, .ez-toc-counter .ez-toc-widget-sticky-list {
        margin-top: 2rem;
        border-left-width: 2px;
        font-size: 0.875rem;
        line-height: 1.25rem;
}
.ez-toc-widget-sticky .ez-toc-widget-sticky-list li a, .ez-toc-counter .ez-toc-widget-sticky-list li a {
        position: relative;
        display: block;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        padding-left: 2rem;
}
.ez-toc-widget-sticky .ez-toc-widget-sticky-list li a:after, .ez-toc-counter .ez-toc-widget-sticky-list li a:after {
          content: '';
          position: absolute;
          left: 0px;
          top: 0px;
          margin-left: -0.25rem;
          height: 100%;
          width: 0.5rem;
          opacity: 0;
          transition-property: opacity;
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-duration: 300ms;
        }
.ez-toc-widget-sticky .ez-toc-widget-sticky-list li a.active:after, .ez-toc-widget-sticky .ez-toc-widget-sticky-list li a:hover:after, .ez-toc-counter .ez-toc-widget-sticky-list li a.active:after, .ez-toc-counter .ez-toc-widget-sticky-list li a:hover:after {
        opacity: 1;
}
.ez-toc-widget-sticky .ez-toc-widget-sticky-title, .ez-toc-counter .ez-toc-widget-sticky-title {
        text-align: center;
        font-size: 1.5rem;
        line-height: 2rem;
        text-transform: uppercase;
}
@media (min-width: 768px) {
        .ez-toc-widget-sticky .ez-toc-widget-sticky-title, .ez-toc-counter .ez-toc-widget-sticky-title {
                font-size: 1.875rem;
                line-height: 2.25rem;
        }
}
@media (min-width: 1024px) {
        .ez-toc-widget-sticky .ez-toc-widget-sticky-title, .ez-toc-counter .ez-toc-widget-sticky-title {
                font-size: 2.25rem;
                line-height: 2.5rem;
        }
}
.ez-toc-widget-sticky > ul > li a, .ez-toc-counter > ul > li a {
        padding-left: 2rem;
}
/* 2nd Level */
.ez-toc-widget-sticky > ul > li > ul > li a, .ez-toc-counter > ul > li > ul > li a {
        padding-left: 3rem;
}
/* 3rd Level */
.ez-toc-widget-sticky > ul > li > ul > li > ul > li a, .ez-toc-counter > ul > li > ul > li > ul > li a {
        padding-left: 4rem;
}
/** Block **/
.ez-toc-counter {

}
.mp-location-navigator-widget {
        position: relative;
        margin-top: 1rem;
        margin-bottom: 1rem;
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        font-size: 1rem;
        line-height: 1.5rem;
}
.mp-location-navigator-widget__info-icon {
        position: absolute;
        top: 0px;
        left: 50%;
        margin-left: -1rem;
        margin-top: -1rem;
        height: 2rem;
        width: 2rem;
}
.mp-location-navigator-widget__top {
        border-bottom-width: 2px;
        padding-bottom: 1rem;
        text-align: center;
        font-size: 1.5rem;
        line-height: 2rem;
        font-weight: 700;
        text-transform: uppercase;
}
.mp-location-navigator-widget__search {
        padding-top: 1.5rem;
}
.mp-location-navigator-widget__input {
        display: flex;
        border-width: 2px;
}
.mp-location-navigator-widget__input input {
        flex-grow: 1;
        background-color: transparent;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
}
.mp-location-navigator-widget__input .mp-location-navigator-widget__cta {
        display: none;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        text-align: center;
}
@media (min-width: 768px) {
        .mp-location-navigator-widget__input .mp-location-navigator-widget__cta {
                display: block;
        }
}
.mp-location-navigator-widget__input .mp-location-navigator-widget__cta img {
        width: 1.5rem;
}
.mp-location-navigator-widget__results {
        margin-top: 2rem;
        margin-bottom: 2rem;
        height: 16rem;
        overflow: auto;
}
.mp-location-navigator-widget__results li {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        font-weight: 700;
}
.mp-location-navigator-widget__results li.mp-location-navigator-widget__results__group {
        padding-bottom: 1rem;
}
@media (min-width: 768px) {
        .mp-location-navigator-widget__results li.mp-location-navigator-widget__results__group {
                padding-bottom: 2.5rem;
        }
}
.mp-location-navigator-widget__results li.mp-location-navigator-widget__results__group .mp-location-navigator-widget__results__group__children li {
        font-weight: 400;
}
.mp-location-navigator-widget__results-header {
        border-bottom-width: 2px;
        padding-bottom: 1.5rem;
        text-align: center;
        font-size: 1.5rem;
        line-height: 2rem;
        font-weight: 700;
}
.mp-location-navigator-widget__results-header p {
        font-size: 0.875rem;
        line-height: 1.25rem;
}
.mp-location-navigator-widget__bottom {
        padding-top: 2rem;
        text-align: center;
}
.mp-location-navigator-widget__bottom .mp-location-navigator-widget__cta {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.025em;
}
.mp-location-navigator-widget__bottom img {
        margin-left: auto;
        margin-right: auto;
        width: 0.75rem;
}
.mp-location-navigator-widget__link--highlighted {
        border-bottom-width: 1px;
}
.mp-location-navigator-widget__cta {
        padding-right: 1rem;
        transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 500ms;
}
/** SAMPLE STYLING **/
/*
.mp-location-navigator-widget {
  background: #021059;
  color: white;
  border-color: white;

  &__cta {
    background-color: white;
    color: #021059;
  }

  ::placeholder {
    color: white;
  }
}
*/
/* Uncomment for optional styles
@import "./css/components/shared/tabs.css";
@import "./css/components/optional/accordion.css";
@import "./css/components/optional/affix.css";
@import "./css/components/optional/dynamic-image.css";
@import "./css/components/optional/tabs.css";
 */

