@import url(/Static/vendor/bootstrap/css/bootstrap.css);/*------ Set icon size mixin -----*/
/*-------------- Vertical Spacing (used in blocks) ----------------*/
/*---------------------------------------------------------*\
    Introducing the world's most confusing spacing metrics
\*---------------------------------------------------------*/
/*----- Default Transition -- Used on links / buttons -----*/
/*----- Mega Overlay Transition -- Used on site selector & mega menu -----*/
/*----- Sticky Footer delay time before showing -----*/
/*------------------------------------------------*\
    HubSpot tools
\*------------------------------------------------*/
/*

  Settings: Global Variables
  ------------------------------------------------

*/
/*  Margins & paddings
    ========================================================================== */
/*  Animation
    ========================================================================== */
/*  Top Navigation
    ========================================================================== */
/*  Dimensions
    ========================================================================== */
/*  Form Settings
    ========================================================================== */
/*  HubSpot COS Widgets
    ========================================================================== */
/*  Other
    ========================================================================== */
/*

  Settings: Colors
  ------------------------------------------------

*/
/*  Visual Identity
    ========================================================================== */
/*  General Website Colors
    ========================================================================== */
/*  Form Colors
    ========================================================================== */
/*

  Settings: Typography
  ------------------------------------------------

*/
/*

  Mixins: General
  ------------------------------------------------
  General mixins, not project specific.

*/
/*

  Mixins: Links
  ------------------------------------------------
  - linkBaseStyle()
  - linkStyle--[style]()
  - linkAttr--[attribute]()
  
  Guidelines:
  -----------
  - The base style is applied first
  - Style mixins creates a specific style, like primary, image, arrows, etc
  - Attributes can be applied over styles. Can be combined

*/
/*------------------------------------------------*\
    Base Style Mixin
\*------------------------------------------------*/
/*------------------------------------------------*\
    Style Mixins
\*------------------------------------------------*/
/*----- Primary link -----*/
/*----- Secondary link -----*/
/*----- Arrow link -----*/
/*----- Block link -----*/
/*----- Image link -----*/
/*------------------------------------------------*\
    Attribute Mixins
\*------------------------------------------------*/
/*----- Colors -----*/
/*

  Mixins: Buttons
  ------------------------------------------------
  - buttonBaseStyle()
  - buttonStyle--[variation]
  - buttonSize--[size]

*/
/*------------------------------------------------*\
    Hoya Color Themes
\*------------------------------------------------*/
/*

  Component: Buttons
  ------------------------------------------------
  Set button styling using the button mixins
  located in project-mixins.less so that they
  can be reused in hubspot-calls-to-action.less

*/
.primary-button {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  font-size: 16px;
  padding: 13px 35px;
  font-family: GalanoGrotesqueBold, Arial, sans-serif;
  line-height: 22px;
  background-color: #0055c4;
  color: #fff;
  border: none;
}
.primary-button:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  -webkit-transform: scale(10, 10);
          transform: scale(10, 10);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform .5s;
  transition: opacity 1s, -webkit-transform .5s;
  transition: transform .5s, opacity 1s;
  transition: transform .5s, opacity 1s, -webkit-transform .5s;
}
.primary-button:active:after,
.primary-button.active:after {
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
  opacity: .2;
  -webkit-transition: 0s;
  transition: 0s;
}
.primary-button:hover {
  background-color: #0055c4;
}
.secondary-button {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  font-size: 16px;
  padding: 13px 35px;
  font-family: GalanoGrotesqueBold, Arial, sans-serif;
  line-height: 22px;
  background-color: #fff;
  border: 1px solid #0055c4;
  color: #0055c4;
}
.secondary-button:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #d1ccbd 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  -webkit-transform: scale(10, 10);
          transform: scale(10, 10);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform .5s;
  transition: opacity 1s, -webkit-transform .5s;
  transition: transform .5s, opacity 1s;
  transition: transform .5s, opacity 1s, -webkit-transform .5s;
}
.secondary-button:active:after,
.secondary-button.active:after {
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
  opacity: .2;
  -webkit-transition: 0s;
  transition: 0s;
}
.secondary-button:hover {
  background-color: #fff;
}
.EPiServerForms .FormSubmitButton {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  font-size: 16px;
  padding: 13px 35px;
  font-family: GalanoGrotesqueBold, Arial, sans-serif;
  line-height: 22px;
}
.EPiServerForms .FormSubmitButton:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  -webkit-transform: scale(10, 10);
          transform: scale(10, 10);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform .5s;
  transition: opacity 1s, -webkit-transform .5s;
  transition: transform .5s, opacity 1s;
  transition: transform .5s, opacity 1s, -webkit-transform .5s;
}
.EPiServerForms .FormSubmitButton:active:after,
.EPiServerForms .FormSubmitButton.active:after {
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
  opacity: .2;
  -webkit-transition: 0s;
  transition: 0s;
}
button.primary,
.button.primary,
.hs-button.primary {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  font-size: 16px;
  padding: 13px 35px;
  font-family: GalanoGrotesqueBold, Arial, sans-serif;
  line-height: 22px;
  background-color: #0055c4;
  color: #fff;
  border: none;
}
button.primary:after,
.button.primary:after,
.hs-button.primary:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  -webkit-transform: scale(10, 10);
          transform: scale(10, 10);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform .5s;
  transition: opacity 1s, -webkit-transform .5s;
  transition: transform .5s, opacity 1s;
  transition: transform .5s, opacity 1s, -webkit-transform .5s;
}
button.primary:active:after,
.button.primary:active:after,
.hs-button.primary:active:after,
button.primary.active:after,
.button.primary.active:after,
.hs-button.primary.active:after {
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
  opacity: .2;
  -webkit-transition: 0s;
  transition: 0s;
}
button.primary:hover,
.button.primary:hover,
.hs-button.primary:hover {
  background-color: #0055c4;
}
button.secondary,
.button.secondary,
.hs-button.secondary {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  font-size: 16px;
  padding: 13px 35px;
  font-family: GalanoGrotesqueBold, Arial, sans-serif;
  line-height: 22px;
  background-color: #fff;
  border: 1px solid #0055c4;
  color: #0055c4;
}
button.secondary:after,
.button.secondary:after,
.hs-button.secondary:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #d1ccbd 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  -webkit-transform: scale(10, 10);
          transform: scale(10, 10);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform .5s;
  transition: opacity 1s, -webkit-transform .5s;
  transition: transform .5s, opacity 1s;
  transition: transform .5s, opacity 1s, -webkit-transform .5s;
}
button.secondary:active:after,
.button.secondary:active:after,
.hs-button.secondary:active:after,
button.secondary.active:after,
.button.secondary.active:after,
.hs-button.secondary.active:after {
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
  opacity: .2;
  -webkit-transition: 0s;
  transition: 0s;
}
button.secondary:hover,
.button.secondary:hover,
.hs-button.secondary:hover {
  background-color: #fff;
}
.hs-form .hs-submit {
  width: auto;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.hs-form .hs-submit:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  -webkit-transform: scale(10, 10);
          transform: scale(10, 10);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform .5s;
  transition: opacity 1s, -webkit-transform .5s;
  transition: transform .5s, opacity 1s;
  transition: transform .5s, opacity 1s, -webkit-transform .5s;
}
.hs-form .hs-submit:active:after,
.hs-form .hs-submit.active:after {
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
  opacity: .2;
  -webkit-transition: 0s;
  transition: 0s;
}
.background-gray .hs-form .hs-submit {
  position: relative;
  overflow: hidden;
}
.background-gray .hs-form .hs-submit:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #0055c4 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  -webkit-transform: scale(10, 10);
          transform: scale(10, 10);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform .5s;
  transition: opacity 1s, -webkit-transform .5s;
  transition: transform .5s, opacity 1s;
  transition: transform .5s, opacity 1s, -webkit-transform .5s;
}
.background-gray .hs-form .hs-submit:active:after,
.background-gray .hs-form .hs-submit.active:after {
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
  opacity: .2;
  -webkit-transition: 0s;
  transition: 0s;
}
.ui-dialog-buttonset .ui-button {
  position: relative;
  overflow: hidden;
}
.ui-dialog-buttonset .ui-button:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  -webkit-transform: scale(10, 10);
          transform: scale(10, 10);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform .5s;
  transition: opacity 1s, -webkit-transform .5s;
  transition: transform .5s, opacity 1s;
  transition: transform .5s, opacity 1s, -webkit-transform .5s;
}
.ui-dialog-buttonset .ui-button:active:after,
.ui-dialog-buttonset .ui-button.active:after {
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
  opacity: .2;
  -webkit-transition: 0s;
  transition: 0s;
}
/*

  HubSpot Component: Calls-to-Action Buttons
  ------------------------------------------------
  The CTA buttons take advantage of the common
  button mixins in order to keep the styles
  consistent. Must use !important declaration
  to override the inline styling created by
  HubSpot

*/
.hs-cta-wrapper {
  display: block;
}
.hs-cta-wrapper .cta_button {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  display: inline-block !important;
  -webkit-transition: all ease-in-out 0.2s !important;
  transition: all ease-in-out 0.2s !important;
  margin-top: 6px !important;
  margin-bottom: 4px !important;
  border: none !important;
  border-radius: 3px !important;
  -webkit-font-smoothing: antialiased !important;
  font-family: GalanoGrotesqueRegular, Arial, sans-serif !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  cursor: pointer !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  padding: 10px 36px !important;
  margin: 0 !important;
}
.hs-cta-wrapper .cta_button:active {
  -webkit-transition: none !important;
  transition: none !important;
}
.hs-cta-wrapper .cta_button:focus {
  outline: 0 !important;
  text-decoration: none !important;
}
.hs-cta-wrapper .cta_button:hover,
.hs-cta-wrapper .cta_button:active {
  text-decoration: none !important;
}
.hs-cta-wrapper .cta_button:active {
  -webkit-transition-duration: .1s !important;
          transition-duration: .1s !important;
}
.hs-cta-wrapper .cta_button,
.hs-cta-wrapper .cta_button * {
  font-size: 20px !important;
}
@media screen and (max-width: 767px) {
  .hs-cta-wrapper .cta_button {
    padding: 13px 36px;
  }
  .hs-cta-wrapper .cta_button,
  .hs-cta-wrapper .cta_button * {
    font-size: 16px;
  }
}
.hs-cta-wrapper .cta_button > *:first-child {
  margin-top: 0;
}
.hs-cta-wrapper .cta_button > *:last-child {
  margin-bottom: 0;
}
.hs-cta-wrapper .cta_button.primary {
  background: #0055c4 !important;
  color: #fff !important;
}
.hs-cta-wrapper .cta_button.primary:focus {
  color: #fff !important;
}
.hs-cta-wrapper .cta_button.primary:hover {
  background: #3377d0 !important;
  color: #fff !important;
}
.hs-cta-wrapper .cta_button.primary:active {
  background: #1966ca !important;
}
.hs-cta-wrapper .cta_button.secondary {
  background: none !important;
  color: #0055c4 !important;
  -webkit-box-shadow: inset 0 0 0 1px #0055c4 !important;
          box-shadow: inset 0 0 0 1px #0055c4 !important;
}
.hs-cta-wrapper .cta_button.secondary:focus {
  color: #0055c4 !important;
}
.hs-cta-wrapper .cta_button.secondary:hover {
  background: #3377d0 !important;
  border-color: #3377d0 !important;
  -webkit-box-shadow: inset 0 0 0 1px #3377d0 !important;
          box-shadow: inset 0 0 0 1px #3377d0 !important;
  color: #fff !important;
}
.hs-cta-wrapper .cta_button.secondary:active {
  color: #fff !important;
  background: #1966ca !important;
  border-color: #1966ca !important;
  -webkit-box-shadow: inset 0 0 0 1px #1966ca !important;
          box-shadow: inset 0 0 0 1px #1966ca !important;
}
.hs-cta-wrapper .cta_button.tertiary {
  background: none !important;
  color: #2c2c37 !important;
  -webkit-box-shadow: inset 0 0 0 1px #2c2c37 !important;
          box-shadow: inset 0 0 0 1px #2c2c37 !important;
}
.hs-cta-wrapper .cta_button.tertiary:focus {
  color: #2c2c37 !important;
}
.hs-cta-wrapper .cta_button.tertiary:hover {
  background: #2c2c37 !important;
  color: #fff !important;
}
.hs-cta-wrapper .cta_button.tertiary:active {
  color: #fff !important;
  background: #2c2c37 !important;
}
.hs-cta-wrapper .cta_button.cThemeGeneral {
  background: #c3c3cd !important;
}
.hs-cta-wrapper .cta_button.cThemeGeneral,
.hs-cta-wrapper .cta_button.cThemeGeneral * {
  color: #2c2c37 !important;
}
.hs-cta-wrapper .cta_button.cThemeGeneral:focus {
  color: #2c2c37 !important;
}
.hs-cta-wrapper .cta_button.cThemeGeneral:hover {
  background: #d5d5dc !important;
}
.hs-cta-wrapper .cta_button.cThemeGeneral:active {
  background: #cfcfd7 !important;
}
.hs-cta-wrapper .cta_button.cThemeECP {
  background: #5cc4e8 !important;
}
.hs-cta-wrapper .cta_button.cThemeECP,
.hs-cta-wrapper .cta_button.cThemeECP * {
  color: #2c2c37 !important;
}
.hs-cta-wrapper .cta_button.cThemeECP:focus {
  color: #2c2c37 !important;
}
.hs-cta-wrapper .cta_button.cThemeECP:hover {
  background: #8dd6ef !important;
}
.hs-cta-wrapper .cta_button.cThemeECP:active {
  background: #7dd0ed !important;
}
.hs-cta-wrapper .cta_button.cThemeSW {
  background: #fed400 !important;
}
.hs-cta-wrapper .cta_button.cThemeSW,
.hs-cta-wrapper .cta_button.cThemeSW * {
  color: #2c2c37 !important;
}
.hs-cta-wrapper .cta_button.cThemeSW:focus {
  color: #2c2c37 !important;
}
.hs-cta-wrapper .cta_button.cThemeSW:hover {
  background: #fee566 !important;
}
.hs-cta-wrapper .cta_button.cThemeSW:active {
  background: #fedd33 !important;
}
.hs-form .hs-form-field.hs-fieldtype-text label,
.hs-form .hs-form-field.hs-fieldtype-select label,
.hs-form .hs-form-field.hs-fieldtype-textarea label {
  text-align: left;
  color: #0055c4;
}
.hs-form .hs-form-field.hs-fieldtype-text label.hs-error-msg,
.hs-form .hs-form-field.hs-fieldtype-select label.hs-error-msg,
.hs-form .hs-form-field.hs-fieldtype-textarea label.hs-error-msg {
  color: #ff453a;
  margin-top: 3px;
}
.hs-form .hs-form-field.hs-fieldtype-text .input,
.hs-form .hs-form-field.hs-fieldtype-select .input,
.hs-form .hs-form-field.hs-fieldtype-textarea .input {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.hs-form .hs-form-field.hs-fieldtype-text .input .hs-input,
.hs-form .hs-form-field.hs-fieldtype-select .input .hs-input,
.hs-form .hs-form-field.hs-fieldtype-textarea .input .hs-input {
  border: 1px solid #C1C5C8;
  padding: 10px 15px;
  outline: none;
  color: #2D2926;
  font: 16px GalanoGrotesqueRegular, Arial, sans-serif;
}
.hs-form .hs-form-field.hs-fieldtype-text .input .hs-input::-webkit-input-placeholder,
.hs-form .hs-form-field.hs-fieldtype-select .input .hs-input::-webkit-input-placeholder,
.hs-form .hs-form-field.hs-fieldtype-textarea .input .hs-input::-webkit-input-placeholder {
  color: #A0A0A0;
}
.hs-form .hs-form-field.hs-fieldtype-text .input .hs-input::-ms-input-placeholder,
.hs-form .hs-form-field.hs-fieldtype-select .input .hs-input::-ms-input-placeholder,
.hs-form .hs-form-field.hs-fieldtype-textarea .input .hs-input::-ms-input-placeholder {
  color: #A0A0A0;
}
.hs-form .hs-form-field.hs-fieldtype-text .input .hs-input::placeholder,
.hs-form .hs-form-field.hs-fieldtype-select .input .hs-input::placeholder,
.hs-form .hs-form-field.hs-fieldtype-textarea .input .hs-input::placeholder {
  color: #A0A0A0;
}
.hs-form .hs-form-field.hs-fieldtype-text .input .hs-input:focus,
.hs-form .hs-form-field.hs-fieldtype-select .input .hs-input:focus,
.hs-form .hs-form-field.hs-fieldtype-textarea .input .hs-input:focus {
  border-color: #0055c4;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.hs-form .hs-form-field.hs-fieldtype-text .input .hs-input.invalid,
.hs-form .hs-form-field.hs-fieldtype-select .input .hs-input.invalid,
.hs-form .hs-form-field.hs-fieldtype-textarea .input .hs-input.invalid {
  border-color: #ff453a;
}
.hs-form .hs-form-field.hs-fieldtype-text .input:after,
.hs-form .hs-form-field.hs-fieldtype-select .input:after,
.hs-form .hs-form-field.hs-fieldtype-textarea .input:after {
  right: 10px;
}
.hs-form .hs-form-field.hs-fieldtype-text .hs-error-msgs,
.hs-form .hs-form-field.hs-fieldtype-select .hs-error-msgs,
.hs-form .hs-form-field.hs-fieldtype-textarea .hs-error-msgs {
  color: #ff453a;
  margin-top: 3px;
}
.hs-form .hs-form-field .hs-form-booleancheckbox input[type=checkbox] + span:before {
  border: 1px solid #0055c4;
}
.background-gray .hs-form .hs-form-field.hs-fieldtype-text label,
.background-gray .hs-form .hs-form-field.hs-fieldtype-select label,
.background-gray .hs-form .hs-form-field.hs-fieldtype-textarea label {
  color: #fff;
}
.background-gray .hs-form .hs-form-field.hs-fieldtype-text .input .hs-input,
.background-gray .hs-form .hs-form-field.hs-fieldtype-select .input .hs-input,
.background-gray .hs-form .hs-form-field.hs-fieldtype-textarea .input .hs-input {
  color: #fff;
}
.background-gray .hs-form .hs-form-field.hs-fieldtype-text .input .hs-input::-webkit-input-placeholder,
.background-gray .hs-form .hs-form-field.hs-fieldtype-select .input .hs-input::-webkit-input-placeholder,
.background-gray .hs-form .hs-form-field.hs-fieldtype-textarea .input .hs-input::-webkit-input-placeholder {
  color: #C1C5C8;
}
.background-gray .hs-form .hs-form-field.hs-fieldtype-text .input .hs-input::-ms-input-placeholder,
.background-gray .hs-form .hs-form-field.hs-fieldtype-select .input .hs-input::-ms-input-placeholder,
.background-gray .hs-form .hs-form-field.hs-fieldtype-textarea .input .hs-input::-ms-input-placeholder {
  color: #C1C5C8;
}
.background-gray .hs-form .hs-form-field.hs-fieldtype-text .input .hs-input::placeholder,
.background-gray .hs-form .hs-form-field.hs-fieldtype-select .input .hs-input::placeholder,
.background-gray .hs-form .hs-form-field.hs-fieldtype-textarea .input .hs-input::placeholder {
  color: #C1C5C8;
}
.background-gray .hs-form .hs-form-field.hs-fieldtype-text .input .hs-input:focus,
.background-gray .hs-form .hs-form-field.hs-fieldtype-select .input .hs-input:focus,
.background-gray .hs-form .hs-form-field.hs-fieldtype-textarea .input .hs-input:focus {
  border-color: #fff;
}
.background-gray .hs-form .hs-form-field .hs-form-booleancheckbox input[type=checkbox] + span:before {
  border-color: #fff;
}
.background-gray .hs-form .hs-submit .hs-button {
  background: #fff;
  color: #0055c4;
}
@charset "UTF-8";.hs-form-booleancheckbox label,.hs-form-checkbox label,.hs-form-radio label,.paragraph{margin:0 0 1.5rem;padding:0;font-size:17px}.hs-datepicker button{padding:5px;background:#f5f5f5;color:#555}.hs-datepicker button:hover{background-color:#fb6868!important}.hs-datepicker .pika-lendar{margin:12px 12px 8px}.hs-datepicker .pika-button:hover{background-color:#fb6868}.hs-datepicker .is-today .pika-button{color:#0454cc}.hs-datepicker .is-selected .pika-button{background-color:#0454cc;-webkit-box-shadow:none;box-shadow:none;color:#fff!important}.form-title{margin-bottom:43.75px;color:#2c2c2e}.inverted-ui .form-title{color:#6a7889}.form-title:empty{display:none}.hs-form.stacked{max-width:100%}.hs-form .hs-form-field{-moz-box-sizing:border-box;-webkit-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.hs-form fieldset{min-width:0;max-width:inherit!important}.hs-form fieldset.form-columns-1 input[type=text].hs-input,.hs-form fieldset.form-columns-1 input[type=email].hs-input,.hs-form fieldset.form-columns-1 input[type=number].hs-input,.hs-form fieldset.form-columns-1 input[type=tel].hs-input,.hs-form fieldset.form-columns-1 input[type=url].hs-input,.hs-form fieldset.form-columns-1 input[type=file].hs-input,.hs-form fieldset.form-columns-1 select.hs-input,.hs-form fieldset.form-columns-1 textarea.hs-input,.hs-form fieldset.form-columns-2 input[type=text].hs-input,.hs-form fieldset.form-columns-2 input[type=email].hs-input,.hs-form fieldset.form-columns-2 input[type=number].hs-input,.hs-form fieldset.form-columns-2 input[type=tel].hs-input,.hs-form fieldset.form-columns-2 input[type=url].hs-input,.hs-form fieldset.form-columns-2 input[type=file].hs-input,.hs-form fieldset.form-columns-2 select.hs-input,.hs-form fieldset.form-columns-2 textarea.hs-input,.hs-form fieldset.form-columns-3 input[type=text].hs-input,.hs-form fieldset.form-columns-3 input[type=email].hs-input,.hs-form fieldset.form-columns-3 input[type=number].hs-input,.hs-form fieldset.form-columns-3 input[type=tel].hs-input,.hs-form fieldset.form-columns-3 input[type=url].hs-input,.hs-form fieldset.form-columns-3 input[type=file].hs-input,.hs-form fieldset.form-columns-3 select.hs-input,.hs-form fieldset.form-columns-3 textarea.hs-input{width:100%!important}.hs-form fieldset.form-columns-1 .input,.hs-form fieldset.form-columns-2 .input{margin-right:0!important}.hs-form fieldset.form-columns-2 .hs-form-field,.hs-form fieldset.form-columns-3 .hs-form-field{padding-left:0;padding-right:0}.hs-form fieldset .hs-richtext+.hs-form-field{padding-left:0!important}@media (min-width:401px){.hs-form fieldset.form-columns-1 input[type=text].hs-input,.hs-form fieldset.form-columns-1 input[type=email].hs-input,.hs-form fieldset.form-columns-1 input[type=number].hs-input,.hs-form fieldset.form-columns-1 input[type=tel].hs-input,.hs-form fieldset.form-columns-1 input[type=url].hs-input,.hs-form fieldset.form-columns-1 input[type=file].hs-input,.hs-form fieldset.form-columns-1 select.hs-input,.hs-form fieldset.form-columns-1 textarea.hs-input,.hs-form fieldset.form-columns-2 input[type=text].hs-input,.hs-form fieldset.form-columns-2 input[type=email].hs-input,.hs-form fieldset.form-columns-2 input[type=number].hs-input,.hs-form fieldset.form-columns-2 input[type=tel].hs-input,.hs-form fieldset.form-columns-2 input[type=url].hs-input,.hs-form fieldset.form-columns-2 input[type=file].hs-input,.hs-form fieldset.form-columns-2 select.hs-input,.hs-form fieldset.form-columns-2 textarea.hs-input,.hs-form fieldset.form-columns-3 input[type=text].hs-input,.hs-form fieldset.form-columns-3 input[type=email].hs-input,.hs-form fieldset.form-columns-3 input[type=number].hs-input,.hs-form fieldset.form-columns-3 input[type=tel].hs-input,.hs-form fieldset.form-columns-3 input[type=url].hs-input,.hs-form fieldset.form-columns-3 input[type=file].hs-input,.hs-form fieldset.form-columns-3 select.hs-input,.hs-form fieldset.form-columns-3 textarea.hs-input{width:100%!important}.hs-form fieldset.form-columns-2 .hs-form-field,.hs-form fieldset.form-columns-3 .hs-form-field{width:100%!important;float:none!important;padding-left:0;padding-right:0}}@media (min-width:480px){.hs-form fieldset.form-columns-2 .hs-form-field{width:50%!important}.hs-form fieldset.form-columns-3 .hs-form-field{width:33.33333333%!important}.hs-form fieldset.form-columns-2 .hs-form-field,.hs-form fieldset.form-columns-3 .hs-form-field{float:left!important;padding-left:12px;padding-right:12px}.hs-form fieldset.form-columns-2 .hs-form-field:first-child,.hs-form fieldset.form-columns-3 .hs-form-field:first-child{padding-left:0}.hs-form fieldset.form-columns-2 .hs-form-field:last-child,.hs-form fieldset.form-columns-3 .hs-form-field:last-child{padding-right:0}}.hs-form .hs-richtext{margin-bottom:35px}.hs-form .inputs-list{list-style:none!important;margin-top:16px;margin-bottom:0;padding:0}.hs-form .inputs-list input[type=radio],.hs-form .inputs-list input[type=checkbox]{margin-right:6px}@media screen and (max-width:479px){.hs-form .inputs-list{margin-top:8px}.hs-form .inputs-list li{margin-bottom:5px}}.hs-form .hs-form-required{margin-left:.25em;color:#fb6868}.hs-form .hs-error-msgs{margin-top:.75rem;font-size:13px;font-weight:700}.hs-form .hs-error-msgs label{color:#fb6868!important}.inverted-ui .hs-form .hs-error-msgs label{color:#6a7889!important}.hs-form .hsformerror{border-radius:0;background:#2c2c37!important;color:#fff!important;border:none}.hs-form .hsformerror em{border-color:#2c2c37 transparent transparent}.hs-form .hsformerror .close-form-error{color:#fff!important;top:3px;right:8px}.hs-form .hsformerror p{position:relative;padding:.1em 0 .1em 0;line-height:1.7em;font-size:13px;color:#fff!important}@media (max-width:480px){.hs-form .actions .primary{width:100%}}.hs-form-booleancheckbox,.hs-form-checkbox,.hs-form-radio{min-height:1em}.hs-form-booleancheckbox label,.hs-form-checkbox label,.hs-form-radio label{display:block;margin:0 0 1em;padding-left:1.65em;position:relative;vertical-align:bottom;line-height:28px}.hs-form-booleancheckbox input[type=radio],.hs-form-booleancheckbox input[type=checkbox],.hs-form-checkbox input[type=radio],.hs-form-checkbox input[type=checkbox],.hs-form-radio input[type=radio],.hs-form-radio input[type=checkbox]{margin:0 .65em 0 0;position:absolute;top:3.2px;left:0;vertical-align:bottom}.hs-form-booleancheckbox input[type=radio],.hs-form-checkbox input[type=radio],.hs-form-radio input[type=radio]{top:2.8px}.hs-form-booleancheckbox span.desc,.hs-form-checkbox span.desc,.hs-form-radio span.desc{display:block;margin-top:8px;color:#6a7889;font-size:85%}.hs_submit{margin-top:24px}.hs-form-field{margin-bottom:35px}.hs-form-field label{display:block;margin:0 0 4px;color:#6a7889;font-weight:400;font-size:14px;line-height:1.6}.inverted-ui .hs-form-field label{color:rgba(255,255,255,.75)}.hs-form-field legend.hs-field-desc{margin:0 0 .5rem;color:#c3c3cd;border:none;font-size:14px}.hs-form-field[class*=privacy][class*=agree] .hs-form-required{display:none}#captcha_wrapper input[type=text]{height:auto!important}.submitted-message{color:#6a7889;font-style:italic;-webkit-transition:all ease-in-out .25s;transition:all ease-in-out .25s;opacity:0;-webkit-transform:translate3d(0,8px,0);transform:translate3d(0,8px,0);-webkit-transition-delay:.75s;transition-delay:.75s}.transitions .submitted-message{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}.inverted-ui .submitted-message{color:rgba(255,255,255,.75)}.fluid-page .hs-form .hs-richtext,.portal-page .hs-form .hs-richtext{margin-bottom:26px}@media screen and (min-width:1200px){.fluid-page .hs-form .hs-richtext,.portal-page .hs-form .hs-richtext{margin-bottom:2.39726027vw}}@media screen and (min-width:1550px){.fluid-page .hs-form .hs-richtext,.portal-page .hs-form .hs-richtext{margin-bottom:37px}}.fluid-page .hs-form .hs-form-required,.portal-page .hs-form .hs-form-required{margin-right:3px}@media screen and (min-width:1200px){.fluid-page .hs-form .hs-form-required,.portal-page .hs-form .hs-form-required{margin-right:.2739726vw}}@media screen and (min-width:1550px){.fluid-page .hs-form .hs-form-required,.portal-page .hs-form .hs-form-required{margin-right:4px}}.fluid-page .hs-form .hs-error-msgs,.portal-page .hs-form .hs-error-msgs{margin-top:.6em}.fluid-page .hs_submit,.portal-page .hs_submit{margin-top:18px}@media screen and (min-width:1200px){.fluid-page .hs_submit,.portal-page .hs_submit{margin-top:1.64383562vw}}@media screen and (min-width:1550px){.fluid-page .hs_submit,.portal-page .hs_submit{margin-top:25px}}.fluid-page .hs-form-field,.portal-page .hs-form-field{margin-bottom:26px}@media screen and (min-width:1200px){.fluid-page .hs-form-field,.portal-page .hs-form-field{margin-bottom:2.39726027vw}}@media screen and (min-width:1550px){.fluid-page .hs-form-field,.portal-page .hs-form-field{margin-bottom:37px}}.fluid-page .hs-form-field label,.portal-page .hs-form-field label{margin-bottom:3px;font-size:12px}@media screen and (min-width:1200px){.fluid-page .hs-form-field label,.portal-page .hs-form-field label{margin-bottom:.2739726vw}}@media screen and (min-width:1550px){.fluid-page .hs-form-field label,.portal-page .hs-form-field label{margin-bottom:4px}}@media screen and (min-width:1200px){.fluid-page .hs-form-field label,.portal-page .hs-form-field label{font-size:1.09589041vw}}@media screen and (min-width:1550px){.fluid-page .hs-form-field label,.portal-page .hs-form-field label{font-size:17px}}.fluid-page .hs-form-field .hs-form-booleancheckbox label,.fluid-page .hs-form-field .hs-form-checkbox label,.fluid-page .hs-form-field .hs-form-radio label,.portal-page .hs-form-field .hs-form-booleancheckbox label,.portal-page .hs-form-field .hs-form-checkbox label,.portal-page .hs-form-field .hs-form-radio label{font-size:17px}@media screen and (min-width:1200px){.fluid-page .hs-form-field .hs-form-booleancheckbox label,.fluid-page .hs-form-field .hs-form-checkbox label,.fluid-page .hs-form-field .hs-form-radio label,.portal-page .hs-form-field .hs-form-booleancheckbox label,.portal-page .hs-form-field .hs-form-checkbox label,.portal-page .hs-form-field .hs-form-radio label{font-size:1.50684932vw}}@media screen and (min-width:1550px){.fluid-page .hs-form-field .hs-form-booleancheckbox label,.fluid-page .hs-form-field .hs-form-checkbox label,.fluid-page .hs-form-field .hs-form-radio label,.portal-page .hs-form-field .hs-form-booleancheckbox label,.portal-page .hs-form-field .hs-form-checkbox label,.portal-page .hs-form-field .hs-form-radio label{font-size:23px}}.fluid-page .hs-form-field.hs_ui_number legend,.portal-page .hs-form-field.hs_ui_number legend{margin-bottom:6px;font-size:12px}@media screen and (min-width:1200px){.fluid-page .hs-form-field.hs_ui_number legend,.portal-page .hs-form-field.hs_ui_number legend{margin-bottom:.54794521vw}}@media screen and (min-width:1550px){.fluid-page .hs-form-field.hs_ui_number legend,.portal-page .hs-form-field.hs_ui_number legend{margin-bottom:8px}}@media screen and (min-width:1200px){.fluid-page .hs-form-field.hs_ui_number legend,.portal-page .hs-form-field.hs_ui_number legend{font-size:1.09589041vw}}@media screen and (min-width:1550px){.fluid-page .hs-form-field.hs_ui_number legend,.portal-page .hs-form-field.hs_ui_number legend{font-size:17px}}.hs_ui_multiple_checkboxes>label{margin-bottom:.625em}.hs-form-booleancheckbox,.hs-form-checkbox{margin-bottom:.3125em!important}.hs-form-booleancheckbox:last-child,.hs-form-checkbox:last-child{margin-bottom:0!important}.hs-form-booleancheckbox label,.hs-form-checkbox label{position:relative;z-index:0;display:inline-block;vertical-align:middle;cursor:pointer;padding-left:0}.hs-form-booleancheckbox input[type=checkbox],.hs-form-checkbox input[type=checkbox]{opacity:0;position:absolute}.hs-form-booleancheckbox input[type=checkbox]+span,.hs-form-checkbox input[type=checkbox]+span{display:inline-block;padding-left:1.75rem;font-size:16px;line-height:21px}.hs-form-booleancheckbox input[type=checkbox]+span:after,.hs-form-booleancheckbox input[type=checkbox]+span:before,.hs-form-checkbox input[type=checkbox]+span:after,.hs-form-checkbox input[type=checkbox]+span:before{content:"";position:absolute;top:.75px;left:0;width:1.25rem;height:1.25rem}@media screen and (min-width:1200px){.hs-form-booleancheckbox input[type=checkbox]+span:after,.hs-form-booleancheckbox input[type=checkbox]+span:before,.hs-form-checkbox input[type=checkbox]+span:after,.hs-form-checkbox input[type=checkbox]+span:before{top:.25px}}.hs-form-booleancheckbox input[type=checkbox]+span:before,.hs-form-checkbox input[type=checkbox]+span:before{display:block;border:1px solid #6a7889;top:1.05px}@media screen and (min-width:1200px){.hs-form-booleancheckbox input[type=checkbox]+span:before,.hs-form-checkbox input[type=checkbox]+span:before{top:.35px}}.hs-form-booleancheckbox input[type=checkbox]+span:after,.hs-form-checkbox input[type=checkbox]+span:after{display:inline-block;z-index:1;background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxzdmcgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTcgMTYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDE3IDE2OyI+DQo8cGF0aCBmaWxsPSIjMDAyODU2IiBkPSJNMTUuOCwzLjZMMTQuMiwyYy0wLjEtMC4xLTAuMy0wLjEtMC41LDBMNi4zLDkuNEwzLjIsNi4zYy0wLjEtMC4xLTAuMy0wLjEtMC41LDBMMS4xLDcuOUMxLDgsMSw4LjIsMS4xLDguNCxsMy4zLDMuM0w2LDEzLjNjMC4xLDAuMSwwLjMsMC4xLDAuNSwwbDEuNi0xLjZsNy42LTcuNkMxNiw0LDE2LDMuOCwxNS44LDMuNkwxNS44LDMuNnoiLz4NCjwvc3ZnPg==);background-repeat:no-repeat;background-position:50%;-webkit-transition:all .15s ease;transition:all .15s ease;-webkit-transform:scale(0) translate(.05em,.1em);transform:scale(0) translate(.05em,.1em);opacity:0}.hs-form-booleancheckbox input[type=checkbox]:checked+span,.hs-form-checkbox input[type=checkbox]:checked+span{color:#0454cc}.hs-form-booleancheckbox input[type=checkbox]:checked+span:before,.hs-form-checkbox input[type=checkbox]:checked+span:before{border-color:#0454cc}.hs-form-booleancheckbox input[type=checkbox]:checked+span:after,.hs-form-checkbox input[type=checkbox]:checked+span:after{-webkit-transform:scale(.7) translate(.05em,.1em);transform:scale(.7) translate(.05em,.1em);opacity:1}.inverted-ui .hs-form-booleancheckbox input[type=checkbox]+span:before,.inverted-ui .hs-form-checkbox input[type=checkbox]+span:before{border-color:rgba(255,255,255,.75)}.inverted-ui .hs-form-booleancheckbox input[type=checkbox]:checked+span,.inverted-ui .hs-form-checkbox input[type=checkbox]:checked+span{color:#fff}.inverted-ui .hs-form-booleancheckbox input[type=checkbox]:checked+span:before,.inverted-ui .hs-form-checkbox input[type=checkbox]:checked+span:before{border-color:#fff;background-color:#fff}.hs_ui_radio>label,[class*="_blog_subscription"]>label{margin-bottom:.625em}.hs-form-radio{margin-bottom:.3125em!important}.hs-form-radio:last-child{margin-bottom:0!important}.hs-form-radio label{position:relative;z-index:0;display:inline-block;vertical-align:middle;cursor:pointer;padding-left:0}.hs-form-radio input[type=radio]{opacity:0;position:absolute}.hs-form-radio input[type=radio]+span{display:inline-block;position:relative;padding-left:1.75rem;font-size:16px;line-height:21px;color:#6a7889}.hs-form-radio input[type=radio]+span:after,.hs-form-radio input[type=radio]+span:before{content:"";position:absolute;top:1px;left:0;width:1.25rem;height:1.25rem;border-radius:50%}@media screen and (min-width:992px){.hs-form-radio input[type=radio]+span:after,.hs-form-radio input[type=radio]+span:before{top:0}}.hs-form-radio input[type=radio]+span:before{display:block;padding:.25em;border:1px solid #6a7889;-webkit-box-shadow:inset 0 0 .2px 20px rgba(255,255,255,0);box-shadow:inset 0 0 .2px 20px rgba(255,255,255,0);-webkit-transition:all .25s ease;transition:all .25s ease}.hs-form-radio input[type=radio]+span:after{display:inline-block;-webkit-transition:all .25s ease;transition:all .25s ease;background-color:#0454cc;border:2px solid rgba(4,84,204,0);-webkit-transform:scale(0);transform:scale(0);opacity:0}.hs-form-radio input[type=radio]:checked+span{color:#0454cc}.hs-form-radio input[type=radio]:checked+span:before{border-color:#0454cc}.hs-form-radio input[type=radio]:checked+span:after{-webkit-transform:scale(.45);transform:scale(.45);opacity:1;border-color:#0454cc}.inverted-ui .hs-form-radio input[type=radio]+span{color:rgba(255,255,255,.75)}.inverted-ui .hs-form-radio input[type=radio]+span:before{background:0 0;border:1px solid rgba(255,255,255,.75);-webkit-box-shadow:inset 0 0 .2px 20px rgba(255,255,255,0);box-shadow:inset 0 0 .2px 20px rgba(255,255,255,0)}.inverted-ui .hs-form-radio input[type=radio]+span:after{background-color:#fff;border:2px solid rgba(255,255,255,0)}.inverted-ui .hs-form-radio input[type=radio]:checked+span{color:#fff}.inverted-ui .hs-form-radio input[type=radio]:checked+span:before{border-color:#fff}.inverted-ui .hs-form-radio input[type=radio]:checked+span:after{border-color:#fff}.fluid-page .hs-form-radio input[type=radio]+span,.portal-page .hs-form-radio input[type=radio]+span{font-size:1em}.fluid-page .hs-form-radio input[type=radio]+span:after,.fluid-page .hs-form-radio input[type=radio]+span:before,.portal-page .hs-form-radio input[type=radio]+span:after,.portal-page .hs-form-radio input[type=radio]+span:before{top:3px}@media screen and (min-width:992px){.fluid-page .hs-form-radio input[type=radio]+span:after,.fluid-page .hs-form-radio input[type=radio]+span:before,.portal-page .hs-form-radio input[type=radio]+span:after,.portal-page .hs-form-radio input[type=radio]+span:before{top:.25em}}input[type=password],input[type=datetime],input[type=datetime-local],input[type=date],input[type=month],input[type=time],input[type=week],input[type=text],input[type=search],input[type=color],input[type=email],input[type=number],input[type=tel],input[type=url],input[type=file],select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:100%;border-radius:0;outline:0;padding:8px 0;background:0 0;border:none;-webkit-transition:all .2s,background-color .4s;transition:all .2s,background-color .4s;border-bottom:1px solid #6a7889;font-size:17px;-webkit-box-shadow:0 1px 0 0 rgba(4,84,204,0);box-shadow:0 1px 0 0 rgba(4,84,204,0)}input[type=password]::-webkit-input-placeholder,input[type=datetime]::-webkit-input-placeholder,input[type=datetime-local]::-webkit-input-placeholder,input[type=date]::-webkit-input-placeholder,input[type=month]::-webkit-input-placeholder,input[type=time]::-webkit-input-placeholder,input[type=week]::-webkit-input-placeholder,input[type=text]::-webkit-input-placeholder,input[type=search]::-webkit-input-placeholder,input[type=color]::-webkit-input-placeholder,input[type=email]::-webkit-input-placeholder,input[type=number]::-webkit-input-placeholder,input[type=tel]::-webkit-input-placeholder,input[type=url]::-webkit-input-placeholder,input[type=file]::-webkit-input-placeholder,select::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#c3c3cd}input[type=password]::-moz-placeholder,input[type=datetime]::-moz-placeholder,input[type=datetime-local]::-moz-placeholder,input[type=date]::-moz-placeholder,input[type=month]::-moz-placeholder,input[type=time]::-moz-placeholder,input[type=week]::-moz-placeholder,input[type=text]::-moz-placeholder,input[type=search]::-moz-placeholder,input[type=color]::-moz-placeholder,input[type=email]::-moz-placeholder,input[type=number]::-moz-placeholder,input[type=tel]::-moz-placeholder,input[type=url]::-moz-placeholder,input[type=file]::-moz-placeholder,select::-moz-placeholder,textarea::-moz-placeholder{color:#c3c3cd}input[type=password]:-ms-input-placeholder,input[type=datetime]:-ms-input-placeholder,input[type=datetime-local]:-ms-input-placeholder,input[type=date]:-ms-input-placeholder,input[type=month]:-ms-input-placeholder,input[type=time]:-ms-input-placeholder,input[type=week]:-ms-input-placeholder,input[type=text]:-ms-input-placeholder,input[type=search]:-ms-input-placeholder,input[type=color]:-ms-input-placeholder,input[type=email]:-ms-input-placeholder,input[type=number]:-ms-input-placeholder,input[type=tel]:-ms-input-placeholder,input[type=url]:-ms-input-placeholder,input[type=file]:-ms-input-placeholder,select:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#c3c3cd}input[type=password]:-moz-placeholder,input[type=datetime]:-moz-placeholder,input[type=datetime-local]:-moz-placeholder,input[type=date]:-moz-placeholder,input[type=month]:-moz-placeholder,input[type=time]:-moz-placeholder,input[type=week]:-moz-placeholder,input[type=text]:-moz-placeholder,input[type=search]:-moz-placeholder,input[type=color]:-moz-placeholder,input[type=email]:-moz-placeholder,input[type=number]:-moz-placeholder,input[type=tel]:-moz-placeholder,input[type=url]:-moz-placeholder,input[type=file]:-moz-placeholder,select:-moz-placeholder,textarea:-moz-placeholder{color:#c3c3cd}input[type=password]:focus,input[type=datetime]:focus,input[type=datetime-local]:focus,input[type=date]:focus,input[type=month]:focus,input[type=time]:focus,input[type=week]:focus,input[type=text]:focus,input[type=search]:focus,input[type=color]:focus,input[type=email]:focus,input[type=number]:focus,input[type=tel]:focus,input[type=url]:focus,input[type=file]:focus,select:focus,textarea:focus{border-color:#0454cc;-webkit-box-shadow:0 1px 0 0 #0454cc;box-shadow:0 1px 0 0 #0454cc}.inverted-ui input[type=password],.inverted-ui input[type=datetime],.inverted-ui input[type=datetime-local],.inverted-ui input[type=date],.inverted-ui input[type=month],.inverted-ui input[type=time],.inverted-ui input[type=week],.inverted-ui input[type=text],.inverted-ui input[type=search],.inverted-ui input[type=color],.inverted-ui input[type=email],.inverted-ui input[type=number],.inverted-ui input[type=tel],.inverted-ui input[type=url],.inverted-ui input[type=file],.inverted-ui select,.inverted-ui textarea{color:#c3c3cd;color:#fff;border-bottom:1px solid rgba(255,255,255,.3)}.inverted-ui input[type=password]::-webkit-input-placeholder,.inverted-ui input[type=datetime]::-webkit-input-placeholder,.inverted-ui input[type=datetime-local]::-webkit-input-placeholder,.inverted-ui input[type=date]::-webkit-input-placeholder,.inverted-ui input[type=month]::-webkit-input-placeholder,.inverted-ui input[type=time]::-webkit-input-placeholder,.inverted-ui input[type=week]::-webkit-input-placeholder,.inverted-ui input[type=text]::-webkit-input-placeholder,.inverted-ui input[type=search]::-webkit-input-placeholder,.inverted-ui input[type=color]::-webkit-input-placeholder,.inverted-ui input[type=email]::-webkit-input-placeholder,.inverted-ui input[type=number]::-webkit-input-placeholder,.inverted-ui input[type=tel]::-webkit-input-placeholder,.inverted-ui input[type=url]::-webkit-input-placeholder,.inverted-ui input[type=file]::-webkit-input-placeholder,.inverted-ui select::-webkit-input-placeholder,.inverted-ui textarea::-webkit-input-placeholder{color:rgba(255,255,255,.3)}.inverted-ui input[type=password]::-moz-placeholder,.inverted-ui input[type=datetime]::-moz-placeholder,.inverted-ui input[type=datetime-local]::-moz-placeholder,.inverted-ui input[type=date]::-moz-placeholder,.inverted-ui input[type=month]::-moz-placeholder,.inverted-ui input[type=time]::-moz-placeholder,.inverted-ui input[type=week]::-moz-placeholder,.inverted-ui input[type=text]::-moz-placeholder,.inverted-ui input[type=search]::-moz-placeholder,.inverted-ui input[type=color]::-moz-placeholder,.inverted-ui input[type=email]::-moz-placeholder,.inverted-ui input[type=number]::-moz-placeholder,.inverted-ui input[type=tel]::-moz-placeholder,.inverted-ui input[type=url]::-moz-placeholder,.inverted-ui input[type=file]::-moz-placeholder,.inverted-ui select::-moz-placeholder,.inverted-ui textarea::-moz-placeholder{color:rgba(255,255,255,.3)}.inverted-ui input[type=password]:-ms-input-placeholder,.inverted-ui input[type=datetime]:-ms-input-placeholder,.inverted-ui input[type=datetime-local]:-ms-input-placeholder,.inverted-ui input[type=date]:-ms-input-placeholder,.inverted-ui input[type=month]:-ms-input-placeholder,.inverted-ui input[type=time]:-ms-input-placeholder,.inverted-ui input[type=week]:-ms-input-placeholder,.inverted-ui input[type=text]:-ms-input-placeholder,.inverted-ui input[type=search]:-ms-input-placeholder,.inverted-ui input[type=color]:-ms-input-placeholder,.inverted-ui input[type=email]:-ms-input-placeholder,.inverted-ui input[type=number]:-ms-input-placeholder,.inverted-ui input[type=tel]:-ms-input-placeholder,.inverted-ui input[type=url]:-ms-input-placeholder,.inverted-ui input[type=file]:-ms-input-placeholder,.inverted-ui select:-ms-input-placeholder,.inverted-ui textarea:-ms-input-placeholder{color:rgba(255,255,255,.3)}.inverted-ui input[type=password]:-moz-placeholder,.inverted-ui input[type=datetime]:-moz-placeholder,.inverted-ui input[type=datetime-local]:-moz-placeholder,.inverted-ui input[type=date]:-moz-placeholder,.inverted-ui input[type=month]:-moz-placeholder,.inverted-ui input[type=time]:-moz-placeholder,.inverted-ui input[type=week]:-moz-placeholder,.inverted-ui input[type=text]:-moz-placeholder,.inverted-ui input[type=search]:-moz-placeholder,.inverted-ui input[type=color]:-moz-placeholder,.inverted-ui input[type=email]:-moz-placeholder,.inverted-ui input[type=number]:-moz-placeholder,.inverted-ui input[type=tel]:-moz-placeholder,.inverted-ui input[type=url]:-moz-placeholder,.inverted-ui input[type=file]:-moz-placeholder,.inverted-ui select:-moz-placeholder,.inverted-ui textarea:-moz-placeholder{color:rgba(255,255,255,.3)}.inverted-ui input[type=password]:focus,.inverted-ui input[type=datetime]:focus,.inverted-ui input[type=datetime-local]:focus,.inverted-ui input[type=date]:focus,.inverted-ui input[type=month]:focus,.inverted-ui input[type=time]:focus,.inverted-ui input[type=week]:focus,.inverted-ui input[type=text]:focus,.inverted-ui input[type=search]:focus,.inverted-ui input[type=color]:focus,.inverted-ui input[type=email]:focus,.inverted-ui input[type=number]:focus,.inverted-ui input[type=tel]:focus,.inverted-ui input[type=url]:focus,.inverted-ui input[type=file]:focus,.inverted-ui select:focus,.inverted-ui textarea:focus{border-color:#0094D2;-webkit-box-shadow:0 1px 0 0 #0094D2;box-shadow:0 1px 0 0 #0094D2}.inverted-ui input[type=password] legend,.inverted-ui input[type=datetime] legend,.inverted-ui input[type=datetime-local] legend,.inverted-ui input[type=date] legend,.inverted-ui input[type=month] legend,.inverted-ui input[type=time] legend,.inverted-ui input[type=week] legend,.inverted-ui input[type=text] legend,.inverted-ui input[type=search] legend,.inverted-ui input[type=color] legend,.inverted-ui input[type=email] legend,.inverted-ui input[type=number] legend,.inverted-ui input[type=tel] legend,.inverted-ui input[type=url] legend,.inverted-ui input[type=file] legend,.inverted-ui select legend,.inverted-ui textarea legend{color:rgba(255,255,255,.75)}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#c3c3cd}input::-moz-placeholder,textarea::-moz-placeholder{color:#c3c3cd}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#c3c3cd}input:-moz-placeholder,textarea:-moz-placeholder{color:#c3c3cd}.inverted-ui input::-webkit-input-placeholder,.inverted-ui textarea::-webkit-input-placeholder{color:rgba(255,255,255,.5)}.inverted-ui input::-moz-placeholder,.inverted-ui textarea::-moz-placeholder{color:rgba(255,255,255,.5)}.inverted-ui input:-ms-input-placeholder,.inverted-ui textarea:-ms-input-placeholder{color:rgba(255,255,255,.5)}.inverted-ui input:-moz-placeholder,.inverted-ui textarea:-moz-placeholder{color:rgba(255,255,255,.5)}input[type=file]{line-height:1;font-size:16px}.hs-floated-label-input{position:relative;display:inline-block;width:100%;font-size:17px}.hs-floated-label-input--initiated input,.hs-floated-label-input--initiated select,.hs-floated-label-input--initiated textarea{-webkit-transition:all .2s,background-color .4s;transition:all .2s,background-color .4s}.hs-floated-label-input--initiated legend{-webkit-transition:all .2s,background-color .4s;transition:all .2s,background-color .4s}.hs-floated-label-input--initiated>label{-webkit-transition:all .2s,background-color .4s;transition:all .2s,background-color .4s}.hs-floated-label-input input,.hs-floated-label-input select,.hs-floated-label-input textarea{outline:0;padding:8px 0;background:0 0;border:none;border-bottom:1px solid #6a7889;cursor:pointer}.hs-floated-label-input input:focus,.hs-floated-label-input select:focus,.hs-floated-label-input textarea:focus{border-color:#0454cc}.hs-floated-label-input input::-webkit-input-placeholder,.hs-floated-label-input textarea::-webkit-input-placeholder{color:#c3c3cd}.hs-floated-label-input input::-moz-placeholder,.hs-floated-label-input textarea::-moz-placeholder{color:#c3c3cd}.hs-floated-label-input input:-ms-input-placeholder,.hs-floated-label-input textarea:-ms-input-placeholder{color:#c3c3cd}.hs-floated-label-input input:-moz-placeholder,.hs-floated-label-input textarea:-moz-placeholder{color:#c3c3cd}.hs-floated-label-input legend{margin-top:8px!important;margin-bottom:0!important;opacity:0}.hs-floated-label-input--float-on-value .hs-floated-label-placeholder,.hs-floated-label-input>label{display:inline-block;padding:0;padding-left:inherit;margin:0;position:absolute;left:0;top:0;color:#6a7889;font-size:17px;line-height:1.68181818;font-weight:400;background:rgba(255,255,255,0);pointer-events:none;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateY(8px);transform:translateY(8px)}.fluid-layout .hs-floated-label-input--float-on-value .hs-floated-label-placeholder,.fluid-layout .hs-floated-label-input>label,.portal-page .hs-floated-label-input--float-on-value .hs-floated-label-placeholder,.portal-page .hs-floated-label-input>label{font-size:13px}@media screen and (min-width:1200px){.fluid-layout .hs-floated-label-input--float-on-value .hs-floated-label-placeholder,.fluid-layout .hs-floated-label-input>label,.portal-page .hs-floated-label-input--float-on-value .hs-floated-label-placeholder,.portal-page .hs-floated-label-input>label{font-size:1.16438356vw}}@media screen and (min-width:1550px){.fluid-layout .hs-floated-label-input--float-on-value .hs-floated-label-placeholder,.fluid-layout .hs-floated-label-input>label,.portal-page .hs-floated-label-input--float-on-value .hs-floated-label-placeholder,.portal-page .hs-floated-label-input>label{font-size:18px}}.hs-floated-label-input.focused>label,.hs-floated-label-input.pinned>label{-webkit-transform:translateY(-16px) scale(.85);transform:translateY(-16px) scale(.85);z-index:1}.hs-floated-label-input.focused legend,.hs-floated-label-input.pinned legend{opacity:1}.hs-floated-label-input.focused>label{color:#0454cc}.hs-floated-label-input--float-on-value .hs-floated-label-placeholder{position:absolute;top:0;left:0;-webkit-transition-delay:.2s;transition-delay:.2s}.hs-floated-label-input--float-on-value.focused>label,.hs-floated-label-input--float-on-value>label{opacity:0;-webkit-transform:translateY(-4px) scale(.75);transform:translateY(-4px) scale(.75)}.hs-floated-label-input--float-on-value.has-value .hs-floated-label-placeholder,.hs-floated-label-input--float-on-value.pinned .hs-floated-label-placeholder{opacity:0;-webkit-transition-delay:0s;transition-delay:0s}.hs-floated-label-input--float-on-value.has-value>label,.hs-floated-label-input--float-on-value.pinned>label{-webkit-transform:translateY(-16px) scale(.75);transform:translateY(-16px) scale(.75);opacity:1}.hs-floated-label-input--float-on-value.has-value legend,.hs-floated-label-input--float-on-value.pinned legend{opacity:1}.inverted-ui .hs-floated-label-input input::-webkit-input-placeholder,.inverted-ui .hs-floated-label-input textarea::-webkit-input-placeholder{color:rgba(255,255,255,.5)}.inverted-ui .hs-floated-label-input input::-moz-placeholder,.inverted-ui .hs-floated-label-input textarea::-moz-placeholder{color:rgba(255,255,255,.5)}.inverted-ui .hs-floated-label-input input:-ms-input-placeholder,.inverted-ui .hs-floated-label-input textarea:-ms-input-placeholder{color:rgba(255,255,255,.5)}.inverted-ui .hs-floated-label-input input:-moz-placeholder,.inverted-ui .hs-floated-label-input textarea:-moz-placeholder{color:rgba(255,255,255,.5)}.inverted-ui .hs-floated-label-input input,.inverted-ui .hs-floated-label-input select,.inverted-ui .hs-floated-label-input textarea{color:#fff;border-bottom:1px solid rgba(255,255,255,.3)}.inverted-ui .hs-floated-label-input input:focus,.inverted-ui .hs-floated-label-input select:focus,.inverted-ui .hs-floated-label-input textarea:focus{border-color:#0094D2;-webkit-box-shadow:0 1px 0 0 #0094D2;box-shadow:0 1px 0 0 #0094D2}.inverted-ui .hs-floated-label-input legend{color:#fff}.inverted-ui .hs-floated-label-input.focused>label{color:rgba(255,255,255,.75)}.hs_ui_dropdown>label{margin-bottom:.625em}.Select{display:inline-block;width:100%;padding:0;padding-right:0;position:relative;background:0 0;-webkit-box-shadow:inset 0 0 0 #fff;box-shadow:inset 0 0 0 #fff;border-bottom:1px solid #6a7889}.Select:after{content:"";position:absolute;width:1em;top:1px;bottom:1px;right:1px;background:0 0;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAPCAYAAADphp8SAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAMJJREFUeNpinDRlugMDAwMIUwRYgPgBEOcDsQAlBjHl5WSCDJpIoYM2MMJYQC/eB1IKZBjyAYgNmZAEEsl0zUSQrxiRRYCuWg+kAkgw5ALQEENwGKFJJEKdSiwohAc2sijQdJAhjUQasgCo/gBWg6CGTQA5mYgALkSJfhwKCQV8I9T1+A0CKgK5aAIOQw5AXc1AjIsYoGH1AV8AE2UQ1OnomiZAXctAiotAhi0AeQXKfYAvRpmIiGZYwBeiBzAyAAgwAO6ENKpThEdEAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-size:9px 8px;background-position:center right;pointer-events:none}.Select select{border-bottom:none}.inverted-ui .Select{background:0 0;color:#fff}.inverted-ui .Select option{color:#000}.inverted-ui .Select .no-value{color:rgba(255,255,255,.6)}.inverted-ui .Select:after{background-color:inherit}.Select-input,select{width:100%;margin:0;background:0 0;border:none;outline:0;color:inherit;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:.3125rem 0 .625rem;padding-right:1.25em}.Select-input:focus,select:focus{outline:0}.Select-input:disabled,select:disabled{opacity:.5;cursor:not-allowed}.Select-input:disabled:hover,select:disabled:hover{-webkit-box-shadow:none;box-shadow:none}select{border-bottom:1px solid #6a7889}.inverted-ui select{border-color:rgba(255,255,255,.75)}
/*----------------------------------------------------------------------------------*/
/*------------------- Responsive Grid Mixins ---------------------------------------*/
/*----------------------------------------------------------------------------------*/
/*
  
  These mixins help creating a responsive layout where the inner content gets a 
  max width and also takes the outer margins (side gutters) into account so that 
  the content always has spacing at the sides no matter viewport width.

  You can either set only the responsive setSideGutters mixin to only apply
  the gutters, or one of the container width mixins which sets both the gutters
  and max widths.
  
  If you want to use the mixins on a Boostrap .container element, be sure to use
  .setBootstrapContainerWidth() which takes the negative margins into account.

 */
/*--- Set side gutters ---*/
/*--- Set inner container width + paddings ---*/
/*--- Use this one on Bootstraps .container ---*/
article > .container {
  padding-left: 30px;
  padding-right: 30px;
}
@media (min-width: 480px) {
  article > .container {
    padding-left: 30px;
  }
}
@media (min-width: 768px) {
  article > .container {
    padding-left: 50px;
  }
}
@media (min-width: 480px) {
  article > .container {
    padding-right: 30px;
  }
}
@media (min-width: 768px) {
  article > .container {
    padding-right: 50px;
  }
}
@media (min-width: 768px) {
  article > .container {
    float: none !important;
    width: 100%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
  }
}
html {
  font-size: 16px;
  font-family: GalanoGrotesqueRegular, Arial, sans-serif;
}
body {
  font-size: 1.0625rem;
  line-height: 1.5rem;
  font-weight: normal;
  font-family: GalanoGrotesqueRegular, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body:after {
  content: none;
}
.hero-title {
  font: 48px/52px GalanoGrotesqueBold, Arial, sans-serif;
  padding-bottom: 2rem;
}
.hero-title strong {
  font-family: GalanoGrotesqueRegular, Arial, sans-serif;
  font-weight: bold;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
    line-height: 3rem;
  }
}
@media (min-width: 992px) {
  .hero-title {
    padding-bottom: 3rem;
    font-size: 3rem;
    line-height: 3.5rem;
  }
}
@media (min-width: 992px) and (max-height: 799px) {
  .hero-title {
    padding-bottom: 2rem;
    font-size: 2.25rem;
    line-height: 3rem;
  }
}
.hero-title-centered {
  font-family: GalanoGrotesqueLight, "Arial Light", Arial, sans-serif;
  font-size: 1.6875rem;
  line-height: 2.25rem;
  padding-bottom: 1.6875rem;
  font-weight: 200;
}
.hero-title-centered strong {
  font-family: GalanoGrotesqueRegular, Arial, sans-serif;
  font-weight: bold;
}
@media (min-width: 992px) {
  .hero-title-centered {
    font-size: 2.25rem;
    line-height: 3rem;
    padding-bottom: 2.25rem;
  }
}
h1,
.h1-style {
  font-family: GalanoGrotesqueLight, "Arial Light", Arial, sans-serif;
  font-size: 2.25rem;
  line-height: 3rem;
  font-weight: 200;
  padding-bottom: 2.3125rem;
}
h1 strong,
.h1-style strong {
  font-family: GalanoGrotesqueRegular, Arial, sans-serif;
  font-weight: bold;
}
h2,
.h2-style,
.site-selector-overlay .go-to-global-container .global-information-container .title {
  font-family: GalanoGrotesqueLight, "Arial Light", Arial, sans-serif;
  font-size: 1.375rem;
  line-height: 2rem;
  font-weight: 200;
  padding-bottom: 1.375rem;
  margin-bottom: 1.875rem;
}
h2 strong,
.h2-style strong,
.site-selector-overlay .go-to-global-container .global-information-container .title strong {
  font-family: GalanoGrotesqueRegular, Arial, sans-serif;
  font-weight: bold;
}
@media (min-width: 992px) {
  h2,
  .h2-style,
  .site-selector-overlay .go-to-global-container .global-information-container .title {
    font-size: 1.6875rem;
    line-height: 2rem;
    padding-bottom: 1.625rem;
  }
}
h3,
.h3-style {
  font-size: 1.0625rem;
  line-height: 1.5rem;
  font-weight: bold;
  padding-bottom: 1.375rem;
}
h4,
.h4-style {
  font-size: 1.0625rem;
  line-height: 1.5rem;
  font-weight: bold;
  padding-bottom: 1.375rem;
}
a {
  color: #0056c4;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
a:hover,
a:focus,
a:active {
  color: #2c2c37;
  text-decoration: none;
}
a:active {
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
}
h1.bordered {
  position: relative;
}
h1.bordered:before {
  content: "\00a0";
  width: 4.375rem;
  height: 2px;
  background-color: #2c2c37;
  position: absolute;
  bottom: 0;
}
@media (min-width: 480px) {
  h1.bordered:before {
    height: 3px;
  }
}
@media (min-width: 992px) {
  h1.bordered:before {
    width: 7rem;
  }
}
h2.bordered,
h3.bordered {
  position: relative;
}
h2.bordered:before,
h3.bordered:before {
  content: "\00a0";
  width: 3.875rem;
  height: 2px;
  background-color: #2c2c37;
  position: absolute;
  bottom: 0;
}
@media (max-width: 991px) {
  h2.bordered:before,
  h3.bordered:before {
    width: 3rem;
  }
}
.text-large {
  font-size: 1.375rem;
  line-height: 2rem;
  font-weight: normal;
}
.text-small {
  font-size: 0.9375rem;
  line-height: 1.375rem;
  font-weight: normal;
}
.inv-arrow-link,
.background-black .arrow-link,
.background-black .learn-more-link {
  position: relative;
  display: inline-block;
  padding-right: 2.25rem;
  color: #0056c4;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  font-weight: normal;
  color: #0090d1;
}
.inv-arrow-link:after,
.background-black .arrow-link:after,
.background-black .learn-more-link:after {
  position: absolute;
  right: 5px;
  top: 1px;
  content: '';
  background-image: url('/Static/img/Icons/caret-right-bold.svg');
  background-repeat: no-repeat;
  background-size: 1.2rem;
  width: 1.2rem;
  height: 1.2rem;
}
.inv-arrow-link:hover,
.inv-arrow-link:focus,
.inv-arrow-link:active,
.background-black .arrow-link:hover,
.background-black .arrow-link:focus,
.background-black .arrow-link:active,
.background-black .learn-more-link:hover,
.background-black .learn-more-link:focus,
.background-black .learn-more-link:active {
  text-decoration: none;
}
.inv-arrow-link:hover,
.inv-arrow-link:focus,
.background-black .arrow-link:hover,
.background-black .arrow-link:focus,
.background-black .learn-more-link:hover,
.background-black .learn-more-link:focus {
  color: #2c2c37;
}
.inv-arrow-link:active,
.background-black .arrow-link:active,
.background-black .learn-more-link:active {
  color: #0056c4;
}
.touch .inv-arrow-link:hover,
.touch .inv-arrow-link:focus,
.touch .background-black .arrow-link:hover,
.touch .background-black .arrow-link:focus,
.touch .background-black .learn-more-link:hover,
.touch .background-black .learn-more-link:focus {
  color: #0056c4;
}
.touch .inv-arrow-link:active,
.touch .background-black .arrow-link:active,
.touch .background-black .learn-more-link:active {
  color: #2c2c37;
}
.inv-arrow-link:after,
.background-black .arrow-link:after,
.background-black .learn-more-link:after {
  background-image: url('/Static/img/Icons/arrow-right-long-neg.svg');
  background-size: 1.5rem;
}
.learn-more-link {
  position: relative;
  display: inline-block;
  padding-right: 2.25rem;
  color: #0056c4;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  font-weight: normal;
}
.learn-more-link:after {
  position: absolute;
  right: 5px;
  top: 1px;
  content: '';
  background-image: url('/Static/img/Icons/caret-right-bold.svg');
  background-repeat: no-repeat;
  background-size: 1.2rem;
  width: 1.2rem;
  height: 1.2rem;
}
.learn-more-link:hover,
.learn-more-link:focus,
.learn-more-link:active {
  text-decoration: none;
}
.learn-more-link:hover,
.learn-more-link:focus {
  color: #2c2c37;
}
.learn-more-link:active {
  color: #0056c4;
}
.touch .learn-more-link:hover,
.touch .learn-more-link:focus {
  color: #0056c4;
}
.touch .learn-more-link:active {
  color: #2c2c37;
}
a.close-icon-link {
  display: inline-block;
  margin: -0.5rem;
  padding: 0.5rem;
  line-height: 0;
  border-radius: 50%;
  background-color: #e6eef9;
  -webkit-transition: all ease-in-out 0.15s;
  transition: all ease-in-out 0.15s;
}
a.close-icon-link:hover,
a.close-icon-link:active {
  background-color: #e7e7eb;
}
.close-icon {
  display: inline-block;
  background: url('/Static/img/Icons/cross-bold.svg') no-repeat;
  background-size: 1.125rem auto;
  width: 1.125rem;
  height: 1.125rem;
}
@media (min-width: 992px) {
  .close-icon {
    background-size: 1.5rem auto;
    width: 1.5rem;
    height: 1.5rem;
  }
}
h2.section-heading {
  margin-top: 0;
  margin-bottom: 2.5rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(57, 57, 57, 0.3);
}
/*------------------------------------------------*\
    Post Typography
    ---------------
    Applies more advanced typography
\*------------------------------------------------*/
.post-typography {
  color: #393939;
  /*----------------------------------------*\
    LISTS
  \*----------------------------------------*/
  /* Custom numbers/bullets in body text */
  /*------------------------------------------------*\
      Column Block tweaks
  \*------------------------------------------------*/
}
@media (max-width: 991px) {
  .post-typography p,
  .post-typography ul,
  .post-typography ol {
    font-size: 0.9375rem;
    line-height: 1.5rem;
  }
}
.post-typography p {
  margin: 0 0 1rem;
}
.post-typography p + ul,
.post-typography p + ol {
  margin-top: 1.75rem;
}
.post-typography small {
  display: inline-block;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  font-size: 0.8125rem;
  line-height: 1.25rem;
}
.post-typography blockquote {
  padding: 0;
  border: none;
  position: relative;
}
.post-typography blockquote,
.post-typography blockquote p,
.post-typography blockquote em,
.post-typography blockquote i {
  font-family: GalanoGrotesqueLight, "Arial Light", Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-style: normal;
  color: #393939;
}
@media (min-width: 768px) {
  .post-typography blockquote,
  .post-typography blockquote p,
  .post-typography blockquote em,
  .post-typography blockquote i {
    font-size: 1.375rem;
    line-height: 2rem;
  }
}
.post-typography blockquote:before {
  display: block;
  line-height: 2rem;
  content: '\201c';
  font-size: 3.5rem;
  color: #c3c3cd;
}
.theme-ecp .post-typography blockquote:before {
  color: #5cc4e8;
}
.theme-spectaclewearers .post-typography blockquote:before {
  color: #f4ff00;
}
@media (min-width: 1400px) {
  .post-typography blockquote:before {
    position: absolute;
    top: 0.8125rem;
    left: -2rem;
  }
}
.post-typography blockquote cite {
  display: block;
  margin-top: 1.5rem;
  font: 0.9375rem GalanoGrotesqueRegular, Arial, sans-serif;
  line-height: 1.25rem;
}
.post-typography ul + *,
.post-typography ol + * {
  margin-top: 1.75rem;
}
.post-typography ul li,
.post-typography ol li {
  margin-bottom: 1rem;
}
.post-typography ul li:last-child,
.post-typography ol li:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .post-typography ul li,
  .post-typography ol li {
    margin-bottom: 0.75rem;
  }
  .post-typography ul li:last-child,
  .post-typography ol li:last-child {
    margin-bottom: 0;
  }
}
.post-typography ul,
.post-typography ol {
  padding: 0;
}
.post-typography ul li > strong:first-child,
.post-typography ol li > strong:first-child {
  display: inline-block;
}
.post-typography ol {
  counter-reset: item;
}
.post-typography ol li {
  position: relative;
  display: block;
  padding-left: 2.25rem;
}
.post-typography ol li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: counter(item) ". ";
  counter-increment: item;
  color: #0056c4;
  font-family: GalanoGrotesqueLight, "Arial Light", Arial, sans-serif;
  font-weight: normal;
}
.post-typography ul {
  list-style: none;
}
.post-typography ul li {
  position: relative;
  padding-left: 2.25rem;
}
.post-typography ul li:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  margin: -1px 0;
  background-color: #393939;
  background: url('/Static/img/Icons/checkmark.svg') no-repeat;
  background-size: 1.5rem auto;
  width: 1.5rem;
  height: 1.5rem;
}
.column-block .post-typography p + ul,
.column-block .post-typography p + ol {
  margin-top: 1.375rem;
}
.column-block .post-typography ul + *,
.column-block .post-typography ol + * {
  margin-top: 1.375rem;
}
.column-block .post-typography ul li,
.column-block .post-typography ol li {
  margin-bottom: 0.75rem;
}
.column-block .post-typography ul li:last-child,
.column-block .post-typography ol li:last-child {
  margin-bottom: 0;
}
.column-block .post-typography ul li:before {
  background-size: 1.35rem;
}
/*------------------------------------------------*\
    Notifications
\*------------------------------------------------*/
.notification-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 250;
}
@media (min-width: 992px) {
  .notification-wrapper {
    padding-left: 50px;
    padding-right: 50px;
    left: auto;
    bottom: 40px;
  }
}
.sticky-footer-enabled .notification-wrapper {
  bottom: 76px;
}
@media (min-width: 992px) {
  .sticky-footer-enabled .notification-wrapper {
    bottom: 108px;
  }
}
.notification {
  background-color: rgba(44, 44, 55, 0.94);
  -webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.25);
  color: #e7e7eb;
  font-size: 0.6875rem;
  line-height: 0.875rem;
  opacity: 0;
  -webkit-transform: translate3d(0, 10px, 0);
          transform: translate3d(0, 10px, 0);
  display: none;
  /*------------------------------------------------*\
      > Desktop
  \*------------------------------------------------*/
}
.transitions .notification {
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
.notification.show {
  display: block;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}
.notification.dismissed {
  height: 0 !important;
  overflow: hidden;
  pointer-events: none;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
}
.menu-expanded .notification {
  -webkit-transform: translate3d(0, 10px, 0);
          transform: translate3d(0, 10px, 0);
  opacity: 0;
}
@media (min-width: 480px) {
  .notification {
    font-size: 0.75rem;
    line-height: 1.0625rem;
  }
}
@media (min-width: 768px) {
  .notification {
    font-size: 0.8125rem;
    line-height: 1.0625rem;
  }
}
.notification--secondary {
  background-color: rgba(57, 57, 57, 0.94);
}
.notification__inner {
  position: relative;
  padding-right: 2rem;
}
.notification a {
  color: #e7e7eb;
  text-decoration: underline;
}
.notification a:hover,
.notification a:active {
  text-decoration: none;
}
.notification__message {
  display: table;
  width: 100%;
}
.notification__message > div {
  display: table-cell;
  vertical-align: middle;
  padding: 0.625rem 0.75rem;
}
.notification__message .notification__icon {
  width: 4rem;
  padding-right: 0 !important;
  text-align: center;
}
.notification__message .notification__icon .icon {
  top: 3px;
}
.notification__message .notification__desc {
  width: auto;
  padding-left: 0 !important;
}
.notification__close {
  position: absolute;
  top: 0;
  right: 0;
}
.notification__close a {
  display: inline-block;
  padding: 1rem;
  opacity: .8;
}
.notification__close a:hover,
.notification__close a:active {
  opacity: 1;
}
.notification .icon {
  display: inline-block;
  position: relative;
  background-repeat: no-repeat;
}
.notification .icon--global {
  background-image: url('/Static/img/Icons/global-icon.svg');
  background-size: auto 2.125rem;
  width: 2rem;
  height: 2.125rem;
}
.notification .icon--notice {
  background-image: url('/Static/img/Icons/notice-icon.svg');
  background-size: 1.625rem auto;
  width: 1.625rem;
  height: 1.625rem;
}
.notification .icon--close {
  background-image: url('/Static/img/Icons/close-icon-small-white.svg');
  background-size: 1rem auto;
  width: 1rem;
  height: 1rem;
}
@media (min-width: 992px) {
  .notification {
    max-width: 37.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .notification__inner {
    padding-right: 4rem;
  }
  .notification__message .notification__icon {
    width: 4.5rem;
  }
  .notification .icon--global {
    background-size: auto 2.375rem;
    width: 2.25rem;
    height: 2.375rem;
  }
  .notification .icon--notice {
    background-size: 1.875rem auto;
    width: 1.875rem;
    height: 1.875rem;
  }
  .notification .icon--close {
    background-size: 1rem auto;
    width: 1rem;
    height: 1rem;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .notification__message > div {
    padding: 1.0625rem 1rem;
  }
}
.block {
  padding-top: 4rem;
  padding-bottom: 4.5rem;
  color: #393939;
}
@media (min-width: 480px) {
  .block {
    padding-top: 5rem;
  }
}
@media (min-width: 992px) {
  .block {
    padding-top: 6rem;
  }
}
@media (min-width: 480px) {
  .block {
    padding-bottom: 5.5rem;
  }
}
@media (min-width: 992px) {
  .block {
    padding-bottom: 6.5rem;
  }
}
.block h1,
.block h2,
.block h3 {
  margin-top: 0;
  color: #2c2c37;
  position: relative;
}
.block h1:before,
.block h2:before,
.block h3:before {
  content: "\00a0";
  width: 3.875rem;
  height: 2px;
  background-color: #2c2c37;
  position: absolute;
  bottom: 0;
}
@media (max-width: 991px) {
  .block h1:before,
  .block h2:before,
  .block h3:before {
    width: 3rem;
  }
}
.block .edit-message {
  font-size: 1.25rem;
  padding: 0.25rem 0.625rem;
}
.block .learn-more-link {
  margin-top: 1rem;
}
@media (max-width: 992px) {
  .block .text-container {
    margin-top: 2rem;
  }
}
.block.block-spacing-top-full {
  padding-top: 4rem;
}
@media (min-width: 480px) {
  .block.block-spacing-top-full {
    padding-top: 5rem;
  }
}
@media (min-width: 992px) {
  .block.block-spacing-top-full {
    padding-top: 6rem;
  }
}
.block.block-spacing-top-half {
  padding-top: 2.5rem;
}
@media (min-width: 480px) {
  .block.block-spacing-top-half {
    padding-top: 3.5rem;
  }
}
@media (min-width: 992px) {
  .block.block-spacing-top-half {
    padding-top: 4.5rem;
  }
}
.block.block-spacing-top-none {
  padding-top: 0;
}
@media (min-width: 992px) {
  .block.block-spacing-top-none {
    padding-top: 0;
  }
}
.block.block-spacing-bottom-full {
  padding-bottom: 4.5rem;
}
@media (min-width: 480px) {
  .block.block-spacing-bottom-full {
    padding-bottom: 5.5rem;
  }
}
@media (min-width: 992px) {
  .block.block-spacing-bottom-full {
    padding-bottom: 6.5rem;
  }
}
.block.block-spacing-bottom-half {
  padding-bottom: 1.6875rem;
}
@media (min-width: 480px) {
  .block.block-spacing-bottom-half {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 992px) {
  .block.block-spacing-bottom-half {
    padding-bottom: 3rem;
  }
}
.block.block-spacing-bottom-none {
  padding-bottom: 0;
}
@media (min-width: 992px) {
  .block.block-spacing-bottom-none {
    padding-bottom: 0;
  }
}
.block .hubspotscript {
  height: 42px;
  position: absolute;
  bottom: 0;
  /*margin-bottom: -2rem;*/
}
.block .hubspotscript .hs-cta-wrapper {
  display: block;
  /*margin-top: 2.5rem;*/
}
.block .hubspotscript .hs-cta-wrapper .cta_button.cThemeECP {
  font-size: 16px !important;
  /*margin-top: 35px;*/
}
.block .content-block .hubspotscript {
  position: static;
  margin-top: 1rem;
}
html.in-edit .block-edit-properties {
  display: none;
}
.contact-us {
  padding-bottom: 3.5rem;
}
@media (min-width: 992px) {
  .contact-us {
    overflow: hidden;
    padding-bottom: 6.5rem;
  }
}
.contact-us .banner {
  padding-top: 5rem;
  background-color: #e7e7eb;
}
@media (min-width: 992px) {
  .contact-us .banner {
    padding-top: 7rem;
  }
}
.contact-us .banner .title {
  display: none;
  font: 48px/52px GalanoGrotesqueBold, Arial, sans-serif;
  padding-bottom: 2rem;
  position: relative;
  margin-bottom: 0;
  margin-top: 0;
}
.contact-us .banner .title strong {
  font-family: GalanoGrotesqueRegular, Arial, sans-serif;
  font-weight: bold;
}
@media (min-width: 768px) {
  .contact-us .banner .title {
    font-size: 2.25rem;
    line-height: 3rem;
  }
}
@media (min-width: 992px) {
  .contact-us .banner .title {
    padding-bottom: 3rem;
    font-size: 3rem;
    line-height: 3.5rem;
  }
}
@media (min-width: 992px) and (max-height: 799px) {
  .contact-us .banner .title {
    padding-bottom: 2rem;
    font-size: 2.25rem;
    line-height: 3rem;
  }
}
.contact-us .banner .title:before {
  content: "\00a0";
  width: 4.375rem;
  height: 2px;
  background-color: #2c2c37;
  position: absolute;
  bottom: 0;
}
@media (min-width: 480px) {
  .contact-us .banner .title:before {
    height: 3px;
  }
}
@media (min-width: 992px) {
  .contact-us .banner .title:before {
    width: 7rem;
  }
}
@media (min-width: 992px) {
  .contact-us .banner .title {
    display: block;
  }
}
.contact-us .hubspot-form-container {
  padding-top: 3.5rem;
}
@media (min-width: 992px) {
  .contact-us .hubspot-form-container {
    padding-top: 7rem;
  }
}
@media (min-width: 992px) {
  .contact-us .submitted-message {
    font-size: 1.25rem;
  }
}
.contact-us .two-column-text-block {
  padding-bottom: 2rem !important;
}
@media (max-width: 991px) {
  .contact-us .two-column-text-block {
    padding-top: 4rem !important;
  }
}
@media (min-width: 480px) {
  .contact-us .two-column-text-block {
    padding-bottom: 2rem !important;
  }
}
@media (min-width: 992px) {
  .contact-us .two-column-text-block {
    padding-bottom: 2rem !important;
  }
}
.contact-us .two-column-text-block .container {
  padding-left: 0;
}
.contact-us .two-column-text-block .header-column,
.contact-us .two-column-text-block .text-column {
  float: none;
}
.contact-us .two-column-text-block .header-column {
  min-width: 230px;
  margin-bottom: 2rem;
}
.contact-us .two-column-text-block .text-column {
  margin-left: 0;
}
@media (min-width: 480px) {
  .contact-us .two-column-text-block .text-column {
    min-width: 360px;
  }
}
.contact-us .contact-nav {
  position: relative;
  right: 0;
  margin-top: -1.875rem;
  z-index: 1;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.2);
}
@media (min-width: 992px) {
  .contact-us .contact-nav {
    float: right;
    margin-left: 0;
    margin-right: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    margin-top: -6rem;
  }
  .contact-us .contact-nav:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 9999px;
    height: 100%;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.2);
    z-index: -1;
  }
}
.contact-us .contact-nav .nav-toggle {
  position: relative;
  padding: 1.0625rem 0.625rem 0.9375rem;
  cursor: pointer;
}
.contact-us .contact-nav .nav-toggle:after {
  position: absolute;
  content: '';
  background-image: url('/Static/img/Icons/caret-down-bold.svg');
  background-size: 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  right: 0.6875rem;
  top: 1.3125rem;
}
@media (min-width: 992px) {
  .contact-us .contact-nav .nav-toggle {
    cursor: default;
    padding: 3.5rem 2.875rem 0;
  }
  .contact-us .contact-nav .nav-toggle:after {
    display: none;
  }
}
@media (min-width: 992px) {
  .contact-us .contact-nav .nav-toggle {
    display: none;
  }
}
@media (min-width: 992px) {
  .contact-us .contact-nav .pages {
    margin-top: 0;
  }
}
.contact-us .contact-nav .title {
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  font-size: 1.0625rem;
  font-weight: normal;
}
.contact-us .contact-nav .title:after {
  display: block;
  content: '';
  height: 2px;
  width: 100%;
  background-color: #c3c3cd;
  margin-top: 1rem;
}
@media (min-width: 992px) {
  .contact-us .contact-nav .title {
    margin-bottom: 1rem;
    margin-top: 0;
    padding-right: 2.875rem;
    padding-left: 2.875rem;
    font-size: 1.25rem;
    opacity: 1;
  }
}
.contact-us .contact-nav .theme-ecp .title:after {
  background-color: #5cc4e8;
}
.contact-us .contact-nav .theme-spectaclewearers .title:after {
  background-color: #f4ff00;
}
.contact-us .contact-nav ul {
  list-style: none;
  margin: 0;
}
@media (min-width: 992px) {
  .contact-us .contact-nav ul {
    display: block;
    padding: 0 2.875rem 2.5rem;
  }
}
.contact-us .contact-nav ul li a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #393939;
  border-bottom: 1px solid rgba(57, 57, 57, 0.2);
}
.contact-us .contact-nav ul li a:hover,
.contact-us .contact-nav ul li a:focus,
.contact-us .contact-nav ul li a:active {
  text-decoration: none;
  color: #2c2c37;
}
.touch .contact-us .contact-nav ul li a:hover,
.touch .contact-us .contact-nav ul li a:focus {
  color: #393939;
}
.touch .contact-us .contact-nav ul li a:active {
  color: #2c2c37;
}
.contact-us .contact-nav ul li.active a {
  pointer-events: none;
  color: #2c2c37;
}
.contact-us .contact-nav .pages > div:last-child ul {
  padding-bottom: 0;
}
@media (max-width: 992px) {
  .contact-us .contact-nav {
    margin-left: 5px;
    width: calc(100% - 5px);
    padding-top: 2rem;
    padding-bottom: 2.5rem;
    /*------------------------------------------------*\
                Nav has been selected
            \*------------------------------------------------*/
  }
  .contact-us .contact-nav .nav-toggle {
    display: none;
    padding-top: 2.5rem;
    padding-bottom: 1.875rem;
  }
  .contact-us .contact-nav .nav-toggle,
  .contact-us .contact-nav ul {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    -webkit-transition-delay: 0.25s;
            transition-delay: 0.25s;
  }
  .contact-us .contact-nav ul {
    padding-top: 0;
    padding-bottom: 2rem;
  }
  .contact-us .contact-nav.nav-selected {
    height: 56px;
    padding-top: 0;
    padding-bottom: 2.5rem;
    overflow: hidden;
  }
  .contact-us .contact-nav.nav-selected,
  .contact-us .contact-nav.nav-selected .nav-toggle:after,
  .contact-us .contact-nav.nav-selected .title,
  .contact-us .contact-nav.nav-selected .selected-title,
  .contact-us .contact-nav.nav-selected ul {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-transition: all ease-in-out 0.25s;
    transition: all ease-in-out 0.25s;
  }
  .contact-us .contact-nav.nav-selected .nav-toggle {
    display: block;
  }
  .contact-us .contact-nav.nav-selected .pages {
    margin-top: -2.125rem;
  }
  .contact-us .contact-nav.nav-selected .title {
    opacity: 0;
  }
  .contact-us .contact-nav.nav-selected ul {
    display: block;
    opacity: 0;
    pointer-events: none;
  }
  .contact-us .contact-nav.nav-selected .selected-title {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 56px;
    width: 100%;
    padding: 1rem 0.625rem;
    margin: 0;
    -webkit-transition-duration: 0.15s;
            transition-duration: 0.15s;
  }
  .contact-us .contact-nav.nav-selected.expanded .nav-toggle:after {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .contact-us .contact-nav.nav-selected.expanded ul {
    opacity: 1;
    pointer-events: auto;
  }
  .contact-us .contact-nav.nav-selected.expanded .title {
    opacity: 1;
  }
  .contact-us .contact-nav.nav-selected.expanded .selected-title {
    opacity: 0;
  }
}
.contact-us.in-edit .contact-nav:before {
  width: 100%;
}
/*------------------------------------------------*\
    Mixins & helpers
\*------------------------------------------------*/
/*------------------------------------------------*\
    Country Selector General
\*------------------------------------------------*/
body.site-selector-expanded {
  top: 0;
  bottom: 0;
  height: 100%;
  overflow: hidden !important;
}
body.site-selector-expanded:after,
body.site-selector-expanded .navbar:after {
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
body.country-navigator-expanded {
  padding-top: 112px !important;
}
@media (min-width: 1200px) {
  body.country-navigator-expanded {
    padding-top: 128px !important;
  }
}
#country-navigator {
  background-color: #2c2c37;
  color: #ffffff;
  position: relative;
  z-index: 251;
  height: 6.25rem;
  display: none;
}
@media (min-width: 768px) {
  #country-navigator {
    height: 95px;
  }
}
@media (min-width: 1200px) {
  #country-navigator {
    margin-left: -3.125rem;
    margin-right: -3.125rem;
    height: 95px;
  }
}
#country-navigator .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  position: relative;
}
@media (min-width: 768px) {
  #country-navigator .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
#country-navigator .container .result-text {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  width: 70%;
  max-width: 28.125rem;
}
@media (min-width: 768px) {
  #country-navigator .container .result-text {
    width: auto;
    position: static;
  }
}
#country-navigator .container #go-to-country-btn {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  margin: 0;
}
@media (min-width: 768px) {
  #country-navigator .container #go-to-country-btn {
    position: static;
    margin: 0 0.625rem;
  }
}
@media (min-width: 1200px) {
  #country-navigator .container #go-to-country-btn {
    margin: 0;
  }
}
#country-navigator .container .region-block__country {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  float: none;
  margin-bottom: 0px;
  height: 2.5rem;
  width: 50%;
  padding-right: 0;
}
@media (min-width: 768px) {
  #country-navigator .container .region-block__country {
    width: 240px;
    position: static;
  }
}
#country-navigator .container .region-block__country .country__wrap {
  background: white;
  margin: 0;
  height: 2.5rem;
}
#country-navigator .container .region-block__country .country__wrap .country__languages {
  top: 2.5rem;
  color: #393939;
  padding-left: 0;
  font-size: 0.8125rem;
  list-style: none;
  margin-bottom: 0px;
}
#country-navigator .container .region-block__country .country__wrap .country__languages a {
  padding-left: 0.5rem;
  cursor: pointer;
}
#country-navigator .container .region-block__country .country__wrap a.country__selector {
  color: #393939;
  height: 2.5rem;
  padding-top: 0.375rem;
}
#country-navigator .container .region-block__country .country__wrap a.country__selector .country__name {
  margin-left: 8px;
}
#country-navigator .container .region-block__country .country__wrap a.country__selector .country__name:hover {
  color: #393939;
}
#country-navigator .container .region-block__country .country__wrap a.country__selector:after {
  width: 24px;
  height: 24px;
  top: 20%;
  background-size: 24px auto;
}
#country-navigator .container .close-country-navigator {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
@media (min-width: 768px) {
  #country-navigator .container .close-country-navigator {
    position: static;
  }
}
.site-selector-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 400;
  background-color: #ffffff;
  opacity: 0;
  overflow-y: hidden;
  pointer-events: none;
  margin-top: 96px;
  padding-top: 5.375pxrem;
}
.site-selector-overlay.country-navigator-expanded {
  margin-top: 156px;
}
@media (min-width: 768px) {
  .site-selector-overlay.country-navigator-expanded {
    margin-top: 112px;
  }
}
@media (min-width: 1200px) {
  .site-selector-overlay.country-navigator-expanded {
    margin-top: 128px;
  }
}
@media (min-width: 1200px) {
  .site-selector-overlay {
    margin-top: 96px;
  }
}
.site-selector-overlay__inner {
  -webkit-transform: translate3d(0, -24px, 0);
          transform: translate3d(0, -24px, 0);
  margin-bottom: 7.8125rem;
}
@media (min-width: 992px) {
  .site-selector-overlay__inner {
    margin-bottom: 7.8125rem;
  }
}
.site-selector-overlay__close {
  padding-right: 38px;
  width: 100%;
  position: fixed;
  text-align: right;
  z-index: 81;
  margin-top: 2.25rem;
}
@media (min-width: 992px) {
  .site-selector-overlay__close {
    margin-top: 3rem;
  }
}
.transitions .site-selector-overlay,
.transitions .site-selector-overlay__inner {
  -webkit-transition: opacity cubic-bezier(0.23, 1, 0.32, 1) 0.5s;
  transition: opacity cubic-bezier(0.23, 1, 0.32, 1) 0.5s;
}
.site-selector-expanded .site-selector-overlay {
  display: block !important;
  pointer-events: auto;
  opacity: 1;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.site-selector-expanded .site-selector-overlay__inner {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 992px) {
  .site-selector-overlay .hero .container {
    padding-top: 5.375rem;
  }
}
@media (max-width: 1200px) {
  .site-selector-overlay .hero .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 1200px) and (min-width: 480px) {
  .site-selector-overlay .hero .container {
    padding-left: 40px;
  }
}
@media (max-width: 1200px) and (min-width: 768px) {
  .site-selector-overlay .hero .container {
    padding-left: 60px;
  }
}
@media (max-width: 1200px) and (min-width: 480px) {
  .site-selector-overlay .hero .container {
    padding-right: 40px;
  }
}
@media (max-width: 1200px) and (min-width: 768px) {
  .site-selector-overlay .hero .container {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) and (min-width: 768px) {
  .site-selector-overlay .hero .container {
    float: none !important;
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}
.site-selector-overlay .close-icon-link {
  opacity: 0;
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.menu-expanded .site-selector-overlay .close-icon-link {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.site-selector-expanded .site-selector-overlay .close-icon-link {
  opacity: 1;
}
.site-selector-overlay .go-to-global-container {
  display: block;
  width: 100%;
  padding: 0;
}
.site-selector-overlay .go-to-global-container:before,
.site-selector-overlay .go-to-global-container:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.site-selector-overlay .go-to-global-container:after {
  clear: both;
}
@media (min-width: 768px) {
  .site-selector-overlay .go-to-global-container {
    padding-top: 4.5rem;
  }
}
@media (min-width: 1200px) {
  .site-selector-overlay .go-to-global-container {
    margin-bottom: 1.25rem;
  }
}
.site-selector-overlay .go-to-global-container a {
  display: block;
  overflow: hidden;
  color: #2c2c37;
  text-decoration: none !important;
}
.site-selector-overlay .go-to-global-container a:hover,
.site-selector-overlay .go-to-global-container a:active {
  color: #2c2c37;
}
.site-selector-overlay .go-to-global-container a:hover .title,
.site-selector-overlay .go-to-global-container a:active .title {
  color: #0056c4;
}
.site-selector-overlay .go-to-global-container a:hover .title:before,
.site-selector-overlay .go-to-global-container a:active .title:before {
  background-color: #0056c4;
}
.site-selector-overlay .go-to-global-container a:hover .img-placeholder,
.site-selector-overlay .go-to-global-container a:active .img-placeholder {
  opacity: 1;
}
.touch .site-selector-overlay .go-to-global-container a:hover .title {
  color: #2c2c37;
}
.touch .site-selector-overlay .go-to-global-container a:hover .title:before {
  background-color: #2c2c37;
}
.touch .site-selector-overlay .go-to-global-container a:active .title {
  color: #0056c4;
}
.touch .site-selector-overlay .go-to-global-container a:active .title:before {
  background-color: #0056c4;
}
.site-selector-overlay .go-to-global-container .img-placeholder {
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
  opacity: 0.8;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.site-selector-overlay .go-to-global-container .img-placeholder img {
  display: none;
}
@media (min-width: 1200px) {
  .site-selector-overlay .go-to-global-container .global-image-container,
  .site-selector-overlay .go-to-global-container .global-information-container {
    float: left;
  }
  .site-selector-overlay .go-to-global-container .global-image-container {
    width: 25%;
  }
  .site-selector-overlay .go-to-global-container .global-image-container .img-placeholder {
    height: 11rem;
  }
}
.site-selector-overlay .go-to-global-container .global-information-container {
  width: 35%;
}
.site-selector-overlay .go-to-global-container .global-information-container .title {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}
.site-selector-overlay .go-to-global-container .global-information-container .title:before {
  content: "\00a0";
  width: 3.875rem;
  height: 2px;
  background-color: #2c2c37;
  position: absolute;
  bottom: 0;
}
@media (max-width: 991px) {
  .site-selector-overlay .go-to-global-container .global-information-container .title:before {
    width: 3rem;
  }
}
@media (min-width: 1200px) {
  .site-selector-overlay .go-to-global-container .global-information-container .title {
    margin-top: 1.5rem;
  }
}
.site-selector-overlay .go-to-global-container .global-information-container .global-text {
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  font-weight: normal;
  font-family: GalanoGrotesqueLight, "Arial Light", Arial, sans-serif;
}
.site-selector-overlay .go-to-global-container .global-information-container .global-text:after {
  display: inline-block;
  position: relative;
  content: '';
  background-image: url('/Static/img/Icons/arrow-right-long.svg');
  background-repeat: no-repeat;
  background-size: 1.375rem;
  width: 1.375rem;
  height: 1.375rem;
  top: 0.375rem;
  margin-top: -1.375rem;
  margin-left: 0.375rem;
}
@media (max-width: 1199px) {
  .site-selector-overlay .go-to-global-container a {
    padding: 0 !important;
    /*&:active {
                    background-color: @gray-superlight;
                }

                .no-touch &:hover {
                    background-color: @gray-ghost;
                }*/
  }
  .site-selector-overlay .go-to-global-container a .global-information-container {
    width: 100%;
  }
  .site-selector-overlay .go-to-global-container .global-image .img-placeholder {
    display: block;
    padding-bottom: 45%;
  }
  .site-selector-overlay .go-to-global-container .global-information-container {
    padding: 0.5rem 1.875rem 2rem;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .site-selector-overlay .go-to-global-container a {
    display: table;
    width: 100%;
  }
  .site-selector-overlay .go-to-global-container a > div {
    display: table-cell;
    vertical-align: top;
    width: 50%;
    height: inherit;
  }
  .site-selector-overlay .go-to-global-container a .img-placeholder {
    height: inherit;
    padding-bottom: 55% !important;
  }
  .site-selector-overlay .go-to-global-container a .global-information-container {
    width: 50%;
  }
}
@media (max-width: 1199px) and (max-width: 767px) {
  .site-selector-overlay .go-to-global-container .global-information-container {
    padding: 0.5rem 0 0 0;
  }
}
/*------------------------------------------------*\
    Region blocks
\*------------------------------------------------*/
.region-block > .container {
  padding-left: 40px;
  padding-right: 40px;
}
@media (min-width: 480px) {
  .region-block > .container {
    padding-left: 40px;
  }
}
@media (min-width: 768px) {
  .region-block > .container {
    padding-left: 60px;
  }
}
@media (min-width: 480px) {
  .region-block > .container {
    padding-right: 40px;
  }
}
@media (min-width: 768px) {
  .region-block > .container {
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  .region-block > .container {
    float: none !important;
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}
.region-block h2.section-heading {
  margin-top: 3rem;
}
.region-block h3.section-heading {
  font-size: 1.0625rem;
  line-height: 1.5rem;
  font-weight: normal;
  margin-bottom: 0;
  padding-bottom: 1.375rem;
}
.region-block__countries {
  margin-bottom: 2rem;
}
.region-block__countries ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.region-block__countries ul:before,
.region-block__countries ul:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.region-block__countries ul:after {
  clear: both;
}
@media (min-width: 600px) {
  .region-block__countries ul {
    margin-right: -1.5rem;
  }
}
/*------------------------------------------------*\
    Contact Regional block
\*------------------------------------------------*/
.contact-regional-block {
  margin: 60px 0;
  padding: 50px 40px;
  -webkit-box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.2);
}
.contact-regional-block h2 {
  margin: 0;
  position: relative;
  color: #2c2c37;
}
.contact-regional-block h2:before {
  content: "\00a0";
  width: 4rem;
  height: 2px;
  background-color: #2c2c37;
  position: absolute;
  top: 45px;
}
.contact-regional-block p {
  color: #393939;
}
.contact-regional-block .region-block__countries {
  margin-top: 40px;
}
/*------------------------------------------------*\
    Country item
\*------------------------------------------------*/
.region-block__country {
  display: block;
  float: left;
  height: 2rem;
  margin-bottom: 1.75rem;
  padding-right: 0rem;
  width: 50%;
  /*----- Country has multiple languages -----*/
}
@media (min-width: 600px) {
  .region-block__country {
    padding-right: 1rem;
    width: 33.33333333%;
  }
}
@media (min-width: 768px) {
  .region-block__country {
    width: 25%;
  }
}
@media (min-width: 992px) {
  .region-block__country {
    width: 16.66666667%;
  }
}
.region-block__country .country__wrap {
  margin: -0.5rem;
  margin-right: 0;
}
.region-block__country .country__flag {
  width: 30px;
  height: auto;
  margin-right: 2px;
}
.region-block__country .country__name {
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: #393939;
}
@media (min-width: 600px) {
  .region-block__country .country__name {
    font-size: 0.8125rem;
  }
}
.region-block__country a,
.region-block__country a * {
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
.region-block__country a:focus,
.region-block__country a:hover {
  text-decoration: none;
}
.region-block__country a:active,
.region-block__country a:active * {
  -webkit-transition: all ease-in-out 0.15s;
  transition: all ease-in-out 0.15s;
}
.region-block__country a:hover,
.region-block__country a:active {
  color: #0056c4;
}
.region-block__country .country__wrap > a {
  display: block;
  padding: 0.5rem;
}
.region-block__country .country__wrap > a:focus,
.region-block__country .country__wrap > a:hover {
  text-decoration: none;
}
.region-block__country .country__wrap > a:hover {
  background-color: #fafafb;
}
.region-block__country .country__wrap > a:hover .country__flag,
.region-block__country .country__wrap > a:active .country__flag,
.region-block__country .country__wrap > a:focus .country__flag {
  opacity: .8;
}
.region-block__country .country__wrap > a:hover .country__name,
.region-block__country .country__wrap > a:active .country__name,
.region-block__country .country__wrap > a:focus .country__name {
  color: #0056c4;
}
.region-block__country .country__wrap > a > * {
  display: inline-block;
  vertical-align: middle;
}
.region-block__country--multi-lang .country__wrap {
  position: relative;
  z-index: 0;
  -webkit-transition: all ease-in-out 0.15s;
  transition: all ease-in-out 0.15s;
  overflow: hidden;
  height: 2.875rem;
}
.region-block__country--multi-lang .country__wrap > a {
  position: relative;
}
.region-block__country--multi-lang .country__wrap > a:after {
  content: '';
  display: block;
  position: absolute;
  right: 0.75rem;
  top: 35%;
  width: 13px;
  height: 24px;
  background: url('/Static/img/Icons/caret-down-grey-sm.svg') no-repeat;
  background-size: 13px auto;
  -webkit-transform-origin: 50% 30%;
          transform-origin: 50% 30%;
}
.region-block__country--multi-lang ul {
  position: absolute;
  top: 2.875rem;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: white;
  -webkit-transition: all ease-in-out 0.15s;
  transition: all ease-in-out 0.15s;
  opacity: 0;
}
.region-block__country--multi-lang li {
  border-top: 1px solid rgba(57, 57, 57, 0.3);
}
.region-block__country--multi-lang li a {
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: #393939;
  display: block;
  padding: 0.5rem;
  padding-top: 0.5625rem;
  padding-bottom: 0.4375rem;
}
@media (min-width: 600px) {
  .region-block__country--multi-lang li a {
    font-size: 0.8125rem;
  }
}
.region-block__country--multi-lang.lang-expanded .country__wrap {
  z-index: 1;
  -webkit-box-shadow: 0 0 9px 0 rgba(96, 96, 96, 0.25);
          box-shadow: 0 0 9px 0 rgba(96, 96, 96, 0.25);
}
.region-block__country--multi-lang.lang-expanded .country__wrap > a {
  background-color: white;
}
.region-block__country--multi-lang.lang-expanded .country__wrap > a :after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.region-block__country--multi-lang.lang-expanded ul {
  opacity: 1;
}
.find-optician-page {
  height: 100%;
}
.find-optician-page main {
  height: 100%;
}
.find-optician-page body {
  height: 100%;
}
.find-optician-page .map-wrapper {
  position: relative;
}
.find-optician-page .map-wrapper #map {
  height: 60vh;
  margin-top: 2.8125rem;
}
@media (min-width: 992px) {
  .find-optician-page .map-wrapper {
    height: 100%;
  }
  .find-optician-page .map-wrapper #map {
    height: 100%;
    margin-left: 25.8125rem;
    margin-top: 0;
  }
}
.find-optician-page.ie-11 .filters {
  margin-bottom: 3.75rem;
}
@media (min-width: 992px) {
  .find-optician-page.ie-11 .hit-list-wrapper {
    margin-top: 1.25rem !important;
  }
}
.find-optician-page .search-wrapper {
  background-color: rgba(231, 231, 235, 0.92);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 992px) {
  .find-optician-page .search-wrapper {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 25.8125rem;
    height: 100%;
    overflow: hidden;
  }
}
.find-optician-page .search-wrapper .searchTextField-wrapper {
  z-index: 1;
  height: 2.8125rem;
  position: absolute;
  top: -2.8125rem;
  left: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .find-optician-page .search-wrapper .searchTextField-wrapper {
    position: relative;
    top: 0;
    height: auto;
    padding: 1.875rem 1.875rem 1.875rem 1.875rem;
  }
}
.find-optician-page .search-wrapper .searchTextField-wrapper #searchTextField {
  height: 2.8125rem;
  padding-left: 1rem;
  padding-right: 3.5rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.33);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.33);
  width: 100%;
  border: none;
}
@media (min-width: 992px) {
  .find-optician-page .search-wrapper .searchTextField-wrapper #searchTextField {
    height: 3.4375rem;
    padding-right: 3rem;
  }
}
.find-optician-page .search-wrapper .searchTextField-wrapper #search-button {
  background: url('/Static/img/Icons/search-grey.svg') no-repeat;
  background-position: center;
  padding: 1.375rem;
  position: absolute;
  right: 0.75rem;
  top: 0.0625rem;
  cursor: pointer;
  /*cursor: pointer;*/
}
@media (min-width: 992px) {
  .find-optician-page .search-wrapper .searchTextField-wrapper #search-button {
    top: 2.25rem;
    right: 1.875rem;
  }
}
.find-optician-page .search-wrapper .filters {
  padding: 1.25rem 2.1875rem;
  /*display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            width: 100%;
            flex-grow: 2;*/
}
@media (min-width: 768px) {
  .find-optician-page .search-wrapper .filters {
    padding: 0 2.1875rem;
  }
}
.find-optician-page .search-wrapper .filters .filter {
  margin-right: 0.9375rem;
  display: inline-block;
  /*display: flex;
                flex-direction: column;
                flex: 1;
                flex-basis: 40%;*/
}
.find-optician-page .search-wrapper .filters .filter:last-child {
  margin-right: 0;
}
.find-optician-page .search-wrapper .filters .filter label {
  font-size: 0.9375rem;
  line-height: 1.375rem;
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.find-optician-page .search-wrapper .filters .filter [type="radio"]:checked,
.find-optician-page .search-wrapper .filters .filter [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.find-optician-page .search-wrapper .filters .filter [type="radio"]:checked + label,
.find-optician-page .search-wrapper .filters .filter [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
}
.find-optician-page .search-wrapper .filters .filter [type="radio"]:checked + label:before,
.find-optician-page .search-wrapper .filters .filter [type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid #4a4f54;
  border-radius: 100%;
  background: transparent;
}
.find-optician-page .search-wrapper .filters .filter [type="radio"]:checked + label:after,
.find-optician-page .search-wrapper .filters .filter [type="radio"]:not(:checked) + label:after {
  content: '';
  width: 1.125rem;
  height: 1.125rem;
  background: #0056c4;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.find-optician-page .search-wrapper .filters .filter [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.find-optician-page .search-wrapper .filters .filter [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.find-optician-page .search-wrapper .resultText {
  font-family: GalanoGrotesqueLight, "Arial Light", Arial, sans-serif;
  font-size: 1.375rem;
  line-height: 2rem;
  font-weight: 200;
  padding-bottom: 1.375rem;
  margin-bottom: 1.875rem;
  padding: 0 3.125rem;
  margin-bottom: 1.25rem;
  display: none;
}
.find-optician-page .search-wrapper .resultText strong {
  font-family: GalanoGrotesqueRegular, Arial, sans-serif;
  font-weight: bold;
}
@media (min-width: 992px) {
  .find-optician-page .search-wrapper .resultText {
    font-size: 1.6875rem;
    line-height: 2rem;
    padding-bottom: 1.625rem;
  }
}
@media (min-width: 992px) {
  .find-optician-page .search-wrapper .resultText {
    margin-top: 1.125rem;
    padding: 0px 3.125rem 0px 3.125rem;
  }
}
.find-optician-page .search-wrapper .hit-list-wrapper {
  overflow: hidden;
  /*display: flex;
            flex-grow: 0;*/
}
@media (min-width: 992px) {
  .find-optician-page .search-wrapper .hit-list-wrapper {
    margin-top: 1.25rem;
  }
}
.find-optician-page .search-wrapper .hit-list {
  overflow-y: auto;
  height: 100%;
  position: relative;
}
.find-optician-page .search-wrapper .hit-list .optician {
  padding: 1.25rem 3.125rem;
  border-top: 1px solid rgba(195, 195, 205, 0.74);
  font-size: 0.9375rem;
  line-height: 1.375rem;
  font-weight: normal;
  cursor: pointer;
  position: relative;
}
.find-optician-page .search-wrapper .hit-list .optician.premium {
  background-color: #0090d1;
}
.find-optician-page .search-wrapper .hit-list .optician.premium .optician-name::before {
  content: '';
  display: block;
  position: absolute;
  left: -20px;
  top: 1px;
  background-image: url('/Static/img/GoogleMaps/HOYA_icon_premium.svg');
  background-repeat: no-repeat;
  background-size: auto 1.0625rem;
  width: 1.25rem;
  height: 1.0625rem;
}
.find-optician-page .search-wrapper .hit-list .optician .close-button-container {
  padding: 20px;
  position: absolute;
  right: 1.25rem;
  top: 0rem;
}
.find-optician-page .search-wrapper .hit-list .optician .close-button-container .close-icon {
  display: none;
}
.find-optician-page .search-wrapper .hit-list .optician .optician-openingHours,
.find-optician-page .search-wrapper .hit-list .optician .optician-email,
.find-optician-page .search-wrapper .hit-list .optician .optician-websiteurl,
.find-optician-page .search-wrapper .hit-list .optician .optician-tel,
.find-optician-page .search-wrapper .hit-list .optician .optician-contact-label,
.find-optician-page .search-wrapper .hit-list .optician .optician-campaign-info,
.find-optician-page .search-wrapper .hit-list .optician .optician-contactform,
.find-optician-page .search-wrapper .hit-list .optician .optician-seller-info {
  display: none;
}
.find-optician-page .search-wrapper .hit-list .optician.active {
  background: rgba(244, 246, 247, 0.82);
  display: block;
  cursor: default;
  /* Tooltip text */
  /* Show the tooltip text when you mouse over the tooltip container */
}
.find-optician-page .search-wrapper .hit-list .optician.active .close-button-container {
  z-index: 100;
}
.find-optician-page .search-wrapper .hit-list .optician.active .close-button-container .close-icon {
  display: inline-block;
}
.find-optician-page .search-wrapper .hit-list .optician.active .optician-openingHours,
.find-optician-page .search-wrapper .hit-list .optician.active .optician-email,
.find-optician-page .search-wrapper .hit-list .optician.active .optician-websiteurl,
.find-optician-page .search-wrapper .hit-list .optician.active .optician-tel,
.find-optician-page .search-wrapper .hit-list .optician.active .optician-contact-label,
.find-optician-page .search-wrapper .hit-list .optician.active .optician-campaign-info,
.find-optician-page .search-wrapper .hit-list .optician.active .optician-contactform,
.find-optician-page .search-wrapper .hit-list .optician.active .optician-seller-info {
  display: block;
  color: #393939;
  margin-bottom: 0.625rem;
}
.find-optician-page .search-wrapper .hit-list .optician.active .optician-campaign-info {
  font-size: 12px;
}
.find-optician-page .search-wrapper .hit-list .optician.active .optician-websiteurl {
  text-decoration: underline;
}
.find-optician-page .search-wrapper .hit-list .optician.active .optician-contact-label {
  font-weight: bold;
}
.find-optician-page .search-wrapper .hit-list .optician.active .optician-contactform {
  margin-top: 20px;
}
.find-optician-page .search-wrapper .hit-list .optician.active .optician-contactform span {
  display: inline-block;
}
.find-optician-page .search-wrapper .hit-list .optician.active .seller-icon {
  width: 25px;
  height: 25px;
}
.find-optician-page .search-wrapper .hit-list .optician.active .tooltip {
  position: relative;
  display: inline-block;
  opacity: 1;
}
.find-optician-page .search-wrapper .hit-list .optician.active .tooltiptext {
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.33);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.33);
  visibility: hidden;
  width: 240px;
  background-color: white;
  color: #393939;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  top: -35px;
  left: -10px;
  z-index: 1;
}
.find-optician-page .search-wrapper .hit-list .optician.active .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%;
  /* At the bottom of the tooltip */
  left: 10%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: white transparent transparent transparent;
}
.find-optician-page .search-wrapper .hit-list .optician.active .tooltip:hover .tooltiptext {
  visibility: visible;
}
.find-optician-page .search-wrapper .hit-list .optician.inactive {
  display: none;
}
.find-optician-page .search-wrapper .hit-list .optician .optician-name {
  position: relative;
  display: block;
  color: rgba(0, 86, 196, 0.82);
  font-family: GalanoGrotesqueRegular, Arial, sans-serif;
  font-weight: bold;
  padding-bottom: 0.625rem;
}
.find-optician-page .search-wrapper .hit-list .optician .optician-address {
  display: block;
  margin-bottom: 0.625rem;
  color: rgba(57, 57, 57, 0.92);
  line-height: 1.25rem;
}
.find-optician-page .search-wrapper .hit-list .optician .optician-email,
.find-optician-page .search-wrapper .hit-list .optician .optician-tel {
  padding-top: 2px;
  color: #393939;
}
.find-optician-page .search-wrapper .hit-list .optician .optician-email a,
.find-optician-page .search-wrapper .hit-list .optician .optician-tel a {
  color: #393939;
}
.find-optician-page .search-wrapper .hit-list .optician .optician-email a:active,
.find-optician-page .search-wrapper .hit-list .optician .optician-tel a:active {
  color: #2c2c37;
}
.find-optician-page .search-wrapper .hit-list .optician span {
  display: block;
}
.find-optician-page .search-wrapper .hit-list .optician > *:last-child {
  margin-bottom: 0;
}
.find-optician-page .seller-info {
  position: relative;
  display: block;
  margin-top: 0.5rem;
  color: rgba(57, 57, 57, 0.92);
  line-height: 1.25rem;
  font-size: 0.75rem;
  padding-left: calc(20px + 8px);
}
.find-optician-page .seller-info:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url('/Static/img/Icons/auth-seller-icon.svg');
  background-repeat: no-repeat;
  background-size: auto 1.0625rem;
  width: 1.25rem;
  height: 1.0625rem;
}
.find-optician-page .popup span {
  display: block;
  color: #393939;
}
.find-optician-page .popup .optician-name {
  font-family: GalanoGrotesqueRegular, Arial, sans-serif;
  font-weight: bold;
  color: #0056c4;
  padding-bottom: 0.3125rem;
  padding-top: 0.3125rem;
}
.find-optician-page .popup .optician-address {
  margin-bottom: 0.3125rem;
}
.find-optician-page .pac-container .pac-item {
  padding: 0.3125rem 0.75rem;
}
.optician-admin .container {
  padding-bottom: 2.5rem;
}
.optician-admin .block {
  padding-bottom: 0;
  padding-top: 3.5rem;
}
.optician-admin .tab-container #tab-buttons a {
  padding: 0.625rem 1.25rem;
  border-radius: 4px 4px 0 0;
  display: inline-block;
  margin-bottom: 0;
  border-color: #f5f5f7;
  background-color: #f4f6f7;
  color: black;
}
.optician-admin .tab-container #tab-buttons a.active {
  background-color: #f5f5f7;
}
.optician-admin .tab-container .tab-content {
  background-color: #f5f5f7;
  padding: 1.875rem 1.875rem;
  position: relative;
}
.optician-admin .tab-container .tab-content h2 {
  margin-bottom: 3.5rem;
}
.optician-admin .country-select-container {
  max-width: 28.125rem;
}
.optician-admin #tab-import .file-select-container {
  width: 100%;
  display: block;
  margin-bottom: 1.875rem;
}
.optician-admin #tab-import .file-uploads {
  display: inline;
}
.optician-admin #tab-import .file-name-label {
  font-weight: normal;
  margin-left: 1.25rem;
}
.optician-admin #tab-import .upload-message-title {
  font-size: 0.9375rem;
  line-height: 1.375rem;
  font-weight: normal;
  margin-top: 1.875rem;
  font-weight: bold;
}
.optician-admin #tab-import .upload-message {
  padding: 20px;
  background-color: white;
  border-radius: 4px;
}
.optician-admin #tab-import.upload-error .upload-message {
  background-color: #ff453a;
  color: white;
}
.optician-admin #tab-export .export-message-title {
  font-size: 0.9375rem;
  line-height: 1.375rem;
  font-weight: normal;
  margin-top: 1.875rem;
  font-weight: bold;
}
.optician-admin #tab-export .export-message {
  padding: 20px;
  background-color: white;
  border-radius: 4px;
}
.optician-admin #tab-export.export-error .export-message {
  background-color: #ff453a;
  color: white;
}
.optician-admin #tab-export.download #export-btn {
  background-color: #30d158;
}
.optician-admin #tab-export.download #export-btn:hover {
  background-color: #59da79;
}
.optician-admin .search-input-container {
  position: relative;
  height: auto;
  max-width: 28.125rem;
  width: 100%;
  padding: 0 0 1.875rem 0;
}
.optician-admin .search-input-container #search-text-field {
  height: 2.8125rem;
  padding-left: 1rem;
  padding-right: 3.5rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.33);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.33);
  width: 100%;
  border: none;
}
@media (min-width: 992px) {
  .optician-admin .search-input-container #search-text-field {
    height: 3.4375rem;
    padding-right: 3rem;
  }
}
.optician-admin .search-input-container #search-button {
  background: url('/Static/img/Icons/search-grey.svg') no-repeat;
  background-position: center;
  padding: 1.375rem;
  position: absolute;
  right: 0.5rem;
  top: 0.0625rem;
}
@media (min-width: 992px) {
  .optician-admin .search-input-container #search-button {
    top: 0.4375rem;
  }
}
.optician-admin .optician-count-label {
  font-weight: bold;
  margin-bottom: 1.5625rem;
}
.optician-admin .table-wrapper {
  overflow-x: auto;
  overflow-y: visible;
  width: calc(100% - (79px * 2 + 20px/2));
  cursor: move;
}
.optician-admin table {
  width: 100%;
}
.optician-admin table th {
  text-align: left;
  height: 2.0625rem !important;
  white-space: nowrap;
  padding: 0.25rem 0.625rem;
  border: 1px solid #f5f5f7;
}
.optician-admin table td {
  padding: 0 0.625rem;
  border: 1px solid #f5f5f7;
  height: 3.125rem;
}
.optician-admin table td span {
  white-space: nowrap;
  line-height: 3.125rem;
}
.optician-admin table tr {
  background-color: #f4f6f7;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
.optician-admin table tr td,
.optician-admin table tr th {
  background-color: #f4f6f7;
}
.optician-admin table tr:nth-child(2n) {
  background-color: #ffffff;
}
.optician-admin table tr:nth-child(2n) td,
.optician-admin table tr:nth-child(2n) th {
  background-color: #ffffff;
}
.optician-admin table .button-col {
  position: absolute;
  top: auto;
  right: calc(1.875rem + 79px);
  width: 4.9375rem;
  height: 3.1875rem;
  text-align: center;
  padding: 0.25rem 0.5rem;
  border-left-width: 2px;
  margin-right: 10px;
  z-index: 10;
}
.optician-admin table .button-col button {
  text-align: center;
  padding: 0.25rem 0;
  width: 3.9375rem;
}
.optician-admin table .button-col:last-child {
  right: 1.875rem;
  border-left-width: 1px;
}
.optician-admin .no-opticians-label {
  margin-top: 1.25rem;
}
.optician-admin button#delete-and-upload-btn,
.optician-admin button.delete-row {
  background-color: #ff453a;
}
.optician-admin button#delete-and-upload-btn:hover,
.optician-admin button.delete-row:hover {
  background-color: #ff6a61;
}
.optician-admin button.cancel-edit-row {
  background-color: #393939;
}
.optician-admin button.cancel-edit-row:hover {
  background-color: #616161;
}
.optician-admin button#add-row {
  margin-top: 1.875rem;
  background-color: #30d158;
}
.optician-admin button#add-row:hover {
  background-color: #59da79;
}
.optician-admin button#upload-btn {
  background-color: #30d158;
}
.optician-admin button#upload-btn:hover {
  background-color: #59da79;
}
.optician-admin button.save-row {
  background-color: #30d158;
}
.optician-admin button.save-row:hover {
  background-color: #59da79;
}
.optician-admin button:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.text-rtl .navbar:after,
.text-rtl body:after {
  left: auto;
  right: 0;
}
.text-rtl .navbar-action {
  left: 0;
  right: auto;
}
.text-rtl .navbar-back {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.text-rtl ul.nav.navbar-nav {
  padding: 0;
}
@media (min-width: 1200px) {
  .text-rtl ul.nav.navbar-nav {
    padding-left: 0.625rem;
  }
}
.text-rtl ul.nav.navbar-nav .dropdown {
  margin-right: 0px;
}
@media (min-width: 1200px) {
  .text-rtl ul.nav.navbar-nav .dropdown {
    margin-right: 10px;
  }
  .text-rtl ul.nav.navbar-nav .dropdown .menu-close .close-icon-link {
    float: left;
  }
  .text-rtl ul.nav.navbar-nav .dropdown .menu-item {
    float: right;
  }
  .text-rtl ul.nav.navbar-nav .dropdown .level-2 .menu-item.menu-main-page .menu-image-container,
  .text-rtl ul.nav.navbar-nav .dropdown .level-2 .menu-item.menu-main-page .menu-information-container {
    float: right;
  }
}
.text-rtl ul.nav.navbar-nav .dropdown .dropdown-toggle:after {
  right: auto;
  left: 1.5625rem;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (min-width: 1200px) {
  .text-rtl ul.nav.navbar-nav .dropdown .dropdown-toggle:after {
    left: -0.25rem;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.text-rtl ul.nav.navbar-nav .dropdown .menu-category .menu-back-wrapper {
  text-align: right;
}
.text-rtl ul.nav.navbar-nav .dropdown .menu-category .menu-back-wrapper a {
  padding-left: 0;
  padding-right: 3.125rem;
}
.text-rtl ul.nav.navbar-nav .dropdown .menu-category .menu-back-wrapper a:before {
  left: auto;
  right: 1.25rem;
  top: 0.5rem;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.text-rtl ul.nav.navbar-nav .dropdown .menu-category .title {
  text-align: right;
}
.text-rtl ul.nav.navbar-nav .dropdown .menu-category .menu-text {
  text-align: right;
  padding-right: 0px;
}
.text-rtl ul.nav.navbar-nav .dropdown .menu-category .menu-text:before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  left: 0;
  right: auto;
}
.text-rtl ul.nav.navbar-nav .dropdown .menu-category .menu-text:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.text-rtl ul.nav.navbar-nav .dropdown .menu-category .menu-item a.has-children:after {
  left: 1.5625rem;
  right: auto;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.text-rtl .navbar #language-selector .country-flag-floating {
  float: left;
}
.text-rtl .navbar #language-selector span {
  line-height: 28px;
  margin-left: 6px;
}
.text-rtl #site-selector .country__wrap a:after {
  right: unset;
  left: 0.625rem;
}
.text-rtl #site-selector .site-selector-overlay__close {
  padding-left: 3.125rem;
  right: auto;
}
@media (min-width: 768px) {
  .text-rtl #site-selector .site-selector-overlay__close {
    padding-left: 4.375rem;
  }
}
.text-rtl #site-selector .site-selector-overlay__close .close-site-selector {
  float: left;
}
.text-rtl #country-navigator .country__name {
  margin-left: 0;
  margin-right: 0.625rem;
}
.text-rtl #country-navigator .country__selector:after {
  left: 0.625rem;
  right: unset;
}
.text-rtl .sticky-footer .sticky-footer__nav {
  float: right;
}
.text-rtl .sticky-footer .sticky-footer__nav .nav__back-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.text-rtl .sticky-footer .sticky-footer__action {
  float: left;
}
.text-rtl .sticky-footer .sticky-footer__action a {
  float: left;
}
.text-rtl .block h1:not(.hero-title),
.text-rtl .block h2,
.text-rtl .block h3 {
  text-align: right;
}
.text-rtl .block h1:not(.hero-title):before,
.text-rtl .block h2:before,
.text-rtl .block h3:before {
  right: 0;
}
.text-rtl .block h1:not(.hero-title).col-*:before,
.text-rtl .block h2.col-*:before,
.text-rtl .block h3.col-*:before {
  right: 0.625rem;
}
.text-rtl .block.text-image-bloc .content-title,
.text-rtl .block.icon-grid-block .content-title {
  float: right;
}
.text-rtl .block.three-column-block .title {
  float: right;
}
.text-rtl .block.three-column-block .title:before {
  right: 0.625rem;
}
.text-rtl .block.two-column-text-block .header-column {
  float: right;
}
.text-rtl .block.column-block .learn-more-link {
  float: right;
}
@media (min-width: 1200px) {
  .text-rtl .block.column-block .learn-more-link {
    right: 0.625rem;
  }
}
.text-rtl .content-title {
  text-align: right;
}
.text-rtl .footer--primary {
  text-align: right;
}
.text-rtl .learn-more-link {
  position: relative;
  display: inline-block;
  padding-right: 2.25rem;
  color: #0056c4;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  font-weight: normal;
  padding-right: 0;
  right: 0;
}
.text-rtl .learn-more-link:after {
  position: absolute;
  right: 5px;
  top: 1px;
  content: '';
  background-image: url('/Static/img/Icons/caret-right-bold.svg');
  background-repeat: no-repeat;
  background-size: 1.2rem;
  width: 1.2rem;
  height: 1.2rem;
}
.text-rtl .learn-more-link:hover,
.text-rtl .learn-more-link:focus,
.text-rtl .learn-more-link:active {
  text-decoration: none;
}
.text-rtl .learn-more-link:hover,
.text-rtl .learn-more-link:focus {
  color: #2c2c37;
}
.text-rtl .learn-more-link:active {
  color: #0056c4;
}
.touch .text-rtl .learn-more-link:hover,
.touch .text-rtl .learn-more-link:focus {
  color: #0056c4;
}
.touch .text-rtl .learn-more-link:active {
  color: #2c2c37;
}
.text-rtl .learn-more-link:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: -30px;
  right: auto;
  height: 1.625rem;
}
.text-rtl .text-fluid-image-block .wrapper {
  float: left;
}
.text-rtl [type="radio"]:checked,
.text-rtl [type="radio"]:not(:checked) {
  position: absolute;
  right: -9999px;
}
.text-rtl .hit-list .optician .close-button-container {
  right: auto !important;
  left: 1.25rem;
}
.text-rtl .map-wrapper .gm-style-iw-c {
  padding-left: 0px;
  padding-right: 20px !important;
}
.text-rtl .map-wrapper .gm-style-iw-c button.gm-ui-hover-effect {
  left: -4px;
  right: auto !important;
}
/*------------------------------------------------*\
    IE Fixes
    
    
    1.  Replace pointer-events:none transitions
        with simple display: none/block
  
\*------------------------------------------------*/
.lt-ie11 {
  /*------------------------------------------------*\
        Navbar Header
  \*------------------------------------------------*/
  /*------------------------------------------------*\
        Site Selector
  \*------------------------------------------------*/
  /*------------------------------------------------*\
        Notifications
  \*------------------------------------------------*/
}
.lt-ie11 body:before {
  display: none;
  -webkit-transition: none;
  transition: none;
}
.lt-ie11 .navbar-header .navbar-heading {
  display: none;
}
.lt-ie11 .transitions .navbar .dropdown-menu {
  display: none;
}
.lt-ie11 .site-selector-overlay {
  display: none;
}
.lt-ie11 .notification.dismissed {
  display: none;
}
.lt-ie11 .hero.background-img {
  opacity: .25 !important;
}

/*# sourceMappingURL=hoyavision.min.css.map*/