@charset "UTF-8";
/* Settings
-------------------------------------------*/
/* Base styles */
/* Settings


/* Body & textcolor */
/* Branding colours */
/* Greyscale */
/* Links */
/* Package colors */
/* Titles fallback sizes */
/* Typefaces */
/* line-height fallback */
/* Font-weight variables */
/* Spacing variables */
/* Functions for px to em conversions */
/* Most recent browsers only */
:root {
  --text-color-default: #313131;
  --body-color:#f4f4f4;
  --box-link-bg: #f4f4f4;
  --unpublished-color: #ccc;
  /* CTA */
  --link-color: #00aeef;
  --cta-text-color: #fff;
  --cta-color: #00aeef;
  --cta-border: #00aeef;
  --container-size: 1200px;
  --text-decoration-thickness: 2px;
  --text-decoration-border-color: #f4f4f4;
  --form-input-bg: #fff;
  /* Border Radius */
  --border-radius-default: 5px;
  --border-radius-alt: 1rem;
  /* Border width */
  --border-width-default: 1px;
  --border-width-alt: 3px;
  /* Transition duration */
  --duration-default: .25s;
  --duration-alt: .5s;
  /* Spacing variables */
  --spacing-small: 1rem;
  --spacing-default: 2rem;
  --spacing-medium: 3.2rem;
  --spacing-large: 6.4rem;
  --spacing-x-large: 12.8rem;
  --flow-space: 2rem;
  --list-item-spacing: 2rem;
  /* Grid */
  --grid-gap: 2.8rem;
  --grid-2: repeat(2, minmax(0,1fr));
  --grid-3: repeat(3, minmax(0,1fr));
  --grid-4: repeat(4, minmax(0,1fr));
  --grid-5: repeat(5, minmax(0,1fr));
  --grid-12: repeat(12, minmax(0,1fr));
  --grid-4-5: 6fr 1fr 4fr 3fr 3fr 4fr 1fr 6fr;
  --auto-fill:repeat(auto-fill, minmax(400px, 1fr));
  /* borders color */
  --color-border:#1D1D1B;
  --color-border-alt: #E8E8E8;
}

/* Mixins
-------------------------------------------*/
/* Mediaqueries */
/* Transition */
/* Typography */
/* Others */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

img {
  vertical-align: middle;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Grid
-------------------------------------------*/
/* Break points */
/* Container width settings for various devices */
/* Column gutter */
/* Region-row */
/* Default */
.container,
.region-row {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  position: relative;
  padding: 0%;
}

/* Clearfix */
.region-row:before,
.region-row:after,
.group:before,
.group:after,
.container:before,
.container:after,
.width-100:before,
.width-100:after,
.mobile-width-100:before,
.mobile-width-100:after {
  content: "";
  display: table;
}

.region-row:after,
.group:after,
.container:after,
.width-100:after,
.mobile-width-100:after {
  clear: both;
}

.region-row,
.group,
.container,
.width-100,
.mobile-width-100 {
  zoom: 1; /* For IE 6/7 (trigger hasLayout) */
}

@media screen and (max-width: 481px) {
  .region-row,
  .width-5,
  .width-10,
  .width-15,
  .width-20,
  .width-25,
  .width-30,
  .width-33,
  .width-35,
  .width-40,
  .width-45,
  .width-50,
  .width-55,
  .width-60,
  .width-65,
  .width-66,
  .width-67,
  .width-70,
  .width-75,
  .width-80,
  .width-85,
  .width-90,
  .width-95,
  .width-100 {
    width: 100% !important;
  }
}
/* Tablet - 768 up */
@media screen and (min-width: 768px) {
  .container,
  .region-row {
    max-width: 100%;
  }
  .width-5,
  .width-10,
  .width-15,
  .width-20,
  .width-25,
  .width-30,
  .width-33,
  .width-35,
  .width-40,
  .width-45,
  .width-50,
  .width-55,
  .width-60,
  .width-65,
  .width-66,
  .width-67,
  .width-70,
  .width-75,
  .width-80,
  .width-85,
  .width-90,
  .width-95,
  .width-100,
  .mobile-width-5,
  .mobile-width-10,
  .mobile-width-15,
  .mobile-width-20,
  .mobile-width-25,
  .mobile-width-30,
  .mobile-width-33,
  .mobile-width-35,
  .mobile-width-40,
  .mobile-width-45,
  .mobile-width-50,
  .mobile-width-55,
  .mobile-width-60,
  .mobile-width-65,
  .mobile-width-66,
  .mobile-width-67,
  .mobile-width-70,
  .mobile-width-75,
  .mobile-width-80,
  .mobile-width-85,
  .mobile-width-90,
  .mobile-width-95,
  .mobile-width-100 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 20px;
  }
  *:first-child + html .width-5 > *, *:first-child + html .width-10 > *,
  *:first-child + html .width-15 > *,
  *:first-child + html .width-20 > *,
  *:first-child + html .width-25 > *,
  *:first-child + html .width-30 > *,
  *:first-child + html .width-33 > *,
  *:first-child + html .width-35 > *,
  *:first-child + html .width-40 > *,
  *:first-child + html .width-45 > *,
  *:first-child + html .width-50 > *,
  *:first-child + html .width-55 > *,
  *:first-child + html .width-60 > *,
  *:first-child + html .width-65 > *,
  *:first-child + html .width-66 > *,
  *:first-child + html .width-67 > *,
  *:first-child + html .width-70 > *,
  *:first-child + html .width-75 > *,
  *:first-child + html .width-80 > *,
  *:first-child + html .width-85 > *,
  *:first-child + html .width-90 > *,
  *:first-child + html .width-95 > *,
  *:first-child + html .width-100 > *,
  *:first-child + html .mobile-width-5 > *,
  *:first-child + html .mobile-width-10 > *,
  *:first-child + html .mobile-width-15 > *,
  *:first-child + html .mobile-width-20 > *,
  *:first-child + html .mobile-width-25 > *,
  *:first-child + html .mobile-width-30 > *,
  *:first-child + html .mobile-width-33 > *,
  *:first-child + html .mobile-width-35 > *,
  *:first-child + html .mobile-width-40 > *,
  *:first-child + html .mobile-width-45 > *,
  *:first-child + html .mobile-width-50 > *,
  *:first-child + html .mobile-width-55 > *,
  *:first-child + html .mobile-width-60 > *,
  *:first-child + html .mobile-width-65 > *,
  *:first-child + html .mobile-width-66 > *,
  *:first-child + html .mobile-width-70 > *,
  *:first-child + html .mobile-width-75 > *,
  *:first-child + html .mobile-width-80 > *,
  *:first-child + html .mobile-width-85 > *,
  *:first-child + html .mobile-width-90 > *,
  *:first-child + html .mobile-width-95 > *,
  *:first-child + html .mobile-width-100 > * {
    margin-left: expression(!this.className.match(/width-/) && "10px");
    margin-right: expression(!this.className.match(/width-/) && "10px");
  }
  .is-parent,
  .region-row {
    padding-left: 0;
    padding-right: 0;
  }
  .width-5,
  .width-10,
  .width-15,
  .width-20,
  .width-25,
  .width-30,
  .width-33,
  .width-35,
  .width-40,
  .width-45,
  .width-50,
  .width-55,
  .width-60,
  .width-65,
  .width-66,
  .width-67,
  .width-70,
  .width-75,
  .width-80,
  .width-85,
  .width-90,
  .width-95,
  .mobile-width-5,
  .mobile-width-10,
  .mobile-width-15,
  .mobile-width-20,
  .mobile-width-25,
  .mobile-width-30,
  .mobile-width-33,
  .mobile-width-35,
  .mobile-width-40,
  .mobile-width-45,
  .mobile-width-50,
  .mobile-width-55,
  .mobile-width-60,
  .mobile-width-65,
  .mobile-width-66,
  .mobile-width-67,
  .mobile-width-70,
  .mobile-width-75,
  .mobile-width-80,
  .mobile-width-85,
  .mobile-width-90,
  .mobile-width-95 {
    float: left;
  }
  .width-5 {
    width: 5%;
  }
  .width-10 {
    width: 10%;
  }
  .width-15 {
    width: 15%;
  }
  .width-20 {
    width: 20%;
  }
  .width-25 {
    width: 25%;
  }
  .width-30 {
    width: 30%;
  }
  .width-33 {
    width: 33.33334%;
  }
  .width-35 {
    width: 35%;
  }
  .width-40 {
    width: 40%;
  }
  .width-45 {
    width: 45%;
  }
  .width-50 {
    width: 50%;
  }
  .width-55 {
    width: 55%;
  }
  .width-60 {
    width: 60%;
  }
  .width-65 {
    width: 65%;
  }
  .width-66 {
    width: 66.66667%;
  }
  .width-67 {
    width: 67%;
  }
  .width-70 {
    width: 70%;
  }
  .width-75 {
    width: 75%;
  }
  .width-80 {
    width: 80%;
  }
  .width-85 {
    width: 85%;
  }
  .width-90 {
    width: 90%;
  }
  .width-95 {
    width: 95%;
  }
  .width-100 {
    clear: both;
    width: 100%;
  }
}
/* Tablet */
@media screen and (max-width: 1023px) {
  .mobile-width-5 {
    width: 5%;
  }
  .mobile-width-10 {
    width: 10%;
  }
  .mobile-width-15 {
    width: 15%;
  }
  .mobile-width-20 {
    width: 20%;
  }
  .mobile-width-25 {
    width: 25%;
  }
  .mobile-width-30 {
    width: 30%;
  }
  .mobile-width-33 {
    width: 33.333%;
  }
  .mobile-width-35 {
    width: 35%;
  }
  .mobile-width-40 {
    width: 40%;
  }
  .mobile-width-45 {
    width: 45%;
  }
  .mobile-width-50 {
    width: 50%;
  }
  .mobile-width-55 {
    width: 55%;
  }
  .mobile-width-60 {
    width: 60%;
  }
  .mobile-width-65 {
    width: 65%;
  }
  .mobile-width-66 {
    width: 66.667%;
  }
  .mobile-width-70 {
    width: 70%;
  }
  .mobile-width-75 {
    width: 75%;
  }
  .mobile-width-80 {
    width: 80%;
  }
  .mobile-width-85 {
    width: 85%;
  }
  .mobile-width-90 {
    width: 90%;
  }
  .mobile-width-95 {
    width: 95%;
  }
  .mobile-width-100 {
    width: 100%;
    clear: both;
  }
}
/* Desktop - 768 up */
@media screen and (min-width: 1024px) {
  .container,
  .region-row {
    max-width: 1280px;
    max-width: var(--container-size);
  }
}
/* New CSS Grid */
@supports (display: grid) {
  [class*=grid] {
    grid-column-gap: var(--grid-gap);
  }
  @media only screen and (min-width: 768px) {
    [class*=grid] {
      display: grid;
    }
  }
  [class*=grid]::before, [class*=grid]::after {
    content: initial;
  }
  [class*=width-] {
    width: 100%;
    padding: 0;
  }
}
/* 2 columns */
.grid.two {
  grid-template-columns: var(--grid-2);
}

/* 3 columns */
.grid.three {
  grid-template-columns: var(--grid-2);
}
@media only screen and (min-width: 1024px) {
  .grid.three {
    grid-template-columns: var(--grid-3);
  }
}

/* 4 columns */
.grid.four {
  grid-template-columns: var(--grid-3);
}
@media only screen and (min-width: 1024px) {
  .grid.four {
    grid-template-columns: var(--grid-4);
  }
}

/* 5 columns */
.grid.five {
  grid-template-columns: var(--grid-5);
}

/* 12 columns */
.grid.twelve {
  grid-template-columns: var(--grid-12);
}

/* 3 + 4 columns grid */
.grid.grid--4-5 {
  grid-template-columns: var(--grid-4-5);
}

/* Autogrid grid */
.grid.auto-fill {
  grid-template-columns: var(--auto-fill);
}

/* Forms
-------------------------------------------*/
/* Forms (Critical: All) */
form {
  margin: 0 0 1.6rem 0;
  padding: 0;
}

label {
  margin: 0 0 0.75rem;
  font-weight: 700;
  color: #121212;
  display: inline-block;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../img/icons/select-chevron.jpg) 100%/20px no-repeat transparent;
  height: 25px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  width: 100%;
}

textarea {
  min-height: 12vh;
  resize: vertical;
}

/* checkbox */
.form-type-checkboxes label:first-child,
.webform-type-webform-term-checkboxes > legend {
  background: #f4f4f4;
  display: flex;
  align-items: center;
  text-transform: none;
  font-weight: 400;
  padding: var(--spacing-small);
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: var(--spacing-default);
  box-sizing: border-box;
  width: 100%;
}
.form-type-checkboxes label:first-child p,
.webform-type-webform-term-checkboxes > legend p {
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 400;
  margin-left: 5px;
}
.form-type-checkboxes label:first-child i, .form-type-checkboxes label:first-child em,
.webform-type-webform-term-checkboxes > legend i,
.webform-type-webform-term-checkboxes > legend em {
  font-style: normal;
  margin-right: 5px;
}

/* Help paragraph */
.field-help {
  --field-help-bg:#f4f4f4;
  padding: var(--spacing-small);
  background: #f4f4f4;
  background: var(--field-help-bg);
  text-align: center;
}
.field-help p {
  font-size: 16px;
  font-size: 1.6rem;
}

.url-fields .field-help {
  --field-help-bg: #F4F4F4 !important;
}

.package-basic .field-help:first-of-type:not(.not-published) {
  --field-help-bg: #F4F4F4;
}

.package-bronze .field-help:first-of-type:not(.not-published) {
  --field-help-bg: #FDEDDE;
}

.package-silver .field-help:first-of-type:not(.not-published) {
  --field-help-bg: #F4F4F4;
}

.package-gold .field-help:first-of-type:not(.not-published) {
  --field-help-bg: #EDE9BD;
}

/* required */
.form-required:after,
.fieldset-legend.form-required:after {
  content: "*";
  display: inline-block;
  color: red;
}

/* webform-submission-form */
.webform-submission-form .form-item {
  margin-bottom: 1.6rem;
}
.webform-submission-form .webform-button--next {
  margin-top: var(--spacing-small);
}
.webform-submission-form .form-item-countries {
  margin-bottom: 0;
}

/* webform-general */
.webform-general .horizontal-tabs-list {
  --spacing-medium:4rem;
  margin-bottom: var(--spacing-medium);
}
.webform-general .field-help {
  margin-bottom: 2rem;
}
.webform-general .cta-btn-duo {
  margin-top: 4rem;
}
.webform-general .cta-btn.outline a {
  --cta-border: #0066ba;
  --cta-text-color: #0066ba;
}
.webform-general .cta-btn.outline a:hover {
  --cta-color: #0066ba;
}

.webform-progress__status {
  display: none;
}

.webform-required {
  background: #f4f4f4;
  padding: 0.75rem;
}

/* add url */
.url-field:not(:last-of-type) {
  border-bottom: 1px dashed var(--color-border-alt);
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
}

/* form-wrapper */
.form-wrapper > * + * {
  margin-top: 1.6rem;
  margin-top: var(--flow-space);
}

/* fieldset
-------------------------------------------*/
fieldset {
  margin: 0 0 1.6rem 0;
  padding: 0;
  border-width: 0;
}

.webform-term-checkboxes-scroll .fieldset-wrapper {
  overflow: initial;
  max-height: inherit;
  padding: inherit;
  border: none;
}

.fieldset-legend {
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1.6rem;
}

/* form-item
-------------------------------------------*/
.form-item {
  width: 100%;
  --color-border: #CCCCCC;
  --form-input-bg: #fff;
}
.form-item label {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1.6rem;
}
.form-item [type=email],
.form-item [type=number],
.form-item [type=password],
.form-item [type=text],
.form-item [type=search],
.form-item [type=tel],
.form-item input.form-item,
.form-item textarea {
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  display: block;
  height: 100%;
  width: 100%;
  background-color: #f4f4f4;
  background-color: var(--form-input-bg);
  border: 1px solid #121212;
  border: 1px solid var(--color-border);
  border-radius: 0px;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Poppins", sans-serif;
  color: #121212;
  padding: 0.75rem;
  box-sizing: border-box;
  border: 1px solid var(--color-border);
  height: 40px;
  background: #ffffff;
}
.form-item [type=email]::-webkit-input-placeholder,
.form-item [type=number]::-webkit-input-placeholder,
.form-item [type=password]::-webkit-input-placeholder,
.form-item [type=text]::-webkit-input-placeholder,
.form-item [type=search]::-webkit-input-placeholder,
.form-item [type=tel]::-webkit-input-placeholder,
.form-item input.form-item::-webkit-input-placeholder,
.form-item textarea::-webkit-input-placeholder { /* Edge */
  font-size: 16px;
  font-size: 1.6rem;
}
.form-item [type=email]:-ms-input-placeholder,
.form-item [type=number]:-ms-input-placeholder,
.form-item [type=password]:-ms-input-placeholder,
.form-item [type=text]:-ms-input-placeholder,
.form-item [type=search]:-ms-input-placeholder,
.form-item [type=tel]:-ms-input-placeholder,
.form-item input.form-item:-ms-input-placeholder,
.form-item textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  font-size: 16px;
  font-size: 1.6rem;
}
.form-item [type=email]::placeholder,
.form-item [type=number]::placeholder,
.form-item [type=password]::placeholder,
.form-item [type=text]::placeholder,
.form-item [type=search]::placeholder,
.form-item [type=tel]::placeholder,
.form-item input.form-item::placeholder,
.form-item textarea::placeholder {
  font-size: 16px;
  font-size: 1.6rem;
}
.form-item [type=email]:focus,
.form-item [type=number]:focus,
.form-item [type=password]:focus,
.form-item [type=text]:focus,
.form-item [type=search]:focus,
.form-item [type=tel]:focus,
.form-item input.form-item:focus,
.form-item textarea:focus {
  outline: #157f5c dashed 1px;
  outline-offset: 0.25rem;
}
.form-item select {
  border: 1px solid var(--color-border);
  height: 40px;
  padding: 0 10px;
  font-size: 16px;
  font-size: 1.6rem;
  background: url(../img/icons/select-chevron.jpg) 99%/20px no-repeat transparent;
}
.form-item .description {
  font-size: 16px;
  font-size: 1.6rem;
  color: #606060;
  margin-top: var(--spacing-small);
  border-radius: var(--border-radius-default);
}

.js-form-item:not(.js-form-type-radio) {
  margin-bottom: var(--spacing-default);
}

.field-item span {
  color: var(--text-color-default);
}

/* User form
-------------------------------------------*/
.user-form .js-form-item:not(.js-form-type-radio) {
  margin-bottom: var(--spacing-default);
}

/* Login form
-------------------------------------------*/
/* webform radios
-------------------------------------------*/
.js-webform-radios .form-item {
  margin-bottom: 0;
}

/* password-confirm-message
-------------------------------------------*/
.password-confirm-message {
  margin-top: var(--spacing-small);
}
.password-confirm-message .error {
  color: red;
}
.password-confirm-message .ok {
  color: green;
}

/* js-form-type-managed-file
-------------------------------------------*/
.form-type-managed-file,
.js-form-type-managed-file {
  --cta-color: #121212;
  --cta-border: #121212;
  margin-bottom: var(--spacing-default);
}
.form-type-managed-file .form-submit,
.js-form-type-managed-file .form-submit {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 10px;
}
.form-type-managed-file .description,
.js-form-type-managed-file .description {
  font-size: 16px;
  font-size: 1.6rem;
  background: #f4f4f4;
  padding: var(--spacing-small);
}

.form-file {
  border: 1px solid var(--color-border);
  width: 100%;
  text-indent: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: var(--spacing-default);
}

.webform-image-file .js-form-type-checkbox {
  margin-bottom: 0;
  height: 40px;
}

/* js-form-type-checkbox
-------------------------------------------*/
@media only screen and (min-width: 1024px) {
  .js-form-type-checkbox {
    height: 60px;
  }
}
.js-form-type-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.js-form-type-checkbox input[type=checkbox] + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  line-height: 1.3;
  display: block;
  align-items: center;
}
.js-form-type-checkbox input[type=checkbox] + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 25px;
  height: 25px;
  background: var(--form-input-bg);
  border: 1px solid var(--color-border);
  float: left;
  margin-bottom: 0.35rem;
  margin-right: 15px;
  position: relative;
  top: 1px;
}
.js-form-type-checkbox input[type=checkbox]:checked + label:after {
  content: "";
  position: absolute;
  left: 9px;
  top: 14px;
  background: var(--form-input-bg);
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 #fff;
  transform: rotate(45deg);
}
.js-form-type-checkbox input[type=checkbox]:checked + label:before {
  background: #00aeef;
  border: 1px solid #00aeef;
}

.webform-type-webform-term-checkboxes .description {
  display: none;
}

.webform-term-checkboxes {
  margin-bottom: 0 !important;
  margin-top: 0;
}

.webform-term-checkboxes .fieldset-wrapper .form-checkboxes {
  display: block;
}
@media only screen and (min-width: 768px) {
  .webform-term-checkboxes .fieldset-wrapper .form-checkboxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
  }
}
.webform-term-checkboxes .fieldset-wrapper .form-checkboxes .js-form-type-checkbox {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .webform-term-checkboxes .fieldset-wrapper .form-checkboxes .js-form-type-checkbox {
    width: 32%;
    padding: 0 5px;
  }
}
.webform-term-checkboxes .fieldset-wrapper .form-checkboxes label {
  font-size: 17px;
  font-size: 1.7rem;
  text-transform: inherit;
  hyphens: none;
}

/* Edit listing form
-------------------------------------------*/
.webform-submission-listing-form {
  display: grid;
}
.webform-submission-listing-form .webform-required {
  grid-row: 4;
  margin-top: var(--spacing-medium);
}

/* Delegating form
-------------------------------------------*/
.webform-message#edit-1 {
  margin-bottom: var(--spacing-medium);
}

.webform-submission-delegation-form .js-form-type-processed-text {
  margin-bottom: var(--space-md);
}
.webform-submission-delegation-form .form-item-requester-phone-number {
  margin-bottom: 0 !important;
}
.webform-submission-delegation-form .webform-email-confirm--wrapper {
  margin-top: 0;
}
.webform-submission-delegation-form .webform-term-checkboxes {
  margin-top: var(--spacing-small);
}
.webform-submission-delegation-form .js-form-type-checkbox {
  height: auto;
}
.webform-submission-delegation-form [data-drupal-selector=edit-max-of-10-selections] {
  padding-top: var(--space);
}

/* Delegating form
-------------------------------------------*/
.path-webform fieldset legend {
  font-weight: bold;
}
.path-webform .webform-submission-form .form-item {
  margin-bottom: 1.6rem;
}
@media only screen and (min-width: 1024px) {
  .path-webform .webform-submission-form .form-item .js-form-type-checkbox {
    height: auto;
  }
}
.path-webform h2.webform-section-title {
  font-size: 3rem;
  border-top: 5px solid #f4f4f4;
  padding-top: 20px;
  margin-top: 35px;
}
.path-webform input[type=date i],
.path-webform input[type=time i] {
  font-family: "Poppins", sans-serif;
  padding-inline-start: 1px;
  cursor: default;
  padding: 20px;
  font-size: 1.8rem;
}
.path-webform .webform-confirmation, .path-webform .webform-submission {
  --box-bg: #fff;
  background: var(--box-bg);
  border-radius: var(--border-radius-alt);
  padding: 1.6em;
  position: relative;
}
.path-webform .webform-submission fieldset {
  border-top: 3px solid #f4f4f4;
}
.path-webform .webform-submission fieldset legend {
  border: 1px solid #f4f4f4;
  background: #f4f4f4;
  padding: 10px;
}
.path-webform .webform-submission-information {
  background: #f4f4f4;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  margin-top: -15px;
}
.path-webform .webform-submission-information summary {
  margin-bottom: 10px;
  display: block;
}
.path-webform .webform-details-summary-save {
  background: #ffffff;
  padding: 20px;
}
.path-webform .form-managed-file {
  padding: 20px;
  background: #f4f4f4;
  display: block;
  margin-bottom: 10px;
}
.path-webform .form-managed-file input {
  margin-top: 10px;
}
.path-webform .file--mime-image-png.file--image, .path-webform .webform-multiple-table {
  padding: 20px;
  background: #f4f4f4;
  display: block;
  margin-bottom: 10px;
}
.path-webform .webform-multiple-table {
  margin-bottom: 15px;
}
.path-webform .webform-signature-image {
  border: 5px solid #f4f4f4;
}
.path-webform .webform-multiple-add {
  display: flex;
  flex-direction: column;
}
.path-webform .webform-multiple-add input {
  margin-bottom: 15px;
}

/* Scrollbar
-------------------------------------------*/
/* Style scrollbars for iOS and Mac OS (Critical: All) */
::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: #b4b4b4;
  border-radius: 0;
}

::-webkit-scrollbar-track {
  margin: var(--spacing-small) 0;
  background-color: transparent;
  border: 1px solid #E8E8E8;
  border-radius: 0px;
}

/* system
-------------------------------------------*/
/* System fixes hide classes */
.main-nav,
.language-switcher,
#block-registration,
.insurance-certificate,
.stand-submissions {
  display: none;
}

.node-20975 .stand-submissions,
.node-20974 .insurance-certificate {
  display: block;
}

.manual-print-all .local-nav {
  display: none;
}
.manual-print-all h1 {
  text-align: center;
}
.manual-print-all .hero__title {
  display: none;
}
.manual-print-all .page-title {
  font-size: 43px;
  font-size: 4.3rem;
  margin-bottom: 0;
}
.manual-print-all .section.hero {
  padding-bottom: 0px;
  margin-bottom: 30px;
}
.manual-print-all .box--related-checklist.overflow,
.manual-print-all .item-list.contact-item.box,
.manual-print-all .path-cart .checklist-table tr .item-list.contact-item.checklist-table,
.path-cart .checklist-table tr .manual-print-all .item-list.contact-item.checklist-table,
.manual-print-all .path-cart .checkout-order-summary tr .item-list.contact-item.checklist-table,
.path-cart .checkout-order-summary tr .manual-print-all .item-list.contact-item.checklist-table,
.manual-print-all .path-checkout .checklist-table tr .item-list.contact-item.checklist-table,
.path-checkout .checklist-table tr .manual-print-all .item-list.contact-item.checklist-table,
.manual-print-all .path-checkout .checkout-order-summary tr .item-list.contact-item.checklist-table,
.path-checkout .checkout-order-summary tr .manual-print-all .item-list.contact-item.checklist-table,
.manual-print-all .item-list.contact-item.user-form,
.manual-print-all .item-list.contact-item.user-login-form {
  margin-top: 20px;
}

/* Drupal edit tabs */
#block-portal22-local-tasks,
.system-tabs {
  margin-top: 4rem;
}
#block-portal22-local-tasks h2,
.system-tabs h2 {
  display: none;
}
#block-portal22-local-tasks ul,
.system-tabs ul {
  text-align: center;
  padding: 15px 0;
  margin-bottom: 0;
  margin-top: 0;
}
#block-portal22-local-tasks ul li,
.system-tabs ul li {
  display: inline-block;
  list-style: none;
  margin: 0 7px;
}
#block-portal22-local-tasks ul li:before,
.system-tabs ul li:before {
  display: none;
}
#block-portal22-local-tasks ul li a,
.system-tabs ul li a {
  --cta-color: transparent;
  --cta-border: #606060;
  --cta-text-color: #606060;
  text-decoration: none;
  display: block;
  background: #ffffff;
  background: var(--cta-color);
  padding: 10px 15px 10px 15px;
  color: #606060;
  color: var(--cta-text-color);
  font-weight: 400;
  border: 1px solid var(--cta-border);
  font-size: 18px;
  font-size: 1.8rem;
  border-radius: 10px;
}
#block-portal22-local-tasks ul li a:hover,
.system-tabs ul li a:hover {
  --cta-border: #121212;
  --cta-text-color: #ffffff;
  --cta-color: #121212;
}

/* Contextual field */
.contextual-region .contextual .contextual-links a,
.contextual-region .contextual .contextual-links a:hover {
  text-decoration: none;
  background: none;
}

.touchevents .contextual-region .contextual .contextual-links a {
  font-size: small;
  text-transform: none;
  font-weight: normal;
}

.contextual-links li a {
  height: inherit !important;
}

.portal-top__right ul .contextual-links,
.portal-navigation ul.contextual-links,
.main-nav ul.contextual-links {
  display: none;
}

/* Page tabs */
ul.page-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 2rem;
  grid-column: 1/-1;
}
ul.page-tabs li {
  margin: 3px;
}
ul.page-tabs li a {
  border-radius: 3px;
  color: #ffffff;
  background: #00aeef;
  padding: 0rem 0.5rem;
  margin: 0 0.25rem;
}
ul.page-tabs li a:hover {
  background: #2e35aa;
}

/* Admin menu */
ul.toolbar-menu li:before {
  display: none;
}

/* Messages */
div[aria-label="Status message"] {
  --link-color:#317031;
  margin-top: var(--spacing-large);
  border-color: #be7;
  background-color: #f4ffe6;
  color: #317031;
  padding: var(--spacing-default);
  border: 2px solid rgba(49, 112, 49, 0.1490196078);
}

div[aria-label="Error message"] {
  --link-color:#a40800;
  margin-top: var(--spacing-large);
  background-color: #ffebec;
  color: #a40800;
  padding: var(--spacing-default);
  border: 2px solid #ffbdc3;
}
div[aria-label="Error message"] ul li {
  color: #a40800;
}

/* Blocks */
/* card-item
-------------------------------------------*/
.card-item {
  --card-bg: #fff;
  --icon-color:#222222;
  align-items: center;
  background: var(--card-bg);
  border-radius: var(--border-radius-default);
  display: flex;
  flex-direction: column;
  padding: 2em;
  place-content: center;
  margin-bottom: 1.6rem;
  margin-bottom: var(--spacing-medium);
}
@media only screen and (min-width: 768px) {
  .card-item {
    margin-bottom: 0;
  }
}
.card-item svg {
  color: var(--icon-color);
  font-size: 4em;
  margin-top: 25px;
}
.card-item h3 {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2em;
}
@media only screen and (min-width: 768px) {
  .card-item h3 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.card-item img {
  width: 10rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.8rem;
}
.card-item .card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 180px;
  justify-content: space-around;
  padding-bottom: 2em;
}
.card-item a {
  text-decoration: none;
}
.card-item--information {
  background: var(--card-bg);
}
.card-item:hover {
  cursor: pointer;
  transform: translate(0px, -20px);
  transition: all 0.2s ease-out;
  top: -4px;
}

.card-item.unpublished h3, .card-item.unpublished h5, .card-item.unpublished svg {
  color: var(--unpublished-color);
}
.card-item.unpublished h3 {
  margin-bottom: 0;
  margin-top: 10px;
}
.card-item.unpublished h5 {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0;
  background: #f4f4f4;
  padding: 5px 10px;
  border-radius: var(--border-radius-default);
  margin-top: 15px;
}
.card-item.unpublished a {
  pointer-events: none;
  cursor: default;
}

/* box
-------------------------------------------*/
.box > *, .path-cart .checklist-table tr .checklist-table > *,
.path-cart .checkout-order-summary tr .checklist-table > *,
.path-checkout .checklist-table tr .checklist-table > *,
.path-checkout .checkout-order-summary tr .checklist-table > *, .user-form > *, .user-login-form > * {
  position: relative;
  hyphens: none;
}

.box, .path-cart .checklist-table tr .checklist-table,
.path-cart .checkout-order-summary tr .checklist-table,
.path-checkout .checklist-table tr .checklist-table,
.path-checkout .checkout-order-summary tr .checklist-table, .user-form, .user-login-form,
.webform-submission-form,
.path-cart form,
.commerce-checkout-flow {
  --box-bg: #fff;
  background: var(--box-bg);
  border-radius: var(--border-radius-alt);
  padding: 1.6em;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .box, .path-cart .checklist-table tr .checklist-table,
  .path-cart .checkout-order-summary tr .checklist-table,
  .path-checkout .checklist-table tr .checklist-table,
  .path-checkout .checkout-order-summary tr .checklist-table, .user-form, .user-login-form,
  .webform-submission-form,
  .path-cart form,
  .commerce-checkout-flow {
    padding: 3.2rem;
  }
}
@media only screen and (min-width: 768px) {
  .box, .path-cart .checklist-table tr .checklist-table,
  .path-cart .checkout-order-summary tr .checklist-table,
  .path-checkout .checklist-table tr .checklist-table,
  .path-checkout .checkout-order-summary tr .checklist-table, .user-form, .user-login-form,
  .webform-submission-form,
  .path-cart form,
  .commerce-checkout-flow {
    padding: 3.2rem;
    padding: var(--spacing-medium);
  }
}
.box__content,
.webform-submission-form__content,
.path-cart form__content,
.commerce-checkout-flow__content {
  position: relative;
}
.box__content div,
.webform-submission-form__content div,
.path-cart form__content div,
.commerce-checkout-flow__content div {
  font-weight: 400;
}
.box__icon,
.webform-submission-form__icon,
.path-cart form__icon,
.commerce-checkout-flow__icon {
  --box-icon-bg:#f4f4f4;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  position: absolute;
  right: -10px;
  top: -10px;
  background: var(--box-icon-bg);
  background-size: 300px;
  display: none;
}
@media only screen and (min-width: 1024px) {
  .box__icon,
  .webform-submission-form__icon,
  .path-cart form__icon,
  .commerce-checkout-flow__icon {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.box__title,
.webform-submission-form__title,
.path-cart form__title,
.commerce-checkout-flow__title {
  --text-color-default:#606060;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
  grid-column: 1/-1;
}
@media only screen and (min-width: 768px) {
  .box__title,
  .webform-submission-form__title,
  .path-cart form__title,
  .commerce-checkout-flow__title {
    margin-bottom: 2em;
  }
}
.box__message p,
.webform-submission-form__message p,
.path-cart form__message p,
.commerce-checkout-flow__message p {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 300;
}
@media only screen and (min-width: 1024px) {
  .box__message p,
  .webform-submission-form__message p,
  .path-cart form__message p,
  .commerce-checkout-flow__message p {
    width: 70ch;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.6em;
    margin-bottom: var(--spacing-medium);
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.box__message p a,
.box__message p a:visited,
.webform-submission-form__message p a,
.webform-submission-form__message p a:visited,
.path-cart form__message p a,
.path-cart form__message p a:visited,
.commerce-checkout-flow__message p a,
.commerce-checkout-flow__message p a:visited {
  font-weight: 400;
}
.box h2.section-title, .path-cart .checklist-table tr .checklist-table h2.section-title,
.path-cart .checkout-order-summary tr .checklist-table h2.section-title,
.path-checkout .checklist-table tr .checklist-table h2.section-title,
.path-checkout .checkout-order-summary tr .checklist-table h2.section-title, .user-form h2.section-title, .user-login-form h2.section-title,
.webform-submission-form h2.section-title,
.path-cart form h2.section-title,
.commerce-checkout-flow h2.section-title {
  grid-column: 1/-1;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 700;
}
.box h2.section-title:not(.center), .path-cart .checklist-table tr .checklist-table h2.section-title:not(.center),
.path-cart .checkout-order-summary tr .checklist-table h2.section-title:not(.center),
.path-checkout .checklist-table tr .checklist-table h2.section-title:not(.center),
.path-checkout .checkout-order-summary tr .checklist-table h2.section-title:not(.center), .user-form h2.section-title:not(.center), .user-login-form h2.section-title:not(.center),
.webform-submission-form h2.section-title:not(.center),
.path-cart form h2.section-title:not(.center),
.commerce-checkout-flow h2.section-title:not(.center) {
  text-align: left;
  width: 20ch;
}
.box .box-strip-wrapper, .path-cart .checklist-table tr .checklist-table .box-strip-wrapper,
.path-cart .checkout-order-summary tr .checklist-table .box-strip-wrapper,
.path-checkout .checklist-table tr .checklist-table .box-strip-wrapper,
.path-checkout .checkout-order-summary tr .checklist-table .box-strip-wrapper, .user-form .box-strip-wrapper, .user-login-form .box-strip-wrapper,
.webform-submission-form .box-strip-wrapper,
.path-cart form .box-strip-wrapper,
.commerce-checkout-flow .box-strip-wrapper {
  --box-strip-bg: #f4f4f4;
  --box-strip-text: $grey-dark;
  color: var(--box-strip-text);
  background: var(--box-strip-bg);
}
.box .h3, .path-cart .checklist-table tr .checklist-table .h3,
.path-cart .checkout-order-summary tr .checklist-table .h3,
.path-checkout .checklist-table tr .checklist-table .h3,
.path-checkout .checkout-order-summary tr .checklist-table .h3, .user-form .h3, .user-login-form .h3,
.box th.views-field,
.path-cart .checklist-table tr .checklist-table th.views-field,
.path-cart .checkout-order-summary tr .checklist-table th.views-field,
.path-checkout .checklist-table tr .checklist-table th.views-field,
.path-checkout .checkout-order-summary tr .checklist-table th.views-field,
.user-form th.views-field,
.user-login-form th.views-field,
.webform-submission-form .h3,
.webform-submission-form th.views-field,
.path-cart form .h3,
.path-cart form th.views-field,
.commerce-checkout-flow .h3,
.commerce-checkout-flow th.views-field {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media only screen and (min-width: 1024px) {
  .box .h3, .path-cart .checklist-table tr .checklist-table .h3,
  .path-cart .checkout-order-summary tr .checklist-table .h3,
  .path-checkout .checklist-table tr .checklist-table .h3,
  .path-checkout .checkout-order-summary tr .checklist-table .h3, .user-form .h3, .user-login-form .h3,
  .box th.views-field,
  .path-cart .checklist-table tr .checklist-table th.views-field,
  .path-cart .checkout-order-summary tr .checklist-table th.views-field,
  .path-checkout .checklist-table tr .checklist-table th.views-field,
  .path-checkout .checkout-order-summary tr .checklist-table th.views-field,
  .user-form th.views-field,
  .user-login-form th.views-field,
  .webform-submission-form .h3,
  .webform-submission-form th.views-field,
  .path-cart form .h3,
  .path-cart form th.views-field,
  .commerce-checkout-flow .h3,
  .commerce-checkout-flow th.views-field {
    font-size: 31px;
    font-size: 3.1rem;
  }
}
.box .cta-btn, .path-cart .checklist-table tr .checklist-table .cta-btn,
.path-cart .checkout-order-summary tr .checklist-table .cta-btn,
.path-checkout .checklist-table tr .checklist-table .cta-btn,
.path-checkout .checkout-order-summary tr .checklist-table .cta-btn, .user-form .cta-btn, .user-login-form .cta-btn,
.box .cta-btn-duo,
.path-cart .checklist-table tr .checklist-table .cta-btn-duo,
.path-cart .checkout-order-summary tr .checklist-table .cta-btn-duo,
.path-checkout .checklist-table tr .checklist-table .cta-btn-duo,
.path-checkout .checkout-order-summary tr .checklist-table .cta-btn-duo,
.user-form .cta-btn-duo,
.user-login-form .cta-btn-duo,
.webform-submission-form .cta-btn,
.webform-submission-form .cta-btn-duo,
.path-cart form .cta-btn,
.path-cart form .cta-btn-duo,
.commerce-checkout-flow .cta-btn,
.commerce-checkout-flow .cta-btn-duo {
  grid-column: 1/-1;
}
.box .cta-btn, .path-cart .checklist-table tr .checklist-table .cta-btn,
.path-cart .checkout-order-summary tr .checklist-table .cta-btn,
.path-checkout .checklist-table tr .checklist-table .cta-btn,
.path-checkout .checkout-order-summary tr .checklist-table .cta-btn, .user-form .cta-btn, .user-login-form .cta-btn,
.webform-submission-form .cta-btn,
.path-cart form .cta-btn,
.commerce-checkout-flow .cta-btn {
  margin-top: 3rem;
}
.box .cta-btn-duo .cta-btn, .path-cart .checklist-table tr .checklist-table .cta-btn-duo .cta-btn,
.path-cart .checkout-order-summary tr .checklist-table .cta-btn-duo .cta-btn,
.path-checkout .checklist-table tr .checklist-table .cta-btn-duo .cta-btn,
.path-checkout .checkout-order-summary tr .checklist-table .cta-btn-duo .cta-btn, .user-form .cta-btn-duo .cta-btn, .user-login-form .cta-btn-duo .cta-btn,
.webform-submission-form .cta-btn-duo .cta-btn,
.path-cart form .cta-btn-duo .cta-btn,
.commerce-checkout-flow .cta-btn-duo .cta-btn {
  margin-top: 0;
}
.box svg, .path-cart .checklist-table tr .checklist-table svg,
.path-cart .checkout-order-summary tr .checklist-table svg,
.path-checkout .checklist-table tr .checklist-table svg,
.path-checkout .checkout-order-summary tr .checklist-table svg, .user-form svg, .user-login-form svg,
.webform-submission-form svg,
.path-cart form svg,
.commerce-checkout-flow svg {
  font-size: 1.5em;
}
.box dt, .path-cart .checklist-table tr .checklist-table dt,
.path-cart .checkout-order-summary tr .checklist-table dt,
.path-checkout .checklist-table tr .checklist-table dt,
.path-checkout .checkout-order-summary tr .checklist-table dt, .user-form dt, .user-login-form dt,
.box dd,
.path-cart .checklist-table tr .checklist-table dd,
.path-cart .checkout-order-summary tr .checklist-table dd,
.path-checkout .checklist-table tr .checklist-table dd,
.path-checkout .checkout-order-summary tr .checklist-table dd,
.user-form dd,
.user-login-form dd,
.box ol li,
.path-cart .checklist-table tr .checklist-table ol li,
.path-cart .checkout-order-summary tr .checklist-table ol li,
.path-checkout .checklist-table tr .checklist-table ol li,
.path-checkout .checkout-order-summary tr .checklist-table ol li,
.user-form ol li,
.user-login-form ol li,
.box ul li,
.path-cart .checklist-table tr .checklist-table ul li,
.path-cart .checkout-order-summary tr .checklist-table ul li,
.path-checkout .checklist-table tr .checklist-table ul li,
.path-checkout .checkout-order-summary tr .checklist-table ul li,
.user-form ul li,
.user-login-form ul li,
.webform-submission-form dt,
.webform-submission-form dd,
.webform-submission-form ol li,
.webform-submission-form ul li,
.path-cart form dt,
.path-cart form dd,
.path-cart form ol li,
.path-cart form ul li,
.commerce-checkout-flow dt,
.commerce-checkout-flow dd,
.commerce-checkout-flow ol li,
.commerce-checkout-flow ul li {
  font-weight: 400;
}
.box .box-label, .path-cart .checklist-table tr .checklist-table .box-label,
.path-cart .checkout-order-summary tr .checklist-table .box-label,
.path-checkout .checklist-table tr .checklist-table .box-label,
.path-checkout .checkout-order-summary tr .checklist-table .box-label, .user-form .box-label, .user-login-form .box-label,
.webform-submission-form .box-label,
.path-cart form .box-label,
.commerce-checkout-flow .box-label {
  color: #3C3C3C;
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: uppercase;
  display: block;
}
.box .box__content.flow h2 + p, .path-cart .checklist-table tr .checklist-table .box__content.flow h2 + p,
.path-cart .checkout-order-summary tr .checklist-table .box__content.flow h2 + p,
.path-checkout .checklist-table tr .checklist-table .box__content.flow h2 + p,
.path-checkout .checkout-order-summary tr .checklist-table .box__content.flow h2 + p, .user-form .box__content.flow h2 + p, .user-login-form .box__content.flow h2 + p,
.box .box__content.flow h3 + p,
.path-cart .checklist-table tr .checklist-table .box__content.flow h3 + p,
.path-cart .checkout-order-summary tr .checklist-table .box__content.flow h3 + p,
.path-checkout .checklist-table tr .checklist-table .box__content.flow h3 + p,
.path-checkout .checkout-order-summary tr .checklist-table .box__content.flow h3 + p,
.user-form .box__content.flow h3 + p,
.user-login-form .box__content.flow h3 + p,
.box .box__content.flow h4 + p,
.path-cart .checklist-table tr .checklist-table .box__content.flow h4 + p,
.path-cart .checkout-order-summary tr .checklist-table .box__content.flow h4 + p,
.path-checkout .checklist-table tr .checklist-table .box__content.flow h4 + p,
.path-checkout .checkout-order-summary tr .checklist-table .box__content.flow h4 + p,
.user-form .box__content.flow h4 + p,
.user-login-form .box__content.flow h4 + p,
.box .box__content.flow h5 + p,
.path-cart .checklist-table tr .checklist-table .box__content.flow h5 + p,
.path-cart .checkout-order-summary tr .checklist-table .box__content.flow h5 + p,
.path-checkout .checklist-table tr .checklist-table .box__content.flow h5 + p,
.path-checkout .checkout-order-summary tr .checklist-table .box__content.flow h5 + p,
.user-form .box__content.flow h5 + p,
.user-login-form .box__content.flow h5 + p,
.webform-submission-form .box__content.flow h2 + p,
.webform-submission-form .box__content.flow h3 + p,
.webform-submission-form .box__content.flow h4 + p,
.webform-submission-form .box__content.flow h5 + p,
.path-cart form .box__content.flow h2 + p,
.path-cart form .box__content.flow h3 + p,
.path-cart form .box__content.flow h4 + p,
.path-cart form .box__content.flow h5 + p,
.commerce-checkout-flow .box__content.flow h2 + p,
.commerce-checkout-flow .box__content.flow h3 + p,
.commerce-checkout-flow .box__content.flow h4 + p,
.commerce-checkout-flow .box__content.flow h5 + p {
  margin-top: 0;
}
.box .label-mobile, .path-cart .checklist-table tr .checklist-table .label-mobile,
.path-cart .checkout-order-summary tr .checklist-table .label-mobile,
.path-checkout .checklist-table tr .checklist-table .label-mobile,
.path-checkout .checkout-order-summary tr .checklist-table .label-mobile, .user-form .label-mobile, .user-login-form .label-mobile,
.webform-submission-form .label-mobile,
.path-cart form .label-mobile,
.commerce-checkout-flow .label-mobile {
  display: inline-block;
  color: #606060;
  margin-bottom: 0.25rem;
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .box .label-mobile, .path-cart .checklist-table tr .checklist-table .label-mobile,
  .path-cart .checkout-order-summary tr .checklist-table .label-mobile,
  .path-checkout .checklist-table tr .checklist-table .label-mobile,
  .path-checkout .checkout-order-summary tr .checklist-table .label-mobile, .user-form .label-mobile, .user-login-form .label-mobile,
  .webform-submission-form .label-mobile,
  .path-cart form .label-mobile,
  .commerce-checkout-flow .label-mobile {
    display: none;
  }
}
.box__content__inner,
.webform-submission-form__content__inner,
.path-cart form__content__inner,
.commerce-checkout-flow__content__inner {
  margin-bottom: var(--spacing-medium);
}
@media only screen and (min-width: 768px) {
  .box__content__inner,
  .webform-submission-form__content__inner,
  .path-cart form__content__inner,
  .commerce-checkout-flow__content__inner {
    margin-bottom: 0;
  }
}
.box__content__inner header h3,
.webform-submission-form__content__inner header h3,
.path-cart form__content__inner header h3,
.commerce-checkout-flow__content__inner header h3 {
  font-size: 23px;
  font-size: 2.3rem;
  text-transform: uppercase;
  font-weight: 700;
}
.box__content__inner .primary-msg,
.webform-submission-form__content__inner .primary-msg,
.path-cart form__content__inner .primary-msg,
.commerce-checkout-flow__content__inner .primary-msg {
  margin-bottom: 0 !important;
}
.box__content__inner .primary-msg p,
.webform-submission-form__content__inner .primary-msg p,
.path-cart form__content__inner .primary-msg p,
.commerce-checkout-flow__content__inner .primary-msg p {
  width: inherit;
  text-align: left;
  font-weight: 500;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2;
}
.box figure, .path-cart .checklist-table tr .checklist-table figure,
.path-cart .checkout-order-summary tr .checklist-table figure,
.path-checkout .checklist-table tr .checklist-table figure,
.path-checkout .checkout-order-summary tr .checklist-table figure, .user-form figure, .user-login-form figure,
.webform-submission-form figure,
.path-cart form figure,
.commerce-checkout-flow figure {
  margin-bottom: 0;
  margin-top: 0;
}
@media only screen and (min-width: 1024px) {
  .box figure img, .path-cart .checklist-table tr .checklist-table figure img,
  .path-cart .checkout-order-summary tr .checklist-table figure img,
  .path-checkout .checklist-table tr .checklist-table figure img,
  .path-checkout .checkout-order-summary tr .checklist-table figure img, .user-form figure img, .user-login-form figure img,
  .webform-submission-form figure img,
  .path-cart form figure img,
  .commerce-checkout-flow figure img {
    position: relative;
    right: -32px;
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .box .section-title--small, .path-cart .checklist-table tr .checklist-table .section-title--small,
  .path-cart .checkout-order-summary tr .checklist-table .section-title--small,
  .path-checkout .checklist-table tr .checklist-table .section-title--small,
  .path-checkout .checkout-order-summary tr .checklist-table .section-title--small, .user-form .section-title--small, .user-login-form .section-title--small,
  .webform-submission-form .section-title--small,
  .path-cart form .section-title--small,
  .commerce-checkout-flow .section-title--small {
    font-size: 42px;
    font-size: 4.2rem;
  }
}

.path-frontpage .box a, .path-frontpage .path-cart .checklist-table tr .checklist-table a, .path-cart .checklist-table tr .path-frontpage .checklist-table a,
.path-frontpage .path-cart .checkout-order-summary tr .checklist-table a,
.path-cart .checkout-order-summary tr .path-frontpage .checklist-table a,
.path-frontpage .path-checkout .checklist-table tr .checklist-table a,
.path-checkout .checklist-table tr .path-frontpage .checklist-table a,
.path-frontpage .path-checkout .checkout-order-summary tr .checklist-table a,
.path-checkout .checkout-order-summary tr .path-frontpage .checklist-table a, .path-frontpage .user-form a, .path-frontpage .user-login-form a {
  text-decoration: none;
}

.box:not(:last-of-type), .path-cart .checklist-table tr .checklist-table:not(:last-of-type),
.path-cart .checkout-order-summary tr .checklist-table:not(:last-of-type),
.path-checkout .checklist-table tr .checklist-table:not(:last-of-type),
.path-checkout .checkout-order-summary tr .checklist-table:not(:last-of-type), .user-form:not(:last-of-type), .user-login-form:not(:last-of-type) {
  margin-bottom: 1.6rem;
  margin-bottom: var(--spacing-default);
}
@media only screen and (min-width: 768px) {
  .box:not(:last-of-type), .path-cart .checklist-table tr .checklist-table:not(:last-of-type),
  .path-cart .checkout-order-summary tr .checklist-table:not(:last-of-type),
  .path-checkout .checklist-table tr .checklist-table:not(:last-of-type),
  .path-checkout .checkout-order-summary tr .checklist-table:not(:last-of-type), .user-form:not(:last-of-type), .user-login-form:not(:last-of-type) {
    margin-bottom: 0;
  }
}

/* box--small
-------------------------------------------*/
.box--small,
.box--small.box--contact {
  --spacing-medium: 1.6rem;
  text-align: left;
}

.box--information {
  margin-bottom: var(--spacing-default);
}

/* box--checklist
-------------------------------------------*/
.box--checklist .add-link {
  --add-link-bg: transparent;
}
.box--checklist .h3 {
  display: none;
}
@media only screen and (min-width: 768px) {
  .box--checklist .h3 {
    display: inline-block;
  }
}
.box--checklist table {
  margin-bottom: 0;
}
.box--checklist th.views-field {
  padding-bottom: var(--spacing-default);
}
.box--checklist td:first-of-type {
  padding-left: var(--spacing-small);
  width: 250px;
}
.box--checklist td:nth-of-type(2) {
  width: 150px;
}
.box--checklist td:nth-of-type(3) {
  width: 120px;
  text-transform: uppercase;
}
.box--checklist .checklist-item .views-field {
  font-size: 18px;
  font-size: 1.8rem;
}

.box--related-checklist > .h3 {
  margin-bottom: var(--spacing-medium) !important;
}
.box--related-checklist .h3,
.box--related-checklist th.views-field,
.box--related-checklist .webform-general .field-label-above {
  margin-bottom: 0.75rem;
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 700;
}
.box--related-checklist .checklist-item {
  padding-right: 0;
  padding-left: 0;
  font-size: 18px;
  font-size: 1.8rem;
}
.box--related-checklist .action-links {
  margin-bottom: 0;
}
.box--related-checklist .action-links li {
  line-height: 1.6;
  margin-top: 2rem;
}
.box--related-checklist .webform-general {
  margin-top: var(--spacing-medium);
}
.box--related-checklist .webform-submission-form {
  padding: 0;
}
.box--related-checklist .webform-element-type-managed-file label {
  display: none;
}
.box--related-checklist .webform-submission-form {
  border-bottom: 1px dashed var(--color-border-alt);
  padding-bottom: var(--spacing-medium);
  margin-bottom: var(--spacing-default);
}

.box.manual-content.manual-landing ul li .field-label-inline, .path-cart .checklist-table tr .manual-content.manual-landing.checklist-table ul li .field-label-inline,
.path-cart .checkout-order-summary tr .manual-content.manual-landing.checklist-table ul li .field-label-inline,
.path-checkout .checklist-table tr .manual-content.manual-landing.checklist-table ul li .field-label-inline,
.path-checkout .checkout-order-summary tr .manual-content.manual-landing.checklist-table ul li .field-label-inline, .manual-content.manual-landing.user-form ul li .field-label-inline, .manual-content.manual-landing.user-login-form ul li .field-label-inline {
  display: inline-block;
}

/* pdf / jpeg images */
.file--image {
  background: url(../img/icons/icons-sprite.svg) #ffffff -13px -571px no-repeat;
  background-size: 40px;
  padding: 0px 25px;
}

.file--application-pdf {
  background: url(../img/icons/icons-sprite.svg) #ffffff -13px -497px no-repeat;
  background-size: 40px;
  padding: 0px 25px;
}

.file {
  padding-right: 0;
}

.webform-general .field-label-above {
  text-transform: uppercase;
}

/* box--registration
-------------------------------------------*/
.box--registration .views-element-container {
  grid-column: 1/-1;
}
.box--registration .field-content {
  display: grid;
  grid-template-columns: var(--grid-4);
}
@media only screen and (min-width: 768px) {
  .box--registration {
    display: grid;
    grid-template-columns: var(--grid-4);
  }
}
.box--registration .registration-item {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.6;
}
@media only screen and (min-width: 768px) {
  .box--registration .registration-item {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: var(--grid-4);
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.box--registration .h3 {
  display: none;
}
@media only screen and (min-width: 768px) {
  .box--registration .h3 {
    display: inline-block;
  }
}
.box--registration .cta-btn-duo {
  margin-top: var(--spacing-medium);
}

/* box--presence
-------------------------------------------*/
.box--presence .stand-number {
  font-size: 31px;
  font-size: 3.1rem;
  font-weight: 700;
}
.box--presence .presence-item {
  margin-bottom: 0.75em;
}
.box--presence dd span {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 300;
}
.box--presence .views-field {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media only screen and (min-width: 1024px) {
  .box--presence .views-field {
    font-size: 31px;
    font-size: 3.1rem;
  }
}
.box--presence .stand-wrapper {
  padding-bottom: var(--spacing-small);
}
.box--presence .stand-wrapper span {
  display: block;
}
.box--presence .stand-wrapper span.stand-type {
  font-weight: 500;
}
.box--presence .stand-wrapper:not(:last-of-type) {
  margin-bottom: var(--spacing-small);
  border-bottom: 1px dashed #f4f4f4;
}

/* box--package
-------------------------------------------*/
.box--package .cta-btn-duo {
  margin-top: var(--spacing-medium);
}
.box--package .cta-btn-duo div:nth-of-type(2) {
  display: none;
}

/* box--listing
-------------------------------------------*/
.box--listing .h3 {
  display: block;
  margin-bottom: 0.5em;
}
.box--listing .social-media {
  margin-top: 0.75em;
}
.box--listing .box__content div {
  font-size: 18px;
  font-size: 1.8rem;
}
.box--listing .field-label-inline,
.box--listing a {
  font-weight: 400;
}
.box--listing .website {
  margin-bottom: var(--spacing-small);
}
.box--listing .categories {
  line-height: 1.4;
}

.box--listing-profile .box__icon {
  right: 20px;
  top: 20px;
}
.box--listing-profile .box__title {
  margin-bottom: var(--spacing-medium);
}
@media only screen and (min-width: 1024px) {
  .box--listing-profile .box__title {
    margin-bottom: var(--spacing-small);
  }
}
.box--listing-profile .box__content {
  margin-top: 3rem;
}
.box--listing-profile ul.package-list--icons li {
  margin-bottom: var(--spacing-small);
  border-bottom: 1px dashed var(--color-border-alt);
  padding: 8px 0px;
  margin-bottom: 0;
  font-size: 17px;
  font-size: 1.7rem;
  hyphens: none;
}
.box--listing-profile ul.package-list--icons li div {
  display: flex;
  gap: var(--spacing-small);
}

.ui-widget-content a {
  color: var(--link-color);
}

.box--print-listing {
  margin-top: var(--spacing-default);
}
@media only screen and (min-width: 768px) {
  .box--print-listing {
    margin-top: 0;
  }
}

.box--current-package .cta-btn-duo {
  margin-top: 3.2rem;
}

/* Edit listing link */
.box--listing-profile .add-link-wrapper,
.box--print-listing .add-link-wrapper {
  --icon-color:#000;
  padding-top: 1rem;
  padding-bottom: 4rem;
}

/* box--lead
-------------------------------------------*/
.box--lead .licence-block {
  margin-top: 1.6em;
}

/* box--users
-------------------------------------------*/
.box--users:first-of-type > div:first-child {
  position: initial;
}

@media only screen and (min-width: 768px) {
  .box--users .box__content:first-child {
    margin-top: 6.4rem;
  }
}
.box--users .add-link-wrapper {
  --add-link-bg: #f2d5d9;
}
.box--users .add-link-wrapper a {
  --link-color:#000;
}

.box--users.disabled {
  --text-color-default:#ccc;
}
.box--users.disabled h3 a {
  color: var(--text-color-default);
  text-decoration: none;
}

.box--users:nth-of-type(1) .box__icon {
  right: 20px;
  top: 20px;
}

/* box--contact
-------------------------------------------*/
.box--contact {
  text-align: center;
}
.box--contact p {
  margin-bottom: var(--spacing-medium);
}
.box--contact h2.section-title {
  font-weight: 700;
  margin-bottom: 0;
  padding-bottom: 1.6rem;
  padding-bottom: var(--spacing-small);
}
.box--contact .cta-btn {
  margin-bottom: var(--spacing-small);
}

.box--contact.flow {
  margin-top: 1em;
}

/* box--order-history
-------------------------------------------*/
.box--order-history .box__icon {
  background: url(../img/icons/icon-sprite-prototype.png) var(--box-icon-bg) 291px -770px;
  background-size: 300px;
}
.box--order-history .order-history td:nth-of-type(4) {
  font-weight: 800;
}
.box--order-history .order-history td:nth-of-type(5) {
  text-transform: uppercase;
}
.box--order-history .order-history td:nth-of-type(6) {
  font-weight: 300;
}
.box--order-history .order-history td:nth-of-type(6) a {
  font-weight: 400;
}
.box--order-history .order-history td:nth-of-type(6) a:not(:nth-of-type(1)) {
  padding: 5px;
}
.box--order-history .order-history td:nth-of-type(6) a:nth-of-type(1) {
  margin-right: 5px;
}

/* Action history */
.box--history .box__icon {
  background: url(../img/icons/icon-sprite-prototype.png) var(--box-icon-bg) 289px -656px;
  background-size: 300px;
}

/* box--logo
-------------------------------------------*/
.box--logo {
  margin-bottom: var(--spacing-default);
}
@media only screen and (min-width: 768px) {
  .box--logo {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .box--logo img {
    width: 30rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
  }
}

/* box video
-------------------------------------------*/
.box--video .h3,
.box--video th.views-field {
  margin-bottom: 0.75rem;
  font-size: 23px;
  font-size: 2.3rem;
}

/* Add circle
-------------------------------------------*/
.add-link-circle {
  --link-circle:#00aeef;
  --link-color: #fff;
  width: 60px;
  height: 60px;
  background: var(--link-circle);
  display: flex;
  border-radius: 40px;
  align-items: center;
  justify-content: center;
}
.add-link-circle:hover, .add-link-circle:visited {
  color: var(--link-color);
}
.add-link-circle:hover {
  cursor: pointer;
  transform: translate(0px, -5px);
  transition: all 0.2s ease-out;
  top: -2px;
}

.box .add-link-circle-wrapper, .path-cart .checklist-table tr .checklist-table .add-link-circle-wrapper,
.path-cart .checkout-order-summary tr .checklist-table .add-link-circle-wrapper,
.path-checkout .checklist-table tr .checklist-table .add-link-circle-wrapper,
.path-checkout .checkout-order-summary tr .checklist-table .add-link-circle-wrapper, .user-form .add-link-circle-wrapper, .user-login-form .add-link-circle-wrapper {
  position: absolute;
  bottom: -30px;
  left: 45%;
  z-index: 1;
}

.add-link-circle-wrapper {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  margin-bottom: 3.2rem;
  margin-bottom: var(--spacing-medium);
}

/* Licence block
-------------------------------------------*/
.licence-block {
  --licence-text-color: #0D0C0C;
  --licence-circle-color: #f4f4f4;
  --text-color-default:#0D0C0C;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: var(--licence-circle-color);
  border: 8px solid var(--licence-circle-color);
  border-radius: 100%;
  width: 11rem;
  padding: 1em;
}
.licence-block .licence-assigned {
  font-size: 56px;
  font-size: 5.6rem;
  color: var(--text-color-default);
  font-weight: 800;
}
.licence-block .licence-total {
  font-size: 31px;
  font-size: 3.1rem;
  color: var(--licence-text-color);
}

/* social-media
-------------------------------------------*/
/* Social icons footer */
.social-media ul {
  display: flex;
  gap: 10px;
}
.social-media ul li a {
  height: 40px;
  width: 40px;
  display: inline-block;
  background: url("../img/icons/social-networks-white.svg") no-repeat 0px;
  background-size: 50px;
  text-indent: -9999px;
}
.social-media .twitter a {
  background-position: -6px -5px;
}
.social-media .facebook a {
  background-position: -1px -45px;
  background-size: 40px;
}
.social-media .instagram a {
  background-position: -5px -119px;
  background-size: 50px;
}
.social-media .linkedin a {
  background-position: -11px -206px;
  background-size: 60px;
}
.social-media .youtube a {
  background-position: -6px -218px;
}

/* Social icons box */
.box .social-media ul li a, .path-cart .checklist-table tr .checklist-table .social-media ul li a,
.path-cart .checkout-order-summary tr .checklist-table .social-media ul li a,
.path-checkout .checklist-table tr .checklist-table .social-media ul li a,
.path-checkout .checkout-order-summary tr .checklist-table .social-media ul li a, .user-form .social-media ul li a, .user-login-form .social-media ul li a {
  background: url("../img/icons/social-networks-black-2.svg") no-repeat 0px;
  height: 35px;
  width: 30px;
}
.box .social-media ul li.twitter a, .path-cart .checklist-table tr .checklist-table .social-media ul li.twitter a,
.path-cart .checkout-order-summary tr .checklist-table .social-media ul li.twitter a,
.path-checkout .checklist-table tr .checklist-table .social-media ul li.twitter a,
.path-checkout .checkout-order-summary tr .checklist-table .social-media ul li.twitter a, .user-form .social-media ul li.twitter a, .user-login-form .social-media ul li.twitter a {
  background-position: -6px -1px;
}
.box .social-media ul li.facebook a, .path-cart .checklist-table tr .checklist-table .social-media ul li.facebook a,
.path-cart .checkout-order-summary tr .checklist-table .social-media ul li.facebook a,
.path-checkout .checklist-table tr .checklist-table .social-media ul li.facebook a,
.path-checkout .checkout-order-summary tr .checklist-table .social-media ul li.facebook a, .user-form .social-media ul li.facebook a, .user-login-form .social-media ul li.facebook a {
  background-position: -3px -39px;
  background-size: 35px;
}
.box .social-media ul li.instagram a, .path-cart .checklist-table tr .checklist-table .social-media ul li.instagram a,
.path-cart .checkout-order-summary tr .checklist-table .social-media ul li.instagram a,
.path-checkout .checklist-table tr .checklist-table .social-media ul li.instagram a,
.path-checkout .checkout-order-summary tr .checklist-table .social-media ul li.instagram a, .user-form .social-media ul li.instagram a, .user-login-form .social-media ul li.instagram a {
  background-position: -7px -104px;
  background-size: 44px;
}
.box .social-media ul li.linkedin a, .path-cart .checklist-table tr .checklist-table .social-media ul li.linkedin a,
.path-cart .checkout-order-summary tr .checklist-table .social-media ul li.linkedin a,
.path-checkout .checklist-table tr .checklist-table .social-media ul li.linkedin a,
.path-checkout .checkout-order-summary tr .checklist-table .social-media ul li.linkedin a, .user-form .social-media ul li.linkedin a, .user-login-form .social-media ul li.linkedin a {
  background-position: -10px -170px;
  background-size: 50px;
}
.box .social-media ul li.youtube a, .path-cart .checklist-table tr .checklist-table .social-media ul li.youtube a,
.path-cart .checkout-order-summary tr .checklist-table .social-media ul li.youtube a,
.path-checkout .checklist-table tr .checklist-table .social-media ul li.youtube a,
.path-checkout .checkout-order-summary tr .checklist-table .social-media ul li.youtube a, .user-form .social-media ul li.youtube a, .user-login-form .social-media ul li.youtube a {
  background-position: -8px -196px;
  background-size: 45px;
}

/* checklist-item
-------------------------------------------*/
.checklist-item {
  --color-border: transparent;
  line-height: 1.25;
  padding: var(--spacing-small);
}
@media only screen and (min-width: 768px) {
  .checklist-item {
    display: table-row;
  }
}
.checklist-item span {
  color: var(--text-color-default);
}
.checklist-item a.edit-link {
  --link-color:#606060;
  font-size: 15px;
  font-size: 1.5rem;
  text-decoration: none;
}
.checklist-item span.number {
  padding-right: 10px;
}
.checklist-item a {
  text-decoration: none;
}
.checklist-item select {
  border: none;
}
.checklist-item dd:first-of-type {
  border-right: 1px dashed var(--color-border-alt);
  margin-right: var(--spacing-small);
  padding-right: var(--spacing-small);
}
@media only screen and (min-width: 768px) {
  .checklist-item dd:first-of-type {
    border-right: transparent;
  }
}
.checklist-item dt {
  grid-column: 1/-1;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .checklist-item dt {
    grid-column: 1/2;
    margin-bottom: 0;
  }
}
.checklist-item .use-ajax {
  --link-color: $grey;
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  padding: 2px 10px;
  font-size: 14px;
  font-size: 1.4rem;
  background: #ffffff;
}

.front .checklist-item {
  --color-border: transparent;
}

.items-completed .checklist-item td:nth-of-type(5),
.checklist-table + .views-element-container td:nth-of-type(5) a {
  background: url(../img/icons/icons-sprite.svg) -11px -3px no-repeat transparent;
  background-size: 50px;
  height: 30px;
  width: 30px;
  display: block;
  text-indent: -9999px;
}

/* box--stripe-title
-------------------------------------------*/
.box-strip-wrapper {
  position: relative;
  border-radius: var(--border-radius-default);
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.5em 0.75rem 0.75rem 1em;
  margin-bottom: 2em;
  margin-bottom: var(--spacing-medium);
}
.box-strip-wrapper .box__strip {
  height: 28px;
  display: flex;
  align-items: center;
}
.box-strip-wrapper .box__icon {
  right: -10px;
  top: -10px;
}
.box-strip-wrapper .package-label:after {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: 100%;
  background: var(--package-bullet-color);
  top: 2px;
  margin-left: 8px;
  position: relative;
}
.box-strip-wrapper .package-label.package-Gold:after {
  background: #CCBE16;
}
.box-strip-wrapper .package-label.package-Silver:after {
  background: #CCCCCC;
}
.box-strip-wrapper .package-label.package-Bronze:after {
  background: #e8a058;
}
.box-strip-wrapper .package-label.package-Basic:after {
  background: #D4E7F6;
  border: 1px solid #cccccc;
}
.box-strip-wrapper .checklist-info {
  line-height: 0.75;
}
.box-strip-wrapper .checklist-info span {
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .box-strip-wrapper .checklist-info span {
    font-size: 16px;
    font-size: 1.6rem;
    display: inline-block;
  }
}

/* Package item
-------------------------------------------*/
.package {
  --package-bullet-bg:#f4f4f4;
  --package-highlight-bg:#f4f4f4;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
.package.box, .path-cart .checklist-table tr .package.checklist-table,
.path-cart .checkout-order-summary tr .package.checklist-table,
.path-checkout .checklist-table tr .package.checklist-table,
.path-checkout .checkout-order-summary tr .package.checklist-table, .package.user-form, .package.user-login-form {
  padding: 2rem;
  padding: var(--spacing-default);
  overflow-x: initial;
}
.package.box:not(:last-of-type), .path-cart .checklist-table tr .package.checklist-table:not(:last-of-type),
.path-cart .checkout-order-summary tr .package.checklist-table:not(:last-of-type),
.path-checkout .checklist-table tr .package.checklist-table:not(:last-of-type),
.path-checkout .checkout-order-summary tr .package.checklist-table:not(:last-of-type), .package.user-form:not(:last-of-type), .package.user-login-form:not(:last-of-type) {
  margin-bottom: var(--spacing-x-large);
}
@media only screen and (min-width: 1024px) {
  .package.box:not(:last-of-type), .path-cart .checklist-table tr .package.checklist-table:not(:last-of-type),
  .path-cart .checkout-order-summary tr .package.checklist-table:not(:last-of-type),
  .path-checkout .checklist-table tr .package.checklist-table:not(:last-of-type),
  .path-checkout .checkout-order-summary tr .package.checklist-table:not(:last-of-type), .package.user-form:not(:last-of-type), .package.user-login-form:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.package header {
  padding-top: 2em;
  padding-top: var(--spacing-default);
}
.package .package__icon {
  width: 150px;
  height: 150px;
  align-self: center;
  top: -70px;
  border-radius: 100%;
  background: #ffffff;
  position: absolute;
  background: url(../img/icons/icons-sprite.svg) #fff 41px -690px no-repeat;
  background-size: 70px;
}
.package .package__bullet {
  height: 20px;
  width: 20px;
  position: absolute;
  right: 15px;
  border-radius: 100%;
  top: 15px;
  background-color: var(--package-bullet-bg);
}
.package .package-title {
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  line-height: 1;
  font-size: 24px;
  font-size: 2.4rem;
}
@media only screen and (min-width: 1024px) {
  .package .package-title {
    font-size: 28px;
    font-size: 2.8rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.package .package-list li {
  font-size: 16px;
  font-size: 1.6rem;
  padding: 8px 0;
  hyphens: none;
}
.package .content-list li {
  font-size: 16px;
  font-size: 1.6rem;
  hyphens: none;
  margin-bottom: var(--spacing-small);
  line-height: 1.15;
}
.package .package-list li:not(:last-child) {
  border-bottom: 1px dashed var(--color-border-alt);
}
.package .package-status {
  color: var(--text-color-default);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.8rem;
}
.package .package-status.current {
  --text-color-default:#00aeef;
}
.package .package-price {
  display: block;
  font-weight: 700;
  font-size: 41px;
  font-size: 4.1rem;
  margin-bottom: 0.75rem;
}
.package .package-price + small {
  text-transform: uppercase;
  font-weight: 400;
}
.package .package-highlight {
  background: var(--package-highlight-bg);
  padding: 1em 0.5em;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  margin: 1em 0;
  margin: var(--spacing-default) 0;
}
.package .package-highlight span {
  display: block;
  text-align: center;
}
.package .package-section {
  text-align: left;
  font-size: 16px;
  font-size: 1.6rem;
}
.package .form-submit {
  display: block;
  text-transform: uppercase;
  width: 100%;
}
.package .cta-btn {
  margin-top: 0em;
  margin-bottom: 0.75rem;
}
.package .js-form-type-number {
  display: none;
}
.package .form-actions {
  display: block;
}
.package .form-actions:after {
  content: "Secure payment over Stripe";
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 1rem;
  display: block;
}
.package .js-form-type-entity-autocomplete,
.package .js-form-type-textfield {
  display: none;
}

.gold,
.gold + .package__icon + .package__bullet {
  --package-bullet-bg:#ccbe17;
  --package-highlight-bg:#ede9bc;
  --cta-color: #ccbe17;
  --cta-border: #ccbe17;
}

.silver,
.silver + .package__icon + .package__bullet {
  --package-bullet-bg:#cccccc;
  --package-highlight-bg:#f4f4f4;
  --cta-color: #cccccc;
  --cta-border: #cccccc;
}

.bronze,
.bronze + .package__icon + .package__bullet {
  --package-bullet-bg:#e8a058;
  --package-highlight-bg:#fdedde;
  --cta-color: #e8a058;
  --cta-border: #e8a058;
}

/* User
-------------------------------------------*/
.user-item:not(:first-of-type) {
  padding-top: 1em;
}

.user-item {
  --link-color: #121212;
  line-height: 1.25;
  border-bottom: 1px dashed #ddd;
  padding-bottom: var(--spacing-default);
  padding-top: var(--spacing-default);
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (min-width: 1024px) {
  .user-item {
    height: 75px;
  }
}
.user-item .edit-user-wrapper {
  display: flex;
  float: right;
  align-items: center;
}
.user-item .edit-user-wrapper svg {
  width: 20px;
  margin-left: 10px;
}
.user-item .edit-user-wrapper a {
  display: flex;
  align-items: center;
  gap: 0.75em;
  font-size: 14px;
  font-size: 1.4rem;
  text-transform: uppercase;
  text-decoration: none;
}
.user-item h3 {
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
}
.user-item h3 a {
  text-decoration: none;
}

.disabled,
.disabled h3 {
  --text-color-default:#ccc;
}

/* Add link
-------------------------------------------*/
.add-link-wrapper {
  position: relative;
}

a.add-link {
  --add-link-bg:#f4f4f4;
  --link-color: #000;
  display: flex;
  align-content: center;
  align-items: center;
  padding-right: 3em;
  font-size: 14px;
  font-size: 1.4rem;
  float: right;
  padding: 0.75rem;
  text-transform: uppercase;
  border-radius: 5px;
  font-weight: 700;
  z-index: 1;
  height: 25px;
  background: var(--add-link-bg);
  text-decoration: none;
}
a.add-link svg {
  position: absolute;
  right: 6px;
  z-index: 1;
  top: 6px;
  display: none;
}
@media only screen and (min-width: 1024px) {
  a.add-link svg {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  a.add-link {
    padding: 0.5em 0.75rem 0.75rem 1em;
    padding-right: 5.5rem;
    position: relative;
    padding-right: var(--spacing-large);
    top: 4px;
  }
}

a.add-link:after {
  content: "";
  height: 60px;
  width: 60px;
  border-radius: 100%;
  background: var(--add-link-bg);
  position: absolute;
  right: -10px;
  top: -12px;
  display: none;
  background: var(--add-link-bg);
  background-size: 300px;
}
@media only screen and (min-width: 1024px) {
  a.add-link:after {
    display: block;
  }
}

/*.box--current-package{
	a.add-link:after{
		background-position: 203px 0px;
	}
}

.box--listing-profile{
	a.add-link:after{
		background-position: 203px 0px;
	}
}

.box--listing-profile.box--online-listing{
	a.add-link:after{
		background-position: 205px -64px;
	}
}

.box--listing-profile.box--print-listing{
	a.add-link:after{
		background-position: 205px -132px;
	}
}
*/
/* Add circle
-------------------------------------------*/
.add-link-circle {
  --link-circle:#00aeef;
  --link-color: #fff;
  width: 60px;
  height: 60px;
  background: var(--link-circle);
  display: flex;
  border-radius: 40px;
  align-items: center;
  justify-content: center;
}
.add-link-circle:hover, .add-link-circle:visited {
  color: var(--link-color);
}
.add-link-circle:hover {
  cursor: pointer;
  transform: translate(0px, -5px);
  transition: all 0.2s ease-out;
  top: -2px;
}

.box .add-link-circle-wrapper, .path-cart .checklist-table tr .checklist-table .add-link-circle-wrapper,
.path-cart .checkout-order-summary tr .checklist-table .add-link-circle-wrapper,
.path-checkout .checklist-table tr .checklist-table .add-link-circle-wrapper,
.path-checkout .checkout-order-summary tr .checklist-table .add-link-circle-wrapper, .user-form .add-link-circle-wrapper, .user-login-form .add-link-circle-wrapper {
  position: absolute;
  bottom: -30px;
  left: 45%;
  z-index: 1;
}

.add-link-circle-wrapper {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  margin-bottom: 3.2rem;
  margin-bottom: var(--spacing-medium);
}

/* contact item
-------------------------------------------*/
.contact-item header {
  margin-bottom: 2em;
  margin-bottom: var(--spacing-medium);
}
.contact-item header h3 {
  margin-bottom: 0.75rem;
  font-size: 23px;
  font-size: 2.3rem;
}
.contact-item header a {
  --link-color:#606060;
  text-decoration: none;
}
.contact-item .contact-picture {
  background: #f4f4f4;
  height: 80px;
  width: 80px;
  float: right;
  border-radius: 100%;
}
.contact-item .contact-list {
  line-height: 1.6;
}
.contact-item .contact-list li {
  display: flex;
  align-items: center;
}
.contact-item .contact-list li svg {
  width: 18px;
  margin-right: var(--spacing-small);
}
.contact-item .contact-list li.contact-name {
  background-position: 0px 3px;
}
.contact-item .contact-list .tel {
  background-position: 0px -56px;
}
.contact-item .contact-list .mail {
  background-position: 0px -116px;
}

.contractors-list {
  grid-row-gap: 2.8rem;
}

/* Registration item
-------------------------------------------*/
.registration-item {
  padding-bottom: var(--spacing-small);
  margin-bottom: var(--spacing-small);
}
@media only screen and (min-width: 768px) {
  .registration-item {
    padding-bottom: 0;
    margin-bottom: 0;
    line-height: 0.5;
  }
}
.registration-item:not(:last-of-type) {
  border-bottom: 1px dashed var(--color-border-alt);
}
@media only screen and (min-width: 768px) {
  .registration-item:not(:last-of-type) {
    border-bottom: none;
  }
}

/* Testimonial item
-------------------------------------------*/
.testimonial-item {
  background: #ffffff;
  padding: var(--spacing-medium);
  border-radius: var(--border-radius-alt);
}
.testimonial-item dt {
  color: #606060;
}
.testimonial-item dd {
  font-weight: 700;
  margin-top: 0.5rem;
}

/* Product item
-------------------------------------------*/
.product__item > div.views-element-container {
  width: 100%;
}

.product__items + h3 {
  margin-top: var(--spacing-medium);
}

.topic-pd:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.product__item,
.topic-pd {
  display: flex;
  flex-direction: column;
  align-items: right;
  border-bottom: 1px dashed var(--color-border-alt);
  padding-bottom: var(--spacing-default);
  padding-top: var(--spacing-default);
}
@media only screen and (min-width: 768px) {
  .product__item,
  .topic-pd {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.product__item__info span,
.topic-pd__info span {
  text-transform: uppercase;
}

.products {
  margin-bottom: var(--spacing-medium);
}
.products h3 {
  margin-bottom: 0;
}
.products .commerce-order-item-variation-cart-form-form {
  margin-bottom: 0;
}
.products .cta-btn.full a {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-default);
  width: 100%;
}
.products .cta-btn {
  margin-top: var(--spacing-default);
}
@media only screen and (min-width: 768px) {
  .products .cta-btn {
    margin-top: 0;
    align-items: center;
  }
}

/* Utilities */
/* Scollable-list
-------------------------------------------*/
.scrollable-list {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
}
.scrollable-list > * {
  flex-shrink: 0;
  margin-bottom: 3rem;
  width: 316px;
}
.scrollable-list > * + * {
  margin-inline-start: var(--grid-gap);
}

/* Visually-hidden
-------------------------------------------*/
.visually-hidden {
  border: 0;
  clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
}

/* Flow
-------------------------------------------*/
.flow > * + * {
  margin-top: 1.6rem;
  margin-top: var(--flow-space);
}

/* Section
-------------------------------------------*/
.section {
  padding-top: 2.8rem;
  padding-bottom: 2.8rem;
}
@media only screen and (min-width: 768px) {
  .section {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
}

.container {
  margin: 0 15px;
}
@media only screen and (min-width: 768px) {
  .container {
    margin: auto;
    padding: 0 15px;
  }
}

/* List reset
-------------------------------------------*/
.l-rs, .pager__items {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.l-rs li:before, .pager__items li:before {
  content: none;
}

/* Content
-------------------------------------------*/
.content {
  grid-column: 1/-1;
}

/* Narrow content
-------------------------------------------*/
.narrow .content {
  grid-column: 4/-4;
}

@media only screen and (min-width: 1024px) {
  .narrow-content, .user-form, .user-login-form {
    margin-left: auto;
    margin-right: auto;
  }
}

.narrow-content .primary-msg, .user-form .primary-msg, .user-login-form .primary-msg {
  margin: 6rem 0;
}

/* Colors
-------------------------------------------*/
.bg-grey-light {
  background-color: #f4f4f4;
}

.bg-grey-dark {
  background-color: #3C3C3C;
}

.color-grey-dark {
  color: #3C3C3C;
}

/* Text shadow
-------------------------------------------*/
.text-shadow {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}

/* Radius
-------------------------------------------*/
.radius img {
  border-radius: 100%;
}

/* Dropcap
-------------------------------------------*/
/* Dropcap paragraph (Critical: All) */
@supports not (initial-letter: 1) {
  .dropcap::first-letter,
  .dropcap p:first-of-type::first-letter {
    float: left;
    font-weight: 800;
    line-height: 7.25rem;
    padding-top: 6px;
    padding-right: 15px;
    padding-left: 0;
    font-size: 85px;
    font-size: 8.5rem;
  }
}
@supports (initial-letter: 2) {
  .dropcap::first-letter,
  .dropcap p::first-letter {
    initial-letter: 2;
  }
}
@media screen and (min-width: 70em) {
  @supports (initial-letter: 3) {
    .dropcap::first-letter,
    .dropcap p::first-letter {
      initial-letter: 3;
    }
  }
}
/* Columns
-------------------------------------------*/
/* Columns (Critical: All) */
@media (min-width: 60em) {
  .columns {
    column-count: 2;
    column-gap: var(--spacing-large);
    column-rule: 2px solid #121212;
  }
  .columns div {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .columns p {
    font-size: 18px;
    font-size: 1.8rem;
    font-size: var(--font-size-default);
  }
  .columns.alt {
    column-count: auto;
    column-width: 12em;
  }
}
/* Skip link
-------------------------------------------*/
/* Skip link  */
.skip-link {
  position: fixed;
  top: -30em;
}

.skip-link:focus {
  top: 0;
}

/* Rules
-------------------------------------------*/
/* Rules (Critical: All) */
hr {
  border: 0;
  border-bottom: 8px solid #f4f4f4;
  clear: both;
  display: block;
  margin: 1.6rem 0;
  padding: 0;
}

/* Full bleed
-------------------------------------------*/
@media only screen and (min-width: 768px) {
  .full-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}

/* Uppercase
-------------------------------------------*/
.uppercase {
  text-transform: uppercase;
}

/* Text-center
-------------------------------------------*/
.text-center {
  text-align: center;
}

/* Colors
-------------------------------------------*/
.bg-grey-light {
  background-color: #606060;
}

.bg-grey-light {
  background-color: #f4f4f4;
}

.bg-grey-dark {
  background-color: #3C3C3C;
}

.color-grey-dark {
  color: #3C3C3C;
}

/* center
-------------------------------------------*/
.center {
  text-align: center;
  justify-content: center;
}

/* Overflow
-------------------------------------------*/
.overflow {
  overflow-x: auto;
}

/* Page */
/* Page basic styles
-------------------------------------------*/
/* Root */
:root {
  background: #f4f4f4;
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: white;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-feature-settings: "kern", "liga", "clig", "calt", "onum", "pnum";
  overflow-x: hidden;
  scroll-behavior: smooth;
}

@supports (font-kerning: normal) and (font-variant-ligatures: common-ligatures contextual) and (font-variant-numeric: oldstyle-nums proportional-nums) {
  :root {
    font-kerning: normal;
    font-variant-ligatures: common-ligatures contextual;
    font-variant-numeric: oldstyle-nums proportional-nums;
    font-feature-settings: normal;
  }
}
/* Selection styles (Critical: All) */
::-moz-selection {
  background-color: #f4f4f4;
  text-shadow: none;
}

::selection {
  background-color: #f4f4f4;
  text-shadow: none;
}

/* Body */
body {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-size: var(--font-size-default);
  font-style: normal;
  font-weight: 300;
  color: #121212;
  color: var(--text-color-default);
  width: 100%;
  background-color: #f4f4f4;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-spacing: 1px;
  hyphens: auto;
  font-variant-ligatures: common-ligatures;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
}
body div {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.2;
}

/* Figures (Critical: All) */
figure {
  margin: var(--spacing-default) 0;
}
figure img {
  width: 100%;
}

figcaption,
.image-field-caption {
  font-size: 12px;
  font-size: 1.2rem;
  font-size: var(--font-size-small);
  font-family: "Poppins", sans-serif;
  text-align: center;
  color: #606060;
  margin: 0;
}

/* Images (Critical: All) */
img {
  border-width: 0;
  content-visibility: auto;
  max-width: 100%;
  vertical-align: middle;
  height: auto;
  transition: all var(--duration-default) ease;
}

img[width], img[height] {
  max-width: 100%;
}

/* section */
.section .primary-msg {
  margin-bottom: var(--spacing-large);
}

/* connect section */
.connect {
  --text-color-default: #fff;
  --cta-color: #fff;
  --cta-border: #fff;
  --cta-text-color: #00aeef;
  background: #00aeef;
}
.connect h2 {
  --text-color-default: #fff;
  color: var(--text-color-default);
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
}
.connect p {
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 48px;
  font-weight: 400;
}
.connect .cta-btn a:hover {
  --cta-color: transparent;
  --cta-border: #fff;
  --cta-text-color: #ffffff;
}
.connect .block:nth-of-type(1),
.connect .block:nth-of-type(2) {
  --color-border: #fff;
  border-right: 1px solid var(--color-border);
  height: 100%;
}

/* useful info */
.useful-info {
  background-color: #ffffff;
}
.useful-info h2 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
}
.useful-info .useful-links {
  --link-color:#121212;
}
.useful-info .useful-links ul {
  column-count: 2;
  line-height: 1.5;
}
.useful-info .useful-links a {
  text-decoration: none;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 300;
}
.useful-info .opening-times ul {
  line-height: 1.6;
}
.useful-info .opening-times ul li {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 300;
}
.useful-info .block:nth-of-type(1),
.useful-info .block:nth-of-type(2) {
  --color-border: #9B9B9B;
  border-right: 1px solid var(--color-border);
  height: 100%;
}
.useful-info .show-info p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
}
.useful-info .show-info span {
  display: block;
  line-height: 0.75rem;
}

/* Brand strip */
.brand-strip {
  background: #f4f4f4;
}
@media only screen and (min-width: 768px) {
  .brand-strip p {
    width: 70ch;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 2rem;
    line-height: 1.3;
  }
}

/* faq */
.faq .section-title {
  margin-bottom: 3rem;
  font-size: 36px;
  font-size: 3.6rem;
}

.faq + .faq {
  margin-top: 3rem;
  margin-top: var(--spacing-large);
}

/* Page header
-------------------------------------------*/
.page-header {
  background: #ffffff;
  padding: 1.6rem 0;
}
.page-header .container {
  align-items: center;
}
.page-header .logo {
  grid-column: 1/-1;
  text-align: center;
}
.page-header .logo img {
  width: 180px;
}
.page-header .main-nav {
  grid-column: 3/9;
  padding-left: 1em;
}
.page-header .page-header__right {
  grid-column: 9/13;
  display: flex;
  gap: 1em;
}
.page-header .cta-btn a {
  display: block;
}
.page-header .language-switcher {
  width: 180px;
}

/* Portal header */
body:not(.user-logged-in) .portal-top {
  display: none;
}

.user-logged-in .portal-top {
  padding: var(--spacing-default) 0;
}
@media only screen and (min-width: 768px) {
  .user-logged-in .portal-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0rem;
    margin-bottom: 0rem;
    border-radius: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .user-logged-in.path-frontpage .portal-top {
    justify-content: right;
  }
}

.container + hr {
  border-bottom: 1px solid var(--color-border-alt);
  margin: 0;
}

/* Hero
-------------------------------------------*/
.front section.hero,
.path-frontpage section.hero {
  padding-bottom: 0;
}

section.hero {
  text-align: center;
  padding-bottom: 0;
  margin-bottom: var(--spacing-large);
}
section.hero .cta-btn a {
  font-size: 18px;
  font-size: 1.8rem;
}
section.hero .primary-msg {
  margin-bottom: var(--spacing-medium);
}
@media only screen and (min-width: 768px) {
  section.hero .primary-msg p {
    width: 55ch;
  }
}
@media only screen and (min-width: 1024px) {
  section.hero .primary-msg p {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
section.hero .hero__title {
  text-transform: uppercase;
}

/* Footer
-------------------------------------------*/
.page-footer {
  padding-bottom: 0;
  padding-top: 0;
  text-align: center;
}

/* footer logos */
@media only screen and (min-width: 768px) {
  .footer-logos-wrapper {
    display: flex;
    justify-content: space-between;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer-logos {
  background: #ffffff;
}
.footer-logos h3 {
  font-size: 14px;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 300;
}
.footer-logos ul {
  display: flex;
  gap: 1em;
}
.footer-logos ul li img {
  filter: saturate(0);
}

/* footer bottom */
.footer-bottom {
  background: #ffffff;
  border-top: 1px solid #9B9B9B;
  margin-top: 50px;
}
.footer-bottom ul {
  align-self: center;
}
.footer-bottom p,
.footer-bottom a {
  font-size: 16px;
  font-size: 1.6rem;
}
.footer-bottom .copyright {
  grid-column: 2/4;
  text-align: center;
  align-self: center;
  margin-bottom: var(--spacing-default);
  hyphens: none;
}
.footer-bottom ul:nth-of-type(2) {
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .footer-bottom ul:nth-of-type(2) {
    justify-self: right;
  }
}

/* Navigation */
/* Navigation
-------------------------------------------*/
/* Header links */
@media only screen and (min-width: 1024px) {
  .main-nav ul {
    display: flex;
    gap: 3em;
    gap: var(--grid-gap);
  }
}
.main-nav ul li a,
.main-nav ul li a:visited {
  --link-color: #000;
  color: var(--link-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
}

/* Exhibitor-manual
-------------------------------------------*/
.local-nav {
  position: relative;
}
.local-nav li {
  line-height: 1.3;
}
@media only screen and (min-width: 1450px) {
  .local-nav li {
    line-height: 1.4;
  }
}
.local-nav li a {
  --link-color: #606060;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  font-size: 1.5rem;
}
@media only screen and (min-width: 1450px) {
  .local-nav li a {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

ul.exhibitor-manual-nav li {
  background-size: 25px;
  background-position: 0px 2px;
  line-height: 1.8;
}
ul.exhibitor-manual-nav li a {
  --link-color: #121212;
  font-size: 16px;
  font-size: 1.6rem;
}
ul.exhibitor-manual-nav li.aircraft {
  background-position: 0px -35px;
}
ul.exhibitor-manual-nav li.audiovosual {
  background-position: 0px -72px;
}
ul.exhibitor-manual-nav li.badges {
  background-position: 0px -106px;
}
ul.exhibitor-manual-nav li.catering {
  background-position: 0px -142px;
}
ul.exhibitor-manual-nav li.chalet {
  background-position: 0px -178px;
}
ul.exhibitor-manual-nav li.cleaning {
  background-position: 0px -215px;
}
ul.exhibitor-manual-nav li.copyright {
  background-position: 0px -288px;
}
ul.exhibitor-manual-nav li.compressed {
  background-position: 0px -253px;
}
ul.exhibitor-manual-nav li.electricity {
  background-position: 0px -324px;
}
ul.exhibitor-manual-nav li.flowers {
  background-position: 0px -360px;
}
ul.exhibitor-manual-nav li.furniture {
  background-position: 0px -399px;
}
ul.exhibitor-manual-nav li.security {
  background-position: 0px -435px;
}
ul.exhibitor-manual-nav li.hotel {
  background-position: 0px -470px;
}
ul.exhibitor-manual-nav li.insurance {
  background-position: 0px -507px;
}
ul.exhibitor-manual-nav li.wifi {
  background-position: 0px -546px;
}
ul.exhibitor-manual-nav li:before {
  display: none;
}

/* Portal Navigation
-------------------------------------------*/
/* Header links */
.portal-navigation {
  margin-bottom: 1.6rem;
  margin-bottom: var(--spacing-default);
}
@media only screen and (min-width: 768px) {
  .portal-navigation {
    margin-bottom: 0;
  }
}
.portal-navigation ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .portal-navigation ul {
    justify-content: left;
  }
}
.portal-navigation ul li {
  line-height: 1.4;
  margin-right: 5px;
  margin-bottom: 5px;
}
@media only screen and (min-width: 768px) {
  .portal-navigation ul li {
    margin-left: 1.6rem;
    margin-left: var(--spacing-default);
    margin-bottom: 0;
  }
}
.portal-navigation a {
  --link-color:#3C3C3C;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid var(--color-border-alt);
  padding: 0.75rem;
  border-radius: var(--border-radius-alt);
  display: inline-block;
}
@media only screen and (min-width: 768px) {
  .portal-navigation a {
    border-radius: 0;
    background: transparent;
    border: none;
    padding: 0;
  }
}
.portal-navigation a.current, .portal-navigation a.is-active {
  --link-color:#ffffff;
  background: #157f5c;
  font-weight: 800;
  color: #00aeef;
  color: var(--link-color);
}
@media only screen and (min-width: 768px) {
  .portal-navigation a.current, .portal-navigation a.is-active {
    --link-color:#00aeef;
    background: transparent;
    border-bottom: 3px solid;
  }
}

/* commerce link */
.portal-top__right ul {
  margin-top: 1.6rem;
  display: flex;
  gap: var(--grid-gap);
  margin-top: 0;
  margin-bottom: 0;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .portal-top__right ul {
    --grid-gap: 10px;
    margin-bottom: 0;
    justify-content: right;
  }
}
@media only screen and (min-width: 1024px) {
  .portal-top__right ul {
    margin-bottom: 0;
    --grid-gap: 20px;
  }
}
.portal-top__right ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.portal-top__right ul li a {
  --link-color:#3C3C3C;
  text-decoration: none;
  height: 35px;
  display: inline-block;
  padding-left: 3rem;
  padding-left: var(--spacing-medium);
  background-size: contain;
  text-transform: uppercase;
  line-height: 35px;
}
.portal-top__right ul li.login ul li:last-child a {
  --link-color:#00aeef;
  display: flex;
  gap: 3px;
}
.portal-top__right ul li.login ul li:last-child a:before {
  content: "";
  width: 35px;
  height: 35px;
  display: inline-flex;
  background: url(../img/icons/icons-sprite.svg) -10px -329px no-repeat transparent;
  background-size: 48px;
  line-height: 35px;
}
.portal-top__right ul li.login ul li:first-child a {
  padding-left: var(--spacing-default);
  border-left: 1px solid var(--color-border-alt);
}

/* horizontal-tabs-list
-------------------------------------------*/
.horizontal-tabs-list,
.webform-progress-tracker {
  margin-top: 0;
}
.horizontal-tabs-list .progress-marker,
.webform-progress-tracker .progress-marker {
  display: none;
}
.horizontal-tabs-list .element-invisible,
.webform-progress-tracker .element-invisible {
  display: none;
}
.horizontal-tabs-list a,
.horizontal-tabs-list .progress-title,
.webform-progress-tracker a,
.webform-progress-tracker .progress-title {
  --link-color:#121212;
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: uppercase;
}
.horizontal-tabs-list a.active,
.horizontal-tabs-list a.active:hover,
.horizontal-tabs-list .progress-step.is-active .progress-title,
.webform-progress-tracker a.active,
.webform-progress-tracker a.active:hover,
.webform-progress-tracker .progress-step.is-active .progress-title {
  --link-color:#00aeef;
  color: var(--link-color);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  display: inline-block;
}
.horizontal-tabs-list a:not(.active),
.webform-progress-tracker a:not(.active) {
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  .progress-tracker {
    display: block;
    text-align: center;
  }
  .progress-tracker li {
    display: inline-block;
  }
}

.webform-progress-tracker .progress-title[role=link] {
  color: #606060;
}

/* Breadcrumb
-------------------------------------------*/
#block-breadcrumbs ul,
#block-breadcrumbs ol,
.breadcrumb ul,
.breadcrumb ol,
.portal-breadcrumbs ul,
.portal-breadcrumbs ol {
  margin-top: 0;
  margin-bottom: 0;
}
#block-breadcrumbs ol,
.breadcrumb ol,
.portal-breadcrumbs ol {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  #block-breadcrumbs ol,
  .breadcrumb ol,
  .portal-breadcrumbs ol {
    justify-content: left;
  }
}
#block-breadcrumbs ol li,
.breadcrumb ol li,
.portal-breadcrumbs ol li {
  list-style: none;
  margin-left: 0;
  margin-right: 1rem;
}
#block-breadcrumbs a,
.breadcrumb a,
.portal-breadcrumbs a {
  color: #00aeef;
  font-weight: 700;
}
#block-breadcrumbs ol li:first-child,
.breadcrumb ol li:first-child,
.portal-breadcrumbs ol li:first-child {
  order: 2;
}
#block-breadcrumbs ol li:first-child a:before,
.breadcrumb ol li:first-child a:before,
.portal-breadcrumbs ol li:first-child a:before {
  content: "»";
  margin-right: 1rem;
}
#block-breadcrumbs ol li:nth-child(2),
.breadcrumb ol li:nth-child(2),
.portal-breadcrumbs ol li:nth-child(2) {
  order: 1;
}

/* Site specific */
:root {
  --space: 2rem;
  --space-xs: calc(var(--space) / 3);
  --space-sm: calc(var(--space) / 2);
  --space-md: calc(var(--space) * 2);
  --color-primary: lightgray;
  --color-accent: whitesmoke;
  --color-dark: black;
  --color-mid: gray;
  --color-light: white;
  --color-highlight: dodgerblue;
  --radius: 0.125rem;
}

/* Homepage
-------------------------------------------*/
/* Hero */
.front .hero,
.path-frontpage .hero {
  margin-bottom: 2rem;
  margin-bottom: var(--spacing-medium);
}

/* Welcome */
.welcome {
  text-align: center;
  padding-bottom: 3.2rem;
  padding-bottom: var(--spacing-medium);
}
@media only screen and (min-width: 1024px) {
  .welcome {
    padding-bottom: 6.4rem;
    padding-bottom: var(--spacing-large);
  }
}
.welcome__paragraph {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
.welcome .show-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .welcome .show-info {
    flex-direction: row;
  }
}
.welcome .show-info li {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 300;
}
.welcome .show-info li:first-child:after {
  content: "|";
  margin: 10px;
  font-weight: 300;
}

/* dashboard */
.dashboard {
  grid-row-gap: var(--grid-gap);
}

.box--listing {
  grid-column: 1/3;
}

.box--package {
  grid-column: 3/5;
}

.box--checklist {
  grid-column: 1/4;
}

.box--lead {
  grid-column: 1/2;
}

.box--registration {
  grid-column: 2/5;
}

.exhibitor-manual {
  grid-column: 1/-1;
  padding-top: 1.6rem;
  padding-bottom: 0;
}
.exhibitor-manual .exhbitor-manual-content {
  padding-top: 4.5rem;
}
@media only screen and (min-width: 768px) {
  .exhibitor-manual .exhbitor-manual-content ul {
    row-gap: var(--grid-gap);
  }
}
.exhibitor-manual header .section-title {
  margin-top: var(--spacing-large);
  padding-bottom: var(--spacing-large);
}
.exhibitor-manual .cta-btn {
  padding-top: var(--spacing-medium);
  padding-bottom: var(--spacing-medium);
}

.page-node-type-dashboard main {
  padding-bottom: 0;
}

/* Packages
-------------------------------------------*/
.packages .box.box--contact, .packages .path-cart .checklist-table tr .box--contact.checklist-table, .path-cart .checklist-table tr .packages .box--contact.checklist-table,
.packages .path-cart .checkout-order-summary tr .box--contact.checklist-table,
.path-cart .checkout-order-summary tr .packages .box--contact.checklist-table,
.packages .path-checkout .checklist-table tr .box--contact.checklist-table,
.path-checkout .checklist-table tr .packages .box--contact.checklist-table,
.packages .path-checkout .checkout-order-summary tr .box--contact.checklist-table,
.path-checkout .checkout-order-summary tr .packages .box--contact.checklist-table, .packages .box--contact.user-form, .packages .box--contact.user-login-form,
.page-node-type-package-store .box.box--contact,
.page-node-type-package-store .path-cart .checklist-table tr .box--contact.checklist-table,
.path-cart .checklist-table tr .page-node-type-package-store .box--contact.checklist-table,
.page-node-type-package-store .path-cart .checkout-order-summary tr .box--contact.checklist-table,
.path-cart .checkout-order-summary tr .page-node-type-package-store .box--contact.checklist-table,
.page-node-type-package-store .path-checkout .checklist-table tr .box--contact.checklist-table,
.path-checkout .checklist-table tr .page-node-type-package-store .box--contact.checklist-table,
.page-node-type-package-store .path-checkout .checkout-order-summary tr .box--contact.checklist-table,
.path-checkout .checkout-order-summary tr .page-node-type-package-store .box--contact.checklist-table,
.page-node-type-package-store .box--contact.user-form,
.page-node-type-package-store .box--contact.user-login-form {
  --box-bg: transparent;
}
.packages .box.box--contact .section-title, .packages .path-cart .checklist-table tr .box--contact.checklist-table .section-title, .path-cart .checklist-table tr .packages .box--contact.checklist-table .section-title,
.packages .path-cart .checkout-order-summary tr .box--contact.checklist-table .section-title,
.path-cart .checkout-order-summary tr .packages .box--contact.checklist-table .section-title,
.packages .path-checkout .checklist-table tr .box--contact.checklist-table .section-title,
.path-checkout .checklist-table tr .packages .box--contact.checklist-table .section-title,
.packages .path-checkout .checkout-order-summary tr .box--contact.checklist-table .section-title,
.path-checkout .checkout-order-summary tr .packages .box--contact.checklist-table .section-title, .packages .box--contact.user-form .section-title, .packages .box--contact.user-login-form .section-title,
.page-node-type-package-store .box.box--contact .section-title,
.page-node-type-package-store .path-cart .checklist-table tr .box--contact.checklist-table .section-title,
.path-cart .checklist-table tr .page-node-type-package-store .box--contact.checklist-table .section-title,
.page-node-type-package-store .path-cart .checkout-order-summary tr .box--contact.checklist-table .section-title,
.path-cart .checkout-order-summary tr .page-node-type-package-store .box--contact.checklist-table .section-title,
.page-node-type-package-store .path-checkout .checklist-table tr .box--contact.checklist-table .section-title,
.path-checkout .checklist-table tr .page-node-type-package-store .box--contact.checklist-table .section-title,
.page-node-type-package-store .path-checkout .checkout-order-summary tr .box--contact.checklist-table .section-title,
.path-checkout .checkout-order-summary tr .page-node-type-package-store .box--contact.checklist-table .section-title,
.page-node-type-package-store .box--contact.user-form .section-title,
.page-node-type-package-store .box--contact.user-login-form .section-title {
  text-transform: inherit;
}

.packages-wrapper {
  padding-top: 6.4rem;
  padding-top: var(--spacing-large);
}
.packages-wrapper .grid.three {
  --grid-3: repeat(4, minmax(0, 1fr));
}

@media only screen and (min-width: 768px) {
  .package.box, .path-cart .checklist-table tr .package.checklist-table,
  .path-cart .checkout-order-summary tr .package.checklist-table,
  .path-checkout .checklist-table tr .package.checklist-table,
  .path-checkout .checkout-order-summary tr .package.checklist-table, .package.user-form, .package.user-login-form {
    min-height: 500px;
  }
}
@media only screen and (min-width: 1024px) {
  .package.box, .path-cart .checklist-table tr .package.checklist-table,
  .path-cart .checkout-order-summary tr .package.checklist-table,
  .path-checkout .checklist-table tr .package.checklist-table,
  .path-checkout .checkout-order-summary tr .package.checklist-table, .package.user-form, .package.user-login-form {
    min-height: 680px;
  }
}
@media only screen and (min-width: 768px) {
  .package.box .btn, .path-cart .checklist-table tr .package.checklist-table .btn,
  .path-cart .checkout-order-summary tr .package.checklist-table .btn,
  .path-checkout .checklist-table tr .package.checklist-table .btn,
  .path-checkout .checkout-order-summary tr .package.checklist-table .btn, .package.user-form .btn, .package.user-login-form .btn,
  .package.box .commerce-order-item-variation-cart-form-form,
  .path-cart .checklist-table tr .package.checklist-table .commerce-order-item-variation-cart-form-form,
  .path-cart .checkout-order-summary tr .package.checklist-table .commerce-order-item-variation-cart-form-form,
  .path-checkout .checklist-table tr .package.checklist-table .commerce-order-item-variation-cart-form-form,
  .path-checkout .checkout-order-summary tr .package.checklist-table .commerce-order-item-variation-cart-form-form,
  .package.user-form .commerce-order-item-variation-cart-form-form,
  .package.user-login-form .commerce-order-item-variation-cart-form-form {
    position: absolute;
    bottom: 20px;
    margin: 0 20px;
    left: 0;
    width: 90%;
  }
}
@media only screen and (min-width: 1024px) {
  .package.box .btn, .path-cart .checklist-table tr .package.checklist-table .btn,
  .path-cart .checkout-order-summary tr .package.checklist-table .btn,
  .path-checkout .checklist-table tr .package.checklist-table .btn,
  .path-checkout .checkout-order-summary tr .package.checklist-table .btn, .package.user-form .btn, .package.user-login-form .btn,
  .package.box .commerce-order-item-variation-cart-form-form,
  .path-cart .checklist-table tr .package.checklist-table .commerce-order-item-variation-cart-form-form,
  .path-cart .checkout-order-summary tr .package.checklist-table .commerce-order-item-variation-cart-form-form,
  .path-checkout .checklist-table tr .package.checklist-table .commerce-order-item-variation-cart-form-form,
  .path-checkout .checkout-order-summary tr .package.checklist-table .commerce-order-item-variation-cart-form-form,
  .package.user-form .commerce-order-item-variation-cart-form-form,
  .package.user-login-form .commerce-order-item-variation-cart-form-form {
    width: 85%;
  }
}
.package.box .btn a, .path-cart .checklist-table tr .package.checklist-table .btn a,
.path-cart .checkout-order-summary tr .package.checklist-table .btn a,
.path-checkout .checklist-table tr .package.checklist-table .btn a,
.path-checkout .checkout-order-summary tr .package.checklist-table .btn a, .package.user-form .btn a, .package.user-login-form .btn a,
.package.box .commerce-order-item-variation-cart-form-form a,
.path-cart .checklist-table tr .package.checklist-table .commerce-order-item-variation-cart-form-form a,
.path-cart .checkout-order-summary tr .package.checklist-table .commerce-order-item-variation-cart-form-form a,
.path-checkout .checklist-table tr .package.checklist-table .commerce-order-item-variation-cart-form-form a,
.path-checkout .checkout-order-summary tr .package.checklist-table .commerce-order-item-variation-cart-form-form a,
.package.user-form .commerce-order-item-variation-cart-form-form a,
.package.user-login-form .commerce-order-item-variation-cart-form-form a {
  background: #00aeef !important;
  border-color: #00aeef !important;
  font-size: 16px;
  font-size: 1.6rem;
}

/* Faq accordion  section */
.faq .ui-accordion-header {
  display: inline-block !important;
  padding: 0 !important;
}
.faq .accordion {
  padding: 0.75em;
  padding-left: 5rem;
}
.faq .ui-widget-content {
  border: none;
}

/* Stand sharers */
.stand-sharers h2.section-title--small {
  margin-bottom: 5rem;
}

.stand-sharers .ui-accordion header {
  margin-bottom: var(--spacing-large);
}

/* Checklist
-------------------------------------------*/
.items-completed .checklist-table td:nth-of-type(5) {
  width: 235px;
  text-align: center;
}

/* Checklist table */
.checklist-table .checklist-item td {
  padding-top: 5px;
  padding-bottom: 5px;
}
.checklist-table th.views-field,
.checklist-table td.views-field {
  font-size: 16px;
  font-size: 1.6rem;
}
.checklist-table thead tr:first-of-type th {
  font-size: 23px;
  font-size: 2.3rem;
}
.checklist-table td:first-of-type {
  padding-left: var(--spacing-small);
  width: 350px;
}
.checklist-table td:nth-of-type(2) {
  width: 150px;
}
.checklist-table td:nth-of-type(3) {
  width: 120px;
}
.checklist-table td:nth-of-type(4) {
  width: 180px;
  padding-right: 4rem;
}
.checklist-table td:nth-of-type(4) {
  width: 180px;
  padding-right: 4rem;
}
.checklist-table th:nth-of-type(6),
.checklist-table td:nth-of-type(6) {
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .checklist-table td:nth-of-type(4) {
    padding-right: 4rem;
  }
}
.checklist-table td.views-field.views-field-nothing {
  width: 170px;
}
.checklist-table select {
  font-size: 16px;
  font-size: 1.6rem;
}
.checklist-table .flag {
  font-size: 14px;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.checklist-table .use-ajax.button {
  text-align: center;
  border: none;
  border-radius: 0;
  background: transparent;
  display: block;
  color: #00aeef;
  font-weight: 500;
  text-transform: uppercase;
}
/* Checklist items */
.checklist-items-wrapper {
  margin-bottom: 2rem;
  margin-bottom: var(--spacing-medium);
}

.checklist-table + .views-element-container {
  border-top: 8px solid #f4f4f4;
  padding-top: 2rem;
  margin-top: 3rem;
}
.checklist-table + .views-element-container .checklist-table {
  margin-bottom: 0;
}

/* Listing
-------------------------------------------*/
.page-node-type-dashboard .accordion-wrapper .ui-widget-content {
  background: transparent;
}

.listing .box--current-package {
  grid-column: 1/-1;
}
.listing .box--listing-profile {
  grid-column: 1/3;
}
.listing .right {
  grid-column: 3/-1;
}
.listing .right .box--listing-profile {
  margin-bottom: var(--grid-gap);
}
.listing .stand-sharers {
  grid-column: 1/-1;
}
.listing .content {
  grid-row-gap: var(--grid-gap);
}
.listing .accordion-wrapper {
  position: relative;
}

ul.package-list li:before {
  content: "- ";
  color: #121212;
}

/* listing package features */
ul.package-list--icons {
  --icon-color:#44CA0B;
}
ul.package-list--icons li {
  background-size: 40px;
  line-height: 1.4;
  background-position: -8px 0px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 1rem;
}
ul.package-list--icons li:before {
  display: none;
}
ul.package-list--icons svg {
  width: 20px;
  color: var(--icon-color);
}
ul.package-list--icons li.no-available svg {
  --icon-color:#f80000;
}
ul.package-list--icons li.no-available {
  --text-color-default:#ccc;
  background-position: -8px -135px;
}
ul.package-list--icons li.no-available a {
  font-size: 16px;
  font-size: 1.6rem;
}
ul.package-list--icons li.edit {
  background-position: -8px -43px;
}
ul.package-list--icons li.edit a {
  font-size: 16px;
  font-size: 1.6rem;
}
ul.package-list--icons li.categories {
  display: inline-block;
}
ul.package-list--icons li.categories svg {
  margin-bottom: -4px;
  margin-right: 4px;
}

.box--listing-profile {
  background: #ffffff;
  border-radius: 10px;
}

/* hide view results */
.view-results-count-hide {
  display: none;
}

/* stand sharers */
.stand-sharers {
  margin-top: var(--spacing-large);
}
.stand-sharers .ui-widget-content {
  background: transparent;
  padding: var(--spacing-default) 0rem;
  border: none;
}
.stand-sharers .right {
  background: #ffffff;
  border-radius: 10px;
}
.stand-sharers .add-link-wrapper {
  display: none;
}

/* Grid 2 column
-------------------------------------------*/
.grid-2-column,
.page-node-type-manual {
  display: block;
}
@media only screen and (min-width: 768px) {
  .grid-2-column .hero:not(.full-bleed),
  .page-node-type-manual .hero:not(.full-bleed) {
    display: grid;
    grid-template-columns: var(--grid-4);
    grid-column-gap: var(--grid-gap);
  }
}
@media only screen and (min-width: 768px) {
  .grid-2-column .hero:not(.full-bleed) h1,
  .grid-2-column .hero:not(.full-bleed) .hero__title,
  .page-node-type-manual .hero:not(.full-bleed) h1,
  .page-node-type-manual .hero:not(.full-bleed) .hero__title {
    grid-column: 2/6;
    text-align: left;
    display: block;
  }
}
.grid-2-column .hero:not(.full-bleed) h1,
.page-node-type-manual .hero:not(.full-bleed) h1 {
  margin-bottom: 0;
}
.grid-2-column .content,
.page-node-type-manual .content {
  grid-column: 2/-1;
  position: relative;
}
.grid-2-column .local-nav > ul,
.page-node-type-manual .local-nav > ul {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .grid-2-column .local-nav > ul,
  .page-node-type-manual .local-nav > ul {
    display: block;
  }
}
.grid-2-column .box.manual-content table, .grid-2-column .path-cart .checklist-table tr .manual-content.checklist-table table, .path-cart .checklist-table tr .grid-2-column .manual-content.checklist-table table,
.grid-2-column .path-cart .checkout-order-summary tr .manual-content.checklist-table table,
.path-cart .checkout-order-summary tr .grid-2-column .manual-content.checklist-table table,
.grid-2-column .path-checkout .checklist-table tr .manual-content.checklist-table table,
.path-checkout .checklist-table tr .grid-2-column .manual-content.checklist-table table,
.grid-2-column .path-checkout .checkout-order-summary tr .manual-content.checklist-table table,
.path-checkout .checkout-order-summary tr .grid-2-column .manual-content.checklist-table table, .grid-2-column .manual-content.user-form table, .grid-2-column .manual-content.user-login-form table,
.page-node-type-manual .box.manual-content table,
.page-node-type-manual .path-cart .checklist-table tr .manual-content.checklist-table table,
.path-cart .checklist-table tr .page-node-type-manual .manual-content.checklist-table table,
.page-node-type-manual .path-cart .checkout-order-summary tr .manual-content.checklist-table table,
.path-cart .checkout-order-summary tr .page-node-type-manual .manual-content.checklist-table table,
.page-node-type-manual .path-checkout .checklist-table tr .manual-content.checklist-table table,
.path-checkout .checklist-table tr .page-node-type-manual .manual-content.checklist-table table,
.page-node-type-manual .path-checkout .checkout-order-summary tr .manual-content.checklist-table table,
.path-checkout .checkout-order-summary tr .page-node-type-manual .manual-content.checklist-table table,
.page-node-type-manual .manual-content.user-form table,
.page-node-type-manual .manual-content.user-login-form table {
  width: 100% !important;
  border: 1px solid #f4f4f4;
}
.grid-2-column .manual-action-block,
.page-node-type-manual .manual-action-block {
  margin-bottom: var(--spacing-medium);
}
.grid-2-column .manual-action-wrap h4,
.grid-2-column .manual-action-wrap h3.h4,
.page-node-type-manual .manual-action-wrap h4,
.page-node-type-manual .manual-action-wrap h3.h4 {
  font-size: 18px;
  font-size: 1.8rem;
  color: #3C3C3C;
}

/* active links */
.active-advertising ul.exhibitor-manual-nav li.advertising a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-audiovisual ul.exhibitor-manual-nav li.audiovisual a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-badges-lead-retrieval ul.exhibitor-manual-nav li.badges-lead-retrieval a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-catering-restaurants ul.exhibitor-manual-nav li.catering-restaurants a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-skyview ul.exhibitor-manual-nav li.skyview a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-high-risk-activities ul.exhibitor-manual-nav li.high-risk-activities a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-airshow-after-dark-events ul.exhibitor-manual-nav li.airshow-after-dark-events a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-airshow-after-dark-events ul.exhibitor-manual-nav li.airshow-after-dark-events a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-airshow-after-dark-–-networking-events ul.exhibitor-manual-nav li.airshow-after-dark-–-networking-events a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-cleaning-recycling ul.exhibitor-manual-nav li.cleaning-recycling a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-compressed-air ul.exhibitor-manual-nav li.compressed-air a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-electricity ul.exhibitor-manual-nav li.electricity a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-flowers-plants ul.exhibitor-manual-nav li.flowers-plants a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-furniture-carpet ul.exhibitor-manual-nav li.furniture-carpet a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-health-safety-and-security ul.exhibitor-manual-nav li.health-safety-and-security a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-hotels ul.exhibitor-manual-nav li.hotels a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-insurance ul.exhibitor-manual-nav li.insurance a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-internet-wifi ul.exhibitor-manual-nav li.internet-wifi a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-logo-branding-guidelines ul.exhibitor-manual-nav li.logo-branding-guidelines a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-noise ul.exhibitor-manual-nav li.noise a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-parking ul.exhibitor-manual-nav li.parking a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-pr ul.exhibitor-manual-nav li.pr a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-schedule ul.exhibitor-manual-nav li.schedule a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-shipping-deliveries-storage ul.exhibitor-manual-nav li.shipping-deliveries-storage a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-show-guide ul.exhibitor-manual-nav li.show-guide a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-sponsorship ul.exhibitor-manual-nav li.sponsorship a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-stands-shell ul.exhibitor-manual-nav li.stands-shell-scheme-furniture-package a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-stands-space-only ul.exhibitor-manual-nav li.stands-space-only a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-suspensions-rigging ul.exhibitor-manual-nav li.suspensions-rigging a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-temporary-staff ul.exhibitor-manual-nav li.temporary-staff a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-venue ul.exhibitor-manual-nav li.venue a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-copyright ul.exhibitor-manual-nav li.copyright a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-gleaning-access ul.exhibitor-manual-nav li.gleaning-access a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-rules-and-regulations ul.exhibitor-manual-nav li.rules-and-regulations a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-stands-shell-scheme-furniture-package ul.exhibitor-manual-nav li.stands-shell-scheme-furniture-package a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-travel ul.exhibitor-manual-nav li.travel a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-water-and-waste ul.exhibitor-manual-nav li.water-and-waste a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-stands-built-you ul.exhibitor-manual-nav li.stands-built-by-you a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-stands-provided-by-us ul.exhibitor-manual-nav li.stands-provided-by-us a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-aircraft ul.exhibitor-manual-nav li.aircraft a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-chalets ul.exhibitor-manual-nav li.chalets a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-gala-dinner ul.exhibitor-manual-nav li.gala-dinner a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-outdoor-structures ul.exhibitor-manual-nav li.outdoor-structures a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-sustainability ul.exhibitor-manual-nav li.sustainability a {
  --link-color: #00aeef;
  font-weight: 700;
}

.active-delegations ul.exhibitor-manual-nav li.delegations a {
  --link-color: #00aeef;
  font-weight: 700;
}

/* manual print all */
.manual-print-all .views-row .strip-heading {
  margin-top: 20px;
}

.manual-print-all .views-row .views-field-field-date .layout-grid {
  margin-top: 20px;
}

/* formsubmit finder */
.formsubmit-finder > .field-label-above {
  margin-top: var(--spacing-medium);
}

/* Grid 2 column wider
-------------------------------------------*/
.grid-2-column--wider main .container {
  --container-size: 100%;
}
@media only screen and (min-width: 1450px) {
  .grid-2-column--wider main .container {
    --container-size: 1800px;
  }
}
.grid-2-column--wider .hero + .content {
  --grid-4: repeat(12, minmax(0, 1fr));
}
.grid-2-column--wider .content {
  grid-column: 1/-1;
}
@media only screen and (min-width: 1024px) {
  .grid-2-column--wider .content {
    grid-column: 3/-2;
  }
}
@media only screen and (min-width: 1450px) {
  .grid-2-column--wider .content {
    grid-column: 3/-3;
  }
}
.grid-2-column--wider .local-nav {
  grid-column: 1;
  left: 30px;
}
@media only screen and (min-width: 1450px) {
  .grid-2-column--wider .local-nav {
    left: 50px;
  }
}
.grid-2-column--wider .audience {
  padding-bottom: 0;
  margin-top: 0;
}
.grid-2-column--wider .testimonials,
.grid-2-column--wider .safety {
  margin-top: 0;
}

/* Grid 2 column form
-------------------------------------------*/
.grid-2-column--form .box--form {
  order: 2;
}
.grid-2-column--form .hero {
  grid-column: 1/-1;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr;
  order: 1;
  margin-bottom: var(--spacing-medium);
  padding-top: 0;
}
.grid-2-column--form .hero .hero__info {
  grid-column: 2/-1;
  grid-row: 2;
}
.grid-2-column--form .hero .hero__icon {
  display: none;
  grid-column: 1/-3;
  --box-icon-bg: #fff;
  grid-row: 2;
  height: 85px;
  width: 85px;
  border-radius: 100%;
  right: 20px;
  top: 20px;
  background: var(--box-icon-bg);
  background-size: 390px;
  margin-right: var(--spacing-medium);
}
@media only screen and (min-width: 1024px) {
  .grid-2-column--form .hero .hero__icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.grid-2-column--form .hero .hero__icon svg {
  font-size: 3rem;
}
.grid-2-column--form .hero .package__bullet {
  grid-row: 1;
  grid-column: 2;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  margin-bottom: var(--spacing-default);
}
.grid-2-column--form .hero .package__bullet.package-Gold {
  background: #CCBE16;
}
.grid-2-column--form .hero .package__bullet.package-Bronze {
  background: #e8a058;
}
.grid-2-column--form .hero .package__bullet.package-Basic {
  background: #D4E7F6;
}
.grid-2-column--form .hero .package__bullet.package-Silver {
  background: #CCCCCC;
}
.grid-2-column--form .hero .page-title {
  margin-bottom: 0;
}
.grid-2-column--form .bottom-form {
  grid-column: 1/10;
  margin-top: var(--spacing-medium);
  margin-bottom: var(--spacing-medium);
  order: 3;
}
.grid-2-column--form .box, .grid-2-column--form .path-cart .checklist-table tr .checklist-table, .path-cart .checklist-table tr .grid-2-column--form .checklist-table,
.grid-2-column--form .path-cart .checkout-order-summary tr .checklist-table,
.path-cart .checkout-order-summary tr .grid-2-column--form .checklist-table,
.grid-2-column--form .path-checkout .checklist-table tr .checklist-table,
.path-checkout .checklist-table tr .grid-2-column--form .checklist-table,
.grid-2-column--form .path-checkout .checkout-order-summary tr .checklist-table,
.path-checkout .checkout-order-summary tr .grid-2-column--form .checklist-table, .grid-2-column--form .user-form, .grid-2-column--form .user-login-form {
  grid-column: 1/-1;
}
@media only screen and (min-width: 1024px) {
  .grid-2-column--form .box, .grid-2-column--form .path-cart .checklist-table tr .checklist-table, .path-cart .checklist-table tr .grid-2-column--form .checklist-table,
  .grid-2-column--form .path-cart .checkout-order-summary tr .checklist-table,
  .path-cart .checkout-order-summary tr .grid-2-column--form .checklist-table,
  .grid-2-column--form .path-checkout .checklist-table tr .checklist-table,
  .path-checkout .checklist-table tr .grid-2-column--form .checklist-table,
  .grid-2-column--form .path-checkout .checkout-order-summary tr .checklist-table,
  .path-checkout .checkout-order-summary tr .grid-2-column--form .checklist-table, .grid-2-column--form .user-form, .grid-2-column--form .user-login-form {
    grid-column: 1/10;
  }
}
.grid-2-column--form .box .flow > * + *, .grid-2-column--form .path-cart .checklist-table tr .checklist-table .flow > * + *, .path-cart .checklist-table tr .grid-2-column--form .checklist-table .flow > * + *,
.grid-2-column--form .path-cart .checkout-order-summary tr .checklist-table .flow > * + *,
.path-cart .checkout-order-summary tr .grid-2-column--form .checklist-table .flow > * + *,
.grid-2-column--form .path-checkout .checklist-table tr .checklist-table .flow > * + *,
.path-checkout .checklist-table tr .grid-2-column--form .checklist-table .flow > * + *,
.grid-2-column--form .path-checkout .checkout-order-summary tr .checklist-table .flow > * + *,
.path-checkout .checkout-order-summary tr .grid-2-column--form .checklist-table .flow > * + *, .grid-2-column--form .user-form .flow > * + *, .grid-2-column--form .user-login-form .flow > * + * {
  --flow-space: .75rem;
}
.grid-2-column--form .box .box__image, .grid-2-column--form .path-cart .checklist-table tr .checklist-table .box__image, .path-cart .checklist-table tr .grid-2-column--form .checklist-table .box__image,
.grid-2-column--form .path-cart .checkout-order-summary tr .checklist-table .box__image,
.path-cart .checkout-order-summary tr .grid-2-column--form .checklist-table .box__image,
.grid-2-column--form .path-checkout .checklist-table tr .checklist-table .box__image,
.path-checkout .checklist-table tr .grid-2-column--form .checklist-table .box__image,
.grid-2-column--form .path-checkout .checkout-order-summary tr .checklist-table .box__image,
.path-checkout .checkout-order-summary tr .grid-2-column--form .checklist-table .box__image, .grid-2-column--form .user-form .box__image, .grid-2-column--form .user-login-form .box__image {
  margin-bottom: var(--spacing-default);
}
.grid-2-column--form aside {
  grid-row: 2;
  order: 4;
  grid-column: 1/-1;
}
@media only screen and (min-width: 1024px) {
  .grid-2-column--form aside {
    grid-column: 10/-1;
  }
}
.grid-2-column--form aside .box p, .grid-2-column--form aside .path-cart .checklist-table tr .checklist-table p, .path-cart .checklist-table tr .grid-2-column--form aside .checklist-table p,
.grid-2-column--form aside .path-cart .checkout-order-summary tr .checklist-table p,
.path-cart .checkout-order-summary tr .grid-2-column--form aside .checklist-table p,
.grid-2-column--form aside .path-checkout .checklist-table tr .checklist-table p,
.path-checkout .checklist-table tr .grid-2-column--form aside .checklist-table p,
.grid-2-column--form aside .path-checkout .checkout-order-summary tr .checklist-table p,
.path-checkout .checkout-order-summary tr .grid-2-column--form aside .checklist-table p, .grid-2-column--form aside .user-form p, .grid-2-column--form aside .user-login-form p {
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (min-width: 1024px) {
  .grid-2-column--form aside .box p, .grid-2-column--form aside .path-cart .checklist-table tr .checklist-table p, .path-cart .checklist-table tr .grid-2-column--form aside .checklist-table p,
  .grid-2-column--form aside .path-cart .checkout-order-summary tr .checklist-table p,
  .path-cart .checkout-order-summary tr .grid-2-column--form aside .checklist-table p,
  .grid-2-column--form aside .path-checkout .checklist-table tr .checklist-table p,
  .path-checkout .checklist-table tr .grid-2-column--form aside .checklist-table p,
  .grid-2-column--form aside .path-checkout .checkout-order-summary tr .checklist-table p,
  .path-checkout .checkout-order-summary tr .grid-2-column--form aside .checklist-table p, .grid-2-column--form aside .user-form p, .grid-2-column--form aside .user-login-form p {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.grid-2-column--form [class*=grid] {
  display: grid;
  align-items: start;
}
.grid-2-column--form .step-1 {
  align-items: stretch;
}
.grid-2-column--form .layout-grid {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .grid-2-column--form .layout-grid {
    display: grid;
  }
}

/* Layout two columns
-------------------------------------------*/
@media only screen and (min-width: 768px) {
  .layout-two-columns main > .container {
    display: grid;
    grid-template-columns: var(--grid-4);
    grid-gap: var(--grid-gap);
  }
}
.layout-two-columns main > .container .hero {
  grid-column: 1/-1;
  margin-bottom: 1rem;
  grid-row: 1;
}
.layout-two-columns main > .container .width-75 {
  grid-column: 1/4;
  margin-top: 0;
  grid-row: 2;
}
.layout-two-columns main > .container .width-25 {
  grid-column: 4/-1;
  margin-top: 0;
  grid-row: 2;
}

/* Path cart
-------------------------------------------*/
.path-cart main div div > h2.section-title,
.path-checkout main div div > h2.section-title {
  font-size: 31px;
  font-size: 3.1rem;
  text-transform: uppercase;
  font-weight: 800;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .path-cart main div div > h2.section-title,
  .path-checkout main div div > h2.section-title {
    font-size: 5.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .path-cart main div div > h2.section-title,
  .path-checkout main div div > h2.section-title {
    font-size: 74px;
    font-size: 7.4rem;
  }
}
.path-cart .package__icon,
.path-cart .package__bullet,
.path-cart .pdt-state,
.path-cart .package-status,
.path-checkout .package__icon,
.path-checkout .package__bullet,
.path-checkout .pdt-state,
.path-checkout .package-status {
  display: none;
}
.path-cart form form,
.path-checkout form form {
  display: none;
}
.path-cart .checkout-order-summary,
.path-checkout .checkout-order-summary {
  padding-bottom: var(--spacing-default);
}
.path-cart .checklist-table tr,
.path-cart .checkout-order-summary tr,
.path-checkout .checklist-table tr,
.path-checkout .checkout-order-summary tr {
  border-bottom: 1px dashed var(--color-border-alt);
  border-top: 1px dashed var(--color-border-top);
  padding: var(--spacing-default) 0;
}
.path-cart .checklist-table tr h2,
.path-cart .checkout-order-summary tr h2,
.path-checkout .checklist-table tr h2,
.path-checkout .checkout-order-summary tr h2 {
  font-size: 20px;
  font-size: 2rem;
}
.path-cart .checklist-table tr .package-title,
.path-cart .checkout-order-summary tr .package-title,
.path-checkout .checklist-table tr .package-title,
.path-checkout .checkout-order-summary tr .package-title {
  margin-bottom: var(--spacing-small);
  margin-top: var(--spacing-small);
}
.path-cart .checklist-table tr .form-item,
.path-cart .checkout-order-summary tr .form-item,
.path-checkout .checklist-table tr .form-item,
.path-checkout .checkout-order-summary tr .form-item {
  margin-bottom: 0;
}
.path-cart .checklist-table tr .form-actions,
.path-cart .checkout-order-summary tr .form-actions,
.path-checkout .checklist-table tr .form-actions,
.path-checkout .checkout-order-summary tr .form-actions {
  display: none;
}
.path-cart .checklist-table tr .content-list,
.path-cart .checkout-order-summary tr .content-list,
.path-checkout .checklist-table tr .content-list,
.path-checkout .checkout-order-summary tr .content-list {
  margin-top: 0;
}
.path-cart .checklist-table tr .package-price,
.path-cart .checkout-order-summary tr .package-price,
.path-checkout .checklist-table tr .package-price,
.path-checkout .checkout-order-summary tr .package-price {
  display: inline-block;
  padding-right: 5px;
}
.path-cart .checklist-table tr .btn,
.path-cart .checkout-order-summary tr .btn,
.path-checkout .checklist-table tr .btn,
.path-checkout .checkout-order-summary tr .btn {
  display: none;
}
.path-cart .checklist-table tr .package-price,
.path-cart .checklist-table tr .package-price + small,
.path-cart .checkout-order-summary tr .package-price,
.path-cart .checkout-order-summary tr .package-price + small,
.path-checkout .checklist-table tr .package-price,
.path-checkout .checklist-table tr .package-price + small,
.path-checkout .checkout-order-summary tr .package-price,
.path-checkout .checkout-order-summary tr .package-price + small {
  --text-color-default: #f4f4f4;
  font-size: 18px;
  font-size: 1.8rem;
}

.path-checkout .form-actions {
  margin-top: var(--spacing-default);
}

.path-checkout .fieldset-legend {
  font-size: 23px;
  font-size: 2.3rem;
  text-transform: uppercase;
  font-weight: 700;
}
.path-checkout .fieldset-legend a {
  font-size: 16px;
  font-size: 1.6rem;
}

.checkout-pane > legend + .fieldset-wrapper .fieldset-legend {
  font-weight: 300;
  font-size: 20px;
  font-size: 2rem;
}

.checkout-pane {
  border-bottom: 1px dashed var(--color-border-alt);
}

.checkout-progress {
  margin-bottom: var(--spacing-medium);
  text-align: center;
}
.checkout-progress .checkout-progress--step__current {
  color: #00aeef;
  border-bottom: 2px solid;
  padding: 0.5rem 0;
}
.checkout-progress li:before {
  margin-right: 0rem;
}
.checkout-progress li:not(.checkout-progress--step__current):before {
  color: #121212;
}
.checkout-progress li.checkout-progress--step {
  margin-right: var(--spacing-small);
}
.checkout-progress li a:visited {
  color: #121212;
  text-decoration-color: #f4f4f4;
}

.checkout-progress--step {
  display: inline;
  padding-right: 0;
  margin-left: 0;
}

.path-cart .form-actions,
.path-checkout .form-actions {
  justify-content: end;
  margin-top: 2rem;
}

.path-cart .form-actions,
.path-checkout .form-actions {
  align-items: center;
}
.path-cart .form-actions .link--previous,
.path-checkout .form-actions .link--previous {
  margin-top: 0;
}

.path-checkout .form-actions {
  flex-direction: row-reverse;
}

.path-cart .form-actions .form-submit:first-of-type {
  --cta-border: #00aeef;
  --cta-text-color:#00aeef;
  --cta-color: transparent;
  font-weight: 500;
}

.path-cart .checklist-table thead tr:first-of-type th {
  font-size: 16px;
  font-size: 1.6rem;
}

.cart--cart-block .cart-block--contents a {
  color: #ffffff;
  border-radius: 5px;
  padding: 0;
  text-align: center;
  display: block;
  background: #00aeef;
  padding-left: 0 !important;
}

.checkout-complete p {
  padding-bottom: var(--spacing-default);
}

/* Order history
-------------------------------------------*/
.order-history {
  overflow-x: auto;
}
.order-history .checklist-table thead tr:first-of-type th {
  font-size: 16px;
  font-size: 1.6rem;
}
.order-history .checklist-table td:nth-of-type(3) {
  width: 120px;
}
.order-history .checklist-table td:first-of-type {
  width: 50px;
}
.order-history .checklist-table td:nth-of-type(3) {
  width: inherit;
}
.order-history .checklist-table td:nth-of-type(2) {
  width: inherit;
}
.order-history .checklist-table td:nth-of-type(4) {
  font-weight: 800;
}
.order-history a {
  --link-color: #121212;
  text-decoration: none;
}

.path-order-report .responsive-enabled {
  background: #ffffff;
}
.path-order-report #block-portal22-sub-content {
  overflow-x: scroll;
  border-radius: var(--border-radius-alt);
}
.path-order-report #block-portal22-sub-content th {
  padding-top: 1em;
}

.path-delegation-form .delegation-logo {
  margin-bottom: 2rem;
}
.path-delegation-form .delegation-logo img {
  margin-bottom: 2rem;
}
.path-delegation-form .delegation-logo p {
  margin-bottom: 3rem;
}
.path-delegation-form .delegation-logo h3 {
  margin-bottom: 1rem;
}
.path-delegation-form .cta-btn {
  margin-bottom: 4rem;
}
.path-delegation-form #block-portal22-sub-content > .responsive-enabled {
  margin-bottom: 6rem;
  page-break-inside: auto;
}
.path-delegation-form .responsive-enabled {
  outline: 2px solid black;
}
.path-delegation-form .main-header + tbody tr td {
  padding: 0;
  text-align: center;
}
.path-delegation-form .main-header tr th {
  text-align: center;
  font-size: 2.5rem;
  margin: 0;
  padding: 1rem;
  background: #fecccd;
}
.path-delegation-form .inner-table tr th {
  margin-bottom: 0;
  padding: 1rem;
  text-align: center;
  font-size: 1.5rem;
}
.path-delegation-form .inner-table thead > tr {
  border-bottom: 2px solid;
}
.path-delegation-form .inner-table thead > tr > th {
  border-right: 2px solid;
}
.path-delegation-form .inner-table thead > tr > th:last-of-type {
  border-right: none;
}
.path-delegation-form .inner-table tbody > tr {
  border-bottom: 2px solid;
}
.path-delegation-form .inner-table tbody > tr > td {
  border-right: 2px solid;
}
.path-delegation-form .inner-table tbody > tr > td:last-child {
  border-right: none;
}
.path-delegation-form .inner-table tbody > tr:last-child {
  border-bottom: none;
}
.path-delegation-form .inner-table td {
  font-size: 18px;
  font-size: 1.8rem;
  padding: 10px !important;
}
.path-delegation-form table.inner-table {
  margin-bottom: 0;
}
.path-delegation-form .main-header + tbody tr td.footer-msg {
  padding: 2rem;
}
.path-delegation-form .main-header + tbody tr td.footer-msg h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-size: 2rem;
}
.path-delegation-form .main-header + tbody tr td.footer-msg p {
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
}

.exhibitors {
  margin-bottom: 6rem;
}
.exhibitors .exhibitor-details {
  padding: 1rem;
  border-bottom: none;
  padding-left: 0;
  padding-bottom: 2rem;
}
.exhibitors .exhibitor-details p span:first-of-type {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .exhibitors .exhibitor-details p span:first-of-type {
    width: 26rem;
    display: inline-block;
  }
}
.exhibitors .exhibitor-details p span:nth-of-type(2) {
  font-weight: 500;
}
.exhibitors .exhibitor-details .exhibitor-name span {
  font-weight: 600 !important;
}
.exhibitors .exhibitor-details > * {
  margin-bottom: 5px;
  font-weight: 600;
}
.exhibitors .responsive-enabled {
  outline: none;
}
.exhibitors .responsive-enabled tr {
  border: 2px solid black;
}
.exhibitors .responsive-enabled tr > td {
  border-right: 2px solid;
  font-size: 18px;
  font-size: 1.8rem;
  padding: 10px !important;
}
.exhibitors .responsive-enabled tr > td:last-child {
  border-right: none;
}

.delegation-row {
  margin-bottom: 6rem;
}

.delegation-logo img {
  padding: 12px 0;
  background: white;
}

/* Typography */
/* Headings
-------------------------------------------*/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  --text-color-default: #0D0C0C;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  text-transform: none;
  hyphens: none;
  font-weight: 700;
  margin: 0 0 1.6rem;
  margin: 0 0 var(--spacing-default);
  color: var(--text-color-default);
}
h1 a,
h1 a:visited, .h1 a,
.h1 a:visited, h2 a,
h2 a:visited, .h2 a,
.h2 a:visited, h3 a,
h3 a:visited, .h3 a,
.h3 a:visited, h4 a,
h4 a:visited, .h4 a,
.h4 a:visited, h5 a,
h5 a:visited, .h5 a,
.h5 a:visited {
  color: #121212;
}
h1 a:hover,
h1 a:visited:hover, .h1 a:hover,
.h1 a:visited:hover, h2 a:hover,
h2 a:visited:hover, .h2 a:hover,
.h2 a:visited:hover, h3 a:hover,
h3 a:visited:hover, .h3 a:hover,
.h3 a:visited:hover, h4 a:hover,
h4 a:visited:hover, .h4 a:hover,
.h4 a:visited:hover, h5 a:hover,
h5 a:visited:hover, .h5 a:hover,
.h5 a:visited:hover {
  color: #2e35aa;
}
h1::after, .h1::after, h2::after, .h2::after, h3::after, .h3::after, h4::after, .h4::after, h5::after, .h5::after {
  background: var(--text-color-default);
  margin-top: var(--spacing-default);
}

/* h1 */
h1,
.h1 {
  font-size: 31px;
  font-size: 3.1rem;
  text-transform: uppercase;
  font-weight: 800;
}
@media only screen and (min-width: 768px) {
  h1,
  .h1 {
    font-size: 5.6rem;
  }
}

/* h2 */
h2,
.h2 {
  font-size: 23px;
  font-size: 2.3rem;
}
@media only screen and (min-width: 768px) {
  h2,
  .h2 {
    font-size: 4.2rem;
  }
}

/* h3 */
h3,
.h3 {
  font-size: 18px;
  font-size: 1.8rem;
}
@media only screen and (min-width: 1024px) {
  h3,
  .h3 {
    font-size: 3.1rem;
  }
}

/* h4 */
h4,
.h4 {
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (min-width: 1024px) {
  h4,
  .h4 {
    font-size: 2.3rem;
  }
}

/* h5 */
.h5 h5,
.h5 .h5 {
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (min-width: 1024px) {
  .h5 h5,
  .h5 .h5 {
    font-size: 1.7rem;
  }
}

/* Page title */
h1.page-title {
  font-size: 42px;
  font-size: 4.2rem;
}
@media only screen and (min-width: 768px) {
  h1.page-title {
    font-size: 56px;
    font-size: 5.6rem;
    margin-bottom: var(--spacing-medium);
  }
}
@media only screen and (min-width: 1024px) {
  h1.page-title {
    font-size: 74px;
    font-size: 7.4rem;
  }
}

/* Section title */
h2.section-title {
  font-size: 42px;
  font-size: 4.2rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: var(--spacing-large);
  margin-top: var(--spacing-medium);
}
@media only screen and (min-width: 1024px) {
  h2.section-title {
    margin-bottom: var(--spacing-large);
  }
}
h2.section-title--small {
  font-size: 31px;
  font-size: 3.1rem;
  text-transform: uppercase;
  font-weight: 700;
}
h2.section-title--big {
  font-size: 56px;
  font-size: 5.6rem;
}
h2.section-title--medium {
  font-size: 56px;
  font-size: 5.6rem;
  padding-bottom: 0px !important;
}

header .section-title {
  margin-bottom: var(--spacing-default);
  margin-top: var(--spacing-default);
}

/* Links heading */
.links-heading {
  --spacing-default:0;
  font-size: 16px;
  font-size: 1.6rem;
  border-bottom: 1px solid var(--color-border);
  text-transform: uppercase;
  font-weight: 300;
  padding-bottom: 0.75rem;
}

/* Strip heading */
.strip-heading {
  --text-color-default: #ffffff;
  --strip-bg: #000;
  background: var(--strip-bg);
  border-radius: var(--border-radius-default);
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 800;
  padding: 0.5em 1.6rem;
}

/* Paragraphs
-------------------------------------------*/
p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0;
  color: var(--text-color-default);
  font-weight: 300;
}
@media only screen and (min-width: 768px) {
  p {
    font-size: 20px;
    font-size: 2rem;
  }
}

/* Large paragraphs (Critical: All) */
.primary-msg p {
  --text-color-default: #414141;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  text-align: center;
  hyphens: none;
}
@media only screen and (min-width: 768px) {
  .primary-msg p {
    width: 65ch;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.35;
  }
}

.section-msg {
  padding-top: 3em;
  padding-top: var(--spacing-large);
  padding-bottom: 3em;
  padding-bottom: var(--spacing-large);
}

/* Small paragraphs (Critical: All) */
.secondary {
  font-size: var(--font-size-small);
}

/* Lists
-------------------------------------------*/
ul, ol {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.8rem;
  font-size: var(--font-size-default);
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
}

/* Lists (Critical: All) */
ol, ul {
  list-style-type: none;
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
  margin-left: 0;
  padding-left: 0;
  font-size: 18px;
  font-size: 1.8rem;
  font-size: var(--font-size-default);
}
ol li, ul li {
  font-size: 18px;
  font-size: 1.8rem;
  color: var(--text-color-default);
}

ol li {
  margin-left: 2rem;
  line-height: 1.2;
  list-style: number;
}

ol li:before {
  margin-right: 1.6rem;
  color: #00aeef;
}

ul li:before {
  color: #00aeef;
}

/* 2 column list */
@media only screen and (min-width: 1024px) {
  .two-col {
    column-count: 2;
    column-gap: 3.2rem;
  }
}

/* list style */
.box.manual-content ul li, .manual-content.user-form ul li, .manual-content.user-login-form ul li, .path-cart .checklist-table tr .manual-content.checklist-table ul li,
.path-cart .checkout-order-summary tr .manual-content.checklist-table ul li,
.path-checkout .checklist-table tr .manual-content.checklist-table ul li,
.path-checkout .checkout-order-summary tr .manual-content.checklist-table ul li {
  margin-bottom: var(--spacing-small);
}

.box.manual-content ul, .manual-content.user-form ul, .manual-content.user-login-form ul, .path-cart .checklist-table tr .manual-content.checklist-table ul,
.path-cart .checkout-order-summary tr .manual-content.checklist-table ul,
.path-checkout .checklist-table tr .manual-content.checklist-table ul,
.path-checkout .checkout-order-summary tr .manual-content.checklist-table ul,
ul.content-list {
  /*li{
   display: flex;
   align-items: center;

     &:before{
       content: '';
       color: $primary;
       display: inline-block;
       @include font-size(30);
       line-height: 0;
       margin-right: 5px;
     }
  }

  li:not(:last-child){
     margin-bottom: 5px;
  }*/
}
.box.manual-content ul li, .manual-content.user-form ul li, .manual-content.user-login-form ul li, .path-cart .checklist-table tr .manual-content.checklist-table ul li,
.path-cart .checkout-order-summary tr .manual-content.checklist-table ul li,
.path-checkout .checklist-table tr .manual-content.checklist-table ul li,
.path-checkout .checkout-order-summary tr .manual-content.checklist-table ul li,
ul.content-list li {
  background: url(../img/icons/bullet.svg) no-repeat 0 7px;
  background-size: 7px;
  padding-left: 2rem;
}
.box.manual-content ul li:before, .manual-content.user-form ul li:before, .manual-content.user-login-form ul li:before, .path-cart .checklist-table tr .manual-content.checklist-table ul li:before,
.path-cart .checkout-order-summary tr .manual-content.checklist-table ul li:before,
.path-checkout .checklist-table tr .manual-content.checklist-table ul li:before,
.path-checkout .checkout-order-summary tr .manual-content.checklist-table ul li:before,
ul.content-list li:before {
  display: none;
}

/* Links
-------------------------------------------*/
/* Anchors (Critical: All) */
a, a:visited {
  color: #00aeef;
  color: var(--link-color);
  text-decoration-color: #00aeef;
  text-decoration-color: var(--link-color);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.2em;
  transition: all var(--duration-default) ease;
}

a:focus {
  color: #00aeef;
  outline: thin dotted;
}

a:visited {
  color: #00aeef;
  text-decoration-color: #00aeef;
  color: var(--link-color);
  text-decoration-color: var(--link-color);
}

a:hover {
  color: #2e35aa;
}

a:hover,
a:active {
  outline: 0;
}

a:link {
  transition: color var(--duration-default) ease;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip: ink;
}

/* Tables
-------------------------------------------*/
/* Tables (Critical: All) */
table {
  margin: 0 0 var(--spacing-default);
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
  font-family: inherit;
  width: 100%;
  display: table;
}

th, td {
  padding: 1rem var(--spacing-default) 1rem var(--space-xs);
  font-size: 16px;
  font-size: 1.6rem;
  text-align: left;
  vertical-align: middle;
  font-weight: 400;
}

td p {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
}

th {
  --text-color-default: #0D0C0C;
  color: var(--text-color-default);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
  padding-bottom: 1em;
  padding-top: 1em;
  background: #f4f4f4;
}

tr:nth-child(even),
.checklist-item:nth-child(even) {
  background: #f4f4f4;
  border-radius: var(--border-radius-default);
}

tr.odd-1 td {
  background: #ffffff !important;
}

tr.even-1 td {
  background: #f4f4f4 !important;
}

/* Others
-------------------------------------------*/
/* Text styles (Critical: All) */
[contenteditable] {
  cursor: pointer;
  cursor: text;
}

dfn {
  font-style: italic;
}

b, strong {
  font-weight: 700;
}

i, em {
  font-style: italic;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: inherit;
}

small {
  font-size: 14px;
  font-size: 1.4rem;
  font-style: normal;
  display: inline-block;
}

.display {
  font-size: var(--font-size-xx-large);
}

.webform-element-description {
  font-size: 16px;
  font-size: 1.6rem;
}

/* Components */
/* Buttons
-------------------------------------------*/
/* CTA + Submit */
.package.box a, .package.user-form a, .package.user-login-form a, .path-cart .checklist-table tr .package.checklist-table a,
.path-cart .checkout-order-summary tr .package.checklist-table a,
.path-checkout .checklist-table tr .package.checklist-table a,
.path-checkout .checkout-order-summary tr .package.checklist-table a,
.cta-btn a,
.cta-btn a:visited,
.form-submit {
  color: #ffffff;
  color: var(--cta-text-color);
  padding: 1rem 2rem;
  background-color: #00aeef;
  background-color: var(--cta-color);
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  margin: 0;
  border: 1px solid var(--cta-border);
  border-radius: var(--border-radius-default);
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  transition: all var(--duration-default) ease;
  position: relative;
  line-height: 1.2;
  text-transform: uppercase;
}

.cta-btn a:hover,
.form-submit:hover {
  --cta-color: #2e35aa;
  --cta-border: #2e35aa;
  transform: translate(0px, -2px);
  transition: all 0.2s ease-out;
  top: -2px;
}

.cta-btn a:focus,
.form-submit:focus {
  --cta-color: #121212;
  --cta-border: #121212;
}

/*  CTA full */
.cta-btn.full a {
  display: block;
}

/* CTA primary  */
.cta-btn.primary a {
  --cta-color:#00aeef;
  --cta-border:#00aeef;
  text-transform: uppercase;
  background-color: #00aeef;
}
.cta-btn.primary a:hover {
  --cta-color: #ee5500;
  --cta-border:#ee5500;
  background-color: var(--cta-color);
}

/* CTA Disabled */
.cta-btn.disabled a,
.btn.is-current a,
.package.box .btn.is-current a,
.path-cart .checklist-table tr .package.checklist-table .btn.is-current a,
.path-cart .checkout-order-summary tr .package.checklist-table .btn.is-current a,
.path-checkout .checklist-table tr .package.checklist-table .btn.is-current a,
.path-checkout .checkout-order-summary tr .package.checklist-table .btn.is-current a,
.cta-btn.disabled input,
.disabled-fm .form-submit {
  --cta-color:#f4f4f4;
  --cta-border:#f4f4f4;
  --cta-text-color:#cccccc;
  text-transform: uppercase;
  background-color: #f4f4f4;
  font-weight: 300;
  text-decoration: line-through;
  pointer-events: none;
  background: #f4f4f4 !important;
  border-color: #f4f4f4 !important;
}

.package .form-actions.disabled:after {
  display: none;
}

/* CTA outline  */
.cta-btn.outline a,
.webform-button--previous {
  --cta-border: #00aeef;
  --cta-text-color: #00aeef;
  --cta-color: transparent;
  font-weight: 400;
}

.cta-btn.outline a:hover,
.cta-btn.outline.alt a:hover {
  --cta-color: #2e35aa;
  --cta-text-color: #ffffff;
}

.cta-btn.outline a:focus,
.cta-btn.outline.alt a {
  --cta-color: #121212;
  --cta-border: #121212;
  --cta-text-color: #ffffff;
}

/* CTA + LINK arrow style */
.cta-btn.arrow a {
  text-align: left;
}

.cta-btn.arrow a:after {
  position: absolute;
  right: 0;
  padding: 0 2rem 0 2rem;
}

.cta-btn-link.arrow a:after {
  text-indent: 5px;
}

.cta-btn-link a {
  font-weight: bold;
  text-decoration: none;
}

/* Tag link */
.tag a {
  --cta-text-color: #606060;
  --cta-border: #606060;
  --cta-color: transparent;
  font-size: 14px;
  font-size: 1.4rem;
  border: 1px solid #606060;
  border: 1px solid var(--cta-border);
  background: transparent;
  background: var(--cta-color);
  padding: 0.75rem 1.6rem;
  color: #606060;
  color: var(--cta-text-color);
  text-decoration: none;
  display: inline-block;
}
.tag a:hover {
  --cta-color: #121212;
  --cta-text-color: #ffffff;
  --cta-border: #121212;
}

/* Inline-link cta */
.inline-link a {
  text-decoration: none;
  font-weight: 400;
}

a.inline-link:visited {
  color: #00aeef;
  color: var(--link-color);
}

/* Twitter cta */
.cta-btn.twitter a {
  background: url(../img/icons/twitter.svg) no-repeat 12px 10px;
}
.cta-btn.twitter a:hover {
  background: url(../img/icons/twitter-alt.svg) var(--cta-color) no-repeat 12px 10px;
}

/* cta duo */
.cta-btn-duo,
.form-actions {
  display: flex;
  gap: 1em;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .cta-btn-duo,
  .form-actions {
    flex-direction: row;
  }
}
.cta-btn-duo input,
.form-actions input {
  margin-top: 0 !important;
}

/* Switcher */
.language-switcher {
  background: url("../img/icons/globe-icon.svg") 98%/13% no-repeat transparent;
  background-size: 20px;
  background-position: 15px;
}

.lang-dropdown-select-element {
  --cta-text-color: #6F6F6F;
  --cta-border: #6F6F6F;
  --cta-color: transparent;
  background: url("../img/icons/chevron-select.svg") 90%/13% no-repeat transparent;
  color: #3C3C3C;
  color: var(--cta-text-color);
  font-weight: 400;
  border-radius: var(--border-radius-default);
  border: 1px solid var(--cta-border);
  padding: 1rem 2rem;
  background-color: transparent;
  background-color: var(--cta-color);
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  height: 100%;
  background-size: 15px;
  padding-left: 3em;
}
.lang-dropdown-select-element:before {
  content: "";
  display: block;
  border: 1px solid red;
  width: 15px;
  height: 15px;
}

/* Accordion
-------------------------------------------*/
.ui-accordion-header,
.views-accordion-header {
  background: #ffffff;
  padding: 0.75em;
  border: none;
  width: 100%;
  text-align: left;
  border-radius: var(--border-radius-default);
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  box-sizing: border-box;
  color: #121212;
}

.accordion.active,
.views-accordion-header.ui-state-active {
  cursor: pointer;
  background: url(../img/icons/icons-sprite.svg) #00aeef 2px -396px no-repeat;
  background-size: 45px;
  color: #ffffff;
  border-radius: var(--border-radius-default);
}

.accordion,
.views-accordion-header {
  cursor: pointer;
  background: url(../img/icons/icons-sprite.svg) #ffffff 2px -350px no-repeat;
  background-size: 45px;
  border-radius: var(--border-radius-default);
}

.ui-accordion .ui-accordion-header {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  padding-left: 5rem;
}

.panel {
  --panelbg:#fff;
  padding: 1em;
}

.panel.transparent {
  --panelbg:transparent;
  padding: 1em 0em;
  padding-bottom: 0;
}

.accordion-wrapper {
  margin-bottom: 1em;
}

.ui-accordion-content {
  height: auto !important;
}

.views-accordion-header .accordion {
  background: transparent;
}

.views-accordion-header .ui-accordion-header-icon {
  display: none;
}

/* Pagination
-------------------------------------------*/
.pager__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--spacing-medium);
  margin-bottom: var(--spacing-default);
}
.pager__items .pager__item a {
  --link-color: #121212;
  padding: 0px 5px 5px;
  margin: 0 var(--spacing-small);
  width: 10px;
  text-indent: 0px;
  height: 10px;
  position: relative;
  line-height: 9px;
  text-decoration: none;
  font-size: 18px;
  font-size: 1.8rem;
}
.pager__items .pager__item a:hover {
  color: #2e35aa;
  font-weight: 800;
}
.pager__items .pager__item.is-active a {
  --link-color: #fff;
  font-weight: 800;
  background: #00aeef;
  padding-top: 5px;
  border-radius: 5px;
  padding-right: 8px;
  padding-left: 8px;
}
.pager__items .pager__item.is-active a:hover {
  color: #ffffff;
}
.pager__items .pager__item--last a,
.pager__items .pager__item--next a,
.pager__items .pager__item--last a:hover,
.pager__items .pager__item--next a:hover {
  border: none;
  width: inherit;
}

/* Drupal System + Print css */
@media print {
  /*  6. LAYOUT - PRINT

  INDEX
  1............Root
  2............Typography
  3............Colours
  4............Elements

  */
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  h2, h3 {
    orphans: 3;
    widows: 3;
    page-break-after: avoid;
  }
  p {
    orphans: 3;
    widows: 3;
  }
  pre, blockquote {
    border: 1px solid #606060;
    page-break-inside: avoid;
  }
  a, a:visited {
    text-decoration: underline;
  }
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr {
    page-break-inside: avoid;
  }
  p.print-only {
    display: block;
  }
  .toggle-section {
    display: block;
  }
  .print-content select.conference-select {
    display: none;
  }
  .user-logged-in.path-manual .cta-btn.skip-link,
  .user-logged-in.path-manual .page-header,
  .user-logged-in.path-manual .box.box--contact.flow,
  .user-logged-in.path-manual .box--contact.flow.user-form,
  .user-logged-in.path-manual .box--contact.flow.user-login-form,
  .user-logged-in.path-manual .path-cart .checklist-table tr .box--contact.flow.checklist-table,
  .path-cart .checklist-table tr .user-logged-in.path-manual .box--contact.flow.checklist-table,
  .user-logged-in.path-manual .path-cart .checkout-order-summary tr .box--contact.flow.checklist-table,
  .path-cart .checkout-order-summary tr .user-logged-in.path-manual .box--contact.flow.checklist-table,
  .user-logged-in.path-manual .path-checkout .checklist-table tr .box--contact.flow.checklist-table,
  .path-checkout .checklist-table tr .user-logged-in.path-manual .box--contact.flow.checklist-table,
  .user-logged-in.path-manual .path-checkout .checkout-order-summary tr .box--contact.flow.checklist-table,
  .path-checkout .checkout-order-summary tr .user-logged-in.path-manual .box--contact.flow.checklist-table,
  .user-logged-in.path-manual .section.footer-bottom,
  .user-logged-in.path-manual .data-drupal-messages,
  .user-logged-in.path-manual .portal-top,
  .user-logged-in.path-manual .adminside {
    display: none;
  }
  .user-logged-in.path-manual h1.page-title {
    font-size: 30px;
    margin-bottom: 20px;
    padding-bottom: 0;
  }
  .user-logged-in.path-manual .section.hero {
    margin: 0 !important;
    padding: 0 !important;
    padding-top: 20px !important;
  }
  .user-logged-in.path-manual .box, .user-logged-in.path-manual .user-form, .user-logged-in.path-manual .user-login-form, .user-logged-in.path-manual .path-cart .checklist-table tr .checklist-table, .path-cart .checklist-table tr .user-logged-in.path-manual .checklist-table,
  .user-logged-in.path-manual .path-cart .checkout-order-summary tr .checklist-table,
  .path-cart .checkout-order-summary tr .user-logged-in.path-manual .checklist-table,
  .user-logged-in.path-manual .path-checkout .checklist-table tr .checklist-table,
  .path-checkout .checklist-table tr .user-logged-in.path-manual .checklist-table,
  .user-logged-in.path-manual .path-checkout .checkout-order-summary tr .checklist-table,
  .path-checkout .checkout-order-summary tr .user-logged-in.path-manual .checklist-table {
    padding: 0;
  }
  .path-delegation-form .inner-table td {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .cta-btn.skip-link {
    display: none !important;
  }
  .path-delegation-form header.page-header {
    display: none !important;
  }
  header.page-header + .container {
    display: none !important;
  }
  .contextual {
    display: none !important;
  }
  .pagebreak {
    clear: both;
    page-break-after: always;
  }
  .exhibitor-details p span:first-of-type {
    font-size: 18px;
    font-size: 1.8rem;
    width: 15rem;
    display: inline-block;
    font-weight: 500;
  }
}

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