@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
    margin-top: 0;
  }

  to {
    opacity: 0;
    margin-top: -64px;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    margin-top: -64px;
  }

  to {
    opacity: 1;
    margin-top: 0;
  }
}

.animated {
  animation-fill-mode: both;
  animation-duration: 350ms;
  animation-timing-function: cubic-bezier(.68, .01, 0, 1.01);
}

.animated.fadeIn {
  animation-name: fadeIn;
}

.animated.fadeOut {
  animation-name: fadeOut;
}

.animated.fadeInDown {
  animation-name: fadeInDown;
}

.animated.fadeOutUp {
  animation-name: fadeOutUp;
}

/* Typeface: GT Eesti */

@font-face {
  font-family: 'gt-eesti';
  src: url(https://cdn.blablacar.com/kairos/assets/build/fonts/GT-Eesti-Pro-Display-Regular.woff2) format('woff2'), url(https://cdn.blablacar.com/kairos/assets/build/fonts/GT-Eesti-Pro-Display-Regular.woff) format('woff'), url(https://cdn.blablacar.com/kairos/assets/build/fonts/GT-Eesti-Pro-Display-Regular.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'gt-eesti';
  src: url(https://cdn.blablacar.com/kairos/assets/build/fonts/GT-Eesti-Pro-Display-Medium.woff2) format('woff2'), url(https://cdn.blablacar.com/kairos/assets/build/fonts/GT-Eesti-Pro-Display-Medium.woff) format('woff'), url(https://cdn.blablacar.com/kairos/assets/build/fonts/GT-Eesti-Pro-Display-Medium.ttf) format('truetype');
  font-weight: 500;
  font-style: normal;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

/* stylelint-disable */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
button,
input,
option,
select,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
}

/* stylelint-enable */

body {
  line-height: 1;
  color: #054752;
}

ol,
ul {
  list-style: none;
}

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

a {
  color: #00AFF5;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-family: gt-eesti, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  quotes: '“' '”';
  /**
   * Prevent font scaling in landscape while allowing user zoom.
   * For details, see:
   *  - https://stackoverflow.com/questions/2710764/preserve-html-font-size-when-iphone-orientation-changes-from-portrait-to-landsca
   *  - https://jira.corp.blablacar.com/browse/BBC-5323
   */
  -webkit-text-size-adjust: 100%;
}

*,
*::after,
*::before {
  /* Apply a natural box layout model to all elements */
  box-sizing: border-box;
  /* Normalization for tailwindcss border utilities
  border-width: 0;
  border-style: solid;
  border-color: config('borderColors.default', currentColor); */
}

:lang(de) {
  quotes: '„' '“';
}

:lang(fr) {
  quotes: '« ' ' »';
}

:lang(es-ES) {
  quotes: '«' '»';
}

:lang(hu) {
  quotes: '„' '“';
}

:lang(pl) {
  quotes: '„' '“';
}

:lang(ru) {
  quotes: '« ' ' »';
}

/**
 * This injects all utility classes, based on branding.js config file.
 */

.bg-white {
  background-color: #fff !important;
}

.bg-gray {
  background-color: #ddd !important;
}

.bg-lightGray {
  background-color: #ededed !important;
}

.bg-midnightGreen {
  background-color: #054752 !important;
}

.bg-midnightGreenDetail {
  background-color: #3d5c62 !important;
}

.bg-lightMidnightGreen {
  background-color: #708c91 !important;
}

.bg-blue {
  background-color: #00aff5 !important;
}

.bg-darkBlue {
  background-color: #008fc1 !important;
}

.bg-green {
  background-color: #5dd167 !important;
}

.bg-orange {
  background-color: #f78b00 !important;
}

.bg-yellow {
  background-color: #ffca0c !important;
}

.bg-red {
  background-color: #f53f5b !important;
}

.bg-lightRed {
  background-color: #fdd8de !important;
}

.bg-facebookBrand {
  background-color: #4267b2 !important;
}

.bg-vkBrand {
  background-color: #4680c2 !important;
}

.bg-tapHighlight {
  background-color: rgba(221, 221, 221, .4) !important;
}

.hover\:bg-white:hover {
  background-color: #fff !important;
}

.hover\:bg-gray:hover {
  background-color: #ddd !important;
}

.hover\:bg-lightGray:hover {
  background-color: #ededed !important;
}

.hover\:bg-midnightGreen:hover {
  background-color: #054752 !important;
}

.hover\:bg-midnightGreenDetail:hover {
  background-color: #3d5c62 !important;
}

.hover\:bg-lightMidnightGreen:hover {
  background-color: #708c91 !important;
}

.hover\:bg-blue:hover {
  background-color: #00aff5 !important;
}

.hover\:bg-darkBlue:hover {
  background-color: #008fc1 !important;
}

.hover\:bg-green:hover {
  background-color: #5dd167 !important;
}

.hover\:bg-orange:hover {
  background-color: #f78b00 !important;
}

.hover\:bg-yellow:hover {
  background-color: #ffca0c !important;
}

.hover\:bg-red:hover {
  background-color: #f53f5b !important;
}

.hover\:bg-lightRed:hover {
  background-color: #fdd8de !important;
}

.hover\:bg-facebookBrand:hover {
  background-color: #4267b2 !important;
}

.hover\:bg-vkBrand:hover {
  background-color: #4680c2 !important;
}

.hover\:bg-tapHighlight:hover {
  background-color: rgba(221, 221, 221, .4) !important;
}

.focus\:bg-white:focus {
  background-color: #fff !important;
}

.focus\:bg-gray:focus {
  background-color: #ddd !important;
}

.focus\:bg-lightGray:focus {
  background-color: #ededed !important;
}

.focus\:bg-midnightGreen:focus {
  background-color: #054752 !important;
}

.focus\:bg-midnightGreenDetail:focus {
  background-color: #3d5c62 !important;
}

.focus\:bg-lightMidnightGreen:focus {
  background-color: #708c91 !important;
}

.focus\:bg-blue:focus {
  background-color: #00aff5 !important;
}

.focus\:bg-darkBlue:focus {
  background-color: #008fc1 !important;
}

.focus\:bg-green:focus {
  background-color: #5dd167 !important;
}

.focus\:bg-orange:focus {
  background-color: #f78b00 !important;
}

.focus\:bg-yellow:focus {
  background-color: #ffca0c !important;
}

.focus\:bg-red:focus {
  background-color: #f53f5b !important;
}

.focus\:bg-lightRed:focus {
  background-color: #fdd8de !important;
}

.focus\:bg-facebookBrand:focus {
  background-color: #4267b2 !important;
}

.focus\:bg-vkBrand:focus {
  background-color: #4680c2 !important;
}

.focus\:bg-tapHighlight:focus {
  background-color: rgba(221, 221, 221, .4) !important;
}

.border-collapse {
  border-collapse: collapse !important;
}

.border-separate {
  border-collapse: separate !important;
}

.border-transparent {
  border-color: transparent !important;
}

.border-black {
  border-color: #22292f !important;
}

.border-grey-darkest {
  border-color: #3d4852 !important;
}

.border-grey-darker {
  border-color: #606f7b !important;
}

.border-grey-dark {
  border-color: #8795a1 !important;
}

.border-grey {
  border-color: #b8c2cc !important;
}

.border-grey-light {
  border-color: #dae1e7 !important;
}

.border-grey-lighter {
  border-color: #f1f5f8 !important;
}

.border-grey-lightest {
  border-color: #f8fafc !important;
}

.border-white {
  border-color: #fff !important;
}

.border-red-darkest {
  border-color: #3b0d0c !important;
}

.border-red-darker {
  border-color: #621b18 !important;
}

.border-red-dark {
  border-color: #cc1f1a !important;
}

.border-red {
  border-color: #e3342f !important;
}

.border-red-light {
  border-color: #ef5753 !important;
}

.border-red-lighter {
  border-color: #f9acaa !important;
}

.border-red-lightest {
  border-color: #fcebea !important;
}

.border-orange-darkest {
  border-color: #462a16 !important;
}

.border-orange-darker {
  border-color: #613b1f !important;
}

.border-orange-dark {
  border-color: #de751f !important;
}

.border-orange {
  border-color: #f6993f !important;
}

.border-orange-light {
  border-color: #faad63 !important;
}

.border-orange-lighter {
  border-color: #fcd9b6 !important;
}

.border-orange-lightest {
  border-color: #fff5eb !important;
}

.border-yellow-darkest {
  border-color: #453411 !important;
}

.border-yellow-darker {
  border-color: #684f1d !important;
}

.border-yellow-dark {
  border-color: #f2d024 !important;
}

.border-yellow {
  border-color: #ffed4a !important;
}

.border-yellow-light {
  border-color: #fff382 !important;
}

.border-yellow-lighter {
  border-color: #fff9c2 !important;
}

.border-yellow-lightest {
  border-color: #fcfbeb !important;
}

.border-green-darkest {
  border-color: #0f2f21 !important;
}

.border-green-darker {
  border-color: #1a4731 !important;
}

.border-green-dark {
  border-color: #1f9d55 !important;
}

.border-green {
  border-color: #38c172 !important;
}

.border-green-light {
  border-color: #51d88a !important;
}

.border-green-lighter {
  border-color: #a2f5bf !important;
}

.border-green-lightest {
  border-color: #e3fcec !important;
}

.border-teal-darkest {
  border-color: #0d3331 !important;
}

.border-teal-darker {
  border-color: #20504f !important;
}

.border-teal-dark {
  border-color: #38a89d !important;
}

.border-teal {
  border-color: #4dc0b5 !important;
}

.border-teal-light {
  border-color: #64d5ca !important;
}

.border-teal-lighter {
  border-color: #a0f0ed !important;
}

.border-teal-lightest {
  border-color: #e8fffe !important;
}

.border-blue-darkest {
  border-color: #12283a !important;
}

.border-blue-darker {
  border-color: #1c3d5a !important;
}

.border-blue-dark {
  border-color: #2779bd !important;
}

.border-blue {
  border-color: #3490dc !important;
}

.border-blue-light {
  border-color: #6cb2eb !important;
}

.border-blue-lighter {
  border-color: #bcdefa !important;
}

.border-blue-lightest {
  border-color: #eff8ff !important;
}

.border-indigo-darkest {
  border-color: #191e38 !important;
}

.border-indigo-darker {
  border-color: #2f365f !important;
}

.border-indigo-dark {
  border-color: #5661b3 !important;
}

.border-indigo {
  border-color: #6574cd !important;
}

.border-indigo-light {
  border-color: #7886d7 !important;
}

.border-indigo-lighter {
  border-color: #b2b7ff !important;
}

.border-indigo-lightest {
  border-color: #e6e8ff !important;
}

.border-purple-darkest {
  border-color: #21183c !important;
}

.border-purple-darker {
  border-color: #382b5f !important;
}

.border-purple-dark {
  border-color: #794acf !important;
}

.border-purple {
  border-color: #9561e2 !important;
}

.border-purple-light {
  border-color: #a779e9 !important;
}

.border-purple-lighter {
  border-color: #d6bbfc !important;
}

.border-purple-lightest {
  border-color: #f3ebff !important;
}

.border-pink-darkest {
  border-color: #451225 !important;
}

.border-pink-darker {
  border-color: #6f213f !important;
}

.border-pink-dark {
  border-color: #eb5286 !important;
}

.border-pink {
  border-color: #f66d9b !important;
}

.border-pink-light {
  border-color: #fa7ea8 !important;
}

.border-pink-lighter {
  border-color: #ffbbca !important;
}

.border-pink-lightest {
  border-color: #ffebef !important;
}

.border-solid {
  border-style: solid !important;
}

.border-dashed {
  border-style: dashed !important;
}

.border-dotted {
  border-style: dotted !important;
}

.border-none {
  border-style: none !important;
}

.border-0 {
  border-width: 0 !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-8 {
  border-width: 8px !important;
}

.border {
  border-width: 1px !important;
}

.border-t-0 {
  border-top-width: 0 !important;
}

.border-r-0 {
  border-right-width: 0 !important;
}

.border-b-0 {
  border-bottom-width: 0 !important;
}

.border-l-0 {
  border-left-width: 0 !important;
}

.border-t-2 {
  border-top-width: 2px !important;
}

.border-r-2 {
  border-right-width: 2px !important;
}

.border-b-2 {
  border-bottom-width: 2px !important;
}

.border-l-2 {
  border-left-width: 2px !important;
}

.border-t-4 {
  border-top-width: 4px !important;
}

.border-r-4 {
  border-right-width: 4px !important;
}

.border-b-4 {
  border-bottom-width: 4px !important;
}

.border-l-4 {
  border-left-width: 4px !important;
}

.border-t-8 {
  border-top-width: 8px !important;
}

.border-r-8 {
  border-right-width: 8px !important;
}

.border-b-8 {
  border-bottom-width: 8px !important;
}

.border-l-8 {
  border-left-width: 8px !important;
}

.border-t {
  border-top-width: 1px !important;
}

.border-r {
  border-right-width: 1px !important;
}

.border-b {
  border-bottom-width: 1px !important;
}

.border-l {
  border-left-width: 1px !important;
}

.block {
  display: block !important;
}

.inline-block {
  display: inline-block !important;
}

.inline {
  display: inline !important;
}

.table {
  display: table !important;
}

.table-row {
  display: table-row !important;
}

.table-cell {
  display: table-cell !important;
}

.hidden {
  display: none !important;
}

.flex {
  display: flex !important;
}

.inline-flex {
  display: inline-flex !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-col {
  flex-direction: column !important;
}

.flex-col-reverse {
  flex-direction: column-reverse !important;
}

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

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-no-wrap {
  flex-wrap: nowrap !important;
}

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

.items-end {
  align-items: flex-end !important;
}

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

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

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

.self-auto {
  align-self: auto !important;
}

.self-start {
  align-self: flex-start !important;
}

.self-end {
  align-self: flex-end !important;
}

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

.self-stretch {
  align-self: stretch !important;
}

.justify-start {
  justify-content: flex-start !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.justify-around {
  justify-content: space-around !important;
}

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

.content-start {
  align-content: flex-start !important;
}

.content-end {
  align-content: flex-end !important;
}

.content-between {
  align-content: space-between !important;
}

.content-around {
  align-content: space-around !important;
}

.flex-1 {
  flex: 1 1 0% !important;
}

.flex-auto {
  flex: 1 1 auto !important;
}

.flex-initial {
  flex: 0 1 auto !important;
}

.flex-none {
  flex: none !important;
}

.flex-grow {
  flex-grow: 1 !important;
}

.flex-shrink {
  flex-shrink: 1 !important;
}

.flex-no-grow {
  flex-grow: 0 !important;
}

.flex-no-shrink {
  flex-shrink: 0 !important;
}

.h-auto {
  height: auto !important;
}

.h-full {
  height: 100% !important;
}

.h-screen {
  height: 100vh !important;
}

.leading-s {
  line-height: 16px !important;
}

.leading-base {
  line-height: 20px !important;
}

.leading-m {
  line-height: 20px !important;
}

.leading-l {
  line-height: 24px !important;
}

.leading-xl {
  line-height: 1.06 !important;
}

.m-none {
  margin: 0 !important;
}

.m-s {
  margin: 4px !important;
}

.m-m {
  margin: 8px !important;
}

.m-l {
  margin: 16px !important;
}

.m-xl {
  margin: 24px !important;
}

.m-xxl {
  margin: 48px !important;
}

.my-none {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mx-none {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-s {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.mx-s {
  margin-left: 4px !important;
  margin-right: 4px !important;
}

.my-m {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.mx-m {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.my-l {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.mx-l {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.my-xl {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.mx-xl {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

.my-xxl {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.mx-xxl {
  margin-left: 48px !important;
  margin-right: 48px !important;
}

.mt-none {
  margin-top: 0 !important;
}

.mr-none {
  margin-right: 0 !important;
}

.mb-none {
  margin-bottom: 0 !important;
}

.ml-none {
  margin-left: 0 !important;
}

.mt-s {
  margin-top: 4px !important;
}

.mr-s {
  margin-right: 4px !important;
}

.mb-s {
  margin-bottom: 4px !important;
}

.ml-s {
  margin-left: 4px !important;
}

.mt-m {
  margin-top: 8px !important;
}

.mr-m {
  margin-right: 8px !important;
}

.mb-m {
  margin-bottom: 8px !important;
}

.ml-m {
  margin-left: 8px !important;
}

.mt-l {
  margin-top: 16px !important;
}

.mr-l {
  margin-right: 16px !important;
}

.mb-l {
  margin-bottom: 16px !important;
}

.ml-l {
  margin-left: 16px !important;
}

.mt-xl {
  margin-top: 24px !important;
}

.mr-xl {
  margin-right: 24px !important;
}

.mb-xl {
  margin-bottom: 24px !important;
}

.ml-xl {
  margin-left: 24px !important;
}

.mt-xxl {
  margin-top: 48px !important;
}

.mr-xxl {
  margin-right: 48px !important;
}

.mb-xxl {
  margin-bottom: 48px !important;
}

.ml-xxl {
  margin-left: 48px !important;
}

.-m-none {
  margin: 0 !important;
}

.-m-s {
  margin: -4px !important;
}

.-m-m {
  margin: -8px !important;
}

.-m-l {
  margin: -16px !important;
}

.-m-xl {
  margin: -24px !important;
}

.-m-xxl {
  margin: -48px !important;
}

.-my-none {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.-mx-none {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.-my-s {
  margin-top: -4px !important;
  margin-bottom: -4px !important;
}

.-mx-s {
  margin-left: -4px !important;
  margin-right: -4px !important;
}

.-my-m {
  margin-top: -8px !important;
  margin-bottom: -8px !important;
}

.-mx-m {
  margin-left: -8px !important;
  margin-right: -8px !important;
}

.-my-l {
  margin-top: -16px !important;
  margin-bottom: -16px !important;
}

.-mx-l {
  margin-left: -16px !important;
  margin-right: -16px !important;
}

.-my-xl {
  margin-top: -24px !important;
  margin-bottom: -24px !important;
}

.-mx-xl {
  margin-left: -24px !important;
  margin-right: -24px !important;
}

.-my-xxl {
  margin-top: -48px !important;
  margin-bottom: -48px !important;
}

.-mx-xxl {
  margin-left: -48px !important;
  margin-right: -48px !important;
}

.-mt-none {
  margin-top: 0 !important;
}

.-mr-none {
  margin-right: 0 !important;
}

.-mb-none {
  margin-bottom: 0 !important;
}

.-ml-none {
  margin-left: 0 !important;
}

.-mt-s {
  margin-top: -4px !important;
}

.-mr-s {
  margin-right: -4px !important;
}

.-mb-s {
  margin-bottom: -4px !important;
}

.-ml-s {
  margin-left: -4px !important;
}

.-mt-m {
  margin-top: -8px !important;
}

.-mr-m {
  margin-right: -8px !important;
}

.-mb-m {
  margin-bottom: -8px !important;
}

.-ml-m {
  margin-left: -8px !important;
}

.-mt-l {
  margin-top: -16px !important;
}

.-mr-l {
  margin-right: -16px !important;
}

.-mb-l {
  margin-bottom: -16px !important;
}

.-ml-l {
  margin-left: -16px !important;
}

.-mt-xl {
  margin-top: -24px !important;
}

.-mr-xl {
  margin-right: -24px !important;
}

.-mb-xl {
  margin-bottom: -24px !important;
}

.-ml-xl {
  margin-left: -24px !important;
}

.-mt-xxl {
  margin-top: -48px !important;
}

.-mr-xxl {
  margin-right: -48px !important;
}

.-mb-xxl {
  margin-bottom: -48px !important;
}

.-ml-xxl {
  margin-left: -48px !important;
}

.outline-none {
  outline: 0 !important;
}

.focus\:outline-none:focus {
  outline: 0 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

.overflow-y-scroll {
  overflow-y: scroll !important;
}

.scrolling-touch {
  -webkit-overflow-scrolling: touch !important;
}

.scrolling-auto {
  -webkit-overflow-scrolling: auto !important;
}

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

.p-s {
  padding: 4px !important;
}

.p-m {
  padding: 8px !important;
}

.p-l {
  padding: 16px !important;
}

.p-xl {
  padding: 24px !important;
}

.p-xxl {
  padding: 48px !important;
}

.py-none {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.px-none {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-s {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.px-s {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.py-m {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.px-m {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.py-l {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.px-l {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.py-xl {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.px-xl {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.py-xxl {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.px-xxl {
  padding-left: 48px !important;
  padding-right: 48px !important;
}

.pt-none {
  padding-top: 0 !important;
}

.pr-none {
  padding-right: 0 !important;
}

.pb-none {
  padding-bottom: 0 !important;
}

.pl-none {
  padding-left: 0 !important;
}

.pt-s {
  padding-top: 4px !important;
}

.pr-s {
  padding-right: 4px !important;
}

.pb-s {
  padding-bottom: 4px !important;
}

.pl-s {
  padding-left: 4px !important;
}

.pt-m {
  padding-top: 8px !important;
}

.pr-m {
  padding-right: 8px !important;
}

.pb-m {
  padding-bottom: 8px !important;
}

.pl-m {
  padding-left: 8px !important;
}

.pt-l {
  padding-top: 16px !important;
}

.pr-l {
  padding-right: 16px !important;
}

.pb-l {
  padding-bottom: 16px !important;
}

.pl-l {
  padding-left: 16px !important;
}

.pt-xl {
  padding-top: 24px !important;
}

.pr-xl {
  padding-right: 24px !important;
}

.pb-xl {
  padding-bottom: 24px !important;
}

.pl-xl {
  padding-left: 24px !important;
}

.pt-xxl {
  padding-top: 48px !important;
}

.pr-xxl {
  padding-right: 48px !important;
}

.pb-xxl {
  padding-bottom: 48px !important;
}

.pl-xxl {
  padding-left: 48px !important;
}

.static {
  position: static !important;
}

.fixed {
  position: fixed !important;
}

.absolute {
  position: absolute !important;
}

.relative {
  position: relative !important;
}

.sticky {
  position: sticky !important;
}

.pin-none {
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
}

.pin {
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
}

.pin-y {
  top: 0 !important;
  bottom: 0 !important;
}

.pin-x {
  right: 0 !important;
  left: 0 !important;
}

.pin-t {
  top: 0 !important;
}

.pin-r {
  right: 0 !important;
}

.pin-b {
  bottom: 0 !important;
}

.pin-l {
  left: 0 !important;
}

.table-auto {
  table-layout: auto !important;
}

.table-fixed {
  table-layout: fixed !important;
}

.text-left {
  text-align: left !important;
}

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

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

.text-justify {
  text-align: justify !important;
}

.text-white {
  color: #fff !important;
}

.text-gray {
  color: #ddd !important;
}

.text-lightGray {
  color: #ededed !important;
}

.text-midnightGreen {
  color: #054752 !important;
}

.text-midnightGreenDetail {
  color: #3d5c62 !important;
}

.text-lightMidnightGreen {
  color: #708c91 !important;
}

.text-blue {
  color: #00aff5 !important;
}

.text-darkBlue {
  color: #008fc1 !important;
}

.text-green {
  color: #5dd167 !important;
}

.text-orange {
  color: #f78b00 !important;
}

.text-yellow {
  color: #ffca0c !important;
}

.text-red {
  color: #f53f5b !important;
}

.text-lightRed {
  color: #fdd8de !important;
}

.text-facebookBrand {
  color: #4267b2 !important;
}

.text-vkBrand {
  color: #4680c2 !important;
}

.text-tapHighlight {
  color: rgba(221, 221, 221, .4) !important;
}

.text-s {
  font-size: 13px !important;
}

.text-base {
  font-size: 16px !important;
}

.text-m {
  font-size: 18px !important;
}

.text-l {
  font-size: 22px !important;
}

.text-xl {
  font-size: 30px !important;
}

.text-xxl {
  font-size: 82px !important;
}

.italic {
  font-style: italic !important;
}

.roman {
  font-style: normal !important;
}

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

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

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

.normal-case {
  text-transform: none !important;
}

.underline {
  text-decoration: underline !important;
}

.line-through {
  text-decoration: line-through !important;
}

.no-underline {
  text-decoration: none !important;
}

.antialiased {
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

.subpixel-antialiased {
  -webkit-font-smoothing: auto !important;
  -moz-osx-font-smoothing: auto !important;
}

.whitespace-normal {
  white-space: normal !important;
}

.whitespace-no-wrap {
  white-space: nowrap !important;
}

.whitespace-pre {
  white-space: pre !important;
}

.whitespace-pre-line {
  white-space: pre-line !important;
}

.whitespace-pre-wrap {
  white-space: pre-wrap !important;
}

.break-words {
  word-wrap: break-word !important;
}

.break-normal {
  word-wrap: normal !important;
}

.truncate {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.w-auto {
  width: auto !important;
}

.w-full {
  width: 100% !important;
}

/**
 * This "small screen only" utility makes the container to have full pageHeight
 * (minus the topBar height). This is used on Login flow to make sure submit button
 * keeps is bottom position between transitions.
 */

.small-only\:heightMax {
  min-height: calc(100vh - 56px);
}

.u-heightMax {
  min-height: calc(100vh - 56px);
}

.u-noScrollY {
  overflow-y: hidden;
}

.u-noScrollX {
  overflow-x: hidden;
}

.u-transitionTop {
  transition: top 250ms ease-in-out;
}

@media (min-width: 800px) {
  .u-heightMax {
    min-height: calc(100vh - 72px);
  }
}

/**
 * OTHER HELPERS
*/

.u-noTransition span {
  /* stylelint-disable-next-line */
  transition: none !important;
}

.u-separator-top {
  border-top: 1px solid #DDD;
}

.u-separator-bottom {
  border-bottom: 1px solid #DDD;
}

.mainContent {
  display: block; /* fix IE11 issue */
  padding-top: 56px;
}

.sticky-bottom {
  /* stylelint-disable declaration-block-no-duplicate-properties */
  position: -webkit-sticky;
  position: sticky;
  /* stylelint-enable */
  flex: 1 100%;
  bottom: 0;
  background: #FFF;
}

@media (min-width: 800px) {
  .mainContent {
    padding-top: 72px;
  }

  .small-only\:heightMax {
    min-height: auto;
  }
}

/* Overriding howtank z-index set to '999999' */

/* stylelint-disable selector-max-id, declaration-no-important  */

#ht_container {
  z-index: 10 !important;
}

#ht_container.ht_opened {
  z-index: 90 !important;
}

/* stylelint-enable */

/**
 * pre-position for HowTank button in case of script failure
 */

@media (max-width: 800px) {
  /* stylelint-disable */

  #ht_container.ht_bubble {
    bottom: 24px !important;
    right: auto !important;
    left: 24px !important;
  }/* stylelint-enable */
}

/**
 * Polyfill for :focus-visible behavior
 * The FocusVisibleProvider add focus-visible className on body
 * when keyboard navigation is used.
 * DEPRECATED:
 * The global selector body.focus-visible should be removed
 * Each component should use the FocusVisibleContext
 */

body:not(.focus-visible) :focus {
  outline: none;
}

/* Remove TopBar sticky behavior */

body.topbar-disable-sticky .topBar {
  position: relative;
}

body.topbar-disable-sticky .mainContent {
  padding-top: 0;
}

body.topbar-disable-border .topBar {
  border-bottom-color: #FFF;
}

/* stylelint-disable declaration-block-no-duplicate-properties, selector-max-id  */

html,
body,
#root {
  height: 100vh;
  height: -webkit-fill-available;
  height: stretch;
}

.mainContent {
  box-sizing: content-box;
  height: calc(100vh - 56px);
  height: -webkit-fill-available;
  height: stretch;
}

@media (min-width: 800px) {
  .mainContent {
    height: calc(100vh - 72px);
    height: -webkit-fill-available;
    height: stretch;
  }
}

/* stylelint-enable */

@media (min-width: 800px) {
  .large\:bg-white {
    background-color: #fff !important;
  }

  .large\:bg-gray {
    background-color: #ddd !important;
  }

  .large\:bg-lightGray {
    background-color: #ededed !important;
  }

  .large\:bg-midnightGreen {
    background-color: #054752 !important;
  }

  .large\:bg-midnightGreenDetail {
    background-color: #3d5c62 !important;
  }

  .large\:bg-lightMidnightGreen {
    background-color: #708c91 !important;
  }

  .large\:bg-blue {
    background-color: #00aff5 !important;
  }

  .large\:bg-darkBlue {
    background-color: #008fc1 !important;
  }

  .large\:bg-green {
    background-color: #5dd167 !important;
  }

  .large\:bg-orange {
    background-color: #f78b00 !important;
  }

  .large\:bg-yellow {
    background-color: #ffca0c !important;
  }

  .large\:bg-red {
    background-color: #f53f5b !important;
  }

  .large\:bg-lightRed {
    background-color: #fdd8de !important;
  }

  .large\:bg-facebookBrand {
    background-color: #4267b2 !important;
  }

  .large\:bg-vkBrand {
    background-color: #4680c2 !important;
  }

  .large\:bg-tapHighlight {
    background-color: rgba(221, 221, 221, .4) !important;
  }

  .large\:hover\:bg-white:hover {
    background-color: #fff !important;
  }

  .large\:hover\:bg-gray:hover {
    background-color: #ddd !important;
  }

  .large\:hover\:bg-lightGray:hover {
    background-color: #ededed !important;
  }

  .large\:hover\:bg-midnightGreen:hover {
    background-color: #054752 !important;
  }

  .large\:hover\:bg-midnightGreenDetail:hover {
    background-color: #3d5c62 !important;
  }

  .large\:hover\:bg-lightMidnightGreen:hover {
    background-color: #708c91 !important;
  }

  .large\:hover\:bg-blue:hover {
    background-color: #00aff5 !important;
  }

  .large\:hover\:bg-darkBlue:hover {
    background-color: #008fc1 !important;
  }

  .large\:hover\:bg-green:hover {
    background-color: #5dd167 !important;
  }

  .large\:hover\:bg-orange:hover {
    background-color: #f78b00 !important;
  }

  .large\:hover\:bg-yellow:hover {
    background-color: #ffca0c !important;
  }

  .large\:hover\:bg-red:hover {
    background-color: #f53f5b !important;
  }

  .large\:hover\:bg-lightRed:hover {
    background-color: #fdd8de !important;
  }

  .large\:hover\:bg-facebookBrand:hover {
    background-color: #4267b2 !important;
  }

  .large\:hover\:bg-vkBrand:hover {
    background-color: #4680c2 !important;
  }

  .large\:hover\:bg-tapHighlight:hover {
    background-color: rgba(221, 221, 221, .4) !important;
  }

  .large\:focus\:bg-white:focus {
    background-color: #fff !important;
  }

  .large\:focus\:bg-gray:focus {
    background-color: #ddd !important;
  }

  .large\:focus\:bg-lightGray:focus {
    background-color: #ededed !important;
  }

  .large\:focus\:bg-midnightGreen:focus {
    background-color: #054752 !important;
  }

  .large\:focus\:bg-midnightGreenDetail:focus {
    background-color: #3d5c62 !important;
  }

  .large\:focus\:bg-lightMidnightGreen:focus {
    background-color: #708c91 !important;
  }

  .large\:focus\:bg-blue:focus {
    background-color: #00aff5 !important;
  }

  .large\:focus\:bg-darkBlue:focus {
    background-color: #008fc1 !important;
  }

  .large\:focus\:bg-green:focus {
    background-color: #5dd167 !important;
  }

  .large\:focus\:bg-orange:focus {
    background-color: #f78b00 !important;
  }

  .large\:focus\:bg-yellow:focus {
    background-color: #ffca0c !important;
  }

  .large\:focus\:bg-red:focus {
    background-color: #f53f5b !important;
  }

  .large\:focus\:bg-lightRed:focus {
    background-color: #fdd8de !important;
  }

  .large\:focus\:bg-facebookBrand:focus {
    background-color: #4267b2 !important;
  }

  .large\:focus\:bg-vkBrand:focus {
    background-color: #4680c2 !important;
  }

  .large\:focus\:bg-tapHighlight:focus {
    background-color: rgba(221, 221, 221, .4) !important;
  }

  .large\:block {
    display: block !important;
  }

  .large\:inline-block {
    display: inline-block !important;
  }

  .large\:inline {
    display: inline !important;
  }

  .large\:table {
    display: table !important;
  }

  .large\:table-row {
    display: table-row !important;
  }

  .large\:table-cell {
    display: table-cell !important;
  }

  .large\:hidden {
    display: none !important;
  }

  .large\:flex {
    display: flex !important;
  }

  .large\:inline-flex {
    display: inline-flex !important;
  }

  .large\:flex-row {
    flex-direction: row !important;
  }

  .large\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }

  .large\:flex-col {
    flex-direction: column !important;
  }

  .large\:flex-col-reverse {
    flex-direction: column-reverse !important;
  }

  .large\:flex-wrap {
    flex-wrap: wrap !important;
  }

  .large\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .large\:flex-no-wrap {
    flex-wrap: nowrap !important;
  }

  .large\:items-start {
    align-items: flex-start !important;
  }

  .large\:items-end {
    align-items: flex-end !important;
  }

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

  .large\:items-baseline {
    align-items: baseline !important;
  }

  .large\:items-stretch {
    align-items: stretch !important;
  }

  .large\:self-auto {
    align-self: auto !important;
  }

  .large\:self-start {
    align-self: flex-start !important;
  }

  .large\:self-end {
    align-self: flex-end !important;
  }

  .large\:self-center {
    align-self: center !important;
  }

  .large\:self-stretch {
    align-self: stretch !important;
  }

  .large\:justify-start {
    justify-content: flex-start !important;
  }

  .large\:justify-end {
    justify-content: flex-end !important;
  }

  .large\:justify-center {
    justify-content: center !important;
  }

  .large\:justify-between {
    justify-content: space-between !important;
  }

  .large\:justify-around {
    justify-content: space-around !important;
  }

  .large\:content-center {
    align-content: center !important;
  }

  .large\:content-start {
    align-content: flex-start !important;
  }

  .large\:content-end {
    align-content: flex-end !important;
  }

  .large\:content-between {
    align-content: space-between !important;
  }

  .large\:content-around {
    align-content: space-around !important;
  }

  .large\:flex-1 {
    flex: 1 1 0% !important;
  }

  .large\:flex-auto {
    flex: 1 1 auto !important;
  }

  .large\:flex-initial {
    flex: 0 1 auto !important;
  }

  .large\:flex-none {
    flex: none !important;
  }

  .large\:flex-grow {
    flex-grow: 1 !important;
  }

  .large\:flex-shrink {
    flex-shrink: 1 !important;
  }

  .large\:flex-no-grow {
    flex-grow: 0 !important;
  }

  .large\:flex-no-shrink {
    flex-shrink: 0 !important;
  }

  .large\:h-auto {
    height: auto !important;
  }

  .large\:h-full {
    height: 100% !important;
  }

  .large\:h-screen {
    height: 100vh !important;
  }

  .large\:leading-s {
    line-height: 16px !important;
  }

  .large\:leading-base {
    line-height: 20px !important;
  }

  .large\:leading-m {
    line-height: 20px !important;
  }

  .large\:leading-l {
    line-height: 24px !important;
  }

  .large\:leading-xl {
    line-height: 1.06 !important;
  }

  .large\:m-none {
    margin: 0 !important;
  }

  .large\:m-s {
    margin: 4px !important;
  }

  .large\:m-m {
    margin: 8px !important;
  }

  .large\:m-l {
    margin: 16px !important;
  }

  .large\:m-xl {
    margin: 24px !important;
  }

  .large\:m-xxl {
    margin: 48px !important;
  }

  .large\:my-none {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .large\:mx-none {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .large\:my-s {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  .large\:mx-s {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }

  .large\:my-m {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .large\:mx-m {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }

  .large\:my-l {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  .large\:mx-l {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }

  .large\:my-xl {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  .large\:mx-xl {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }

  .large\:my-xxl {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }

  .large\:mx-xxl {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }

  .large\:mt-none {
    margin-top: 0 !important;
  }

  .large\:mr-none {
    margin-right: 0 !important;
  }

  .large\:mb-none {
    margin-bottom: 0 !important;
  }

  .large\:ml-none {
    margin-left: 0 !important;
  }

  .large\:mt-s {
    margin-top: 4px !important;
  }

  .large\:mr-s {
    margin-right: 4px !important;
  }

  .large\:mb-s {
    margin-bottom: 4px !important;
  }

  .large\:ml-s {
    margin-left: 4px !important;
  }

  .large\:mt-m {
    margin-top: 8px !important;
  }

  .large\:mr-m {
    margin-right: 8px !important;
  }

  .large\:mb-m {
    margin-bottom: 8px !important;
  }

  .large\:ml-m {
    margin-left: 8px !important;
  }

  .large\:mt-l {
    margin-top: 16px !important;
  }

  .large\:mr-l {
    margin-right: 16px !important;
  }

  .large\:mb-l {
    margin-bottom: 16px !important;
  }

  .large\:ml-l {
    margin-left: 16px !important;
  }

  .large\:mt-xl {
    margin-top: 24px !important;
  }

  .large\:mr-xl {
    margin-right: 24px !important;
  }

  .large\:mb-xl {
    margin-bottom: 24px !important;
  }

  .large\:ml-xl {
    margin-left: 24px !important;
  }

  .large\:mt-xxl {
    margin-top: 48px !important;
  }

  .large\:mr-xxl {
    margin-right: 48px !important;
  }

  .large\:mb-xxl {
    margin-bottom: 48px !important;
  }

  .large\:ml-xxl {
    margin-left: 48px !important;
  }

  .large\:-m-none {
    margin: 0 !important;
  }

  .large\:-m-s {
    margin: -4px !important;
  }

  .large\:-m-m {
    margin: -8px !important;
  }

  .large\:-m-l {
    margin: -16px !important;
  }

  .large\:-m-xl {
    margin: -24px !important;
  }

  .large\:-m-xxl {
    margin: -48px !important;
  }

  .large\:-my-none {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .large\:-mx-none {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .large\:-my-s {
    margin-top: -4px !important;
    margin-bottom: -4px !important;
  }

  .large\:-mx-s {
    margin-left: -4px !important;
    margin-right: -4px !important;
  }

  .large\:-my-m {
    margin-top: -8px !important;
    margin-bottom: -8px !important;
  }

  .large\:-mx-m {
    margin-left: -8px !important;
    margin-right: -8px !important;
  }

  .large\:-my-l {
    margin-top: -16px !important;
    margin-bottom: -16px !important;
  }

  .large\:-mx-l {
    margin-left: -16px !important;
    margin-right: -16px !important;
  }

  .large\:-my-xl {
    margin-top: -24px !important;
    margin-bottom: -24px !important;
  }

  .large\:-mx-xl {
    margin-left: -24px !important;
    margin-right: -24px !important;
  }

  .large\:-my-xxl {
    margin-top: -48px !important;
    margin-bottom: -48px !important;
  }

  .large\:-mx-xxl {
    margin-left: -48px !important;
    margin-right: -48px !important;
  }

  .large\:-mt-none {
    margin-top: 0 !important;
  }

  .large\:-mr-none {
    margin-right: 0 !important;
  }

  .large\:-mb-none {
    margin-bottom: 0 !important;
  }

  .large\:-ml-none {
    margin-left: 0 !important;
  }

  .large\:-mt-s {
    margin-top: -4px !important;
  }

  .large\:-mr-s {
    margin-right: -4px !important;
  }

  .large\:-mb-s {
    margin-bottom: -4px !important;
  }

  .large\:-ml-s {
    margin-left: -4px !important;
  }

  .large\:-mt-m {
    margin-top: -8px !important;
  }

  .large\:-mr-m {
    margin-right: -8px !important;
  }

  .large\:-mb-m {
    margin-bottom: -8px !important;
  }

  .large\:-ml-m {
    margin-left: -8px !important;
  }

  .large\:-mt-l {
    margin-top: -16px !important;
  }

  .large\:-mr-l {
    margin-right: -16px !important;
  }

  .large\:-mb-l {
    margin-bottom: -16px !important;
  }

  .large\:-ml-l {
    margin-left: -16px !important;
  }

  .large\:-mt-xl {
    margin-top: -24px !important;
  }

  .large\:-mr-xl {
    margin-right: -24px !important;
  }

  .large\:-mb-xl {
    margin-bottom: -24px !important;
  }

  .large\:-ml-xl {
    margin-left: -24px !important;
  }

  .large\:-mt-xxl {
    margin-top: -48px !important;
  }

  .large\:-mr-xxl {
    margin-right: -48px !important;
  }

  .large\:-mb-xxl {
    margin-bottom: -48px !important;
  }

  .large\:-ml-xxl {
    margin-left: -48px !important;
  }

  .large\:overflow-auto {
    overflow: auto !important;
  }

  .large\:overflow-hidden {
    overflow: hidden !important;
  }

  .large\:overflow-visible {
    overflow: visible !important;
  }

  .large\:overflow-scroll {
    overflow: scroll !important;
  }

  .large\:overflow-x-auto {
    overflow-x: auto !important;
  }

  .large\:overflow-y-auto {
    overflow-y: auto !important;
  }

  .large\:overflow-x-hidden {
    overflow-x: hidden !important;
  }

  .large\:overflow-y-hidden {
    overflow-y: hidden !important;
  }

  .large\:overflow-x-visible {
    overflow-x: visible !important;
  }

  .large\:overflow-y-visible {
    overflow-y: visible !important;
  }

  .large\:overflow-x-scroll {
    overflow-x: scroll !important;
  }

  .large\:overflow-y-scroll {
    overflow-y: scroll !important;
  }

  .large\:scrolling-touch {
    -webkit-overflow-scrolling: touch !important;
  }

  .large\:scrolling-auto {
    -webkit-overflow-scrolling: auto !important;
  }

  .large\:p-none {
    padding: 0 !important;
  }

  .large\:p-s {
    padding: 4px !important;
  }

  .large\:p-m {
    padding: 8px !important;
  }

  .large\:p-l {
    padding: 16px !important;
  }

  .large\:p-xl {
    padding: 24px !important;
  }

  .large\:p-xxl {
    padding: 48px !important;
  }

  .large\:py-none {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .large\:px-none {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .large\:py-s {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  .large\:px-s {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  .large\:py-m {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .large\:px-m {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .large\:py-l {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  .large\:px-l {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .large\:py-xl {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .large\:px-xl {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .large\:py-xxl {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .large\:px-xxl {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }

  .large\:pt-none {
    padding-top: 0 !important;
  }

  .large\:pr-none {
    padding-right: 0 !important;
  }

  .large\:pb-none {
    padding-bottom: 0 !important;
  }

  .large\:pl-none {
    padding-left: 0 !important;
  }

  .large\:pt-s {
    padding-top: 4px !important;
  }

  .large\:pr-s {
    padding-right: 4px !important;
  }

  .large\:pb-s {
    padding-bottom: 4px !important;
  }

  .large\:pl-s {
    padding-left: 4px !important;
  }

  .large\:pt-m {
    padding-top: 8px !important;
  }

  .large\:pr-m {
    padding-right: 8px !important;
  }

  .large\:pb-m {
    padding-bottom: 8px !important;
  }

  .large\:pl-m {
    padding-left: 8px !important;
  }

  .large\:pt-l {
    padding-top: 16px !important;
  }

  .large\:pr-l {
    padding-right: 16px !important;
  }

  .large\:pb-l {
    padding-bottom: 16px !important;
  }

  .large\:pl-l {
    padding-left: 16px !important;
  }

  .large\:pt-xl {
    padding-top: 24px !important;
  }

  .large\:pr-xl {
    padding-right: 24px !important;
  }

  .large\:pb-xl {
    padding-bottom: 24px !important;
  }

  .large\:pl-xl {
    padding-left: 24px !important;
  }

  .large\:pt-xxl {
    padding-top: 48px !important;
  }

  .large\:pr-xxl {
    padding-right: 48px !important;
  }

  .large\:pb-xxl {
    padding-bottom: 48px !important;
  }

  .large\:pl-xxl {
    padding-left: 48px !important;
  }

  .large\:static {
    position: static !important;
  }

  .large\:fixed {
    position: fixed !important;
  }

  .large\:absolute {
    position: absolute !important;
  }

  .large\:relative {
    position: relative !important;
  }

  .large\:sticky {
    position: sticky !important;
  }

  .large\:pin-none {
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .large\:pin {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
  }

  .large\:pin-y {
    top: 0 !important;
    bottom: 0 !important;
  }

  .large\:pin-x {
    right: 0 !important;
    left: 0 !important;
  }

  .large\:pin-t {
    top: 0 !important;
  }

  .large\:pin-r {
    right: 0 !important;
  }

  .large\:pin-b {
    bottom: 0 !important;
  }

  .large\:pin-l {
    left: 0 !important;
  }

  .large\:table-auto {
    table-layout: auto !important;
  }

  .large\:table-fixed {
    table-layout: fixed !important;
  }

  .large\:text-left {
    text-align: left !important;
  }

  .large\:text-center {
    text-align: center !important;
  }

  .large\:text-right {
    text-align: right !important;
  }

  .large\:text-justify {
    text-align: justify !important;
  }

  .large\:text-white {
    color: #fff !important;
  }

  .large\:text-gray {
    color: #ddd !important;
  }

  .large\:text-lightGray {
    color: #ededed !important;
  }

  .large\:text-midnightGreen {
    color: #054752 !important;
  }

  .large\:text-midnightGreenDetail {
    color: #3d5c62 !important;
  }

  .large\:text-lightMidnightGreen {
    color: #708c91 !important;
  }

  .large\:text-blue {
    color: #00aff5 !important;
  }

  .large\:text-darkBlue {
    color: #008fc1 !important;
  }

  .large\:text-green {
    color: #5dd167 !important;
  }

  .large\:text-orange {
    color: #f78b00 !important;
  }

  .large\:text-yellow {
    color: #ffca0c !important;
  }

  .large\:text-red {
    color: #f53f5b !important;
  }

  .large\:text-lightRed {
    color: #fdd8de !important;
  }

  .large\:text-facebookBrand {
    color: #4267b2 !important;
  }

  .large\:text-vkBrand {
    color: #4680c2 !important;
  }

  .large\:text-tapHighlight {
    color: rgba(221, 221, 221, .4) !important;
  }

  .large\:text-s {
    font-size: 13px !important;
  }

  .large\:text-base {
    font-size: 16px !important;
  }

  .large\:text-m {
    font-size: 18px !important;
  }

  .large\:text-l {
    font-size: 22px !important;
  }

  .large\:text-xl {
    font-size: 30px !important;
  }

  .large\:text-xxl {
    font-size: 82px !important;
  }

  .large\:italic {
    font-style: italic !important;
  }

  .large\:roman {
    font-style: normal !important;
  }

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

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

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

  .large\:normal-case {
    text-transform: none !important;
  }

  .large\:underline {
    text-decoration: underline !important;
  }

  .large\:line-through {
    text-decoration: line-through !important;
  }

  .large\:no-underline {
    text-decoration: none !important;
  }

  .large\:antialiased {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .large\:subpixel-antialiased {
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .large\:w-auto {
    width: auto !important;
  }

  .large\:w-full {
    width: 100% !important;
  }
}

.CookieBanner {
  z-index: 30;
  border-top: 1px solid #DDD;
}

.button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 96px; /* prevents height collapsing with flexbox */
}

.button-wrapper--arrowRight {
  align-items: flex-end;
}

.button-wrapper--fixed {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
}

.button-wrapper--arrowRight.button-wrapper--fixed {
  left: auto;
}

.button-wrapper--absolute {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.button-wrapper--arrowRight.button-wrapper--absolute {
  left: auto;
}

@media (min-width: 800px) {
  .button-wrapper--sticky {
    position: sticky;
    bottom: -1px; /* allows IntersectionObserver to fire */
    right: 0;
    left: 0;
  }

  .button-wrapper--sticky.stuck {
    background-color: #FFF;
    border-top: 1px solid #DDD;
  }
}

.home-block-img {
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 136px;
  max-height: 136px;
}

.home-block {
  margin: 0 -24px;
}

.home-block-text {
  margin: 0 24px;
}

.home-block-img--bis {
  background-position: 50% 10%;
}

/* Target element to override kirk in dev mode */

a.home-more,
button.home-more {
  display: inline-block;
  padding: 0;
  cursor: pointer;
}

/* Double classname because of CSS weight */

.home-axis.home-axis {
  background-color: #FFF;
  border-radius: 4px;
}

@media (min-width: 800px) {
  .home-block {
    margin: 0 auto;
  }

  .home-block-img {
    min-height: 320px;
    border-radius: 4px;
  }

  .home-block-text {
    margin: 0 auto;
    align-self: center;
  }/* Target element to override kirk in dev mode */

  a.home-more,
  button.home-more {
    position: absolute;
    top: 36px;
    right: 24px;
  }

  .home-blog-img {
    display: block;
    border-radius: 4px;
    width: 100%;
    height: 300px; /* expected size is 300x300 */
    object-fit: cover;
  }

  .home-3-columns {
    display: flex;
    flex-flow: row wrap;
    align-items: baseline;
  }

  .home-3-columns li {
    display: block;
    flex: 1;
  }

  .home-3-columns .home-column {
    min-width: calc(33% - 48px);
  }

  .home-3-columns .home-column:nth-child(3n + 2) {
    margin: 0 48px;
  }
}

.phoneField-wrapper,
.select-wrapper {
  border-radius: 16px;
  overflow: hidden;
  padding-left: 8px;
}

.select-wrapper {
  min-height: 54px; /* TODO: Create a select component into the library */
}

.select-wrapper select {
  width: 100%;
}

.phoneField-wrapper input {
  /* stylelint-disable */
  padding-left: 2px !important; /* TODO: Create component to display select+input *//* stylelint-enable */
}

.phoneField-wrapper .selectField optgroup {
  max-width: 80px; /* on Firefox the width of the optgroup title affects that of the select */
}

.selectField {
  outline: none;
  color: #054752;
}

.pro-home-main-form .kirk-textField .kirk-error-message {
  padding: 0;
}

.pro-home-main-img::before,
.pro-home-testimony::after {
  content: ' ';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.pro-home-testimony::after {
  z-index: 2;
}

.pro-home-main-img::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, .4) 72%, rgba(0, 0, 0, .2) 85%, rgba(0, 0, 0, 0) 100%);
}

.pro-home-main-img {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.pro-home-main-text {
  z-index: 3;
  padding: 24px;
  bottom: -48px;
}

.pro-home-main .pro-home-main-text .pro-home-main-title,
.pro-home-main .pro-home-main-text .pro-home-main-subtitle {
  text-shadow: 0 4px 16px rgba(0, 0, 0, .45);
}

.pro-home-main .pro-home-main-text .pro-home-main-title span {
  font-size: 44px;
  line-height: 48px;
}

.pro-home-main .pro-home-main-text .pro-home-main-subtitle {
  margin-bottom: 48px;
  font-size: 22px;
  line-height: 24px;
}

.pro-home-main-text .phone-text {
  font-size: 18px;
}

.pro-home-main-text .phone-text span {
  font-weight: 500;
}

.pro-home-error-message {
  color: #FFF;
  background: #F53F5B;
  border-radius: 8px;
}

.home-pro-how-to img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.pro-home-testimony-img {
  height: 20vh;
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: -24px;
  margin-right: -24px;
}

.pro-home-testimony-content {
  z-index: 3;
  margin-top: -124px;
  padding-bottom: 48px;
  border-bottom: 1px solid #DDD;
}

.pro-home-testimony-content img {
  width: 56px;
}

.pro-home-testimony-content p {
  font-size: 30px;
  line-height: 1.06;
  font-weight: 500;
}

@media (min-width: 800px) {
  .pro-home-main-text {
    min-height: 75vh;
    bottom: 0;
  }

  .pro-home-main .pro-home-main-text .pro-home-main-title {
    margin-top: 96px;
  }

  .pro-home-main .pro-home-main-text .pro-home-main-title span {
    font-size: 60px;
    line-height: 1.06;
  }

  .pro-home-main-form {
    max-width: 662px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 48px;
  }

  .home-2-columns {
    display: flex;
    flex-wrap: wrap;
  }

  .home-2-columns .home-column {
    display: flex;
    width: 50%;
  }

  .home-2-columns .home-column-content {
    display: flex;
    flex-direction: column;
  }

  .home-2-columns .home-column:nth-child(odd) {
    padding-right: 24px;
  }

  .home-2-columns .home-column:nth-child(even) {
    padding-left: 24px;
  }

  .pro-home-testimony::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, .4) 72%, rgba(0, 0, 0, .2) 85%, rgba(0, 0, 0, 0) 100%);
  }

  .pro-home-testimony-img {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    left: 0;
    margin-left: auto;
  }

  .pro-home-testimony-content {
    width: 50%;
    margin-top: 0;
    border-bottom: none;
  }

  .pro-home-testimony-content p {
    text-shadow: 0 4px 16px rgba(0, 0, 0, .45);
  }
}

.footer {
  margin-top: 24px;
  padding-top: 24px;
  background-color: #EDEDED;
}

.footer-actions {
  padding: 24px 0;
  text-align: center;
}

.footer-nav {
  column-count: 1;
}

.footer-social {
  flex: 1;
  text-align: center;
}

.footer-social li {
  display: inline-block;
}

.footer-baseline {
  padding: 16px 0;
  background-color: #DDD;
}

@media (min-width: 800px) {
  .footer-actions {
    display: flex;
    text-align: left;
  }

  .footer-nav {
    column-count: 3;
    flex: 3;
  }

  .footer-social {
    text-align: left;
  }

  .footer-copyright {
    display: flex;
  }

  .footer-copyright-text {
    flex: 1;
  }
}

.langSwitcher {
  max-width: 340px;
  margin: 0 auto;
  position: relative;
}
.langSwitcher::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  content: '';
  height: 46px;
  border: solid 1px #DDD;
  background-color: #FFF;
  border-radius: 4px;
}
.langSwitcher::before {
  position: absolute;
  right: 16px;
  top: 22px;
  z-index: 1;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 4px 0 4px;
  border-color: #00AFF5 transparent transparent transparent;
}
.langSwitcher > select {
  width: 100%;
  height: 48px;
  font-size: 16px;
  color: #054752;
  border-radius: 4px;
  box-shadow: none;
  padding: 18px 8px 0;
  position: relative;
  z-index: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
}
.langSwitcher label {
  position: absolute;
  top: 0;
  left: 0;
  right: 45px;
  z-index: 1;
}
.langSwitcher label span {
  position: absolute;
  top: 8px;
  left: 9px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  color: #708C91;
  cursor: text;
  pointer-events: none;
}

.ui-paragraph {
  display: flex;
  flex-direction: column;
}

.ui-paragraph .kirk-button {
  align-self: flex-end;
}

.ui-paragraph--bigger-line-breaks br {
  margin-bottom: 1em;
}

.infinite-scroll {
  overflow-y: scroll;
  margin-bottom: 70px;
}

body.topbar-disable-sticky .tabs-sticky {
  top: 0;
}

body.topbar-disable-sticky .tabs-sticky--withRequestRecap {
  top: 90px;
}

body.topbar-disable-sticky .requestRecap--sticky {
  top: 0;
}

.requestRecap-container {
  top: -90px;
  height: 90px;
  padding-top: 16px;
  z-index: 5;
  /* stylelint-disable declaration-block-no-duplicate-properties */
  position: -webkit-sticky;
  position: sticky;
  /* stylelint-enable */
  display: flex;
}

.requestRecap--sticky {
  top: 56px;
}

.filtersBar {
  padding: 16px 24px;
  border-top: 1px solid #DDD;
  bottom: 0;
  left: 0;
  right: 0;
  color: #708C91;
  background-color: #FFF;
  z-index: 3;
  line-height: 20px;
}

.filtersBar--empty {
  visibility: hidden;
}

.tripsList {
  padding-bottom: 150px;
}

.tripsList .tripsList-title {
  padding: 24px 0 16px;
  background-color: #FFF;
  font-size: 22px;
  line-height: 24px;
  /** BBCSPA-3368 Make the sticky date larger so that the trip card box shadow is not visible next to it **/
  padding-left: 16px;
  margin-left: -16px;
  padding-right: 16px;
  margin-right: -16px;
}

.tripsList-sticky {
  /* stylelint-disable declaration-block-no-duplicate-properties */
  position: -webkit-sticky;
  position: sticky;
  /* stylelint-enable */
  top: 56px;
  z-index: 2;
}

.seoLinks {
  border-top: 1px solid #DDD;
  margin-top: 24px;
}

.resultsLoaderContainer {
  display: flex;
  justify-content: center;
}

.resultsLoaderContainer--noTrip {
  flex-grow: 2;
  align-items: center;
}

.infinteScrollReloadButton {
  margin: 16px auto 24px;
}

/**
 * The .kirk-tabs class is needed to override the position:relative coming
 * from the kirk component.
 */

.kirk-tabs.tabs-sticky {
  background: #FFF;
  /* stylelint-disable declaration-block-no-duplicate-properties */
  position: -webkit-sticky;
  position: sticky;
  /* stylelint-enable */
  top: 56px;
  z-index: 4;
}

@media (min-width: 800px) {
  .filtersBar {
    padding: 0;
    border-top: 0;
    margin-bottom: 12px;
  }

  .tripsList {
    padding-bottom: 50px;
  }

  .tripsList-sticky {
    top: 72px;
  }

  .requestRecap-container {
    top: 72px;
    height: 76px;
    padding-top: 0;
    padding-bottom: 0;
    justify-content: flex-start;
  }

  .kirk-tabs.tabs-sticky {
    top: 148px;
  }
}

.tripsList .tripsList-title::first-letter {
  text-transform: uppercase;
}

.animated-picto {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
}

.animated-picto > * {
  position: absolute;
  top: 0;
  left: 0;
}

.animated-picto--large {
  display: block;
  width: auto;
  height: auto;
}

.animated-picto--large > * {
  position: static;
}

.animated-picto--with-placeholder.animated-picto--loaded > *:first-child {
  display: none;
}

.grid {
  display: flex;
}

.grid > div {
  flex: 1;
}

.grid-gap-l > div {
  margin-right: 48px;
  margin-left: 48px;
}

.grid-gap-xl > div {
  margin-right: 64px;
  margin-left: 64px;
}

.grid > div:first-of-type {
  margin-left: 0;
}

.grid > div:last-of-type {
  margin-right: 0;
}

@supports (display: grid) {
  .grid {
    display: grid;
  }

  .grid > div {
    margin-right: 0;
    margin-left: 0;
  }

  .grid-col-2 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-col-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid-col-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .grid-gap-l {
    grid-gap: 48px;
  }

  .grid-gap-xl {
    grid-gap: 64px;
  }

  .grid-hgap-l {
    grid-gap: 0 48px;
  }

  .grid-hgap-xl {
    grid-gap: 0 64px;
  }
}

@media (min-width: 800px) {
  .large\:grid {
    display: flex;
  }

  .large\:grid > div {
    flex: 1;
  }

  .large\:grid-gap-l > div {
    margin-right: 48px;
    margin-left: 48px;
  }

  .large\:grid-gap-xl > div {
    margin-right: 64px;
    margin-left: 64px;
  }

  .large\:grid > div:first-of-type {
    margin-left: 0;
  }

  .large\:grid > div:last-of-type {
    margin-right: 0;
  }

  @supports (display: grid) {
    .large\:grid {
      display: grid;
    }

    .large\:grid-col-2 {
      grid-template-columns: 1fr 1fr;
    }

    .large\:grid-col-3 {
      grid-template-columns: 1fr 1fr 1fr;
    }

    .large\:grid-col-4 {
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .large\:grid-gap-l {
      grid-gap: 48px;
    }

    .large\:grid-gap-xl {
      grid-gap: 64px;
    }

    .large\:grid-hgap-l {
      grid-gap: 0 48px;
    }

    .large\:grid-hgap-xl {
      grid-gap: 0 64px;
    }

    .large\:grid-gap-l > div,
    .large\:grid-gap-xl > div {
      margin-right: 0;
      margin-left: 0;
    }
  }
}

.reviews-container {
  /* fix elements disappearance on Chrome with non-retina screens  */
  transform: translateZ(0);
}

.drawer.drawer.drawer {
  z-index: 50;
}

.drawer.drawer.drawer--open::after {
  content: none;
}

.drawer--open {
  visibility: visible;
  transition-delay: 0;
}

.drawer--close {
  visibility: hidden; /* Hiding the drawer when closed, otherwise on mac/ios we can scroll top off screen and see it */
  transition-delay: 300ms;
  transition-property: visibility;
}

.drawer .innerDrawer.innerDrawer {
  top: 56px;
  bottom: 0;
}

.dimmer {
  visibility: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  transition: opacity 350ms cubic-bezier(.455, .03, .515, .955);
}

.dimmer--active {
  visibility: visible;
  z-index: 40;
  opacity: .07;
  transition: opacity 350ms cubic-bezier(.455, .03, .515, .955);
}

/**
* RESPONSIVE
*/

@media (min-width: 800px) {
  .drawer.drawer.drawer {
    left: 50%;
    right: auto;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 1280px;
    position: fixed;
    transform: translate(-50%, 0);
  }

  .drawer.drawer .innerDrawer {
    top: 72px;
    left: auto;
    right: auto;
    width: [object Object];
    float: right;
    position: relative;
  }

  .drawer.drawer--close .innerDrawer.innerDrawer {
    transform: translateY(-100vh);
  }
}

.topBar {
  top: 0;
  height: 56px;
  z-index: 60;
}

.topBar-inner {
  display: flex;
  width: 100%;
  margin: auto;
  font-weight: 500;
}

.topBar--hidden {
  top: -56px;
}

.topBar-username {
  color: #054752;
}

header.topBar .topBar-avatar {
  border: 1px solid #DDD;
  min-width: 48px;
}

/* TODO move to ui-library */

header.topBar .hamburger-badge {
  position: relative;
  top: 7px;
  left: -17px;
}

.mainContent--topBarHidden {
  padding-top: 8px;
}

@media (min-width: 800px) {
  .topBar {
    height: 72px;
  }

  .topBar-inner {
    width: 1280px;
  }

  .topBar-inner div:nth-child(3n) {
    /* don't force the full text navigation links to grow on large media */
    flex: none;
  }
}

.user-menu {
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}

.user-menu-item.user-menu-item {
  padding-left: 24px;
  padding-right: 24px;
}


/*# sourceMappingURL=main-b116ce21eec6e2f14c87.map*/