/* 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%;
}
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;
  color: var(--wp--preset--color--dark-grey);
}
a:not(.btn),
a:not(.btn):active {
  border: 0;
  outline: 0;
  color: var(--wp--preset--color--dark-grey);
}
img {
  border: 0;
  outline: 0;
  display: block;
  height: auto;
  max-width: 100%;
}
b,
strong {
  font-weight: 500;
}
/* page layout */
.contentWrapper {
  margin: 0 auto;
  max-width: 920px;
  width: 100%;
  padding-top: 32px;
}
.contentColumn {
  margin: 0 auto;
  max-width: 920px;
  width: 100%;
}
/* link lists */
.listItem {
  border: 1px solid #cfcfcf;
  padding: 24px;
  border-radius: 8px;
  text-decoration: none;
}
.linksList {
  margin: 24px 0;
}
.linksList,
.linksList li {
  padding: 0;
  margin: 0;
}
.linksList li {
  border: 1px solid #cfcfcf;
  padding: 24px;
  border-radius: 8px;
  text-decoration: none;
  list-style-type: none;
  margin-bottom: 24px;
}
.linksList a {
  color: var(--wp--preset--color--dark-blue);
  text-decoration: none;
}
.linksList .listItemInner {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  column-gap: 24px;
}
.linksList .listItemInner * {
  transition: all 0.2s ease-in-out;
}
.linksList .listItemInner .listItemIcon {
  min-width: 58px;
}
.linksList .listItemInner .listItemIcon a {
  margin-bottom: 0;
}
.linksList .listItemInner .listItemIcon img {
  max-width: 58px;
  width: 100%;
  height: auto;
}
.linksList .listItemInner .listItemInfo {
  flex-basis: 100%;
  grow: 1;
}
.linksList .listItemInner .listItemInfo p {
  margin-bottom: 0;
  font-size: var(--wp--preset--font-size--medium);
}
.linksList .listItemInner .listItemInfo > a {
  font-size: var(--wp--preset--font-size--title);
  color: var(--wp--preset--color--dark-blue);
  font-weight: 500;
  line-height: var(--wp--custom--typography--line-height--small);
  margin-bottom: 12px;
  display: block;
}
.linksList .listItemInner .listItemInfo > a:hover {
  color: var(--wp--preset--color--orange);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
.linksList .listItemInner .readMore a {
  display: block;
  height: 48px;
  width: 48px;
  background-color: transparent;
  border-radius: 50%;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.linksList .listItemInner .readMore a:after {
  position: absolute;
  top: 26px;
  left: 13px;
  content: '';
  height: 16px;
  width: 16px;
  border-style: solid;
  border-color: var(--wp--preset--color--light-blue) var(--wp--preset--color--light-blue) transparent transparent;
  transform-origin: center center;
  transform: rotate(45deg) translate(-50%, -50%);
  transition: all 0.2s ease-in-out;
  border-width: 1px;
}
.linksList .listItemInner .readMore a:hover {
  background-color: #f2f2f2;
  transition: all 0.2s ease-in-out;
}
.linksList .listItemInner .readMore a:hover:after {
  transition: all 0.2s ease-in-out;
  border-color: var(--wp--preset--color--orange) var(--wp--preset--color--orange) transparent transparent;
}
/* header */
header {
  padding: 15px;
  box-shadow: 0px 0px 25px 3px rgba(0, 0, 0, 0.5);
  background-color: var(--wp--preset--color--light-blue);
}
header #headerLogo {
  display: block;
  max-height: 80px;
  height: 100%;
  width: 100%;
  transition: all 0.2s ease-in-out;
}
header #searchForm {
  position: relative;
  width: 100%;
  margin: 24px 0;
}
header #searchForm * {
  transition: all 0.2s ease-in-out;
}
header #searchForm #s {
  width: 100%;
  background-color: transparent;
  color: white;
  border: 1px solid white;
  padding: 12px;
  border-radius: 8px;
}
header #searchForm #s::placeholder {
  color: white;
}
header #searchForm #s:focus {
  outline: none;
  background-color: white;
}
header #searchForm #s:focus ~ #searchsubmit {
  filter: invert(1);
}
header #searchForm #s:focus,
header #searchForm #s:focus::placeholder {
  color: var(--wp--preset--color--dark-grey);
}
header #searchForm #searchsubmit {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  height: 22px;
  width: 22px;
  display: block;
}
/* breadcrumbs */
.breadCrumbs {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  column-gap: 12px;
  font-size: 12px;
}
.breadCrumbs div {
  position: relative;
  padding-right: 18px;
}
.breadCrumbs div:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  height: 8px;
  width: 8px;
  border: 1px solid var(--wp--preset--color--dark-grey);
  border-color: var(--wp--preset--color--dark-grey) var(--wp--preset--color--dark-grey) transparent transparent;
  transform-origin: center;
  transform: rotate(45deg) translateX(-60%);
}
.breadCrumbs div:first-child {
  padding: 5px 8px 5px 12px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.breadCrumbs div:first-child:before {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  border-color: transparent transparent transparent transparent;
  border-width: 14px 13px;
  border-style: solid;
  z-index: 2;
}
.breadCrumbs div:nth-of-type(2) {
  padding-left: 12px;
}
.breadCrumbs div a {
  color: var(--wp--preset--color--dark-grey);
  text-decoration: none;
  display: block;
  padding: 4px;
}
.breadCrumbs div a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.breadCrumbs div:last-child:after,
.breadCrumbs div:first-child:after {
  display: none;
}
/* the content */
.contentWrapper {
  /* guide section archive */
}
.contentWrapper video {
  width: 100%;
  max-width: 100%;
}
.contentWrapper h1.mainTitle {
  font-size: var(--wp--preset--font-size--large);
  text-align: center;
}
.contentWrapper .headerVideo {
  margin-bottom: 12px;
}
.contentWrapper .sectionDescription {
  margin-bottom: 12px;
}
.contentWrapper a {
  color: var(--wp--preset--color--orange);
}
.contentWrapper a:hover {
  text-decoration: none;
}
/* single guide */
.single-guide .breadCrumbs,
.tax-guide-section .breadCrumbs {
  border-radius: 8px;
  background-color: #d5f2ff;
  color: white;
  margin-bottom: 24px;
}
.single-guide .breadCrumbs div,
.tax-guide-section .breadCrumbs div {
  position: relative;
}
.single-guide .breadCrumbs div:first-child,
.tax-guide-section .breadCrumbs div:first-child {
  background-color: #8bd7f9;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  color: white;
}
.single-guide .breadCrumbs div:first-child:before,
.tax-guide-section .breadCrumbs div:first-child:before {
  border-color: transparent transparent transparent #8bd7f9;
}
.single-guide .breadCrumbs div:nth-of-type(2),
.tax-guide-section .breadCrumbs div:nth-of-type(2) {
  padding-left: 12px;
}
/* search results */
.search-results .linksList li {
  padding: 24px 0 0 0;
}
.search-results .linksList li .highlight {
  background-color: #ffdad5;
  display: inline-block;
  padding: 0 4px;
}
.search-results .linksList li .listItemInner {
  padding: 0 24px;
}
.search-results .linksList .breadCrumbs {
  background-color: #d5f2ff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  margin-top: 24px;
}
.search-results .linksList .breadCrumbs div:first-child {
  background-color: #8bd7f9;
  color: white;
  border-top-left-radius: 0;
}
.search-results .linksList .breadCrumbs div:first-child:before {
  border-color: transparent transparent transparent #8bd7f9;
}
/* login form */
section.userLogin {
  padding: 64px 0;
  text-align: center;
}
section.userLogin form {
  max-width: 380px;
  margin: 32px auto;
}
section.userLogin form .login-username input,
section.userLogin form .login-password input {
  border-radius: 8px;
  border: 1px solid var(--wp--preset--color--light-blue);
  padding: 8px;
  width: 100%;
}
section.userLogin form .login-username input:focus,
section.userLogin form .login-password input:focus {
  outline: none;
}
section.userLogin form .login-username label,
section.userLogin form .login-password label {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}
section.userLogin form .login-username label.error,
section.userLogin form .login-password label.error {
  text-align: left;
  color: var(--wp--preset--color--orange);
}
section.userLogin form input.error {
  border-color: var(--wp--preset--color--orange);
  margin-bottom: 4px;
}
section.userLogin form input[type="submit"] {
  width: 280px;
  margin-top: 24px;
  padding: 12px;
  font-size: 16px;
  background-color: var(--wp--preset--color--light-blue);
  border: 1px solid var(--wp--preset--color--light-blue);
  transition: all 0.2s ease-in-out;
  color: white;
}
section.userLogin form input[type="submit"]:hover {
  background-color: var(--wp--preset--color--dark-blue);
  border: 1px solid var(--wp--preset--color--dark-blue);
  transition: all 0.2s ease-in-out;
}
@media (max-width: 921px) {
  #menu-toggle {
    position: absolute;
    top: 16px;
    left: 14px;
    display: block;
    width: 30px;
    z-index: 998;
    /* toggle link */
    /* menu open */
  }
  #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;
  }
}
