/**
 * @file
 * Color functions.
 *
 * @package Functions.
 */
/* Tint. */
/* Shade. */
/**
 * @file
 * Global settings.
 *
 * @package Settings.
 */
/* Import. */
/* * @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap'); */
/* Font family. */
/* Font size. */
/* Font weight. */
/* Line height. */
/* Basic colors. */
/* Status colors. */
/* Border radius. */
/* Outline. */
/* Shadow. */
/* Spacing. */
/* Width. */
/* Breakpoints. */
/* Grid breakpoints. */
/* Grid. */
/**
 * @file
 * Map functions.
 *
 * @package Functions.
 */
/* Use. */
/* Next. */
/* Prev. */
/**
 * @file
 * Mixins for breakpoints.
 *
 * @package Tools.
 */
/* Use. */
/* Breakpoint up. */
/* Breakpoint down. */
/* Breakpoint only. */
/**
 * @file
 * Header styles.
 *
 * @package Organisms.
 */
/* Use. */
/* Header. */
.o-header {
  padding: 1.3rem 0;
}
.o-header__content {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
.o-header__logo {
  flex: 1 1 0%;
  margin-right: auto;
}
.o-header__search {
  width: 100%;
}
@media (min-width: 768px) {
  .o-header__search:not(.o-header__search--is-open) {
    height: auto;
    overflow: unset;
    pointer-events: all;
    transition-delay: 0s;
    visibility: visible;
  }
}
@media (min-width: 768px) {
  .o-header__search {
    flex-basis: 33.3333333333%;
    margin-left: 1.3rem;
  }
}
.o-header__search > *:first-child {
  margin-top: 0.975rem;
}
@media (min-width: 768px) {
  .o-header__search > *:first-child {
    margin-top: 0;
  }
}
.o-header__search-toggler {
  margin-left: 1.3rem;
}
.o-header__search-toggler .o-header__search-icon-close {
  display: none;
}
.o-header__search-toggler[aria-expanded=true] .o-header__search-icon-open {
  display: none;
}
.o-header__search-toggler[aria-expanded=true] .o-header__search-icon-close {
  display: block;
}

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