.alert {
  display: flex;
  position: relative;
  padding: 8px 16px;
  background: rgb(239, 239, 239);
  color: rgb(44, 50, 54);
  font-size: 15px;
  line-height: 20px;
  font-family: "Open Sans", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  border-radius: 0px;
  margin-bottom: 20px;
}

.alert__icon {
  margin-right: 8px;
  font-size: 20px;
  color: rgb(129, 143, 155);
}

.alert__icon svg {
  display: block;
  font-size: inherit;
  height: 20px;
  width: 20px;
  overflow: visible;
}

.alert__content {
  color: rgb(44, 50, 54);
  font-size: 15px;
  line-height: 20px;
  font-family: "Open Sans", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
}

.grid-item__inner {
  padding: 1.35rem 1.8rem 2rem 1.8rem;
  position: relative;
}
.hero__introSubheader {
  color: #fff;
  font-size: 1.25rem;
}
.hero__introHeader {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}
.hero__background {
  overflow: hidden;
  position: relative;
  min-height: 240px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  background-color: #00b9a5;
}
.hero__background--styleGuide {
  background-position: center center;
  min-height: 150px;
}
@media (min-width: 769px) {
  .header .menu-item:last-child {
    float: none;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.header__navigationCheckbox:checked
  + div.header__navIconContainer
  .header__navIcon {
  background: url("assets/images/icons/cross.svg") no-repeat center center;
}
.contact__trustPilot {
  margin-top: 3em;
}
.contact__endOfGroup {
  margin-bottom: 1.5em;
}
.contact__header,
.contact__group {
  margin-bottom: 0.5em;
}
.simpleSlider__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 70%;
  outline: none;
  padding: 0;
  margin: 0;

  /** Slider Thumb **/
}

/* Webkit */
.simpleSlider__input::-webkit-slider-runnable-track {
  height: 0.2em;
  background: #fff;
}

/* Firefox */
.simpleSlider__input::-moz-range-track {
  height: 0.2em;
  background: #fff;
  border: 0;
  transform: translateY(0.5em);
}

/** Slider Track **/
.simpleSlider__input::-moz-focus-inner,
.simpleSlider__input::-moz-focus-outer {
  border: 0;
}

/* IE */
.simpleSlider__input::-ms-fill-lower,
.simpleSlider__input::-ms-fill-upper {
  background-color: #fff;
  height: 0.2em;
}
.simpleSlider__input::-ms-ticks-before {
  color: transparent;
  background: transparent;
  display: block;
}
.simpleSlider__input::-ms-track {
  width: 100%;
  border: 0;
  color: transparent;
  background-color: transparent;
}
.simpleSlider__input::-ms-ticks-after {
  color: transparent;
  display: block;
  background: transparent;
}

/*  Webkit */
.simpleSlider__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 1.8em;
  height: 1.8em;
  margin-top: -0.8em;
  border: 0.2em #fff solid;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: background 0.15s ease-in-out;
}
.simpleSlider__input::-webkit-slider-thumb:hover {
  background: #fff;
}

/* Firefox */
.simpleSlider__input::-moz-range-thumb {
  -moz-appearance: none;
  width: 1.5em;
  height: 1.5em;
  border: 0.2em #fff solid;
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(0.5em);
  transition: background 0.15s ease-in-out;
}
.simpleSlider__input::-moz-range-thumb:hover {
  background: #fff;
}

/* IE */
.simpleSlider__input::-ms-thumb {
  width: 0.8em;
  height: 0.8em;
  border: 0.1em #fff solid;
  border-radius: 50%;
  cursor: pointer;
  background: #fff;
}
.flipswitch__cb:checked + .flipswitch__label .flipswitch__switch {
  right: 0;
}
.flipswitch__cb:checked + .flipswitch__label .flipswitch__inner {
  margin-left: 0;
}
.flipswitch__switch {
  width: 33px;
  margin: 4px;
  background: #ffffff;
  border-radius: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50px;
  -webkit-transition: all 0.2s ease-in 0s;
  -moz-transition: all 0.2s ease-in 0s;
  -ms-transition: all 0.2s ease-in 0s;
  -o-transition: all 0.2s ease-in 0s;
  transition: all 0.2s ease-in 0s;
}
.flipswitch__inner:after {
  content: "No";
  padding-right: 13px;
  background-color: #d9d9d9;
  color: #ffffff;
  text-align: right;
}
.flipswitch__inner:before {
  content: "Yes";
  padding-left: 13px;
  background-color: #00c8b4;
  color: #ffffff;
}
.flipswitch__inner:before,
.flipswitch__inner:after {
  float: left;
  width: 50%;
  height: 40px;
  padding: 0;
  line-height: 40px;
  font-size: 18px;
  color: white;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.flipswitch__inner {
  width: 200%;
  margin-left: -100%;
  -webkit-transition: margin 0.2s ease-in 0s;
  -moz-transition: margin 0.2s ease-in 0s;
  -ms-transition: margin 0.2s ease-in 0s;
  -o-transition: margin 0.2s ease-in 0s;
  transition: margin 0.2s ease-in 0s;
}
.flipswitch__label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border: 0px solid #999999;
  border-radius: 50px;
}
.customRadioButton__label {
  cursor: pointer;
}
.customRadioButton__label:before,
.customRadioButton__label:after {
  content: "";
  line-height: 1;
  position: absolute;
  left: -2em;
  top: 0;
  border-radius: 1.8em;
}
.customRadioButton__label:before {
  width: 1.5em;
  height: 1.5em;
  border: 0.15em solid;
  color: #aaa;
}
.customRadioButton__label:after {
  color: transparent;
  background: #aaa;
  opacity: 0.3;
  width: 0.5em;
  height: 0.5em;
  margin: 0.5em 0.5em;
}
.customRadioButton__input {
  opacity: 0;
  position: absolute;
}
.customRadioButton__input:checked + label:after {
  background: #fff;
}
.customRadioButton__input:checked + label:before {
  opacity: 1;
  border: 0.5em #00c8b4 solid;
}
.customRadioButton__input:hover + label:after {
  opacity: 1;
}
.customCheckBox__label {
  line-height: 1.8em;
}

/* derive this from label:before height; */
.customCheckBox__label:hover {
  cursor: pointer;
}
.customCheckBox__label:before,
.customCheckBox__label:after {
  content: "";
  line-height: 1;
  position: absolute;
  border-color: #141e64;
}
.customCheckBox__label:before {
  left: -2.5em;
  width: 1.8em;
  height: 1.8em;

  /* define line height of label from this */
  top: -0.1em;
  border: 0.25em solid;
  border-color: #d9d9d9;
}
.customCheckBox__label:after {
  opacity: 0;
  width: 1em;
  height: 0.55em;
  top: 0.45em;
  left: -2.1em;
  border: solid;
  border-width: 0 0 0.25em 0.25em;
  background: transparent;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  border-color: #141e64;
}
.customCheckBox__check {
  opacity: 0;
  position: absolute;
}
.customCheckBox__check:hover {
  cursor: pointer;
}
.customCheckBox__check:checked + label:after {
  opacity: 1;
}
.customCheckBox__check:checked + label:before {
  border-color: #141e64;
}
.customCheckBox:hover {
  cursor: pointer;
}
.minorButton:disabled {
  background: #585858;
  border-bottom-color: #333;
}
.minorButton:focus {
  outline: none;
  text-decoration: none;
  color: #fff;
}
.button:disabled {
  background: #585858;
  border-bottom-color: #333;
}
.button:focus {
  outline: none;
  text-decoration: none;
  color: #fff;
}
.button:active,
.button:hover {
  background: #e61450;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}
.button.secondary {
  background: #141e64;
  border-bottom: 0.3em #0f0f46 solid;
}
.button.secondary:active,
.button.secondary:hover {
  background: #0f0f46;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}
.button.super {
  font-size: 1.2em;
}
.button--noMargin {
  margin-bottom: 0;
}
@media (min-width: 600px) {
  .centeredForm--tool {
    width: 100%;
    padding: 1em 5%;
  }
}
.centeredForm--marginAfter {
  margin-bottom: 2em;
}
.centeredForm--bgNone {
  background: none;
  margin: 0 auto;
  width: 100%;
}
.centeredForm--bgNone .formGroup__label {
  color: #fff;
  margin-top: 0;
}
.centeredForm--bgNone .centeredForm__input {
  background-color: #fff;
}
@media (min-width: 600px) {
  .centeredForm--bgNone {
    padding: 0 3em;
    width: 66%;
  }
}
.centeredForm--bgGrey {
  background: #f6f6f6;
}
.centeredForm--bgGrey .centeredForm__input {
  background-color: #fff;
}
.centeredForm__textarea {
  width: 100%;
}
.formGroup__row {
  margin: 0 0 1em 0;
}
.formGroup__textarea {
  background: #fbfbfb;
  border: 0;
  padding: 1em;
  min-width: 10em;
  width: 100%;
  min-height: 8em;
  font-size: 1em;
}
.formGroup__select {
  height: 2.155em;
  background: #fff;
  border: none;
  border-bottom: 0.2em transparent solid;
  font-size: inherit;
  font-weight: 300;
  padding: 0.4em;
  border-radius: 0;
}
.formGroup__select:focus {
  border-bottom: 0.2em #3737cd solid;
  outline: none;
}
.formGroup__input--text,
.formGroup__input--email,
.formGroup__input--tel,
.formGroup__input--number,
.formGroup__input--password {
  background: #fbfbfb;
  border: none;
  border-bottom: 0.2em #d9d9d9 solid;
  font-size: inherit;
  font-weight: 200;
  padding: 0.4em;
}
.formGroup__input:focus {
  border-bottom: 0.2em #3737cd solid;
  outline: none;
}
.formGroup__hint {
  display: block;
  margin: 0.5em 0;
  color: #585858;
  font-size: 0.833rem;
  font-weight: normal;
}
.formGroup__label {
  font-weight: 600;
  color: #333;
  display: block;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 0.3em 0;
  margin: 1.5em 0 0 0;
}
.formGroup__label.error {
  color: #f97056;
}
.footer__cookieNotice {
  position: fixed;
  line-height: 1.4em;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1%;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  background-color: #585858;
  z-index: 99;
}
@media (min-width: 600px) {
  .footer__cookieNotice {
    font-size: 0.833rem;
  }
}
.footer__cookieNotice a {
  color: #fff;
  text-decoration: underline;
}
.footer__legals {
  opacity: 0.6;
  width: 97%;
  padding: 0.5em;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .footer__legals {
    width: 50em;
    padding: 1em;
  }
}
.footer__legals p {
  color: #fff;
  line-height: 1.5;
}
.footer__socialIcon {
  font-size: 1em;
  display: inline-block;
  width: 2em;
  height: 2em;
  overflow: hidden;
  text-indent: -10em;
  opacity: 0.5;
  background-size: 2em;
  background-position: center center;
  background-repeat: no-repeat;
}
.footer__socialIcon-twitter {
  background-image: url(/images/icons/sprite/socialTwitter.svg);
}
.footer__socialIcon-facebook {
  background-image: url(/images/icons/sprite/socialFacebook.svg);
}
.footer__socialIcon-googlePlus {
  background-image: url(/images/icons/sprite/socialGoogle.svg);
}
.footer__socialLinkItem {
  padding: 0 0.2em;
  display: inline-block;
}
.footer__socialLinkList {
  text-align: center;
  width: 100%;
  padding: 2em 0;
}
.footer__link {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}
.footer__linksListItem {
  padding: 0 0 1em 3%;
  width: 97%;
  list-style: none;
  margin-left: -0.1em;
}
@media (min-width: 769px) {
  .footer__linksListItem {
    padding: 0;
    width: auto;
  }
}
.footer__linksList {
  overflow: hidden;
  max-height: 0;
  position: relative;
  transition: max-height 0.3s ease-in-out;
  padding-bottom: 0;
}
@media (min-width: 769px) {
  .footer__linksList {
    max-height: inherit;
    height: auto;
    overflow: inherit;
    z-index: inherit;
    padding-bottom: 2em;
  }
}
.footer__linksHeader {
  color: #fff;
  padding-bottom: 1em;
}
@media (min-width: 769px) {
  .footer__linksHeader {
    padding-bottom: 1.5em;
  }
}
.footer__btnToggle {
  display: block;
  padding-left: 3%;
  width: 97%;
  height: 2em;
  line-height: 2em;
  cursor: pointer;
  text-align: left;
  background-image: url(/images/icons/sprite/icon-plus.svg);
  background-repeat: no-repeat;
  background-size: 2em;
  background-position: center right + 1%;
}
@media (min-width: 769px) {
  .footer__btnToggle {
    background: none;
    padding: 0;
    width: 100%;
    line-height: inherit;
    cursor: inherit;
    height: auto;
  }
}
.footer__chkToggle {
  display: none; /* Checkbox Allways Hidden */
}

/* Button : Extend State */
.footer__chkToggle:checked + h4 .footer__btnToggle {
  background-image: url(/images/icons/sprite/icon-minus.svg);
  background-repeat: no-repeat;
  background-size: 2em;
  background-position: center right + 1%;
}
@media (min-width: 769px) {
  .footer__chkToggle:checked + h4 .footer__btnToggle {
    background: none;
  }
}

/* Link Container : Extend State */
.footer__chkToggle:checked ~ .footer__linksList {
  transition: max-height 0.3s ease-in-out;
  max-height: 28em;
  padding-bottom: 2em;
}
.footer__loansColumn,
.footer__aboutColumn,
.footer__lendMoneyColumn,
.footer__navigationColumn {
  text-align: left;
  width: 100%;
}
@media (min-width: 769px) {
  .footer__loansColumn,
  .footer__aboutColumn,
  .footer__lendMoneyColumn,
  .footer__navigationColumn {
    float: left;
    width: 22vw;
    padding-left: 2vw;
  }
}
.header__subNavigationCheckbox {
  display: none;
}
@media (max-width: 768px) {
  .header__subNavigationCheckbox:checked ~ ul li .header__subnav {
    display: block;
    position: relative;
    height: auto;
    border-top: 1px #00c8b4 solid;
  }
}
.header__subNavigationCheckbox--borrower:checked
  ~ ul
  > .header__mainNavListItem--borrower,
.header__subNavigationCheckbox--lender:checked
  ~ ul
  > .header__mainNavListItem--lender {
  display: block;
  background: #00b9a5;
}
@media (min-width: 769px) {
  .header__subNavigationCheckbox--borrower:checked
    ~ ul
    > .header__mainNavListItem--borrower,
  .header__subNavigationCheckbox--lender:checked
    ~ ul
    > .header__mainNavListItem--lender {
    display: inline-block;
    background: transparent;
  }
  .header__subNavigationCheckbox--borrower:checked
    ~ ul
    > .header__mainNavListItem--borrower
    > a,
  .header__subNavigationCheckbox--borrower:checked
    ~ ul
    > .header__mainNavListItem--borrower
    > label,
  .header__subNavigationCheckbox--lender:checked
    ~ ul
    > .header__mainNavListItem--lender
    > a,
  .header__subNavigationCheckbox--lender:checked
    ~ ul
    > .header__mainNavListItem--lender
    > label {
    position: relative;
  }
}
.header__subnav {
  display: none;
  list-style: none;
}
@media (min-width: 769px) {
  .header__subnav {
    position: absolute;
    width: 100%;
    left: 0;
    background-color: #00c8b4;
    border-top: 0.2em #00b9a5 solid;
    height: 3em;
    padding-left: 7.7em;
  }
}
.header__subnav .header__subnavListItem {
  width: 100%;
  margin: 0;
}
@media (min-width: 769px) {
  .header__subnav .header__subnavListItem {
    display: inline-block;
    width: auto;
    line-height: normal;
    position: relative;
    z-index: 8;
  }

  /* Triangle with shadow */
  .header__subnav .header__subnavListItem--active > a:after,
  .header__subnav .header__subnavListItem--active > label:after {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    border-left: 0.5em solid transparent;
    border-right: 0.5em solid transparent;
    border-top: 0.5em solid #00c8b4;
    bottom: -0.4em;
    left: 50%;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 10;
  }
  .header__subnav .header__subnavListItem--active > a:hover:after,
  .header__subnav .header__subnavListItem--active > a:active:after,
  .header__subnav .header__subnavListItem--active > label:hover:after,
  .header__subnav .header__subnavListItem--active > label:active:after {
    border-top-color: #00b9a5;
  }
}
.header__subnav .header__subnavListItem > a,
.header__subnav .header__subnavListItem > label {
  padding: 1em;
  font-size: 1em;
  display: block;
  font-weight: normal;
  color: #fff;
}
@media (min-width: 769px) {
  .header__subnav .header__subnavListItem > a,
  .header__subnav .header__subnavListItem > label {
    padding: 0.7em;
    font-size: 1em;
  }
}
.header__subnav .header__subnavListItem > a:hover,
.header__subnav .header__subnavListItem > a:focus,
.header__subnav .header__subnavListItem > label:hover,
.header__subnav .header__subnavListItem > label:focus {
  text-decoration: none;
  background-color: #00b9a5;
}
.header__navIcon {
  height: 100%;
  display: block;
  background: url(/images/icons/hamburger.svg) no-repeat center center;
  background-size: 60%;
  padding: 0 1em;
}
.header__navIconContainer {
  position: relative;
  height: 100%;
  width: 4em;
}
@media (min-width: 769px) {
  .header__navIconContainer {
    display: none;
  }
}
.header__navigationCheckbox {
  display: none;
}
.header__navigationCheckbox:checked ~ ul.header__mainNav {
  display: block;
}
.header__navigationCheckbox:checked + div .header__navIcon {
  background: url(/images/icons/cross.svg) no-repeat center center;
  background-size: 60%;
}
.header__navigationCheckbox:checked + .header__navIconContainer {
  background-color: #00c8b4;
}
.header__navPrimary {
  float: right;
  height: 100%;
}
@media (min-width: 769px) {
  .header__navPrimary {
    float: left;
    width: 100%;
  }
}
.header__navPrimary .header__mainNav {
  display: none;
  background-color: rgba(255, 255, 255, 0.75);
  width: 100%;
}
@media (min-width: 769px) {
  .header__navPrimary .header__mainNav {
    display: block;
    background-color: transparent;
  }
}
.header__navPrimary .header__mainNav > .header__mainNavListItem, .header__navPrimary .header__mainNav > .menu-item /*morena*/ {
  width: 100%;
  background-color: #00c8b4;
  font-size: 1rem;
  margin: 0;
}
@media (min-width: 769px) {
  .header__navPrimary .header__mainNav > .header__mainNavListItem, .header__navPrimary .header__mainNav > .menu-item /*morena*/ {
    display: inline-block;
    width: auto;
    height: 100%;
    background-color: transparent;
    margin-right: 2.5em;
    margin-left: -2.5em;
    padding: 0 1em;
  }
  .header__navPrimary .header__mainNav > .header__mainNavListItem--active ul,
  .header__navPrimary .header__mainNav > .menu-item--active ul {
    display: block;
  }
  .header__navPrimary .header__mainNav > .header__mainNavListItem > a:active,
  .header__navPrimary .header__mainNav > .header__mainNavListItem > a:hover,
  .header__navPrimary .header__mainNav > .header__mainNavListItem > a:focus,
  .header__navPrimary
    .header__mainNav
    > .header__mainNavListItem
    > label:active,
  .header__navPrimary .header__mainNav > .header__mainNavListItem > label:hover,
  .header__navPrimary .header__mainNav > .header__mainNavListItem > label:focus,
  .header__navPrimary .header__mainNav > .menu-item > a:active,
  .header__navPrimary .header__mainNav > .menu-item > a:hover,
  .header__navPrimary .header__mainNav > .menu-item > a:focus,
  .header__navPrimary .header__mainNav > .menu-item > label:active,
  .header__navPrimary .header__mainNav > .menu-item > label:hover,
  .header__navPrimary .header__mainNav > .menu-item > label:focus {
    text-decoration: none;
  }
  .header__navPrimary .header__mainNav > .header__mainNavListItem:active,
  .header__navPrimary .header__mainNav > .header__mainNavListItem:hover,
  .header__navPrimary .header__mainNav > .header__mainNavListItem:focus,
  .header__navPrimary .header__mainNav > .menu-item:active,
  .header__navPrimary .header__mainNav > .menu-item:hover,
  .header__navPrimary .header__mainNav > .menu-item:focus {
    background-color: #f6f6f6;
  }
  .header__navPrimary
    .header__mainNav
    > .header__mainNavListItem:active
    label:after,
  .header__navPrimary
    .header__mainNav
    > .header__mainNavListItem:hover
    label:after,
  .header__navPrimary
    .header__mainNav
    > .header__mainNavListItem:focus
    label:after,
  .header__navPrimary .header__mainNav > .menu-item:active label:after,
  .header__navPrimary .header__mainNav > .menu-item:hover label:after,
  .header__navPrimary .header__mainNav > .menu-item:focus label:after {
    border-top-color: #f6f6f6;
  }
  .header__navPrimary .header__mainNav > .header__mainNavListItem:hover,
  .header__navPrimary .header__mainNav > .header__mainNavListItem label:hover,
  .header__navPrimary .header__mainNav > .menu-item:hover,
  .header__navPrimary .header__mainNav > .menu-item label:hover {
    cursor: pointer;
  }
}
.header__navPrimary .header__mainNav > .header__mainNavListItem:last-child,
.header__navPrimary .header__mainNav > .menu-item:last-child {
  box-shadow: 0 0.2em 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 769px) {
  .header__navPrimary .header__mainNav > .header__mainNavListItem:last-child,
  .header__navPrimary .header__mainNav > .menu-item:last-child {
    box-shadow: none;
  }
}
.header__navPrimary .header__mainNav > .header__mainNavListItem > a,
.header__navPrimary .header__mainNav > .header__mainNavListItem > label,
.header__navPrimary .header__mainNav > .menu-item > a,
.header__navPrimary .header__mainNav > .menu-item > label {
  padding: 0.7em;
  display: block;
  color: #fff;
  font-weight: normal;
}
@media (min-width: 769px) {
  .header__navPrimary .header__mainNav > .header__mainNavListItem > a,
  .header__navPrimary .header__mainNav > .header__mainNavListItem > label,
  .header__navPrimary .header__mainNav > .menu-item > a,
  .header__navPrimary .header__mainNav > .menu-item > label {
    color: #0f0f46;
    padding: 0;
    line-height: 3.5em;
    position: relative;
    height: 100%;
  }
}
@media (min-width: 769px) {
  .header__navPrimary .header__mainNav > .header__mainNavListItem--active > a,
  .header__navPrimary
    .header__mainNav
    > .header__mainNavListItem--active
    > label,
  .header__navPrimary .header__mainNav > .menu-item--active > a,
  .header__navPrimary .header__mainNav > .menu-item--active > label {
    /* Triangle with shadow */
  }
  .header__navPrimary
    .header__mainNav
    > .header__mainNavListItem--active
    > a:before,
  .header__navPrimary
    .header__mainNav
    > .header__mainNavListItem--active
    > label:before,
  .header__navPrimary .header__mainNav > .menu-item--active > a:before,
  .header__navPrimary .header__mainNav > .menu-item--active > label:before {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    border-left: 0.6em solid transparent;
    border-right: 0.6em solid transparent;
    border-top: 0.6em solid rgba(0, 0, 0, 0.08);
    bottom: -0.7em;
    left: 50%;
    transform: translateX(-50%);
    z-index: 7;
  }
  .header__navPrimary
    .header__mainNav
    > .header__mainNavListItem--active
    > a:after,
  .header__navPrimary
    .header__mainNav
    > .header__mainNavListItem--active
    > label:after,
  .header__navPrimary .header__mainNav > .menu-item--active > a:after,
  .header__navPrimary .header__mainNav > .menu-item--active > label:after {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    border-left: 0.5em solid transparent;
    border-right: 0.5em solid transparent;
    border-top: 0.5em solid #fff;
    bottom: -0.4em;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
}
.header__navPrimary
  .header__mainNav
  > .header__mainNavListItem--active:hover
  > a:after,
.header__navPrimary
  .header__mainNav
  > .header__mainNavListItem--active:hover
  > label:after,
.header__navPrimary .header__mainNav > .menu-item--active:hover > a:after,
.header__navPrimary .header__mainNav > .menu-item--active:hover > label:after {
  border-top-color: #f6f6f6;
}
.header__container--static {
  background: #fff;
  width: 100%;
  height: 3em;
  position: relative;
}
.header__container--static:after {
  content: " ";
  clear: both;
  display: block;
}
.header__container--static .header__navPrimary .header__mainNav {
  position: absolute;
  z-index: 10;
  top: 3em;
  left: 0;
}
@media (min-width: 769px) {
  .header__container--static .header__navPrimary .header__mainNav {
    position: relative;
    overflow: visible;
    height: auto;
    max-height: inherit;
  }
}
.header__container--sticky {
  height: 3.5em;
  min-height: 3em;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  background: #fff;
  box-shadow: 0 0.2em 0 rgba(0, 0, 0, 0.1);
  -webkit-backface-visibility: hidden;
}
.header__container--sticky .header__navPrimary .header__mainNav {
  position: fixed;
  bottom: 0;
  left: 0;
  height: calc(100% - 3.5em);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  -webkit-backface-visibility: hidden;
  list-style: none;
}
@media (min-width: 769px) {
  .header__container--sticky .header__navPrimary .header__mainNav {
    position: absolute;
    overflow: visible;
    height: 100%;
    left: 0;
    bottom: 0;
    padding-left: 10em;
  }
}
.header__navSign {
  float: right;
  height: 100%;
  display: flex;
  align-items: center;
}
.header__navSign--signedIn .signin {
  display: none;
}
.header__navSign--signedOut .signout,
.header__navSign--signedOut .myzopa {
  display: none;
}
@media (min-width: 769px) {
  .header__navSign {
    float: none;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.header__navSign .button,
.header__navSign .minorButton {
  font-size: 0.7em;
  padding: 0.7em 1em;
  margin-bottom: 0;
}
@media (min-width: 600px) {
  .header__navSign .button,
  .header__navSign .minorButton {
    font-size: 0.8em;
    padding: 0.7em 1.8em;
    margin: 0 0.5em 0 0;
  }
}
.header__navSign .myzopa {
  margin-right: 0.5em;
}
.awardsRow__link {
  text-align: center;
}

@media (min-width: 600px) {
  .numbered__number {
    margin: 0.5em 0.1em;
  }
}
.numbered__table {
  margin: 0 auto;
}
@media (min-width: 600px) {
  .numbered__table {
    margin-left: 4rem;
  }
}
.numbered__headline,
.numbered__text,
.numbered__content {
  margin-left: 4rem;
}
.numbered__headline--small,
.numbered__text--small,
.numbered__content--small {
  margin-left: 2rem;
  font-size: 1.1em;
  line-height: 1.3em;
}
.numbered h3 {
  padding-top: 0.7em;
}
@media (min-width: 600px) {
  .sectionHighlight__block:last-child {
    float: right;
    width: 66%;
  }
  .sectionHighlight__block {
    text-align: left;
  }
  .sectionHighlight__block:first-child {
    float: left;
    width: 33%;
  }
}
.sectionHighlight__cite {
  font-weight: 700;
  color: #fff;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.infoBlock p:last-child {
  margin-bottom: 0;
}
.infoBlock--bgGrey {
  background-color: #f6f6f6;
}
@media (min-width: 600px) {
  .twoBlock,
  .threeBlock {
  }
  .twoBlock > :last-child,
  .threeBlock > :last-child {
    margin-right: 0;
  }
}
.twoBlock--marginAfter,
.threeBlock--marginAfter {
  margin-bottom: 1em;
}
@media (min-width: 600px) {
  .twoBlock__blockOneThird {
    float: left;
    width: 30%;
    margin: 0 auto;
    margin-right: 5%;
  }
  .twoBlock__blockOneThird--right {
    float: right;
  }
  .twoBlock__blockTwoThird {
    float: left;
    width: 65%;
    margin: 0 auto;
    margin-right: 5%;
  }
  .twoBlock__blockTwoThird--right {
    float: right;
  }
  .twoBlock__blockTwo {
    float: right;
    width: 48%;
    margin: 0 auto;
  }
  .twoBlock {
  }
  .twoBlock__blockOne {
    float: left;
    width: 48%;
    margin: 0 auto;
  }
}
.twoBlock__blockTwo {
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
}
.wrap--centeredContent {
  text-align: center;
}
.wrap--fullWidth {
  max-width: 100%;
}
.section__bgTeal {
  padding: 2em 0;
  background-color: #00b9a5;
}
.section__bgTeal p {
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.694rem;
}
.section__bgTeal p:last-child {
  margin-bottom: 0;
}
.section__bgTeal h4 {
  color: #fff;
}
.section__bgTeal__link {
  color: #fff;
  text-decoration: none;
}
.section__bgTeal__link:hover,
.section__bgTeal__link:active,
.section__bgTeal__link:focus {
  color: #fff;
  text-decoration: underline;
}
.section--bgGrey {
  background-color: #f6f6f6;
}
.section--numbered {
  padding: 2.5em 0 2.5em;
}
.section--beforeCalculator {
  padding: 4em 1em 8em 1em;
}
.section--simulator {
  overflow: hidden;
}
.typographySample__sampleText {
  font-size: 1em;
}
@media (min-width: 600px) {
  .typographySample__sampleText {
    font-size: 2.2em;
  }
}
.typographySample__sampleHead {
  font-size: 5em;
}
@media (min-width: 600px) {
  .typographySample__sampleHead {
    font-size: 10em;
  }
}
.typographySample--open700 {
  font-weight: 700;
}
.typographySample--open600 {
  font-weight: 600;
}
.typographySample--open400 {
  font-weight: 400;
}
.typographySample--open300 {
  font-weight: 300;
}
.colourPreview--blueD {
  background-color: #3737cd;
}
.colourPreview--blueL {
  background-color: #4b3cfa;
}
.colourPreview--yellowD {
  background-color: #faa528;
}
.colourPreview--yellowL {
  background-color: #ffb428;
}
.colourPreview--rubyD {
  background-color: #e61450;
}
.colourPreview--rubyL {
  background-color: #f52d5a;
}
.colourPreview--navyD {
  background-color: #0f0f46;
}
.colourPreview--navyL {
  background-color: #141e64;
}
.colourPreview--tealD {
  background-color: #00b9a5;
}
.styleNavigation__next {
  text-align: right;
  float: right;
  width: 40%;
  margin: 0 5% 0 0;
}
@media (min-width: 600px) {
  .styleNavigation__next {
    margin: 0 1em 0 0;
  }
}
.styleNavigation__next a {
  position: relative;
  font-size: 1.2rem;
}
.styleNavigation__next a:after {
  content: "»";
  position: absolute;
  bottom: 0.1em;
  right: -1em;
}
.hero__introContainer--styleGuide {
  padding: 2em 0;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .hero__introContainer--styleGuide {
    padding: 4em 0;
  }
}
.tooltips__info {
  position: absolute;
  font-weight: normal;
  font-size: 0.9em;
  width: 20em;
  color: #ffffff;
  text-align: left;
  visibility: hidden;
  background-color: #0f0f46;
  margin-bottom: 1.5em;
  padding: 1em;
  border-radius: 0.2em;
}
.tooltips__info:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5.2em;
  width: 0;
  height: 0;
  border-top: 8px solid #0f0f46;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}
a:hover.tooltips span {
  visibility: visible;
  opacity: 1;
  bottom: 1em;
  left: 60%;
  margin-left: -5.5em;
  z-index: 999;
}
@media (min-width: 600px) {
  .bunch {
    display: inline-block;
  }
}
.bigNumber__sizeH3,
.bigText__sizeH3 {
  font-size: 1.953rem;
  line-height: 2rem;
}
.tableSimple th,
.tableSimple td {
  padding: 0.5em 0.7em;
  margin: 0;
  vertical-align: top;
  text-align: left;
  border: 1px solid #141e64;
}
.tableSimple th {
  font-weight: 600;
}
.tableSimple tbody th,
.tableSimple tbody td {
  background-color: #fff;
}
.unorderedList li ul {
  margin-top: 0.5em;
}
.unorderedList--inline {
  display: inline-block;
}
.unorderedList--hero {
  display: inline-block;
  margin-top: 1em;
}
.unorderedList--hero li {
  text-align: left;
  line-height: 1rem;
  color: #fff;
}
.unorderedList--noBullets li {
  list-style: none;
  line-height: 0.64rem;
  padding: 0;
  margin: 0 0 1rem 0;
}
.unorderedList--ticked li {
  background-image: url(/images/icons/tick-teal.svg);
  background-repeat: no-repeat;
  background-position: 0 0.35em;
  background-size: 1.2em;
  list-style: none;
  line-height: 1.5em;
  padding: 0 0 0.8rem 1.8rem;
  margin: 0;
}
.orderedList li ul {
  margin-top: 0.5em;
}
a:hover,
a:active,
a:focus {
  cursor: pointer;
  color: #00c8b4;
  text-decoration: underline;
}
a.show-more.expanded:before {
  content: "\2212";
}
a.show-more:before {
  content: "\002B";
  display: inline-block;
  width: 0.8em;
}
a.back {
  position: relative;
  padding-left: 1em;
}
a.back:before {
  content: "\00ab";

  /* => &laquo; */
  position: absolute;
  top: -0.1em;
  left: 0;
} /* Breakpoints */

body,
table,
iframe,
form,
fieldset,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
label {
  padding: 0;
}

body,
table,
iframe,
form,
fieldset,
h5,
h6,
p,
ul,
li,
blockquote,
label {
  margin: 0;
}

cite {
  font-style: normal;
}

table {
  border-spacing: 0;
}

fieldset {
  border: 0 none;
}

ul {
  list-style-type: none;
}

a img {
  border: 0;
}

*,
:after,
:before {
  box-sizing: border-box;
}

@media print {
  html {
    font-size: 1em;
  }
  .header,
  .footer,
  .contact {
    display: none;
  }
  .section {
    background-color: #fff;
    padding: 0;
  }
}

/* Base styles */

body {
  background-color: #fff;
  min-width: 320px;
}

a {
  color: #00b9a5;
  text-decoration: none;
  font-weight: 600;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

a.more {
  position: relative;
  font-size: 1.2rem;
}

a.more:after {
  content: "\00bb"; /* => &raquo; */
  position: absolute;
  bottom: 0.1em;
  right: -1em;
}

/* In-page anchor offset */

:target:before {
  display: block;
  content: "";
  height: 6em;
  margin-top: -6em;
}

@media (max-width: 768px) {
  :target:before {
    height: 3em;
    margin-top: -3em;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.orderedList {
  list-style: decimal outside;
  margin: 0 0 1rem 0;
}

.orderedList li {
  margin: 0 0 0.5em 1.5em;
}

.orderedList li ol {
  margin-top: 0.5em;
}

.unorderedList {
  list-style: disc outside;
  margin: 0 0 1rem 0;
}

.unorderedList li {
  margin: 0 0 0.5em 1.5em;
}

.unorderedList li ol {
  margin-top: 0.5em;
}

.linklist {
  margin-bottom: 1rem;
}

dt {
  float: left;
  clear: left;
  font-weight: 600;
  margin: 0 0.2em 0 0;
  padding: 0;
}

dd {
  margin: 0 0 0.5em 0;
  padding: 0;
}

dd ol {
  margin-top: 0.5em;
}

pre {
  white-space: pre-wrap;
  background: inherit;
  padding: 0;
  overflow: visible;
}

.tableSimple {
  border-collapse: collapse;
  empty-cells: show;
  border-spacing: 0;
  border: 1px solid #141e64;
  margin-bottom: 1.44rem;
}

.tableSimple thead th,
.tableSimple thead td {
  background-color: #141e64;
  color: #fff;
  font-weight: 600;
}

.tableWrapper {
  overflow-y: auto;
}

.videoWrapper {
  border: 0.1em solid #d9d9d9;
}

.error {
  color: #f97056;
}

.bigNumber,
.bigText {
  display: inline-block;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.074rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0.2em 0 0.2em 0;
}

@media (min-width: 600px) {
  .bigNumber,
  .bigText {
    font-size: 2.441rem;
  }
}

.bigNumber__sizeH2,
.bigText__sizeH2 {
  font-size: 2.441rem;
  line-height: 2rem;
}

/* Global classes */

/* Hide in an accessible way */

.a11y,
.screen-reader-text {
  /*morena*/
  position: absolute;
  left: -99999em;
  top: 0;
  overflow: hidden;
  display: inline;
}

.hideMobile {
  display: none;
}

@media (min-width: 600px) {
  .hideMobile {
    display: block;
  }
}

.hideMobile--inlineBlock {
}

@media (min-width: 600px) {
  .hideMobile--inlineBlock {
    display: inline-block;
  }
}

.hideTablet {
  display: none;
}

@media (min-width: 769px) {
  .hideTablet {
    display: block;
  }
}

.hideTablet--inlineBlock {
}

@media (min-width: 769px) {
  .hideTablet--inlineBlock {
    display: inline-block;
  }
}

.hidden {
  display: none;
}

/* Hide if javascript is enabled */

.js .no-js-only {
  display: none;
}

/* Keep words, phrases or sentences together when wrapping (a better alternative to &nbsp;) */

.bunch {
  display: inline;
}

.bunch--mobile {
  display: inline-block;
}

/* Prevents background (body) scrolling when a foreground element needs to scroll (mobile)  */

.scrollLocked {
}

@media (max-width: 768px) {
  .scrollLocked {
    overflow: hidden;
  }
}

a {
}

a.tooltips {
  position: relative;
  display: inline;
}

a.tooltips__icon {
  padding-top: 10em;
}

.tooltips {
}

.tooltips__icon {
  display: inline-block;
  top: 0.2em;
  position: relative;
}

/* Typography and scale */

@font-face {
  font-family: "Alverata";
  src: url("https://s3-eu-west-1.amazonaws.com/cdn.zopa.com/fonts/1333416/2dc6ef4b-6ad7-4da6-b898-2ea5e967e712.eot?#iefix");
  src: url("https://s3-eu-west-1.amazonaws.com/cdn.zopa.com/fonts/1333416/2dc6ef4b-6ad7-4da6-b898-2ea5e967e712.eot?#iefix")
      format("eot"),
    url("https://s3-eu-west-1.amazonaws.com/cdn.zopa.com/fonts/1333416/42b8e48a-c882-4831-856e-4e1f148b3169.woff2")
      format("woff2"),
    url("https://s3-eu-west-1.amazonaws.com/cdn.zopa.com/fonts/1333416/99d874d5-3f1c-419c-9c82-4c63e62f98ca.woff")
      format("woff"),
    url("https://s3-eu-west-1.amazonaws.com/cdn.zopa.com/fonts/1333416/c41ae233-742a-4c14-af50-6b0e62e12a58.ttf")
      format("truetype");
}

/* Body default font */

body {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Headings */

h1 {
  margin: 0 0 0.833rem 0;
}

h2,
h3,
h4 {
  margin: 0 0 1rem 0;
  padding-top: 0.5em;
}

h2:first-child,
h3:first-child,
h4:first-child {
  padding-top: 0;
}

h1,
h2,
h3,
h4 {
  color: #141e64;
  font-family: "Alverata", "Open Sans", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  letter-spacing: -0.02em;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}

/* Body copy text */

p,
li,
dt,
dd,
td,
th {
  color: #333;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1rem 0;
  line-height: 1.563rem;
}

li {
  margin: 0;
}

/* Type scale on small devices -- 1:200 ratio */

@media (max-width: 599px) {
  html {
    font-size: 1em; /* fallback */
    font-size: calc(1em + (3 - 1) * (100vw - 320px) / (600 - 320));
    /* calc(MinFont + (MaxFont - MinFont)*(100vw - MinScreen)/(MaxScreen - MinScreen)); */
  }
  .superH1 {
    font-size: 2.074rem;
  }
  h1 {
    font-size: 2.074rem;
  }
  h2 {
    font-size: 1.728rem;
  }
  h3 {
    font-size: 1.44rem;
  }
  h4 {
    font-size: 1.2rem;
  }
  p,
  label {
    font-size: 1rem;
  }
  .hint {
    font-size: 0.833rem;
  }
  .ant {
    font-size: 0.694rem;
  }
}

/* Type scale on larger devices -- 1:333 ratio */

@media (min-width: 600px) {
  html {
    font-size: 1em; /* fallback */
    font-size: calc(0.9em + (3 - 0.9) * (100vw - 601px) / (1200 - 601));
    /* calc(MinFont + (MaxFont - MinFont)*(100vw - MinScreen)/(MaxScreen - MinScreen)); */
  }
  .superH1 {
    font-size: 3.051rem;
  }
  h1 {
    font-size: 2.441rem;
  }
  h2 {
    font-size: 1.953rem;
  }
  h3 {
    font-size: 1.563rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  p,
  label {
    font-size: 1rem;
  }
  .hint {
    font-size: 0.8rem;
  }
  .ant {
    font-size: 0.64rem;
  }
}

.hero {
}

.hero__background {
}

.hero__background--styleGuide {
  background-image: url(/images/views/shared/hero-consolidation.jpg);
  background-position: center center;
  min-height: 150px;
}

.styleIntro {
}

.styleIntro__intro {
  font-size: 1.25rem;
}

.styleNavigation {
}

.styleNavigation__previous {
  float: left;
  width: 40%;
  margin: 0 0 0 5%;
}

@media (min-width: 600px) {
  .styleNavigation__previous {
    margin: 0 0 0 1em;
  }
}

.styleNavigation__previous a {
  position: relative;
  font-size: 1.2rem;
}

.styleNavigation__previous a:before {
  content: "«";
  position: absolute;
  bottom: 0.1em;
  left: -1em;
}

.colourPreview {
  height: 6em;
  -moz-border-radius: 3em;
  -webkit-border-radius: 3em;
  width: 6em;
  background-color: #f6f6f6;
}

.colourPreview--tealL {
  background-color: #00c8b4;
}

.typographySample {
  color: #00b9a5;
}

.typographySample--alverata {
  font-family: "Alverata", "Open Sans", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
}

.tableBare td {
  padding: 1em;
}

.section {
  width: 100%;
  position: relative;
  display: block;
  padding: 1.5em 0 3em;
}

.home .section.posts-container {
  padding: 3.5em 0 3em;
}

.section:after {
  content: "";
  display: block;
  clear: both;
}

.sectionContentCentered {
}

.sectionContentCentered__button,
.sectionContentCentered__headline,
.sectionContentCentered__intro {
}

@media (min-width: 600px) {
  .sectionContentCentered__button,
  .sectionContentCentered__headline,
  .sectionContentCentered__intro {
    text-align: center;
  }
}

.wrap {
  display: block;
  max-width: 45em;
  margin: 0 auto;
  padding: 0 1em;
}

.wrap:after {
  content: "";
  display: block;
  clear: both;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 1em;
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.twoBlock {
}

.twoBlock__blockOne {
  margin: 0 auto 2em auto;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
}

.twoBlock__blockOne--button {
  margin: 0 auto;
}

.threeBlock {
}

.threeBlock__block {
  text-align: left;
  padding: 1em 0;
}

@media (min-width: 600px) {
  .threeBlock__block {
    float: left;
    width: 30%;
    margin-right: 5%;
  }
  .threeBlock__block--padding {
    padding-right: 1em;
    width: 35%;
    margin-right: 5%;
  }
}

.twoBlock,
.threeBlock {
}

.twoBlock:after,
.threeBlock:after {
  content: "";
  clear: both;
  display: block;
}

.infoBlock {
  padding: 1em;
  margin-bottom: 1rem;
}

.infoBlock--bgWhite {
  background-color: #fff;
}

.sectionHighlight {
}

.sectionHighlight__block {
  text-align: center;
  color: #fff;
}

.sectionHighlight__block img {
  max-width: 180px;
  margin: 0 auto 1em auto;
}

@media (min-width: 600px) {
  .sectionHighlight__block img {
    margin: 0 auto;
  }
}

.highlightLogo {
}

@media (min-width: 600px) {
  .highlightLogo--bbc {
    padding-top: 0.8em;
  }
  .highlightLogo--mailonline {
    padding-top: 1.5em;
  }
  .highlightLogo {
  }
  .highlightLogo--guardian {
    padding-top: 3em;
  }
}

.numbered {
  position: relative;
}

.numbered__number {
  position: absolute;
  font-family: "Alverata", "Open Sans", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  color: #fff;
  background: #00c8b4;
  border-radius: 2em;
  line-height: 1.4;
  height: 1.5em;
  width: 1.5em;
  text-align: center;
  margin: 0.4em 0.1em;
  font-size: 1.7em;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}

.numbered__number--small {
  line-height: 1;
  height: 1.1em;
  width: 1.1em;
  font-size: 1.2em;
}

.awardsRow {
  margin: 1em 0;
  overflow: hidden;
  height: 13em;
  text-align: center;
  padding-top: 2em;
}

.awardsRow__award {
  opacity: 0.6;
  display: inline-block;
  margin: 0 0.75em 3em 0.75em;
  vertical-align: top;
}

.awardsRow__award--mse {
  margin-top: -1.65em;
}

.header {
  position: relative;
  width: 100%;
  height: 3.5em;
  min-height: 3em;
  z-index: 1000;
}

.header__logo {
  float: left;
  height: 100%;
  cursor: pointer;
  width: auto;
}

@media (min-width: 769px) {
  .header__logo {
    float: none;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 11;
  }
}

.header__logo a {
  height: 100%;
}

.header__logo a img {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  border: none;
  height: 100%;
  max-width: 35%;
}

@media (min-width: 375px) {
  .header__logo a img {
    max-width: 40%;
  }
}

@media (min-width: 500px) {
  .header__logo a img {
    max-width: inherit;
  }
}

.footer {
  position: relative;
  background-color: #141e64;
  padding-bottom: 4em;
  text-align: center;

  /* Accordion Menu : Checkbox States */

  /* Accordion Menu : Toggle Label */
}

.footer__links {
  padding-top: 1em;
}

@media (min-width: 769px) {
  .footer__links {
    text-align: center;
    padding-top: 3em;
    display: inline-block;
  }
  .footer__links:after {
    display: block;
    content: " ";
    clear: left;
  }
}

.formGroup {
}

.formGroup__fieldset {
  margin: 2em auto;
}

.centeredForm {
  margin: 0 auto 2em auto;
  max-width: 100%;
  padding: 1em;
  background-color: #fff;
}

@media (min-width: 600px) {
  .centeredForm {
    width: 66%;
    padding: 2em 12.5%;
  }
}

.centeredForm__input {
  width: 100%;
}

.button {
  background: #f52d5a;
  font-size: 1em;
  padding: 0.7em 1.8em 0.6em;
  border-radius: 5em;
  border: none;
  border-bottom: 0.3em #e61450 solid;
  margin-bottom: 1rem;
  font-family: "Alverata", "Open Sans", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}

.button--fullWidth {
  width: 100%;
}

.minorButton {
  background: #141e64;
  font-size: 0.7em;
  font-weight: 700;
  padding: 0.7em 1.8em 0.6em;
  border-radius: 5em;
  border: none;
  border-bottom: 0.3em #0f0f46 solid;
  margin-bottom: 1rem;
  font-family: "Alverata", "Open Sans", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  color: #fff;
  display: inline-block;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}

.minorButton:active,
.minorButton:hover {
  background: #0f0f46;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}

.customCheckBox {
  position: relative;
  display: block;
  margin: 0 0 0 2.5em;
}

.customCheckBox--sameLine {
  display: inline-block;
  margin: 0 2em 0 2.5em;
}

.customRadioButton {
  position: relative;
  display: block;
  margin: 0 2em;
}

.customRadioButton--sameLine {
  display: inline-block;
}

.flipswitch {
  position: relative;
  width: 91px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.flipswitch__centre {
}

@media (min-width: 600px) {
  .flipswitch__centre {
    margin: 0 auto;
  }
}

.flipswitch input[type="checkbox"] {
  display: none;
}

/* Simple Range Slider Base */

.simpleSlider {
  position: relative;
  text-align: center;
  min-width: 16em;

  /* Buttons */

  /* Slider */
}

.simpleSlider__decrease,
.simpleSlider__increase {
  color: #fff;
  background: none;
  margin: 0;
  padding: 0 0.3em;
  border: 0;
  outline: 0;
  font-size: 1.8em;
  vertical-align: middle;
  cursor: pointer;
}

.simpleSlider {
  display: none\9;
}

.simpleSlider {
}

.simpleSlider__input {
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .simpleSlider__input {
    margin-bottom: -0.6em;
    height: 1.5em;
  }
}

.simpleSlider {
}

.simpleSlider__input {
}

@supports (-ms-ime-align: auto) {
  .simpleSlider__input {
    margin-bottom: -0.6em;
    height: 1.5em;
  }
  .simpleSlider__input::-ms-thumb {
    transform: translateY(0.4em);
  }
}

/*@import "search-form.css";*/

.aboutSubNav {
  display: inline;
  line-height: 2rem;
}

.aboutSubNav__item:last-child::after,
.aboutSubNav li:last-child::after {
  content: none;
}

.aboutSubNav__item--selected .aboutSubNav__link,
.aboutSubNav li--selected .aboutSubNav__link {
  color: #141e64;
  text-decoration: none;
}

.aboutSubNav__item--selected .aboutSubNav__link:hover,
.aboutSubNav__item--selected .aboutSubNav__link:active,
.aboutSubNav__item--selected .aboutSubNav__link:focus,
.aboutSubNav li--selected .aboutSubNav__link:hover,
.aboutSubNav li--selected .aboutSubNav__link:active,
.aboutSubNav li--selected .aboutSubNav__link:focus {
  color: #141e64;
  text-decoration: underline;
}

.aboutSubNav__item,
.aboutSubNav li {
  /*morena*/
  display: inline;
}

.aboutSubNav__item::after,
.aboutSubNav li::after {
  content: "";
  padding: 0 0.5em;
}

.aboutSubNav__link,
.aboutSubNav a {
  /*morena*/
  color: #fff;
  text-decoration: none;
}

.aboutSubNav__link:hover,
.aboutSubNav__link:active,
.aboutSubNav__link:focus,
.aboutSubNav a:hover,
.aboutSubNav a:active,
.aboutSubNav a:focus {
  color: #fff;
  text-decoration: underline;
}

@media (min-width: 600px) {
  .aboutSubNav {
    line-height: 1rem;
  }
}

.section {
}

.section__aboutSubNav {
  padding: 1em 0;
  text-align: center;
}

@media (min-width: 600px) {
  .section__aboutSubNav {
    text-align: left;
  }
}

.contact {
  padding: 4em 0;
  text-align: center;
  border-top: 0.1em solid #d9d9d9;
}

.contact__hint {
  display: block;
  color: #585858;
  font-size: 0.833rem;
  font-weight: normal;
}

.suggestedFAQ__listItem {
}

.suggestedFAQ__listItem--unstyled {
  list-style-type: none;
  margin-left: 0 !important;
}

/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.7.1 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2017, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/

@media all {
  .featherlight {
    display: none;

    /* dimensions: spanning the background from edge to edge */
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2147483647; /* z-index needs to be >= elements on the site. */

    /* position: centering content */
    text-align: center;

    /* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
    white-space: nowrap;

    /* styling */
    cursor: pointer;
    background: #333;
    /* IE8 "hack" for nested featherlights */
    background: rgba(0, 0, 0, 0);
  }

  /* support for nested featherlights. Does not work in IE8 (use JS to fix) */
  .featherlight:last-of-type {
    background: rgba(0, 0, 0, 0.8);
  }

  .featherlight:before {
    /* position: trick to center content vertically */
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
  }

  .featherlight .featherlight-content {
    /* make content container for positioned elements (close button) */
    position: relative;

    /* position: centering vertical and horizontal */
    text-align: left;
    vertical-align: middle;
    display: inline-block;

    /* dimensions: cut off images */
    overflow: auto;
    padding: 25px 25px 0;
    border-bottom: 25px solid transparent;

    /* dimensions: handling large content */
    margin-left: 5%;
    margin-right: 5%;
    max-height: 95%;

    /* styling */
    background: #fff;
    cursor: auto;

    /* reset white-space wrapping */
    white-space: normal;
  }

  /* contains the content */
  .featherlight .featherlight-inner {
    /* make sure its visible */
    display: block;
  }

  .featherlight .featherlight-close-icon {
    /* position: centering vertical and horizontal */
    position: absolute;
    z-index: 9999;
    top: 0;
    right: 0;

    /* dimensions: 25px x 25px */
    line-height: 25px;
    width: 25px;

    /* styling */
    cursor: pointer;
    text-align: center;
    font-family: Arial, sans-serif;
    background: #fff; /* Set the background in case it overlaps the content */
    background: rgba(255, 255, 255, 0.3);
    color: #000;
    border: none;
    padding: 0;
  }

  /* See http://stackoverflow.com/questions/16077341/how-to-reset-all-default-styles-of-the-html5-button-element */
  .featherlight .featherlight-close-icon::-moz-focus-inner {
    border: 0;
    padding: 0;
  }

  .featherlight .featherlight-image {
    /* styling */
    width: 100%;
  }

  .featherlight-iframe .featherlight-content {
    /* removed the border for image croping since iframe is edge to edge */
    border-bottom: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
  }

  .featherlight iframe {
    /* styling */
    border: none;
  }

  .featherlight * {
    /* See https://github.com/noelboss/featherlight/issues/42 */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}

/* handling phones and small screens */

@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    /* dimensions: maximize lightbox with for small screens */
    margin-left: 0;
    margin-right: 0;
    max-height: 98%;

    padding: 10px 10px 0;
    border-bottom: 10px solid transparent;
  }
}

.header .menu-item {
}

.header .menu-item:last-child {
}

.header__navIcon {
  background: url("assets/images/hamburger.svg") no-repeat;
  background-position: 50%;
  background-size: 70%;
}

.single .wp-post-image {
  margin-bottom: 20px;
}

.single .addthis_inline_share_toolbox {
  float: right;
}

.single .nav-links .nav-previous {
  float: left;
}

.single .nav-links .nav-next {
  float: right;
}

.single .post {
}

.single .post__content ul {
  list-style: disc outside;
}

.single .post__content li {
  margin: 0 0 0 1.5em;
  padding: 0;
}

.related-posts {
  padding: 3.5em 0.5em 3em;
}

.related-posts .yuzo_related_post .yuzo_clearfixed {
  text-align: center;
  margin-bottom: 25px;
}

.related-posts .yuzo_related_post .relatedthumb {
  background-color: white !important;
  padding-bottom: 2rem;
  width: 100% !important;
}

.related-posts .yuzo_related_post .relatedthumb .yuzo__text--title,
.related-posts .yuzo_related_post .relatedthumb .yuzo_text {
  padding: 0 33px;
  display: block;
}

.related-posts .yuzo_related_post .relatedthumb .yuzo__text--title {
  font-family: "Alverata", "Open Sans", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.6rem;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  font-size: 1.4rem !important;
  color: #141e64;
  margin: 0 0 0.8rem 0;
  padding-top: 0.6rem;
}

.related-posts .yuzo_related_post .relatedthumb .yuzo_text {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #585858;
  font-size: 1rem !important;
  line-height: 1.5rem;
  font-weight: normal;
}

@media (min-width: 600px) {
  .related-posts .yuzo_related_post .relatedthumb {
    width: 32% !important;
  }
}

.footer .footer__links__linksList,
.footer .footer__links #menu-footer-first-column,
.footer .footer__links #menu-footer-second-column,
.footer .footer__links #menu-footer-third-column {
  /*overflow: hidden;
      max-height: 0;
      position: relative;
      transition: max-height 0.3s ease-in-out;
      padding-bottom: 0;*/
}

.footer .footer__links .menu-item {
  padding: 0 0 1em 3%;
  width: 97%;
  list-style: none;
  margin-left: -0.1em;
}

.footer .footer__links .menu-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}

.footer #menu-zopa-social-links {
  text-align: center;
  width: 100%;
  padding: 2em 0;
}

.footer #menu-zopa-social-links li.googlePlus a {
  background-image: url("assets/images/icons/sprite/socialGoogle.svg");
}

.footer #menu-zopa-social-links li.facebook a {
  background-image: url("assets/images/icons/sprite/socialFacebook.svg");
}

.footer #menu-zopa-social-links li {
  padding: 0 0.2em;
  display: inline-block;
}

.footer #menu-zopa-social-links li a {
  font-size: 1em;
  display: inline-block;
  width: 2em;
  height: 2em;
  overflow: hidden;
  text-indent: -10em;
  opacity: 0.5;
  background-size: 2em;
  background-position: center center;
  background-repeat: no-repeat;
}

.footer #menu-zopa-social-links li.twitter a {
  background-image: url("assets/images/icons/sprite/socialTwitter.svg");
}

@media (min-width: 769px) {
  .footer .footer__links__linksList,
  .footer .footer__links #menu-footer-first-column,
  .footer .footer__links #menu-footer-second-column,
  .footer .footer__links #menu-footer-third-column {
    max-height: inherit;
    height: auto;
    overflow: inherit;
    z-index: inherit;
    padding-bottom: 2em;
  }
}

@media (min-width: 769px) {
  .footer .footer__links .menu-item {
    padding: 0;
    width: auto;
  }
}

.footer__legals h2 {
  position: absolute;
  left: -99999em;
  top: 0;
  overflow: hidden;
  display: inline;
}

.footer__legals p {
  font-size: 0.8rem;
}

.hero {
  background-color: #f6f6f6;
}

.hero__introContainer {
  width: 95%;
  margin: 0 auto;
  padding: 2em 0.5em 6em 0.5em;
  text-align: center;
}

@media (min-width: 769px) {
  .hero__introContainer {
    width: 75%;
    margin: 3em auto 5em auto;
    padding: 4em 0.5em 8em 0.5em;
  }
}

.hero__introContainer--styleGuide {
  padding: 2em 0;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .hero__introContainer--styleGuide {
    padding: 4em 0;
  }
}

/*.search-results{
  .section--bgGrey article{
    margin-bottom:3rem;
  }
  .entry-date{
    text-transform: uppercase;
  }
  h2{
    a{
      font-family: var(--FontFlair);
      color: inherit;
    }
  }
}*/

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

p.success {
  display: none;
}

p.back a,
a.back {
  font-weight: normal;
  position: relative;
  font-size: 87.5%;
  padding-left: 1em;
}

p.back a:before,
a.back:before {
  content: "\00ab";
  font-size: 1.28em;
  font-weight: 600;
  position: absolute;
  top: -0.2em;
  left: 0;
}

/*.single-post,
.archive {
  .post{
    &__title{
        margin-bottom: 0.4rem;
    }
    &__meta{
      margin-top:3rem;
    }
  }
  .page-navigation {
    a {
      margin: 1.5em 0 1.2em 0;
    }
    .nav-previous{
      float:left;
    }
    .nav-next{
      float:right;
    }
  }
}*/

/*.featherlight{
  .featherlight-content{
    text-align:center;
    background-color: var(--ColGreyD);
  }
}*/

.mobileOnly {
}

@media (min-width: 769px) {
  .mobileOnly {
    display: none;
  }
}

.js-hidden {
  display: none !important;
}

.js-eloqua__form {
  display: none;
}

.js-eloqua__form .formGroup__row {
}

.js-eloqua__form .formGroup__row:last-child {
  margin-bottom: 0;
}

.js-eloqua__form .button {
  margin-bottom: 0;
}

.section__aboutSubNav,
.section .aboutSubNav {
  text-align: left;
  display: inline-block;
  height: 100%;
}

.section__aboutSubNav li.selected a,
.section .aboutSubNav li.selected a {
  text-decoration: none;
  color: #141e64;
}

@media (min-width: 769px) {
  .section__aboutSubNav li.selected a:after,
  .section .aboutSubNav li.selected a:after {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    border-left: 0.5em solid transparent;
    border-right: 0.5em solid transparent;
    border-top: 0.5em solid #00b9a5;
    bottom: -0.5em;
    left: 50%;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 10;
    font-size: 1.2em;
  }
}

/*.sub-menu{
          display: block;
        }*/

@media (min-width: 769px) {
  .section__aboutSubNav li.selected::after,
  .section .aboutSubNav li.selected::after {
    border-bottom: 0.5em solid #06959c;
    border-top: transparent !important;
  }
}

.section__aboutSubNav li.allPosts,
.section .aboutSubNav li.allPosts {
  padding: 0;
  margin-right: 8px;
  line-height: 50px;

  /*a{
          font-family: var(--FontFlair);
          letter-spacing: -0.02em;
          -moz-font-smoothing: antialiased;
          -o-font-smoothing: antialiased;
          -webkit-font-smoothing: antialiased;
          font-size:1.2em;
          line-height: normal;
          &:after{
            font-size:1em;
          }
        }*/
}

.section__aboutSubNav li.allPosts::after,
.section .aboutSubNav li.allPosts::after {
  display: none;
}

.section__aboutSubNav li.menu-item-has-children,
.section .aboutSubNav li.menu-item-has-children {
  /*&::after{
          @media (--BiggerThanTablet) {
            display:inline-block;
            content: ' ';
            width: 0;
            height: 0;
            border-left: 0.3em solid transparent;
            border-right: 0.3em solid transparent;
            border-top: 0.5em solid var(--ColTealD2);
            transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            z-index: 10;
            font-size:1.2em;
            padding:0;
            margin-left:12px;
          }
        }*/

  /*&.selected{
          background: var(--ColTealL);
        }*/
}

.section__aboutSubNav .wrap,
.section .aboutSubNav .wrap {
  max-width: none;
}

.section__aboutSubNav li,
.section .aboutSubNav li {
  width: auto;
  padding: 0 11px;
  height: 100%;
  line-height: 51px;
  display: block;
}

.section__aboutSubNav li a,
.section .aboutSubNav li a {
  display: inline-block;
  height: 100%;
}

.section__aboutSubNav li::after,
.section .aboutSubNav li::after {
  display: none;
}

.section__aboutSubNav .sub-menu,
.section .aboutSubNav .sub-menu {
  background: #00c8b4;
  padding: 0 8px 2px 0;
  line-height: 2.4rem;
}

.section__aboutSubNav .sub-menu li.selected a,
.section .aboutSubNav .sub-menu li.selected a {
  color: #141e64;
}

.section__aboutSubNav .sub-menu li,
.section .aboutSubNav .sub-menu li {
  display: block;
  text-align: left;
  white-space: nowrap;
  line-height: 36px;
}

/*padding: 0.55em 0.7em;*/

.section__aboutSubNav .sub-menu li a,
.section .aboutSubNav .sub-menu li a {
  display: block;
}

.section__aboutSubNav .sub-menu li a:after,
.section .aboutSubNav .sub-menu li a:after {
  display: none;
}

.section__aboutSubNav .sub-menu li::after,
.section .aboutSubNav .sub-menu li::after {
  display: none;
}

.section .showing {
  color: white;
  font-weight: 600;
  display: inline-block;
  margin-right: 10px;
}

.section .menu-blog-menu-container {
  display: inline-block;
}

.section .aboutSubNav {
  display: none;
}

@media (min-width: 769px) {
  .section__aboutSubNav,
  .section .aboutSubNav {
    line-height: 3rem;
    padding: 0;
  }
}

@media (min-width: 769px) {
  .section__aboutSubNav .wrap,
  .section .aboutSubNav .wrap {
    text-align: center;
  }
}

@media (min-width: 769px) {
  .section__aboutSubNav li,
  .section .aboutSubNav li {
    display: inline-block;
    position: relative;
    margin-right: 2px;
  }
}

@media (min-width: 769px) {
  .section__aboutSubNav .sub-menu,
  .section .aboutSubNav .sub-menu {
    display: none;
    position: absolute;
    z-index: 8;
    top: 51px;
    left: 0;
  }
}

@media (min-width: 769px) {
  .section .showing {
    display: none;
  }
}

@media (min-width: 769px) {
  .section .aboutSubNav {
    display: block;
  }
}

#catnav {
  height: 2.2em;
  z-index: 2;
  position: relative;
  width: 176px;
}

@media (min-width: 600px) {
  #catnav {
    width: auto;
  }
}

.grid,
.breadcrumb {
  max-width: 970px;
  margin: 0 auto;
}

.grid:after {
  content: "";
  display: block;
  clear: both;
}

.grid-item {
}

@media (min-width: 769px) {
  .grid-item {
    float: left;
    padding: 0 9px;
  }
}

.grid-item__wrapper {
  background: white;
}

.grid-item--width3 {
  /*width:280px;*/
  width: 90%;
  margin: 0 auto 19px auto;
}

@media (min-width: 769px) {
  .grid-item--width3 {
    width: 366px;
  }
}

@media (min-width: 969px) {
  .grid-item--width3 {
    width: 310px;
    margin: 0 0 19px 0;
  }
}

.breadcrumb {
  padding: 0 0 0 10px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.breadcrumb .breadcrumb_last {
  color: #0f0f46;
}

.posts-container .post__category__item:first-child::before {
  display: none;
}

.posts-container .post__read-more {
  width: 28px;
  height: 28px;
  background: url("assets/images/icons/icons-teal.svg") 0 0 no-repeat;
  background-size: 28px;
  text-indent: -9999px;
  position: absolute;
  bottom: 2.5rem;
  right: 1.8rem;
}

@media (min-width: 769px) {
  .posts-container .post__read-more {
    bottom: 2.6rem;
  }
}

.posts-container .post__meta {
  max-width: 170px;
  position: relative;
}

@media (min-width: 769px) {
  .posts-container .post__meta {
    max-width: 213px;
  }
}

.posts-container .post__meta .addthis_inline_share_toolbox {
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  height: 53px;
  display: none;
}

.posts-container .post__meta p {
  color: #585858;
  font-size: 0.8235rem;
  margin-bottom: 0;
}

.posts-container .post__meta a {
  font-weight: 600;
  color: #585858;
}

.posts-container .post__excerpt a {
  color: #333;
  font-weight: normal;
}

.posts-container .post__excerpt a:hover {
  text-decoration: none;
}

.posts-container .post {
}

.posts-container .post__category {
  margin-bottom: 0.3rem;
  line-height: 1;
}

.posts-container .post__category__item {
  text-transform: uppercase;
  font-size: 0.8235rem;
}

.posts-container .post__category__item::before {
  content: "• ";
  color: #0f0f46;
}

.posts-container h2 {
  font-size: 1.176rem;
  margin-bottom: 0.65rem;
}

.posts-container h2 a {
  font-family: "Alverata", "Open Sans", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  color: inherit;
}

.posts-container .loadMorePosts_wrapper {
  text-align: center;
}

.posts-container .loadMorePosts_wrapper #loadMorePosts {
  margin: 0 auto;
}

/* search form */

.search-form {
  display: inline-block;
  position: relative;
}

.search-form .search-field:-moz-placeholder {
  /* Firefox 18- */
  color: #d9d9d9;
}

.search-form .search-field:-ms-input-placeholder {
  /* IE 10+ */
  color: #d9d9d9;
}

.search-form .search-field::-moz-placeholder {
  /* Firefox 19+ */
  color: #d9d9d9;
}

.section__aboutSubNav .search-form {
  position: absolute;
  right: 49px;
  top: 12px;
  z-index: 1;
}

.section__aboutSubNav .search-form .search-close-btn {
  background: url("assets/images/icons/cross.svg") no-repeat center center;
  display: inline-block;
  content: " ";
  height: 20px;
  transition: all 0.5s;
  position: absolute;
  right: -33px;
  top: 12px;
  width: 20px;
  opacity: 0;
}

.section__aboutSubNav .search-form.open {
  z-index: 2;
}

.section__aboutSubNav .search-form.open .search-submit {
  right: 10px;
}

.section__aboutSubNav .search-form.open .search-close-btn {
  opacity: 1;
}

.section__aboutSubNav .search-form.open:focus {
  outline: none;
}

.search-form .search-field {
  background: #00c8b4;
  border: none;
  font-size: inherit;
  font-weight: 600;
  color: #585858;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 0.2rem 0.4rem 0.2rem 0.4rem;
  outline: 0.2em solid #00c8b4;
  border-radius: 0;
  -webkit-appearance: none;

  /*&:focus {
      border-bottom: 0.2em var(--ColTealD) solid;
      outline: none;
      color: white;
    }*/
}

.section__aboutSubNav .search-form .search-field {
  margin-left: 0.58rem;
  transition: all 0.5s;
  opacity: 0;
  padding: 0.6rem 2.2rem;
}

.section__aboutSubNav .search-form .search-field.open {
  opacity: 1;
  width: 100%;
}

.search-form .search-field::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #d9d9d9;
}

.search-form .search-submit {
  border: none;
  background: transparent;
  position: absolute;
  right: 0;
  bottom: 1px;
  z-index: 3;
}

.section__aboutSubNav .search-form .search-submit {
  bottom: 10px;
  right: -35px;
  bottom: 6px;
  transition: all 0.5s;
}

.section__aboutSubNav .search-form .search-submit:focus {
  outline: none;
}

.search-form .search-submit .icon {
  height: 20px;
  width: 20px;
  fill: white;
  display: block;
}

@media (min-width: 769px) {
  .section__aboutSubNav .search-form {
    position: relative;
    right: 0;
    top: 0;
    vertical-align: middle;
  }
}

@media (min-width: 769px) {
  .section__aboutSubNav .search-form .search-field {
    padding: 0.2rem 0.4rem 0.2rem 0.4rem;
    display: block;
    width: auto;
    opacity: 1;
  }
}

@media (min-width: 769px) {
  .section__aboutSubNav .search-form .search-submit {
    right: 0;
    bottom: 1px;
  }
}
