@charset "UTF-8";
:root {
  --input-padding-x: 18px;
  --input-padding-y: 12px;
  --header-height: 60px;
  --footer-type-1-height: 60px;
  --footer-type-2-height: 69px;
  --aside-header-height: 56px;
  --underwriter-logo-width: 56px; }
  @media screen and (min-width: 768px) {
    :root {
      --input-padding-y: 18px;
      --header-height: 80px;
      --footer-type-1-height: 80px;
      --aside-header-height: 92px;
      --underwriter-logo-width: 81px; } }
  @media screen and (min-width: 1440px) {
    :root {
      --footer-type-2-height: 101px; } }
  @media screen and (min-width: 1920px) {
    :root {
      --header-height: 110px; } }

@-webkit-keyframes spinner {
  0% {
    stroke-dashoffset: 19.8;
    transform: rotate(0deg); }
  50% {
    stroke-dashoffset: 94.2;
    transform: rotate(720deg); }
  100% {
    stroke-dashoffset: 19.8;
    transform: rotate(1080deg); } }

@keyframes spinner {
  0% {
    stroke-dashoffset: 19.8;
    transform: rotate(0deg); }
  50% {
    stroke-dashoffset: 94.2;
    transform: rotate(720deg); }
  100% {
    stroke-dashoffset: 19.8;
    transform: rotate(1080deg); } }

/** Sizes **/
/** Shadows **/
/** Transitions **/
/*
  All a user has to do to change the calendar size is
  change the font-size on the container and everything
  magically resizes accordingly. Relative units ftw!
*/
.qs-datepicker-container {
  font-size: 1rem;
  font-family: sans-serif;
  color: black;
  position: absolute;
  width: 100%;
  max-width: 423px;
  display: flex;
  flex-direction: column;
  z-index: 9001;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 0;
  overflow: hidden;
  background: white;
  border: 1px solid #DBDBDB;
  box-sizing: border-box;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.14); }
  .qs-datepicker-container * {
    box-sizing: border-box; }

.qs-centered {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

.qs-hidden {
  display: none; }

.qs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  width: 100%;
  height: 100%;
  padding: .5em;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column; }
  .qs-overlay.qs-hidden {
    opacity: 0;
    z-index: -1; }
  .qs-overlay .qs-overlay-year {
    border: none;
    background: transparent;
    border-bottom: 1px solid white;
    border-radius: 0;
    color: white;
    font-size: 1.4805rem;
    padding: .25em 0;
    width: 80%;
    text-align: center;
    margin: 0 auto;
    display: block; }
    .qs-overlay .qs-overlay-year::-webkit-inner-spin-button {
      -webkit-appearance: none; }
  .qs-overlay .qs-close {
    padding: .5em;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0; }
  .qs-overlay .qs-submit {
    border: 1px solid white;
    border-radius: 0;
    padding: .5em;
    margin: 0 auto auto;
    cursor: pointer;
    background: rgba(128, 128, 128, 0.4); }
    .qs-overlay .qs-submit.qs-disabled {
      color: gray;
      border-color: gray;
      cursor: not-allowed; }
  .qs-overlay .qs-overlay-month-container {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1; }
  .qs-overlay .qs-overlay-month {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% / 3);
    cursor: pointer;
    opacity: .5;
    transition: opacity 0.15s; }
    .qs-overlay .qs-overlay-month.active, .qs-overlay .qs-overlay-month:hover {
      opacity: 1; }

.qs-controls {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  flex-shrink: 0;
  background: #fff;
  filter: blur(0px);
  transition: filter 0.3s;
  border-bottom: 1px solid #DBDBDB; }
  .qs-controls.qs-blur {
    filter: blur(5px); }

.qs-arrow {
  height: 48px;
  width: 48px;
  position: relative;
  cursor: pointer;
  border-radius: 0;
  transition: background .15s; }
  .qs-arrow:hover {
    background: rgba(0, 0, 0, 0.1); }
    .qs-arrow:hover.qs-left:after {
      border-right-color: black; }
    .qs-arrow:hover.qs-right:after {
      border-left-color: black; }
  .qs-arrow:after {
    content: '';
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    transition: border .2s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0); }
  .qs-arrow.qs-left:after {
    background-image: url("../images/arrow-left.svg"); }
  .qs-arrow.qs-right:after {
    background-image: url("../images/arrow-right.svg"); }

.qs-month-year {
  font-family: "DIN Medium", sans-serif;
  transition: border .2s;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  text-transform: uppercase; }
  .qs-month-year:hover {
    border-bottom: 1px solid gray; }
  .qs-month-year:focus, .qs-month-year:active:focus {
    outline: none; }

.qs-month {
  padding-right: .5ex; }

.qs-year {
  padding-left: .5ex; }

.qs-squares {
  display: flex;
  flex-wrap: wrap;
  padding: 8.46px;
  filter: blur(0px);
  transition: filter 0.3s; }
  .qs-squares.qs-blur {
    filter: blur(5px); }

.qs-square {
  width: calc(100% / 7);
  height: 42.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .1s;
  border-radius: 0; }
  .qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
    background: orange; }

.qs-current {
  font-weight: bold; }

/*
  3 possibilities:
    1. Single, active date.
    2. Daterange start selection.
    3. Daterange end selection.
*/
.qs-active {
  position: relative; }
  .qs-active:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    z-index: -1;
    background-color: #3CF1C6;
    height: 48px;
    width: 48px;
    border-radius: 50%; }

.qs-range-start:not(.qs-range-6) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.qs-range-middle {
  background: #d4ebf2; }
  .qs-range-middle:not(.qs-range-0):not(.qs-range-6) {
    border-radius: 0; }
  .qs-range-middle.qs-range-0 {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .qs-range-middle.qs-range-6 {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }

.qs-range-end:not(.qs-range-0) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.qs-disabled,
.qs-outside-current-month {
  opacity: .5; }

.qs-disabled {
  cursor: not-allowed; }

.qs-empty {
  cursor: default; }

.qs-day {
  cursor: default;
  color: gray;
  text-transform: uppercase; }

.qs-event {
  position: relative; }
  .qs-event:after {
    content: '';
    position: absolute;
    width: 12.69px;
    height: 12.69px;
    border-radius: 50%;
    background: #07f;
    bottom: 0;
    right: 0; }

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

/* Remove default padding */
ul,
ol {
  padding: 0; }

li:last-child {
  margin-bottom: 0 !important; }

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0; }

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.25rem; }

/* Remove list scss on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none; }

/* A elements that don't have a class get default scss */
/* Make images easier to work with */
img {
  max-width: 100%;
  display: block; }

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em; }

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit; }

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important; } }

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }

address,
dl {
  font-style: normal;
  line-height: 1.25rem; }

strong {
  font-family: 'DIN Medium', sans-serif; }

hr {
  border: none;
  height: 1px;
  background-color: #dbdbdb; }

.wrapper {
  width: 100%;
  box-sizing: border-box;
  padding-left: 1.5rem;
  padding-right: 1.5rem; }
  @media (min-width: 768px) {
    .wrapper {
      padding-left: 2rem;
      padding-right: 2rem; } }
  @media (min-width: 992px) {
    .wrapper {
      padding-left: 5rem;
      padding-right: 5rem; } }
  @media (min-width: 1920px) {
    .wrapper {
      padding-left: 13rem;
      padding-right: 13rem; } }

@font-face {
  font-family: 'Tungsten Condensed Black';
  src: url("../fonts/TungstenCondensed-Black.woff2") format("woff2"), url("../fonts/TungstenCondensed-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Tungsten Condensed Light';
  src: url("../fonts/TungstenCondensed-Light.woff2") format("woff2"), url("../fonts/TungstenCondensed-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Tungsten Condensed';
  src: url("../fonts/TungstenCondensed-Medium.woff2") format("woff2"), url("../fonts/TungstenCondensed-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Tungsten Condensed XLight';
  src: url("../fonts/TungstenCondensed-XLight.woff2") format("woff2"), url("../fonts/TungstenCondensed-XLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Tungsten Condensed Thin';
  src: url("../fonts/TungstenCondensed-Thin.woff2") format("woff2"), url("../fonts/TungstenCondensed-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Tungsten Condensed Bold';
  src: url("../fonts/TungstenCondensed-Bold.woff2") format("woff2"), url("../fonts/TungstenCondensed-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Tungsten Condensed Book';
  src: url("../fonts/TungstenCondensed-Book.woff2") format("woff2"), url("../fonts/TungstenCondensed-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Tungsten Condensed Semibold';
  src: url("../fonts/TungstenCondensed-Semibold.woff2") format("woff2"), url("../fonts/TungstenCondensed-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'DIN Light';
  src: url("../fonts/DIN-Light.woff2") format("woff2"), url("../fonts/DIN-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'DIN';
  src: url("../fonts/DIN-Regular.woff2") format("woff2"), url("../fonts/DIN-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'DIN Medium';
  src: url("../fonts/DIN-Medium.woff2") format("woff2"), url("../fonts/DIN-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'DIN Black';
  src: url("../fonts/DIN-Black.woff2") format("woff2"), url("../fonts/DIN-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'DIN LightItalic';
  src: url("../fonts/DIN-LightItalic.woff2") format("woff2"), url("../fonts/DIN-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'DIN Bold';
  src: url("../fonts/DIN-Bold.woff2") format("woff2"), url("../fonts/DIN-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'DIN-RegularItalic';
  src: url("../fonts/DIN-RegularItalic.woff2") format("woff2"), url("../fonts/DIN-RegularItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'DIN BoldItalic';
  src: url("../fonts/DIN-BoldItalic.woff2") format("woff2"), url("../fonts/DIN-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'DIN MediumItalic';
  src: url("../fonts/DIN-MediumItalic.woff2") format("woff2"), url("../fonts/DIN-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap; }

h1,
.h1-text {
  font-family: "Tungsten Condensed", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 3.5rem;
  line-height: 2.625rem;
  margin-bottom: 50px;
  letter-spacing: 0.0625rem; }

h2,
.h2-text {
  font-family: "Tungsten Condensed", sans-serif;
  font-size: 3.5rem;
  line-height: 2.625rem;
  margin-bottom: 30px;
  letter-spacing: 0.0625rem; }

h3,
.h3-text {
  font-family: "Tungsten Condensed", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 3rem;
  line-height: 2.25rem;
  margin-bottom: 24px;
  letter-spacing: 0.0625rem; }

p {
  margin-bottom: 20px; }
  @media (min-width: 768px) {
    p {
      margin-bottom: 30px; } }

.text-grey {
  color: #808080; }

body {
  font-family: "DIN", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1rem; }
  @media (min-width: 768px) {
    body {
      font-size: 1.125rem; } }

a:-webkit-any-link {
  color: #1a1a1a;
  font-family: "DIN medium", sans-serif;
  font-style: normal;
  font-weight: bold;
  line-height: 100%;
  -webkit-text-decoration-color: #3cf1c6;
          text-decoration-color: #3cf1c6;
  text-decoration-thickness: 3px; }

a:not([class]), a:not([class*="btn"]), a:any-link, a:-webkit-any-link, .link--green-underline {
  color: #1a1a1a;
  font-family: "DIN medium", sans-serif;
  font-style: normal;
  font-weight: bold;
  line-height: 100%;
  -webkit-text-decoration-color: #3cf1c6;
          text-decoration-color: #3cf1c6;
  text-decoration-thickness: 3px; }

.link--green-underline {
  font-size: 0.875rem; }

@media (min-width: 768px) {
  h1,
  .h1-text {
    font-size: 4.5rem;
    line-height: 3.625rem; }
  h2,
  .h2-text {
    font-size: 4.5rem;
    line-height: 3.4375rem; }
  h3,
  .h3-text {
    font-size: 3.5rem;
    line-height: 2.6875rem; } }

@media (min-width: 1920px) {
  h1,
  .h1-text {
    font-size: 7.5rem;
    line-height: 5.625rem; }
  h2,
  .h2-text {
    font-size: 6rem;
    line-height: 75.5%; }
    h2 .green_underline:after,
    .h2-text .green_underline:after {
      bottom: 18px; }
  h3,
  .h3-text {
    font-size: 4rem;
    line-height: 73.5%; } }

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase; }

small {
  font-size: 0.875rem; }

.text-lowercase {
  text-transform: lowercase !important; }

.text-uppercase {
  text-transform: uppercase !important; }

.text-capitalize {
  text-transform: capitalize !important; }

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

.color-swatch {
  padding: 2rem; }
  .color-swatch * {
    font-family: 'DIN Medium', sans-serif; }

pre {
  background: #eee;
  border: 1px solid #ccc;
  padding: 20px;
  margin-bottom: 2rem !important; }

.sr-only {
  display: none; }

@media (max-width: 767.98px) {
  .hidden-mobile {
    display: none !important; } }

.visibly-hidden {
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0; }

.flex-between {
  display: flex;
  justify-content: space-between; }

.flex-wrap {
  flex-wrap: wrap; }

.align-items-center {
  align-items: center !important; }

.align-items-start {
  align-items: start !important; }

.mb-0 {
  margin-bottom: 0; }

.p-0 {
  padding: 0 !important; }

body {
  min-height: 100vh;
  padding-bottom: calc(var(--aside-header-height) + var(--footer-type-2-height)); }

main {
  overflow-x: hidden; }
  main .wrapper--content {
    padding-top: 42px; }
  @media (min-width: 768px) {
    main .wrapper--content {
      padding-top: 92px; } }

aside {
  background-position: center center;
  background-size: cover;
  background-color: #f7f7f7; }

.question-page--type-1 aside,
.confirmation-page aside {
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0; }

.question-page--type-1 main,
.confirmation-page main {
  background-image: url("../images/contours.svg");
  background-repeat: no-repeat;
  background-position: center -150px; }

@media (min-width: 992px) {
  .question-page--type-1 main,
  .question-page--type-1 footer {
    width: calc(100% - 480px); } }

@media (min-width: 1440px) {
  .question-page--type-1 main,
  .question-page--type-1 footer {
    width: calc(100% - 608px); } }

.question-page--type-1 aside {
  width: 480px;
  background-image: url("../images/sidebar/sidebar-7.jpg"); }
  @media (max-width: 991.98px) {
    .question-page--type-1 aside {
      display: none; } }
  @media (min-width: 1440px) {
    .question-page--type-1 aside {
      width: 608px; } }

.question-page--type-3 aside {
  background-image: url("../images/sidebar/sidebar-1.jpg");
  background-image: url("../images/sidebar/sidebar-8.jpg"); }

.confirmation-page aside {
  background-image: url("../images/sidebar/sidebar-1.jpg");
  background-image: url("../images/sidebar/sidebar-4.jpg");
  background-image: url("../images/sidebar/sidebar-6.jpg");
  background-image: url("../images/sidebar/sidebar-3.jpg");
  background-image: url("../images/sidebar/sidebar-2.jpg"); }

.question-page--type-2 {
  overflow-x: hidden; }
  @media (min-width: 992px) {
    .question-page--type-2 main,
    .question-page--type-2 footer {
      width: calc(100% - 344px); } }
  @media (min-width: 1440px) {
    .question-page--type-2 main,
    .question-page--type-2 footer {
      width: calc(100% - 400px); } }
  .question-page--type-2 aside .aside__header .card,
  .question-page--type-2 aside .aside__header .card__title {
    margin: 0; }
  .question-page--type-2 aside .aside__header .card__title {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  @media (max-width: 991.98px) {
    .question-page--type-2 aside {
      width: 100%;
      position: fixed;
      top: auto;
      bottom: var(--footer-type-2-height);
      z-index: 5;
      transition: all 0.3s ease; }
      .question-page--type-2 aside .aside__header svg {
        transition: all 0.3s ease;
        transform: rotate(180deg); }
      .question-page--type-2 aside .aside__body {
        height: 0;
        overflow: hidden;
        transition: all 0.3s ease; } }
  @media (min-width: 992px) {
    .question-page--type-2 aside {
      overflow-y: scroll;
      height: 100vh;
      position: fixed;
      top: 0;
      right: 0;
      width: 344px; }
      .question-page--type-2 aside .aside__header {
        display: none; } }
  @media (min-width: 1440px) {
    .question-page--type-2 aside {
      width: 400px; } }

.question-page--type-3,
.confirmation-page {
  overflow-x: hidden; }
  @media (min-width: 768px) {
    .question-page--type-3,
    .confirmation-page {
      padding-bottom: 140px; } }
  @media (min-width: 992px) {
    .question-page--type-3 main,
    .question-page--type-3 footer,
    .confirmation-page main,
    .confirmation-page footer {
      width: calc(100% - 344px); } }
  @media (min-width: 1440px) {
    .question-page--type-3 main,
    .question-page--type-3 footer,
    .confirmation-page main,
    .confirmation-page footer {
      width: calc(100% - 400px); } }
  .question-page--type-3 aside,
  .confirmation-page aside {
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    width: 344px; }
    @media (max-width: 991.98px) {
      .question-page--type-3 aside,
      .confirmation-page aside {
        display: none; } }
    @media (min-width: 1440px) {
      .question-page--type-3 aside,
      .confirmation-page aside {
        width: 400px; } }

.time-to-complete {
  margin: 1rem 0;
  color: #808080;
  display: flex;
  align-items: center; }
  .time-to-complete svg {
    fill: #808080; }
  @media (min-width: 768px) {
    .time-to-complete {
      margin: 1.5rem 0; } }

.form-row {
  position: relative; }
  .form-row span {
    display: block; }
  .form-row input::-webkit-input-placeholder {
    color: #1a1a1a;
    opacity: 0.6;
    font-weight: 500;
    font-size: 0.875rem; }
  .form-row input:-moz-placeholder {
    color: #1a1a1a;
    opacity: 0.6;
    font-weight: 500;
    font-size: 0.875rem; }
  .form-row input:-ms-input-placeholder {
    color: #1a1a1a;
    opacity: 0.6;
    font-weight: 500;
    font-size: 0.875rem; }
  @media (min-width: 768px) {
    .form-row .form-row input[type=email] {
      padding: 24px; }
    .form-row .form-row input[type=submit] {
      height: 70px; } }

#questionsForm_customer-dob .input-group {
  width: 100%;
  max-width: 375px; }
  #questionsForm_customer-dob .input-group .field:first-child, #questionsForm_customer-dob .input-group .field:nth-child(2) {
    flex: 0 0 25%; }
  #questionsForm_customer-dob .input-group .field:last-child {
    flex: 0 0 50%; }

[id*="questionsForm_postal-code"] .field, [id*="questionsForm_postal-code"] .form__row,
#questionsForm_membership .field,
#questionsForm_membership .form__row,
#questionsForm_orv-membership .field,
#questionsForm_orv-membership .form__row,
#questionsForm_cyclescheme-membership .field,
#questionsForm_cyclescheme-membership .form__row,
#questionsForm_cycling-ireland-membership .field,
#questionsForm_cycling-ireland-membership .form__row {
  width: 100%;
  max-width: 352px; }
  [id*="questionsForm_postal-code"] .field .radio-toolbar, [id*="questionsForm_postal-code"] .form__row .radio-toolbar,
  #questionsForm_membership .field .radio-toolbar,
  #questionsForm_membership .form__row .radio-toolbar,
  #questionsForm_orv-membership .field .radio-toolbar,
  #questionsForm_orv-membership .form__row .radio-toolbar,
  #questionsForm_cyclescheme-membership .field .radio-toolbar,
  #questionsForm_cyclescheme-membership .form__row .radio-toolbar,
  #questionsForm_cycling-ireland-membership .field .radio-toolbar,
  #questionsForm_cycling-ireland-membership .form__row .radio-toolbar {
    width: 100%; }

#questionsForm_customer-email .field--email {
  max-width: 352px;
  margin-bottom: 1rem; }

#questionsForm_customer-name .form__row, #questionsForm_customer-name .radio-toolbar,
[id*="questionsForm_customer-address"] .form__row,
[id*="questionsForm_customer-address"] .radio-toolbar,
#questionsForm_bike-storage-address .form__row,
#questionsForm_bike-storage-address .radio-toolbar {
  max-width: 540px; }

#questionsForm_customer-phone .input-group {
  max-width: 449px; }

@media (min-width: 1440px) {
  #payment-area form .form__row {
    max-width: 540px; } }

.form__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  .form__row > * {
    margin-bottom: 1rem !important; }
  .form__row--details .field {
    flex: 0 1 100%; }
    @media (min-width: 768px) {
      .form__row--details .field.field--md-50 {
        flex-basis: calc(50% - 8px) !important; } }
  .form__row.form__row--list-bikes {
    justify-content: flex-start;
    margin-bottom: 16px;
    position: relative;
    padding-right: 40px; }
    .form__row.form__row--list-bikes .form__row__header {
      font-family: 'DIN Bold', sans-serif;
      background-color: #fff;
      border-left: 3px solid #3CF1C6;
      padding-top: var(--input-padding-y);
      padding-bottom: var(--input-padding-y);
      width: 40px;
      height: 49px;
      text-align: center; }
    .form__row.form__row--list-bikes > :nth-child(2),
    .form__row.form__row--list-bikes > :nth-child(3) {
      flex: 0 0 calc(100% - 40px); }
    .form__row.form__row--list-bikes > :nth-child(3),
    .form__row.form__row--list-bikes > :nth-child(4) {
      margin-left: 40px; }
    .form__row.form__row--list-bikes .form__row__footer {
      position: absolute;
      top: var(--input-padding-y);
      right: 0;
      text-align: right; }
    @media (min-width: 768px) {
      .form__row.form__row--list-bikes {
        margin-bottom: 32px;
        padding-right: 60px; }
        .form__row.form__row--list-bikes .form__row__header {
          flex: 0 0 60px;
          width: 60px;
          height: 58px; }
        .form__row.form__row--list-bikes > :nth-child(2) {
          margin-right: 1rem; }
        .form__row.form__row--list-bikes > :nth-child(2),
        .form__row.form__row--list-bikes > :nth-child(3) {
          flex: 1 0 calc(30% - 68px); }
        .form__row.form__row--list-bikes > :nth-child(3) {
          margin-left: 0; }
        .form__row.form__row--list-bikes > :nth-child(4) {
          flex: 0 0 100%;
          margin-left: 60px; }
        .form__row.form__row--list-bikes .form__row__footer {
          width: 60px; } }
    @media (min-width: 1440px) {
      .form__row.form__row--list-bikes .form__row__header {
        flex: 0 0 80px;
        width: 80px; }
      .form__row.form__row--list-bikes > :nth-child(2) {
        margin-right: 1.5rem; }
      .form__row.form__row--list-bikes > :nth-child(3) {
        margin-left: 0; }
      .form__row.form__row--list-bikes > :nth-child(4) {
        flex: auto;
        margin-left: 1.5rem;
        margin-top: 10px; }
      .form__row.form__row--list-bikes .form__row__footer {
        width: 60px; } }
  .form__row .remove-row {
    cursor: pointer; }

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  border-top: 2px solid #f2f2f2;
  background-color: #fff; }
  footer button:not(:last-child) {
    margin-right: 1rem; }
  @media (max-width: 767.98px) {
    footer .wrapper {
      padding: 0 16px; } }
  @media (min-width: 992px) {
    footer .wrapper {
      padding-left: 32px;
      padding-right: 32px; } }
  @media (min-width: 1440px) {
    footer .wrapper {
      padding-left: 40px;
      padding-right: 40px; } }

.footer--question-type-1 {
  z-index: 10;
  top: calc(100% - var(--footer-type-1-height));
  transition: all 0.3s ease; }
  .footer--question-type-1 .footer__header .footer__header__inner {
    height: var(--footer-type-1-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #dbdbdb; }
  .footer--question-type-1 .footer__header__text {
    margin-right: auto; }
  .footer--question-type-1 .footer__body {
    padding: 25px 0; }
    .footer--question-type-1 .footer__body .list--default, .footer--question-type-1 .footer__body .wrapper .top > ul {
      margin-bottom: 40px; }
      @media (min-width: 768px) {
        .footer--question-type-1 .footer__body .list--default, .footer--question-type-1 .footer__body .wrapper .top > ul {
          margin-bottom: 66px; } }
    .footer--question-type-1 .footer__body .wrapper .top {
      margin-bottom: 40px; }
      @media (min-width: 768px) {
        .footer--question-type-1 .footer__body .wrapper .top {
          margin-bottom: 66px; } }
      @media (min-width: 1440px) {
        .footer--question-type-1 .footer__body .wrapper .top {
          -moz-column-count: 2;
               column-count: 2;
          -moz-column-gap: 5%;
               column-gap: 5%; } }
  .footer--question-type-1 .footer__toggle {
    cursor: pointer; }
    .footer--question-type-1 .footer__toggle--close {
      display: none; }

.footer--question-type-2 .wrapper,
.footer--question-type-3 .wrapper {
  display: flex;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem; }
  .footer--question-type-2 .wrapper .btn:first-child,
  .footer--question-type-3 .wrapper .btn:first-child {
    margin-right: auto; }

@media (min-width: 1440px) {
  .footer--question-type-2,
  .footer--question-type-3 {
    width: 79%;
    padding-top: 1rem;
    padding-bottom: 1rem; } }

.footer-open .footer__toggle--open {
  display: none; }

.footer-open .footer__toggle--close {
  display: block; }

.footer-open footer {
  z-index: 110;
  top: var(--header-height); }

.footer-open .footer__body {
  height: calc(100vh - calc(var(--footer-type-1-height) + var(--header-height)));
  overflow: auto; }

.footer__backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  background-color: #202020; }
  .footer-open .footer__backdrop {
    opacity: 0.6;
    z-index: 5; }

@media (max-width: 991.98px) {
  .question-page--type-2.aside-open {
    overflow: hidden; }
    .question-page--type-2.aside-open aside {
      top: var(--header-height);
      z-index: 6; }
    .question-page--type-2.aside-open .aside__header svg {
      transform: rotate(0deg) !important; }
    .question-page--type-2.aside-open .aside__body {
      height: calc(100vh - calc(var(--header-height) + var(--footer-type-2-height) + var(--aside-header-height)));
      overflow-y: scroll; }
      .question-page--type-2.aside-open .aside__body .card:first-child {
        padding-top: 0; }
    .question-page--type-2.aside-open .card-list .card--snippet:first-child .card__title {
      display: none; } }

.aside__backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  background-color: #202020; }
  @media (max-width: 991.98px) {
    .aside-open .aside__backdrop {
      opacity: 0.6;
      z-index: 5; } }

header.demo-header > .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%; }
  header.demo-header > .wrapper .navbar__toggle {
    cursor: pointer; }
    header.demo-header > .wrapper .navbar__toggle .close-svg {
      display: none; }
  header.demo-header > .wrapper nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5; }
    header.demo-header > .wrapper nav .nav {
      display: flex;
      flex-wrap: wrap; }
      header.demo-header > .wrapper nav .nav > li {
        padding: 0 16px;
        margin-bottom: 16px;
        flex: 1; }
        header.demo-header > .wrapper nav .nav > li .navbar__title {
          text-transform: uppercase;
          font-weight: bold; }
  header.demo-header > .wrapper .wrapper {
    background-color: #fff; }

.navbar-open header.demo-header .navbar__toggle .close-svg {
  display: block; }

.navbar-open header.demo-header .navbar__toggle .menu-svg {
  display: none; }

.navbar-open header.demo-header nav {
  display: block; }

.navbar-open {
  overflow: hidden; }

header {
  height: var(--header-height);
  position: relative; }
  header .brand__image {
    height: auto;
    width: 120px; }

header.app-header {
  padding: 0 16px;
  display: flex;
  align-items: center; }

@media (min-width: 768px) {
  header.app-header {
    padding: 0 32px; }
    header.app-header .brand__image {
      width: 136px; } }

@media (min-width: 1440px) {
  header.app-header {
    padding: 0 42px; } }

@media (min-width: 1920px) {
  header {
    height: 110px; } }

.brand {
  display: block;
  max-width: 123px;
  min-width: 123px;
  position: relative; }
  .brand .brand__image {
    display: block;
    width: 100%;
    position: relative; }
    .brand .brand__image.brand__image--white {
      position: absolute;
      top: 0;
      left: 0;
      opacity: 1;
      z-index: 2; }
  .brand.brand--partner {
    display: flex;
    max-width: 120px;
    max-height: 50px; }
    .brand.brand--partner img, .brand.brand--partner svg {
      display: block; }

.header .header__brand .brand__image.brand__image--white {
  opacity: 0; }

.header .header__plus {
  display: flex;
  margin: 0 12px 0 12px;
  opacity: 0.4; }

.header.header--partners .partners_brand__mobile {
  min-width: 25px;
  max-width: 25px; }

.header.header--partners .partners_brand_wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center; }

@media only screen and (min-width: 768px) {
  .brand {
    max-width: 136px;
    min-width: 136px; } }

@media only screen and (min-width: 1440px) {
  .header .wrapper {
    width: 100%;
    max-width: 100%;
    padding-left: 56px;
    padding-right: 56px; } }

.section--insured-details {
  display: flex;
  flex-wrap: wrap; }
  .section--insured-details > * {
    flex-basis: 100%;
    height: 100%; }
    @media (min-width: 992px) {
      .section--insured-details > * {
        flex-basis: calc(50% - var(--table-cell-padding-x)); } }
  @media (min-width: 992px) {
    .section--insured-details {
      justify-content: space-between; } }

.section--summary {
  margin-bottom: 64px; }
  @media (min-width: 768px) {
    .section--summary {
      margin-bottom: 80px; } }

.section__title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px; }

.section__title {
  font-family: 'DIN Medium', sans-serif;
  font-size: 1.5rem;
  line-height: 1.875rem; }

.underwriter-logo {
  width: var(--underwriter-logo-width);
  height: auto; }

.options-page .table--bikmo-options input,
.options-page .table--bikmo-options button {
  height: 48px;
  padding-top: 12px;
  padding-bottom: 12px; }

.error-404-page {
  height: 100vh;
  padding-bottom: 0; }
  .error-404-page main {
    height: 100vh; }
    .error-404-page main .background {
      position: absolute;
      top: 0;
      left: 0;
      height: 100vh; }
      .error-404-page main .background img {
        height: 100vh; }
    .error-404-page main .content-wrapper {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate3d(-50%, -50%, 0); }
      .error-404-page main .content-wrapper .left {
        margin-bottom: 32px; }
      .error-404-page main .content-wrapper .right h1 {
        margin-bottom: 32px;
        line-height: 73.5%; }
      .error-404-page main .content-wrapper .right .block_tag {
        font-size: 1rem;
        font-family: 'DIN'; }
  @media (min-width: 992px) {
    .error-404-page .content-wrapper {
      display: flex; }
      .error-404-page .content-wrapper > * {
        flex: 1; }
      .error-404-page .content-wrapper .left {
        text-align: right;
        padding-right: 60px; }
      .error-404-page .content-wrapper .right .text--jumbo {
        font-size: 12.5rem; } }
  @media (min-width: 1440px) {
    .error-404-page .wrapper {
      padding: 0 400px; } }

.btn {
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 0.875rem;
  line-height: 1.09375rem !important;
  color: #1a1a1a;
  background-color: transparent;
  font-family: "DIN Bold", sans-serif; }
  @media (min-width: 1920px) {
    .btn {
      padding: 18px 24px; } }
  .btn.btn--magenta-full {
    color: #fff;
    background: #ff0080;
    border: 2px solid #ff0080; }
    .btn.btn--magenta-full:hover {
      background-color: #EA0075; }
    .btn.btn--magenta-full.btn--disabled {
      background-color: #808080 !important;
      border: 2px solid #808080;
      color: #fff !important;
      opacity: 0.5; }
  .btn.btn--magenta-border {
    color: #ff0080;
    border: 2px solid #ff0080; }
  .btn.btn--white-border {
    color: #fff;
    border: 2px solid #fff; }
  .btn.btn--white-full {
    color: #1a1a1a;
    background: #fff;
    border: 2px solid #fff; }
  .btn.btn--dark-border, .btn.btn--amend-cover {
    color: #1a1a1a;
    border: 2px solid #1a1a1a; }
    .btn.btn--dark-border:hover, .btn.btn--amend-cover:hover {
      border: 2px solid #808080;
      color: #808080 !important; }
    .btn.btn--dark-border.btn--disabled, .btn.btn--amend-cover.btn--disabled {
      border: 2px solid #808080;
      color: #808080 !important;
      opacity: 0.5; }
  .btn.btn--dark-full {
    color: #fff;
    background: #1a1a1a;
    border: 2px solid #1a1a1a; }
  .btn.btn--light-grey-border {
    border: 1px solid #dbdbdb; }
  .btn.btn--icon {
    display: inline-flex;
    justify-content: center;
    align-items: center; }
    .btn.btn--icon svg {
      max-width: 18px;
      max-height: 18px;
      overflow: visible; }
    .btn.btn--icon-left svg, .btn.btn--icon-left i {
      margin-right: 8px; }
    .btn.btn--icon-right svg, .btn.btn--icon-right i {
      margin-left: 8px; }
    .btn.btn--icon:hover svg path {
      stroke: #808080; }
  .btn.btn--share-promo {
    padding: 0;
    border: 0; }
  .btn.btn--legal {
    text-transform: initial;
    text-align: left;
    display: flex;
    justify-content: space-between; }

.btn-group--spaced {
  display: flex; }
  .btn-group--spaced .btn {
    display: inline-flex; }
    .btn-group--spaced .btn:not(:last-child) {
      margin-right: 8px; }

@media (max-width: 767.98px) {
  .btn-group--legal .btn:first-child {
    margin-bottom: 0.5rem; } }

@media (min-width: 768px) {
  .btn-group--legal {
    position: relative;
    display: flex;
    vertical-align: middle; }
    .btn-group--legal > .btn:first-child {
      margin-left: 0; }
    .btn-group--legal > .btn {
      position: relative;
      flex: 1; }
      .btn-group--legal > .btn:focus, .btn-group--legal > .btn:active, .btn-group--legal > .btn.active {
        z-index: 1; }
    .btn-group--legal .btn + .btn,
    .btn-group--legal .btn + .btn-group,
    .btn-group--legal .btn-group + .btn,
    .btn-group--legal .btn-group + .btn-group {
      margin-left: -1px; } }

.btn:focus,
button:focus {
  outline: none; }

ol.list {
  counter-reset: list-counter; }

li {
  position: relative; }

.list--info {
  margin-bottom: 35px !important; }

.list--ordered {
  list-style: none; }

.list--default > li, .footer--question-type-1 .footer__body .wrapper .top > ul > li {
  padding-left: 32px;
  list-style: none;
  margin-bottom: 40px;
  font-family: "DIN Medium", sans-serif; }
  .list--default > li:before, .footer--question-type-1 .footer__body .wrapper .top > ul > li:before {
    content: '•';
    position: absolute;
    top: 0;
    left: 5px; }

.list--secondary, .footer--question-type-1 .footer__body .wrapper .top > ul ul {
  margin-top: 20px !important; }
  .list--secondary li, .footer--question-type-1 .footer__body .wrapper .top > ul ul li {
    margin-bottom: 20px;
    font-family: "DIN", sans-serif; }
    .list--secondary li:before, .footer--question-type-1 .footer__body .wrapper .top > ul ul li:before {
      content: '- '; }

.list--black-tags {
  margin-bottom: 60px !important; }

.list__item, .footer--question-type-1 .footer__body .wrapper .top li {
  position: relative;
  counter-increment: list-counter; }
  .list__item--download {
    padding: 24px 0;
    border-bottom: 1px solid #dbdbdb; }
    .list__item--download a {
      font-family: 'DIN Medium';
      text-decoration: none;
      padding: 0 34px;
      position: relative;
      display: block; }
      .list__item--download a:before, .list__item--download a:after {
        content: '';
        position: absolute;
        background-size: cover; }
      .list__item--download a:before {
        left: 0;
        width: 14px;
        height: 19px;
        background-image: url("../images/document.svg"); }
      .list__item--download a:after {
        right: 0;
        width: 16px;
        height: 18px;
        background-image: url("../images/download.svg"); }
  .list__item--tag {
    position: relative;
    padding-left: 44px; }
    .list__item--tag:before {
      left: 0;
      position: absolute;
      top: -5px; }
    .list__item--tag:after {
      position: absolute;
      left: 0;
      top: -5px; }
  .list__item--tag-black {
    margin-bottom: 35px; }
    .list__item--tag-black:before {
      content: '';
      background-image: url("../images/black-tag.svg");
      background-size: 100% 100%;
      width: 28px;
      height: 32px; }
    .list__item--tag-black:after {
      content: counter(list-counter);
      width: 28px;
      height: 32px;
      line-height: 2rem;
      text-align: center;
      font-size: 0.75rem;
      color: #fff; }
  .list__item--tag-info {
    margin-bottom: 35px; }
    .list__item--tag-info:before {
      content: '';
      background-image: url("../images/info.svg");
      background-size: 100% 100%;
      width: 24px;
      height: 24px; }

.list--right {
  float: right; }

.list__link {
  color: inherit;
  display: block;
  text-decoration: inherit; }
  .list__link--flex {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
  .list__link--action {
    padding: 10px 0; }

.list__name, .list__icon {
  display: inline-block; }

.list__icon {
  max-width: 20px;
  margin-left: 8px; }

.list .key, .footer--question-type-1 .footer__body .wrapper .top > ul .key {
  font-weight: bold; }

.bike-list {
  border: 1px solid #dbdbdb; }
  .bike-list .bike-list__item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding: 22px 16px; }
    .bike-list .bike-list__item--total-cost {
      justify-content: space-between;
      background-color: #F7F7F7;
      padding-top: 18px;
      padding-bottom: 18px; }
      .bike-list .bike-list__item--total-cost .bike-list__total-text {
        font-family: 'DIN Medium';
        color: #808080;
        font-size: 0.875rem; }
    .bike-list .bike-list__item:not(:last-child) {
      border-bottom: 1px solid #dbdbdb; }
    @media (max-width: 575.98px) {
      .bike-list .bike-list__item .bike-list__make-model {
        max-width: 50%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; } }
    .bike-list .bike-list__item .bike-list__count {
      flex: 0 0 24px; }
    .bike-list .bike-list__item .bike-list__type {
      color: #808080;
      padding-bottom: 1rem; }
    .bike-list .bike-list__item .bike-list__cost {
      text-align: right;
      margin-left: auto; }

.aside__body ol {
  list-style: decimal !important;
  margin-bottom: 1rem !important; }
  .aside__body ol li {
    margin-bottom: .5rem !important;
    margin-left: 1rem !important; }

.badge, .field__box.discounted:after {
  position: absolute;
  top: -5px;
  right: -5px; }
  .badge--discount, .field__box.discounted:after {
    top: -12px;
    right: -15px;
    padding: 5px 12px;
    line-height: 1.125rem;
    font-family: 'DIN Bold', sans-serif;
    font-style: normal;
    font-weight: bold;
    color: rgba(26, 26, 26, 0.6);
    background-image: url("../images/aqua-discount-tag.svg");
    background-size: 100%;
    background-repeat: no-repeat;
    min-width: 55px; }

.block_tag {
  font-family: "DIN Bold", sans-serif;
  font-size: 0.8125rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  padding: 5px 10px;
  display: inline-block;
  position: relative;
  color: #1a1a1a;
  margin-bottom: 20px;
  z-index: 1; }
  .block_tag::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3cf1c6;
    z-index: -1;
    transform-origin: left;
    transform: skew(3deg, -1deg); }
  .block_tag--flat::before {
    transform: skew(0deg, 0deg); }

.ebike-tag {
  font-family: "DIN Bold", sans-serif;
  font-size: 0.6875rem;
  line-height: 0.875rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  padding: 4px 7px;
  display: inline-block;
  position: relative;
  color: #24CAA3;
  margin-left: 18px;
  z-index: 1; }
  @media (min-width: 768px) {
    .ebike-tag {
      margin-left: 30px; } }
  .ebike-tag::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    border: 1px solid #3cf1c6;
    transform-origin: left;
    transform: skew(-5deg, 0deg); }

.card-list {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff; }
  .card-list--vertical {
    flex-direction: column; }
  .card-list .card {
    flex: 1;
    margin: 0; }
    .card-list .card:not(:last-child) {
      margin-bottom: 4px; }

.card {
  padding: 2rem;
  margin-bottom: 24px; }
  .card__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px; }
    .card__header > * {
      margin: 0; }
  .card--underwriter {
    flex-direction: column; }
    .card--underwriter .card__header {
      display: flex;
      margin-bottom: 16px; }
      .card--underwriter .card__header p {
        margin: 0; }
      @media (max-width: 767.98px) {
        .card--underwriter .card__header {
          flex-direction: column;
          align-items: flex-start; }
          .card--underwriter .card__header img {
            margin-bottom: 16px; } }
      @media (min-width: 768px) {
        .card--underwriter .card__header {
          flex-direction: row-reverse; }
          .card--underwriter .card__header img {
            margin-right: 64px;
            flex: 0 0 var(--underwriter-logo-width); }
          .card--underwriter .card__header p {
            order: 1; } }
  .card--warning {
    color: #fff;
    background-color: #f5b6b3; }
  .card--simple {
    background-color: #fff;
    border: 1px solid #dbdbdb; }
  .card--snippet {
    padding: 18px 24px;
    background-color: #f7f7f7;
    flex-direction: column; }
    @media (min-width: 768px) {
      .card--snippet {
        padding: 36px 32px; } }
    .card--snippet .card__title {
      font-family: 'DIN Bold', sans-serif;
      text-transform: uppercase;
      font-size: 1rem;
      margin-bottom: 30px; }
  .card--icon {
    justify-content: space-between; }
    .card--icon svg {
      margin-bottom: 8px; }

body {
  counter-reset: bikecount; }

.bike-count::after {
  counter-increment: bikecount;
  content: counter(bikecount); }

input,
select,
textarea,
.form__row__header {
  line-height: 1.375rem; }
  @media (min-width: 1920px) {
    input,
    select,
    textarea,
    .form__row__header {
      font-size: 1.125rem;
      line-height: 1.39625rem; } }

input:not([type="checkbox"]),
select,
textarea {
  width: 100%;
  border-radius: 0;
  font-weight: inherit;
  font-family: 'DIN Medium', sans-serif;
  color: #1a1a1a;
  display: inline-block;
  background: #fff; }
  input:not([type="checkbox"]):focus,
  select:focus,
  textarea:focus {
    outline: 0; }

select {
  padding-right: 50px !important; }

input,
select {
  /** Reset **/
  margin: 0;
  display: inline-block;
  vertical-align: baseline;
  white-space: normal;
  background: none;
  padding: var(--input-padding-y) var(--input-padding-x);
  border: 1px solid #dbdbdb; }
  input:disabled,
  select:disabled {
    border-color: transparent; }
  input:focus,
  select:focus {
    outline: 0;
    border-color: #999999; }
  input[type="number"],
  select[type="number"] {
    -moz-appearance: textfield; }
  input::-webkit-inner-spin-button, input::-webkit-outer-spin-button,
  select::-webkit-inner-spin-button,
  select::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  input.error,
  select.error {
    border: 1px solid #E96059; }

.autocomplete {
  /*the container must be positioned relative:*/
  position: relative; }

.autocomplete__items {
  position: absolute;
  border: 1px solid #dbdbdb;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0; }

.autocomplete__items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #dbdbdb; }

.autocomplete__items div:hover {
  /*when hovering an item:*/
  background-color: #dbdbdb; }

.autocomplete__item--active {
  /*when navigating through the items using the arrow keys:*/
  background-color: #3CF1C6 !important;
  color: #ffffff; }

.postcode-results-container {
  display: none;
  position: absolute;
  z-index: 10;
  margin: 0 auto;
  overflow: hidden;
  transition: 1s linear;
  transition-delay: 0s;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); }
  .postcode-results-container .ajax-box {
    width: 100%;
    background-color: #fff;
    max-height: 222px;
    overflow: auto; }
  .postcode-results-container .postcode-item,
  .postcode-results-container .postcode-error-message {
    margin: 0;
    text-align: left;
    padding: 9px; }
  .postcode-results-container .postcode-item:hover {
    cursor: pointer;
    width: 100%; }

.input-group {
  position: relative;
  display: flex;
  margin-bottom: 16px; }
  .input-group .field {
    display: flex;
    flex-direction: column; }
  .input-group .field,
  .input-group button,
  .input-group > .form-control,
  .input-group > .custom-select,
  .input-group > .custom-file {
    position: relative;
    display: inline-flex;
    flex: 1 1 auto;
    margin-bottom: 0; }
    .input-group .field:focus,
    .input-group button:focus,
    .input-group > .form-control:focus,
    .input-group > .custom-select:focus,
    .input-group > .custom-file:focus {
      z-index: 3; }
    .input-group .field + .field,
    .input-group button + .field,
    .input-group > .form-control + .field,
    .input-group > .custom-select + .field,
    .input-group > .custom-file + .field {
      margin-left: -1px; }
  .input-group--date-group .field__box,
  .input-group--date-group .field {
    width: 100%; }
  .input-group--date-group .field--day {
    flex: 1; }
  .input-group--date-group .field--month {
    flex: 1; }
  .input-group--date-group .field--year {
    flex: 2; }
  .input-group--select-group .field:first-child {
    width: 100px;
    flex: 0 0 100px; }

.radio-toolbar {
  display: flex;
  padding: 0;
  margin: 0;
  border: none; }
  .radio-toolbar--wrap {
    flex-wrap: wrap; }
  .radio-toolbar .extra-details {
    flex: 0 0 100%; }

.radio-toolbar input[type="radio"],
.hidden-input {
  opacity: 0;
  position: absolute;
  left: -200vw;
  width: 0;
  height: 0; }

.radio-toolbar .radio-toolbar__label {
  flex: 1;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  background-color: #fff;
  height: 48px;
  line-height: 3rem;
  font-size: 0.875rem;
  font-family: 'DIN Medium', sans-serif;
  border: 1px solid #dbdbdb;
  color: #808080; }
  @media (min-width: 768px) {
    .radio-toolbar .radio-toolbar__label {
      height: 57px;
      line-height: 3.5625rem; } }
  @media (min-width: 1920px) {
    .radio-toolbar .radio-toolbar__label {
      height: 60px;
      line-height: 3.75rem; } }
  .radio-toolbar .radio-toolbar__label:hover {
    border-color: #f2f2f2;
    background-color: #f2f2f2; }

.radio-toolbar input[type="radio"]:checked + .radio-toolbar__label {
  background-color: #1a1a1a !important;
  color: #fff; }

.radio-toolbar.radio-toolbar--cards {
  flex-wrap: wrap;
  margin: 0 -12px; }
  .radio-toolbar.radio-toolbar--cards .col {
    flex-basis: 100%;
    padding: 0 12px; }
  @media (min-width: 1440px) {
    .radio-toolbar.radio-toolbar--cards .col {
      flex-basis: 50%; } }
  .radio-toolbar.radio-toolbar--cards .card {
    display: inline-block;
    width: 100%;
    background-color: #fff;
    color: #1a1a1a; }
  .radio-toolbar.radio-toolbar--cards input[type="radio"]:checked + .card {
    border: 1px solid #3cf1c6;
    background-color: rgba(60, 241, 198, 0.05); }

.extra-details {
  margin-top: 3rem;
  display: none; }

input[value="other"]:checked ~ .extra-details {
  display: block; }

input[id="yes"]:checked ~ .extra-details {
  display: block; }

.form__row--radio-list {
  display: flex;
  flex-direction: column; }

.field__box--radio input[type="radio"] {
  position: absolute;
  opacity: 0; }
  .field__box--radio input[type="radio"] + .field__label:before {
    content: '';
    background: #fff;
    border-radius: 100%;
    border: 1px solid #dbdbdb;
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
    margin-right: 8px;
    vertical-align: middle;
    cursor: pointer;
    text-align: center;
    transition: all 300ms ease; }
  .field__box--radio input[type="radio"]:checked + .field__label:before {
    background-color: #1a1a1a;
    box-shadow: inset 0 0 0 7px #fff; }
  .field__box--radio input[type="radio"]:focus + .field__label:before {
    outline: none;
    border-color: #999999; }
  .field__box--radio input[type="radio"]:disabled + .field__label:before {
    box-shadow: inset 0 0 0 7px #F7F7F7;
    border-color: #dbdbdb;
    background: #808080; }
  .field__box--radio input[type="radio"] + .field__label:empty:before {
    margin-right: 0; }

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-indent: 1px;
  text-overflow: ''; }

.field input:not([type="checkbox"]):not([type=radio]):not(:-moz-placeholder-shown) + label.field__label {
  font-size: 0.875rem;
  left: calc(var(--input-padding-x) - 8px) !important;
  top: -10px !important;
  background-color: #fff;
  padding: 0 8px; }

.field input:not([type="checkbox"]):not([type=radio]):not(:-ms-input-placeholder) + label.field__label {
  font-size: 0.875rem;
  left: calc(var(--input-padding-x) - 8px) !important;
  top: -10px !important;
  background-color: #fff;
  padding: 0 8px; }

.field input:not([type="checkbox"]):not([type=radio]).valid + label.field__label, .field input:not([type="checkbox"]):not([type=radio]).error + label.field__label, .field input:not([type="checkbox"]):not([type=radio]):focus + label.field__label, .field input:not([type="checkbox"]):not([type=radio]):not(:placeholder-shown) + label.field__label {
  font-size: 0.875rem;
  left: calc(var(--input-padding-x) - 8px) !important;
  top: -10px !important;
  background-color: #fff;
  padding: 0 8px; }

.field {
  display: block; }
  .field label:not([class*="field__label--checkbox"]):not([class*="field__label--radio"]):not([class*="error"]) {
    color: #808080;
    font-family: 'DIN Medium', sans-serif;
    position: absolute;
    top: var(--input-padding-y);
    left: var(--input-padding-x);
    pointer-events: none;
    transition: top 0.2s ease-out, font-size 0.2s ease-out, color 0.2s ease-out; }
  .field .field__box--currency input {
    padding-left: 36px; }
  .field .field__box--currency .currency-symbol {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 18px; }
  .field .field__box--currency label {
    left: 40px !important; }
  .field--narrow {
    width: 100%;
    max-width: 352px; }

#formPromoCode {
  max-height: 0;
  opacity: 0;
  padding-top: 8px;
  overflow: hidden;
  transition: max-height 0.3s ease; }
  #formPromoCode .form__row {
    justify-content: flex-start;
    align-items: center; }
  #formPromoCode .field,
  #formPromoCode input,
  #formPromoCode button {
    height: 48px;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center; }
  #formPromoCode label {
    top: 14px; }
  #formPromoCode button {
    text-align: center;
    flex: 0 0 106px;
    justify-content: center; }
  #formPromoCode .input-group {
    width: 100%;
    max-width: calc(295px + 108px);
    margin-right: 20px; }

.discount-code-form-open #formPromoCode {
  max-height: 150px;
  opacity: 1; }

.bikesCountForm {
  height: 66px;
  display: flex;
  width: 100%;
  max-width: 447px; }
  .bikesCountForm .field,
  .bikesCountForm input,
  .bikesCountForm button {
    height: 64px; }
  .bikesCountForm .field {
    margin-bottom: 0;
    width: calc(100% - 104px); }
  .bikesCountForm input {
    text-align: center; }
    .bikesCountForm input::-moz-selection {
      background: transparent; }
    .bikesCountForm input::selection {
      background: transparent; }
  .bikesCountForm button {
    width: 104px; }
  .bikesCountForm .field__box--number .count-down,
  .bikesCountForm .field__box--number .count-up {
    position: absolute;
    width: 44px;
    height: 100%;
    text-align: center;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center; }
  .bikesCountForm .field__box--number .count-down {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0; }
  .bikesCountForm .field__box--number .count-up {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0; }

.field {
  position: relative;
  margin-bottom: 8px; }
  .field__box {
    display: inline-block;
    transition: box-shadow 0.2s ease-in;
    width: 100%;
    position: relative; }
    .field__box.discounted:after {
      content: "-50%"; }
    .field__box--date svg {
      pointer-events: none; }
    .field__box--email.ajaxActive svg.spinner {
      opacity: 1; }
    .field__box--email svg.spinner {
      opacity: 0;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 10px;
      width: 30px;
      height: 30px;
      x: 0px;
      y: 0px;
      viewBox: 0 0 30 30; }
      .field__box--email svg.spinner circle {
        fill: transparent;
        stroke: #1a1a1a;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-dasharray: 94.2;
        transform-origin: 15px 15px 0;
        -webkit-animation: spinner 3s linear infinite;
                animation: spinner 3s linear infinite; }
    .field__box--select:after {
      content: '';
      width: 18px;
      height: 18px;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 14px;
      background-image: url("../images/chevron-down.svg");
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center center;
      pointer-events: none; }
  .field__item {
    margin-bottom: 8px;
    min-width: 200px; }
    .field__item--select {
      background-image: url(../images/arrow-down-sign-to-navigate.png);
      background-size: 8px;
      background-position: 100%;
      background-repeat: no-repeat;
      border-bottom: 2px solid #0189B4;
      padding-bottom: 4px;
      padding-right: 16px; }

.field__box--checkbox input[type="checkbox"],
.field__box--checkbox input[type="radio"] {
  position: absolute;
  left: -200vw; }
  .field__box--checkbox input[type="checkbox"]:focus + label:before,
  .field__box--checkbox input[type="radio"]:focus + label:before {
    border-color: #999999; }
  .field__box--checkbox input[type="checkbox"]:checked + label:before,
  .field__box--checkbox input[type="radio"]:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-image: url("../images/checkbox-tick.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 70%; }

.field__box--checkbox > label.field__label {
  height: 32px;
  line-height: 1.5rem;
  display: block;
  padding-left: 40px;
  padding-top: 3px;
  position: relative;
  cursor: pointer;
  margin-bottom: 0; }
  .field__box--checkbox > label.field__label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: transparent;
    width: 32px;
    height: 32px;
    border: 1px solid #dbdbdb;
    flex: 0 0 32px;
    text-align: center;
    line-height: 1.25rem;
    cursor: pointer; }

.field__box--postcode svg,
.field__box--date svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: var(--input-padding-x); }

.qs-datepicker-container {
  font-family: 'DIN', sans-serif; }

.field__box--postcode svg {
  opacity: 0; }

.field__box--postcode input.valid ~ svg {
  opacity: 1; }

.field__error:not(.field__error--BE),
.field__help {
  display: none; }

.field__feedback .field__error,
.field__feedback .field__help {
  font-size: 0.875rem;
  padding-top: 0.5rem; }

.field__feedback .field__error {
  color: #D2352D; }

label.card.card--simple span {
  display: block; }

.checkbox-pseudo {
  background-color: transparent;
  border: 1px solid #dbdbdb;
  content: "";
  line-height: 1.25rem;
  position: absolute;
  text-align: center;
  top: 24px;
  right: 24px;
  height: 32px;
  width: 32px; }

input[type=radio]:checked ~ label .checkbox-pseudo {
  border: 1px solid #1a1a1a; }

input[type=radio]:checked ~ label .checkbox-pseudo:after {
  background-image: url("../images/checkbox-tick.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 70%;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%; }

.line-simple {
  flex-basis: 100%;
  padding: 0 12px;
  margin: 0 0 25px 0; }

.line-simple .checkbox-pseudo {
  top: 0;
  right: 0;
  position: relative;
  display: inline-block; }

.line-simple .checkbox-pseudo + span {
  margin-bottom: 0;
  line-height: 2rem;
  vertical-align: top;
  margin-left: 5px; }

.consolidated-section.disabled {
  opacity: 0.1; }

.consolidated-section .h2-text {
  padding-left: 10px;
  padding-top: 5px;
  position: relative; }

.consolidated-section p {
  margin-top: 18px; }

.consolidated-section.active .h2-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #3cf1c6;
  width: 5px;
  height: 100%; }

.consolidated-section:first-of-type,
.consolidated-section.completed + .consolidated-section {
  opacity: 1; }

.page-with-progress .wrapper--content {
  padding-top: 90px; }

.progress-wrapper {
  position: absolute;
  left: 0;
  top: 60px;
  width: 100%;
  margin: 0 auto; }
  @media (min-width: 768px) {
    .progress-wrapper {
      top: 82px; } }
  @media (min-width: 1920px) {
    .progress-wrapper {
      width: 700px;
      top: 110px;
      left: calc(50% - 350px); } }

.progress {
  position: relative;
  display: flex; }
  .progress:before, .progress:after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100vw; }
  .progress:before {
    right: 100%;
    background-color: #3cf1c6; }
  .progress:after {
    left: 100%;
    background-color: #f2f2f2; }
  .progress progress[value] {
    position: absolute;
    bottom: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    width: 100%;
    height: 2px; }
    .progress progress[value]::-webkit-progress-bar {
      background: #f2f2f2; }
    .progress progress[value]::-webkit-progress-value {
      background: #3CF1C6; }
    .progress progress[value]::-moz-progress-bar {
      background: #3CF1C6; }
  .progress .progress__step {
    position: absolute;
    bottom: -3px;
    font-size: 0.75rem;
    line-height: 0.9rem;
    text-transform: uppercase;
    font-family: 'DIN Bold', sans-serif;
    color: #dbdbdb;
    text-align: center;
    transform: translateX(-50%); }
    .progress .progress__step .progress__text {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -30px;
      white-space: nowrap; }
      @media (max-width: 991.98px) {
        .progress .progress__step .progress__text span {
          display: none; } }
      @media (min-width: 1920px) {
        .progress .progress__step .progress__text {
          bottom: 50px; } }
    .progress .progress__step:before {
      content: "";
      display: flex;
      margin: 0 auto;
      width: 9px;
      height: 9px;
      transform: rotateZ(45deg);
      background: #f2f2f2; }
    .progress .progress__step.progress__step--is-active {
      color: initial; }
      .progress .progress__step.progress__step--is-active:before {
        background-color: #3CF1C6; }
    .progress .progress__step.progress__step--is-complete:before {
      background: #3CF1C6; }

:root {
  --table-cell-padding-x: 8px; }
  @media (min-width: 768px) {
    :root {
      --table-cell-padding-x: 12px; } }

.table__cell--align-right {
  text-align: right; }

.table .table__row {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + calc(2 * var(--table-cell-padding-x)));
  padding-top: 16px;
  margin-left: calc(-1 * var(--table-cell-padding-x));
  margin-right: calc(-1 * var(--table-cell-padding-x)); }

.table .table__cell {
  flex: 1;
  flex-direction: column;
  padding: 0 var(--table-cell-padding-x); }
  @media (max-width: 767.98px) {
    .table .table__cell--sm-50 {
      flex: 1 0 50% !important; } }
  @media (max-width: 991.98px) {
    .table .table__cell--md-50 {
      flex: 1 0 50% !important; } }
  @media (max-width: 1439.98px) {
    .table .table__cell--lg-50 {
      flex: 1 0 50% !important; } }
  @media (max-width: 767.98px) {
    .table .table__cell--sm-100 {
      flex: 1 0 100% !important; } }

.table--bikmo-summary .table__cell .cell__title {
  margin-bottom: 10px;
  font-family: 'DIN Medium', sans-serif; }

@media (max-width: 767.98px) {
  .table--bikmo-summary .table__cell {
    margin-bottom: 24px; } }

.table--bikmo-options {
  margin-bottom: 32px;
  overflow-x: hidden; }
  .table--bikmo-options .table__row:first-child {
    border-bottom: 1px solid #dbdbdb; }
  .table--bikmo-options .table__cell {
    margin-bottom: 16px;
    position: relative; }
    .table--bikmo-options .table__cell .btn--amend-cover {
      width: 100%; }
    .table--bikmo-options .table__cell--100 {
      flex: 1 0 100% !important; }
    .table--bikmo-options .table__cell .cell__title {
      text-transform: uppercase;
      color: #808080;
      font-family: 'DIN Medium', sans-serif;
      font-size: 0.875rem;
      line-height: 1.2;
      margin-bottom: 8px; }
    .table--bikmo-options .table__cell .cell__body-text {
      line-height: 1.25rem; }
  @media (min-width: 768px) {
    .table--bikmo-options {
      margin-bottom: 4.75rem; }
      .table--bikmo-options .table__cell .cell__title {
        margin-bottom: 1rem; }
      .table--bikmo-options .table__cell .cell__body-text {
        font-size: 1rem;
        line-height: 1.25rem; } }

#toggleAmendCover .open-text {
  display: none; }

#amendCover {
  opacity: 0;
  overflow: hidden;
  max-height: 0;
  transition: all 0.2s ease; }

.extend-cover-visible #amendCover {
  opacity: 1;
  max-height: 310px;
  z-index: initial; }

.extend-cover-visible #toggleAmendCover .closed-text {
  display: none; }

.extend-cover-visible #toggleAmendCover .open-text {
  display: block; }

.quote-share-bar {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px; }
  @media (max-width: 767.98px) {
    .quote-share-bar__left {
      margin-bottom: 1.5rem; }
    .quote-share-bar__right {
      justify-content: space-between; } }
  .quote-share-bar__left h2 {
    margin: 0; }
  .quote-share-bar__right {
    display: flex;
    justify-content: space-between; }
    .quote-share-bar__right button:not(:first-child) {
      margin-left: 1rem; }
  @media (min-width: 768px) {
    .quote-share-bar {
      margin-bottom: 43px;
      flex-direction: row;
      justify-content: space-between;
      align-items: center; } }

.bikmo-quote-block {
  margin-bottom: 40px; }
  @media (min-width: 768px) {
    .bikmo-quote-block {
      margin-bottom: 84px; } }

.bikmo-quote-block__header .bikmo-quote-block__header__title {
  margin-bottom: 55px;
  margin-top: 0;
  text-align: center; }

.bikmo-quote-block__footer {
  font-size: 1.125rem;
  line-height: 200%;
  text-align: center;
  color: #1a1a1a;
  margin-top: 39px; }
  .bikmo-quote-block__footer a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: inherit;
    line-height: inherit;
    display: flex;
    justify-content: center;
    align-items: center; }
    .bikmo-quote-block__footer a .green_underline::after {
      height: 4px;
      bottom: 4px; }
    .bikmo-quote-block__footer a svg {
      margin-left: 8px; }
  .bikmo-quote-block__footer p {
    margin: 0; }

.bikmo-quote-block__nav {
  display: flex;
  justify-content: space-between;
  margin: 0;
  width: 100%; }
  .bikmo-quote-block__nav--2elements .bikmo-quote-block__nav__item {
    width: calc(50% - 4px); }
  .bikmo-quote-block__nav--3elements .bikmo-quote-block__nav__item {
    width: calc(33.3333% - 4px); }
  .bikmo-quote-block__nav .bikmo-quote-block__nav__item {
    padding: 25px 0 20px;
    box-sizing: border-box;
    background: #F7F7F7;
    text-align: center;
    color: rgba(26, 26, 26, 0.6);
    cursor: default; }
    .bikmo-quote-block__nav .bikmo-quote-block__nav__item.race-disabled {
      opacity: 1; }
    .bikmo-quote-block__nav .bikmo-quote-block__nav__item .bikmo-quote-block__nav__text {
      font-family: "Tungsten Condensed Bold", sans-serif;
      font-style: normal;
      text-transform: uppercase;
      font-size: 3rem;
      line-height: 73.5%;
      margin-bottom: 6px; }
    .bikmo-quote-block__nav .bikmo-quote-block__nav__item .bikmo-quote-block__nav__subtext {
      color: #808080; }
      @media (max-width: 767.98px) {
        .bikmo-quote-block__nav .bikmo-quote-block__nav__item .bikmo-quote-block__nav__subtext {
          font-size: 0.75rem; } }
    .bikmo-quote-block__nav .bikmo-quote-block__nav__item.bikmo-quote-block__nav__item--selected {
      position: relative;
      box-sizing: border-box;
      background-color: #fff;
      color: #1a1a1a;
      border-left: 1px solid #dbdbdb;
      border-right: 1px solid #dbdbdb;
      opacity: 1;
      box-shadow: 0 -5px 0px 0px #3cf1c6; }
      .bikmo-quote-block__nav .bikmo-quote-block__nav__item.bikmo-quote-block__nav__item--selected:after {
        content: '';
        width: 100%;
        position: absolute;
        left: 0;
        top: 100%;
        background-color: #fff;
        height: 5px;
        z-index: 5; }

.bikmo-quote-block__cards-head {
  display: none; }

.bikmo-quote-block__cards {
  background-color: #fff; }

.bikmo-quote-block__card {
  display: none;
  position: relative; }
  @media (max-width: 1439.98px) {
    .bikmo-quote-block__card--recommended {
      padding-top: 50px; } }
  .bikmo-quote-block__card .card--highlighted__tag {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 35px; }
    @media (min-width: 1440px) {
      .bikmo-quote-block__card .card--highlighted__tag {
        top: -13px; } }
  .bikmo-quote-block__card.race-disabled {
    opacity: 1; }
  @media (min-width: 1440px) {
    .bikmo-quote-block__card {
      background-color: #F7F7F7;
      border: none; } }
  .bikmo-quote-block__card .bikmo-quote-block__card__title {
    display: none; }
  .bikmo-quote-block__card .bikmo-quote-block__card__text {
    padding: 29px 22px 27px;
    text-align: center;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 120%;
    color: #808080; }
  .bikmo-quote-block__card .bikmo-quote-block__card__cost {
    padding: 0 22px 27px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    .bikmo-quote-block__card .bikmo-quote-block__card__cost .payment-term--selected {
      position: relative;
      display: inline-flex;
      font-size: 2.25rem;
      font-family: 'DIN Bold', sans-serif;
      margin: 0 auto 1rem; }
      .bikmo-quote-block__card .bikmo-quote-block__card__cost .payment-term--selected .badge--discount, .bikmo-quote-block__card .bikmo-quote-block__card__cost .payment-term--selected .field__box.discounted:after {
        font-size: 0.875rem;
        left: 100%;
        right: auto; }
    .bikmo-quote-block__card .bikmo-quote-block__card__cost .payment-term--not-selected {
      font-size: 1.125rem;
      font-family: 'DIN Medium', sans-serif; }
  .bikmo-quote-block__card .bikmo-quote-block__card__select-cover {
    text-align: center;
    padding: 0 22px 27px; }
  .bikmo-quote-block__card .bikmo-quote-block__load-more {
    text-align: center;
    box-sizing: border-box;
    padding-top: 27px;
    padding-bottom: 27px;
    color: #1a1a1a;
    opacity: 0.6;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 120%;
    cursor: pointer;
    text-transform: uppercase;
    border-top: 1px solid rgba(26, 26, 26, 0.1); }
  .bikmo-quote-block__card .bikmo-quote-block__card__table_head {
    padding: 0 16px;
    box-sizing: border-box;
    background-color: #f2f2f2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 0; }
    .bikmo-quote-block__card .bikmo-quote-block__card__table_head .bikmo-quote-block__benefit__name {
      color: #808080;
      font-weight: 500;
      font-size: 0.6875rem;
      line-height: 120%;
      text-transform: uppercase;
      padding-top: 10px;
      padding-bottom: 10px;
      border-right: 1px solid rgba(26, 26, 26, 0.1);
      padding-right: 8px; }
    .bikmo-quote-block__card .bikmo-quote-block__card__table_head .bikmo-quote-block__benefit__values {
      color: #808080;
      font-weight: 500;
      font-size: 0.6875rem;
      line-height: 120%;
      text-transform: uppercase;
      display: flex;
      justify-content: space-between;
      flex-basis: 20px; }
      .bikmo-quote-block__card .bikmo-quote-block__card__table_head .bikmo-quote-block__benefit__values .bikmo-quote-block__benefit__value {
        justify-content: center;
        text-align: center;
        padding-top: 10px;
        padding-bottom: 10px; }
        .bikmo-quote-block__card .bikmo-quote-block__card__table_head .bikmo-quote-block__benefit__values .bikmo-quote-block__benefit__value.bikmo-quote-block__benefit__value--first {
          border-right: 1px solid rgba(26, 26, 26, 0.1); }
  .bikmo-quote-block__card .bikmo-quote-block__card__cta {
    border-top: 1px solid #ff0080; }
    .bikmo-quote-block__card .bikmo-quote-block__card__cta .btn {
      width: 100%;
      padding-top: 17.5px;
      padding-bottom: 17.5px; }
  .bikmo-quote-block__card .bikmo-quote-block__card__benefits .bikmo-quote-block__benefits--hidden {
    display: none; }
  .bikmo-quote-block__card.bikmo-quote-block__card--active {
    display: block;
    border: 1px solid #dbdbdb; }
    @media (min-width: 1440px) {
      .bikmo-quote-block__card.bikmo-quote-block__card--active {
        background-color: #FFF;
        box-shadow: 0 -5px 0px 0px #3cf1c6; } }

.bikmo-quote-block__benefit {
  padding: 0 16px;
  box-sizing: border-box; }
  .bikmo-quote-block__benefit .bikmo-quote-block__benefit__inner {
    height: 53px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(26, 26, 26, 0.1); }
  .bikmo-quote-block__benefit .bikmo-quote-block__benefit__name {
    font-weight: 500;
    font-size: 1rem;
    line-height: 120%;
    color: #1a1a1a; }
  .bikmo-quote-block__benefit .bikmo-quote-block__benefit__value {
    font-weight: 500;
    font-size: 1rem;
    line-height: 120%;
    color: #1a1a1a;
    margin-right: 1rem; }
  .bikmo-quote-block__benefit.bikmo-quote-block__benefit--display_type_2 {
    padding-bottom: 0;
    padding-top: 0;
    padding-right: 0;
    align-items: stretch; }
    .bikmo-quote-block__benefit.bikmo-quote-block__benefit--display_type_2 .bikmo-quote-block__benefit__name {
      padding-top: 20px;
      padding-bottom: 20px;
      padding-right: 8px;
      border-right: 1px solid rgba(26, 26, 26, 0.1);
      font-weight: normal;
      font-size: 0.875rem;
      line-height: 120%; }
    .bikmo-quote-block__benefit.bikmo-quote-block__benefit--display_type_2 .bikmo-quote-block__benefit__values {
      display: flex;
      justify-content: space-between;
      min-height: 100%;
      align-items: stretch; }
      .bikmo-quote-block__benefit.bikmo-quote-block__benefit--display_type_2 .bikmo-quote-block__benefit__values .bikmo-quote-block__benefit__value {
        justify-content: center;
        text-align: center;
        padding-top: 20px;
        padding-bottom: 20px;
        font-weight: normal;
        font-size: 0.875rem;
        line-height: 120%;
        display: flex;
        align-items: center; }
        .bikmo-quote-block__benefit.bikmo-quote-block__benefit--display_type_2 .bikmo-quote-block__benefit__values .bikmo-quote-block__benefit__value.bikmo-quote-block__benefit__value--first {
          border-right: 1px solid rgba(26, 26, 26, 0.1); }

@media (min-width: 768px) {
  .bikmo-quote-block__card .bikmo-quote-block__card__table_head {
    padding: 0 24px; }
    .bikmo-quote-block__card .bikmo-quote-block__card__table_head .bikmo-quote-block__benefit__name {
      font-size: 0.875rem;
      line-height: 100%;
      padding-top: 13px;
      padding-bottom: 13px;
      padding-right: 8px; }
    .bikmo-quote-block__card .bikmo-quote-block__card__table_head .bikmo-quote-block__benefit__values {
      font-weight: 500;
      font-size: 0.875rem;
      line-height: 100%;
      display: flex;
      justify-content: space-between; }
      .bikmo-quote-block__card .bikmo-quote-block__card__table_head .bikmo-quote-block__benefit__values .bikmo-quote-block__benefit__value {
        padding-top: 13px;
        padding-bottom: 13px; }
        .bikmo-quote-block__card .bikmo-quote-block__card__table_head .bikmo-quote-block__benefit__values .bikmo-quote-block__benefit__value.bikmo-quote-block__benefit__value--first {
          border-right: 1px solid rgba(26, 26, 26, 0.1); }
  .bikmo-quote-block__card .bikmo-quote-block__card__text {
    padding: 32px 24px 31px; }
  .bikmo-quote-block__footer {
    display: flex;
    justify-content: center; }
    .bikmo-quote-block__footer p {
      margin-right: 12px; } }

@media (min-width: 1440px) {
  .bikmo-quote-block__header {
    display: none; }
  .bikmo-quote-block__nav {
    display: none; }
  .bikmo-quote-block__cards {
    display: flex;
    justify-content: space-between;
    background: transparent; }
    .bikmo-quote-block__cards--2elements .bikmo-quote-block__card {
      width: calc(50% - 16px); }
    .bikmo-quote-block__cards--3elements .bikmo-quote-block__card {
      width: calc(33.3333% - 16px); }
    .bikmo-quote-block__cards .bikmo-quote-block__card {
      display: block; }
      .bikmo-quote-block__cards .bikmo-quote-block__card .bikmo-quote-block__card__title {
        display: block;
        text-align: center;
        padding: 58px 30px 0;
        box-sizing: border-box; }
      .bikmo-quote-block__cards .bikmo-quote-block__card .bikmo-quote-block__card__name {
        font-size: 6rem;
        line-height: 73.5%;
        text-transform: uppercase;
        color: #1a1a1a;
        margin: 0; }
      .bikmo-quote-block__cards .bikmo-quote-block__card .bikmo-quote-block__card__icon img {
        display: block;
        height: 100%; }
      .bikmo-quote-block__cards .bikmo-quote-block__card .bikmo-quote-block__card__table_head {
        padding: 0; }
        .bikmo-quote-block__cards .bikmo-quote-block__card .bikmo-quote-block__card__table_head .bikmo-quote-block__benefit__values .bikmo-quote-block__benefit__value {
          padding-top: 13px;
          padding-bottom: 13px;
          letter-spacing: -0.02em;
          opacity: 0.5; } }

@media (min-width: 1920px) {
  .bikmo-quote-block__cards .bikmo-quote-block__card .bikmo-quote-block__card__name {
    font-size: 6rem;
    line-height: 73.5%; }
  .bikmo-quote-block__cards .bikmo-quote-block__card .bikmo-quote-block__card__text {
    padding: 38px 30px;
    height: 165px; }
  .bikmo-quote-block__cards .bikmo-quote-block__card .bikmo-quote-block__card__table_head .bikmo-quote-block__benefit__values .bikmo-quote-block__benefit__value {
    padding-top: 13px;
    padding-bottom: 13px;
    letter-spacing: -0.02em;
    opacity: 0.5; }
  .bikmo-quote-block__cards-head .bikmo-quote-block__cards-head__title {
    margin-top: 32px;
    margin-bottom: 0;
    height: 242px; }
  .bikmo-quote-block__cards-head .bikmo-quote-block__cards-head__table_head {
    padding: 0; }
    .bikmo-quote-block__cards-head .bikmo-quote-block__cards-head__table_head .bikmo-quote-block__benefit__name {
      font-weight: 500;
      font-size: 0.875rem;
      line-height: 100%;
      padding-top: 13px;
      padding-bottom: 13px; }
  .bikmo-quote-block__cards-head .bikmo-quote-block__load-more {
    font-size: 0.875rem;
    line-height: 100%;
    height: 54px; } }

.modal-open {
  overflow: hidden; }

.modal {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 24px;
  bottom: auto;
  width: 100%;
  max-width: 327px;
  z-index: 1000;
  display: none;
  outline: 0; }

.modal__dialog {
  position: relative;
  top: 24px;
  pointer-events: none; }
  .modal.fade .modal__dialog {
    transform: translate(0, -25%); }
  .modal.show .modal__dialog {
    transform: translate(0, 0); }

.modal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  border-top: 4px solid #3cf1c6;
  outline: 0; }

.modal__backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #202020; }
  .modal__backdrop.fade {
    opacity: 0; }
  .modal__backdrop.show {
    opacity: 0.5; }

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 53px;
  border-bottom: 0 solid transparent; }
  .modal__header .close {
    position: absolute;
    right: 0;
    top: 0;
    display: inline-block;
    padding: 24px;
    cursor: pointer; }

.modal__title {
  margin-bottom: 0; }

.modal__body {
  position: relative;
  text-align: center;
  flex: 1 1 auto;
  padding: 0 24px; }

.modal__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px; }
  .modal__footer > :not(:first-child) {
    margin-left: .25rem; }
  .modal__footer > :not(:last-child) {
    margin-right: .25rem; }

.modal__scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 768px) {
  .modal {
    max-width: 616px; }
  .modal__header {
    padding: 70px; }
  .modal__body {
    padding: 0 60px; }
  .modal__dialog {
    margin: auto auto; } }

@media (min-width: 992px) {
  .modal {
    max-width: 616px; } }

#formShareUrl {
  display: flex; }
  @media (min-width: 768px) {
    #formShareUrl button {
      flex: 0 0 110px; } }
  @media (min-width: 1920px) {
    #formShareUrl button {
      flex: 0 0 120px; } }

.modal-open .modal__backdrop {
  z-index: 995; }

.share-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-basis: 100%; }
  .share-links .share-links__item {
    margin-right: 36px;
    padding: 0;
    text-decoration: none;
    width: 24px; }
    .share-links .share-links__item:last-of-type {
      margin-right: 0; }
    .share-links .share-links__item svg {
      display: block;
      width: 100%;
      height: auto; }

@media (min-width: 768px) {
  .share-links {
    justify-content: flex-start; }
    .share-links .share-links__item {
      width: 34px;
      margin-right: 48px; } }

.cc-grower {
  z-index: 5;
  position: relative; }
/*# sourceMappingURL=main.css.map */
