* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --colour-orange: #ff7600;
  --colour-red: #c70000;
  --colour-yellow: #ffee55;
  --colour-deep-yellow: #ffcc00;
  --colour-blue: #6496c8;
  --colour-pale-blue: #e5f2f8;
  --colour-light-blue: #8ecbea;
  --colour-mid-blue: #417cb8;
  --colour-dark-blue: #27496d;

  --colour-header-dark-blue: #0d8ccb;
  --colour-header-light-blue: #38ace5;

  --colour-light-green: #0a9c2a;
  --colour-mid-green: #238338;
  --colour-dark-green: #1c672c;

  --colour-text-default: #333;
  --colour-text-light: #808080;

  --small: 0.625em;
}

body,
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  min-width: 320px;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

/* reset */
blockquote,
body,
button,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
pre,
ul {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button,
select {
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
}

a,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:root {
  overflow-x: hidden;
  height: 100%;
  font-size: 100%;
}

body {
  background: #fff;
  min-height: 100%;
  width: 100%;
  font-family:
    -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Trebuchet MS", Arial, sans-serif;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 1em;
  line-height: 1.25;
  color: #333;
  color: var(--colour-text-default);
}

.small {
  font-size: 0.625em;
  font-size: var(--small);
}

.footnote {
  color: #86a2bf;
  margin: 0.35em 0 0 0;
}

.footnote-link {
  color: #86a2bf;
  font-size: 0.625em;
  font-size: var(--small);
  vertical-align: text-top;
}

.footnote-link:active {
  color: var(--colour-dark-blue);
}

[v-cloak] {
  display: none;
}

/* Base font size scaling
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* > 320px */
@media screen and (min-width: 20em) {
  body {
    /* scale base font-size smoothly across viewport widths */
    /* font-size: calc([minimum size] + ([maximum size] - [minimum size]) * ((100vw - [minimum viewport width]) / ([maximum viewport width] - [minimum viewport width])));*/
    font-size: calc(0.8em + (1.6 - 0.8) * ((100vw - 20em) / (87.5 - 20)));
  }
}

/* > 1400px */
@media (min-width: 87.5em) {
  /* cap max font size */
  body {
    font-size: 1.6em;
    line-height: 1.4;
  }
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #333;
  color: var(--colour-text-default);
  text-decoration: underline;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:-webkit-any-link {
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.logo-link {
  display: inline-block;
}

/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1,
h2,
h3,
h4 {
  margin: 0 0 0.5em;
  font-weight: bold;
  line-height: 1.1;
}

h1 {
  font-size: 2.25em;
}

h2 {
  font-size: 1.35em;
}

h3 {
  font-size: 1.15em;
}

h4 {
  font-size: 1em;
}

p + p {
  margin-top: 1em;
}

h1 {
  color: #417cb8;
  color: var(--colour-mid-blue);
}

.header-link {
  color: var(--colour-dark-blue);
  text-decoration: underline;
}

.section-heading {
  font-size: 2.25em !important;
  font-weight: bold !important;
  color: var(--colour-dark-blue);
}

/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

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

.sr-only {
  display: none;
}

strong {
  font-weight: bold;
}

pre,
code {
  font-family: monospace;
  white-space: pre-line;
  font-size: small;
  margin: 0.5em 0;
  padding: 0.5em;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 0.2em;
}

.center {
  text-align: center;
}

.shadow {
  -webkit-filter: drop-shadow(0 0 13px rgba(58, 100, 139, 0.5));
  filter: drop-shadow(0 0 13px rgba(58, 100, 139, 0.5));
}

/* Scaffolding
–––––––––––––––––––––––––––––––––––––––––––––––––– */
main {
  overflow: hidden;
}

.flex-order {
  display: flex;
  flex-direction: column;
}

/* > 600px */
/* point at which we come out of single column */
@media (min-width: 37.5em) {
  .row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
  }

  .col {
    display: flex;
    flex-direction: column;
  }
}

.container {
  position: relative;
  width: 100%;
  /* max container (page content) width */
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2em;
}

/* > 400px */
@media (min-width: 25em) {
  .container {
    width: 90%;
    padding: 0;
  }
}

/* > 750px */
@media (min-width: 46.875em) {
  .one-third {
    width: 33.3333333333%;
  }

  .one-half {
    width: 50%;
  }
}

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input:focus,
button:focus,
select:focus {
  outline: 0;
}

input,
textarea,
select,
button {
  font-size: 1em;
}

textarea {
  resize: vertical;
}

label {
  color: #111;
}

legend {
  padding-bottom: 0.5em;
}

input[type="text"],
input[type="search"],
input[type="email"],
input[type="url"],
input[type="password"],
textarea {
  padding: 0.35em 0.65em;
  border-radius: 0.2em;
  width: 100%;
  border: 1px solid #ccc;
  text-align: left;
  background: white;
  -webkit-appearance: none;
  font-size: 0.75em;
}

input[type="text"],
input[type="search"],
input[type="email"],
input[type="url"],
input[type="password"] {
  width: 100%;
}

input[type="email"] {
  max-width: 32em;
}

input[type="text"]:focus,
input[type="search"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus {
  outline: 0;
  border-color: #4697e4;
}

fieldset {
  margin: 1em 0 1em 0;
}

legend {
  font-weight: bold;
}

::-webkit-input-placeholder {
  color: #51747b;
}

::-moz-placeholder {
  color: #51747b;
}

:-ms-input-placeholder {
  color: #51747b;
}

:-moz-placeholder {
  color: #51747b;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* reset */
button,
.button {
  display: inline-block;
  padding: 0.4em 0.5em;
  font-size: 1em;
  line-height: 1;
  appearance: none;
  border: none;
  text-align: center;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
}

button:focus,
.button:focus,
button:active,
.button:active {
  outline: none;
  user-select: none;
}

/* base */
button,
.button {
  color: #333;
  color: var(--colour-text-default);
  border-radius: 0.3em;
  border: 0.1em solid #ccc;
  border-bottom-color: #808080;
  border-bottom-color: var(--colour-text-light);
  box-shadow: 0 0.3em #808080;
  box-shadow: 0 0.3em var(--colour-text-light);
  background: white;
}

button:active,
.button:active {
  background: #ddd;
  box-shadow: 0 0.1em #808080;
  box-shadow: 0 0.1em var(--colour-text-light);
  transform: translateY(0.2em);
}

/* > 600px */
@media (min-width: 37.5em) {
  .asblock {
    display: block;
    width: 100%;
  }
}

/* theme */
.primary {
  color: #fff;
  font-weight: bold;
  border: none;
  background: #238338;
  background: var(--colour-mid-green);
  box-shadow: 0 0.175em #1c672c;
  box-shadow: 0 0.175em var(--colour-dark-green);
}

.primary:active {
  background: #1c672c;
  background: var(--colour-dark-green);
  box-shadow: 0 0.075em #154920;
}

.secondary {
  color: #fff;
  font-weight: bold;
  border: none;
  background: #6496c8;
  background: var(--colour-blue);
  box-shadow: 0 0.175em #346393;
}

.secondary:active {
  background: #417cb8;
  background: var(--colour-mid-blue);
  box-shadow: 0 0.075em #27496d;
  box-shadow: 0 0.075em var(--colour-dark-blue);
}

/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside;
}

ol {
  list-style: decimal inside;
}

ol,
ul {
  padding-left: 0;
  margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5em 0 1.5em 3em;
}

li {
  margin-bottom: 1em;
}

/* Sections
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.section {
  padding: 3em 0;
  position: relative;
}

/* Header
–––––––––––––––––––––––––––––––––––––––––––––––––– */
header {
  margin: 1em 0;
}

header .container {
  padding: 0;
}

header .row {
  display: flex;
  justify-content: space-evenly;
}

header .tel {
  text-decoration: none;
  font-weight: 600;
  color: #6496c8;
  color: var(--colour-blue);
}

.tel {
  padding-left: 1.5em;
  background: url(../../supplier2/join/images/telephone.svg) no-repeat left top;
}

/* > 400px */
@media (min-width: 25em) {
  header .row {
    justify-content: flex-end;
  }
}

/* section: Hero
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.hero {
  padding: 0;
}

.hero .welcome {
  text-align: center;
}

.welcome .title {
  font-size: 2.25em;
  margin-top: 1em;
  font-weight: bold;
}

.welcome .sub-title {
  font-size: 1.35em;
  font-weight: 600;
}

.hero .row {
  align-items: flex-start;
}

.hero h1,
.hero h2,
p {
  color: #27496d;
  color: var(--colour-dark-blue);
}

.logo {
  width: 160px;
  height: 140px;
}

.background {
  position: absolute;
  overflow: hidden;
  bottom: -11em;
  width: 100vw;
  height: 100%;
}

.see-how-much-link {
  margin: 0;
  background: var(--colour-mid-green);
  color: white;
  font-weight: bold;
  display: inline-flex;
  padding: 0.35em 0.75em 0.35em 0.35em;
  font-size: 1.2em;
  border-radius: 60px;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  text-align: left;
  line-height: 1;
}

@media (min-width: 768px) {
  .see-how-much-link {
    padding: 0.25em 1em 0.25em 0.25em;
    font-size: 1em;
  }
}

.see-how-much-link img {
  margin: 0 0.35em;
  width: auto;
  height: 1.35em;
}

.how.revenue-estimator:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  -webkit-transform: skewY(-8deg);
  transform: skewY(-8deg);
  z-index: 1;
  background: linear-gradient(
    90deg,
    var(--colour-mid-green),
    var(--colour-dark-green)
  );
}

.how.revenue-estimator:after {
  content: none;
}

.supplier-logos {
  min-height: 6em;
  text-align: center;
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  padding: 0;

  width: 90%;
  margin: 3em auto 0;
}

.supplier-logos .row {
  justify-content: space-evenly;
  align-items: center;
  gap: 1.25em;
  row-gap: 1em;
  flex-wrap: wrap;
  margin: 0.5em 0 0 0;
  border-top: 1px solid white;
  display: flex;
  padding-top: 0.75em;
  width: 100%;
}

.supplier-logos p {
  color: white;
}

.row.locale-version {
  background: white;
  border-radius: 4px;
  padding: 1em;
  border-top: none;
}

.row.locale-version.sml {
  width: auto;
  padding: 1em;
}

/* > 750px */
@media (min-width: 46.875em) {
  .hero .one-half:first-of-type {
    width: 60%;
  }

  .hero .one-half {
    width: 40%;
  }
}

#sun {
  position: relative;
  top: 5em;
  left: 48%;
  z-index: -1;
}

#hills {
  position: absolute;
  top: 16em;
  min-width: 57.5em;
  left: 0;
}

/* > 600px */
/* point at which we come out of single column */
@media (min-width: 37.5em) {
  .logo {
    width: 188px;
    height: 165px;
  }

  .hero .welcome {
    text-align: left;
  }

  #sun {
    top: 0;
  }

  #hills {
    top: 18em;
  }
}

/* > 750px */
@media (min-width: 46.875em) {
  .column.signup {
    display: flex;
    justify-content: flex-end;
  }

  #hills {
    top: 13em;
  }
}

/* > 1366px */
@media (min-width: 85.375em) {
  #hills {
    top: 12em;
  }
}

/* > 1600px */
@media (min-width: 100em) {
  #hills {
    top: 9em;
  }

  .supplier-logos {
    max-width: 1400px;
    width: 100%;
  }

  .supplier-logos .row {
    gap: 1.75em;
  }
}

.categories-line {
  width: 100%;
  position: relative;
  margin: 2em auto 0;
  min-height: 7em;
}

.categories-line.lazy-bg-loaded {
  background: url(../../supplier2/join/images/categories-line.svg) no-repeat
    center center;
  background-size: cover;
}

/* > 400px */
@media (min-width: 25em) {
  .categories-line {
    margin: 2em auto;
  }
}

/* > 750px */
@media (min-width: 46.875em) {
  .categories-line {
    height: 25vw;
    width: 100%;
    position: relative;
    margin: 2em 0 2em 0;
  }
}

/* > 1366px */
@media (min-width: 85.375em) {
  .categories-line {
    margin: 4em 0 4em;
  }
}

@media screen and (-ms-high-contrast: active),
  screen and (-ms-high-contrast: none) {
  /* IE10+ specific styles go here */
  #hills {
    display: none;
  }

  .categories-line {
    background-color: #238338;
    margin-bottom: 0;
  }

  .why {
    background-color: #238338;
  }
}

/* section: Why
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.why {
  will-change: transform;
}

.why h2 {
  font-weight: normal;
  line-height: 1.3;
  text-align: center;
}

.why h2:first-of-type {
  margin: 0 0 0.5em 0;
}

.holiday-type {
  position: relative;
  height: 2.5ex;
  will-change: transform;
  margin-top: 0.5em;
}

.holiday-type span {
  font-weight: bold;
  color: #27496d;
  color: var(--colour-dark-blue);
  white-space: nowrap;
  /* 13 spans x 3s each = 39s */
  /* 13 / 39s = 0.3333333 */
  animation: topToBottom 39s linear infinite 0s;
  -ms-animation: topToBottom 39s linear infinite 0s;
  -webkit-animation: topToBottom 39s linear infinite 0s;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  margin: auto;
}

.holiday-type span:nth-child(2) {
  animation-delay: 3s;
  -ms-animation-delay: 3s;
  -webkit-animation-delay: 3s;
}

.holiday-type span:nth-child(3) {
  animation-delay: 6s;
  -ms-animation-delay: 6s;
  -webkit-animation-delay: 6s;
}

.holiday-type span:nth-child(4) {
  animation-delay: 9s;
  -ms-animation-delay: 9s;
  -webkit-animation-delay: 9s;
}

.holiday-type span:nth-child(5) {
  animation-delay: 12s;
  -ms-animation-delay: 12s;
  -webkit-animation-delay: 12s;
}

.holiday-type span:nth-child(6) {
  animation-delay: 15s;
  -ms-animation-delay: 15s;
  -webkit-animation-delay: 15s;
}

.holiday-type span:nth-child(7) {
  animation-delay: 18s;
  -ms-animation-delay: 18s;
  -webkit-animation-delay: 18s;
}

.holiday-type span:nth-child(8) {
  animation-delay: 21s;
  -ms-animation-delay: 21s;
  -webkit-animation-delay: 21s;
}

.holiday-type span:nth-child(9) {
  animation-delay: 24s;
  -ms-animation-delay: 24s;
  -webkit-animation-delay: 24s;
}

.holiday-type span:nth-child(10) {
  animation-delay: 27s;
  -ms-animation-delay: 27s;
  -webkit-animation-delay: 27s;
}

.holiday-type span:nth-child(11) {
  animation-delay: 30s;
  -ms-animation-delay: 30s;
  -webkit-animation-delay: 30s;
}

.holiday-type span:nth-child(12) {
  animation-delay: 33s;
  -ms-animation-delay: 33s;
  -webkit-animation-delay: 33s;
}

.holiday-type span:nth-child(13) {
  animation-delay: 36s;
  -ms-animation-delay: 36s;
  -webkit-animation-delay: 36s;
}

@keyframes topToBottom {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 0;
    transform: translateY(-1em);
  }
  2% {
    opacity: 1;
    transform: translateY(0);
  }
  8% {
    opacity: 1;
    transform: translateY(0);
  }
  10% {
    opacity: 0;
    transform: translateY(1em);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes topToBottom {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 0;
    -webkit-transform: translateY(-1em);
  }
  2% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  8% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  10% {
    opacity: 0;
    -webkit-transform: translateY(1em);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-ms-keyframes topToBottom {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 0;
    -ms-transform: translateY(-1em);
  }
  2% {
    opacity: 1;
    -ms-transform: translateY(0);
  }
  8% {
    opacity: 1;
    -ms-transform: translateY(0);
  }
  10% {
    opacity: 0;
    -ms-transform: translateY(1em);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.intro {
  position: relative;
  overflow: hidden;
}

.globe {
  transform: scale(2);
  transform-origin: center;
  position: absolute;
  width: 400px;
  height: 400px;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 70%;
}

.globe:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #e5f2f8;
  background: var(--colour-pale-blue);
  border-radius: 200px;
  z-index: -1;
  position: absolute;
  box-shadow: 0 0 20px #ccc;
}

.land {
  fill: #d6e7ef;
}

/* > 400px */
@media (min-width: 25em) {
  .globe {
    transform: scale(2.5);
  }
}

/* > 600px */
@media (min-width: 37.5em) {
  .globe {
    top: auto;
  }
}

/* > 750px */
@media (min-width: 46.875em) {
  .globe {
    transform: scale(3);
  }
}

/* > 1366px */
@media (min-width: 85.375em) {
  .globe {
    transform: scale(4);
  }
}

.map-marker {
  display: block;
  position: relative;
  z-index: 1;
  margin: 0 auto 1em;
}

.text-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* section: Join
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.join-box {
  background: white;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  padding: 1em 1.25em;
  margin-top: 2em;
  /* supersize signup form on small devices */
  font-size: 2em;
}

.join-box .row {
  justify-content: space-between;
}

.join-box input {
  margin: 0.5em 0;
}

.join-box .title {
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: -0.5em -0.75em 0.25em -0.75em;
  font-size: 1.1em;
}

.join-box p {
  margin: 0.5em 0 0 0;
}

.join-box .button {
  margin: 0 0 0.75em 0;
}

.join .join-box .title {
  /* hide title in bottom version of join form */
  display: none;
}

.join .join-box .button {
  /* diff button colour in bottom version of join form */
  color: #523c00;
  font-weight: bold;
  border: none;
  background: #ffbb00;
  box-shadow: 0 0.175em #997000;
}

.join .join-box .button:active {
  background: #cc9600;
  box-shadow: 0 0.075em #997000;
}

/* > 400px */
@media (min-width: 25em) {
  .join-box .row {
    display: flex;
  }

  .join-box .row input {
    width: 47%;
  }
}

/* > 600px */
@media (min-width: 37.5em) {
  .join-box {
    font-size: inherit;
  }

  .join-box .row {
    display: block;
  }

  .join-box .row input {
    width: 100%;
  }

  .join-box .title {
    margin: 0 0 0.5em;
    font-size: 1.35em;
  }
}

/* > 750px */
@media (min-width: 46.875em) {
  .join-box {
    max-width: 14em;
  }

  .join-box .row {
    display: flex;
  }

  .join-box .row input {
    width: 47%;
  }
}

/* section: Stats
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.stats {
  position: relative;
  background: white;
}

.stats-value {
  margin: 0.25em 0;
  color: #417cb8;
  color: var(--colour-mid-blue);
  font-size: 1.35em;
  line-height: 1.1;
  font-weight: bold;
  display: block;
}

.value {
  text-align: center;
  display: block;
  padding: 2em 0;
}

.value.stats-graph {
  padding: 0;
}

.statistics-graph img {
  width: 60%;
  height: auto;
}

.value a {
  color: var(--colour-dark-blue);
}

.traffic-comparison-graph {
  text-align: center;
  padding: 1em;
  text-decoration: none;
}

.traffic-comparison-graph a {
  display: inline-block;
}

.traffic-comparison-graph img {
  margin-top: 0.5em;
}

/* > 400px */
@media (min-width: 25em) {
  .stats .row {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .value {
    flex-basis: 50%;
    display: inline-block;
    padding: 2em 1em;
  }
}

/* > 750px */
@media (min-width: 46.875em) {
  .value {
    flex-basis: 33.3333333333%;
  }

  .stats .container {
    width: 100%;
  }

  .traffic-comparison-graph {
    padding: 2em 1em;
  }
}

.help.recent-highlights {
  padding: 3em 0 2em;
  margin-top: 1em;
}

.help.recent-highlights:before {
  background: #e5f2f8;
}

.help.recent-highlights .column {
  text-align: center;
  margin-top: 0;
}

.help.recent-highlights .column.value {
  padding: 1em;
}

@media (min-width: 37.5em) {
  .help.recent-highlights .column.value {
    padding: 2em 1em;
  }
}

.help.recent-highlights a {
  color: #27496d;
  color: var(--colour-dark-blue);
}

.pandemic-heroes-award {
  width: 15em;
  height: auto;
  margin: 2em 0 1em;
  min-height: 205px;
}

.fnhpa {
  margin: 2em 0 1em;
}

.bvcd {
  margin: 2em 0 2em;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  flex-wrap: wrap;
  margin: 1em 0;
}

.screenshot-stripe {
  width: 100%;
  height: auto;
}

@media (min-width: 46.875em) {
  .fnhpa {
    width: 400px;
    height: auto;
  }

  .bvcd {
    margin: 1em 0 3em;
    width: 360px;
    height: 95px;
  }

  .logo-row {
    gap: 3em;
    margin: 0;
  }

  .pandemic-heroes-award {
    min-height: 263px;
  }
}

@media (min-width: 37.5em) {
  .help.recent-highlights .row {
    margin: 0 0 1em 0;
  }

  .pandemic-heroes-award {
    min-height: 242px;
  }

  .graph-line,
  .graph-stats-img,
  .booking-table-img,
  .screenshot-stripe {
    width: 100%;
    height: auto;
  }

  .screenshot-stripe {
    max-width: 768px;
  }
}

.press-logos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 1em 0 2em;
}

.press-logos img {
  height: 2.2em;
  width: auto;
  margin: 0.75em 1em;
}

.press-logos .bbc-news-logo {
  height: 3em;
}

/* section: Help
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.help {
  padding: 6em 0 8em;
  margin-top: 1em;
}

.help .column,
.for-free {
  margin-top: 3em;
  width: 100%;
}

.help .row {
  margin: 1em 0;
  align-items: flex-start;
}

.help:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  -webkit-transform: skewY(-8deg);
  transform: skewY(-8deg);
  background-size: cover;
}

.help.lazy-bg-loaded:before {
  background: #e5f2f8 url("../../supplier2/join/images/path.svg") no-repeat
    center center;
}

.help h2 {
  color: #417cb8;
  color: var(--colour-mid-blue);
  text-align: center;
  font-size: 2.25em;
}

.how-we-can-help h3 {
  font-size: 1.35em;
  color: var(--colour-text-default);
  text-align: left;
}

.screenshots {
  position: relative;
}

.screenshots-container {
  text-align: center;
  white-space: nowrap;
}

.screenshots-container img {
  height: 460px;
  max-height: 40vw;
  width: auto;
  margin-right: 2em;
  display: inline-block;
  box-shadow: 0 0 30px rgba(58, 100, 139, 0.3);
  border-radius: 4px;
  transform: translateX(50em);
}

.screenshots-container img:last-of-type {
  margin-right: 0;
}

.screenshots-container.loaded img {
  -webkit-animation: slide-in 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation: slide-in 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.screenshots-container.loaded img:nth-of-type(2) {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.screenshots-container.loaded img:nth-of-type(3) {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}

@keyframes slide-in {
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes slide-in {
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.graphs-container {
  position: relative;
  display: block;
}

.graph-holder {
  background: white;
  box-shadow: 0 0 30px rgba(58, 100, 139, 0.3);
  border-radius: 5px;
  position: absolute;
  width: auto;
  overflow: hidden;
  height: auto;
}

.graphs-container {
  min-height: 230px;
}

.graph-line {
  position: relative;
  z-index: 1;
}

.stats-graph {
  right: 0;
  bottom: 0;
  max-width: 55%;
}

.booking-table {
  top: 0;
  left: 0;
  max-width: 90%;
}

.your-terms {
  order: 2;
}

.terms-blocks {
  position: relative;
  order: 1;
  left: -3%;
}

.term {
  display: inline-flex;
  min-width: 70%;
  width: auto;
  margin: 0 5% 2% 5%;
  padding: 0.5em 1em;
  background: white;
  border-radius: 0.25em;
  box-shadow: 0 0 30px rgba(58, 100, 139, 0.3);
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.term img {
  width: 2em;
  height: 2em;
  margin-right: 0.5em;
}

.terms-blocks .term:nth-of-type(odd) {
  margin: 0 0 2% 15%;
}

/* > 600px */
/* point at which we come out of single column */
@media (min-width: 37.5em) {
  .help .row {
    margin: 5em 0 6em 0;
  }

  .screenshots-container {
    text-align: left;
    position: relative;
    flex-direction: row;
    flex-wrap: nowrap;
    -ms-flex-wrap: wrap;
    left: 3em;
    top: -6em;
    -webkit-transform: rotate(-8deg);
    transform: rotate(-8deg);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    pointer-events: none;
  }

  .graphs-container {
    margin: 0 10% 10% 0;
    left: -10%;
  }

  .terms-imgs img {
    width: 70%;
    margin: 0 20% 2% 10%;
  }

  .terms-imgs img:nth-of-type(odd) {
    margin: 0 0 2% 30%;
  }
}

/* > 750px */
@media (min-width: 46.875em) {
  .screenshots-container {
    position: absolute;
  }
}

/* section: How
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.how .container {
  background: white;
  box-shadow: 0 0 30px rgba(58, 100, 139, 0.3);
  border-radius: 4px;
  padding: 2.5em 1.5em;
  z-index: 2;
  top: -8em;
}

.how.revenue-estimator .container {
  padding-top: 1em;
}

.how h2 {
  color: #417cb8;
  color: var(--colour-mid-blue);
  text-align: center;
}

.how .section-heading {
  color: var(--colour-mid-blue);
  text-align: center;
}

.how h2 {
  font-weight: 600;
  text-align: center;
}

.how:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  -webkit-transform: skewY(-8deg);
  transform: skewY(-8deg);
  z-index: 1;
  background: linear-gradient(90deg, #faa21e, #febe1b);
}

.how:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  top: 5em;
  -webkit-transform: skewY(-8deg);
  transform: skewY(-8deg);
  z-index: 1;
}

.how.lazy-bg-loaded:after {
  background: url("../../supplier2/join/images/stitch.svg") repeat-x top left;
}

.how .step {
  margin: 2em 0 0 0;
}

.how .icon-cell {
  display: block;
  width: 3em;
  margin: 0 auto 0.5em;
}

.icon-cell img {
  width: 3em;
  max-width: none;
  height: auto;
}

/* > 750px */
@media (min-width: 46.875em) {
  .how h2 {
    font-weight: 600;
    text-align: left;
  }

  .how .step {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }

  .how .icon-cell {
    display: block;
    flex-basis: 3em;
    margin: 0 2em 0 0;
  }
}

.wheel {
  display: none;
}

/* > 1400px */
@media (min-width: 87.5em) {
  .wheel {
    position: absolute;
    display: block;
    right: -3em;
    bottom: -9.65em;
    width: 6em;
    height: 4.625em;
  }

  .wheel.lazy-bg-loaded {
    background: url(../../supplier2/join/images/wheel.svg) no-repeat top left;
  }
}

/* section: Paid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.paid {
  padding-bottom: 6em;
}

.paid h2 {
  margin-top: 2em;
}

.paid .section-heading {
  color: var(--colour-mid-blue);
  margin-top: 0;
}

.paid:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  -webkit-transform: skewY(-8deg);
  transform: skewY(-8deg);
}

.paid.lazy-bg-loaded:before {
  background: url("../../supplier2/join/images/swirls.svg") repeat top left;
}

.screenshot-stripe {
  position: relative;
  right: 10%;
  top: -6em;
  z-index: 2;
  -webkit-transform: rotate(-8deg);
  transform: rotate(-8deg);
  box-shadow: 0 0 30px rgba(58, 100, 139, 0.3);
}

/* > 750px */
@media (min-width: 46.875em) {
  .screenshot-stripe {
    position: absolute;
    right: 60%;
    top: -2em;
  }
}

.payment-types-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: -2em 0 1em;
}

.payment-types-container img {
  height: 2.2em;
  width: auto;
  margin: 0 1em 1em 0;
}

.payment-types-container .paypal-icon {
  border: 0.1em solid #21a4e1;
  border-radius: 0.2em;
  margin-right: 0;
}

@media (min-width: 25em) {
  .payment-types-container img {
    height: 2.7em;
    width: auto;
  }
}

@media (min-width: 37.5em) {
  .column.payment-types .payment-types-container {
    bottom: -6em;
    position: absolute;
    justify-content: flex-start;
    margin: 0;
    z-index: 1;
  }
}

@media (min-width: 46.875em) {
  .column.payment-types .payment-types-container {
    position: absolute;
    bottom: -3em;
    justify-content: flex-start;
    margin: 0;
    z-index: 2;
    width: 43%;
    flex-wrap: wrap;
  }
}

/* > 1600px */
@media (min-width: 103em) {
  .column.payment-types .payment-types-container {
    width: auto;
    flex-wrap: nowrap;
    left: -3em;
  }
}

/* section: Questions
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.questions {
  text-align: center;
  padding: 8em 0 4em;
  will-change: transform;
}

.questions:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 120%;
  top: 0;
  left: 0;
  bottom: 0;
  -webkit-transform: rotate(-8deg);
  transform: rotate(-8deg);
  -webkit-transform: skewY(-8deg);
  transform: skewY(-8deg);
}

.questions:after {
  content: "";
  position: absolute;
  width: 9em;
  height: 8em;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  -webkit-transform: translatey(0);
  transform: translatey(0);
  -webkit-animation: float 6s ease-in-out infinite;
  animation: float 6s ease-in-out infinite;
}

.questions.lazy-bg-loaded:after {
  background: url(../../supplier2/join/images/questions.svg) no-repeat top left;
}

.articles {
  margin: 3em 0;
  position: relative;
  text-align: center;
}

.article {
  display: inline-block;
  padding: 0.5em 0 0;
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translatey(0);
    transform: translatey(0);
  }
  50% {
    -webkit-transform: translatey(-20px);
    transform: translatey(-20px);
  }
  100% {
    -webkit-transform: translatey(0);
    transform: translatey(0);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translatey(0);
    transform: translatey(0);
  }
  50% {
    -webkit-transform: translatey(-20px);
    transform: translatey(-20px);
  }
  100% {
    -webkit-transform: translatey(0);
    transform: translatey(0);
  }
}

.questions .section-heading {
  color: var(--colour-mid-blue);
}

.contact-us {
  margin: 2em 0 0.25em;
  font-weight: normal;
}

.contactus-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  margin: 2em auto auto;
}

.chat-with-us,
.contactus-options a {
  cursor: pointer;
  margin: 0.5em;
  color: var(--colour-dark-blue);
}

.contactus-options .tel {
  background-size: 1.2em 1.2em;
  background-position: left center;
}

.contactus-options .email {
  padding-left: 1.6em;
  background-size: 1.2em 1.2em;
  background: url(../../supplier2/join/images/email-outline.svg) no-repeat left
    center;
}

.chat-with-us-icon {
  display: inline-block;
  width: 1.5em;
  height: auto;
}

.chat-with-us-text {
  text-decoration: underline;
}

.whatsapp-logo {
  width: auto;
  height: 1.7em;
  margin-right: 0.15em;
}

/* section: Say / testimonials
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.say {
  padding: 6em 0 6em;
}

.say:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: #e5f2f8;
  background: var(--colour-pale-blue);
}

.say .section-heading {
  color: var(--colour-mid-blue);
}

.testimonials {
  background: white;
  box-shadow: 0 0 30px rgba(58, 100, 139, 0.3);
  border-radius: 4px;
  padding: 0;
  min-height: 22em;
  overflow: hidden;
}

.testimonials-carousel {
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  display: block;
  max-height: 24em;
}

.testimonials-carousel.is-hidden {
  display: none;
}

.testimonials-carousel.flickity-enabled {
  opacity: 1;
}

.testimonials-nav {
  list-style: none;
  align-items: stretch;
  justify-content: space-evenly;
  position: relative;
  z-index: 1;
  min-height: 6em;
}

.testimonials-nav h2 {
  margin: 0;
}

.testimonials-nav li {
  background-color: #6496c8;
  background-color: var(--colour-blue);
  flex-basis: 33.3333333%;
  padding: 1em;
  margin: 0;
  font-weight: bold;
  color: white;
  cursor: pointer;
  will-change: transform;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 0;
}

.testimonials-nav li:last-of-type {
  border-right: none;
}

.testimonials-nav.loaded li {
  -webkit-animation: scale-in-center 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    forwards;
  animation: scale-in-center 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.testimonials-nav.loaded li:nth-of-type(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.testimonials-nav.loaded li:nth-of-type(3) {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}

@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.testimonials-nav .selected {
  background-color: #ff7600;
  background-color: var(--colour-orange);
  position: relative;
  box-shadow: 0 0.25em 2em 0 rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.testimonials-nav .selected:before {
  content: "";
  display: block;
  width: 16%;
  height: 2em;
  position: absolute;
  bottom: -1.9em;
  right: 0.2em;
  background: url(../../supplier2/join/images/triangle.svg) no-repeat top left;
}

.quote {
  font-style: italic;
  font-weight: normal;
  line-height: 1.4;
  margin-bottom: 1em;
}

.author {
  color: #808080;
  color: var(--colour-text-light);
  line-height: 1.2;
}

.testimonial {
  width: 100%;
  display: flex;
  flex-direction: row;
  padding: 2em;
  background: url(../../supplier2/join/images/quote-marks.svg) no-repeat 1em 1em;
  background-size: 4em;
}

.campsite-image {
  display: none;
}

.testimonial-content {
  padding-right: 13%;
}

/* > 600px */
@media (min-width: 37.5em) {
  .campsite-image {
    display: block;
    width: 14em;
    height: 14em;
    border-radius: 14em;
    flex: 1 0 auto;
    position: relative;
    left: -4em;
  }

  .testimonials-nav .selected {
    box-shadow: none;
  }

  .testimonials-nav .selected:before {
    left: 1em;
    right: auto;
  }

  .testimonials-nav li {
    border-right: 0.25em solid white;
  }

  .testimonial {
    margin: 2em 0;
    padding: 0;
    background-size: 7em;
    background-position: 11em 0;
  }

  .testimonial.is-selected {
    z-index: 1;
    background-color: white;
  }

  .testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.rope {
  position: absolute;
  display: block;
  width: 12em;
  height: 12em;
  top: -10em;
  right: -5em;
}

/* > 1600px */
@media (min-width: 103em) {
  .rope {
    top: -13em;
    right: -4em;
  }
}

.video {
  margin: 4em auto 2em;
  position: relative;
  padding-top: 25px;
  padding-bottom: 56.25%;
  height: 0;
  text-align: center;
  display: block;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 788px;
  max-width: 1400px;
  margin: auto;
  background-color: black;
}

.video:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  max-height: 788px;
  box-shadow: 0 0 30px rgba(58, 100, 139, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

/* > 1578px ie. video full size */
@media (min-width: 1578px) {
  .video {
    padding-bottom: 763px;
  }
}

/* section: join
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.join {
  padding: 4em 0 6em;
  margin: 0 0 4em;
  background: #27496d;
  background: var(--colour-dark-blue);
}

.join.lazy-bg-loaded {
  background: url("../../supplier2/join/images/map.jpg") repeat center center;
  background-size: cover;
}

.join .section-heading {
  color: white;
}

/* Footer
–––––––––––––––––––––––––––––––––––––––––––––––––– */
footer.section {
  background: white;
  padding: 3em 0 1em;
}

footer .row {
  justify-content: space-between;
}

.row.faqs h3 {
  text-align: center;
  margin: 0 auto 3em;
}

.copyright {
  color: #808080;
  color: var(--colour-text-light);
  margin: 3em 0 0;
  text-align: center;
}

@media (min-width: 25em) {
  .copyright {
    font-size: var(--small);
  }
}

.social-media-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-shrink: 0;
  margin: auto;
}

.social-media-links a {
  display: block;
  width: 4em;
  min-width: 2.5em;
  height: auto;
  margin: auto;
}

.social-media-links a:hover,
.social-media-links a:active {
  filter: brightness(60%);
}

@media (min-width: 900px) {
  .social-media-links {
    justify-content: center;
  }

  .social-media-links a {
    margin: 0 1.5em;
  }
}

/* Language menu
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.menu-list.language {
  margin-left: 1em;
  padding-left: 1em;
  border-left: 1px solid #808080;
  border-left: 1px solid var(--colour-text-light);
}

.menu-list-options {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
  width: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  color: #333;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.menu-list-options li {
  padding: 0;
  margin: 0;
  cursor: pointer;
  white-space: nowrap;
  text-align: left;
  width: 100%;
  height: auto;
  display: block;
  border-bottom: solid 1px #ccc;
}

.menu-list-options li a {
  color: #333;
  text-decoration: none;
  font-weight: normal;
  font-size: 1em;
  padding: 0.5em;
  vertical-align: text-top;
  display: inline-block;
}

/* > 750px */
@media (min-width: 46.875em) {
  .menu-list-options li a {
    font-size: 0.8em;
    padding: 0.25em 0.5em;
  }
}

.menu-list-options li:hover,
.menu-list-options li:hover a {
  background: #38ace5;
  background: var(--colour-header-light-blue);
  color: white;
  text-decoration: none;
}

.menu-option-selected a {
  opacity: 0.5;
}

.menu-option-selected {
  color: #bababa;
}

.menu-list-options li.menu-option-selected {
  cursor: default;
  pointer-events: none;
}

.menu-list-options li.menu-option-selected:hover,
.menu-list-options li.menu-option-selected:hover a {
  background: white;
  color: #333;
  text-decoration: none;
}

.menu-list-options .country-flag {
  margin-right: 3px;
}

.country-flag {
  width: 1.5em;
  height: auto;
}

.menu-list-selected {
  vertical-align: text-bottom;
}

.menu-list-selected:after {
  content: "";
  display: inline-block;
  background: url(../../supplier2/join/images/chevron-arrow-down.svg) no-repeat
    top left;
  background-size: contain;
  width: 1em;
  height: 0.6em;
  position: relative;
  left: 0.5em;
  vertical-align: middle;
}

/* flickity
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: 0;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.flickity-button {
  position: absolute;
  border: none;
  background: transparent;
}

.flickity-button:active {
  box-shadow: none;
  background: transparent;
  transform: translate(1em, -50%);
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  pointer-events: none;
}

.flickity-button-icon {
  fill: #27496d;
  fill: var(--colour-dark-blue);
}

.flickity-prev-next-button {
  top: 50%;
  right: 0;
  width: 5em;
  height: 5em;
  border-radius: 0;
  transform: translateY(-50%);
  box-shadow: none;
}

.flickity-prev-next-button.previous {
  display: none;
}

/* > 600px */
@media (min-width: 37.5em) {
  .flickity-prev-next-button.next {
    right: 10px;
  }
}

.flickity-prev-next-button .flickity-button-icon {
  width: 100%;
  height: 100%;
}

.flickity-page-dots {
  position: relative;
  width: 100%;
  bottom: 1em;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin: 0 0.35em;
  background: #6496c8;
  background: var(--colour-blue);
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/**
* revenue estimator
*/

.sr-only {
  display: none;
}

.revenue-estimator h2 {
  text-align: center;
  color: var(--colour-dark-blue);
  max-width: 42ch;
  margin: auto;
}

.revenue-estimator-description {
  text-align: center;
  max-width: 35ch;
  margin: 0.75em auto 1.25em;
}

.revenue-estimator-section {
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 1em;
  margin-bottom: 2.5em;
}

#revenue-estimator .revenue-estimator-section:last-of-type {
  margin-bottom: 0;
}

.revenue-estimator-section--light {
  background-color: var(--colour-pale-blue);
}

.revenue-estimator-section--light h3,
.revenue-estimator-section--light h4 {
  color: var(--colour-dark-blue);
}

.revenue-estimator-section--light h3 {
  border-bottom: 2px solid #ced5dc;
  font-weight: 500;
  padding-bottom: 5px;
  margin-bottom: 1em;
}

.revenue-estimator-section--dark {
  background-color: var(--colour-dark-blue);
}

.revenue-estimator-section--dark > div {
  width: 100%;
}

.text-center {
  text-align: center;
}

.revenue-estimator .cta-section-title {
  color: white;
}

.cta-section-estimation {
  font-size: 2.25em;
  margin: 0.1em auto 0;
  color: white;
}

.cta-section-estimation span {
  font-weight: bold;
}

.cta-section-estimation span.asterisk {
  font-weight: normal;
  font-size: var(--small);
  vertical-align: super;
}

.cta-section-title.max-revenue {
  margin-top: 1em;
}

.revenue-estimator-input-error {
  text-align: center;
  color: var(--colour-red);
  font-weight: bold;
}

.cta-section-default-estimation-text {
  font-size: max(13px, 0.7em);
  margin: auto;
  color: white;
}

.cta-section-default-estimation-text.disclaimer {
  color: #9cbad9;
  margin-top: 2em;
  text-wrap-style: pretty;
}

.typeGroup {
  padding-top: 1em;
}

.estimated-revenue-form {
  display: grid;
  margin: 2em 0 1em;
  gap: 1em;
}

.estimated-revenue-form input {
  font-size: 1.25em;
}

.revenue-estimator .button {
  font-size: 2em;
  display: block;
  width: 100%;
  margin: 0.5em 0 0 0;
}

/** Accommodation Type CSS */

.autocomplete-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0.75em;
  position: relative;
}

.autocomplete-container .image-wrapper {
  min-width: 2em;
  flex-grow: 0;
  margin-right: 0.5em;
}

.autocomplete-container img {
  width: auto;
  height: 2em;
  margin: 0 auto;
}

.autocomplete-container input {
  text-align: center;
  height: 2em;
  width: 2em;
  flex-grow: 0;
  margin-right: 0.5em;
  border-radius: 0.2em;
  border: 1px solid #ccc;
  font-size: max(16px, 1em);
  min-width: 5ch;
}

.autocomplete-container input:focus {
  border: 2px solid var(--colour-mid-blue);
}

.autocomplete-container label {
  flex-grow: 1;
  color: var(--colour-dark-blue);
  line-height: 1.2;
}

/* Chrome, Safari, Edge, Opera */
.autocomplete-container input::-webkit-outer-spin-button,
.autocomplete-container input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.autocomplete-container input[type="number"] {
  -moz-appearance: textfield;
}

/**
Autocomplete CSS
**/

.autosuggest__results li {
  margin: 0;
  border-radius: 0;
  padding: 0.25em;
  display: flex;
  align-items: center;
}

.autosuggest__results li:hover {
  cursor: pointer;
}

.autosuggest-container label {
  color: var(--colour-dark-blue);
  display: block;
  font-size: 1.35em;
  font-weight: 600;
  margin-bottom: 1em;
  text-align: center;
}

.autosuggest-suffix {
  font-size: max(13px, 0.7em);
  text-align: center;
  text-wrap-style: pretty;
}

#autosuggest {
  position: relative;
  width: 100%;
  display: block;
}

.autosuggest__results-container {
  position: relative;
  top: -8px;
}

.autosuggest__results {
  position: absolute;
  z-index: 12;
  width: 100%;
}

.autosuggest__results ul {
  --tw-shadow:
    0 4px 16px -1px rgba(0, 0, 0, 0.5), 0 2px 9px -1px rgba(0, 0, 0, 0.25);
  box-shadow:
    var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000),
    var(--tw-shadow);
  background-color: #fff;
  border-radius: 0.5em;
  position: absolute;
  top: 15px;
  width: 100%;
  color: rgba(30, 39, 46, 1);
  list-style: none;
  margin: 0;
  overflow: hidden;
}

.autosuggest__results-item--highlighted {
  background-color: rgba(51, 217, 178, 0.2);
}

input.autosuggest-input {
  -webkit-appearance: none;
  background: #fff;
  border-radius: 4em;
  border: 2px solid #6496c8;
  box-sizing: border-box;
  display: flex;
  font-size: max(16px, 1em);
  height: auto;
  margin: 0 0 0.5em;
  padding: 0.4em 2em 0.4em 2.2em;
  position: relative;
  text-overflow: ellipsis;
  width: 100%;
  z-index: 12;
}

.suggestion {
  font-size: var(--body);
  padding: 0.5em 1.1em 0.5em 1em;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  width: 100%;
}

.autosuggest__results li {
  border-bottom: 1px solid #dbdfe6;
}

.autosuggest__results li:last-of-type {
  border-bottom: none;
}

.suggestion .suggestion-icon {
  display: block;
  width: 2.3em;
  height: 2.3em;
  border-radius: 50%;
  background: #dbdfe6;
  flex-shrink: 0;
  margin-right: 0.5em;
}

.suggestion .suggestion-icon.svg {
  display: flex;
  align-items: center;
  justify-content: center;
}

.suggestion-details {
  width: 100%;
}

.suggestion .suggestion-term mark {
  font-weight: bold;
  background: var(--colour-pale-blue);
  border-radius: 0;
}

.autosuggest__results .autosuggest__results-item--highlighted,
.autosuggest__results .autosuggest__results-item--highlighted:active {
  background-color: var(--colour-pale-blue);
}

.arrow-up {
  margin-left: 20px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid white;
  position: absolute;
  z-index: 1;
}

.input-controls {
  align-items: center;
  display: flex;
  flex-direction: row;
  font-size: 1em;
  height: auto;
  justify-content: space-between;
  padding: 0.4em 0.4em 0.5em 0.55em;
  position: absolute;
  width: 100%;
}

.icon-container {
  cursor: pointer;
  display: inline-flex;
  width: 1.45em;
  z-index: 13;
}

.icon-container img {
  width: auto;
  height: 100%;
}

.validation-tooltip {
  font-size: 14px;
  position: absolute;
  width: auto;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 10px;
  border-radius: 6px;
  z-index: 1;
  bottom: 100%;
  left: 2em;
}

.validation-tooltip::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 1.5em;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.show-validation .validation-tooltip {
  display: block !important;
}

@media (min-width: 768px) {
  .how .container {
    padding: 2.5em;
  }

  .estimated-revenue-form input {
    font-size: 0.75em;
  }

  .revenue-estimator .button {
    font-size: 1em;
    margin: 0;
  }

  .revenue-estimator-section--dark > div {
    width: auto;
  }

  .cta-section-default-estimation-text {
    font-size: 13px;
  }

  .cta-section-default-estimation-text.disclaimer {
    max-width: 65ch;
  }

  .typeGroups {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .typeGroup {
    display: flex;
    flex-direction: column;
    margin: 0 1.5em 1.5em;
  }

  .autocomplete-wrapper {
    width: 40%;
  }

  .estimated-revenue-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(30px, auto);
  }

  .form-item-1-col {
    grid-column: span 1 / span 1;
  }

  .form-item-2-col {
    grid-column: span 2 / span 2;
  }

  .validation-tooltip {
    font-size: 0.7em;
    left: 3.5em;
  }
}
