/* colours */
/* vendor prefixes */
/* layout */
.constrain {
  position: relative;
}
.center-xy {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.center-x {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -khtml-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}
.center-y {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
.fill {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.height100 {
  position: relative;
  min-height: -moz-fill-available;
  min-height: fill-available;
  min-height: 100vh;
}
/* Avoid Chrome to see Safari hack */
@supports (-webkit-touch-callout: none) {
  .height100 {
    /* The hack for Safari */
    min-height: -webkit-fill-available;
  }
}
.fullwidth {
  width: 100%;
}
.fullscreen {
  position: relative;
  min-height: -moz-fill-available;
  min-height: fill-available;
  min-height: 100vh;
  width: 100%;
}
.horizList {
  display: flex;
  flex-flow: row nowrap;
}
html,
body,
html a {
  -webkit-font-smoothing: antialiased !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
}
a:not(.btn),
a:not(.btn):active {
  border: 0;
  outline: 0;
  text-decoration: none;
}
img {
  border: 0;
  outline: 0;
  display: block;
  height: auto;
  max-width: 100%;
}
b,
strong {
  font-weight: 700;
}
/* page layout */
#wrapper {
  margin: 0 auto;
}
/* header */
#header ul,
#header li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#header .menuBar {
  background-color: var(--wp--preset--color--night);
}
#header .titleBar {
  background-color: var(--wp--preset--color--nebula);
  text-align: center;
  font-size: var(--wp--preset--font-size--extra-large);
  color: var(--wp--preset--color--lime-green);
  padding: 22px 15px;
}
#header .titleBar h1 {
  margin: 0;
}
#header #top-menu {
  width: 100%;
}
#header #top-menu ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
#header #top-menu a {
  color: white;
  font-size: 1.125rem;
  text-decoration: none;
  display: block;
  padding: 8px 22px;
}
#header #top-menu a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
@media (min-width: 922px) {
  body.menu-docked #header {
    margin-top: 44px;
  }
  body.menu-docked #header .menuBar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
  }
  body.admin-bar.menu-docked #header .menuBar {
    top: 32px;
  }
}
/* forms */
div.wpforms-container-full .wpforms-form .wpforms-field-label {
  font-weight: 300;
  font-size: var(--wp--preset--font-size--regular);
  line-height: var(--wp--custom--typography--normal);
  padding-bottom: 18px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--wp--preset--color--lime-green);
  display: block;
  width: 100%;
  hyphens: none;
}
div.wpforms-container-full .wpforms-form input[type=checkbox] + label,
div.wpforms-container-full .wpforms-form input[type=radio] + label {
  font-size: var(--wp--preset--font-size--medium);
}
div.wpforms-container-full .wpforms-form .wpforms-field-text input[type="text"],
div.wpforms-container-full .wpforms-form .wpforms-field-email input[type="email"] {
  background-color: var(--wp--preset--color--light-grey);
  border-color: var(--wp--preset--color--dark-grey);
}
div.wpforms-container-full .wpforms-form textarea {
  border-color: var(--wp--preset--color--lime-green);
  background-color: white;
  min-height: 200px;
}
div.wpforms-container-full .wpforms-form .wpforms-field .wpforms-field-description {
  font-size: var(--wp--preset--font-size--medium);
  line-height: var(--wp--custom--typography--normal);
  margin-bottom: 16px;
}
@media (max-width: 921px) {
  #menu-toggle {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 30px;
    z-index: 998;
    padding: 10px 0 6px;
    /* toggle link */
    /* menu open */
  }
  body.admin-bar #menu-toggle {
    top: 44px;
  }
  #menu-toggle:hover {
    text-decoration: none !important;
  }
  #menu-toggle:focus {
    text-decoration: none;
  }
  #menu-toggle i {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    margin-bottom: 10px;
    display: block;
    /* bar 1 */
    /* bar 2 */
    /* bar 3 */
    /* odd bars */
  }
  #menu-toggle i span {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    opacity: 1;
    z-index: 999;
    background-color: #ffffff;
    -webkit-transition: background-color 0.5s ease-in-out 0, opacity 0.5s ease-in-out 0.3s;
    -khtml-transition: background-color 0.5s ease-in-out 0, opacity 0.5s ease-in-out 0.3s;
    -moz-transition: background-color 0.5s ease-in-out 0, opacity 0.5s ease-in-out 0.3s;
    transition: background-color 0.5s ease-in-out 0, opacity 0.5s ease-in-out 0.3s;
  }
  #menu-toggle i span:nth-of-type(1) {
    top: 0;
  }
  #menu-toggle i span:nth-of-type(2) {
    top: 9px;
    -webkit-transition: background-color 0.2s ease-in-out 0s, opacity 0s ease-in-out 0.5s;
    -khtml-transition: background-color 0.2s ease-in-out 0s, opacity 0s ease-in-out 0.5s;
    -moz-transition: background-color 0.2s ease-in-out 0s, opacity 0s ease-in-out 0.5s;
    transition: background-color 0.2s ease-in-out 0s, opacity 0s ease-in-out 0.5s;
  }
  #menu-toggle i span:nth-of-type(3) {
    top: 18px;
  }
  #menu-toggle i span:nth-of-type(odd) {
    -webkit-transition: background-color 0.2s ease-in-out 0s, transform 0.3s ease-in-out 0s, top 0.3s ease-in-out 0.3s;
    -khtml-transition: background-color 0.2s ease-in-out 0s, transform 0.3s ease-in-out 0s, top 0.3s ease-in-out 0.3s;
    -moz-transition: background-color 0.2s ease-in-out 0s, transform 0.3s ease-in-out 0s, top 0.3s ease-in-out 0.3s;
    transition: background-color 0.2s ease-in-out 0s, transform 0.3s ease-in-out 0s, top 0.3s ease-in-out 0.3s;
  }
  .menu-open #menu-toggle {
    /* dropdown bars */
  }
  .menu-open #menu-toggle i {
    /* bar 1 */
    /* bar 2 */
    /* bar 3 */
    /* odd bars */
  }
  .menu-open #menu-toggle i span {
    background-color: #ffffff;
  }
  .menu-open #menu-toggle i span:nth-of-type(1) {
    top: 9px;
    -webkit-transform: rotate(45deg);
    -khtml-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .menu-open #menu-toggle i span:nth-of-type(2) {
    opacity: 0;
    -webkit-transition: background-color 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
    -khtml-transition: background-color 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
    -moz-transition: background-color 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
    transition: background-color 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
  }
  .menu-open #menu-toggle i span:nth-of-type(3) {
    top: 9px;
    transform: rotate(-45deg);
  }
  .menu-open #menu-toggle i span:nth-of-type(odd) {
    -webkit-transition: background-color 0.2s ease-in-out 0s, transform 0.1s ease-in-out 0.2s, top 0.1s ease-in-out 0s;
    -khtml-transition: background-color 0.2s ease-in-out 0s, transform 0.1s ease-in-out 0.2s, top 0.1s ease-in-out 0s;
    -moz-transition: background-color 0.2s ease-in-out 0s, transform 0.1s ease-in-out 0.2s, top 0.1s ease-in-out 0s;
    transition: background-color 0.2s ease-in-out 0s, transform 0.1s ease-in-out 0.2s, top 0.1s ease-in-out 0s;
  }
  #header {
    margin-top: 42px;
  }
  #header .menuBar {
    height: 44px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
  }
  body.admin-bar #header .menuBar {
    top: 44px;
  }
  #header #top-menu {
    background-color: var(--wp--preset--color--night);
    padding: 44px 0 22px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    transition: all 0.2s ease-in-out;
  }
  body.admin-bar #header #top-menu {
    top: 44px;
  }
  body.menu-open #header #top-menu {
    transform: translateY(0%);
    transition: all 0.2s ease-in-out;
  }
  #header #top-menu ul {
    flex-flow: column;
  }
  #header #top-menu a {
    text-align: center;
    font-size: var(--wp--preset--font-size--large);
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
