@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,700");
.rc-slider {
  position: relative;
  height: 14px;
  padding: 5px 0;
  width: 100%;
  border-radius: 6px;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent; }

.rc-slider * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent; }

.rc-slider-rail {
  position: absolute;
  width: 100%;
  background-color: #e9e9e9;
  height: 4px; }

.rc-slider-track {
  position: absolute;
  left: 0;
  height: 4px;
  border-radius: 6px;
  background-color: #abe2fb; }

.rc-slider-handle {
  position: absolute;
  margin-left: -7px;
  margin-top: -5px;
  width: 14px;
  height: 14px;
  cursor: pointer;
  border-radius: 50%;
  border: solid 2px #96dbfa;
  background-color: #fff; }

.rc-slider-handle:hover {
  border-color: #57c5f7; }

.rc-slider-handle-active:active {
  border-color: #57c5f7;
  box-shadow: 0 0 5px #57c5f7; }

.rc-slider-mark {
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  font-size: 12px; }

.rc-slider-mark-text {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  color: #999; }

.rc-slider-mark-text-active {
  color: #666; }

.rc-slider-step {
  position: absolute;
  width: 100%;
  height: 4px;
  background: transparent; }

.rc-slider-dot {
  position: absolute;
  bottom: -2px;
  margin-left: -4px;
  width: 8px;
  height: 8px;
  border: 2px solid #e9e9e9;
  background-color: #fff;
  cursor: pointer;
  border-radius: 50%;
  vertical-align: middle; }

.rc-slider-dot:first-child {
  margin-left: -4px; }

.rc-slider-dot:last-child {
  margin-left: -4px; }

.rc-slider-dot-active {
  border-color: #96dbfa; }

.rc-slider-disabled {
  background-color: #e9e9e9; }

.rc-slider-disabled .rc-slider-track {
  background-color: #ccc; }

.rc-slider-disabled .rc-slider-handle,
.rc-slider-disabled .rc-slider-dot {
  border-color: #ccc;
  background-color: #fff;
  cursor: not-allowed; }

.rc-slider-disabled .rc-slider-mark-text,
.rc-slider-disabled .rc-slider-dot {
  cursor: not-allowed !important; }

.rc-slider-vertical {
  width: 14px;
  height: 100%;
  padding: 0 5px; }

.rc-slider-vertical .rc-slider-rail {
  height: 100%;
  width: 4px; }

.rc-slider-vertical .rc-slider-track {
  left: 5px;
  bottom: 0;
  width: 4px; }

.rc-slider-vertical .rc-slider-handle {
  margin-left: -5px;
  margin-bottom: -7px; }

.rc-slider-vertical .rc-slider-mark {
  top: 0;
  left: 18px;
  height: 100%; }

.rc-slider-vertical .rc-slider-step {
  height: 100%;
  width: 4px; }

.rc-slider-vertical .rc-slider-dot {
  left: 2px;
  margin-bottom: -4px; }

.rc-slider-vertical .rc-slider-dot:first-child {
  margin-bottom: -4px; }

.rc-slider-vertical .rc-slider-dot:last-child {
  margin-bottom: -4px; }

.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: block !important;
  -webkit-animation-play-state: paused;
  animation-play-state: paused; }

.rc-slider-tooltip-zoom-down-leave {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: block !important;
  -webkit-animation-play-state: paused;
  animation-play-state: paused; }

.rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active,
.rc-slider-tooltip-zoom-down-appear.rc-slider-tooltip-zoom-down-appear-active {
  -webkit-animation-name: rcSliderTooltipZoomDownIn;
  animation-name: rcSliderTooltipZoomDownIn;
  -webkit-animation-play-state: running;
  animation-play-state: running; }

.rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active {
  -webkit-animation-name: rcSliderTooltipZoomDownOut;
  animation-name: rcSliderTooltipZoomDownOut;
  -webkit-animation-play-state: running;
  animation-play-state: running; }

.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1); }

.rc-slider-tooltip-zoom-down-leave {
  -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); }

@-webkit-keyframes rcSliderTooltipZoomDownIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0); }
  100% {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1); } }

@keyframes rcSliderTooltipZoomDownIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0); }
  100% {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1); } }

@-webkit-keyframes rcSliderTooltipZoomDownOut {
  0% {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1); }
  100% {
    opacity: 0;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0); } }

@keyframes rcSliderTooltipZoomDownOut {
  0% {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1); }
  100% {
    opacity: 0;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0); } }

.rc-slider-tooltip {
  position: absolute;
  left: -9999px;
  top: -9999px;
  visibility: visible;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent; }

.rc-slider-tooltip * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent; }

.rc-slider-tooltip-hidden {
  display: none; }

.rc-slider-tooltip-placement-top {
  padding: 4px 0 8px 0; }

.rc-slider-tooltip-inner {
  padding: 6px 2px;
  min-width: 24px;
  height: 24px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #6c6c6c;
  border-radius: 6px;
  box-shadow: 0 0 4px #d9d9d9; }

.rc-slider-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.rc-slider-tooltip-placement-top .rc-slider-tooltip-arrow {
  bottom: 4px;
  left: 50%;
  margin-left: -4px;
  border-width: 4px 4px 0;
  border-top-color: #6c6c6c; }

* {
  box-sizing: border-box; }

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

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857;
  color: #333333;
  background-color: #fff; }

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

a {
  color: #337ab7;
  text-decoration: none; }
  a:hover, a:focus {
    color: #23527c;
    text-decoration: underline; }
  a:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }

figure {
  margin: 0; }

img {
  vertical-align: middle; }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 6px; }

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto; }

.img-circle {
  border-radius: 50%; }

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

[role="button"] {
  cursor: pointer; }

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

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

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

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

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

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

td,
th {
  padding: 0; }

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }
  .container:before, .container:after {
    display: table;
    content: " "; }
  .container:after {
    clear: both; }
  @media (min-width: 768px) {
    .container {
      width: 750px; } }
  @media (min-width: 992px) {
    .container {
      width: 970px; } }
  @media (min-width: 1200px) {
    .container {
      width: 1170px; } }

.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }
  .container-fluid:before, .container-fluid:after {
    display: table;
    content: " "; }
  .container-fluid:after {
    clear: both; }

.row {
  margin-right: -15px;
  margin-left: -15px; }
  .row:before, .row:after {
    display: table;
    content: " "; }
  .row:after {
    clear: both; }

.row-no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .row-no-gutters [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

.col-xs-1 {
  width: 8.33333%; }

.col-xs-2 {
  width: 16.66667%; }

.col-xs-3 {
  width: 25%; }

.col-xs-4 {
  width: 33.33333%; }

.col-xs-5 {
  width: 41.66667%; }

.col-xs-6 {
  width: 50%; }

.col-xs-7 {
  width: 58.33333%; }

.col-xs-8 {
  width: 66.66667%; }

.col-xs-9 {
  width: 75%; }

.col-xs-10 {
  width: 83.33333%; }

.col-xs-11 {
  width: 91.66667%; }

.col-xs-12 {
  width: 100%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-pull-1 {
  right: 8.33333%; }

.col-xs-pull-2 {
  right: 16.66667%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-4 {
  right: 33.33333%; }

.col-xs-pull-5 {
  right: 41.66667%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-7 {
  right: 58.33333%; }

.col-xs-pull-8 {
  right: 66.66667%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-10 {
  right: 83.33333%; }

.col-xs-pull-11 {
  right: 91.66667%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-push-1 {
  left: 8.33333%; }

.col-xs-push-2 {
  left: 16.66667%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-4 {
  left: 33.33333%; }

.col-xs-push-5 {
  left: 41.66667%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-7 {
  left: 58.33333%; }

.col-xs-push-8 {
  left: 66.66667%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-10 {
  left: 83.33333%; }

.col-xs-push-11 {
  left: 91.66667%; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-offset-0 {
  margin-left: 0%; }

.col-xs-offset-1 {
  margin-left: 8.33333%; }

.col-xs-offset-2 {
  margin-left: 16.66667%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-4 {
  margin-left: 33.33333%; }

.col-xs-offset-5 {
  margin-left: 41.66667%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-7 {
  margin-left: 58.33333%; }

.col-xs-offset-8 {
  margin-left: 66.66667%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-10 {
  margin-left: 83.33333%; }

.col-xs-offset-11 {
  margin-left: 91.66667%; }

.col-xs-offset-12 {
  margin-left: 100%; }

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }
  .col-sm-1 {
    width: 8.33333%; }
  .col-sm-2 {
    width: 16.66667%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-4 {
    width: 33.33333%; }
  .col-sm-5 {
    width: 41.66667%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-7 {
    width: 58.33333%; }
  .col-sm-8 {
    width: 66.66667%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-10 {
    width: 83.33333%; }
  .col-sm-11 {
    width: 91.66667%; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-pull-1 {
    right: 8.33333%; }
  .col-sm-pull-2 {
    right: 16.66667%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-4 {
    right: 33.33333%; }
  .col-sm-pull-5 {
    right: 41.66667%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-7 {
    right: 58.33333%; }
  .col-sm-pull-8 {
    right: 66.66667%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-10 {
    right: 83.33333%; }
  .col-sm-pull-11 {
    right: 91.66667%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-push-1 {
    left: 8.33333%; }
  .col-sm-push-2 {
    left: 16.66667%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-4 {
    left: 33.33333%; }
  .col-sm-push-5 {
    left: 41.66667%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-7 {
    left: 58.33333%; }
  .col-sm-push-8 {
    left: 66.66667%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-10 {
    left: 83.33333%; }
  .col-sm-push-11 {
    left: 91.66667%; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-offset-0 {
    margin-left: 0%; }
  .col-sm-offset-1 {
    margin-left: 8.33333%; }
  .col-sm-offset-2 {
    margin-left: 16.66667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.33333%; }
  .col-sm-offset-5 {
    margin-left: 41.66667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.33333%; }
  .col-sm-offset-8 {
    margin-left: 66.66667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.33333%; }
  .col-sm-offset-11 {
    margin-left: 91.66667%; }
  .col-sm-offset-12 {
    margin-left: 100%; } }

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }
  .col-md-1 {
    width: 8.33333%; }
  .col-md-2 {
    width: 16.66667%; }
  .col-md-3 {
    width: 25%; }
  .col-md-4 {
    width: 33.33333%; }
  .col-md-5 {
    width: 41.66667%; }
  .col-md-6 {
    width: 50%; }
  .col-md-7 {
    width: 58.33333%; }
  .col-md-8 {
    width: 66.66667%; }
  .col-md-9 {
    width: 75%; }
  .col-md-10 {
    width: 83.33333%; }
  .col-md-11 {
    width: 91.66667%; }
  .col-md-12 {
    width: 100%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-pull-1 {
    right: 8.33333%; }
  .col-md-pull-2 {
    right: 16.66667%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-4 {
    right: 33.33333%; }
  .col-md-pull-5 {
    right: 41.66667%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-7 {
    right: 58.33333%; }
  .col-md-pull-8 {
    right: 66.66667%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-10 {
    right: 83.33333%; }
  .col-md-pull-11 {
    right: 91.66667%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-push-1 {
    left: 8.33333%; }
  .col-md-push-2 {
    left: 16.66667%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-4 {
    left: 33.33333%; }
  .col-md-push-5 {
    left: 41.66667%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-7 {
    left: 58.33333%; }
  .col-md-push-8 {
    left: 66.66667%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-10 {
    left: 83.33333%; }
  .col-md-push-11 {
    left: 91.66667%; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-offset-0 {
    margin-left: 0%; }
  .col-md-offset-1 {
    margin-left: 8.33333%; }
  .col-md-offset-2 {
    margin-left: 16.66667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.33333%; }
  .col-md-offset-5 {
    margin-left: 41.66667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.33333%; }
  .col-md-offset-8 {
    margin-left: 66.66667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.33333%; }
  .col-md-offset-11 {
    margin-left: 91.66667%; }
  .col-md-offset-12 {
    margin-left: 100%; } }

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-lg-1 {
    width: 8.33333%; }
  .col-lg-2 {
    width: 16.66667%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-4 {
    width: 33.33333%; }
  .col-lg-5 {
    width: 41.66667%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-7 {
    width: 58.33333%; }
  .col-lg-8 {
    width: 66.66667%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-10 {
    width: 83.33333%; }
  .col-lg-11 {
    width: 91.66667%; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-pull-1 {
    right: 8.33333%; }
  .col-lg-pull-2 {
    right: 16.66667%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-4 {
    right: 33.33333%; }
  .col-lg-pull-5 {
    right: 41.66667%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-7 {
    right: 58.33333%; }
  .col-lg-pull-8 {
    right: 66.66667%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-10 {
    right: 83.33333%; }
  .col-lg-pull-11 {
    right: 91.66667%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-push-1 {
    left: 8.33333%; }
  .col-lg-push-2 {
    left: 16.66667%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-4 {
    left: 33.33333%; }
  .col-lg-push-5 {
    left: 41.66667%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-7 {
    left: 58.33333%; }
  .col-lg-push-8 {
    left: 66.66667%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-10 {
    left: 83.33333%; }
  .col-lg-push-11 {
    left: 91.66667%; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-offset-0 {
    margin-left: 0%; }
  .col-lg-offset-1 {
    margin-left: 8.33333%; }
  .col-lg-offset-2 {
    margin-left: 16.66667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.33333%; }
  .col-lg-offset-5 {
    margin-left: 41.66667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.33333%; }
  .col-lg-offset-8 {
    margin-left: 66.66667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.33333%; }
  .col-lg-offset-11 {
    margin-left: 91.66667%; }
  .col-lg-offset-12 {
    margin-left: 100%; } }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit; }
  h1 small,
  h1 .small, h2 small,
  h2 .small, h3 small,
  h3 .small, h4 small,
  h4 .small, h5 small,
  h5 .small, h6 small,
  h6 .small,
  .h1 small,
  .h1 .small, .h2 small,
  .h2 .small, .h3 small,
  .h3 .small, .h4 small,
  .h4 .small, .h5 small,
  .h5 .small, .h6 small,
  .h6 .small {
    font-weight: 400;
    line-height: 1;
    color: #777777; }

h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px; }
  h1 small,
  h1 .small, .h1 small,
  .h1 .small,
  h2 small,
  h2 .small, .h2 small,
  .h2 .small,
  h3 small,
  h3 .small, .h3 small,
  .h3 .small {
    font-size: 65%; }

h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px; }
  h4 small,
  h4 .small, .h4 small,
  .h4 .small,
  h5 small,
  h5 .small, .h5 small,
  .h5 .small,
  h6 small,
  h6 .small, .h6 small,
  .h6 .small {
    font-size: 75%; }

h1, .h1 {
  font-size: 36px; }

h2, .h2 {
  font-size: 30px; }

h3, .h3 {
  font-size: 24px; }

h4, .h4 {
  font-size: 18px; }

h5, .h5 {
  font-size: 14px; }

h6, .h6 {
  font-size: 12px; }

p {
  margin: 0 0 10px; }

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4; }
  @media (min-width: 768px) {
    .lead {
      font-size: 21px; } }

small,
.small {
  font-size: 85%; }

mark,
.mark {
  padding: .2em;
  background-color: #fcf8e3; }

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

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

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

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

.text-nowrap {
  white-space: nowrap; }

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

.text-uppercase, .initialism {
  text-transform: uppercase; }

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

.text-muted {
  color: #777777; }

.text-primary {
  color: #337ab7; }

a.text-primary:hover,
a.text-primary:focus {
  color: #286090; }

.text-success {
  color: #3c763d; }

a.text-success:hover,
a.text-success:focus {
  color: #2b542c; }

.text-info {
  color: #31708f; }

a.text-info:hover,
a.text-info:focus {
  color: #245269; }

.text-warning {
  color: #8a6d3b; }

a.text-warning:hover,
a.text-warning:focus {
  color: #66512c; }

.text-danger {
  color: #a94442; }

a.text-danger:hover,
a.text-danger:focus {
  color: #843534; }

.bg-primary {
  color: #fff; }

.bg-primary {
  background-color: #337ab7; }

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090; }

.bg-success {
  background-color: #dff0d8; }

a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3; }

.bg-info {
  background-color: #d9edf7; }

a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee; }

.bg-warning {
  background-color: #fcf8e3; }

a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5; }

.bg-danger {
  background-color: #f2dede; }

a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9; }

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee; }

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px; }
  ul ul,
  ul ol,
  ol ul,
  ol ol {
    margin-bottom: 0; }

.list-unstyled {
  padding-left: 0;
  list-style: none; }

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px; }
  .list-inline > li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px; }

dl {
  margin-top: 0;
  margin-bottom: 20px; }

dt,
dd {
  line-height: 1.42857; }

dt {
  font-weight: 700; }

dd {
  margin-left: 0; }

.dl-horizontal dd:before, .dl-horizontal dd:after {
  display: table;
  content: " "; }

.dl-horizontal dd:after {
  clear: both; }

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .dl-horizontal dd {
    margin-left: 180px; } }

abbr[title],
abbr[data-original-title] {
  cursor: help; }

.initialism {
  font-size: 90%; }

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee; }
  blockquote p:last-child,
  blockquote ul:last-child,
  blockquote ol:last-child {
    margin-bottom: 0; }
  blockquote footer,
  blockquote small,
  blockquote .small {
    display: block;
    font-size: 80%;
    line-height: 1.42857;
    color: #777777; }
    blockquote footer:before,
    blockquote small:before,
    blockquote .small:before {
      content: "\2014 \00A0"; }

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eeeeee;
  border-left: 0; }
  .blockquote-reverse footer:before,
  .blockquote-reverse small:before,
  .blockquote-reverse .small:before,
  blockquote.pull-right footer:before,
  blockquote.pull-right small:before,
  blockquote.pull-right .small:before {
    content: ""; }
  .blockquote-reverse footer:after,
  .blockquote-reverse small:after,
  .blockquote-reverse .small:after,
  blockquote.pull-right footer:after,
  blockquote.pull-right small:after,
  blockquote.pull-right .small:after {
    content: "\00A0 \2014"; }

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857; }

.clearfix:before, .clearfix:after {
  display: table;
  content: " "; }

.clearfix:after {
  clear: both; }

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.hidden {
  display: none !important; }

.affix {
  position: fixed; }

@-ms-viewport {
  width: device-width; }

.visible-xs {
  display: none !important; }

.visible-sm {
  display: none !important; }

.visible-md {
  display: none !important; }

.visible-lg {
  display: none !important; }

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important; }

@media (max-width: 767px) {
  .visible-xs {
    display: block !important; }
  table.visible-xs {
    display: table !important; }
  tr.visible-xs {
    display: table-row !important; }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important; } }

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important; } }

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important; } }

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important; }
  table.visible-sm {
    display: table !important; }
  tr.visible-sm {
    display: table-row !important; }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important; }
  table.visible-md {
    display: table !important; }
  tr.visible-md {
    display: table-row !important; }
  th.visible-md,
  td.visible-md {
    display: table-cell !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important; }
  table.visible-lg {
    display: table !important; }
  tr.visible-lg {
    display: table-row !important; }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important; } }

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important; } }

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

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important; } }

.visible-print {
  display: none !important; }

@media print {
  .visible-print {
    display: block !important; }
  table.visible-print {
    display: table !important; }
  tr.visible-print {
    display: table-row !important; }
  th.visible-print,
  td.visible-print {
    display: table-cell !important; } }

.visible-print-block {
  display: none !important; }
  @media print {
    .visible-print-block {
      display: block !important; } }

.visible-print-inline {
  display: none !important; }
  @media print {
    .visible-print-inline {
      display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }
  @media print {
    .visible-print-inline-block {
      display: inline-block !important; } }

@media print {
  .hidden-print {
    display: none !important; } }

.tooltipster-fall, .tooltipster-grow.tooltipster-show {
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-base {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
  position: absolute; }

.tooltipster-box {
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto; }

.tooltipster-content {
  box-sizing: border-box;
  max-height: 100%;
  max-width: 100%;
  overflow: auto; }

.tooltipster-ruler {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden; }

.tooltipster-fade {
  opacity: 0;
  transition-property: opacity; }

.tooltipster-fade.tooltipster-show {
  opacity: 1; }

.tooltipster-grow {
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-backface-visibility: hidden; }

.tooltipster-grow.tooltipster-show {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-swing {
  opacity: 0;
  -webkit-transform: rotateZ(4deg);
  transform: rotateZ(4deg);
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }

.tooltipster-swing.tooltipster-show {
  opacity: 1;
  -webkit-transform: rotateZ(0);
  transform: rotateZ(0);
  transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4); }

.tooltipster-fall {
  transition-property: top;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-fall.tooltipster-initial {
  top: 0 !important; }

.tooltipster-fall.tooltipster-dying {
  transition-property: all;
  top: 0 !important;
  opacity: 0; }

.tooltipster-slide {
  transition-property: left;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-slide.tooltipster-initial {
  left: -40px !important; }

.tooltipster-slide.tooltipster-dying {
  transition-property: all;
  left: 0 !important;
  opacity: 0; }

@-webkit-keyframes tooltipster-fading {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes tooltipster-fading {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.tooltipster-update-fade {
  -webkit-animation: tooltipster-fading .4s;
  animation: tooltipster-fading .4s; }

@-webkit-keyframes tooltipster-rotating {
  25% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg); }
  75% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg); }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0); } }

@keyframes tooltipster-rotating {
  25% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg); }
  75% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg); }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0); } }

.tooltipster-update-rotate {
  -webkit-animation: tooltipster-rotating .6s;
  animation: tooltipster-rotating .6s; }

@-webkit-keyframes tooltipster-scaling {
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes tooltipster-scaling {
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

.tooltipster-update-scale {
  -webkit-animation: tooltipster-scaling .6s;
  animation: tooltipster-scaling .6s; }

.tooltipster-sidetip .tooltipster-box {
  background: #565656;
  border: 2px solid #000;
  border-radius: 4px; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
  margin-top: 8px; }

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
  margin-right: 8px; }

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
  margin-left: 8px; }

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
  margin-bottom: 8px; }

.tooltipster-sidetip .tooltipster-content {
  color: #fff;
  line-height: 18px;
  padding: 6px 14px; }

.tooltipster-sidetip .tooltipster-arrow {
  overflow: hidden;
  position: absolute; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
  height: 10px;
  margin-left: -10px;
  top: 0;
  width: 20px; }

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  right: 0;
  top: 0;
  width: 10px; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  left: 0;
  top: 0;
  width: 10px; }

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
  bottom: 0;
  height: 10px;
  margin-left: -10px;
  width: 20px; }

.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
  height: 0;
  position: absolute;
  width: 0; }

.tooltipster-sidetip .tooltipster-arrow-background {
  border: 10px solid transparent; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #565656;
  left: 0;
  top: 3px; }

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
  border-left-color: #565656;
  left: -3px;
  top: 0; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #565656;
  left: 3px;
  top: 0; }

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #565656;
  left: 0;
  top: -3px; }

.tooltipster-sidetip .tooltipster-arrow-border {
  border: 10px solid transparent;
  left: 0;
  top: 0; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: #000; }

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
  border-left-color: #000; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
  border-right-color: #000; }

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
  border-top-color: #000; }

.tooltipster-sidetip .tooltipster-arrow-uncropped {
  position: relative; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -10px; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
  left: -10px; }

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }
  .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--single .select2-selection__rendered {
      display: block;
      padding-left: 8px;
      padding-right: 20px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .select2-container .select2-selection--single .select2-selection__clear {
      position: relative; }
  .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px; }
  .select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--multiple .select2-selection__rendered {
      display: inline-block;
      overflow: hidden;
      padding-left: 8px;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .select2-container .select2-search--inline {
    float: left; }
    .select2-container .select2-search--inline .select2-search__field {
      box-sizing: border-box;
      border: none;
      font-size: 100%;
      margin-top: 5px;
      padding: 0; }
      .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
        -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none; }
  .select2-results__option[aria-selected] {
    cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }
  .select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box; }
    .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
      -webkit-appearance: none; }
  .select2-search--dropdown.select2-search--hide {
    display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important; }

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px; }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold; }
  .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }
  .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text; }
  .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%; }
    .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
      list-style: none; }
  .select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px;
    padding: 1px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #333; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--default .select2-results__option[role=group] {
  padding: 0; }

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em; }
    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
      margin-left: -2em;
      padding-left: 3em; }
      .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -3em;
        padding-left: 4em; }
        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
          margin-left: -4em;
          padding-left: 5em; }
          .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -5em;
            padding-left: 6em; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white; }

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
  .select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px; }
  .select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
    .select2-container--classic .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto; }

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb; }
  .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none; }
    .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
      border-color: transparent transparent #888 transparent;
      border-width: 0 4px 5px 4px; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0; }
  .select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #555; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0; }

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none; }

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent; }

.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }

.select2-container--classic .select2-dropdown--below {
  border-top: none; }

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--classic .select2-results__option[role=group] {
  padding: 0; }

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey; }

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white; }

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb; }

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none; }

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none; }

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none; }

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch; }

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: ""; }

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  text-size-adjust: 100%; }

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block; }

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px); }

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(43, 46, 56, 0.9); }

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes; }

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes; }

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0; }

/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff; }

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes; }

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes; }

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle; }

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent; }

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38; }

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "\00d7";
  text-align: center; }

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0; }

.remodal-confirm {
  color: #fff;
  background: #81c784; }

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a; }

.remodal-cancel {
  color: #fff;
  background: #e57373; }

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350; }

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0; }

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0); } }

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0); } }

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0); } }

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0); } }

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px; } }

/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38; }

.lt-ie9 .remodal {
  width: 700px; }

.react-datepicker__tether-element-attached-top .react-datepicker__triangle, .react-datepicker__tether-element-attached-bottom .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow {
  margin-left: -8px;
  position: absolute; }
  .react-datepicker__tether-element-attached-top .react-datepicker__triangle, .react-datepicker__tether-element-attached-bottom .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow, .react-datepicker__tether-element-attached-top .react-datepicker__triangle::before, .react-datepicker__tether-element-attached-bottom .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before {
    box-sizing: content-box;
    position: absolute;
    border: 8px solid transparent;
    height: 0;
    width: 1px; }
  .react-datepicker__tether-element-attached-top .react-datepicker__triangle::before, .react-datepicker__tether-element-attached-bottom .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before {
    content: "";
    z-index: -1;
    border-width: 8px;
    left: -8px;
    border-bottom-color: #aeaeae; }

.react-datepicker__tether-element-attached-top .react-datepicker__triangle {
  top: 0;
  margin-top: -8px; }
  .react-datepicker__tether-element-attached-top .react-datepicker__triangle, .react-datepicker__tether-element-attached-top .react-datepicker__triangle::before {
    border-top: none;
    border-bottom-color: #f0f0f0; }
  .react-datepicker__tether-element-attached-top .react-datepicker__triangle::before {
    top: -1px;
    border-bottom-color: #aeaeae; }

.react-datepicker__tether-element-attached-bottom .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow {
  bottom: 0;
  margin-bottom: -8px; }
  .react-datepicker__tether-element-attached-bottom .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow, .react-datepicker__tether-element-attached-bottom .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before {
    border-bottom: none;
    border-top-color: #fff; }
  .react-datepicker__tether-element-attached-bottom .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before {
    bottom: -1px;
    border-top-color: #aeaeae; }

.react-datepicker__tether-element-attached-top .react-datepicker__triangle, .react-datepicker__tether-element-attached-bottom .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow {
  margin-left: -8px;
  position: absolute; }
  .react-datepicker__tether-element-attached-top .react-datepicker__triangle, .react-datepicker__tether-element-attached-bottom .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow, .react-datepicker__tether-element-attached-top .react-datepicker__triangle::before, .react-datepicker__tether-element-attached-bottom .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before {
    box-sizing: content-box;
    position: absolute;
    border: 8px solid transparent;
    height: 0;
    width: 1px; }
  .react-datepicker__tether-element-attached-top .react-datepicker__triangle::before, .react-datepicker__tether-element-attached-bottom .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before {
    content: "";
    z-index: -1;
    border-width: 8px;
    left: -8px;
    border-bottom-color: #aeaeae; }

.react-datepicker__tether-element-attached-top .react-datepicker__triangle {
  top: 0;
  margin-top: -8px; }
  .react-datepicker__tether-element-attached-top .react-datepicker__triangle, .react-datepicker__tether-element-attached-top .react-datepicker__triangle::before {
    border-top: none;
    border-bottom-color: #f0f0f0; }
  .react-datepicker__tether-element-attached-top .react-datepicker__triangle::before {
    top: -1px;
    border-bottom-color: #aeaeae; }

.react-datepicker__tether-element-attached-bottom .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow {
  bottom: 0;
  margin-bottom: -8px; }
  .react-datepicker__tether-element-attached-bottom .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow, .react-datepicker__tether-element-attached-bottom .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before {
    border-bottom: none;
    border-top-color: #fff; }
  .react-datepicker__tether-element-attached-bottom .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before {
    bottom: -1px;
    border-top-color: #aeaeae; }

.react-datepicker {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  background-color: #fff;
  color: #000;
  box-shadow: 0 0 20px -3px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  display: inline-block;
  position: relative; }

.react-datepicker__triangle {
  position: absolute;
  left: 50px; }

.react-datepicker__tether-element-attached-bottom.react-datepicker__tether-element {
  margin-top: -20px; }

.react-datepicker__header {
  text-align: center;
  background-color: #fff;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding-top: 8px;
  position: relative; }

.react-datepicker__current-month {
  margin-top: 0;
  color: #000;
  font-weight: bold;
  font-size: 13px; }
  .react-datepicker__current-month--hasYearDropdown {
    margin-bottom: 16px; }

.react-datepicker__navigation {
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 10px;
  width: 0;
  border: 6px solid transparent; }
  .react-datepicker__navigation--previous {
    left: 10px;
    border-right-color: #ccc; }
    .react-datepicker__navigation--previous:hover {
      border-right-color: #b3b3b3; }
  .react-datepicker__navigation--next {
    right: 10px;
    border-left-color: #ccc; }
    .react-datepicker__navigation--next:hover {
      border-left-color: #b3b3b3; }
  .react-datepicker__navigation--years {
    position: relative;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto; }
    .react-datepicker__navigation--years-previous {
      top: 4px;
      border-top-color: #ccc; }
      .react-datepicker__navigation--years-previous:hover {
        border-top-color: #b3b3b3; }
    .react-datepicker__navigation--years-upcoming {
      top: -4px;
      border-bottom-color: #ccc; }
      .react-datepicker__navigation--years-upcoming:hover {
        border-bottom-color: #b3b3b3; }

.react-datepicker__month {
  margin: 5px;
  text-align: center; }

.react-datepicker__day-name,
.react-datepicker__day {
  color: #000;
  display: inline-block;
  width: 24px;
  line-height: 24px;
  text-align: center;
  margin: 2px; }

.react-datepicker__day {
  cursor: pointer; }
  .react-datepicker__day:hover {
    border-radius: 14px;
    background-color: #f0f0f0; }
  .react-datepicker__day--today {
    font-weight: bold; }
  .react-datepicker__day--selected, .react-datepicker__day--in-range {
    border-radius: 14px;
    background-color: #ff4700;
    color: #fff; }
    .react-datepicker__day--selected:hover, .react-datepicker__day--in-range:hover {
      background-color: #e64000; }
  .react-datepicker__day--disabled {
    cursor: default;
    color: #ccc; }
    .react-datepicker__day--disabled:hover {
      background-color: transparent; }

.react-datepicker__input-container {
  position: relative;
  display: inline-block; }

.react-datepicker__year-read-view {
  width: 50%;
  left: 25%;
  position: absolute;
  bottom: 25px;
  border: 1px solid transparent;
  border-radius: 4px; }
  .react-datepicker__year-read-view:hover {
    cursor: pointer; }
    .react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow {
      border-top-color: #b3b3b3; }
  .react-datepicker__year-read-view--down-arrow {
    border-top-color: #ccc;
    margin-bottom: 3px;
    left: 5px;
    top: 9px;
    position: relative;
    border-width: 6px; }
  .react-datepicker__year-read-view--selected-year {
    right: 6px;
    position: relative; }

.react-datepicker__year-dropdown {
  background-color: #f0f0f0;
  position: absolute;
  width: 50%;
  left: 25%;
  top: 30px;
  text-align: center;
  border-radius: 4px;
  border: 1px solid #aeaeae; }
  .react-datepicker__year-dropdown:hover {
    cursor: pointer; }

.react-datepicker__year-option {
  line-height: 20px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .react-datepicker__year-option:first-of-type {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px; }
  .react-datepicker__year-option:last-of-type {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px; }
  .react-datepicker__year-option:hover {
    background-color: #ccc; }
    .react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming {
      border-bottom-color: #b3b3b3; }
    .react-datepicker__year-option:hover .react-datepicker__navigation--years-previous {
      border-top-color: #b3b3b3; }
  .react-datepicker__year-option--selected {
    position: absolute;
    left: 30px; }

.react-datepicker__close-icon {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  display: inline-block;
  height: 0;
  outline: 0;
  padding: 0;
  vertical-align: middle; }
  .react-datepicker__close-icon::after {
    background-color: #ff4700;
    border-radius: 50%;
    bottom: 0;
    box-sizing: border-box;
    color: #fff;
    content: "\00d7";
    cursor: pointer;
    font-size: 12px;
    height: 16px;
    width: 16px;
    line-height: 1;
    margin: -8px auto 0;
    padding: 2px;
    position: absolute;
    right: 7px;
    text-align: center;
    top: 50%; }

.react-datepicker__today-button {
  background: #f0f0f0;
  border-top: 1px solid #aeaeae;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  padding: 5px 0; }

.react-datepicker__tether-element {
  z-index: 2147483647; }

.CalendarDay {
  border: 1px solid #e4e7e7;
  padding: 0;
  box-sizing: border-box;
  color: #565a5c;
  cursor: pointer;
  width: 39px;
  height: 38px; }
  .CalendarDay:active {
    background: #f2f2f2; }

.CalendarDay--highlighted-calendar {
  background: #ffe8bc;
  color: #565a5c;
  cursor: default; }
  .CalendarDay--highlighted-calendar:active {
    background: black; }

.CalendarDay--outside {
  border: 0;
  cursor: default; }
  .CalendarDay--outside:active {
    background: #fff; }

.CalendarDay--hovered {
  background: #e4e7e7;
  border: 1px double #d4d9d9;
  color: inherit; }

.CalendarDay--blocked-minimum-nights {
  color: #cacccd;
  background: #fff;
  border: 1px solid #e4e7e7;
  cursor: default; }
  .CalendarDay--blocked-minimum-nights:active {
    background: #fff; }

.CalendarDay--selected-span {
  background: #333333;
  border: 1px double #1a1a1a;
  color: #fff; }
  .CalendarDay--selected-span.CalendarDay--hovered, .CalendarDay--selected-span:active {
    background: #1a1a1a;
    border: 1px double #000000; }
  .CalendarDay--selected-span.CalendarDay--last-in-range {
    border-right: #000000; }

.CalendarDay--hovered-span,
.CalendarDay--after-hovered-start {
  background: #666666;
  border: 1px double #4d4d4d;
  color: black; }

.CalendarDay--selected-start,
.CalendarDay--selected-end,
.CalendarDay--selected {
  background: #000000;
  border: 1px double #000000;
  color: #fff; }
  .CalendarDay--selected-start:active,
  .CalendarDay--selected-end:active,
  .CalendarDay--selected:active {
    background: #000000; }

.CalendarDay--blocked-calendar {
  background: #cacccd;
  color: #82888a;
  cursor: default; }
  .CalendarDay--blocked-calendar:active {
    background: #cacccd; }

.CalendarDay--blocked-out-of-range {
  color: #cacccd;
  background: #fff;
  border: 1px solid #e4e7e7;
  cursor: default; }
  .CalendarDay--blocked-out-of-range:active {
    background: #fff; }

.CalendarMonth {
  text-align: center;
  padding: 0 13px;
  vertical-align: top;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .CalendarMonth:first-of-type {
    position: absolute;
    z-index: -1;
    opacity: 0;
    pointer-events: none; }
  .CalendarMonth table {
    border-collapse: collapse;
    border-spacing: 0;
    caption-caption-side: initial; }

.CalendarMonth--horizontal {
  display: inline-block;
  min-height: 100%; }

.CalendarMonth--vertical {
  display: block; }

.CalendarMonth__caption {
  color: #3c3f40;
  margin-top: 7px;
  font-size: 18px;
  text-align: center;
  margin-bottom: 2px;
  caption-side: initial; }

.CalendarMonth--horizontal .CalendarMonth__caption,
.CalendarMonth--vertical .CalendarMonth__caption {
  padding: 15px 0 35px; }

.CalendarMonth--vertical-scrollable .CalendarMonth__caption {
  padding: 5px 0; }

.CalendarMonthGrid {
  background: #fff;
  z-index: 0;
  text-align: left; }

.CalendarMonthGrid--animating {
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  z-index: 1; }

.CalendarMonthGrid--horizontal {
  position: absolute;
  left: 9px;
  width: 1200px; }

.CalendarMonthGrid--vertical {
  width: 300px;
  margin: 0 auto; }

.CalendarMonthGrid--vertical-scrollable {
  width: 300px;
  margin: 0 auto;
  overflow-y: scroll; }

.DayPicker {
  background: #fff;
  position: relative;
  text-align: left; }

.DayPicker--horizontal {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.07);
  border-radius: 3px;
  z-index: 1; }
  .DayPicker--horizontal.DayPicker--portal {
    box-shadow: none;
    position: absolute;
    left: 50%;
    top: 50%; }

.DayPicker--vertical.DayPicker--portal {
  position: initial; }

.DayPicker__week-headers {
  position: relative; }

.DayPicker--horizontal .DayPicker__week-headers {
  margin-left: 9px; }

.DayPicker__week-header {
  color: #757575;
  position: absolute;
  width: 300px;
  top: 62px;
  z-index: 2;
  padding: 0 13px;
  text-align: left; }
  .DayPicker__week-header ul {
    list-style: none;
    margin: 1px 0;
    padding-left: 0; }
  .DayPicker__week-header li {
    display: inline-block;
    width: 39px;
    text-align: center; }

.DayPicker--vertical .DayPicker__week-header {
  margin-left: -150px;
  left: 50%; }

.DayPicker--vertical-scrollable {
  height: 100%; }
  .DayPicker--vertical-scrollable .DayPicker__week-header {
    top: 0;
    display: table-row;
    border-bottom: 1px solid #dbdbdb;
    background: white; }
  .DayPicker--vertical-scrollable .transition-container--vertical {
    padding-top: 20px;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    overflow-y: scroll; }
  .DayPicker--vertical-scrollable .DayPicker__week-header {
    margin-left: 0;
    left: 0;
    width: 100%;
    text-align: center; }

.transition-container {
  position: relative;
  overflow: hidden;
  border-radius: 3px; }

.transition-container--horizontal {
  transition: height 0.2s ease-in-out; }

.transition-container--vertical {
  width: 100%; }

.DayPickerNavigation__prev,
.DayPickerNavigation__next {
  cursor: pointer;
  line-height: 0.78;
  -webkit-user-select: none;
  /* Chrome/Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+ */
  user-select: none; }

.DayPickerNavigation__prev--default,
.DayPickerNavigation__next--default {
  border: 1px solid #dce0e0;
  background-color: #fff;
  color: #757575; }
  .DayPickerNavigation__prev--default:focus, .DayPickerNavigation__prev--default:hover,
  .DayPickerNavigation__next--default:focus,
  .DayPickerNavigation__next--default:hover {
    border: 1px solid #c4c4c4; }
  .DayPickerNavigation__prev--default:active,
  .DayPickerNavigation__next--default:active {
    background: #f2f2f2; }

.DayPickerNavigation--horizontal {
  position: relative; }
  .DayPickerNavigation--horizontal .DayPickerNavigation__prev,
  .DayPickerNavigation--horizontal .DayPickerNavigation__next {
    border-radius: 3px;
    padding: 6px 9px;
    top: 18px;
    z-index: 2;
    position: absolute; }
  .DayPickerNavigation--horizontal .DayPickerNavigation__prev {
    left: 22px; }
  .DayPickerNavigation--horizontal .DayPickerNavigation__next {
    right: 22px; }
  .DayPickerNavigation--horizontal .DayPickerNavigation__prev--default svg,
  .DayPickerNavigation--horizontal .DayPickerNavigation__next--default svg {
    height: 19px;
    width: 19px;
    fill: #82888a; }

.DayPickerNavigation--vertical {
  background: #fff;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  left: 0;
  height: 52px;
  width: 100%;
  z-index: 2; }
  .DayPickerNavigation--vertical .DayPickerNavigation__prev,
  .DayPickerNavigation--vertical .DayPickerNavigation__next {
    display: inline-block;
    position: relative;
    height: 100%;
    width: 50%; }
  .DayPickerNavigation--vertical .DayPickerNavigation__next--default {
    border-left: 0; }
  .DayPickerNavigation--vertical .DayPickerNavigation__prev--default,
  .DayPickerNavigation--vertical .DayPickerNavigation__next--default {
    text-align: center;
    font-size: 2.5em;
    padding: 5px; }
    .DayPickerNavigation--vertical .DayPickerNavigation__prev--default svg,
    .DayPickerNavigation--vertical .DayPickerNavigation__next--default svg {
      height: 42px;
      width: 42px;
      fill: #484848; }

.DayPickerNavigation--vertical-scrollable {
  position: relative; }
  .DayPickerNavigation--vertical-scrollable .DayPickerNavigation__next {
    width: 100%; }

.DateInput {
  font-weight: 200;
  font-size: 18px;
  line-height: 24px;
  color: #757575;
  margin: 0;
  padding: 8px;
  background: #fff;
  position: relative;
  display: inline-block;
  width: calc(50% - 5px);
  vertical-align: middle; }

.DateInput--with-caret::before,
.DateInput--with-caret::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: auto;
  border: 10px solid transparent;
  border-top: 0;
  left: 22px;
  z-index: 2; }

.DateInput--with-caret::before {
  top: 62px;
  border-bottom-color: rgba(0, 0, 0, 0.1); }

.DateInput--with-caret::after {
  top: 63px;
  border-bottom-color: #fff; }

.DateInput--disabled {
  background: #cacccd; }

.DateInput__input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  height: 100%;
  width: 100%; }
  .DateInput__input[readonly] {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none; }

.DateInput__display-text {
  padding: 4px 8px;
  white-space: nowrap;
  overflow: hidden; }

.DateInput__display-text--has-input {
  color: #484848; }

.DateInput__display-text--focused {
  background: #999999;
  border-color: #999999;
  border-radius: 3px;
  color: #fec500; }

.DateInput__display-text--disabled {
  font-style: italic; }

.screen-reader-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.DateRangePicker {
  position: relative;
  display: inline-block; }

.DateRangePicker__picker {
  z-index: 1;
  background-color: #fff;
  position: absolute;
  top: 72px; }

.DateRangePicker__picker--direction-left {
  left: 0; }

.DateRangePicker__picker--direction-right {
  right: 0; }

.DateRangePicker__picker--portal {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; }

.DateRangePicker__picker--full-screen-portal {
  background-color: #fff; }

.DateRangePicker__close {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 2; }
  .DateRangePicker__close svg {
    height: 15px;
    width: 15px;
    fill: #cacccd; }
  .DateRangePicker__close:hover, .DateRangePicker__close:focus {
    color: #b0b3b4;
    text-decoration: none; }

.DateRangePickerInput {
  border: 1px solid #cacccd;
  display: inline-block; }

.DateRangePickerInput--disabled {
  background: #cacccd; }

.DateRangePickerInput__arrow {
  display: inline-block;
  vertical-align: middle; }

.DateRangePickerInput__arrow svg {
  vertical-align: middle;
  fill: #484848;
  height: 24px;
  width: 24px; }

.DateRangePickerInput__clear-dates {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 10px 0 5px; }

.DateRangePickerInput__clear-dates svg {
  fill: #82888a;
  height: 12px;
  width: 15px;
  vertical-align: middle; }

.DateRangePickerInput__clear-dates--hide {
  visibility: hidden; }

.DateRangePickerInput__clear-dates:focus,
.DateRangePickerInput__clear-dates--hover {
  background: #dbdbdb;
  border-radius: 50%; }

.DateRangePickerInput__calendar-icon {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 5px 0 10px; }
  .DateRangePickerInput__calendar-icon svg {
    fill: #82888a;
    height: 15px;
    width: 14px;
    vertical-align: middle; }

.DateRangePickerInput .DateInput {
  background-color: #fff; }

.SingleDatePicker {
  position: relative;
  display: inline-block; }

.SingleDatePicker__picker {
  z-index: 10;
  background-color: #fff;
  position: absolute;
  top: 72px; }

.SingleDatePicker__picker--direction-left {
  left: 0; }

.SingleDatePicker__picker--direction-right {
  right: 0; }

.SingleDatePicker__picker--portal {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; }

.SingleDatePicker__picker--full-screen-portal {
  background-color: #fff; }

.SingleDatePicker__close {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 2; }
  .SingleDatePicker__close svg {
    height: 15px;
    width: 15px;
    fill: #cacccd; }
  .SingleDatePicker__close:hover, .SingleDatePicker__close:focus {
    color: #b0b3b4;
    text-decoration: none; }

.SingleDatePickerInput {
  background-color: #fff;
  border: 1px solid #dbdbdb; }

.SingleDatePickerInput__clear-date {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 10px 0 5px; }

.SingleDatePickerInput__clear-date svg {
  fill: #82888a;
  height: 12px;
  width: 15px;
  vertical-align: middle; }

.SingleDatePickerInput__clear-date--hide {
  visibility: hidden; }

.SingleDatePickerInput__clear-date:focus,
.SingleDatePickerInput__clear-date--hover {
  background: #dbdbdb;
  border-radius: 50%; }

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #000000; }

a:not([class]) {
  color: #000000; }

.jb-h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 40px;
  color: #000000;
  margin: 40px 0 20px 0;
  padding: 0; }
  @media all and (max-width: 767px) {
    .jb-h1 {
      font-size: 26px; } }

.jb-h2, .jb-neos-headline-alternative {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 30px;
  color: #000000;
  margin: 40px 0 20px 0;
  padding: 0; }
  @media all and (max-width: 767px) {
    .jb-h2, .jb-neos-headline-alternative {
      font-size: 20px; } }

.jb-h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 22px;
  color: #000000;
  margin-bottom: 20px; }
  @media all and (max-width: 767px) {
    .jb-h3 {
      font-size: 16px; } }

.jb-hl-no-mgb {
  margin-bottom: 0; }

.jb-hl-no-mgt {
  margin-top: 0; }

.jb-neos-text-alternative {
  color: #000000;
  margin-bottom: 40px; }

p, .jb-copy {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: #000000; }

b {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased; }

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

body {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow-x: hidden;
  min-height: 100vh !important;
  padding-right: 0 !important; }
  @media print {
    body {
      display: block; } }

#svgSprite {
  display: none !important; }

.jb-row-align-bottom {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end; }

@media all and (min-width: 768px) {
  .jb-row-align-bottom-sm {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; } }

@media all and (min-width: 992px) {
  .jb-row-align-bottom-md {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; } }

.jb-main {
  -webkit-flex: 1 auto;
  -ms-flex: 1 auto;
  flex: 1 auto;
  width: 100%;
  margin: 0 auto; }

@-moz-document url-prefix() {
  .jb-main #flexible-content {
    flex: 1; } }

.jb-container {
  max-width: 1115px; }
  .jb-container:not(.container-fluid) {
    margin: 0 auto; }

.jb-container-full {
  max-width: 1085px;
  margin: 0 auto; }

.jb-section-standard:not(:last-child) {
  margin-bottom: 40px; }
  @media all and (min-width: 992px) {
    .jb-section-standard:not(:last-child) {
      margin-bottom: 80px; } }

.jb-section-standard.jb-deal-destination {
  margin-bottom: 40px; }

@media all and (min-width: 768px) {
  .jb-section-standard .mindscreen-jetbeds-headline {
    padding-bottom: 0; } }

.jb-section-standard .mindscreen-jetbeds-headline > .jb-h3,
.jb-section-standard .mindscreen-jetbeds-headline > .jb-h1 {
  margin-top: 80px;
  font-size: 18px; }

.mindscreen-jetbeds-headline > .jb-h3,
.mindscreen-jetbeds-headline > .jb-h2,
.mindscreen-jetbeds-headline > .jb-neos-headline-alternative {
  margin-top: 80px;
  font-size: 18px; }

.jb-stage + .jb-section-standard {
  margin-top: 40px; }

.jb-section-deal + .jb-section-deal {
  margin-top: -40px; }
  @media all and (min-width: 992px) {
    .jb-section-deal + .jb-section-deal {
      margin-top: -80px; } }

.jb-section-newsletter {
  padding: 40px 0 30px; }

.jb-flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.jb-flex-column {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }
  .jb-flex-column.jb-flex-column-margin > *:not(:last-child) {
    margin-bottom: 12px; }

a {
  text-decoration: none; }
  a:focus, a:hover, a:active {
    text-decoration: none; }

.row.no-margin {
  margin-right: 0;
  margin-left: 0; }

.no-padding[class^="col-"],
.no-padding[class*=" col-"] {
  padding-right: 0;
  padding-left: 0; }

.no-padding-right[class^="col-"],
.no-padding-right[class*=" col-"] {
  padding-right: 0; }

.no-padding-left[class^="col-"],
.no-padding-left[class*=" col-"] {
  padding-left: 0; }

.jb-hide {
  display: none !important; }

.jb-left {
  float: left; }

.jb-link {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  cursor: pointer;
  background-color: #d4dbe3;
  padding: 10px 20px;
  border-radius: 4px; }
  .jb-link:before, .jb-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px; }
  .jb-link:before {
    width: 100%; }
  .jb-link:after {
    width: 0;
    background-color: #ff4700;
    transition: width 0.15s; }
  .jb-link:hover, .jb-link:focus {
    text-decoration: none;
    color: #000000; }
    .jb-link:hover:after, .jb-link:focus:after {
      width: 100%;
      transition: width 0.15s; }

.jb-text-link {
  cursor: pointer;
  color: #ff4700;
  transition: color 0.15s linear; }
  .jb-text-link-secondary {
    color: #000000; }
  .jb-text-link-white {
    color: white; }
  .jb-text-link:hover, .jb-text-link-white:hover, .jb-text-link-secondary:hover {
    text-decoration: none;
    transition: color 0.15s linear; }
  .jb-text-link:hover, .jb-text-link:focus, .jb-text-link:active {
    color: #fec500; }
  .jb-text-link-secondary:hover, .jb-text-link-secondary:focus, .jb-text-link-secondary:active {
    color: #5F6E7E; }
  .jb-text-link-white:hover, .jb-text-link-white:focus, .jb-text-link-white:active {
    color: #ff4700; }
  .jb-text-link:focus, .jb-text-link:active {
    outline: none;
    text-decoration: none; }

.jb-price-decimal span {
  font-size: 14px; }

.jb-btn {
  display: inline-block;
  background-color: #ff4700;
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 4px;
  border: none;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  text-decoration: none; }
  .jb-btn:hover, .jb-btn:focus, .jb-btn:active {
    text-decoration: none;
    color: #ffffff; }
  .jb-btn:hover:not(.jb-btn-disabled):not([disabled]), .jb-btn:focus:not(.jb-btn-disabled):not([disabled]), .jb-btn:active:not(.jb-btn-disabled):not([disabled]) {
    cursor: pointer;
    color: #ffffff;
    background-color: #cc3900; }
  .jb-btn:focus {
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.5); }
  .jb-btn.jb-btn-secondary {
    background-color: #000000;
    color: #ffffff; }
    .jb-btn.jb-btn-secondary:hover:not(.jb-btn-disabled):not([disabled]), .jb-btn.jb-btn-secondary:active:not(.jb-btn-disabled):not([disabled]), .jb-btn.jb-btn-secondary:focus:not(.jb-btn-disabled):not([disabled]) {
      color: #ffffff;
      background-color: black; }
  .jb-btn.jb-btn-secondary-light {
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, 0.7); }
    .jb-btn.jb-btn-secondary-light:hover:not(.jb-btn-disabled):not([disabled]), .jb-btn.jb-btn-secondary-light:active:not(.jb-btn-disabled):not([disabled]), .jb-btn.jb-btn-secondary-light:focus:not(.jb-btn-disabled):not([disabled]) {
      color: rgba(255, 255, 255, 0.7);
      background-color: #0d0d0d; }
  .jb-btn.jb-btn-small {
    font-size: 13px;
    line-height: 16px;
    padding: 7px 10px; }
  .jb-btn.jb-btn-disabled {
    background-color: #acb7c1; }
    .jb-btn.jb-btn-disabled:hover {
      cursor: default; }
  .jb-btn.jb-btn-full {
    width: 100%; }

.jb-btn-remove {
  position: relative;
  height: 22px;
  width: 22px;
  background-color: #5a6e82;
  border-radius: 45%;
  z-index: 3;
  cursor: pointer;
  font-size: 0;
  float: none;
  margin: 0; }
  .jb-btn-remove:before, .jb-btn-remove:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
    height: 1px;
    width: 15px; }
  .jb-btn-remove:before {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg); }
  .jb-btn-remove:after {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg); }

.jb-btn-fb {
  background-color: #39579a; }
  .jb-btn-fb:hover:not(.jb-btn-disabled):not([disabled]), .jb-btn-fb:active:not(.jb-btn-disabled):not([disabled]), .jb-btn-fb:focus:not(.jb-btn-disabled):not([disabled]) {
    background-color: #2b4275; }
  .jb-btn-fb span {
    position: relative;
    padding-left: 25px; }
    .jb-btn-fb span svg {
      position: absolute;
      left: 0;
      top: -1px;
      height: 22px;
      width: 11px;
      fill: white; }

.jb-btn-gplus {
  background-color: #488ae9; }
  .jb-btn-gplus:hover:not(.jb-btn-disabled):not([disabled]), .jb-btn-gplus:active:not(.jb-btn-disabled):not([disabled]), .jb-btn-gplus:focus:not(.jb-btn-disabled):not([disabled]) {
    background-color: #1b6de3; }
  .jb-btn-gplus span {
    position: relative;
    padding-left: 30px; }
    .jb-btn-gplus span svg {
      position: absolute;
      left: 0;
      top: 1px;
      height: 20px;
      width: 20px;
      fill: white; }

.jb-list {
  padding-left: 0;
  margin-bottom: 0; }
  .jb-list ul {
    padding-left: 0;
    margin-bottom: 0; }
  .jb-list li {
    position: relative;
    padding-left: 16px;
    list-style-type: none; }
    .jb-list li:not(:last-child) {
      margin-bottom: 3px; }
    .jb-list li:before {
      position: absolute;
      display: block;
      content: "";
      width: 5px;
      height: 5px;
      left: 0;
      top: 8px;
      border-radius: 100%;
      background-color: #000000; }
  .jb-list.jb-list-spacing li {
    line-height: 1.8; }
    .jb-list.jb-list-spacing li:not(:last-child) {
      margin-bottom: 20px; }
    .jb-list.jb-list-spacing li:before {
      top: 11px; }

.jb-text-white {
  color: white; }

.jb-text-separator {
  display: inline-block;
  padding: 0 5px; }

.jb-text-secondary {
  color: #000000; }

.jb-text-primary {
  color: #ff4700; }

.jb-text-highlight {
  color: #fec500; }

.jb-text-color-light {
  color: rgba(255, 255, 255, 0.7); }

.jb-text-light {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300; }

.jb-text-regular {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400; }

.jb-text-bold {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased; }

.jb-bg-alternative {
  background-color: #f4f6f8; }

.jb-bg-highlight {
  background-color: #fec500; }

.jb-bg-primary {
  background-color: #ff4700; }

.jb-bg-secondary {
  background-color: #000000; }

.jb-bg-secondary-transparent {
  background-color: rgba(0, 0, 0, 0.8); }

.jb-bg-disabled {
  background-color: #D4DBE3; }

.jb-bg-white {
  background-color: white; }

.jb-radial-image-shadow:after {
  content: "";
  position: absolute;
  z-index: -1;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
  bottom: 0px;
  left: 10%;
  right: 10%;
  width: 80%;
  height: 50%;
  border-radius: 100%; }

.jb-box-shadow {
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.4); }

.jb-box-shadow-soft {
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3); }

.jb-box-shadow-bottom {
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1); }

@media all and (min-width: 1025px) {
  html.remodal-is-locked {
    overflow: auto;
    -ms-touch-action: auto;
    touch-action: auto; } }

@media all and (max-width: 1024px) {
  html.remodal-is-locked body {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
    width: 100vw; } }

.remodal-wrapper {
  padding-left: 15px;
  padding-right: 15px; }

.remodal-overlay {
  background-color: rgba(0, 0, 0, 0.2); }

.jb-modal {
  padding: 40px 30px;
  text-align: left;
  border-radius: 5px;
  box-shadow: 0 0 20px -3px rgba(0, 0, 0, 0.5); }
  .jb-modal.jb-modal-center {
    text-align: center;
    padding: 40px 0 0; }
    @media only screen and (min-width: 768px) {
      .jb-modal.jb-modal-center {
        max-width: 990px; } }
  .jb-modal-body {
    padding: 0 20px 50px; }
    @media only screen and (min-width: 992px) {
      .jb-modal-body {
        padding: 0 20px 30px; } }
    .jb-modal-body .jb-h2, .jb-modal-body .jb-neos-headline-alternative {
      margin: 0 0 40px; }
      @media only screen and (min-width: 992px) {
        .jb-modal-body .jb-h2, .jb-modal-body .jb-neos-headline-alternative {
          margin: 0 0 15px; } }
    .jb-modal-body .jb-copy {
      margin: 0; }
  .jb-modal-footer {
    padding: 40px 20px;
    background-color: #f4f6f8; }
    .jb-modal-footer .jb-btn {
      display: inline-block;
      width: 100%;
      max-width: 250px;
      margin-right: 5px; }
      @media only screen and (max-width: 767px) {
        .jb-modal-footer .jb-btn {
          display: block;
          margin: 0 auto; }
          .jb-modal-footer .jb-btn:first-child {
            margin-bottom: 20px; } }

.jb-modal-close {
  position: absolute;
  cursor: pointer;
  right: 20px;
  top: 20px;
  width: 20px;
  height: 20px; }

.jb-modal-content .jb-h1, .jb-modal-content .jb-h2, .jb-modal-content .jb-neos-headline-alternative, .jb-modal-content .jb-h3 {
  margin-top: 0; }

.jb-modal-content p + .jb-h1, .jb-modal-content p + .jb-h2, .jb-modal-content p + .jb-neos-headline-alternative, .jb-modal-content p + .jb-h3 {
  margin-top: 1.5em; }

.jb-modal-content p:last-child {
  margin-bottom: 0; }

.jb-modal-action {
  margin-top: 30px; }

input:invalid,
input:-moz-ui-invalid {
  box-shadow: none; }

.jb-input, .jb-input-textarea {
  height: 50px;
  border: 1px solid #82909f;
  padding-right: 20px;
  padding-left: 20px;
  margin-bottom: 20px;
  border-radius: 0;
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  width: 100%;
  -webkit-appearance: none;
  box-shadow: none;
  outline: none; }
  .jb-input:focus, .jb-input-textarea:focus {
    background-color: #f4f6f8; }
  .jb-input.jb-input-border-dark, .jb-input-border-dark.jb-input-textarea {
    border-color: #82909f; }
  @media all and (min-width: 768px) {
    .jb-input.jb-input-no-mgb-sm, .jb-input-no-mgb-sm.jb-input-textarea {
      margin-bottom: 0; } }

.jb-input[type=date], [type=date].jb-input-textarea {
  -webkit-appearance: none;
  -webkit-min-logical-width: 100%;
  background-color: white; }
  .jb-input[type=date]:focus, [type=date].jb-input-textarea:focus {
    background-color: #f4f6f8; }
  .jb-input[type=date]::-webkit-inner-spin-button, [type=date].jb-input-textarea::-webkit-inner-spin-button, .jb-input[type=date]::-webkit-outer-spin-button, [type=date].jb-input-textarea::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  .jb-input[type=date]::-webkit-datetime-edit, [type=date].jb-input-textarea::-webkit-datetime-edit {
    color: #000000; }
  .jb-input[type=date]::-webkit-calendar-picker-indicator, [type=date].jb-input-textarea::-webkit-calendar-picker-indicator {
    display: none; }

.jb-input[type=search], [type=search].jb-input-textarea {
  border-radius: 0;
  -webkit-appearance: none;
  box-shadow: none;
  outline: none; }
  .jb-input[type=search]:focus, [type=search].jb-input-textarea:focus {
    background-color: #f4f6f8; }

.jb-input[type=number], [type=number].jb-input-textarea {
  -moz-appearance: textfield; }
  .jb-input[type=number]:focus, [type=number].jb-input-textarea:focus {
    background-color: #f4f6f8; }
  .jb-input[type=number]::-webkit-inner-spin-button, [type=number].jb-input-textarea::-webkit-inner-spin-button, .jb-input[type=number]::-webkit-outer-spin-button, [type=number].jb-input-textarea::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    /* Removes leftover margin */ }

.jb-input-textarea {
  height: 150px;
  resize: none;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px; }
  .jb-input-textarea:focus {
    background-color: #f4f6f8; }

.jb-input-icon {
  position: relative; }
  .jb-input-icon input {
    height: 50px;
    color: #000000;
    width: 100%;
    padding-left: 40px;
    padding-right: 0;
    margin-right: 0;
    margin-left: 0;
    border: 1px solid #d4dbe3;
    border-radius: 0;
    -webkit-appearance: none;
    box-shadow: none; }
    .jb-input-icon input:focus {
      background-color: #f4f6f8; }
  .jb-input-icon .jb-input-svg {
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 20px;
    max-height: 50px;
    pointer-events: none;
    z-index: 9; }

.jb-input-double-icon input {
  padding-right: 50px; }
  .jb-input-double-icon input:focus {
    background-color: #f4f6f8; }

.jb-input-double-icon svg:last-of-type {
  left: auto;
  right: 25px;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%); }

.jb-radio input, .jb-checkbox input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0; }

.jb-radio label, .jb-checkbox label {
  position: relative;
  padding-left: 30px;
  min-height: 20px;
  color: #000000; }
  .jb-radio label:before, .jb-radio label:after, .jb-checkbox label:before, .jb-checkbox label:after {
    position: absolute;
    content: "";
    display: block;
    left: 10px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); }

.jb-checkbox-right label {
  padding-left: 0;
  padding-right: 30px;
  text-align: right; }
  .jb-checkbox-right label:before, .jb-checkbox-right label:after {
    right: 0;
    left: auto; }

.jb-radio label:before {
  height: 20px;
  width: 20px;
  top: 0;
  border-radius: 100%;
  border: 2px solid #000000; }

.jb-radio input:checked + label:before {
  background-color: white; }

.jb-radio input:focus + label:before {
  box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.15);
  background-color: #f4f6f8; }

.jb-radio input:checked + label:after {
  height: 10px;
  width: 10px;
  top: 5px;
  border-radius: 100%;
  background-color: #000000; }

.jb-checkbox label:before {
  height: 20px;
  width: 20px;
  top: 0;
  border: 2px solid #000000; }

.jb-checkbox input:checked + label:before {
  background-color: white; }

.jb-checkbox input:focus + label:before {
  box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.15);
  background-color: #f4f6f8; }

.jb-checkbox input:checked + label:after {
  height: 12px;
  width: 12px;
  top: 6px;
  background-image: url("../Images/Icons/svgs/Check.svg");
  background-size: 100%;
  background-repeat: no-repeat; }

.jb-label, .jb-input-icon-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 10px;
  color: #000000;
  float: left; }

.jb-label-block {
  float: none;
  display: inline-block;
  margin: 0;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%; }

.jb-input-icon-label {
  float: none;
  display: block; }

.jb-special-label-small div {
  color: white;
  padding: 4px 10px 4px 10px;
  display: inline-block;
  margin: 3px 3px 25px 0;
  position: relative;
  background-color: #82909f;
  line-height: 14px; }
  .jb-special-label-small div:after {
    content: "";
    position: absolute;
    display: block;
    left: 100%;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 22px 14px 0 0;
    border-color: #82909f transparent transparent transparent; }

.jb-special-label-small.jb-special-label-small-inline div {
  margin: 0 15px 0 0; }

.jb-special-label-small.jb-special-label-small-inline span {
  display: inline-block; }

/********* GENERAL PLACEHOLDER STYLES ***************/
::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #000000; }

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #000000;
  opacity: 1; }

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #000000;
  opacity: 1; }

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #000000; }

/**************** ICON STYLES ******************/
.jb-icon-star {
  height: 17px;
  width: 17px;
  fill: #fec500; }

.jb-icon-list {
  height: 17px;
  width: 17px;
  fill: #000000; }

.jb-icon-clock {
  width: 16px;
  height: 17px;
  fill: #fff; }

.jb-icon-heart {
  width: 13px;
  height: 13px;
  fill: #fec500; }

.jb-icon-like {
  width: 13px;
  height: 13px;
  fill: #fec500; }

.jb-icon-info {
  width: 17px;
  height: 17px;
  fill: #000000; }

.jb-icon-airplane-right,
.jb-icon-airplane-left {
  width: 25px;
  height: 25px;
  fill: #fff; }

.jb-icon-airplane-left {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg); }

.jb-icon-plain-departure {
  width: 16px;
  height: 16px;
  fill: #000000; }

.jb-icon-plain-arrival {
  width: 16px;
  height: 16px;
  fill: #000000; }

.jb-icon-hourglass {
  width: 16px;
  height: 16px;
  fill: #ff4700; }

.jb-icon-luggage {
  width: 20px;
  height: 20px;
  fill: #000000; }

.jb-icon-check {
  width: 20px;
  height: 20px;
  fill: #fec500; }

.jb-icon-trophy {
  width: 22px;
  height: 22px;
  fill: #fec500; }

.jb-icon-wifi {
  width: 30px;
  height: 30px;
  fill: #fec500; }

.jb-icon-small-arrow-down {
  width: 11px;
  height: 11px;
  fill: #000000; }

.jb-icon-inline {
  fill: #000000;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  position: relative;
  top: 3px; }

.jb-invalid {
  background-color: #fec500 !important; }

.jb-invalid + .select2-container .select2-selection {
  background-color: #fec500; }

.jb-error-box {
  background-color: #ff4700;
  color: white;
  padding: 10px 20px;
  margin-bottom: 20px;
  font-size: 15px; }
  .jb-error-box ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-position: inside; }
    .jb-error-box ul li:only-child {
      list-style: none; }
  .jb-error-box p {
    color: white; }
    .jb-error-box p:only-child {
      margin-bottom: 0; }

.jb-desktopsearch .jb-flightsearch-error {
  background-color: #ff4700;
  color: #ffffff;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 15px;
  padding: 8px 15px 8px; }
  .jb-desktopsearch .jb-flightsearch-error-list {
    padding: 0;
    margin: 0; }
  .jb-desktopsearch .jb-flightsearch-error-item {
    list-style: none; }

.jb-mobilesearch .jb-flightsearch-error {
  color: #ff4700;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 15px;
  padding: 8px 15px 8px; }
  .jb-mobilesearch .jb-flightsearch-error-list {
    padding: 0;
    margin: 0; }
  .jb-mobilesearch .jb-flightsearch-error-item {
    list-style: none; }

.tooltipster-sidetip .tooltipster-box {
  /*background-color:$brand-secondary;
  color:white;
  @include msReg();
  font-size:14px;

  	.tooltipster-content {
		padding:20px;
	}*/
  border: none;
  background-color: #ffffff;
  border-radius: 0px;
  max-width: 150px;
  height: 150px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.4); }

.tooltipster-arrow-border {
  border: none; }

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #ffffff; }

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
  border-top-color: #ffffff; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #ffffff; }

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: #ffffff; }

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
  border-left-color: #ffffff; }

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
  border-left-color: #ffffff; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #ffffff; }

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
  border-right-color: #ffffff; }

.tooltipster-sidetip .tooltipster-content {
  padding: 3px 10px;
  margin-top: 7px; }

.jb-tooltip .jb-tooltip-content {
  display: none; }

.jb-tooltip-content span {
  display: block; }

#jb-share-tooltip-templates {
  display: none; }

#jb-share-tooltip-content {
  padding-top: 6px; }

.jb-share-tooltip .jb-share-link {
  width: 100%;
  height: 100%;
  display: block; }

.jb-share-tooltip .jb-share-link:hover .jb-share-icon {
  fill: #ff4700; }

.jb-share-tooltip-quarter {
  width: 50%;
  position: relative;
  min-height: 58px;
  float: left;
  height: 60px; }

.jb-share-tooltip-quarter-top-left {
  border-bottom: 1px solid #d4dbe3; }

.jb-share-tooltip-quarter-top-right {
  border-bottom: 1px solid #d4dbe3;
  border-left: 1px solid #d4dbe3; }

.jb-share-tooltip-quarter-bottom-right {
  border-left: 1px solid #d4dbe3; }

.jb-share-tooltip .jb-share-icon {
  fill: #000000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.jb-share-tooltip .jb-share-icon-facebook {
  width: 13px;
  height: 24px; }

.jb-share-tooltip .jb-share-icon-twitter {
  width: 23px;
  height: 19px; }

.jb-share-tooltip .jb-share-icon-google-plus {
  width: 30px;
  height: 20px; }

.jb-share-tooltip .jb-share-icon-pinterest {
  width: 19px;
  height: 24px; }

.jb-overlay-menu-container {
  position: relative;
  padding-bottom: 10px; }

.jb-overlay-menu-checkbox {
  position: absolute;
  visibility: hidden;
  height: 0;
  width: 0;
  opacity: 0; }

.jb-overlay-menu,
.jb-mybooking-overlay-menu {
  position: absolute;
  background-color: white;
  top: calc(100% + 15px);
  opacity: 0;
  pointer-events: none;
  z-index: 200;
  padding: 16px 20px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
  right: 0;
  transition: all 0.2s ease-out; }
  .jb-overlay-menu li,
  .jb-mybooking-overlay-menu li {
    list-style-type: none; }
    .jb-overlay-menu li + li,
    .jb-mybooking-overlay-menu li + li {
      margin-top: 10px; }
  .jb-overlay-menu:after, .jb-overlay-menu:before,
  .jb-mybooking-overlay-menu:after,
  .jb-mybooking-overlay-menu:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    background-color: white; }
  .jb-overlay-menu:before,
  .jb-mybooking-overlay-menu:before {
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
    -webkit-transform: translateY(-4px) rotateX(-45deg) rotateZ(45deg);
    transform: translateY(-4px) rotateX(-45deg) rotateZ(45deg);
    width: 10px;
    height: 10px;
    right: 10px; }
  .jb-overlay-menu:after,
  .jb-mybooking-overlay-menu:after {
    width: 20px;
    height: 16px;
    right: 5px; }

.jb-overlay-menu-checkbox:checked ~ .jb-overlay-menu,
.jb-overlay-menu-checkbox:checked ~ .jb-mybooking-overlay-menu {
  top: 100%;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.2s ease-out; }

.jb-overlay-menu-left {
  left: 0;
  right: auto; }
  .jb-overlay-menu-left:before {
    left: 10px;
    right: auto; }

.no-csspointerevents .jb-overlay-menu {
  display: none; }

.no-csspointerevents .jb-overlay-menu-checkbox:checked ~ .jb-overlay-menu {
  display: block; }

.jb-mybooking-info {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px; }
  .jb-mybooking-info .jb-input-svg {
    width: 30px;
    height: 30px;
    margin-right: 8px; }

.jb-mybooking-text {
  font-size: 12px; }

.jb-mybooking-input {
  margin-bottom: 10px;
  border: 1px solid #d4dbe3;
  padding: 10px;
  width: 100%;
  transition: box-shadow 0.3s; }
  .jb-mybooking-input:focus {
    box-shadow: inset 0 0 0 2px #82909f; }

.jb-mybooking-submit {
  font-size: 12px;
  width: 100%;
  background-color: #000;
  transition: background-color 0.3s; }
  .jb-mybooking-submit:hover {
    background-color: #262626 !important; }

.jb-mybooking-error {
  border-color: #ff4700; }

.jb-nav-mybooking-title {
  padding-right: 15px; }

/* MailChimp Form Embed Code - Classic - 12/17/2015 v10.7 */
#mc_embed_signup form {
  display: block;
  position: relative;
  text-align: left;
  padding: 10px 0 10px 3%; }

#mc_embed_signup h2 {
  font-weight: bold;
  padding: 0;
  margin: 15px 0;
  font-size: 1.4em; }

#mc_embed_signup input {
  border: 1px solid #ABB0B2;
  border-radius: 3px; }

#mc_embed_signup input[type=checkbox] {
  -webkit-appearance: checkbox; }

#mc_embed_signup input[type=radio] {
  -webkit-appearance: radio; }

#mc_embed_signup input:focus {
  border-color: #333; }

#mc_embed_signup .button {
  clear: both;
  background-color: #aaa;
  border: 0 none;
  border-radius: 4px;
  transition: all 0.23s ease-in-out 0s;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: normal;
  height: 32px;
  line-height: 32px;
  margin: 0 5px 10px 0;
  padding: 0 22px;
  text-align: center;
  text-decoration: none;
  vertical-align: top;
  white-space: nowrap;
  width: auto; }

#mc_embed_signup .button:hover {
  background-color: #777; }

#mc_embed_signup .small-meta {
  font-size: 11px; }

#mc_embed_signup .nowrap {
  white-space: nowrap; }

#mc_embed_signup .mc-field-group {
  clear: left;
  position: relative;
  width: 96%;
  padding-bottom: 3%;
  min-height: 50px; }

#mc_embed_signup .size1of2 {
  clear: none;
  float: left;
  display: inline-block;
  width: 46%;
  margin-right: 4%; }

* html #mc_embed_signup .size1of2 {
  margin-right: 2%;
  /* Fix for IE6 double margins. */ }

#mc_embed_signup .mc-field-group label {
  display: block;
  margin-bottom: 3px; }

#mc_embed_signup .mc-field-group input {
  display: block;
  width: 100%;
  padding: 8px 0;
  text-indent: 2%; }

#mc_embed_signup .mc-field-group select {
  display: inline-block;
  width: 99%;
  padding: 5px 0;
  margin-bottom: 2px; }

#mc_embed_signup .datefield, #mc_embed_signup .phonefield-us {
  padding: 5px 0; }

#mc_embed_signup .datefield input, #mc_embed_signup .phonefield-us input {
  display: inline;
  width: 60px;
  margin: 0 2px;
  letter-spacing: 1px;
  text-align: center;
  padding: 5px 0 2px 0; }

#mc_embed_signup .phonefield-us .phonearea input, #mc_embed_signup .phonefield-us .phonedetail1 input {
  width: 40px; }

#mc_embed_signup .datefield .monthfield input, #mc_embed_signup .datefield .dayfield input {
  width: 30px; }

#mc_embed_signup .datefield label, #mc_embed_signup .phonefield-us label {
  display: none; }

#mc_embed_signup .indicates-required {
  text-align: right;
  font-size: 11px;
  margin-right: 4%; }

#mc_embed_signup .asterisk {
  color: #e85c41;
  font-size: 150%;
  font-weight: normal;
  position: relative;
  top: 5px; }

#mc_embed_signup .clear {
  clear: both; }

#mc_embed_signup .mc-field-group.input-group ul {
  margin: 0;
  padding: 5px 0;
  list-style: none; }

#mc_embed_signup .mc-field-group.input-group ul li {
  display: block;
  padding: 3px 0;
  margin: 0; }

#mc_embed_signup .mc-field-group.input-group label {
  display: inline; }

#mc_embed_signup .mc-field-group.input-group input {
  display: inline;
  width: auto;
  border: none; }

#mc_embed_signup div#mce-responses {
  float: left;
  top: -1.4em;
  padding: 0em .5em 0em .5em;
  overflow: hidden;
  width: 90%;
  margin: 0 5%;
  clear: both; }

#mc_embed_signup div.response {
  margin: 1em 0;
  padding: 1em .5em .5em 0;
  font-weight: bold;
  float: left;
  top: -1.5em;
  z-index: 1;
  width: 80%; }

#mc_embed_signup #mce-error-response {
  display: none; }

#mc_embed_signup #mce-success-response {
  color: #529214;
  display: none; }

#mc_embed_signup label.error {
  display: block;
  float: none;
  width: auto;
  margin-left: 1.05em;
  text-align: left;
  padding: .5em 0; }

#mc-embedded-subscribe {
  clear: both;
  width: auto;
  display: block;
  margin: 1em 0 1em 5%; }

#mc_embed_signup #num-subscribers {
  font-size: 1.1em; }

#mc_embed_signup #num-subscribers span {
  padding: .5em;
  border: 1px solid #ccc;
  margin-right: .5em;
  font-weight: bold; }

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
  display: inline-block;
  margin: 2px 0 1em 0;
  padding: 5px 10px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 3px;
  font-size: 14px;
  font-weight: normal;
  z-index: 1;
  color: #e85c41; }

#mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {
  border: 2px solid #e85c41; }

/*NEW DATEPICKER STYLES*/
.jb-search-dates:before, .jb-search-dates:after {
  display: table;
  content: " "; }

.jb-search-dates:after {
  clear: both; }

.CalendarDay--highlighted-calendar {
  background-color: #5b6e81;
  color: white; }

.CalendarMonth__caption strong {
  font-weight: 300; }

.DateInput {
  background: transparent;
  width: 100%;
  border: 1px solid #82909f;
  padding: 0;
  height: 50px;
  line-height: 50px; }

.DateInput--disabled {
  border-color: #D4DBE3; }

.DateInput--with-caret:before, .DateInput--with-caret:after {
  background-color: white;
  z-index: 50; }

.DateInput--with-caret:before {
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(4px) rotateX(-45deg) rotateZ(45deg);
  transform: translateY(4px) rotateX(-45deg) rotateZ(45deg);
  width: 10px;
  height: 10px;
  border: none; }

.DateInput--with-caret:after {
  width: 20px;
  height: 16px;
  -webkit-transform: translateY(8px) translateX(-6px);
  transform: translateY(8px) translateX(-6px);
  border: none; }

.DateRangePickerInput {
  border: none; }

.DateInput__display-text {
  padding: 0 0 0 40px;
  color: #000000;
  font-size: 14px;
  height: 100%; }

.DateInput__display-text--focused {
  border-radius: 0;
  background-color: #ffffff;
  border-color: #f4f6f8; }

.SingleDatePickerInput {
  border: none; }

.jb-deal-search .DateInput {
  width: 50%;
  border-color: #d4dbe3; }

.jb-deal-search .jb-deal-search-return-date .SingleDatePickerInput .DateInput {
  border-left: none; }

.jb-deal-search .jb-deal-search-date-range .DateInput ~ .DateInput {
  border-left: none; }

.jb-search-date-range .jb-input-icon .jb-input-svg {
  height: 20px;
  width: 21px; }

.jb-search-date-range .DateRangePickerInput .DateInput:last-child {
  margin-left: 10px; }

.jb-search-date-range .DateInput {
  width: calc(50% - 5px); }

.DateRangePicker__picker .DayPicker:not(.DayPicker--portal),
.SingleDatePicker__picker .DayPicker:not(.DayPicker--portal) {
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3); }

.jb-search-dates.jb-search-dates-range {
  display: block; }
  @media all and (max-width: 767px) {
    .jb-search-dates.jb-search-dates-range {
      display: none; } }
  .jb-search-dates.jb-search-dates-range.jb-search-dates-oneway {
    display: none; }
  .jb-search-dates.jb-search-dates-range .jb-search-departure-icon {
    left: calc(50% + 10px + 10px + 6px); }
  .jb-search-dates.jb-search-dates-range .jb-deal-search-date-range .jb-search-departure-icon {
    left: calc(50% + 10px + 10px); }
  .jb-search-dates.jb-search-dates-range .DateRangePicker {
    width: 100%; }
  .jb-search-dates.jb-search-dates-range .DateRangePicker__picker--direction-left {
    z-index: 49; }
    @media all and (min-width: 992px) {
      .jb-search-dates.jb-search-dates-range .DateRangePicker__picker--direction-left {
        padding-right: 30px;
        background-color: transparent; } }

.DateRangePickerInput {
  width: 100%; }

.DateRangePickerInput__arrow {
  display: none; }

.jb-search-dates.jb-search-dates-single {
  display: block; }
  @media all and (min-width: 768px) {
    .jb-search-dates.jb-search-dates-single {
      display: none; } }
  .jb-search-dates.jb-search-dates-single.jb-search-dates-oneway {
    display: block; }
  .jb-search-dates.jb-search-dates-single.jb-search-dates-return {
    display: none; }

.jb-deal-search .SingleDatePicker {
  display: block; }
  .jb-deal-search .SingleDatePicker .DateInput {
    width: 100%; }

body > div:last-child:not([class]) {
  z-index: 1000;
  position: relative; }

.SingleDatePicker__picker--portal {
  background-color: rgba(0, 0, 0, 0.5); }
  @media all and (min-width: 768px) {
    .SingleDatePicker__picker--portal {
      display: none; } }

.SingleDatePicker__close svg {
  fill: white;
  width: 20px;
  height: 20px; }

.SingleDatePicker__picker--full-screen-portal {
  background-color: rgba(0, 0, 0, 0.5); }
  @media all and (min-width: 768px) {
    .SingleDatePicker__picker--full-screen-portal {
      display: none; } }

.daterangepicker {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  border: none !important;
  box-shadow: none !important; }
  .daterangepicker:before, .daterangepicker:after {
    content: none !important; }
  .daterangepicker_input {
    display: none; }

.daterangepicker {
  position: absolute !important;
  color: inherit;
  border-radius: 0;
  width: 100%;
  padding: 4px;
  margin-top: 1px;
  z-index: 9 !important;
  top: 10px !important;
  left: 0 !important;
  /* Calendars */ }
  .daterangepicker:before, .daterangepicker:after {
    position: absolute;
    display: inline-block;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    content: ''; }
  .daterangepicker:before {
    top: -7px;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-bottom: 7px solid #ccc; }
  .daterangepicker:after {
    top: -6px;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent; }
  .daterangepicker.opensleft:before {
    right: 9px; }
  .daterangepicker.opensleft:after {
    right: 10px; }
  .daterangepicker.openscenter:before {
    left: 0;
    right: 0;
    width: 0;
    margin-left: auto;
    margin-right: auto; }
  .daterangepicker.openscenter:after {
    left: 0;
    right: 0;
    width: 0;
    margin-left: auto;
    margin-right: auto; }
  .daterangepicker.opensright:before {
    left: 9px; }
  .daterangepicker.opensright:after {
    left: 10px; }
  .daterangepicker.dropup {
    margin-top: -5px; }
    .daterangepicker.dropup:before {
      top: initial;
      bottom: -7px;
      border-bottom: initial;
      border-top: 7px solid #ccc; }
    .daterangepicker.dropup:after {
      top: initial;
      bottom: -6px;
      border-bottom: initial;
      border-top: 6px solid #fff; }
  .daterangepicker.dropdown-menu {
    max-width: none;
    z-index: 3001; }
  .daterangepicker.single .ranges, .daterangepicker.single .calendar {
    float: none; }
  .daterangepicker.single .daterangepicker_input {
    display: none; }
  .daterangepicker.show-calendar .calendar {
    display: block; }
  .daterangepicker .calendar {
    display: none;
    width: 100%;
    margin: 4px 0; }
    .daterangepicker .calendar.single .calendar-table {
      border: none; }
    .daterangepicker .calendar th, .daterangepicker .calendar td {
      white-space: nowrap;
      text-align: center;
      font-weight: 300;
      padding: 7px 0;
      min-width: 32px; }
  .daterangepicker .calendar-table {
    border: 1px solid #fff;
    padding: 4px;
    border-radius: 0;
    background-color: #fff; }
  .daterangepicker table {
    width: 100%;
    margin: 0;
    border-collapse: inherit; }
  .daterangepicker td, .daterangepicker th {
    text-align: center;
    width: 20px;
    height: 20px;
    border-radius: 0;
    white-space: nowrap;
    cursor: pointer;
    border: none; }
    .daterangepicker td.available, .daterangepicker th.available {
      border-right: 0;
      border-bottom: 0;
      padding: 15px 0;
      width: 40px;
      color: #000;
      font-weight: 400; }
    .daterangepicker td.week, .daterangepicker th.week {
      font-size: 80%;
      color: #ccc; }
  .daterangepicker td.off {
    border-bottom: 0;
    padding: 15px 10px;
    border-bottom: 0; }
    .daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
      background-color: #fff;
      color: #ccc; }
  .daterangepicker td.off1 {
    color: #fff !important; }
  .daterangepicker td.in-range {
    background-color: #d4dbe3;
    color: #000;
    border-radius: 0;
    border-right: 0;
    border-bottom: 0;
    padding: 15px 0; }
  .daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: #313b45;
    color: #fff; }
  .daterangepicker td.premonth {
    color: #fff !important; }
    .daterangepicker td.premonth.available:hover {
      background-color: transparent;
      border-color: #e4e7e7; }
  .daterangepicker th.month {
    width: auto;
    font-size: 22px;
    font-weight: 300;
    color: #3c3f40; }
  .daterangepicker td.disabled, .daterangepicker option.disabled {
    color: #D2D2D2;
    cursor: not-allowed; }
  .daterangepicker select.monthselect, .daterangepicker select.yearselect {
    font-size: 12px;
    padding: 1px;
    height: auto;
    margin: 0;
    cursor: default; }
  .daterangepicker select.monthselect {
    margin-right: 2%;
    width: 56%; }
  .daterangepicker select.yearselect {
    width: 40%; }
  .daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
    width: 50px;
    margin-bottom: 0; }
  .daterangepicker .input-mini {
    background-color: transparent;
    border: none;
    text-align: center;
    padding: 0 !important;
    width: 100%;
    color: #000;
    opacity: 1; }
  .daterangepicker .left {
    padding-right: 0;
    background-color: #fff; }
    .daterangepicker .left .daterangepicker_input {
      left: 0; }
  .daterangepicker .right {
    background-color: #fff;
    padding-left: 30px;
    border-left: 1px solid #d4dbe3; }
    .daterangepicker .right .daterangepicker_input {
      right: 0; }
  .daterangepicker .daterangepicker_input {
    display: block;
    position: fixed;
    bottom: 70px;
    background-color: #D4DBE3;
    width: 50%; }
    .daterangepicker .daterangepicker_input i {
      position: absolute;
      left: 8px;
      top: 8px; }
  .daterangepicker.rtl .input-mini {
    padding-right: 28px;
    padding-left: 6px; }
  .daterangepicker.rtl .daterangepicker_input i {
    left: auto;
    right: 8px; }
  .daterangepicker .calendar-time {
    text-align: center;
    margin: 5px auto;
    line-height: 30px;
    position: relative;
    padding-left: 28px; }
    .daterangepicker .calendar-time select.disabled {
      color: #ccc;
      cursor: not-allowed; }
  .daterangepicker .prev.available,
  .daterangepicker .next.available {
    border: 1px solid #e4e7e7;
    padding: 8px 8px 5px 12px; }
    .daterangepicker .prev.available:hover,
    .daterangepicker .next.available:hover {
      background-color: transparent;
      border: 1px solid #e4e7e7; }
  .daterangepicker .glyphicon-chevron-left {
    background: url("../Images/Icons/svgs/Arrow_Left.svg") no-repeat center center;
    width: 20px;
    height: 20px;
    display: inline-block; }
  .daterangepicker .glyphicon-chevron-right {
    background: url("../Images/Icons/svgs/Arrow_Right.svg") no-repeat center center;
    width: 20px;
    height: 20px;
    display: inline-block; }

.ranges {
  width: 100%; }
  .ranges ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%; }
  .ranges li {
    font-size: 13px;
    background-color: #f5f5f5;
    color: #08c;
    padding: 3px 12px;
    margin-bottom: 8px;
    cursor: pointer; }
    .ranges li:hover {
      background-color: #08c;
      color: #fff; }
    .ranges li.active {
      background-color: #08c;
      color: #fff; }
  .ranges .applyBtn {
    border: none;
    width: 100%;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 20px;
    padding: 15px 20px;
    background-color: #ff4700; }
  .ranges .cancelBtn {
    display: none; }

.jb-mobilesearch--calendar .right .calendar-table {
  display: none; }

.jb-desktopsearch-dropmenu-date .daterangepicker_input {
  display: none; }

.jb-desktopsearch-dropmenu-date .daterangepicker {
  position: relative !important;
  top: -7px !important; }

.daterangepicker-mobile table.daterangepicker-weekday {
  padding-left: 4px;
  padding-right: 4px; }
  .daterangepicker-mobile table.daterangepicker-weekday th {
    width: 14.2847%; }

.daterangepicker-mobile .mobile-calendar-scroll-area {
  height: calc(100vh - 330px);
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 10px;
  -webkit-overflow-scrolling: touch; }

.daterangepicker-mobile.single .mobile-calendar-scroll-area {
  height: calc(100vh - 100px); }

.daterangepicker-mobile .daterangepicker-travel-dates {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 15px; }
  .daterangepicker-mobile .daterangepicker-travel-dates .departureDate,
  .daterangepicker-mobile .daterangepicker-travel-dates .returnDate {
    border-radius: 0;
    color: #000;
    display: block;
    background-color: #D4DBE3;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 500;
    padding: 5px 0 5px;
    text-align: center;
    border: 1px solid #D4DBE3;
    width: 50%; }
    .daterangepicker-mobile .daterangepicker-travel-dates .departureDate.active,
    .daterangepicker-mobile .daterangepicker-travel-dates .returnDate.active {
      border: 1px solid #000000; }
    .daterangepicker-mobile .daterangepicker-travel-dates .departureDate .date-label,
    .daterangepicker-mobile .daterangepicker-travel-dates .returnDate .date-label {
      color: #000; }

.daterangepicker-mobile .table-condensed th:first-child {
  display: none; }

.daterangepicker-mobile .table-condensed th.month {
  font-size: 20px;
  text-align: left;
  padding-left: 4px; }

/*  Larger Screen Styling */
@media (min-width: 564px) {
  .daterangepicker td.off {
    padding: 7px 10px; }
  .daterangepicker td.in-range {
    padding: 7px 10px; }
  .daterangepicker td.available {
    padding: 7px 10px; }
    .daterangepicker td.available:hover {
      background-color: #313b45;
      border-color: transparent;
      color: #fff; }
  .daterangepicker .ranges ul {
    width: 160px; }
  .daterangepicker.single .ranges ul {
    width: 100%; }
  .daterangepicker.single .calendar.left {
    clear: none; }
  .daterangepicker.single.ltr .ranges, .daterangepicker.single.ltr .calendar {
    float: left; }
  .daterangepicker.single.rtl .ranges, .daterangepicker.single.rtl .calendar {
    float: right; }
  .daterangepicker.ltr {
    direction: ltr;
    text-align: left; }
    .daterangepicker.ltr .calendar.left {
      clear: left;
      margin-right: 0; }
      .daterangepicker.ltr .calendar.left .calendar-table {
        border-right: none;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; }
    .daterangepicker.ltr .calendar.right {
      margin-left: 0; }
      .daterangepicker.ltr .calendar.right .calendar-table {
        border-left: none;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0; }
    .daterangepicker.ltr .left .daterangepicker_input {
      padding-right: 12px; }
    .daterangepicker.ltr .calendar.left .calendar-table {
      padding-right: 12px; }
    .daterangepicker.ltr .ranges, .daterangepicker.ltr .calendar {
      float: left; }
  .daterangepicker.rtl {
    direction: rtl;
    text-align: right; }
    .daterangepicker.rtl .calendar.left {
      clear: right;
      margin-left: 0; }
      .daterangepicker.rtl .calendar.left .calendar-table {
        border-left: none;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0; }
    .daterangepicker.rtl .calendar.right {
      margin-right: 0; }
      .daterangepicker.rtl .calendar.right .calendar-table {
        border-right: none;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; }
    .daterangepicker.rtl .left .daterangepicker_input {
      padding-left: 12px; }
    .daterangepicker.rtl .calendar.left .calendar-table {
      padding-left: 12px; }
    .daterangepicker.rtl .ranges, .daterangepicker.rtl .calendar {
      text-align: right;
      float: right; } }

@media (min-width: 730px) {
  .daterangepicker.ltr .ranges {
    float: left; }
  .daterangepicker.rtl .ranges {
    float: right; }
  .daterangepicker .calendar.left {
    clear: none !important; }
  .daterangepicker .left {
    padding-right: 25px; } }

@media (min-width: 992px) {
  .daterangepicker .calendar {
    width: 50%; } }

/* iPhone Fix */
/* iphone 5,5s Landscape & Portrait */
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: portrait) {
  .daterangepicker .input-mini {
    padding: 28px 0 7px;
    font-size: 16px; }
  .daterangepicker td.off {
    padding: 7px 10px; }
  .daterangepicker td.in-range {
    padding: 7px 10px; }
  .daterangepicker td.available {
    padding: 7px 10px; } }

@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: portrait) {
  .daterangepicker td.off {
    padding: 15px 10px; }
  .daterangepicker td.in-range {
    padding: 15px 10px; }
  .daterangepicker td.available {
    padding: 15px 10px; } }

/* iPhone x Portrait */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
  .daterangepicker td.off {
    padding: 15px 10px; }
  .daterangepicker td.in-range {
    padding: 15px 10px; }
  .daterangepicker td.available {
    padding: 15px 10px; } }

/* Landscape */
/* 5, 5s,5c 5SE */
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .daterangepicker-travel-dates {
    display: none !important; }
  .daterangepicker-mobile .mobile-calendar-scroll-area {
    height: calc(100vh - 160px); } }

/* 6, 6s, 7, 8 */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .daterangepicker-travel-dates {
    display: none !important; }
  .daterangepicker-mobile .mobile-calendar-scroll-area {
    height: calc(100vh - 160px); } }

/* 6+, 7+, 8+ */
@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .daterangepicker-travel-dates {
    display: none !important; }
  .daterangepicker-mobile .mobile-calendar-scroll-area {
    height: calc(100vh - 160px); }
  .daterangepicker td.off {
    padding: 7px 10px; }
  .daterangepicker td.in-range {
    padding: 7px 10px; }
  .daterangepicker td.available {
    padding: 7px 10px; } }

/* iphone x */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .daterangepicker-travel-dates {
    display: none !important; }
  .daterangepicker-mobile .mobile-calendar-scroll-area {
    height: calc(100vh - 160px); } }

/********* SELECT STYLES ***************/
.select2-container {
  width: 100% !important;
  color: #000000;
  margin-bottom: 20px; }

.jb-select-no-margin + .select2-container {
  margin-bottom: 0; }

.jb-select-border + .select2-container {
  border: 1px solid #82909f; }

.select2-selection--single {
  padding: 10px 30px 10px 20px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  background: #fff;
  height: 48px !important;
  border-radius: 0 !important;
  border: none !important; }

.select2-container--open .select2-selection--single,
.select2-container--focus .select2-selection--single {
  background-color: #f4f6f8;
  outline: none; }

.select2-container--focus {
  z-index: 1; }

.select2-container--default .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 0;
  height: 48px;
  width: auto;
  right: 15px; }
  .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none; }
    .select2-container--default .select2-selection--single .select2-selection__arrow b:before {
      position: absolute;
      top: calc(50% - 2px);
      padding-bottom: 3px;
      content: "";
      display: inline-block;
      width: 6px;
      height: 6px;
      border-right: 1px solid #000;
      border-top: 1px solid #000;
      -webkit-transform: rotate(135deg);
      transform: rotate(135deg); }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border: none; }
  .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b:before {
    position: absolute;
    top: 1px;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg); }

.jb-select-transparent .select2-container--default .select2-selection--single .select2-selection__arrow {
  /*right:10px;
    b {
        clear:both;
        margin:0 auto;
        display:inline-block;

    }*/ }

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0; }

.select2-dropdown {
  border-left: 1px solid #82909f;
  border-right: 1px solid #82909f;
  border-bottom: 1px solid #82909f;
  border-radius: 0;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.12); }

.select2-dropdown {
  display: inline-table; }

.select2-results__option {
  padding: 10px 5px 10px 20px; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 300px;
  overflow-y: auto; }
  @media all and (min-width: 768px) {
    .select2-container--default .select2-results > .select2-results__options {
      white-space: nowrap; } }

.select2-search:before {
  content: url("data:image/svg+xml;utf8,<svg viewBox='0 0 60 60' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'><g stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'><g transform='translate(2.000000, 2.000000)' stroke='black' stroke-width='3'><circle id='Oval' cx='19.5' cy='19.5' r='19.5'></circle><path d='M33.5,33.5 L55.5,55.5' stroke-linecap='square'></path></g></g></svg>");
  width: 14px;
  height: 14px;
  display: block;
  position: absolute;
  top: 15px;
  left: 15px; }

.select2-search--dropdown {
  padding: 9px;
  z-index: 5;
  position: relative; }
  .select2-search--dropdown .select2-search__field {
    padding-left: 25px; }

.select2-container--default .select2-results__option[aria-selected="true"] {
  background: #fff; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #f4f6f8;
  color: #000000;
  padding: 10px 5px 10px 20px; }

.select2-results__option, .select2-results__option--highlighted[aria-selected] {
  padding: 10px 20px 10px 20px !important; }

.jb-select-transparent label {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
  margin-right: 10px; }

.jb-select-transparent .jb-select-border .select2-container {
  border: 1px solid #82909f; }

.jb-select-transparent .select2-container {
  width: auto !important;
  float: left; }

.jb-select-transparent .select2-selection--single {
  top: 20px;
  padding: 0 20px 0 0;
  font-size: 14px;
  background: transparent;
  height: 20px !important;
  border-radius: 0 !important;
  outline: none;
  border: none !important; }

.jb-select-transparent .select2-container--open .select2-selection--single {
  border: none;
  box-shadow: none; }

.jb-select-transparent .select2-container--default .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 2px;
  height: auto;
  right: 5px; }
  .jb-select-transparent .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none; }
    .jb-select-transparent .select2-container--default .select2-selection--single .select2-selection__arrow b:before {
      position: absolute;
      top: 6px;
      padding-bottom: 3px;
      content: "";
      display: inline-block;
      width: 6px;
      height: 6px;
      -webkit-transform: rotate(135deg);
      transform: rotate(135deg); }

.jb-select-transparent .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border: none; }
  .jb-select-transparent .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b:before {
    position: absolute;
    top: 10px;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg); }

.jb-select-transparent .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0;
  color: #000000;
  line-height: 20px;
  display: inline-block; }

.jb-select-transparent .select2-results__option {
  padding: 10px 5px 10px 20px; }

.jb-select-transparent .select2-container--default .select2-results__option[aria-selected="true"] {
  background: #fff; }

.jb-select-transparent .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #f4f6f8;
  color: #000000;
  padding: 10px 5px 10px 20px; }

.jb-select-transparent .select2-selection--single {
  padding-right: 26px; }

.jb-select-small .select2-container {
  margin: 0; }

.jb-select-small label {
  font-size: 13px; }

.jb-select-small .select2-selection--single {
  font-size: 13px;
  padding: 0 15px 0 0; }

.jb-select-box .select2-dropdown {
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
  border: none !important;
  -webkit-transform: translateY(10px);
  transform: translateY(10px); }
  .jb-select-box .select2-dropdown:after, .jb-select-box .select2-dropdown:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    background-color: white; }
  .jb-select-box .select2-dropdown:before {
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
    -webkit-transform: translateY(-4px) rotateX(-45deg) rotateZ(45deg);
    transform: translateY(-4px) rotateX(-45deg) rotateZ(45deg);
    width: 10px;
    height: 10px;
    left: 10px; }
  .jb-select-box .select2-dropdown:after {
    width: 20px;
    height: 16px;
    left: 5px; }

.jb-select-box .select2-selection--single {
  border-radius: 0 !important;
  outline: none;
  border: none !important; }

.jb-select-box .select2-results {
  position: relative;
  z-index: 1; }

.js-select2-box + .select2-container--focus .select2-selection__rendered {
  text-decoration: underline; }

.jb-select-multiple ~ .select2-container {
  color: #fff;
  margin-bottom: 20px; }
  .jb-select-multiple ~ .select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none; }
    .jb-select-multiple ~ .select2-container .select2-selection--multiple .select2-selection__rendered {
      display: inline-block;
      overflow: hidden;
      padding-left: 8px;
      text-overflow: ellipsis;
      white-space: nowrap; }

.jb-select-multiple ~ .select2-container--default .select2-selection--multiple {
  background-color: #f8f8f8;
  border: 1px solid #aaa;
  border-radius: 0;
  cursor: text;
  min-height: 50px; }
  .jb-select-multiple ~ .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%; }
  .jb-select-multiple ~ .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #999;
    margin-top: 5px;
    float: left; }
  .jb-select-multiple ~ .select2-container--default .select2-selection--multiple .select2-selection__clear {
    position: absolute;
    height: 22px;
    width: 22px;
    background-color: #5a6e82;
    border-radius: 45%;
    z-index: 3;
    top: 15px;
    left: 10px;
    cursor: pointer;
    font-size: 0;
    float: none;
    margin: 0; }
    .jb-select-multiple ~ .select2-container--default .select2-selection--multiple .select2-selection__clear:before, .jb-select-multiple ~ .select2-container--default .select2-selection--multiple .select2-selection__clear:after {
      content: '';
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      background-color: #fff;
      height: 1px;
      width: 15px; }
    .jb-select-multiple ~ .select2-container--default .select2-selection--multiple .select2-selection__clear:before {
      -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      transform: translate(-50%, -50%) rotate(-45deg); }
    .jb-select-multiple ~ .select2-container--default .select2-selection--multiple .select2-selection__clear:after {
      -webkit-transform: translate(-50%, -50%) rotate(45deg);
      transform: translate(-50%, -50%) rotate(45deg); }
  .jb-select-multiple ~ .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #5a6e82;
    border: none;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 11px;
    padding: 5px 2px 5px 5px;
    line-height: 16px; }
    .jb-select-multiple ~ .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(2) {
      position: relative;
      margin-left: 35px; }
  .jb-select-multiple ~ .select2-container--default .select2-selection--multiple .select2-search__field {
    padding-left: 40px;
    margin: 0;
    padding-top: 16px;
    height: inherit; }
  .jb-select-multiple ~ .select2-container--default .select2-selection--multiple li + .select2-search .select2-search__field {
    padding-left: 0; }
  .jb-select-multiple ~ .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    position: relative;
    color: #5a6e82;
    background: #fff;
    width: 23px;
    height: 23px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    float: right;
    font-size: 37px;
    font-weight: 300;
    line-height: 23px;
    text-align: center;
    margin: -3px 0 -3px 8px;
    font-size: 0; }
    .jb-select-multiple ~ .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:before, .jb-select-multiple ~ .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:after {
      content: '';
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      background-color: #5a6e82;
      height: 1px;
      width: 15px; }
    .jb-select-multiple ~ .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:before {
      -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      transform: translate(-50%, -50%) rotate(-45deg); }
    .jb-select-multiple ~ .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:after {
      -webkit-transform: translate(-50%, -50%) rotate(45deg);
      transform: translate(-50%, -50%) rotate(45deg); }
  .jb-select-multiple ~ .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover:before, .jb-select-multiple ~ .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover:after {
    background-color: #fec500; }

.jb-select-multiple ~ .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.jb-select-multiple ~ .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,
.jb-select-multiple ~ .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }

.jb-select-multiple ~ .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.jb-select-multiple ~ .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.jb-select-multiple ~ .select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }

.jb-select-multiple ~ .select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.jb-select-multiple-list .select2-results__option,
.jb-select-multiple-list .select2-results__option--highlighted[aria-selected],
.js-select2-filter-list .select2-results__option,
.js-select2-filter-list .select2-results__option--highlighted[aria-selected] {
  padding: 5px 20px 5px 20px !important; }

.jb-select-multiple-list .select2-results__option[aria-selected="true"],
.js-select2-filter-list .select2-results__option[aria-selected="true"] {
  color: rgba(0, 0, 0, 0.5);
  background-color: #fff; }

.jb-select-multiple-list .select2-results__option--highlighted[aria-selected],
.js-select2-filter-list .select2-results__option--highlighted[aria-selected] {
  background: #f4f6f8; }

.jb-footer #mc_embed_signup form {
  padding: 0; }

.jb-footer #mc_embed_signup input[type=email] {
  border-radius: 0;
  padding-left: 20px; }
  .jb-footer #mc_embed_signup input[type=email]:focus {
    border-color: #82909f; }

.jb-footer #mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {
  border: 1px solid #82909f;
  margin-bottom: 0;
  color: #000000; }

.jb-footer #mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
  margin-top: 6px;
  padding: 0; }

.jb-footer #mc_embed_signup input[type=submit] {
  border: none; }

.jb-footer #mc_embed_signup input:focus {
  outline: none; }

.jb-footer #mc_embed_signup .mc-field-group {
  width: auto;
  padding-bottom: 0; }

.jb-footer #mc_embed_signup #mc-embedded-subscribe {
  margin: 0;
  width: 100%; }

.jb-footer #mc_embed_signup div#mce-responses {
  padding: 0;
  margin: 0;
  width: 100%; }

.jb-footer #mc_embed_signup .response {
  margin: 0;
  padding: 0;
  width: 100%;
  font-weight: 300;
  color: #000000; }

.jb-footer #mc_embed_signup #mce-success-response {
  opacity: 0;
  color: #000000; }
  @media all and (max-width: 991px) {
    .jb-footer #mc_embed_signup #mce-success-response {
      margin-top: 20px; } }
  .jb-footer #mc_embed_signup #mce-success-response.active {
    opacity: 1;
    transition: opacity 0.2s ease-in-out 0.2s; }

.jb-section-newsletter .jb-select-border + .select2-container {
  border: 1px solid #ABB0B2; }

.jb-section-newsletter input[type=submit] {
  border: none; }

.jb-section-newsletter input:focus {
  outline: none; }

.jb-section-newsletter #mc_embed_signup form {
  padding: 0; }

.jb-section-newsletter #mc_embed_signup .mc-field-group {
  padding-bottom: 0;
  margin: 0;
  width: 100%;
  clear: unset;
  min-height: unset; }

.jb-section-newsletter #mc_embed_signup .mc-field-group input {
  display: block;
  width: 100%;
  padding: 8px 0 8px 20px;
  text-indent: 2%;
  border-radius: 0; }

.jb-section-newsletter input[type=email] {
  border-radius: 0;
  padding-left: 20px; }
  .jb-section-newsletter input[type=email]:focus {
    border-color: #82909f; }

.jb-section-newsletter #mc-embedded-subscribe {
  margin: 0;
  border: none;
  border-radius: 4px;
  margin-bottom: 20px; }
  @media all and (max-width: 767px) {
    .jb-section-newsletter #mc-embedded-subscribe {
      width: 100%; } }

.jb-section-newsletter #mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
  display: none !important; }

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  width: 23px;
  height: 23px;
  padding: 0;
  color: transparent;
  border: none;
  z-index: 1;
  background-color: transparent;
  background-size: cover;
  background-repeat: no-repeat;
  outline: 0;
  font-size: 0; }

.slick-prev {
  left: 15px;
  background-image: url(../Images/Icons/svgs/Slider_Arrow_Left.svg); }
  @media all and (min-width: 480px) {
    .slick-prev {
      left: 40px; } }

.slick-next {
  right: 15px;
  background-image: url(../Images/Icons/svgs/Slider_Arrow_Right.svg); }
  @media all and (min-width: 480px) {
    .slick-next {
      right: 40px; } }

/********* SLIDER STYLES ***************/
.jb-rc-slider-wrapper p {
  font-weight: 500;
  margin-bottom: 20px; }

.jb-rc-slider-wrapper .rc-slider {
  height: 32px;
  width: calc(100% - 32px);
  margin-bottom: 20px; }

.jb-rc-slider-wrapper .rc-slider-rail,
.jb-rc-slider-wrapper .rc-slider-track,
.jb-rc-slider-wrapper .rc-slider-step {
  height: 1px; }

.jb-rc-slider-wrapper .rc-slider-track {
  background-color: #5a6e82; }

.jb-rc-slider-wrapper .rc-slider-rail {
  background-color: #d4dbe3; }

.jb-rc-slider-wrapper .rc-slider-handle {
  width: 32px;
  height: 32px;
  background-color: #313b45;
  margin-top: -16px;
  margin-left: 0;
  border: none; }
  .jb-rc-slider-wrapper .rc-slider-handle:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 4px;
    height: 12px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff; }

.jb-nav-top-links {
  position: absolute;
  font-size: 13px;
  right: 15px;
  top: 12px; }
  .jb-nav-top-links a {
    color: #000000;
    transition: color 0.15s ease-in-out;
    white-space: nowrap; }
    .jb-nav-top-links a:hover, .jb-nav-top-links a:active {
      color: #ff4700;
      text-decoration: none;
      transition: color 0.15s ease-in-out; }
      .jb-nav-top-links a:hover + .jb-nav-dropdown-arrow, .jb-nav-top-links a:active + .jb-nav-dropdown-arrow {
        fill: #ff4700;
        transition: fill 0.15s ease-in-out; }
    .jb-nav-top-links a.active {
      color: #ff4700; }
    .jb-nav-top-links a:last-child {
      margin-left: 10px; }
  .jb-nav-top-links > a:before {
    content: url('data:image/svg+xml;utf8,<svg width="17px" height="20px" viewBox="0 0 21 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <circle cx="8.9047619" cy="4.04761905" r="4.04761905"></circle><path d="M1,10.5238095 L6.49012393,10.5238095 L8.5,13.8985712 L10.5552339,10.5238095 L16,10.5238095 C16.5522847,10.5238095 17,10.9715248 17,11.5238095 L17,19.4285714 L0,19.4285714 L0,11.5238095 C-6.76353751e-17,10.9715248 0.44771525,10.5238095 1,10.5238095 Z" id="Rectangle"></path> </svg>');
    display: inline-block;
    position: relative;
    top: 5px;
    margin-left: 20px;
    right: 5px; }
  .jb-nav-top-links .jb-overlay-menu-container {
    display: inline-block;
    margin-left: 20px; }
  .jb-nav-top-links a + a {
    margin-left: 20px; }
  .jb-nav-top-links .jb-nav-account-title {
    position: relative;
    display: inline-block;
    padding-right: 20px;
    cursor: pointer;
    z-index: 5;
    color: #000000; }
    .jb-nav-top-links .jb-nav-account-title.active {
      color: #ff4700; }
      .jb-nav-top-links .jb-nav-account-title.active ~ .jb-nav-dropdown-arrow {
        fill: #ff4700;
        transition: fill 0.15s ease-in-out; }
  .jb-nav-top-links .jb-nav-dropdown-arrow {
    position: absolute;
    top: 5px;
    right: 0;
    width: 10px;
    height: 10px;
    z-index: 1;
    fill: #000000;
    transition: fill 0.15s ease-in-out; }
  .jb-nav-top-links .jb-nav-lang-linklang {
    text-transform: uppercase; }
  .jb-nav-top-links .jb-mybooking-overlay-menu.-language {
    text-align: left;
    min-width: 290px; }
    .jb-nav-top-links .jb-mybooking-overlay-menu.-language .lang--headline {
      font-weight: 700;
      margin-bottom: 10px;
      font-size: 14px; }
      .jb-nav-top-links .jb-mybooking-overlay-menu.-language .lang--headline.-language {
        margin-top: 30px; }
    .jb-nav-top-links .jb-mybooking-overlay-menu.-language .select2-container {
      border: 1px solid #d4dbe3; }
    .jb-nav-top-links .jb-mybooking-overlay-menu.-language .is-active {
      display: inline;
      font-size: 12px;
      font-weight: 700;
      padding-right: 10px;
      cursor: pointer;
      transition: color 0.3s; }
      .jb-nav-top-links .jb-mybooking-overlay-menu.-language .is-active:hover {
        color: #ff4700; }
    .jb-nav-top-links .jb-mybooking-overlay-menu.-language .not-active {
      display: inline;
      font-size: 12px;
      padding-right: 10px;
      cursor: pointer;
      transition: color 0.3s; }
      .jb-nav-top-links .jb-mybooking-overlay-menu.-language .not-active:hover {
        color: #ff4700; }
    .jb-nav-top-links .jb-mybooking-overlay-menu.-language .select2-container {
      margin-bottom: 0; }

.jb-nav {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px; }
  @media all and (min-width: 768px) {
    .jb-nav {
      padding-top: 25px; } }

.jb-header-logo {
  width: 145px;
  height: 36px; }
  .jb-header-logo path {
    fill: #000000; }

@media all and (min-width: 768px) {
  .jb-nav-market,
  .jb-nav-language {
    display: inline-block;
    margin-right: 20px;
    height: 15px; } }

@media all and (max-width: 767px) {
  .jb-nav-market,
  .jb-nav-language {
    display: inline-block;
    cursor: pointer;
    margin-bottom: 10px;
    background: transparent;
    border: none; } }

@media all and (max-width: 767px) {
  .jb-nav-market:hover,
  .jb-nav-language:hover {
    text-decoration: underline; } }

@media all and (max-width: 767px) {
  .jb-nav-market:focus,
  .jb-nav-language:focus {
    outline: none; } }

@media all and (max-width: 991px) {
  .jb-overlay-menu-container .jb-mybooking-overlay-menu {
    pointer-events: inherit; }
  .jb-overlay-menu-container .jb-mybooking-input {
    color: #000; }
    .jb-overlay-menu-container .jb-mybooking-input:focus {
      box-shadow: none; } }

.jb-nav-language,
.jb-nav-market {
  display: none; }

.jb-nav-dropdown-area {
  border-top: 1px solid #676D74;
  padding: 20px 0 10px; }

.jb-nav-dropdown-menu.active .jb-nav-market,
.jb-nav-dropdown-menu.active .jb-nav-language {
  text-decoration: underline; }

.jb-nav-dropdown-menu .jb-nav-dropdown {
  list-style: none;
  padding-left: 10px;
  display: none; }
  .jb-nav-dropdown-menu .jb-nav-dropdown a {
    font-size: 15px;
    margin: 0; }

.jb-nav-dropdown-menu li {
  font-size: 15px;
  color: #000000;
  margin-bottom: 5px;
  cursor: pointer; }
  .jb-nav-dropdown-menu li:last-child {
    margin-bottom: 0; }
  .jb-nav-dropdown-menu li :hover {
    color: white; }

.jb-nav-links {
  position: absolute;
  right: 15px;
  bottom: 7px; }
  .jb-nav-links a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    transition: color 0.15s ease-in-out; }
    .jb-nav-links a:hover {
      color: #ff4700;
      transition: color 0.15s ease-in-out; }
    .jb-nav-links a.active {
      color: #ff4700; }
    .jb-nav-links a:not(:first-child) {
      margin-left: 50px; }
  @media all and (max-width: 768px) {
    .jb-nav-links a.hidden-sm.hidden-md.hidden-lg {
      display: none; } }
  .jb-nav-links-mobilelogin_link {
    color: #fff;
    cursor: pointer;
    transition: color 0.3s; }
    .jb-nav-links-mobilelogin_link:hover {
      color: #ff4700; }
    .jb-nav-links-mobilelogin_link:before {
      content: url('data:image/svg+xml;utf8,<svg width="17px" height="20px" viewBox="0 0 21 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <circle fill="white" cx="8.9047619" cy="4.04761905" r="4.04761905"></circle><path fill="white" d="M1,10.5238095 L6.49012393,10.5238095 L8.5,13.8985712 L10.5552339,10.5238095 L16,10.5238095 C16.5522847,10.5238095 17,10.9715248 17,11.5238095 L17,19.4285714 L0,19.4285714 L0,11.5238095 C-6.76353751e-17,10.9715248 0.44771525,10.5238095 1,10.5238095 Z" id="Rectangle"></path> </svg>');
      display: inline-block;
      position: relative;
      top: 5px;
      margin-left: 8px;
      right: 5px; }
      @media all and (min-width: 992px) {
        .jb-nav-links-mobilelogin_link:before {
          margin-left: 20px; } }
  .jb-nav-links .jb-overlay-menu-container {
    display: inline-block; }
    @media all and (max-width: 768px) {
      .jb-nav-links .jb-overlay-menu-container {
        width: 100%; } }
    .jb-nav-links .jb-overlay-menu-container .jb-nav-mybooking-title {
      font-size: 16px;
      padding-right: 0;
      margin-left: 50px; }
      @media all and (max-width: 768px) {
        .jb-nav-links .jb-overlay-menu-container .jb-nav-mybooking-title {
          margin-left: 0;
          color: #fff; } }
    .jb-nav-links .jb-overlay-menu-container .jb-nav-dropdown-arrow {
      display: none; }
    @media all and (max-width: 768px) {
      .jb-nav-links .jb-overlay-menu-container .jb-mybooking-overlay-menu {
        position: relative;
        color: #fff;
        top: 0;
        left: 0;
        opacity: 1;
        background-color: #000;
        padding: 20px 0 0 0; } }
    @media all and (max-width: 992px) {
      .jb-nav-links .jb-overlay-menu-container .jb-mybooking-overlay-menu:before,
      .jb-nav-links .jb-overlay-menu-container .jb-mybooking-overlay-menu:after {
        display: none; } }
    @media all and (max-width: 992px) {
      .jb-nav-links .jb-overlay-menu-container .jb-mybooking-submit {
        background-color: #ff4700; } }
  @media all and (max-width: 768px) {
    .jb-nav-links-mobilebtn_open {
      color: #fff;
      font-size: 16px;
      margin-bottom: 30px;
      margin-top: 3px;
      cursor: pointer;
      transition: color 0.15s ease-in-out; }
      .jb-nav-links-mobilebtn_open:hover {
        color: #ff4700; }
      .jb-nav-links-mobilebtn_open .jb-nav-mybooking-title {
        cursor: pointer; }
      .jb-nav-links-mobilebtn_open .jb-nav-lang-linklang {
        text-transform: uppercase; }
    .jb-nav-links-mobilebtn_box {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
    .jb-nav-links-mobilebtn_close {
      margin: 0 20px;
      color: #ff4700;
      cursor: pointer; }
      .jb-nav-links-mobilebtn_close:before {
        content: "";
        border-left: 1px solid #ff4700;
        border-top: 1px solid #ff4700;
        width: 8px;
        height: 8px;
        display: inline-block;
        position: relative;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        margin-right: 8px; }
    .jb-nav-links-mobilelogin, .jb-nav-links-mobilemenu {
      position: absolute;
      top: 0;
      left: -100vw;
      width: 100%;
      height: 100%;
      background-color: #000;
      color: #fff;
      z-index: 210;
      font-size: 16px;
      transition: left 0.4s; }
      .jb-nav-links-mobilelogin.active, .jb-nav-links-mobilemenu.active {
        left: 0; }
      .jb-nav-links-mobilelogin .jb-nav-mybooking-title, .jb-nav-links-mobilemenu .jb-nav-mybooking-title {
        display: none; }
      .jb-nav-links-mobilelogin .jb-mybooking-overlay-menu.-language, .jb-nav-links-mobilemenu .jb-mybooking-overlay-menu.-language {
        background-color: #000;
        top: 40px;
        left: 0;
        width: 100%;
        height: calc(100% - 40px);
        box-shadow: none;
        z-index: 220;
        opacity: 1;
        padding: 12px 17px;
        pointer-events: all; }
        .jb-nav-links-mobilelogin .jb-mybooking-overlay-menu.-language:after, .jb-nav-links-mobilelogin .jb-mybooking-overlay-menu.-language:before, .jb-nav-links-mobilemenu .jb-mybooking-overlay-menu.-language:after, .jb-nav-links-mobilemenu .jb-mybooking-overlay-menu.-language:before {
          display: none; }
        .jb-nav-links-mobilelogin .jb-mybooking-overlay-menu.-language .lang--headline, .jb-nav-links-mobilemenu .jb-mybooking-overlay-menu.-language .lang--headline {
          font-weight: 700;
          margin-bottom: 10px; }
        .jb-nav-links-mobilelogin .jb-mybooking-overlay-menu.-language .select2-container, .jb-nav-links-mobilemenu .jb-mybooking-overlay-menu.-language .select2-container {
          border: 1px solid #d4dbe3;
          margin-bottom: 50px; }
        .jb-nav-links-mobilelogin .jb-mybooking-overlay-menu.-language .is-active, .jb-nav-links-mobilemenu .jb-mybooking-overlay-menu.-language .is-active {
          width: 50%;
          display: inline-block;
          font-weight: 700; }
        .jb-nav-links-mobilelogin .jb-mybooking-overlay-menu.-language .not-active, .jb-nav-links-mobilemenu .jb-mybooking-overlay-menu.-language .not-active {
          width: 50%;
          display: inline-block;
          cursor: pointer; } }

.jb-nav-trigger {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #ffffff;
  border: solid #ffffff;
  padding: 25px 25px; }
  .jb-nav-trigger div {
    background-color: #000000;
    height: 1px;
    width: 29px;
    transition: width 0.1s linear 0.15s, margin-top 0.1s linear 0.15s, -webkit-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out, width 0.1s linear 0.15s, margin-top 0.1s linear 0.15s;
    transition: transform 0.25s ease-in-out, width 0.1s linear 0.15s, margin-top 0.1s linear 0.15s, -webkit-transform 0.25s ease-in-out; }
    .jb-nav-trigger div:not(:last-child) {
      margin-bottom: 8px; }
    .jb-nav-trigger div:nth-child(1) {
      -webkit-transform-origin: top left;
      transform-origin: top left; }
    .jb-nav-trigger div:nth-child(3) {
      -webkit-transform-origin: bottom left;
      transform-origin: bottom left; }
  .jb-nav-trigger.active div {
    transition: width 0.1s linear, margin-top 0.1s, -webkit-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out, width 0.1s linear, margin-top 0.1s;
    transition: transform 0.25s ease-in-out, width 0.1s linear, margin-top 0.1s, -webkit-transform 0.25s ease-in-out; }
    .jb-nav-trigger.active div + div {
      margin-top: 9px; }
    .jb-nav-trigger.active div:nth-child(1) {
      -webkit-transform: translateX(4px) rotate(45deg);
      transform: translateX(4px) rotate(45deg); }
    .jb-nav-trigger.active div:nth-child(2) {
      width: 0; }
    .jb-nav-trigger.active div:nth-child(3) {
      -webkit-transform: translateX(4px) rotate(-45deg);
      transform: translateX(4px) rotate(-45deg); }

@media all and (max-width: 767px) {
  .jb-nav-links {
    top: 80px;
    bottom: auto;
    right: auto;
    padding: 20px 0 20px;
    text-align: left;
    width: 100%;
    z-index: 101;
    background-color: #000000;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; }
    .jb-nav-links.active {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      transition: -webkit-transform 0.3s ease-in-out;
      transition: transform 0.3s ease-in-out;
      transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; }
    .jb-nav-links a {
      margin-left: 0 !important;
      display: block;
      color: white;
      margin-bottom: 30px; }
      .jb-nav-links a.active {
        color: #ff4700; }
  .jb-nav-account-mobile {
    border-top: 1px solid #000000;
    padding-top: 20px; }
    .jb-nav-account-mobile .jb-nav-account-mobile-email {
      color: #000000;
      overflow: hidden;
      text-overflow: ellipsis; }
    .jb-nav-account-mobile a, .jb-nav-account-mobile .jb-nav-account-mobile-email {
      font-size: 15px;
      margin-bottom: 15px; }
      .jb-nav-account-mobile a:last-child, .jb-nav-account-mobile .jb-nav-account-mobile-email:last-child {
        margin-bottom: 0; } }

.jb-header-transparent {
  position: absolute;
  z-index: 100;
  width: 100%; }
  .jb-header-transparent .jb-header-top {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.8); }
  .jb-header-transparent .jb-nav-top-links a, .jb-header-transparent .jb-nav-top-links label {
    color: #ffffff; }
    .jb-header-transparent .jb-nav-top-links a:hover, .jb-header-transparent .jb-nav-top-links label:hover {
      color: #ff4700; }
    .jb-header-transparent .jb-nav-top-links a.active, .jb-header-transparent .jb-nav-top-links label.active {
      color: #ff4700; }
  @media all and (max-width: 767px) {
    .jb-header-transparent .jb-nav-links {
      background-color: rgba(0, 0, 0, 0.8); } }
  .jb-header-transparent .jb-nav-links a {
    color: #ffffff; }
    .jb-header-transparent .jb-nav-links a:hover {
      color: #ff4700; }
    .jb-header-transparent .jb-nav-links a.active {
      color: #ff4700; }
  .jb-header-transparent .jb-nav-trigger div {
    background-color: #ffffff; }
  .jb-header-transparent .jb-header-logo path {
    fill: white; }

.jb-headnavi {
  height: 85px;
  margin: 0;
  padding: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }
  .jb-headnavi-item {
    list-style: none; }

.jb-navi {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  min-width: 220px; }
  .jb-navi-mainitem {
    position: relative;
    list-style: none;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    color: #000; }
    .jb-navi-mainitem:hover {
      color: #ff4700; }
      .jb-navi-mainitem:hover .jb-navi-dropdown {
        opacity: 1;
        visibility: visible; }
      .jb-navi-mainitem:hover .jb-navi-arrow {
        -webkit-transform: rotate(315deg);
        transform: rotate(315deg); }
  .jb-navi-dropdown {
    opacity: 0;
    visibility: hidden;
    background-color: rgba(255, 255, 255, 0.92);
    position: absolute;
    top: 20px;
    left: -35px;
    padding: 70px 35px 20px;
    min-width: 250px;
    z-index: 99;
    height: 449px;
    transition: all 0.3s; }
  .jb-navi-subitem {
    white-space: nowrap;
    list-style: none;
    padding-bottom: 15px;
    font-size: 18px; }
  .jb-navi-link {
    color: #000;
    text-decoration: none; }
    .jb-navi-link:hover {
      color: #ff4700; }
  .jb-navi-arrow {
    position: relative;
    top: -2px;
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid #000;
    border-top: 2px solid #000;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    right: -7px;
    transition: all 0.3s; }

.jb-trust-link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000; }

.jb-nav-top-trust {
  margin-right: 27px !important; }

.jb-navi-icon {
  width: 19px;
  height: 19px;
  margin-left: 5px; }

.jb-header-logo {
  width: 145px;
  height: 36px; }

.jb-benefiticon {
  border: 1px solid #000;
  border-radius: 50%;
  padding: 7px 0 0 7px;
  position: relative;
  display: inline-block;
  height: 18px;
  width: 18px; }
  .jb-benefiticon-arrow {
    position: relative;
    content: "";
    display: inline-block;
    width: 12px;
    height: 5px;
    border-right: 1px solid #000;
    border-top: 1px solid #000;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg); }

.jb-home-benefits ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: 300;
  font-size: 15px;
  color: #313b45; }

.jb-home-benefits li {
  list-style: none; }

.jb-home-benefits-item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

.jb-home-benefits-subline {
  margin-left: 28px; }

.jb-home-benefits h3 {
  font-weight: 500;
  font-size: 15px;
  color: #313b45;
  padding: 0;
  margin: 0; }

.jb-home-benefits svg {
  width: 17px;
  height: 17px;
  margin-right: 10px; }

.jb-stage {
  position: relative;
  min-height: 50vh;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: 10; }
  .jb-stage.jb-stage-centered {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .jb-stage.jb-stage-shadow {
    box-shadow: 0 132px 80px -150px black; }

@media all and (max-width: 500px) {
  .jb-site-home .jb-stage {
    height: 250px !important; } }

.jb-stage-shrink {
  min-height: 0; }
  .jb-stage-shrink .jb-stage-slider {
    position: relative;
    min-height: 0;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto; }
    .jb-stage-shrink .jb-stage-slider .jb-stage-slide:not(:first-child) {
      height: 0;
      overflow: hidden; }
    .jb-stage-shrink .jb-stage-slider.slick-initialized .jb-stage-slide:not(:first-child) {
      height: 100%; }
  .jb-stage-shrink + #js-flight-search .jb-search {
    margin-top: 0; }

.jb-stage-slider {
  position: absolute;
  min-height: 50vh;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }
  .jb-stage-slider .slick-list, .jb-stage-slider .slick-track {
    height: 100%; }

.jb-stage-slide {
  position: relative;
  float: left;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center top; }
  .jb-stage-slide:focus {
    outline: none; }

.jb-stage-slide-darkened:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 10; }

.jb-stage-content {
  position: relative;
  width: 100%;
  z-index: 100;
  color: white;
  margin-top: 180px; }

.jb-stage-slide .jb-stage-content {
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: auto; }

.jb-stage-content-gradient {
  position: relative; }
  .jb-stage-content-gradient .jb-stage-content-element {
    position: relative;
    z-index: 1; }
  .jb-stage-content-gradient:after {
    z-index: 0;
    content: "";
    position: absolute;
    display: block;
    top: 108px;
    bottom: 0;
    left: 50%;
    width: calc(100vw - 3px);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0, transparent 100%); }
    @media all and (min-width: 768px) {
      .jb-stage-content-gradient:after {
        top: 135px; } }

.jb-stage-content-element {
  padding-top: 120px;
  padding-bottom: 50px; }
  @media all and (min-width: 768px) {
    .jb-stage-content-element {
      padding-bottom: 45px;
      padding-top: 180px; } }

.jb-stage-content-gradient .jb-stage-content-element .jb-btn {
  display: none; }

.jb-stage-content-text-only {
  padding-top: 20px;
  padding-bottom: 1px; }
  .jb-stage-content-text-only .jb-h1 {
    line-height: 1.3; }
  .jb-stage-content-text-only .jb-stage-subheadline {
    opacity: 1;
    margin-bottom: 0; }
  @media all and (min-width: 768px) {
    .jb-stage-content-text-only {
      padding-top: 20px;
      padding-bottom: 1px; } }

.jb-stage-airline-logo {
  position: absolute;
  top: 20px;
  right: 15px;
  width: 150px; }

.jb-stage-image-credits {
  position: absolute;
  z-index: 1;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic; }
  @media all and (max-width: 767px) {
    .jb-stage-image-credits {
      bottom: 18px;
      left: 0; } }
  @media all and (min-width: 768px) {
    .jb-stage-image-credits {
      right: 0;
      bottom: 45px; } }

.jb-stage-arrows {
  width: 100%;
  position: relative; }
  .jb-stage-arrows .slick-prev, .jb-stage-arrows .slick-next {
    top: auto;
    bottom: 70px;
    width: 33px;
    height: 33px;
    opacity: 0.5;
    transition: opacity 0.15s linear; }
    .jb-stage-arrows .slick-prev:hover, .jb-stage-arrows .slick-next:hover {
      opacity: 1;
      transition: opacity 0.15s linear; }
  .jb-stage-arrows .slick-next {
    right: 15px; }
  .jb-stage-arrows .slick-prev {
    left: auto;
    right: 60px; }

.jb-dots-container {
  position: relative;
  width: 100%; }

.jb-stage .slick-dots {
  display: block;
  position: absolute;
  right: 15px;
  bottom: 20px;
  margin-bottom: 0;
  z-index: 100; }
  @media all and (max-width: 767px) {
    .jb-stage .slick-dots {
      display: none !important; } }
  .jb-stage .slick-dots li {
    list-style-type: none;
    float: left; }
  .jb-stage .slick-dots button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent; }
    .jb-stage .slick-dots button:before {
      content: "";
      position: absolute;
      display: block;
      height: 8px;
      width: 8px;
      border-radius: 100%;
      background-color: white; }
  .jb-stage .slick-dots .slick-active button:before {
    background-color: #ff4700; }

.jb-dots-container-deals .slick-dots {
  bottom: 0; }

.jb-stage-subheadline {
  font-size: 15px;
  color: white;
  opacity: 0.6;
  margin-top: 10px;
  margin-bottom: 30px; }
  @media all and (max-width: 500px) {
    .jb-stage-subheadline {
      margin-bottom: 10px; } }

.jb-stage-deal .jb-stage-content {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 100px; }
  @media all and (min-width: 768px) {
    .jb-stage-deal .jb-stage-content {
      padding-left: 30px;
      padding-right: 30px; } }
  @media all and (min-width: 992px) {
    .jb-stage-deal .jb-stage-content {
      -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      width: 90%;
      margin-top: 300px; } }
  .jb-stage-deal .jb-stage-content:after {
    z-index: 0;
    content: "";
    position: absolute;
    display: block;
    top: -20%;
    bottom: 0;
    left: 50%;
    width: 100vw;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0, transparent 100%); }
    @media all and (min-width: 992px) {
      .jb-stage-deal .jb-stage-content:after {
        top: -70%; } }

.jb-stage-deal.jb-stage-slider .jb-stage-content {
  padding-top: 100px;
  margin-top: 0; }
  @media all and (min-width: 992px) {
    .jb-stage-deal.jb-stage-slider .jb-stage-content {
      margin-top: 0;
      padding-top: 300px; } }

.jb-stage-deal-left, .jb-stage-deal-right {
  position: relative;
  z-index: 2; }
  @media all and (min-width: 992px) {
    .jb-stage-deal-left, .jb-stage-deal-right {
      width: auto; } }

.jb-stage-deal-right {
  margin-top: 40px; }
  @media all and (min-width: 992px) {
    .jb-stage-deal-right {
      text-align: right;
      margin-top: 0;
      padding-left: 30px; } }

.jb-stage-deal-hl {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 10px; }
  @media all and (min-width: 768px) {
    .jb-stage-deal-hl {
      font-size: 36px; } }

.jb-deal-stage-price, .jb-deal-header-price {
  font-size: 15px;
  color: #000000; }
  .jb-deal-stage-price .jb-deal-stage-price-value, .jb-deal-header-price .jb-deal-stage-price-value {
    margin-left: 7px;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 46px;
    line-height: 1;
    color: white; }
    @media all and (min-width: 768px) {
      .jb-deal-stage-price .jb-deal-stage-price-value, .jb-deal-header-price .jb-deal-stage-price-value {
        font-size: 60px; } }

.jb-deal-stage-login-text {
  margin-top: 10px; }

.jb-stage-deal-right-top {
  margin-bottom: 20px;
  text-align: left; }

.jb-deal-stage-time {
  position: relative;
  padding-right: 35px;
  font-size: 15px;
  display: inline-block; }
  @media all and (min-width: 992px) {
    .jb-deal-stage-time {
      text-align: right;
      padding-left: 20px; } }
  .jb-deal-stage-time.jb-deal-stage-time-inline {
    margin-bottom: 30px;
    margin-left: 30px; }
    @media all and (max-width: 767px) {
      .jb-deal-stage-time.jb-deal-stage-time-inline {
        margin-left: 0;
        margin-top: 15px; } }
  .jb-deal-stage-time .jb-icon-clock {
    fill: #fec500;
    position: absolute;
    width: 25px;
    height: 25px;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }

.jb-stage-deal-share {
  position: relative;
  display: inline-block;
  bottom: 1px; }
  .jb-stage-deal-share .jb-stage-deal-share-btn {
    background: none;
    border: none;
    padding: 0; }
    .jb-stage-deal-share .jb-stage-deal-share-btn:active {
      outline: none;
      border: none; }
    .jb-stage-deal-share .jb-stage-deal-share-btn:focus {
      outline: 0; }
  .jb-stage-deal-share .jb-stage-deal-share-icon {
    width: 20px;
    height: 20px;
    fill: #ffffff; }
  .jb-stage-deal-share .jb-stage-deal-share-btn:focus .jb-stage-deal-share-icon,
  .jb-stage-deal-share .jb-stage-deal-share-btn:hover .jb-stage-deal-share-icon,
  .jb-stage-deal-share .jb-stage-deal-share-btn:active .jb-stage-deal-share-icon {
    cursor: pointer;
    fill: #fec500; }

.jb-stage-airline-info {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #d4dbe3;
  margin-bottom: 40px; }
  @media all and (min-width: 768px) {
    .jb-stage-airline-info {
      -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
      justify-content: flex-start; } }

.jb-stage-deal-airline-logo {
  text-align: center;
  width: 100%;
  padding-top: 10px; }
  @media all and (min-width: 768px) {
    .jb-stage-deal-airline-logo {
      padding-top: 0;
      width: 50%; } }
  .jb-stage-deal-airline-logo img {
    width: 90%;
    max-width: 180px; }

.jb-stage-deal-airline-rating {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px 15px 30px;
  width: 100%; }
  @media all and (min-width: 768px) {
    .jb-stage-deal-airline-rating {
      padding: 30px 15px;
      width: 50%; } }

.jb-search {
  position: relative;
  z-index: 100;
  padding: 15px;
  margin-top: 40px;
  transition: height 0.3s, padding 0.3s, margin 0.3s, width 0.3s, opacity 0.3s; }
  .jb-search.invisible {
    height: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    transition: all 0.3s, padding 0.3s, margin 0.3s, width 0.3s, opacity 0.3s; }
    .jb-search.invisible * {
      height: 0 !important;
      padding: 0 !important;
      margin: 0 !important;
      color: transparent !important;
      border: none !important;
      transition: all 2s, color 0.5s, border 0.1s; }
      .jb-search.invisible *:after, .jb-search.invisible *:before, .jb-search.invisible *:focus {
        opacity: 0;
        box-shadow: 0;
        outline: 0;
        transition: all 0.3s; }
  @media all and (min-width: 768px) {
    .jb-search {
      padding: 20px 30px 15px; } }
  @media all and (min-width: 992px) {
    .jb-search-sticky {
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 99; } }
  .jb-search-box {
    background-color: #f4f6f8; }
  .jb-search input[type="text"] {
    border-color: #82909f;
    z-index: 5; }
  .jb-search .jb-label, .jb-search .jb-input-icon-label {
    color: #000000;
    margin-bottom: 10px;
    display: block;
    z-index: 0; }
  .jb-search .jb-departure-airport,
  .jb-search .jb-destination-airport,
  .jb-search .jb-departure-airport-2,
  .jb-search .jb-destination-airport-2 {
    position: relative; }
  .jb-search .jb-search-departure-ap,
  .jb-search .jb-search-destination-ap {
    background-color: #fff; }
  @media all and (min-width: 768px) {
    .jb-search .jb-search-aps .row > div:first-child {
      padding-right: 3px; }
    .jb-search .jb-search-aps .row > div:last-child {
      padding-left: 3px; } }
  .jb-search .jb-search-aps-output {
    position: absolute;
    top: 1px;
    right: 1px;
    height: 48px;
    width: calc(100% - 40px);
    padding-top: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #000000;
    background-color: white;
    pointer-events: none;
    display: none;
    z-index: 10; }
    .jb-search .jb-search-aps-output span {
      line-height: 1; }
      .jb-search .jb-search-aps-output span:first-child {
        font-size: 16px; }
      .jb-search .jb-search-aps-output span:last-child {
        font-size: 12px;
        color: #000000; }
    .jb-search .jb-search-aps-output.active {
      display: block; }
  .jb-search .jb-search-options .select2-container {
    margin-bottom: 8px; }
  .jb-search.jb-search-outward-return .jb-close-field,
  .jb-search.jb-search-outward-return .jb-search-add-flight-padding {
    display: none; }
  .jb-search.jb-search-outward-return .jb-search-departure-date,
  .jb-search.jb-search-outward-return .jb-search-return-date {
    float: left;
    width: 100%; }
  .jb-search.jb-search-outward-return .jb-search-departure-date {
    margin-right: 6px; }
  .jb-search.jb-search-outward-return .jb-search-amount-passanger {
    background-color: #fff; }
  @media all and (min-width: 992px) {
    .jb-search.jb-search-outward-return .jb-search-option-class {
      float: left; }
    .jb-search.jb-search-outward-return .jb-search-aps {
      padding-right: 0; }
    .jb-search.jb-search-outward-return .jb-search-amount-passanger-col {
      padding-left: 0; } }
  .jb-search.jb-search-outward .jb-close-field,
  .jb-search.jb-search-outward .jb-search-add-flight-padding {
    display: none; }
  .jb-search.jb-search-outward .jb-search-departure-date,
  .jb-search.jb-search-outward .jb-search-return-date {
    width: calc(50% - 3px);
    float: left; }
  .jb-search.jb-search-outward .jb-search-departure-date {
    margin-right: 6px; }
  .jb-search.jb-search-outward .jb-search-return-date::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000; }
  @media all and (min-width: 992px) {
    .jb-search.jb-search-outward .jb-search-option-class {
      float: left; }
    .jb-search.jb-search-outward .jb-search-aps {
      padding-right: 0; }
    .jb-search.jb-search-outward .jb-search-amount-passanger-col {
      padding-left: 0; } }
  .jb-search.jb-search-fork .jb-search-options {
    margin-top: 20px; }
  .jb-search.jb-search-fork .jb-search-input {
    margin-bottom: 15px; }
  .jb-search.jb-search-fork .jb-search-return-date {
    display: none; }
  .jb-search.jb-search-fork .jb-search-add-flight-padding {
    padding: 0 15px; }
  .jb-search.jb-search-fork .jb-search-add-flight {
    margin-top: 20px;
    height: 50px;
    background-color: #000000;
    border-radius: 4px;
    border: 1px solid #82909f; }
  .jb-search.jb-search-fork .jb-search-add-flight-content {
    display: inline-block;
    height: 50px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); }
  .jb-search.jb-search-fork .jb-search-add-flight-text {
    display: inline;
    line-height: 50px;
    margin-left: 10px;
    font-size: 9px;
    color: #fff; }
  .jb-search.jb-search-fork .jb-search-aps:first-child .jb-close-field {
    display: none !important; }
  .jb-search.jb-search-fork .jb-search-amount-passanger-col:not(:nth-of-type(3)) {
    display: none !important; }
  .jb-search.jb-search-fork .jb-search-departure-ap,
  .jb-search.jb-search-fork .jb-search-destination-ap {
    margin-bottom: 10px; }
  .jb-search.jb-search-fork .jb-search-container {
    padding-bottom: 70px; }
  .jb-search.jb-search-fork .jb-search-amount-passanger-col {
    position: absolute;
    bottom: -15px; }
  .jb-search.jb-search-fork .jb-search-add-flight-icon {
    display: inline;
    width: 21px;
    max-height: 50px !important;
    fill: #fec500; }
  .jb-search.jb-search-fork .jb-close-field {
    position: absolute;
    top: 0;
    left: 15px;
    height: 50px;
    width: 50px;
    background-color: #fec500; }
    .jb-search.jb-search-fork .jb-close-field .jb-close-field-svg {
      height: 16px;
      width: 16px;
      margin: 17px; }
  .jb-search.jb-search-fork .jb-search-dates:not(:last-child) {
    margin-bottom: 30px; }
  .jb-search.jb-search-fork .jb-search-departure-date {
    margin: 0; }
  .jb-search.jb-search-fork .jb-departure-airport {
    padding-left: 70px; }
  .jb-search.jb-search-fork .jb-search-input-container > div:nth-child(1) .jb-departure-airport {
    padding-left: 20px; }
  .jb-search.jb-search-fork .jb-destination-airport {
    padding-left: 20px; }
  @media all and (min-width: 768px) {
    .jb-search.jb-search-fork .jb-search-add-flight-text {
      font-size: 14px; }
    .jb-search.jb-search-fork .jb-search-dates {
      padding-left: 0; }
    .jb-search.jb-search-fork .jb-search-add-flight-icon {
      width: 20px; }
    .jb-search.jb-search-fork .jb-close-arrow {
      display: block; }
    .jb-search.jb-search-fork .jb-search-departure-date {
      margin-bottom: 20px; }
    .jb-search.jb-search-fork .jb-search-dates:not(:last-child) {
      margin-bottom: 0; }
    .jb-search.jb-search-fork .jb-search-input-container > div:nth-last-child(1) .jb-search-input,
    .jb-search.jb-search-fork .jb-search-input-container > div:nth-last-child(2) .jb-search-input {
      margin-bottom: 0; }
    .jb-search.jb-search-fork .jb-search-amount-passanger-col {
      position: absolute;
      bottom: -85px;
      right: 0;
      padding-left: 0; }
    .jb-search.jb-search-fork .jb-search-container {
      padding-bottom: 0; }
    .jb-search.jb-search-fork .jb-search-input-container > div:nth-child(1) .jb-departure-airport {
      padding-left: 50px; }
    .jb-search.jb-search-fork .jb-destination-airport {
      padding-left: 60px; } }
  @media all and (min-width: 992px) {
    .jb-search.jb-search-fork .jb-search-option-class {
      float: left; }
    .jb-search.jb-search-fork .jb-search-amount-passanger-col {
      padding-left: 0;
      position: relative;
      bottom: inherit;
      right: inherit; } }

.jb-deal-nonstopbox {
  margin-top: 0;
  margin-bottom: 20px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  /* graceful degradation for ie8 */
  /* hide standard inputs */
  /* add custom inputs with ::before */ }
  @media all and (min-width: 768px) {
    .jb-deal-nonstopbox {
      margin-top: 37px;
      margin-bottom: 0; } }
  .jb-deal-nonstopbox .jb-deal-nonstop {
    margin-right: 10px; }
  .jb-deal-nonstopbox .jb-input-icon-label {
    margin-bottom: 0; }
  .jb-deal-nonstopbox input[type='checkbox'] {
    width: auto;
    float: left;
    margin-right: .75em;
    background: transparent;
    border: none; }
  .jb-deal-nonstopbox input[type='checkbox']:checked,
  .jb-deal-nonstopbox input[type='checkbox']:not(:checked) {
    background: transparent;
    position: relative;
    visibility: hidden;
    margin: -10px;
    padding: 0; }
  .jb-deal-nonstopbox input[type='checkbox'] + label {
    cursor: pointer; }
  .jb-deal-nonstopbox input[type='checkbox']:checked + label::before,
  .jb-deal-nonstopbox input[type='checkbox']:not(:checked) + label::before {
    content: ' ';
    display: inline-block;
    width: 21px;
    height: 21px;
    position: relative;
    top: 5px;
    left: 4px;
    background: white;
    margin-right: 15px;
    margin-left: 3px;
    border: 1px solid #82909f; }
  .jb-deal-nonstopbox input[type='checkbox']:checked + label::after {
    content: '';
    position: absolute;
    left: 23px;
    top: 8px;
    font-size: 18px;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    width: 6px;
    height: 12px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); }

.jb-deal-search-destination-deal .select2-selection--multiple {
  border: none;
  height: 50px; }

.jb-deal-search-destination-deal .select2-selection.select2-selection--multiple .select2-selection__choice {
  max-width: 30%;
  overflow: hidden;
  text-overflow: ellipsis; }

.jb-deal-search-destination-deal .select2-container--default.select2-container--focus .select2-selection--multiple {
  border: none; }

.jb-deal-search-destination-deal .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  padding: 8px 10px 8px 38px; }

.jb-deal-search-destination-deal .select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: transparent;
  border-radius: 0; }

.jb-search-return-date.inactive {
  pointer-events: none; }
  .jb-search-return-date.inactive label {
    opacity: 0.4; }
  .jb-search-return-date.inactive .jb-input-icon:before {
    content: "";
    position: absolute;
    display: block;
    background-color: #f4f6f8;
    top: 1px;
    left: 1px;
    bottom: 1px;
    right: 1px;
    z-index: 1; }
  .jb-search-return-date.inactive svg {
    display: none; }

.jb-search-box {
  background-color: #f4f6f8; }

.jb-search-departure-date .jb-search-input > div,
.jb-search-return-date .jb-search-input > div {
  width: 100%; }

.jb-search-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto; }

@media all and (min-width: 992px) {
  .jb-search-input-container {
    width: calc(100% - 120px - 30px); } }

.jb-search-col {
  margin-bottom: 20px; }

.jb-search-input {
  margin-bottom: 20px; }
  .jb-search-input input:focus {
    outline: none;
    background-color: #fff; }
  .jb-search-input .jb-invalid {
    border-color: #fec500; }
    .jb-search-input .jb-invalid + .jb-search-aps-output {
      background-color: #fec500; }

@media all and (min-width: 768px) {
  .jb-search-departure-ap-col {
    position: relative; }
  .jb-search-switch-icon {
    position: absolute;
    height: 26px;
    width: 19px;
    fill: #fec500;
    right: -10px;
    bottom: 32px;
    z-index: 20;
    cursor: pointer;
    transition: fill 0.15s linear; }
    .jb-search-switch-icon:hover {
      fill: #ff4700;
      transition: fill 0.15s linear; } }

@media all and (min-width: 992px) {
  .jb-search-amount-passanger-col {
    padding-right: 0; } }

.jb-search-button {
  width: 100%;
  margin: 30px 0 40px 0; }
  @media all and (min-width: 992px) {
    .jb-search-button {
      width: 120px;
      margin: 0; } }
  @media all and (min-width: 992px) {
    .jb-search-button {
      position: absolute;
      top: 29px;
      right: 15px; } }

.jb-search-button-ajax {
  display: none; }

.jb-passengers {
  background-color: #fff !important;
  width: 290px;
  max-width: calc(100% - 30px);
  position: absolute;
  z-index: 50;
  margin-top: -21px;
  padding: 15px;
  border: 1px solid #d4dbe3;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3); }
  @media all and (min-width: 768px) {
    .jb-passengers {
      max-width: none;
      right: 15px; } }
  @media all and (min-width: 992px) {
    .jb-passengers {
      right: auto; } }
  .jb-passengers .jb-passengers-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .jb-passengers .jb-passengers-item:not(:first-child) {
      margin-top: 10px; }
  .jb-passengers .jb-passengers-label {
    color: #000000; }
    .jb-passengers .jb-passengers-label span {
      display: block;
      color: #000000;
      font-size: 12px; }
  .jb-passengers .jb-passengers-controls {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    line-height: 30px;
    color: #000000;
    width: 90px; }
  .jb-passengers .jb-passengers-field-amount {
    width: 30px;
    text-align: center; }
  .jb-passengers .jb-passengers-icon {
    position: relative;
    background-color: #ff4700;
    border-radius: 100%;
    height: 30px;
    width: 30px;
    cursor: pointer; }
    .jb-passengers .jb-passengers-icon svg {
      position: absolute;
      top: 11px;
      left: 11px;
      height: 8px;
      width: 8px;
      fill: #fff; }
    .jb-passengers .jb-passengers-icon:hover, .jb-passengers .jb-passengers-icon:active, .jb-passengers .jb-passengers-icon:focus {
      background-color: #cc3900; }
    .jb-passengers .jb-passengers-icon.jb-passengers-icon-disabled {
      background-color: #D4DBE3; }
  .jb-passengers .jb-passengers-info {
    margin-top: 15px;
    background-color: rgba(254, 197, 0, 0.2);
    padding: 6px 10px;
    color: #000000; }
  .jb-passengers .jb-passengers-close {
    margin-top: 10px; }

.jb-suggestions {
  background-color: #fff !important;
  width: 100%;
  max-width: calc(100% - 30px);
  position: absolute;
  z-index: 2;
  margin-top: -10px;
  padding-top: 10px;
  padding-bottom: 20px; }
  @media all and (min-width: 768px) {
    .jb-suggestions {
      margin-top: -20px;
      max-width: 290px; } }
  @media all and (min-width: 992px) {
    .jb-suggestions {
      width: 290px; } }
  .jb-suggestions .jb-suggestions-row {
    padding: 10px 0; }
  .jb-suggestions .jb-suggestions-row:hover {
    background-color: #ff4700; }
    .jb-suggestions .jb-suggestions-row:hover .jb-suggestions-span {
      color: white; }
  .jb-suggestions .jb-suggestions-col {
    overflow: hidden; }
  .jb-suggestions .jb-suggestions-span {
    display: inline-block;
    white-space: nowrap; }
  .jb-suggestions .jb-suggestions-location {
    color: #000000; }

/***************************/
.ac_results {
  color: #000000;
  z-index: 1000;
  padding: 0;
  background: white; }
  @media all and (max-width: 992px) {
    .ac_results {
      height: 60%;
      overflow-y: auto; } }
  .ac_results ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    .ac_results ul li {
      padding: 5px 15px;
      cursor: pointer;
      border-bottom: 1px solid #D4DBE3; }
      .ac_results ul li:last-child {
        border-bottom: none; }
      .ac_results ul li:hover {
        background-color: #f4f6f8; }
      .ac_results ul li .location_name {
        padding-right: 5px; }
      .ac_results ul li .airport_name {
        padding-right: 5px; }
      .ac_results ul li .location_code {
        color: #000000;
        display: inline-block;
        float: left;
        width: 75px;
        height: 45px; }
      .ac_results ul li .country_name {
        color: #82909f;
        display: block;
        padding-right: 5px; }
      .ac_results ul li.ac_over .location_code {
        display: inline-block;
        float: left;
        width: 75px;
        height: 45px; }
      .ac_results ul li.ac_over .country_name {
        display: block;
        padding-right: 5px; }
      .ac_results ul li .loc-abbr {
        font-weight: 700; }

.ac_over {
  /*background-color: $background-alternative;*/ }

.jb-search.jb-search-compact {
  /*transition: height 0.3s, padding 0.3s, border 0.3s;*/
  border: none;
  box-shadow: none;
  padding: 0;
  /** {
		transition: height 0.3s;
	}*/ }
  @media all and (min-width: 992px) {
    .jb-search.jb-search-compact .jb-search-option-flight {
      width: 33.33333%; } }
  .jb-search.jb-search-compact .jb-label, .jb-search.jb-search-compact .jb-input-icon-label {
    display: none; }
  .jb-search.jb-search-compact .jb-search-input {
    margin-bottom: 6px; }
  .jb-search.jb-search-compact .jb-input-icon input {
    height: 35px;
    color: #000000;
    width: 100%;
    padding-left: 40px;
    padding-right: 0;
    margin-right: 0;
    margin-left: 0;
    border-radius: 0;
    -webkit-appearance: none;
    box-shadow: none; }
  .jb-search.jb-search-compact .jb-search-aps-output {
    height: 33px;
    padding-top: 1px;
    width: calc(100% - 41px); }
  .jb-search.jb-search-compact .jb-search-aps-output span:first-child {
    line-height: 33px;
    font-size: 14px; }
  .jb-search.jb-search-compact .jb-search-aps-output span:last-child {
    display: none; }
  .jb-search.jb-search-compact .DateInput {
    height: 35px; }
  .jb-search.jb-search-compact .DateInput__display-text {
    line-height: 35px; }
  .jb-search.jb-search-compact .jb-search-button {
    width: 100%;
    margin: 30px 0 40px 0;
    height: 35px;
    line-height: 8px;
    padding: 8px 20px;
    margin-top: 10px; }
    @media all and (min-width: 768px) {
      .jb-search.jb-search-compact .jb-search-button {
        width: 120px;
        margin: 0; } }
    @media all and (min-width: 992px) {
      .jb-search.jb-search-compact .jb-search-button {
        top: 0; } }
  @media all and (min-width: 768px) and (max-width: 991px) {
    .jb-search.jb-search-compact .jb-search-amount-passanger-col {
      padding-left: 0; }
    .jb-search.jb-search-compact .jb-search-dates-range {
      padding-right: 10px; } }
  .jb-search.jb-search-compact .jb-passengers {
    margin-top: -7px; }
  .jb-search.jb-search-compact .DateRangePicker__picker {
    top: 58px; }
  .jb-search.jb-search-compact .DateInput--with-caret:before {
    top: 48px; }
  .jb-search.jb-search-compact .DateInput--with-caret:after {
    top: 49px; }

.jb-search-editable {
  position: relative;
  margin-top: 40px;
  transition: height 0.3s, padding 0.3s, margin 0.3s, width 0.3s, opacity 0.3s;
  width: 100%;
  padding: 20px 30px 10px;
  border: 1px solid #d4dbe3;
  color: #000000; }
  @media all and (max-width: 767px) {
    .jb-search-editable {
      padding: 15px 15px 20px; } }
  .jb-search-editable.invisible {
    height: 0;
    padding: 0;
    margin: 0;
    display: inline-block;
    opacity: 0;
    transition: all 0.3s, opacity 0.3s; }
  @media all and (min-width: 768px) {
    .jb-search-editable-content {
      max-width: calc(100% - 60px); } }
  .jb-search-editable-switch-icon {
    height: 16px;
    width: 16px;
    position: relative;
    top: 3px;
    margin: 0 5px; }
  .jb-search-editable-departure {
    display: inline-block;
    margin-bottom: 10px; }
  .jb-search-editable-destination, .jb-search-editable-date, .jb-search-editable-passangers, .jb-search-editable-class {
    display: inline-block;
    margin: 0 10px 10px 0; }
  @media all and (max-width: 767px) {
    .jb-search-editable-class {
      margin-right: 45px; } }
  .jb-search-editable-edit {
    cursor: pointer;
    display: inline-block;
    padding: 5px 8px;
    background: #ff4700;
    border-radius: 5px;
    position: absolute;
    right: 30px;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    transform: translateY(50%); }
    @media all and (max-width: 767px) {
      .jb-search-editable-edit {
        right: 15px;
        bottom: 15px;
        -webkit-transform: translateY(0%);
        transform: translateY(0%); } }
  .jb-search-editable-edit-icon {
    height: 20px;
    width: 20px;
    position: relative;
    top: 2px;
    stroke: #fff; }

.jb-desktopsearch {
  padding: 25px 15px;
  margin-bottom: -60px; }
  .jb-desktopsearch.-hero {
    margin-top: -60px; }
  .jb-desktopsearch .jb-search-container {
    max-width: 1085px;
    padding: 20px;
    background-color: #fff;
    z-index: 99;
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.3); }
  .jb-desktopsearch.jb-search-sticky {
    margin-top: -24px; }
  .jb-desktopsearch .error {
    background-color: #fec500; }
  .jb-desktopsearch-bgfix {
    overflow: hidden; }
  .jb-desktopsearch-row {
    margin: 0; }
    .jb-desktopsearch-row > div {
      padding: 0 5px; }
  .jb-desktopsearch-boxheadline {
    display: none;
    font-weight: 300;
    font-size: 22px;
    margin-bottom: 10px;
    color: #000000; }
  .jb-desktopsearch-hlhightlight {
    font-weight: 400; }
  .jb-desktopsearch-arrow {
    position: absolute;
    left: calc(50% - 25px);
    color: #d4dbe3;
    z-index: 9;
    top: 11px;
    background-color: #fff;
    padding: 6px 12px;
    border-radius: 50%;
    border: 1px solid #d4dbe3;
    cursor: pointer; }
  .jb-desktopsearch-airport {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
  .jb-desktopsearch-input {
    padding: 35px 20px 11px 25px;
    width: 100%;
    border: 1px solid #d4dbe3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    .jb-desktopsearch-input-from {
      transition: box-shadow 0.2s; }
      .jb-desktopsearch-input-from:focus {
        box-shadow: inset 0 0 0 2px #82909f; }
    .jb-desktopsearch-input-to {
      transition: box-shadow 0.2s; }
      .jb-desktopsearch-input-to:focus {
        box-shadow: inset 0 0 0 2px #82909f; }
  .jb-desktopsearch-airport__from, .jb-desktopsearch-airport__to {
    position: relative;
    width: calc( 50% - 5px); }
  .jb-desktopsearch-airport__from {
    margin-right: 10px; }
  .jb-desktopsearch-airport__label {
    position: absolute;
    top: 10px;
    left: 25px;
    font-size: 16px;
    font-weight: 400;
    color: #000000; }
  .jb-desktopsearch-airport__delete {
    position: absolute;
    top: 10px;
    right: 20px;
    border: 1px solid #d4dbe3;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 15px;
    color: #d4dbe3;
    display: none;
    cursor: pointer; }
  .jb-desktopsearch-date {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #d4dbe3;
    padding: 10px 15px 11px;
    width: 100%;
    height: 66px;
    transition: box-shadow 0.2s; }
    .jb-desktopsearch-date-jawrow {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      background-color: #ffffff;
      border: 1px solid #d4dbe3;
      padding: 10px 15px;
      width: 100%;
      transition: box-shadow 0.2s; }
      .jb-desktopsearch-date-jawrow.is-focus {
        box-shadow: inset 0 0 0 2px #82909f; }
    .jb-desktopsearch-date__fromlabel, .jb-desktopsearch-date__tolabel {
      font-size: 16px;
      font-weight: 400;
      color: #000000; }
    .jb-desktopsearch-date.is-focus {
      box-shadow: inset 0 0 0 2px #82909f; }
    .jb-desktopsearch-date__arrow {
      border-right: 1px solid #d4dbe3;
      height: 45px; }
  .jb-desktopsearch-passengers-wrapper {
    display: none; }
  .jb-desktopsearch-passengers {
    border: 1px solid #d4dbe3;
    padding: 10px 15px;
    background-color: #ffffff;
    height: 66px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: box-shadow 0.2s; }
    .jb-desktopsearch-passengers__label {
      font-size: 16px;
      font-weight: 400;
      white-space: nowrap;
      color: #000000; }
    .jb-desktopsearch-passengers.is-focus {
      box-shadow: inset 0 0 0 2px #82909f; }
  .jb-desktopsearch-searchbutton {
    width: 100%;
    padding: 10px 17px 6px 17px; }
  .jb-desktopsearch-searchbtn {
    stroke: #fff;
    width: 45px;
    height: 45px; }
  .jb-desktopsearch-jawrow {
    display: none;
    padding-top: 10px; }
    .jb-desktopsearch-jawrow.is-active {
      display: block; }
  .jb-desktopsearch-dropmenu {
    position: absolute;
    padding: 0 20px 0;
    width: 100%;
    margin: 0 -15px;
    z-index: 40;
    display: none;
    transition: opacity 0.3s;
    text-align: center;
    padding-bottom: 15px;
    margin-top: 15px;
    max-width: 751px;
    left: 10px; }
    @media all and (min-width: 1111px) {
      .jb-desktopsearch-dropmenu {
        left: calc(50% - (1095px / 2)); } }
    .jb-desktopsearch-dropmenu.is-active {
      display: block; }
    .jb-desktopsearch-dropmenu-content {
      background-color: #ffffff;
      border: 1px solid #d4dbe3;
      padding: 15px 0;
      display: inline-block;
      width: 100%;
      max-width: 1391px;
      text-align: left; }
    .jb-desktopsearch-dropmenu-autocomplete, .jb-desktopsearch-dropmenu-passengers, .jb-desktopsearch-dropmenu-date {
      display: none; }
    .jb-desktopsearch-dropmenu-date {
      padding-left: 0 !important; }
  .jb-desktopsearch-autocomplete {
    display: none;
    padding-left: 0;
    padding-right: 0;
    margin: -15px 0; }
    .jb-desktopsearch-autocomplete-result {
      position: relative; }
  .jb-desktopsearch-trip-list {
    padding: 0; }
  .jb-desktopsearch-trip-item {
    color: #000000;
    font-size: 14px;
    list-style: none;
    padding: 13px 30px;
    width: 100%;
    cursor: pointer;
    position: relative; }
    .jb-desktopsearch-trip-item:hover {
      color: #ff4700; }
    .jb-desktopsearch-trip-item.is-active {
      color: #ff4700; }
      .jb-desktopsearch-trip-item.is-active .btn-radio:after {
        position: absolute;
        content: "";
        display: block;
        left: 10px;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        height: 10px;
        width: 10px;
        top: 19px;
        border-radius: 100%;
        background-color: #313b45; }
  .jb-desktopsearch-trip .btn-radio {
    transition: all 0.2s; }
    .jb-desktopsearch-trip .btn-radio:before {
      height: 18px;
      width: 18px;
      top: 14px;
      border-radius: 100%;
      border: 2px solid #313b45;
      position: absolute;
      content: "";
      display: block;
      left: 10px;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%); }
    .jb-desktopsearch-trip .btn-radio:after {
      height: 8px;
      width: 8px; }
  .jb-desktopsearch-class {
    padding: 0; }
    .jb-desktopsearch-class-list {
      padding: 0;
      margin-bottom: 40px; }
    .jb-desktopsearch-class-item {
      color: #000000;
      font-size: 14px;
      list-style: none;
      padding: 13px 30px;
      width: 100%;
      cursor: pointer;
      position: relative; }
      .jb-desktopsearch-class-item:hover {
        color: #ff4700; }
      .jb-desktopsearch-class-item .btn-radio {
        transition: all 0.2s; }
        .jb-desktopsearch-class-item .btn-radio:before {
          height: 18px;
          width: 18px;
          top: 14px;
          border-radius: 100%;
          border: 2px solid #313b45;
          position: absolute;
          content: "";
          display: block;
          left: 10px;
          -webkit-transform: translateX(-50%);
          transform: translateX(-50%); }
        .jb-desktopsearch-class-item .btn-radio:after {
          height: 8px;
          width: 8px; }
      .jb-desktopsearch-class-item.is-active {
        color: #ff4700; }
        .jb-desktopsearch-class-item.is-active .btn-radio:after {
          position: absolute;
          content: "";
          display: block;
          left: 10px;
          -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
          height: 10px;
          width: 10px;
          top: 19px;
          border-radius: 100%;
          background-color: #313b45; }
  .jb-desktopsearch-filterrow {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 45px 15px; }
  .jb-desktopsearch-filtercol {
    position: relative;
    margin-right: 50px;
    font-weight: 400;
    cursor: pointer; }
    .jb-desktopsearch-filtercol span {
      transition: color 0.15s ease-in-out; }
    .jb-desktopsearch-filtercol:hover > span {
      color: #ff4700; }
    .jb-desktopsearch-filtercol svg {
      width: 10px;
      height: 10px;
      margin-left: 5px; }
    .jb-desktopsearch-filtercol .jb-mobilesearch-modal-svgplus,
    .jb-desktopsearch-filtercol .jb-mobilesearch-modal-svgminus {
      margin-left: 0; }
  .jb-desktopsearch .jb-search-direction {
    display: block;
    height: 14px;
    width: 17px; }
  .jb-desktopsearch-box-trip, .jb-desktopsearch-box-passengers, .jb-desktopsearch-box-class {
    position: absolute;
    z-index: 50;
    background-color: #fff;
    min-width: 400px;
    border: 1px solid #d4dbe3;
    padding: 10px 0;
    margin-top: 5px;
    transition: all 0.4s;
    opacity: 0;
    visibility: hidden; }
    .jb-desktopsearch-box-trip.is-open, .jb-desktopsearch-box-passengers.is-open, .jb-desktopsearch-box-class.is-open {
      opacity: 1;
      visibility: visible; }
  .jb-desktopsearch-box-trip {
    padding: 12px 10px 0; }
  .jb-desktopsearch-box-passengers {
    padding: 23px 0 0; }
    .jb-desktopsearch-box-passengers .jb-mobilesearch-modal-label {
      font-size: 14px; }
    .jb-desktopsearch-box-passengers .jb-mobilesearch-modal-input {
      font-size: 16px; }
    .jb-desktopsearch-box-passengers .jb-mobilesearch-modal-svgminus {
      left: 7px;
      top: 7px; }
    .jb-desktopsearch-box-passengers .jb-mobilesearch-modal-svgplus {
      top: 7px;
      left: 7px; }
  .jb-desktopsearch-box-class {
    padding: 10px 0 4px; }
  .jb-desktopsearch .jb-desktopsearch-trip-item .btn-radio:before,
  .jb-desktopsearch .jb-desktopsearch-class-item .btn-radio:before {
    height: 20px;
    width: 20px;
    top: 14px;
    border-radius: 100%;
    border: 2px solid #313b45;
    position: absolute;
    content: "";
    display: block;
    left: 10px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); }

.jb-h1.text-center,
.jb-h2.text-center,
.text-center.jb-neos-headline-alternative,
.jb-h3.text-center {
  text-align: left; }

.jb-mobilesearch {
  padding: 15px 10px 10px 10px;
  position: relative;
  background-color: #E0E3E7; }
  .jb-mobilesearch .error {
    background-color: #fec500; }
  .jb-mobilesearch-bgfix {
    position: fixed;
    overflow: hidden; }
  .jb-mobilesearch-row {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative; }
  .jb-mobilesearch-trip {
    border: 4px solid transparent;
    width: 33.3333%;
    text-align: center;
    padding: 8px 2px;
    margin-bottom: 15px;
    cursor: pointer;
    font-weight: 400; }
    .jb-mobilesearch-trip.is-active {
      border: 4px solid #ffffff;
      color: #000000; }
  .jb-mobilesearch-rt {
    display: none; }
    .jb-mobilesearch-rt.is-active {
      display: block; }
  .jb-mobilesearch-jaw {
    display: none; }
    .jb-mobilesearch-jaw.is-active {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
  .jb-mobilesearch-arrows {
    position: absolute;
    left: calc(50% - 20px);
    border: 2px solid #acb7c1;
    top: 50px;
    padding: 3px 0;
    background-color: #ffffff; }
    .jb-mobilesearch-arrows .jb-search-editable-switch-icon {
      height: 25px;
      width: 25px;
      display: none;
      padding: 5px; }
      .jb-mobilesearch-arrows .jb-search-editable-switch-icon.is-active {
        display: inline-block; }
  .jb-mobilesearch-airport {
    background-color: #ffffff;
    width: 50%;
    text-align: center;
    padding: 15px 15px;
    cursor: pointer; }
  .jb-mobilesearch-departure-airport {
    border-right: 4px solid #f4f6f8;
    border-bottom: 8px solid #f4f6f8; }
  .jb-mobilesearch-destination-airport {
    border-left: 4px solid #f4f6f8;
    border-bottom: 8px solid #f4f6f8; }
  .jb-mobilesearch-inputdate {
    background-color: #ffffff;
    width: 50%;
    text-align: center;
    border-right: 4px solid #f4f6f8;
    padding: 15px 10px;
    cursor: pointer; }
    .jb-mobilesearch-inputdate.-fullwidth {
      width: 100%;
      border-left: none;
      border-right: none;
      border-bottom: 8px solid #f4f6f8; }
  .jb-mobilesearch-passenger {
    background-color: #ffffff;
    width: 50%;
    text-align: center;
    border-left: 4px solid #f4f6f8;
    padding: 15px 10px;
    cursor: pointer; }
    .jb-mobilesearch-passenger.-fullwidth {
      width: 100%;
      border-left: none;
      border-right: none; }
  .jb-mobilesearch-code {
    font-size: 32px;
    font-weight: 700;
    color: #000000; }
  .jb-mobilesearch-value {
    font-weight: 700;
    font-size: 15px;
    color: #000000; }
  .jb-mobilesearch-label {
    font-size: 14px; }
  .jb-mobilesearch-searchbutton {
    width: 100%;
    margin-top: 10px; }
  .jb-mobilesearch--calendar {
    position: relative; }
    .jb-mobilesearch--calendar__labelfrom {
      position: fixed;
      z-index: 120;
      bottom: 115px;
      width: 50%;
      text-align: center;
      left: 0;
      font-size: 18px;
      display: none; }
    .jb-mobilesearch--calendar__labelto {
      position: fixed;
      z-index: 120;
      bottom: 115px;
      width: 50%;
      text-align: center;
      right: 0;
      font-size: 18px;
      display: none; }
  .jb-mobilesearch-sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    background-color: #ffffff;
    padding: 10px 15px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.4);
    cursor: pointer;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s; }
    @media (min-width: 992px) {
      .jb-mobilesearch-sticky {
        display: none; } }
    .jb-mobilesearch-sticky.-sticky {
      opacity: 1;
      visibility: visible; }
    .jb-mobilesearch-sticky-text {
      color: #000;
      font-weight: 400; }
  .jb-mobilesearch-iconsearch {
    width: 30px;
    height: 30px; }

.jb-mobilesearch-modal {
  background-color: #ffffff;
  padding: 50px 15px 0 15px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 110;
  overflow: hidden;
  display: none;
  transition: all 0.3s;
  opacity: 0; }
  @media (min-width: 992px) {
    .jb-mobilesearch-modal {
      display: none; } }
  .jb-mobilesearch-modal.open {
    display: block;
    opacity: 1; }
  .jb-mobilesearch-modal-headline {
    font-size: 22px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #acb7c1; }
  .jb-mobilesearch-modal-class {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 0;
    margin-bottom: 70px; }
    .jb-mobilesearch-modal-class-item {
      color: #000000;
      font-size: 16px;
      border: 2px solid #ffffff;
      list-style: none;
      padding: 10px;
      width: 50%;
      text-align: center;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      cursor: pointer; }
      .jb-mobilesearch-modal-class-item.is-active {
        border: 2px solid #000000;
        color: #000000; }
  .jb-mobilesearch-modal-label {
    font-size: 16px;
    color: #000000; }
  .jb-mobilesearch-modal-sublabel {
    display: inline-block;
    font-size: 16px;
    color: #acb7c1;
    margin-left: 10px; }
  .jb-mobilesearch-modal-row {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px; }
    .jb-mobilesearch-modal-row.-right {
      -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
      justify-content: flex-end; }
  .jb-mobilesearch-modal-value {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
  .jb-mobilesearch-modal-minus, .jb-mobilesearch-modal-plus {
    position: relative;
    background-color: #acb7c1;
    border-radius: 100%;
    height: 24px;
    width: 24px;
    cursor: pointer; }
    .jb-mobilesearch-modal-minus.is-active, .jb-mobilesearch-modal-plus.is-active {
      background-color: #ff4700; }
      .jb-mobilesearch-modal-minus.is-active > svg, .jb-mobilesearch-modal-plus.is-active > svg {
        fill: #fff; }
  .jb-mobilesearch-modal-svgminus {
    position: absolute;
    top: 8px;
    left: 8px;
    height: 8px;
    width: 8px;
    fill: #ffffff; }
  .jb-mobilesearch-modal-svgplus {
    position: absolute;
    top: 8px;
    left: 8px;
    height: 8px;
    width: 8px;
    fill: #ffffff; }
  .jb-mobilesearch-modal-departurebox {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 5px;
    width: 100%;
    border-bottom: 2px solid #acb7c1; }
  .jb-mobilesearch-modal-departure, .jb-mobilesearch-modal-destination {
    width: 30px;
    height: 30px; }
    .jb-mobilesearch-modal-departure-small, .jb-mobilesearch-modal-destination-small {
      width: 20px;
      height: 20px;
      margin-right: 16px;
      fill: #acb7c1; }
  .jb-mobilesearch-modal-input {
    font-size: 22px;
    color: #acb7c1;
    background-color: transparent;
    border: none;
    width: 40px;
    text-align: center;
    margin: 0 5px; }
    .jb-mobilesearch-modal-input.is-active {
      color: #000000; }
    .jb-mobilesearch-modal-input-fullicon {
      width: calc(100% - 50px);
      text-align: left;
      color: #000000; }
  .jb-mobilesearch-modal-autocomplete-list {
    margin: 0;
    padding: 0;
    width: 100%; }
  .jb-mobilesearch-modal-autocomplete-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding: 10px 0;
    cursor: pointer;
    font-size: 16px; }
    .jb-mobilesearch-modal-autocomplete-item:hover {
      color: #ff4700; }
  .jb-mobilesearch-modal-savebutton {
    width: 100%;
    margin-top: 20px; }
  .jb-mobilesearch-modal-closebox {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    z-index: 15; }
  .jb-mobilesearch-modal-close {
    width: 20px;
    height: 20px; }
    .jb-mobilesearch-modal-close:hover {
      fill: #ff4700; }
  .jb-mobilesearch-modal-delete {
    position: absolute;
    top: 15px;
    left: 15px;
    cursor: pointer; }
    .jb-mobilesearch-modal-delete:hover {
      color: #ff4700; }

.usp-storno {
  margin-top: 30px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .usp-storno--headline {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #000000;
    margin-top: 8px;
    margin-bottom: 0; }
  .usp-storno--subline {
    font-family: Montserrat, sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.3;
    color: #000000; }
  .usp-storno--icon {
    text-align: center;
    padding-left: 0;
    padding-right: 0; }
    @media (min-width: 992px) {
      .usp-storno--icon {
        text-align: left;
        padding-left: 0;
        padding-right: 0; } }
    .usp-storno--icon .waitScreen--storno {
      width: 40px;
      height: 32px;
      margin-top: 10px; }
  .usp-storno--text {
    text-align: center;
    margin-bottom: 10px;
    padding: 0 0 0 10px; }
    @media (min-width: 768px) {
      .usp-storno--text {
        text-align: left;
        margin-bottom: 0;
        padding: 0 0 0 10px; } }

.jb-image-teaser-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.jb-image-teaser {
  display: block;
  margin-bottom: 40px;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%; }
  .jb-image-teaser a:hover {
    text-decoration: underline; }
  @media all and (min-width: 768px) {
    .jb-image-teaser {
      width: 50%; } }
  @media all and (min-width: 992px) {
    .jb-image-teaser {
      width: 33.33%; } }
  @media all and (min-width: 992px) {
    .jb-image-teaser.jb-image-teaser-variant:nth-child(10n-6), .jb-image-teaser.jb-image-teaser-variant:nth-child(10n) {
      width: 66.66%; } }

@media all and (min-width: 992px) {
  .jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(10n-6), .jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(10n) {
    width: 33.33%; } }

.jb-image-teaser-wrapper-tagged-deal .jb-dealteaser-box {
  margin-top: 0; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(1) {
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(2) {
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(3) {
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(4) {
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(5) {
  -webkit-order: 5;
  -ms-flex-order: 5;
  order: 5; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(6) {
  -webkit-order: 6;
  -ms-flex-order: 6;
  order: 6; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(7) {
  -webkit-order: 7;
  -ms-flex-order: 7;
  order: 7; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(8) {
  -webkit-order: 8;
  -ms-flex-order: 8;
  order: 8; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(9) {
  -webkit-order: 9;
  -ms-flex-order: 9;
  order: 9; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(10) {
  -webkit-order: 10;
  -ms-flex-order: 10;
  order: 10; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(11) {
  -webkit-order: 11;
  -ms-flex-order: 11;
  order: 11; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(12) {
  -webkit-order: 12;
  -ms-flex-order: 12;
  order: 12; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(13) {
  -webkit-order: 13;
  -ms-flex-order: 13;
  order: 13; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(14) {
  -webkit-order: 14;
  -ms-flex-order: 14;
  order: 14; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(15) {
  -webkit-order: 15;
  -ms-flex-order: 15;
  order: 15; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(16) {
  -webkit-order: 16;
  -ms-flex-order: 16;
  order: 16; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(17) {
  -webkit-order: 17;
  -ms-flex-order: 17;
  order: 17; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(18) {
  -webkit-order: 18;
  -ms-flex-order: 18;
  order: 18; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(19) {
  -webkit-order: 19;
  -ms-flex-order: 19;
  order: 19; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(20) {
  -webkit-order: 20;
  -ms-flex-order: 20;
  order: 20; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(21) {
  -webkit-order: 21;
  -ms-flex-order: 21;
  order: 21; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(1) {
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(2) {
  -webkit-order: 6;
  -ms-flex-order: 6;
  order: 6; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(3) {
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1; }

.jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(4) {
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3; }

@media all and (min-width: 992px) {
  .jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(5),
  .jb-image-teaser-wrapper-tagged-deal .jb-image-teaser:nth-child(7) {
    width: 66.66%; } }

.jb-image-teaser-wrapper-deal {
  /*
	.jb-image-teaser:nth-child(4) {
		order: 14;

		@media all and (min-width: $screen-md-min) {
			order: 13;
		}
	}
	 */ }
  @media all and (min-width: 992px) {
    .jb-image-teaser-wrapper-deal .jb-image-teaser.jb-image-teaser-variant:nth-child(10n-6), .jb-image-teaser-wrapper-deal .jb-image-teaser.jb-image-teaser-variant:nth-child(10n) {
      width: 33.33%; } }
  @media all and (min-width: 992px) {
    .jb-image-teaser-wrapper-deal .jb-image-teaser.jb-image-teaser-variant:nth-child(6), .jb-image-teaser-wrapper-deal .jb-image-teaser.jb-image-teaser-variant:nth-child(9) {
      width: 66.66%; } }
  .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(1) {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1; }
  .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(2) {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2; }
  .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(3) {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3; }
  .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(4) {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4; }
  .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(5) {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5; }
  .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(6) {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6; }
  .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(7) {
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7; }
  .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(8) {
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8; }
  .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(9) {
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9; }
  .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(10) {
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10; }
  .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(11) {
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11; }
  .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(12) {
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12; }
  .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(13) {
    -webkit-order: 13;
    -ms-flex-order: 13;
    order: 13; }
  .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(14) {
    -webkit-order: 14;
    -ms-flex-order: 14;
    order: 14; }
  .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(15) {
    -webkit-order: 15;
    -ms-flex-order: 15;
    order: 15; }
  .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(16) {
    -webkit-order: 16;
    -ms-flex-order: 16;
    order: 16; }
  .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(17) {
    -webkit-order: 17;
    -ms-flex-order: 17;
    order: 17; }
  .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(18) {
    -webkit-order: 18;
    -ms-flex-order: 18;
    order: 18; }
  .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(19) {
    -webkit-order: 19;
    -ms-flex-order: 19;
    order: 19; }
  .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(20) {
    -webkit-order: 20;
    -ms-flex-order: 20;
    order: 20; }
  .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(21) {
    -webkit-order: 21;
    -ms-flex-order: 21;
    order: 21; }
  .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(1) {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5; }
  .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(2) {
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7; }
  .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(3) {
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9; }
    @media all and (min-width: 992px) {
      .jb-image-teaser-wrapper-deal .jb-image-teaser:nth-child(3) {
        -webkit-order: 8;
        -ms-flex-order: 8;
        order: 8; } }

@media all and (min-width: 992px) {
  .jb-image-teaser-wrapper-destination-deal .jb-image-teaser.jb-image-teaser-variant:nth-child(n) {
    width: 33.33%; } }

@media all and (min-width: 992px) {
  .jb-image-teaser-wrapper-destination-deal .jb-image-teaser.jb-image-teaser-variant:nth-child(5n+4) {
    width: 66.66%; } }

.jb-image-teaser-wrapper-destination-deal .jb-image-teaser:nth-child(1) {
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1; }

.jb-image-teaser-wrapper-destination-deal .jb-image-teaser:nth-child(2) {
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2; }

.jb-image-teaser-wrapper-destination-deal .jb-image-teaser:nth-child(3) {
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3; }

.jb-image-teaser-wrapper-destination-deal .jb-image-teaser:nth-child(4) {
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4; }

.jb-image-teaser-wrapper-destination-deal .jb-image-teaser:nth-child(5) {
  -webkit-order: 5;
  -ms-flex-order: 5;
  order: 5; }

.jb-image-teaser-wrapper-destination-deal .jb-image-teaser:nth-child(6) {
  -webkit-order: 6;
  -ms-flex-order: 6;
  order: 6; }

.jb-image-teaser-wrapper-destination-deal .jb-image-teaser:nth-child(7) {
  -webkit-order: 7;
  -ms-flex-order: 7;
  order: 7; }

.jb-image-teaser-wrapper-destination-deal .jb-image-teaser:nth-child(8) {
  -webkit-order: 8;
  -ms-flex-order: 8;
  order: 8; }

.jb-image-teaser-wrapper-destination-deal .jb-image-teaser:nth-child(9) {
  -webkit-order: 9;
  -ms-flex-order: 9;
  order: 9; }

.jb-image-teaser-wrapper-destination-deal .jb-image-teaser:nth-child(10) {
  -webkit-order: 10;
  -ms-flex-order: 10;
  order: 10; }

.jb-image-teaser-wrapper-destination-deal .jb-image-teaser:nth-child(11) {
  -webkit-order: 11;
  -ms-flex-order: 11;
  order: 11; }

.jb-image-teaser-wrapper-destination-deal .jb-image-teaser:nth-child(12) {
  -webkit-order: 12;
  -ms-flex-order: 12;
  order: 12; }

.jb-image-teaser-wrapper-destination-deal .jb-image-teaser:nth-child(13) {
  -webkit-order: 13;
  -ms-flex-order: 13;
  order: 13; }

.jb-image-teaser-wrapper-destination-deal .jb-image-teaser:nth-child(14) {
  -webkit-order: 14;
  -ms-flex-order: 14;
  order: 14; }

.jb-image-teaser-wrapper-destination-deal .jb-image-teaser:nth-child(15) {
  -webkit-order: 15;
  -ms-flex-order: 15;
  order: 15; }

.jb-image-teaser-wrapper-destination-deal .jb-image-teaser:nth-child(16) {
  -webkit-order: 16;
  -ms-flex-order: 16;
  order: 16; }

.jb-image-teaser-wrapper-destination-deal .jb-image-teaser:nth-child(17) {
  -webkit-order: 17;
  -ms-flex-order: 17;
  order: 17; }

.jb-image-teaser-wrapper-destination-deal .jb-image-teaser:nth-child(18) {
  -webkit-order: 18;
  -ms-flex-order: 18;
  order: 18; }

.jb-image-teaser-wrapper-destination-deal .jb-image-teaser:nth-child(19) {
  -webkit-order: 19;
  -ms-flex-order: 19;
  order: 19; }

.jb-image-teaser-wrapper-destination-deal .jb-image-teaser:nth-child(20) {
  -webkit-order: 20;
  -ms-flex-order: 20;
  order: 20; }

.jb-image-teaser-wrapper-destination-deal .jb-image-teaser:nth-child(21) {
  -webkit-order: 21;
  -ms-flex-order: 21;
  order: 21; }

.jb-image-teaser-wrapper-destination-deal .jb-image-teaser:nth-child(1) {
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4; }

.jb-image-teaser-wrapper-destination-deal .jb-deal-creation-date {
  display: none; }

.jb-image-teaser-wrapper-destination-deal .jb-dealteaser-item .jb-dealteaser-box {
  margin-top: 0; }

.jb-image-teaser-wrapper-tagged-deal .jb-deal-creation-date {
  display: none; }

.jb-image-teaser-top {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  height: 275px;
  width: 100%;
  overflow: hidden; }
  .jb-image-teaser-top .jb-image-teaser-top-img {
    background-size: cover;
    background-position: center;
    position: absolute;
    z-index: 0;
    height: 100%;
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
  .jb-image-teaser-top .jb-image-teaser-top-imgtag {
    object-fit: cover;
    width: 100%; }

.jb-image-teaser-center {
  position: relative;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  z-index: 1;
  font-size: 40px;
  line-height: 40px;
  text-align: center; }
  .jb-image-teaser-center:before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.1); }
  .jb-image-teaser-center span {
    position: absolute;
    z-index: 2;
    width: 100%;
    top: calc(50% + 16px);
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding-left: 10px;
    padding-right: 10px; }

.jb-image-teaser-overlay {
  position: relative;
  padding: 18px 15px;
  background-color: rgba(49, 59, 69, 0.8);
  z-index: 1;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300; }

.jb-image-teaser-bottom {
  padding-top: 5px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.jb-image-teaser-bottom-left {
  padding-right: 10px; }

.jb-image-teaser-bottom-right {
  width: 120px; }

.jb-image-teaser.jb-image-teaser-small .jb-image-teaser-top {
  height: 175px;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end; }

.jb-image-teaser.jb-image-teaser-small .jb-image-teaser-bottom {
  padding: 10px 0;
  border: 1px solid #d4dbe3;
  border-top: none;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

/* <--- Start Styles specific to Airline teaser */
.jb-image-teaser.jb-image-teaser-airline .jb-image-teaser-overlay {
  padding: 0 15px;
  height: 55px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }

.jb-image-teaser.jb-image-teaser-airline .jb-image-teaser-top-img {
  top: 0; }

.jb-image-teaser.jb-image-teaser-airline .jb-image-teaser-overlay-text {
  display: inline-block;
  height: 100%;
  line-height: 55px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  float: left; }

.jb-image-teaser.jb-image-teaser-airline .jb-image-teaser-overlay-text:hover,
.jb-image-teaser.jb-image-teaser-airline .jb-image-teaser-overlay-text:focus,
.jb-image-teaser.jb-image-teaser-airline .jb-image-teaser-overlay-text:active {
  color: white; }

.jb-image-teaser.jb-image-teaser-airline .jb-text-business-deals-count {
  padding-left: 3px; }

.jb-image-teaser.jb-image-teaser-airline .jb-text-separator {
  line-height: 55px;
  float: left;
  padding: 0 3px; }

/* End Styles specific to Airline Teaser  ---> */
/* <--- Start Styles specific to Deal Teaser */
.jb-image-teaser.jb-image-teaser-deal .jb-image-teaser-top-img {
  overflow: hidden; }

.jb-deal-price, .jb-deal-currency {
  font-size: 24px; }

.jb-deal-price-wrapper {
  display: inline-block; }

.jb-deal-creation-date {
  position: relative;
  margin-bottom: 5px;
  color: #313b45; }
  .jb-deal-creation-date .jb-icon-inline {
    fill: #313b45; }

.jb-deal-travelduration {
  white-space: nowrap; }

/* End Styles specific to deal teaser ---> */
/* <--- Start Styles specific to Checkout Teaser */
.jb-checkout-teaser .jb-image-teaser-center {
  line-height: 39px;
  padding: 0 20px;
  text-shadow: 0px 0px 9px #969696; }
  @media all and (min-width: 768px) {
    .jb-checkout-teaser .jb-image-teaser-center {
      width: 100%; } }

/* End Styles specific to Checkout Teaser ---> */
/******************** DEAL Header *****************************/
.jb-deal-header {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 35px;
  padding-top: 35px;
  border-top: 1px solid #d4dbe3; }

.jb-deal-header-bar {
  position: relative; }
  .jb-deal-header-bar:before {
    content: "";
    position: absolute;
    display: block;
    height: 5px;
    width: 50%;
    background-color: #fec500;
    top: 0;
    z-index: 1; }

.jb-deal-header-hl {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300; }

.jb-deal-header-copy {
  font-size: 16px;
  margin-top: 5px; }
  @media all and (max-width: 767px) {
    .jb-deal-header-copy {
      margin-bottom: 20px; } }

.jb-deal-header-price {
  float: left; }
  .jb-deal-header-price span:last-child {
    margin-left: 10px;
    color: #000000;
    font-size: 40px; }
  @media all and (min-width: 768px) {
    .jb-deal-header-price {
      margin-right: 50px; } }

.jb-deal-header-item {
  float: left;
  position: relative;
  height: 40px;
  line-height: 40px;
  padding-right: 34px;
  font-size: 16px; }
  @media all and (min-width: 768px) {
    .jb-deal-header-item {
      margin-top: 9px; } }
  .jb-deal-header-item.jb-deal-header-item-badge {
    padding-left: 46px; }

.jb-deal-header-icon {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 24px;
  width: 24px;
  fill: #000000; }

.jb-deal-expired {
  border-top: none; }
  .jb-deal-expired .jb-deal-header-hl,
  .jb-deal-expired .jb-deal-header-copy,
  .jb-deal-expired .jb-deal-header-price,
  .jb-deal-expired .jb-deal-header-right {
    opacity: 0.3; }
  .jb-deal-expired .jb-deal-header-item span {
    border: 1px solid #ff4700;
    padding: 2px 13px 3px;
    color: #ff4700;
    font-size: 20px; }

.jb-deal-calender-login {
  padding: 30px 0 20px; }
  .jb-deal-calender-login .jb-deal-calendar-login-hl {
    font-size: 16px;
    margin-bottom: 20px; }
  .jb-deal-calender-login .jb-btn {
    margin-bottom: 15px; }

.jb-deal-search-border {
  border-width: 1px 0;
  border-color: #d4dbe3;
  border-style: solid; }

.jb-deal-search {
  position: relative;
  padding-top: 30px;
  padding-bottom: 20px; }
  .jb-deal-search input[type=text], .jb-deal-search .DateInput, .jb-deal-search .select2-container {
    border-color: #82909f; }
  @media all and (max-width: 767px) {
    .jb-deal-search .jb-input-icon {
      margin-bottom: 20px; } }
  .jb-deal-search .jb-input-icon-label {
    font-size: 13px;
    color: #000000; }

.jb-deal-search-select .jb-input-svg {
  z-index: 100; }

.jb-deal-search-select .select2-selection__rendered {
  padding-left: 30px !important; }

.jb-deal-search-select .select2-container {
  margin-bottom: 0; }

.jb-deal-search-button {
  display: block;
  width: 100%;
  margin: 10px auto; }
  @media all and (min-width: 768px) {
    .jb-deal-search-button {
      width: 252px; } }
  @media all and (min-width: 992px) {
    .jb-deal-search-button {
      position: absolute;
      bottom: 40px;
      right: 0;
      width: auto;
      margin: 0; } }

.jb-deal-search-empty {
  margin-bottom: 20px;
  padding: 10px;
  font-size: 16px;
  background-color: rgba(254, 197, 0, 0.2); }

@media all and (min-width: 992px) {
  .jb-deal-search-form-wrapper {
    width: calc(100% - 252px - 30px); } }

.jb-deal-search-return-date,
.jb-deal-search-departure-date {
  position: relative;
  width: 50%;
  float: left; }
  .jb-deal-search-return-date .react-datepicker__input-container,
  .jb-deal-search-departure-date .react-datepicker__input-container {
    width: 100%; }

.jb-deal-search-departure-date input {
  border-right: none; }

.jb-deal-search-hl {
  margin-bottom: 20px;
  font-size: 16px; }

/******************** DEAL CALENDAR *********************************/
.jb-deal-calendar {
  position: relative;
  z-index: 30;
  padding: 20px 0;
  border-bottom: 1px solid #d4dbe3;
  display: none; }
  .jb-deal-calendar.jb-deal-calendar-disabled {
    cursor: pointer; }
    .jb-deal-calendar.jb-deal-calendar-disabled:before {
      content: "";
      position: absolute;
      width: 100vw;
      top: 0;
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      background-color: rgba(255, 255, 255, 0.35);
      z-index: 40; }
  .jb-deal-calendar .jb-deal-calendar-table-wrapper {
    width: 100%;
    overflow: visible;
    position: relative;
    padding-right: 40px; }
  @media all and (min-width: 768px) {
    .jb-deal-calendar {
      padding: 30px 0; } }

.jb-deal-calendar-destination-deal, .jb-deal-calendar-airline-deal {
  border-bottom: none;
  padding: 37px 0; }

.jb-deal-calendar-button-unstyled {
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  outline: none;
  box-shadow: none; }

.jb-deal-calendar-table {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
  margin-top: 50px; }
  .jb-deal-calendar-table tr {
    border: 1px solid #d4dbe3; }
  @media all and (max-width: 991px) {
    .jb-deal-calendar-table {
      margin: 50px auto 20px; }
      .jb-deal-calendar-table td,
      .jb-deal-calendar-table th {
        width: 16.66%; } }
  @media all and (max-width: 767px) {
    .jb-deal-calendar-table {
      font-size: 12px; }
      .jb-deal-calendar-table td,
      .jb-deal-calendar-table th {
        width: 25%; } }

.jb-deal-calendar-thead {
  background-color: #f4f6f8; }
  .jb-deal-calendar-thead tr {
    border-bottom: 0; }
  .jb-deal-calendar-thead th {
    padding: 10px;
    border-bottom: 0;
    height: 60px; }

.jb-deal-calendar-cell {
  height: 60px;
  border-left: 1px solid #d4dbe3;
  vertical-align: middle;
  width: 12.5%;
  background: #fff; }
  .jb-deal-calendar-cell .jb-deal-calendar-cell-inner-wrapper {
    position: relative;
    width: 100%;
    height: 100%; }
    .jb-deal-calendar-cell .jb-deal-calendar-cell-inner-wrapper.lowestPrice::before, .jb-deal-calendar-cell .jb-deal-calendar-cell-inner-wrapper.lowestPrice::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      border-color: transparent;
      border-style: solid; }
    .jb-deal-calendar-cell .jb-deal-calendar-cell-inner-wrapper.lowestPrice::before {
      border-width: 14px;
      opacity: 0.3;
      border-right-color: #858585;
      border-top-color: #858585; }
    .jb-deal-calendar-cell .jb-deal-calendar-cell-inner-wrapper.lowestPrice::after {
      border-width: 13px;
      border-right-color: #1b9d2c;
      border-top-color: #1b9d2c; }
  .jb-deal-calendar-cell button {
    width: 100%;
    height: 100%;
    padding: 0 10px; }
  .jb-deal-calendar-cell.deal {
    cursor: pointer;
    background-color: #dceec6;
    color: #000000; }
  .jb-deal-calendar-cell.nodeal {
    cursor: pointer;
    background-color: #fff;
    color: #000000; }
  .jb-deal-calendar-cell.hovered:not(.selected) {
    background-color: #acb7c1;
    border: 1px solid #acb7c1;
    color: #ffffff; }
  .jb-deal-calendar-cell.selected {
    background-color: #82909f;
    border: 1px solid #82909f;
    color: #ffffff; }
  .jb-deal-calendar-cell.highlighted {
    border-left: 1px solid #acb7c1;
    border-right: 1px solid #acb7c1; }
  .jb-deal-calendar-cell.highlightedBlank {
    border-left: 1px solid #82909f;
    border-right: 1px solid #82909f; }
  .jb-deal-calendar-cell.selectedBlank {
    background-color: #82909f;
    border: 1px solid #82909f;
    color: #ffffff; }

.jb-deal-calendar-cell.hovered ~ .jb-deal-calendar-cell {
  border-top: 1px solid #acb7c1;
  border-bottom: 1px solid #acb7c1; }

.jb-deal-calendar-cell.hovered ~ .jb-deal-calendar-row-head-cell {
  color: #000;
  border-top: 1px solid #acb7c1;
  border-bottom: 1px solid #acb7c1;
  border-right: 1px solid #acb7c1; }

.jb-deal-calendar-cell.selectedBlank.hoveredBlank ~ .jb-deal-calendar-cell {
  border-top: 1px solid #82909f;
  border-bottom: 1px solid #82909f; }

.jb-deal-calendar-cell.selectedBlank.hoveredBlank ~ .jb-deal-calendar-row-head-cell {
  color: #000;
  border-top: 1px solid #82909f;
  border-bottom: 1px solid #82909f;
  border-right: 1px solid #82909f; }

.jb-deal-calendar-head-cell.highlighted {
  color: #000;
  border: 1px solid #acb7c1;
  border-bottom: 0; }

.jb-deal-calendar-head-cell.highlightedBlank {
  color: #000;
  border: 1px solid #82909f;
  border-bottom: 0; }

.jb-deal-calendar-head-cell, .jb-deal-calendar-row-head-cell {
  background-color: #f4f6f8;
  border-left: 1px solid #d4dbe3;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  cursor: default; }

.jb-deal-calendar-head-cell:last-child {
  border-top: 1px solid #d4dbe3;
  border-right: 1px solid #d4dbe3;
  background-color: #f4f6f8; }

.jb-deal-calendar .jb-deal-calendar-flights {
  margin-bottom: 10px;
  min-height: 20px;
  width: calc(100% - 30px);
  position: relative;
  color: #000;
  padding-right: 30px; }

.jb-deal-calendar .jb-icon-airplane {
  height: 16px;
  width: 16px;
  fill: #000;
  vertical-align: top;
  margin-left: 10px;
  margin-top: 2px; }

.jb-deal-calendar .jb-deal-calendar-departure {
  position: absolute;
  left: 0;
  z-index: 39;
  width: 100%; }

.jb-deal-calendar .jb-deal-calendar-departure {
  position: absolute;
  right: 0;
  left: 0;
  top: -30px;
  border: 0 solid transparent; }
  .jb-deal-calendar .jb-deal-calendar-departure .jb-td-icon {
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    border: 0;
    background: transparent; }

.jb-deal-calendar .jb-icon-arrow {
  height: 30px;
  width: 30px;
  fill: #000;
  vertical-align: top;
  background-color: #f4f6f8;
  border: 1px solid #d4dbe3;
  cursor: pointer; }

.jb-deal-calendar .jb-deal-calendar-departure-icons {
  position: absolute;
  right: 0;
  height: 30px;
  bottom: 0; }
  @media all and (max-width: 991px) {
    .jb-deal-calendar .jb-deal-calendar-departure-icons {
      right: 16.66%; } }
  @media all and (max-width: 767px) {
    .jb-deal-calendar .jb-deal-calendar-departure-icons {
      right: 25%; } }
  .jb-deal-calendar .jb-deal-calendar-departure-icons button + button {
    margin-left: 10px; }

.jb-deal-calendar .jb-deal-calendar-departure-forward {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg); }

.jb-deal-calendar .jb-deal-calendar-return {
  position: absolute;
  right: -25px;
  top: 60px;
  width: 30px;
  bottom: 0;
  border: 0 solid transparent; }
  .jb-deal-calendar .jb-deal-calendar-return .jb-td-icon {
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    border: 0;
    background: transparent; }
  .jb-deal-calendar .jb-deal-calendar-return span {
    position: absolute;
    right: -40px;
    width: 100px;
    top: 40px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg); }
  .jb-deal-calendar .jb-deal-calendar-return .jb-deal-calendar-return-icons {
    position: absolute;
    bottom: 0;
    left: 10px; }
    .jb-deal-calendar .jb-deal-calendar-return .jb-deal-calendar-return-icons button + button {
      margin-top: 10px; }
  .jb-deal-calendar .jb-deal-calendar-return .jb-deal-calendar-return-backward {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg); }
  .jb-deal-calendar .jb-deal-calendar-return .jb-deal-calendar-return-forward {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg); }
  @media all and (min-width: 768px) {
    .jb-deal-calendar .jb-deal-calendar-return {
      right: -30px; } }

/******************** DEAL CALENDAR DETAILS ************************/
.jb-deal-calendar-details {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  position: relative; }
  .jb-deal-calendar-details .jb-input-icon-label {
    margin-bottom: 0px; }
  .jb-deal-calendar-details .jb-deal-calender-details-time-btn-xs {
    margin-bottom: 30px; }
  .jb-deal-calendar-details .jb-deal-calendar-details-text {
    font-size: 20px;
    display: block; }
    @media all and (max-width: 991px) {
      .jb-deal-calendar-details .jb-deal-calendar-details-text {
        margin-bottom: 15px; } }
  .jb-deal-calendar-details .jb-deal-calendar-details-arrow {
    height: 26px;
    width: 19px;
    fill: #FEC500;
    -webkit-transform: translateY(50%);
    transform: translateY(50%); }
  .jb-deal-calendar-details .jb-deal-calendar-details-button {
    display: block;
    width: 100%;
    margin: 30px 0 20px 0; }
    @media all and (min-width: 768px) {
      .jb-deal-calendar-details .jb-deal-calendar-details-button {
        width: 244px;
        margin: 20px auto 20px; } }
    @media all and (min-width: 992px) {
      .jb-deal-calendar-details .jb-deal-calendar-details-button {
        margin: 0;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 30px;
        width: auto; } }
  @media all and (max-width: 768px) {
    .jb-deal-calendar-details .jb-entry-btn .jb-btn {
      width: 100%;
      text-align: center; } }

/******************** DEAL CALENDAR FOOTER *************************/
.jb-deal-calendar-footer {
  padding: 40px 15px;
  display: none; }
  .jb-deal-calendar-footer-icon {
    fill: #000000;
    height: 20px;
    width: 20px;
    -webkit-transform: translateY(50%);
    transform: translateY(50%); }
  .jb-deal-calendar-footer-label {
    margin-left: 10px; }
  .jb-deal-calendar-footer-text {
    display: block; }
  .jb-deal-calendar-footer .jb-deal-calendar-item-flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  @media all and (max-width: 991px) {
    .jb-deal-calendar-footer .jb-deal-calendar-item-flex {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; }
    .jb-deal-calendar-footer .jb-deal-calendar-footer-item {
      margin-bottom: 20px; } }

/******************** DEAL CALENDAR CONNECTION DETAILS *************************/
.jb-deal-connection-detail {
  position: relative;
  z-index: 54;
  background-color: #fff;
  padding: 20px 0 10px;
  border-bottom: 1px solid #d4dbe3;
  display: none; }
  .jb-deal-connection-detail .jb-searchresult-connection-headline {
    padding-left: 5px; }
  .jb-deal-connection-detail-destination-deal, .jb-deal-connection-detail-airline-deal {
    border-bottom: none; }

/******************** DEAL CALENDAR LOADING *************************/
.jb-deal-calendar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  bottom: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s; }
  .jb-deal-calendar-overlay.active {
    pointer-events: auto;
    opacity: 1; }
  .jb-deal-calendar-overlay .jb-deal-calendar-overlay-inner {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%; }

.jb-deal-calendar-table .jb-deal-calendar-overlay {
  top: 60px;
  right: calc(12.5% - 1px);
  border: 1px solid lightgrey; }
  @media all and (max-width: 991px) {
    .jb-deal-calendar-table .jb-deal-calendar-overlay {
      right: calc(16.66% - 1px); } }
  @media all and (max-width: 767px) {
    .jb-deal-calendar-table .jb-deal-calendar-overlay {
      right: calc(25% - 1px); } }

.jb-deal-calendar-table .jb-deal-calendar-overlay-wrapper {
  height: 0;
  padding: 0;
  margin: 0;
  border: none; }

.jb-deal-calendar-infos {
  margin-top: 50px;
  color: #676d74; }
  .jb-deal-calendar-infos .jb-list li:before {
    background-color: #676d74; }

.jb-deal-calendar-explanation {
  margin: 10px 0 30px;
  padding: 0 15px; }

.jb-deal-calendar-explanation-item {
  display: block;
  clear: both;
  padding-top: 10px; }

.jb-deal-calendar-explanation-symbol {
  width: 9px;
  height: 9px;
  margin-right: 10px;
  float: left;
  display: inline-block;
  position: relative; }
  .jb-deal-calendar-explanation-symbol::before, .jb-deal-calendar-explanation-symbol::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-color: transparent;
    border-style: solid; }
  .jb-deal-calendar-explanation-symbol::before {
    border-width: 9px;
    opacity: 0.3;
    border-right-color: #858585;
    border-top-color: #858585; }
  .jb-deal-calendar-explanation-symbol::after {
    border-width: 8px;
    border-right-color: transparent;
    border-top-color: transparent; }

.jb-deal-calendar-explanation-price-lowest .jb-deal-calendar-explanation-symbol::after {
  border-width: 8px;
  border-right-color: #1b9d2c;
  border-top-color: #1b9d2c; }

.jb-deal-calendar-explanation-label {
  float: left; }

@media all and (max-width: 767px) {
  .jb-deal-calendar-table {
    margin: 50px auto 60px; }
  .jb-deal-calendar-table td, .jb-deal-calendar-table th {
    width: 16.6666%; }
  .jb-deal-calendar .jb-deal-calendar-table-wrapper {
    padding-right: 0;
    width: 100%; }
  .jb-deal-calender-cell-price {
    white-space: nowrap;
    font-weight: 600;
    display: block; }
  .jb-deal-calendar-weekday,
  .jb-deal-calendar-date {
    display: block; }
  .jb-deal-calendar-cell button {
    padding: 0; }
  .jb-deal-calendar-table-row {
    margin: 0 -15px; }
  .jb-deal-calendar-cell .jb-deal-calendar-cell-inner-wrapper.lowestPrice::before,
  .jb-deal-calendar-cell .jb-deal-calendar-cell-inner-wrapper.lowestPrice::after {
    border-width: 9px; }
  .jb-deal-calendar-departure .jb-text-secondary,
  .jb-deal-calendar-return .jb-text-secondary {
    display: none; }
  .jb-deal-calendar .jb-deal-calendar-departure {
    left: 15px;
    top: -10px;
    right: inherit; }
  .jb-deal-calendar .jb-deal-calendar-departure-icons {
    right: inherit;
    left: 0; }
  .jb-deal-calendar .jb-deal-calendar-return {
    position: relative;
    right: 0;
    top: 0;
    width: 100%; }
  .jb-deal-calendar .jb-deal-calendar-return .jb-deal-calendar-return-icons {
    position: absolute;
    bottom: inherit;
    left: inherit;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    text-align: right;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
    padding-right: 10px;
    padding-top: 10px; }
  .jb-deal-calendar .jb-deal-calendar-return .jb-deal-calendar-return-icons button + button {
    margin-top: 0;
    margin-left: 10px; }
  .jb-deal-calendar-table .jb-deal-calendar-overlay {
    right: 0;
    width: 83.3334%; } }

.jb-deal-stage-note {
  margin-top: 10px; }

.jb-deal-labels div {
  padding: 4px 9px;
  margin-right: 3px;
  display: inline-block; }
  .jb-deal-labels div:first-child {
    background-color: #fec500;
    font-weight: 400; }
  .jb-deal-labels div:nth-child(2) {
    margin-top: 3px;
    position: relative;
    background-color: rgba(0, 0, 0, 0.8);
    padding-right: 9px; }
    .jb-deal-labels div:nth-child(2):after {
      content: "";
      position: absolute;
      display: block;
      left: 100%;
      top: 0;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 27px 14px 0 0;
      border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent; }
  .jb-deal-labels div:nth-child(n+3) {
    display: none; }

.jb-deal-labels-stage {
  margin-bottom: 14px; }

.jb-deal-calendar-affiliate {
  padding: 30px 0; }

.jb-deal-labels-teaser {
  position: absolute;
  left: 0;
  top: 15px;
  z-index: 2;
  text-decoration: none;
  color: white; }

.jb-icon-grid {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 8px; }
  .jb-icon-grid_start {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start; }
  .jb-icon-grid.xs-2-row .jb-icon-grid-item {
    width: 50%; }
  @media all and (min-width: 768px) {
    .jb-icon-grid.sm-3-row .jb-icon-grid-item {
      width: 33.33%; } }
  @media all and (min-width: 992px) {
    .jb-icon-grid.md-2-row .jb-icon-grid-item {
      width: 50%; } }

.jb-icon-grid-item {
  position: relative;
  margin-bottom: 30px; }
  .jb-icon-grid-item:nth-child(odd) {
    padding-right: 20px; }
  .jb-icon-grid-item.inactive svg,
  .jb-icon-grid-item.inactive img {
    display: none; }
  .jb-icon-grid-item.inactive .jb-icon-grid-text {
    color: #82909f; }

.jb-icon-grid-icon {
  position: absolute;
  width: 25px;
  height: 25px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block; }
  .jb-icon-grid-icon svg,
  .jb-icon-grid-icon img {
    width: 25px;
    height: 25px; }
  .jb-icon-grid-icon_top {
    top: 5px; }
  .jb-icon-grid-icon_large svg,
  .jb-icon-grid-icon_large img {
    width: 34px;
    height: 34px; }

.jb-icon-grid-text .jb-copy {
  line-height: 1.3; }

.jb-icon-grid-icon + .jb-icon-grid-text {
  padding-left: 50px; }
  @media all and (max-width: 767px) {
    .jb-icon-grid-icon + .jb-icon-grid-text {
      padding-left: 35px; } }

@media all and (max-width: 767px) {
  .jb-icon-grid-icon_large + .jb-icon-grid-text {
    padding-left: 50px; } }

.jb-content-teaser {
  padding-bottom: 25px;
  float: left; }
  .jb-content-teaser h3 {
    margin-bottom: 40px; }

.jb-content-teaser-6 {
  margin-bottom: 75px; }
  @media all and (min-width: 768px) {
    .jb-content-teaser-6 {
      width: 50%;
      float: left; } }

.jb-content-teaser-4 {
  margin-bottom: 50px; }
  @media all and (min-width: 768px) {
    .jb-content-teaser-4 {
      width: 50%;
      float: left; } }
  @media all and (min-width: 992px) {
    .jb-content-teaser-4 {
      width: 33.3333%; } }
  .jb-content-teaser-4 .jb-content-teaser-text {
    color: #000000; }

.jb-content-teaser-text {
  color: #000000;
  line-height: 25px; }

.jb-image-gallery {
  margin-bottom: 40px; }

.jb-image-gallery-wrapper {
  margin-bottom: 30px; }
  .jb-image-gallery-wrapper img {
    width: 100%; }

.jb-imprint-headline {
  margin-bottom: 40px; }

.jb-imprint {
  padding-bottom: 60px; }

/* Loading Screens as used in checkout and flightsearch */
@-webkit-keyframes animateLoadingBar {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); } }
@keyframes animateLoadingBar {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); } }

.jb-loading {
  position: relative;
  max-width: 600px;
  padding: 40px 15px 20px;
  margin: 0 auto 60px;
  overflow: hidden;
  min-height: 2px; }
  .jb-loading:before, .jb-loading:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px; }
  .jb-loading:before {
    background-color: #fec500; }
  .jb-loading:after {
    background-color: #ff4700;
    -webkit-animation: animateLoadingBar 1.2s infinite cubic-bezier(0.5, 0, 0.5, 1);
    animation: animateLoadingBar 1.2s infinite cubic-bezier(0.5, 0, 0.5, 1); }
  .jb-loading.jb-loading-bar-only {
    padding: 0;
    margin: 0;
    max-width: none;
    visibility: hidden; }
    .jb-loading.jb-loading-bar-only:after {
      -webkit-animation-play-state: paused;
      animation-play-state: paused; }
    .jb-loading.jb-loading-bar-only.active {
      visibility: visible; }
      .jb-loading.jb-loading-bar-only.active:after {
        -webkit-animation-play-state: running;
        animation-play-state: running; }

.jb-loading-header {
  color: #000000;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 40px; }
  @media all and (min-width: 768px) {
    .jb-loading-header {
      font-size: 26px; } }
  @media all and (min-width: 992px) {
    .jb-loading-header {
      font-size: 36px; } }

.jb-loading-text {
  font-size: 16px; }

.jb-search-bg {
  background: #f4f6f8;
  padding-top: 20px; }

.jb-searchresult {
  margin-top: 35px;
  width: 100%; }
  .jb-searchresult .jb-icon-star {
    height: 14px;
    width: 15px; }
  .jb-searchresult:first-child {
    margin-top: 0; }
  .jb-searchresult table {
    width: 100%;
    border-collapse: separate; }
  @media all and (max-width: 767px) {
    .jb-searchresult > .row > .col-sm-8.col-xs-12.no-padding-left {
      padding-left: 15px; } }
  @media all and (min-width: 768px) {
    .jb-searchresult {
      box-shadow: 0px 93px 34px -100px rgba(0, 0, 0, 0.75); } }
  .jb-searchresult:last-child {
    margin-bottom: 35px; }

.jb-search-errors {
  margin-top: 30px;
  margin-bottom: 0px; }
  .jb-search-errors-btn {
    margin-top: 5px; }

.jb-searchresult-content {
  padding: 30px 30px 20px;
  background: #fff;
  border-top: 1px solid #d4dbe3;
  border-bottom: 1px solid #d4dbe3;
  border-right: 1px solid #d4dbe3;
  position: relative; }
  @media all and (max-width: 767px) {
    .jb-searchresult-content {
      border-left: 1px solid #d4dbe3;
      padding: 20px; } }
  @media all and (min-width: 768px) {
    .jb-searchresult-content {
      min-height: 200px; } }
  @media all and (min-width: 992px) {
    .jb-searchresult-content {
      min-height: 300px; } }
  .jb-searchresult-content .jb-btn {
    float: right;
    font-size: 13px;
    line-height: 16px;
    padding: 7px 10px; }
    @media all and (min-width: 992px) {
      .jb-searchresult-content .jb-btn {
        font-size: 16px;
        line-height: 19px;
        padding: 15px 20px; } }
  @media all and (max-width: 767px) {
    .jb-searchresult-content .jb-rating-system {
      margin-bottom: 28px; } }
  .jb-searchresult-content .jb-airline-logo,
  .jb-searchresult-content .jb-alliance-logo {
    float: left;
    margin-bottom: 25px; }
  .jb-searchresult-content .jb-airline-logo {
    margin-left: -5px; }
    .jb-searchresult-content .jb-airline-logo img {
      width: 150px; }
      @media all and (min-width: 992px) {
        .jb-searchresult-content .jb-airline-logo img {
          width: 200px; } }
  .jb-searchresult-content .jb-alliance-logo {
    margin-left: 10px; }
    @media all and (min-width: 992px) {
      .jb-searchresult-content .jb-alliance-logo {
        margin-left: 15px; } }
    .jb-searchresult-content .jb-alliance-logo img {
      margin-top: 10px;
      width: 110px; }
      @media all and (min-width: 992px) {
        .jb-searchresult-content .jb-alliance-logo img {
          margin-top: 20px;
          width: 130px; } }

.jb-icon-pricetag {
  width: 23px;
  height: 21px;
  position: relative;
  fill: #000000; }

/*********** SEARCHRESULT IMAGE AND REDUCATION STYLES *************/
.jb-searchresult-image {
  position: absolute;
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: calc(100% - 15px);
  left: 15px; }
  @media all and (max-width: 767px) {
    .jb-searchresult-image {
      display: none; } }
  .jb-searchresult-image > div {
    position: relative;
    height: 100%;
    overflow: hidden; }
    @media all and (min-width: 992px) {
      .jb-searchresult-image > div {
        min-height: 240px; } }
    @media all and (min-width: 992px) {
      .jb-searchresult-image > div {
        min-height: 300px; } }
    .jb-searchresult-image > div:after {
      content: '';
      width: 100%;
      height: 100%;
      position: absolute;
      box-shadow: inset 0px -153px 205px -103px rgba(0, 0, 0, 0.8); }
  .jb-searchresult-image.jb-js-airline-accordion-toggle {
    cursor: pointer; }
  .jb-searchresult-image .jb-icon-zoom {
    display: block;
    fill: #fff;
    height: 17px;
    width: 17px;
    z-index: 1;
    position: absolute;
    right: 15px;
    bottom: 15px;
    cursor: pointer; }
  .jb-searchresult-image img {
    height: 100%;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); }
    @media all and (min-width: 992px) {
      .jb-searchresult-image img {
        min-height: 240px; } }
    @media all and (min-width: 992px) {
      .jb-searchresult-image img {
        min-height: 300px; } }

/*********** SEARCHRESULT AIRLINE AND RATING STYLES *************/
.jb-searchresult-airline {
  display: inline-block;
  margin: 0px 15px 10px 0px;
  font-size: 14px;
  line-height: 16px; }
  @media all and (max-width: 991px) {
    .jb-searchresult-airline {
      width: 100%; } }

/*********** SEARCHRESULT TIME STYLES *************/
.jb-searchresult-time {
  color: #000000;
  display: inline-block;
  position: absolute;
  right: 30px;
  top: -40px;
  line-height: 14px;
  font-size: 14px; }
  .jb-searchresult-time .jb-icon-clock {
    position: relative;
    top: 4px;
    width: 18px;
    height: 18px;
    fill: #000000; }
  .jb-searchresult-time span {
    padding-left: 10px; }
  @media all and (max-width: 767px) {
    .jb-searchresult-time {
      display: none; } }

/*********** SEARCHRESULT PRICE STYLES *************/
.jb-searchresult-price {
  margin-top: 0;
  margin-bottom: 10px;
  text-align: right;
  line-height: 26px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased; }
  @media all and (max-width: 767px) {
    .jb-searchresult-price {
      bottom: -32px;
      position: absolute;
      margin-bottom: 0; } }

.jb-icon-priceinfo {
  top: -10px;
  position: relative;
  fill: #000000; }

/*********** SEARCHRESULT SPECIAL AND REDUCATION STYLES *************/
@media all and (max-width: 767px) {
  .jb-price-labels div:first-child {
    margin-top: 0; } }

@media all and (min-width: 768px) {
  .jb-price-labels div:last-child {
    margin-bottom: 95px; } }

@media all and (min-width: 992px) {
  .jb-price-labels div:last-child {
    margin-bottom: 164px; } }

.jb-searchresult-special,
.jb-searchresult-reducation {
  display: inline-block;
  position: relative;
  margin-top: 10px;
  color: #000000;
  font-size: 13px;
  text-transform: uppercase;
  float: right;
  line-height: 14px;
  font-size: 14px; }
  @media all and (max-width: 767px) {
    .jb-searchresult-special,
    .jb-searchresult-reducation {
      text-align: left;
      float: none; } }

/*********** SEARCHRESULT DROPDOWN, LINK AND BUTTON STYLES *************/
.jb-searchresult-information-wrapper {
  position: absolute;
  width: 100%;
  left: 0;
  padding: 0 30px;
  bottom: 20px;
  color: #000000; }
  .jb-searchresult-information-wrapper > div {
    display: inline-block; }
  @media all and (max-width: 767px) {
    .jb-searchresult-information-wrapper {
      position: relative;
      top: 0;
      padding: 0; }
      .jb-searchresult-information-wrapper .jb-btn {
        margin-top: 45px;
        float: none;
        position: relative; } }

.jb-searchresult-information-link {
  position: absolute;
  bottom: 0;
  left: 30px;
  cursor: pointer;
  line-height: 19px;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .jb-searchresult-information-link:after {
    position: absolute;
    top: 6px;
    right: -15px;
    padding-bottom: 3px;
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 0.2em solid #000;
    border-top: 0.2em solid #000;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    font-size: 14px;
    transition: top 0.2s, -webkit-transform 0.2s;
    transition: transform 0.2s, top 0.2s;
    transition: transform 0.2s, top 0.2s, -webkit-transform 0.2s; }
  .jb-searchresult-information-link.active:after {
    top: 8px;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
    transition: top 0.2s, -webkit-transform 0.2s;
    transition: transform 0.2s, top 0.2s;
    transition: transform 0.2s, top 0.2s, -webkit-transform 0.2s; }

/*********** SEARCHRESULT ACCORDION STYLES *************/
.jb-js-accordion {
  display: none; }

.jb-btn.active {
  background: #000000 !important; }

.jb-js-inner-dropdown {
  display: none; }
  .jb-js-inner-dropdown.active {
    display: table-row; }

/*********** SEARCHRESULT AIRPLANE DETAILS STYLES *************/
.jb-searchresult-detail {
  border-left: 1px solid #d4dbe3;
  border-right: 1px solid #d4dbe3;
  border-bottom: 1px solid #d4dbe3;
  padding: 29px 30px 28px 30px;
  background-color: #fff; }
  @media all and (max-width: 991px) {
    .jb-searchresult-detail {
      padding: 24px 30px 38px 30px; } }

@media all and (max-width: 767px) {
  .jb-searchresult-image-col-wrapper {
    width: 0%;
    padding-left: 15px; } }

.jb-searchresult-image-col-wrapper img {
  top: 50%;
  position: relative;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

.jb-searchresult-image-description {
  margin-top: 20px; }

/*********** SEARCHRESULT AIRPLANE DETAILS IMAGE STYLES *************/
.jb-searchresult-image-wrapper {
  width: calc(33.333% - (30px / 3));
  height: auto;
  float: left; }
  .jb-searchresult-image-wrapper:not(:first-child) {
    margin-left: 15px; }
  .jb-searchresult-image-wrapper img {
    width: 100%; }

.jb-searchresult-detail figure {
  margin: 0;
  width: 50%;
  float: left;
  padding-right: 5px;
  padding-top: 5px; }
  .jb-searchresult-detail figure a {
    overflow: hidden;
    float: left;
    width: 100%; }
  .jb-searchresult-detail figure:nth-child(2n) {
    padding-right: 0; }
  @media all and (min-width: 768px) and (max-width: 991px) {
    .jb-searchresult-detail figure {
      width: 100%;
      padding-right: 0; } }
  @media all and (max-width: 767px) {
    .jb-searchresult-detail figure {
      padding-right: 3px; }
      .jb-searchresult-detail figure:nth-child(2n) {
        padding-left: 3px; } }

/*********** SEARCHRESULT AIRPLANE DETAILS CONTENT STYLES *************/
.jb-searchresult-detail-content {
  margin-bottom: 40px; }

.jb-searchresult-detail-images {
  margin-top: 20px; }
  @media all and (min-width: 992px) {
    .jb-searchresult-detail-images {
      margin-top: 40px; } }

/*********** SEARCHRESULT CONNECTION TABLE STYLES *************/
.jb-searchresult-connection-content {
  background: #fff;
  color: #000000;
  padding: 5px 5px 20px 5px;
  margin-bottom: 30px;
  border: 1px solid #d4dbe3; }
  @media all and (max-width: 991px) {
    .jb-searchresult-connection-content form {
      margin-bottom: 10px; } }

.jb-searchresult-connection-headline {
  font-size: 14px;
  padding-bottom: 15px;
  padding-top: 15px;
  padding-left: 20px; }
  @media all and (max-width: 767px) {
    .jb-searchresult-connection-headline {
      text-align: center; } }

.jb-searchresult-connection-arrow {
  margin: 0 9px; }

.jb-searchresult-connection-date {
  margin-left: 15px; }

.jb-searchresult-connection-element {
  font-size: 14px;
  line-height: 14px;
  width: 100%; }
  .jb-searchresult-connection-element > tbody {
    position: relative;
    width: 100%; }
  .jb-searchresult-connection-element > tbody > tr:first-child {
    display: table-row;
    padding: 25px 20px;
    width: 100%;
    background: #f4f6f8;
    color: #000000;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    position: relative;
    float: left; }
    .jb-searchresult-connection-element > tbody > tr:first-child td:last-child {
      color: #000000;
      height: 1px; }
    @media all and (max-width: 767px) {
      .jb-searchresult-connection-element > tbody > tr:first-child {
        padding-left: 15px;
        padding-right: 15px; } }
  .jb-searchresult-connection-element td {
    padding-right: 20px;
    position: relative; }
    .jb-searchresult-connection-element td:nth-child(2) {
      padding-right: 20px; }
      @media all and (max-width: 991px) {
        .jb-searchresult-connection-element td:nth-child(2) {
          padding-right: 0; } }
    .jb-searchresult-connection-element td .jb-js-inner-dropdown-button {
      cursor: pointer; }
      .jb-searchresult-connection-element td .jb-js-inner-dropdown-button span {
        display: inline-block;
        width: 100%; }
    .jb-searchresult-connection-element td .active .jb-icon-small-arrow-down {
      -webkit-transform: translateY(3px) rotate(-180deg);
      transform: translateY(3px) rotate(-180deg);
      position: relative;
      top: -3px; }
  @media all and (max-width: 991px) {
    .jb-searchresult-connection-element {
      width: 100%; } }

.jb-not-combinable-warning {
  width: 100%;
  float: left;
  line-height: 18px;
  color: #ff4700;
  margin-right: 20px;
  margin-bottom: 25px;
  text-align: center; }
  @media all and (min-width: 768px) {
    .jb-not-combinable-warning {
      width: 170px;
      float: left;
      margin-bottom: 0;
      text-align: left; } }
  @media all and (min-width: 1200px) {
    .jb-not-combinable-warning {
      width: 210px; } }

@media all and (min-width: 992px) {
  .jb-searchresult-connections-left-form {
    padding-right: 5px; } }

@media all and (min-width: 992px) {
  .jb-searchresult-connections-right-form {
    padding-left: 5px; } }

.jb-results-item-header {
  padding: 0 !important;
  float: none !important;
  min-height: 65px;
  width: 100%;
  background: #f4f6f8;
  color: #000000;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  position: relative; }
  .jb-results-item-header td {
    float: none !important;
    vertical-align: middle;
    border-bottom: 1px solid white; }
    .jb-results-item-header td:nth-child(2) {
      padding-left: 17px; }
      @media all and (min-width: 768px) {
        .jb-results-item-header td:nth-child(2) {
          width: 140px;
          white-space: nowrap; } }
    @media all and (min-width: 768px) and (max-width: 991px) {
      .jb-results-item-header td:nth-child(3) {
        width: 128px; } }
  .jb-results-item-header td:last-child {
    color: #000000;
    height: 1px; }
  @media all and (max-width: 767px) {
    .jb-results-item-header {
      padding-left: 15px;
      padding-right: 15px; } }
  .jb-results-item-header .jb-results-checked-cell {
    min-height: 65px;
    width: 65px;
    padding-right: 0; }
    .jb-results-item-header .jb-results-checked-cell input {
      position: absolute;
      height: 0;
      width: 0;
      opacity: 0; }
    .jb-results-item-header .jb-results-checked-cell:hover {
      background-color: #D4DBE3; }
      .jb-results-item-header .jb-results-checked-cell:hover label:before {
        border-color: #000000; }
    .jb-results-item-header .jb-results-checked-cell label {
      position: relative;
      display: block;
      min-height: 65px;
      width: 100%;
      cursor: pointer;
      border-right: 1px solid white; }
      .jb-results-item-header .jb-results-checked-cell label:before {
        content: ' ';
        position: absolute;
        display: block;
        width: 24px;
        height: 24px;
        border-radius: 100%;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        background: #fff;
        z-index: 20;
        border: 1px solid #82909f; }
    .jb-results-item-header .jb-results-checked-cell input:checked + label:before {
      background: #fff url(../Images/Icons/svgs/Check_thin.svg) no-repeat center center;
      background-size: 11px 11px;
      border-color: #000000; }
  .jb-results-item-header .jb-results-time-wrapper {
    position: relative;
    display: inline-block;
    padding-left: 24px; }
    .jb-results-item-header .jb-results-time-wrapper div {
      position: absolute;
      top: calc(50% - 10px);
      left: 0px; }
    .jb-results-item-header .jb-results-time-wrapper .jb-icon-clock {
      fill: #000000; }
  .jb-results-item-header .jb-dropdown-flight {
    width: 65px;
    min-height: 65px;
    padding-right: 0;
    border-left: 1px solid white;
    text-align: center;
    cursor: pointer; }
    .jb-results-item-header .jb-dropdown-flight:hover {
      background-color: #D4DBE3; }
  .jb-results-item-header .jb-cheapest-flights {
    position: relative;
    width: 1px;
    padding: 0; }
    .jb-results-item-header .jb-cheapest-flights .jb-cheapest-flights-indicator {
      position: absolute;
      top: 0;
      right: 0; }
  .jb-results-item-header.jb-js-checked {
    background: #D4DBE3 !important; }
    .jb-results-item-header.jb-js-checked td:nth-child(2),
    .jb-results-item-header.jb-js-checked td:nth-child(3) {
      color: #000000 !important; }
  .jb-results-item-header .jb-icon-small-arrow-down {
    margin-top: 8px; }
  @media all and (max-width: 767px) {
    .jb-results-item-header .jb-results-item-time {
      padding-left: 10px;
      width: 30%;
      line-height: 20px;
      white-space: nowrap; }
    .jb-results-item-header .jb-results-mobile-timedur {
      padding-left: 35px;
      padding-right: 5px;
      width: 98px;
      line-height: 20px; }
    .jb-results-item-header .jb-dropdown-flight {
      width: 55px; }
    .jb-results-item-header .jb-results-checked-cell {
      width: 35px; }
    .jb-results-item-header td.jb-results-mobile-spacer {
      padding-right: 0;
      width: 5px; } }

.jb-cheapest-flights-indicator {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-style: solid;
  border-width: 0 22px 22px 0;
  border-color: transparent #47b04b transparent transparent; }

.jb-searchresult-connection-content .col-md-6:last-child .jb-searchresult-connection-element > tbody > tr:first-child {
  border-right: none; }

.jb-not-available-flight {
  background: #fbfbfb !important;
  padding-left: 82px !important;
  color: #ff4700; }
  .jb-not-available-flight td:last-child {
    color: #ff4700 !important;
    position: relative; }
    @media all and (max-width: 767px) {
      .jb-not-available-flight td:last-child {
        display: inline-block !important; } }
  .jb-not-available-flight.jb-hidden-flight {
    display: none !important; }

.jb-js-checked {
  background: #D4DBE3 !important; }
  .jb-js-checked td:nth-child(2),
  .jb-js-checked td:nth-child(3) {
    color: #000000 !important; }

.jb-searchresult-connection-detail-wrapper {
  padding-left: 20px;
  padding-top: 20px;
  font-size: 14px; }
  @media all and (max-width: 767px) {
    .jb-searchresult-connection-detail-wrapper {
      padding-left: 15px;
      padding-right: 15px; } }
  .jb-searchresult-connection-detail-wrapper td:nth-child(2) {
    width: auto; }
  .jb-searchresult-connection-detail-wrapper table:last-child tbody tr:last-child td {
    padding-bottom: 0 !important; }
  .jb-searchresult-connection-detail-wrapper .jb-icon-clock {
    fill: #000000;
    position: absolute;
    top: 1px; }

.jb-airportCount-infobox {
  background-color: #fff6df;
  display: inline-block;
  padding: 10px;
  margin-bottom: 20px; }

.jb-searchresult-connection-detail td,
.jb-searchresult-connection-transfer td {
  padding-bottom: 20px;
  float: none; }
  .jb-searchresult-connection-detail td:last-child,
  .jb-searchresult-connection-transfer td:last-child {
    float: none; }
  .jb-searchresult-connection-detail td:nth-child(2),
  .jb-searchresult-connection-transfer td:nth-child(2) {
    padding-left: 20px; }
  .jb-searchresult-connection-detail td:first-child,
  .jb-searchresult-connection-transfer td:first-child {
    padding-left: 40px;
    padding-right: 0; }

.jb-searchresult-connection-detail tbody tr:last-child td,
.jb-searchresult-connection-transfer tbody tr:last-child td {
  padding-bottom: 0; }

.jb-searchresult-connection-detail {
  position: relative;
  width: 100%;
  float: left;
  margin-bottom: 42px; }
  .jb-searchresult-connection-detail:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    left: 8px;
    top: 0;
    background: #000000; }
  .jb-searchresult-connection-detail thead:before,
  .jb-searchresult-connection-detail tbody:before {
    content: '';
    width: 17px;
    height: 17px;
    position: absolute;
    left: 0;
    border-radius: 50px;
    border: 1px solid #000000;
    background: #fff; }
  .jb-searchresult-connection-detail thead:before {
    top: 0; }
  .jb-searchresult-connection-detail tbody tr:first-child td {
    color: #000000; }
  .jb-searchresult-connection-detail tbody:before {
    bottom: 0; }
  .jb-searchresult-connection-detail-first thead:before, .jb-searchresult-connection-detail-single thead:before {
    background: #CCCBCB;
    border: none; }
  .jb-searchresult-connection-detail-last tbody:before, .jb-searchresult-connection-detail-single tbody:before {
    background: #CCCBCB;
    border: none; }

.jb-searchresult-connection-transfer {
  margin-bottom: 42px;
  color: #000000; }
  .jb-searchresult-connection-transfer td .jb-icon-clock {
    position: relative;
    fill: #000000; }
  .jb-searchresult-connection-transfer td:first-child {
    padding-right: 25px;
    width: 20px; }
  .jb-searchresult-connection-transfer td > span:first-child:not(:only-child) {
    color: #ff4700; }
  .jb-searchresult-connection-transfer td > span:not(:first-child) {
    display: block;
    margin-top: 10px; }
  .jb-searchresult-connection-transfer tbody tr:last-child td {
    padding-right: 0; }
    .jb-searchresult-connection-transfer tbody tr:last-child td:nth-child(2) {
      padding-left: 10px; }

.jb-searchresult-feeder-luggage,
.jb-searchresult-feeder-accommodation {
  margin-bottom: 42px;
  color: #000000; }
  .jb-searchresult-feeder-luggage td,
  .jb-searchresult-feeder-accommodation td {
    padding-bottom: 20px; }
    .jb-searchresult-feeder-luggage td:first-child,
    .jb-searchresult-feeder-accommodation td:first-child {
      padding-left: 20px;
      padding-right: 0;
      width: 50px;
      vertical-align: top; }
    .jb-searchresult-feeder-luggage td:nth-child(2),
    .jb-searchresult-feeder-accommodation td:nth-child(2) {
      padding-left: 0; }
    .jb-searchresult-feeder-luggage td > span:not(:first-child),
    .jb-searchresult-feeder-accommodation td > span:not(:first-child) {
      display: block;
      margin-top: 10px; }
  .jb-searchresult-feeder-luggage tbody tr:last-child td,
  .jb-searchresult-feeder-accommodation tbody tr:last-child td {
    padding-bottom: 0; }

.jb-searchresult-feeder-accommodation td > span:first-child:not(:only-child) {
  color: #ff4700; }

.jb-searchresult-connection-free-luggage {
  padding-left: 20px;
  margin-top: 20px;
  color: #000000;
  font-size: 14px; }
  @media all and (max-width: 991px) {
    .jb-searchresult-connection-free-luggage {
      margin-bottom: 26px; } }
  @media all and (max-width: 767px) {
    .jb-searchresult-connection-free-luggage {
      padding-left: 15px; } }
  .jb-searchresult-connection-free-luggage svg {
    margin-bottom: -2px; }

.jb-searchresult-connection-cheap-available {
  padding-left: 20px;
  height: 70px;
  position: relative;
  font-size: 14px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end; }
  .jb-searchresult-connection-cheap-available .jb-cheapest-flights-indicator {
    margin-right: 8px; }
  @media all and (max-width: 767px) {
    .jb-searchresult-connection-cheap-available {
      margin-top: 5px;
      height: 23px; } }

.jb-searchresult-connection-final-data {
  float: right;
  padding-right: 20px;
  margin-top: 20px; }
  @media all and (max-width: 767px) {
    .jb-searchresult-connection-final-data {
      width: 100%;
      position: relative;
      padding-left: 15px;
      padding-right: 15px; }
      .jb-searchresult-connection-final-data .jb-btn {
        width: 100%;
        text-align: center; } }

.jb-searchresult-connection-logo {
  width: 200px;
  margin: 10px auto 0 auto;
  text-align: center;
  height: 60px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }
  @media all and (min-width: 768px) {
    .jb-searchresult-connection-logo {
      margin: 10px 0 10px 7px;
      text-align: left;
      -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
      justify-content: flex-start; } }

.jb-searchresult-connection-price {
  float: left;
  font-size: 30px;
  margin-right: 20px;
  margin-top: 3px;
  line-height: 18px; }
  @media all and (max-width: 767px) {
    .jb-searchresult-connection-price {
      margin-bottom: 30px;
      text-align: center;
      width: 100%; } }
  .jb-searchresult-connection-price > span:first-child {
    display: block; }

.jb-searchresult-connection-pp {
  font-size: 14px; }

.jb-searchresult-connection-nextday,
.jb-searchresult-connection-prevday {
  color: #ff4700;
  margin-right: 10px; }

.jb-debug {
  border: 2px solid black;
  color: black;
  font-size: 12px;
  margin: 20px; }

.jb-searchresult-feeder {
  background: rgba(254, 197, 0, 0.2);
  margin: 20px 0;
  padding: 15px;
  font-size: 14px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000000; }
  .jb-searchresult-feeder.jb-searchresult-feeder-earlier {
    margin: 0 0 20px;
    background: transparent;
    padding: 0 0 0 30px; }

.jb-searchresult-feeder-link {
  display: inline-block;
  color: #82909f;
  cursor: pointer; }

.jb-searchresult-feeder-icon {
  height: 28px;
  width: 28px;
  margin-right: 15px;
  fill: #000000; }
  .jb-searchresult-feeder-icon.jb-searchresult-feeder-icon-stroke {
    fill: none;
    stroke: #000000; }

.jb-sorting .jb-filter-block .jb-label, .jb-sorting .jb-filter-block .jb-input-icon-label, .jb-sorting .jb-filter-block .jb-input-icon-label {
  width: auto;
  margin-bottom: 0; }

.jb-sorting .select2-container {
  margin-bottom: 0; }

.jb-sorting .jb-filter-block {
  margin-top: 20px; }
  @media all and (max-width: 767px) {
    .jb-sorting .jb-filter-block {
      margin-top: 0; } }

.jb-sorting-area.jb-filter-block {
  margin: 10px auto 0;
  height: auto; }
  @media all and (max-width: 767px) {
    .jb-sorting-area.jb-filter-block {
      max-width: 480px; } }
  @media all and (min-width: 992px) {
    .jb-sorting-area.jb-filter-block {
      float: right; } }
  .jb-sorting-area.jb-filter-block .select2-container {
    margin-bottom: 0; }
  .jb-sorting-area.jb-filter-block .jb-label, .jb-sorting-area.jb-filter-block .jb-input-icon-label {
    width: auto;
    margin-bottom: 0; }

@media all and (min-width: 768px) {
  .jb-airline-filter .jb-sorting-area.jb-filter-block {
    float: right; } }

.jb-search-results-wrapper .jb-sorting-area.jb-filter-block {
  margin-bottom: 30px; }
  @media all and (min-width: 992px) {
    .jb-search-results-wrapper .jb-sorting-area.jb-filter-block {
      float: none; } }

.jb-sorting-flights,
.jb-sorting-deals {
  margin-top: 20px;
  line-height: 50px;
  color: #000000; }

.jb-filter-orderby {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end; }

.jb-text-logo {
  margin-bottom: 80px;
  float: left; }
  .jb-text-logo h1 {
    margin: 40px 0 20px 0; }
  .jb-text-logo img {
    margin: 60px auto 20px auto;
    display: block; }

/********** FILTER *************/
.jb-airline-view {
  color: #000000;
  text-decoration: none;
  cursor: pointer; }
  @media all and (max-width: 767px) {
    .jb-airline-view {
      margin-top: 30px; } }
  .jb-airline-view.active {
    color: #000000; }
  .jb-airline-view + .jb-airline-view {
    margin-left: 20px; }
  .jb-airline-view input {
    opacity: 0;
    position: absolute; }

@media all and (max-width: 767px) {
  .jb-filter-label-margin-xs {
    display: block;
    margin-top: 30px; } }

.jb-filter-block {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  @media all and (min-width: 768px) {
    .jb-filter-block {
      height: 50px;
      -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      margin-top: 29px; } }
  @media all and (min-width: 768px) {
    .jb-filter-block.jb-filter-block-right {
      -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
      justify-content: flex-end; } }
  @media all and (max-width: 767px) {
    .jb-filter-block.jb-filter-block-xs-center {
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center; } }
  .jb-filter-block .jb-label, .jb-filter-block .jb-input-icon-label {
    width: 100%; }
    @media all and (min-width: 768px) {
      .jb-filter-block .jb-label, .jb-filter-block .jb-input-icon-label {
        width: auto;
        margin-bottom: 0; } }

@media all and (min-width: 768px) {
  .jb-label + .jb-filter-block, .jb-input-icon-label + .jb-filter-block {
    margin-top: 10px; } }

/********** LIST VIEW *************/
.jb-filter-list-view {
  width: 100%; }
  .jb-filter-list-view thead td {
    padding-bottom: 25px;
    color: #000000; }
    .jb-filter-list-view thead td:nth-last-child(1) {
      padding-left: 20px; }
  .jb-filter-list-view tbody td {
    padding-bottom: 20px;
    font-size: 12px; }
    @media all and (min-width: 768px) {
      .jb-filter-list-view tbody td {
        font-size: 14px; } }

.jb-filter-result-counter {
  margin-right: 30px;
  float: left;
  font-size: 18px; }
  @media all and (max-width: 767px) {
    .jb-filter-result-counter {
      float: none; } }

.jb-filter-btn {
  cursor: pointer;
  color: #000000;
  position: relative;
  min-width: 100px;
  display: inline-block; }
  @media all and (max-width: 767px) {
    .jb-filter-btn {
      float: none; } }
  .jb-filter-btn .jb-filter-btn-text {
    font-size: 14px; }
    .jb-filter-btn .jb-filter-btn-text-underline {
      text-decoration: underline; }
  .jb-filter-btn .jb-filter-counter {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #fec500;
    border-radius: 50%;
    margin-left: 8px;
    line-height: 24px;
    text-align: center;
    color: #fff; }
  .jb-filter-btn:hover span:not(.jb-filter-counter) {
    text-decoration: underline; }

.jb-search-filter-icon {
  position: relative;
  top: 5px;
  height: 18px;
  width: 18px;
  margin-right: 10px; }

.jb-search-filtering-flights,
.jb-search-filtering-form {
  position: relative; }

.jb-search-filtering-flights {
  color: #000000; }

.jb-search-filtering-for {
  float: right;
  margin-right: 20px;
  margin-top: 4px;
  color: #000000;
  padding-left: 25px; }

/* Search Filtering */
.jb-airline-filter,
.jb-deal-filtering {
  margin: 0 0 30px; }

.jb-search-filtering {
  margin: 0; }

.jb-airline-filter {
  margin-top: 40px; }

@media all and (max-width: 767px) {
  .jb-search-filtering,
  .jb-deal-filtering,
  .jb-airline-filter {
    margin-left: auto;
    margin-right: auto;
    max-width: 480px; } }

.jb-search-filtering .jb-search-time-display,
.jb-search-filtering .jb-search-time-edit {
  height: 35px;
  border: 1px solid #82909f;
  line-height: 35px;
  padding-left: 40px;
  cursor: pointer;
  position: relative; }
  .jb-search-filtering .jb-search-time-display .jb-btn-remove,
  .jb-search-filtering .jb-search-time-edit .jb-btn-remove {
    position: absolute;
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }

.jb-search-filtering .jb-search-time-display {
  background-color: #fff; }

.jb-search-filtering .jb-search-time-edit {
  background-color: #f4f6f8; }

.jb-search-filtering .jb-search-time-display {
  color: #000000;
  font-weight: 300; }

.jb-search-filtering .jb-search-time-filter {
  position: relative; }

.jb-search-filtering .jb-search-time-selection {
  padding: 20px 20px 15px;
  margin-top: 10px;
  position: absolute;
  width: 100%;
  background: white;
  z-index: 19; }
  .jb-search-filtering .jb-search-time-selection:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    background-color: white;
    box-shadow: -3px -3px 8px -1px rgba(0, 0, 0, 0.3);
    -webkit-transform: translateY(-4px) rotateX(-45deg) rotateZ(45deg);
    transform: translateY(-4px) rotateX(-45deg) rotateZ(45deg);
    width: 10px;
    height: 10px;
    left: 10px; }

.jb-filter-wrapper {
  margin-top: 10px; }

.jb-filter-compact.jb-noicon .select2-selection--single {
  padding-left: 10px; }

.jb-filter-compact p {
  margin-bottom: 5px; }

.jb-filter-compact input.jb-filter-input {
  height: 35px;
  margin-bottom: 0;
  width: 100%;
  border: 1px solid #82909f;
  box-sizing: border-box; }
  .jb-filter-compact input.jb-filter-input:focus {
    outline: none; }

.jb-filter-compact .select2-container {
  margin-bottom: 0; }

.jb-filter-compact .select2-selection--single {
  border: 1px solid #82909f !important;
  padding-left: 40px;
  height: 35px !important; }

.jb-filter-compact .select2-selection--single {
  padding-top: 3px; }

.jb-filter-compact .jb-select-multiple ~ .select2-container--default .select2-selection--multiple {
  min-height: 35px; }

.jb-filter-compact .jb-select-multiple ~ .select2-container--default .select2-selection--multiple .select2-search__field {
  padding-top: 8px; }

.jb-filter-compact .jb-select-multiple ~ .select2-container--default .select2-selection--multiple .select2-selection__rendered li:first-child .select2-search__field {
  width: auto !important; }

.jb-filter-compact .jb-select-multiple ~ .select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin-top: 3px; }

.jb-filter-compact .jb-select-multiple ~ .select2-container--default .select2-selection--multiple .select2-selection__clear {
  top: 7px; }

.jb-filter-compact .select2-container--default .select2-selection--single .select2-selection__arrow b:before {
  top: calc(50% - 8px); }

.jb-filter-compact .jb-select-multiple ~ .select2-container--default .select2-selection--multiple,
.jb-filter-compact .jb-search-options-select ~ .select2-container--focus .select2-selection--single {
  background-color: #fff; }

.jb-filter-compact .jb-select-multiple.airline-filter-active ~ .select2-container--default .select2-selection--multiple,
.jb-filter-compact .jb-search-options-select.stop-filter-active ~ .select2-container--default .select2-selection--single {
  background-color: #f4f6f8; }

.jb-job-teaser-area {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.jb-job-teaser {
  margin-bottom: 30px; }

.jb-job-teaser-content {
  position: relative;
  height: 100%;
  padding: 25px 25px 100px 25px;
  border: 1px solid #d4dbe3; }
  .jb-job-teaser-content .jb-h2, .jb-job-teaser-content .jb-neos-headline-alternative {
    margin-top: 0; }

.jb-job-teaser-footer {
  position: absolute;
  left: 0;
  right: 0;
  padding-left: 25px;
  padding-right: 25px;
  bottom: 25px;
  line-height: 300%; }
  .jb-job-teaser-footer p {
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
    margin-bottom: 0; }

@media all and (min-width: 768px) {
  .jb-press-release {
    position: relative;
    padding-left: 130px;
    width: 85%; } }

@media all and (min-width: 992px) {
  .jb-press-release {
    width: 75%; } }

.jb-press-release-time {
  margin-top: 0; }
  @media all and (min-width: 768px) {
    .jb-press-release-time {
      position: absolute;
      left: 0; } }

.jb-press-release + .jb-press-release {
  margin-top: 35px; }

.jb-profile-nav-wrapper {
  z-index: 1; }

.jb-profile-nav {
  background-color: #fec500;
  list-style: none;
  min-height: 50px;
  padding: 0 15px;
  z-index: 1;
  margin: 0 -15px;
  opacity: 0;
  transition: opacity 0.2s;
  position: absolute;
  top: -50px;
  width: 100%;
  max-width: 1115px; }
  .jb-profile-nav.jb-visible {
    top: -50px;
    transition: opacity 0.3s;
    opacity: 1; }
  .jb-profile-nav li {
    display: inline-block;
    line-height: 50px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5); }
    .jb-profile-nav li:not(:last-child) {
      margin-right: 5%; }
    .jb-profile-nav li.active {
      color: #000000; }

.jb-profile-form {
  padding-bottom: 70px; }

.jb-profile-form-sections > div:nth-child(even) {
  background-color: #f4f6f8; }

.jb-profile-wrapper {
  padding: 30px 0 10px; }
  .jb-profile-wrapper.jb-profile-personal-data-wrapper {
    padding-top: 20px; }
  .jb-profile-wrapper.jb-profile-additional-information-wrapper {
    padding-bottom: 10px; }
  .jb-profile-wrapper.jb-profile-additional-information-wrapper {
    padding-bottom: 10px; }

.jb-profile-radio-wrapper {
  margin: 0 0 20px; }

.jb-profile-headline {
  margin: 0; }

.jb-profile-subheadline {
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  margin: 0 0 20px; }

.jb-profile-deactivate-account {
  display: inline-block;
  cursor: pointer;
  margin: 70px 0 100px; }

.jb-js-flyer-program-number, .jb-js-flyer-program-label {
  display: none; }

/* header */
.jb-checkout-header {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d4dbe3; }
  @media all and (min-width: 768px) {
    .jb-checkout-header {
      padding-top: 35px;
      padding-bottom: 35px; } }

.jb-checkout-header-text {
  font-size: 15px;
  margin-top: 5px;
  padding-bottom: 5px; }

.jb-checkout-icon-text {
  position: relative;
  display: inline-block;
  padding-left: 30px; }
  .jb-checkout-icon-text:before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    height: 100%;
    width: 30px;
    background-repeat: no-repeat; }

.jb-checkout-header-help {
  color: #000000;
  margin-left: 10px; }
  @media all and (min-width: 768px) {
    .jb-checkout-header-help {
      margin-left: 60px; } }
  .jb-checkout-header-help:hover {
    text-decoration: none; }
    .jb-checkout-header-help:hover:after {
      background-color: #fec500;
      transition: background-color 0.15s; }
  .jb-checkout-header-help:before {
    background-image: url("../Images/Icons/checkout_help.png");
    background-position: 0 3px; }
  .jb-checkout-header-help:after {
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    width: calc(100% - 30px);
    bottom: 0;
    right: 0;
    background-color: #ff4700;
    transition: background-color 0.15s; }

.jb-checkout-header-ssl-icon {
  position: absolute;
  left: 0;
  top: -8px; }
  @media all and (min-width: 768px) {
    .jb-checkout-header-ssl-icon {
      top: 0; } }

/* checkout login */
.jb-checkout-login {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 20px; }

.jb-checkout-login-label {
  color: #000000;
  margin-bottom: 12px; }
  @media all and (min-width: 992px) {
    .jb-checkout-login-label {
      margin-bottom: 0; } }
  .jb-checkout-login-label .jb-checkout-login-label-triangle {
    display: inline-block;
    margin-top: 20px;
    margin-left: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #000000 transparent transparent transparent; }
  .jb-checkout-login-label.active .jb-checkout-login-label-triangle {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }

.jb-checkout-login-input {
  width: 100%;
  margin-bottom: 8px; }
  @media all and (min-width: 768px) {
    .jb-checkout-login-input {
      width: calc(50% - 65px - 9px);
      float: left;
      margin-bottom: 0; } }

.jb-checkout-login-button {
  width: 130px;
  float: right; }
  @media all and (min-width: 768px) {
    .jb-checkout-login-button {
      margin-left: 18px;
      float: none; } }

.jb-checkout-help {
  color: #000000; }
  .jb-checkout-help a {
    text-transform: lowercase; }

@media all and (max-width: 767px) {
  .jb-checkout-login-form {
    display: none; } }

@media all and (min-width: 768px) {
  .jb-checkout-login-form {
    display: block !important; } }

/* back arrow */
.jb-checkout-back-arrow {
  margin-top: 30px;
  margin-bottom: 30px;
  width: 24px;
  height: 24px; }

.jb-checkout-icon-clock {
  height: 15px;
  width: 15px;
  -webkit-transform: translateY(2px);
  transform: translateY(2px); }

.jb-checkout-section-subheader {
  color: #000000;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 13px; }
  .jb-checkout-section-subheader svg {
    margin-right: 4px; }
  .jb-checkout-section-subheader .jb-checkout-icon-plane {
    width: 24px;
    height: 20px;
    -webkit-transform: translateY(4px);
    transform: translateY(4px); }

.jb-checkout-wrapper {
  padding-bottom: 30px; }

/* checkout quick facts */
.jb-checkout-facts {
  position: relative;
  margin-bottom: 20px; }
  @media all and (min-width: 992px) {
    .jb-checkout-facts {
      margin-bottom: 30px; } }

.jb-checkout-facts-headline {
  margin-top: 0; }

.jb-checkout-facts-inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.jb-checkout-facts-item {
  position: relative;
  height: 100%;
  padding-bottom: 40px;
  color: #000000; }

.jb-checkout-facts-city {
  margin-top: 5px; }

@media all and (min-width: 768px) {
  .jb-checkout-facts-datetime {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0; } }

.jb-checkout-facts-datetime > span:first-child {
  line-height: 30px;
  font-size: 30px;
  margin-right: 5px; }

.jb-checkout-facts-datetime svg {
  margin-left: 15px;
  margin-right: 5px; }

.jb-checkout-facts-datetime > span:not(:first-child) {
  line-height: 15px; }

.jb-checkout-details-link {
  display: inline-block;
  margin-top: 20px; }

.jb-checkout-hint {
  margin-top: 15px;
  display: block;
  padding: 6px 10px 8px 10px;
  font-size: 14px;
  background-color: rgba(254, 197, 0, 0.2); }

/* checkout details */
.jb-checkout-details {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  height: 100vh;
  width: 896px;
  max-width: 100vw;
  background-color: white;
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateX(130%);
  transform: translateX(130%);
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out; }
  .jb-checkout-details.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: -webkit-transform 0.25s ease-out;
    transition: transform 0.25s ease-out;
    transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out; }

.jb-checkout-details-inner {
  position: relative;
  padding: 60px 15px; }
  @media all and (min-width: 768px) {
    .jb-checkout-details-inner {
      padding: 75px; } }

.jb-checkout-details-close {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer; }
  .jb-checkout-details-close svg {
    width: 100%;
    height: 100%; }
  @media all and (min-width: 768px) {
    .jb-checkout-details-close {
      top: 15px;
      left: 15px; } }

.jb-checkout-details-header {
  margin-top: 0; }

.jb-checkout-details-content {
  padding-left: 35px;
  padding-right: 35px; }

.jb-checkout-details-subheader .jb-checkout-icon-clock {
  fill: #000000;
  margin-right: 15px; }

.jb-checkout-details-subheader span:not(:last-child) {
  display: inline-block;
  margin-right: 25px; }

.jb-checkout-details-connections {
  margin-top: 40px; }

.jb-checkout-details-connection-wrapper {
  position: relative;
  padding-left: 32px;
  margin-left: 8px;
  margin-bottom: 35px;
  border-left: 1px solid #000000; }
  @media all and (min-width: 768px) {
    .jb-checkout-details-connection-wrapper {
      padding-right: 170px; } }

@media all and (max-width: 767px) {
  .jb-checkout-details-connection-table {
    width: 100%; } }

.jb-checkout-details-airline {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px; }

.jb-checkout-details-connection-item td {
  vertical-align: top; }

.jb-checkout-details-connection-item:first-child, .jb-checkout-details-connection-item:last-child {
  font-size: 16px; }

.jb-checkout-details-connection-item td:first-child {
  padding-right: 25px; }

.jb-checkout-details-connection-item:not(:last-child) td {
  padding-bottom: 20px; }

.jb-checkout-details-connection-diff {
  color: #ff4700;
  margin-right: 10px; }

.jb-checkout-details-connection-start:before, .jb-checkout-details-connection-start:after,
.jb-checkout-details-connection-mid:before,
.jb-checkout-details-connection-mid:after,
.jb-checkout-details-connection-end:before,
.jb-checkout-details-connection-end:after,
.jb-checkout-details-connection-direct:before,
.jb-checkout-details-connection-direct:after {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  left: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); }

.jb-checkout-details-connection-start:before,
.jb-checkout-details-connection-mid:before,
.jb-checkout-details-connection-end:before,
.jb-checkout-details-connection-direct:before {
  top: 0; }

.jb-checkout-details-connection-start:after,
.jb-checkout-details-connection-mid:after,
.jb-checkout-details-connection-end:after,
.jb-checkout-details-connection-direct:after {
  bottom: 0; }

.jb-checkout-details-connection-start:before,
.jb-checkout-details-connection-end:after,
.jb-checkout-details-connection-direct:before,
.jb-checkout-details-connection-direct:after {
  background-color: #fec500; }

.jb-checkout-details-connection-start:after,
.jb-checkout-details-connection-end:before,
.jb-checkout-details-connection-mid:before,
.jb-checkout-details-connection-mid:after {
  border: 1px solid #000000;
  background-color: white; }

.jb-checkout-details-connection-transfer {
  color: #ff4700;
  margin-bottom: 35px;
  padding-left: 30px; }
  .jb-checkout-details-connection-transfer svg {
    fill: #000000;
    margin-right: 15px; }

/* sidebar */
.jb-checkout-sidebar {
  margin-top: 50px;
  margin-bottom: 30px; }
  @media all and (min-width: 992px) {
    .jb-checkout-sidebar {
      max-height: 100vh;
      overflow-y: auto;
      margin-top: 0;
      margin-bottom: 0; } }

.jb-checkout-sidebar-text {
  padding-right: 15px;
  padding-left: 15px; }
  @media all and (min-width: 768px) {
    .jb-checkout-sidebar-text {
      padding-left: 23px;
      padding-right: 23px; } }

.jb-checkout-sidebar-content {
  color: #000000; }

.jb-checkout-sidebar-header {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 20px;
  background-color: #acb6c0; }

.jb-checkout-sidebar-section {
  padding-top: 20px;
  padding-bottom: 20px; }
  .jb-checkout-sidebar-section + .jb-checkout-sidebar-section {
    border-top: 1px solid #acb6c0; }

.jb-checkout-sidebar-table {
  width: 100%; }
  .jb-checkout-sidebar-table th {
    text-align: left;
    padding-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300; }
  .jb-checkout-sidebar-table tr:not(:last-of-type) td {
    padding-bottom: 6px; }
  .jb-checkout-sidebar-table td {
    padding-right: 5px;
    padding-left: 5px; }
  .jb-checkout-sidebar-table td:first-child {
    padding-left: 0; }
  .jb-checkout-sidebar-table td:last-child {
    text-align: right;
    padding-right: 0; }

.jb-checkout-sidebar-table + .jb-checkout-sidebar-table {
  margin-top: 20px; }

.jb-checkout-sidebar-table-discount {
  color: #ff4700; }

.jb-checkout-sidebar-warning {
  color: #ff4700;
  padding-bottom: 20px; }
  .jb-checkout-sidebar-warning ul {
    padding-left: 0;
    margin-bottom: 0; }
  .jb-checkout-sidebar-warning li {
    position: relative;
    list-style-type: none;
    padding-left: 30px; }
  .jb-checkout-sidebar-warning svg {
    position: absolute;
    top: 0;
    left: 0;
    fill: #ff4700;
    width: 19px;
    height: 21px;
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
    margin-right: 10px; }

.jb-checkout-sidebar-price {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fec500;
  color: #000000; }
  .jb-checkout-sidebar-price div:first-child {
    font-size: 15px;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end; }
  .jb-checkout-sidebar-price div:last-child {
    line-height: 1;
    font-size: 40px; }
    .jb-checkout-sidebar-price div:last-child .jb-checkout-price-decimals {
      display: inline-block;
      font-size: 18px;
      margin-right: 3px; }

/* checkout form */
.jb-checkout-form-header {
  position: relative;
  padding: 20px;
  border: 1px solid #d4dbe3;
  margin-bottom: 20px; }
  .jb-checkout-form-header h2 {
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    color: #000000;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300; }
    @media all and (min-width: 768px) {
      .jb-checkout-form-header h2 {
        font-size: 20px; } }
  .jb-checkout-form-header table {
    display: none;
    margin-top: 10px;
    width: 100%; }
  .jb-checkout-form-header td {
    padding-right: 10px;
    vertical-align: top; }
    @media all and (max-width: 991px) {
      .jb-checkout-form-header td {
        display: block; } }
  .jb-checkout-form-header tr + tr td:first-child {
    padding-top: 12px; }
  @media all and (min-width: 992px) {
    .jb-checkout-form-header tr + tr td {
      padding-top: 12px; } }

.jb-checkout-form-trigger {
  position: absolute;
  display: none;
  right: 15px;
  top: 15px; }
  .jb-checkout-form-trigger svg {
    width: 16px;
    height: 16px;
    stroke: #000; }

.jb-checkout-form-content {
  display: none; }

.jb-checkout-form-row {
  margin-bottom: 20px; }

.jb-checkout-input-no-bl {
  border-left: none; }
  .jb-checkout-input-no-bl + .select2-container {
    border-left: none; }

@media all and (min-width: 768px) {
  .jb-checkout-input-no-bl-sm {
    border-left: none; }
    .jb-checkout-input-no-bl-sm + .select2-container {
      border-left: none; } }

.jb-checkout-input-no-bt {
  border-top: none; }
  .jb-checkout-input-no-bt + .select2-container {
    border-top: none; }

@media all and (max-width: 767px) {
  .jb-checkout-input-no-bt-xs {
    border-top: none; }
    .jb-checkout-input-no-bt-xs + .select2-container {
      border-top: none; } }

@media all and (min-width: 768px) {
  .jb-checkout-input-no-bt-sm {
    border-top: none; }
    .jb-checkout-input-no-bt-sm + .select2-container {
      border-top: none; } }

@media all and (max-width: 767px) {
  .jb-checkout-next {
    display: block; } }

.jb-checkout-cancel {
  display: none;
  margin-left: 10px; }

.jb-checkout-form-header.finished {
  margin-bottom: 10px;
  background-color: white; }
  .jb-checkout-form-header.finished .jb-checkout-form-trigger {
    display: block; }
  .jb-checkout-form-header.finished table {
    display: table; }

.jb-checkout-form-header.finished.active .jb-checkout-form-trigger {
  display: none; }

.jb-checkout-form-header.finished.active table {
  display: none; }

@media all and (max-width: 767px) {
  .jb-checkout-form-header.active.finished + .jb-checkout-form-content .jb-checkout-cancel {
    display: block; } }

@media all and (min-width: 768px) {
  .jb-checkout-form-header.active.finished + .jb-checkout-form-content .jb-checkout-cancel {
    display: inline-block !important; } }

.jb-checkout-form-block h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: red;
  font-size: 16px;
  color: #000000; }
  @media all and (min-width: 768px) {
    .jb-checkout-form-block h3 {
      font-size: 20px; } }

.jb-checkout-form-block + .jb-checkout-form-block {
  margin-top: 60px; }

.jb-checkout-form:not(:last-child) {
  margin-bottom: 10px; }

.jb-checkout-form .jb-input, .jb-checkout-form .jb-input-textarea {
  width: 100%;
  margin-bottom: 0; }
  .jb-checkout-form .jb-input:focus, .jb-checkout-form .jb-input-textarea:focus {
    position: relative;
    z-index: 100; }

.jb-mobile-date-wrapper {
  position: relative; }

.mobile-date + .jb-label, .mobile-date + .jb-input-icon-label {
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
  background-color: white;
  line-height: 50px; }
  @media all and (min-width: 768px) {
    .mobile-date + .jb-label, .mobile-date + .jb-input-icon-label {
      display: none; } }

.mobile-date.jb-invalid + .jb-label, .mobile-date.jb-invalid + .jb-input-icon-label {
  background-color: #fec500; }

.mobile-date:focus + .jb-label, .mobile-date:focus + .jb-input-icon-label,
.mobile-date.not-empty + .jb-label,
.mobile-date.not-empty + .jb-input-icon-label {
  display: none; }

.jb-checkout-submit {
  padding-bottom: 30px; }

.jb-checkout-form-mgt {
  margin-top: 20px; }

.jb-checkout-form-mgb {
  margin-bottom: 20px; }

.jb-checkout-options-toggle {
  display: inline-block; }
  .jb-checkout-options-toggle span {
    text-transform: none; }
    .jb-checkout-options-toggle span:first-child {
      display: inline; }
    .jb-checkout-options-toggle span:last-child {
      display: none; }

.jb-checkout-options-content {
  display: none; }

.jb-checkout-options.active .jb-checkout-options-toggle span:first-child {
  display: none; }

.jb-checkout-options.active .jb-checkout-options-toggle span:last-child {
  display: inline; }

.jb-checkout-options.active .jb-checkout-options-content {
  display: block; }

.jb-checkout-addons-block {
  margin-bottom: 20px; }

.jb-checkout-selection {
  position: relative; }

.jb-checkout-selection-item label {
  display: block;
  padding-top: 14px;
  padding-bottom: 14px; }

.jb-checkout-selection-item.jb-radio label:before {
  top: 14px; }

.jb-checkout-selection-item.jb-radio input:checked + label:after {
  top: 19px; }

.jb-checkout-selection-item.jb-checkbox label:before {
  top: 15px; }

.jb-checkout-selection-item.jb-checkbox input:checked + label:after {
  top: 21px; }

.jb-checkout-selection-item-right {
  position: absolute;
  right: 15px;
  top: 14px; }
  @media all and (min-width: 768px) {
    .jb-checkout-selection-item-right {
      right: 40px; } }

.jb-checkout-selection-insurance, .jb-checkout-selection-service {
  border-left-width: 10px;
  border-left-style: solid; }
  .jb-checkout-selection-insurance label, .jb-checkout-selection-service label {
    padding-left: 45px;
    padding-right: 80px; }
    @media all and (min-width: 768px) {
      .jb-checkout-selection-insurance label, .jb-checkout-selection-service label {
        padding-right: 110px; } }
    .jb-checkout-selection-insurance label:before, .jb-checkout-selection-insurance label:after, .jb-checkout-selection-service label:before, .jb-checkout-selection-service label:after {
      left: 25px;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%); }

.jb-checkout-selection-insurance {
  background: #dceec6;
  border-color: #4caf50; }
  .jb-checkout-selection-insurance .jb-radio input:checked + label {
    background: #cee1b6; }

.jb-checkout-selection-service {
  background: #fffde6;
  border-color: #fdc400; }
  .jb-checkout-selection-service .jb-checkbox input:checked + label {
    background: #faf7d6; }

/* Payment */
.jb-checkout-payment-img {
  position: absolute;
  left: 30px;
  max-width: 50px;
  top: 24px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

.jb-checkout-creditcard-img {
  display: none; }
  .jb-checkout-creditcard-img.active {
    display: inline; }

.jb-checkout-card-icon {
  width: 20px;
  height: 20px; }

.jb-checkout-creditcard-img.active ~ .jb-checkout-card-icon {
  display: none; }

.card-fee {
  display: none; }
  .card-fee.active {
    display: b; }

.card-fee.active ~ .card-fee-default {
  display: none; }

.jb-checkout-selection-payment label {
  padding-left: 100px; }

.jb-checkout-selection-payment .jb-checkout-selection-item {
  padding: 0; }

.jb-checkout-selection-payment .jb-checkout-selection-item-right {
  right: 0;
  color: #000000; }
  @media all and (max-width: 767px), all and (min-width: 992px) and (max-width: 1199px) {
    .jb-checkout-selection-payment .jb-checkout-selection-item-right {
      position: static; } }

.jb-checkout-selection-payment-content {
  display: none; }

.jb-checkout-selection-payment .jb-radio.active + .jb-checkout-selection-payment-content {
  display: block; }

.jb-checkout-payment-hint {
  padding: 10px 20px;
  margin-bottom: 20px;
  background-color: #fff6df; }
  .jb-checkout-payment-hint span {
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; }

/* disclaimer */
.jb-checkout-disclaimer {
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px; }
  .jb-checkout-disclaimer label {
    display: block; }
  .jb-checkout-disclaimer a {
    text-transform: none; }

.jb-checkout-feeder {
  background: transparent;
  margin: 15px 0;
  padding: 15px 15px 15px 20px;
  font-size: 14px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000000; }
  .jb-checkout-feeder.jb-checkout-feeder-success {
    margin: 0 0 30px;
    padding: 15px; }
  .jb-checkout-feeder.jb-checkout-feeder-yellow {
    background: rgba(254, 197, 0, 0.2); }

.jb-checkout-feeder-text {
  display: inline-block; }

.jb-checkout-feeder-link {
  display: block;
  color: #82909f; }

.jb-checkout-feeder-icon {
  height: 28px;
  width: 28px;
  margin-right: 15px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  fill: #000000; }
  .jb-checkout-feeder-icon.jb-checkout-feeder-icon-stroke {
    fill: none;
    stroke: #000000; }

.jb-checkout-confirmation {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-size: 15px;
  color: #000000; }

.jb-checkout-confirmation-headline {
  margin-top: 0;
  margin-bottom: 50px; }

.jb-checkout-confirmation-booking-number {
  color: #000000;
  font-size: 40px;
  margin-bottom: 50px; }

.jb-checkout-confirmation-text {
  color: #000000; }
  .jb-checkout-confirmation-text.jb-checkout-confirmation-passangers {
    margin: 0; }
  .jb-checkout-confirmation-text.jb-checkout-confirmation-salutation {
    margin-bottom: 30px; }

.jb-checkout-confirmation-text + .jb-checkout-confirmation-text {
  margin-top: 33px; }

.jb-checkout-confirmation-print {
  margin-top: 35px; }

.jb-checkout-confirmation-tableheadline {
  margin-top: 0;
  margin-bottom: 20px; }

.jb-checkout-confirmation-item {
  height: 100%;
  padding-top: 40px;
  padding-bottom: 30px; }

.jb-checkout-confirmation-item-left {
  text-align: center; }
  .jb-checkout-confirmation-item-left table {
    margin: 0 auto; }
  @media all and (min-width: 1200px) {
    .jb-checkout-confirmation-item-left {
      padding-right: 25px;
      text-align: left; }
      .jb-checkout-confirmation-item-left table {
        margin: 0; } }

@media all and (min-width: 1200px) {
  .jb-checkout-confirmation-item-right {
    padding-left: 25px;
    padding-right: 25px; } }

.jb-checkout-confirmation-bookings td {
  vertical-align: top;
  padding-right: 75px;
  padding-bottom: 30px; }
  .jb-checkout-confirmation-bookings td:first-child {
    vertical-align: top;
    padding-right: 10px; }
  .jb-checkout-confirmation-bookings td:last-child {
    padding-right: 0; }
  .jb-checkout-confirmation-bookings td div span:first-child {
    padding-right: 22px;
    margin-right: 10px;
    background: url(../Images/Icons/checkout_arrow_right.png) no-repeat right center; }
  .jb-checkout-confirmation-bookings td > span {
    width: 100%;
    display: block; }
    .jb-checkout-confirmation-bookings td > span:last-child {
      color: #000000; }
  @media all and (max-width: 767px) {
    .jb-checkout-confirmation-bookings td {
      width: 100%;
      float: left; }
      .jb-checkout-confirmation-bookings td:nth-child(2), .jb-checkout-confirmation-bookings td:first-child {
        width: auto; } }

.jb-checkout-confirmation-passenger td {
  color: #000000; }

.jb-checkout-confirmation-box-header {
  background: #fec500;
  padding: 28px 32px; }
  .jb-checkout-confirmation-box-header span {
    background: url(../Images/Icons/registry_exclamation_mark.png) no-repeat left center;
    padding-left: 36px; }

.jb-checkout-confirmation-box-wrapper {
  padding: 25px 32px 20px 32px;
  background: white;
  box-shadow: 0 26px 33px -35px rgba(0, 0, 0, 0.75); }

.jb-checkout-confirmation-box-content {
  margin-bottom: 25px; }

.jb-checkout-confirmation-box-form label {
  font-size: 13px;
  width: 100%;
  float: left;
  margin-bottom: 8px; }

.jb-checkout-confirmation-box-form input {
  width: 100%;
  float: left;
  margin-bottom: 16px;
  padding: 16px 19px;
  border: 1px solid #d4dbe3;
  outline: none; }

.jb-checkout-form-description {
  display: block;
  width: 100%;
  text-align: center;
  color: #000000;
  font-size: 13px; }

.jb-checkout-confirmation-print-note {
  margin-top: 10px; }

.jb-checkout-confirmation-link-homepage {
  margin-top: 80px; }

.jb-ticket {
  width: 100%;
  display: none; }

.jb-ticket .placeholder-logo-blue {
  margin-top: 40px; }

.jb-ticket .jb-h1 {
  margin-bottom: 40px;
  margin-top: 0px; }

.jb-ticket .jb-h1-red {
  color: #ff4700;
  display: inline-block;
  margin: 0; }

.jb-ticket .jb-copy {
  padding-bottom: 0px;
  margin-bottom: 0px;
  margin-top: 40px;
  font-size: 10px; }

.jb-ticket .jb-h2, .jb-ticket .jb-neos-headline-alternative {
  margin-bottom: 20px;
  margin-top: 0px; }

.jb-ticket .jb-h2-grey {
  margin-bottom: 0px; }

.jb-ticket .jb-ticket-row:first-child {
  margin-top: 0px; }

.jb-ticket .jb-ticket-row + .jb-ticket-row {
  margin-top: 80px; }

.jb-ticket .jb-ticket-row:nth-child(2), .jb-ticket .jb-ticket-row:last-child {
  margin-top: 40px; }

.jb-text-secondary {
  color: #000000; }

.jb-ticket-table {
  text-align: left;
  width: 100%;
  word-wrap: break-word;
  margin-left: auto !important;
  margin-right: auto !important;
  float: none !important; }
  .jb-ticket-table hr:first-child {
    margin-top: 10px; }
  .jb-ticket-table td + td, .jb-ticket-table th + th {
    padding-left: 10px; }
  .jb-ticket-table th {
    font-size: 8px; }
  .jb-ticket-table td {
    vertical-align: top;
    font-size: 10px; }
  .jb-ticket-table .text-bottom {
    vertical-align: bottom; }

@media screen and (max-width: 991px) {
  .jb-ticket-table {
    table-layout: fixed; } }

@media print {
  .jb-hide-print {
    display: none; }
  .jb-show-print {
    display: block; }
  .jb-ticket-row {
    page-break-inside: avoid; }
  .jb-copy {
    color: #000000 !important;
    -webkit-print-color-adjust: exact; }
  @page {
    margin-left: 1cm;
    margin-right: 1cm; } }

.jb-login-box,
.jb-guest-login-box,
.jb-login-remodal-body {
  float: left;
  width: 100%;
  padding: 0 20px 40px 20px; }
  .jb-login-box .jb-btn,
  .jb-guest-login-box .jb-btn,
  .jb-login-remodal-body .jb-btn {
    float: right; }
  @media all and (max-width: 768px) {
    .jb-login-box .jb-login-btn,
    .jb-guest-login-box .jb-login-btn,
    .jb-login-remodal-body .jb-login-btn {
      width: 100%;
      margin-bottom: 40px; } }

.jb-login-remodal-body {
  padding-top: 40px; }

.jb-login-box,
.jb-guest-login-box {
  border-radius: 5px;
  border: 1px solid #d4dbe3; }

.jb-guest-login-btn-wrapper {
  float: right; }

.jb-login-remodal {
  max-width: 545px;
  padding: 0;
  border-radius: 5px;
  text-align: center; }

.jb-login-remodal-header span {
  float: left;
  width: 50%;
  padding: 32px 5px 29px 5px;
  text-align: center; }

.jb-login-remodal-header a {
  float: left;
  width: 50%;
  padding: 32px 5px 29px 5px;
  text-align: center;
  background: #fec500;
  color: #fff;
  border-top-right-radius: 5px; }
  .jb-login-remodal-header a:hover {
    text-decoration: none; }

.jb-socialbutton-fb,
.jb-socialbutton-gp {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  float: left;
  font-size: 16px; }

.jb-socialbutton-fb {
  background: #39579a; }
  .jb-socialbutton-fb:hover {
    background: #39579a;
    text-decoration: none;
    color: #fff; }

.jb-socialbutton-gp {
  background: #488ae9; }
  .jb-socialbutton-gp:hover {
    background: #488ae9;
    text-decoration: none;
    color: #fff; }

.jb-form-or {
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  text-align: center;
  color: #000000; }

.jb-login-remodal-body form input:valid {
  border-color: #b1cf1b; }

.jb-login-checkbox-wrapper {
  width: 100%;
  float: left;
  margin-bottom: 20px;
  position: relative; }
  .jb-login-checkbox-wrapper input,
  .jb-login-checkbox-wrapper label {
    float: right;
    width: auto; }
  @media all and (max-width: 768px) {
    .jb-login-checkbox-wrapper input,
    .jb-login-checkbox-wrapper label {
      float: left; } }
  .jb-login-checkbox-wrapper label {
    padding-left: 35px; }
    .jb-login-checkbox-wrapper label:before {
      left: 0;
      -webkit-transform: none;
      transform: none; }
    .jb-login-checkbox-wrapper label:after {
      left: 9px; }

.jb-login-box .jb-login-changes {
  margin-top: 30px; }

.jb-login-changes,
.jb-login-remodal-changes {
  display: block;
  text-align: left; }
  .jb-login-changes .jb-login-remodal-pw,
  .jb-login-remodal-changes .jb-login-remodal-pw {
    margin-bottom: 10px; }
    .jb-login-changes .jb-login-remodal-pw a,
    .jb-login-remodal-changes .jb-login-remodal-pw a {
      width: 100%; }
  .jb-login-changes span,
  .jb-login-remodal-changes span {
    color: #000000; }
  @media all and (max-width: 768px) {
    .jb-login-changes a,
    .jb-login-remodal-changes a {
      text-align: left; } }
  .jb-login-changes a:hover, .jb-login-changes a:focus,
  .jb-login-remodal-changes a:hover,
  .jb-login-remodal-changes a:focus {
    color: #ff4700;
    text-decoration: none; }

.jb-registry-box {
  float: left;
  width: 100%;
  padding: 0 40px 40px 40px;
  border: 1px solid #d4dbe3;
  border-radius: 5px; }
  @media all and (max-width: 767px) {
    .jb-registry-box {
      padding: 0 20px 40px 20px; } }

.jb-mail-login {
  margin-bottom: 24px;
  display: block;
  color: #000000; }

.jb-registry-password-description {
  display: block;
  margin-bottom: 24px;
  margin-top: -14px;
  color: #000000; }

.jb-registry-salutation {
  width: 100%;
  float: left; }
  .jb-registry-salutation input[type="radio"] {
    visibility: hidden;
    position: absolute; }
  .jb-registry-salutation label:nth-of-type(1) {
    margin-right: 6%; }
  .jb-registry-salutation input[type="radio"] + label,
  .jb-registry-salutation input[type="radio"]:checked + label {
    float: left;
    width: 47%;
    padding: 24px 0;
    text-align: center;
    cursor: pointer; }
    @media all and (max-width: 480px) {
      .jb-registry-salutation input[type="radio"] + label,
      .jb-registry-salutation input[type="radio"]:checked + label {
        width: 100%; } }
  .jb-registry-salutation input[type="radio"] + label {
    background: #f4f6f8;
    color: #000000; }
  .jb-registry-salutation input[type="radio"]:checked + label,
  .jb-registry-salutation input[type="radio"] + label:hover {
    background: #000000;
    color: #fff; }

.jb-submit-registry {
  float: right; }

.jb-login-btn-wrapper {
  width: 100%;
  float: left;
  min-height: 50px; }
  .jb-login-btn-wrapper .jb-btn {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
    position: absolute; }

@media all and (max-width: 768px) {
  .jb-registry-box .col-sm-6 {
    float: left;
    width: 100%; }
  .jb-login-box {
    margin-bottom: 50px; } }

.jb-contactform > div {
  width: 49%;
  float: left; }
  .jb-contactform > div:nth-child(2n) {
    margin-left: 2%; }
  @media all and (max-width: 768px) {
    .jb-contactform > div {
      width: 100%; }
      .jb-contactform > div:nth-child(2n) {
        margin-left: 0; } }

.jb-footer {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: 70px;
  border-top: 1px solid #d4dbe3; }
  @media all and (min-width: 768px) {
    .jb-footer {
      margin-top: 90px; } }
  @media all and (min-width: 992px) {
    .jb-footer {
      margin-top: 120px; } }
  .jb-footer a {
    color: #000000; }
    .jb-footer a:hover {
      color: #000000;
      text-decoration: none; }

.jb-footer-headline {
  font-size: 20px;
  margin-bottom: 30px; }

.jb-footer-linklist a {
  display: block;
  margin-bottom: 5px; }

@media all and (max-width: 767px) {
  .jb-footer-linklist {
    margin-bottom: 40px; } }

.jb-footer-country,
.jb-footer-language {
  display: block;
  height: 20px;
  margin-bottom: 3px;
  margin-right: 20px; }
  .jb-footer-country .select2-container--default,
  .jb-footer-language .select2-container--default {
    margin: 0; }

@media all and (max-width: 767px) {
  .jb-footer-payment {
    margin-top: 40px; } }

.jb-footer-payment-logos img {
  margin-bottom: 10px; }

.jb-footer-top + .jb-footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  padding-bottom: 10px;
  border-top: 1px solid #d4dbe3; }

.jb-rating-system {
  position: relative;
  display: inline-block;
  color: #fff;
  height: 14px;
  font-size: 0;
  width: 135px; }
  .jb-rating-system:before, .jb-rating-system:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    top: 0;
    background-repeat: no-repeat;
    background-position: top left; }
  .jb-rating-system:before {
    width: 100%;
    background-image: url(../Images/Icons/svgs/5stars_grey.svg); }
  .jb-rating-system:after {
    background-image: url(../Images/Icons/svgs/5stars.svg); }
  .jb-rating-system[data-rating^="5"]:after {
    background-position-x: 0;
    width: 135px; }
  .jb-rating-system[data-rating^="4"]:after {
    background-position-x: -30px;
    width: 105px; }
  .jb-rating-system[data-rating^="3"]:after {
    background-position-x: -60px;
    width: 75px; }
  .jb-rating-system[data-rating^="2"]:after {
    background-position-x: -90px;
    width: 45px; }
  .jb-rating-system[data-rating^="1"]:after {
    background-position-x: -120px;
    width: 15px; }
  .jb-rating-system[data-rating^="0"]:after {
    background-position-x: -150px;
    width: 0px; }

.jb-rating-system-number {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }
  .jb-rating-system-number > div:first-child {
    margin-right: 10px;
    color: #000000;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 3px; }
    .jb-rating-system-number > div:first-child span {
      font-size: 14px; }
  .jb-rating-system-number span {
    display: inline-block;
    margin-bottom: 4px;
    color: #000000; }
  .jb-rating-system-number .jb-rating-system {
    display: block; }

.jb-rating-system-centered {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }
  .jb-rating-system-centered > div:first-child {
    margin-right: 0;
    margin-bottom: 8px; }
  .jb-rating-system-centered span {
    text-align: center; }
  .jb-rating-system-centered .jb-rating-system {
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); }

@media all and (max-width: 767px) {
  .jb-rating-system-xs-centered {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
    .jb-rating-system-xs-centered > div:first-child {
      margin-right: 0;
      margin-bottom: 8px; }
    .jb-rating-system-xs-centered span {
      text-align: center; }
    .jb-rating-system-xs-centered .jb-rating-system {
      margin-left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%); } }

.jb-airline-details-main {
  overflow: hidden; }

.jb-airline-details-header {
  padding: 25px 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .jb-airline-details-header .jb-h1 {
    margin: 0 40px 0 0;
    padding: 10px 0; }
  .jb-airline-details-header .jb-rating-system-number {
    padding: 10px 0; }

.jb-details-subheadline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin: 40px 0 20px; }

.jb-details-link {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  margin: 0; }
  .jb-details-link:hover, .jb-details-link:focus {
    text-decoration: none;
    color: #ff4700; }

.jb-airline-recommendations-item {
  display: inline-block;
  margin-bottom: 10px;
  color: #000000; }
  .jb-airline-recommendations-item .hover {
    color: #000000; }

.jb-details-hero-image-wrapper {
  height: 220px;
  width: 100%;
  position: relative; }
  .jb-details-hero-image-wrapper .jb-airline-details-hero-image {
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center; }
    @media all and (min-width: 768px) {
      .jb-details-hero-image-wrapper .jb-airline-details-hero-image {
        height: calc(100% + 200px); } }
  @media all and (min-width: 768px) {
    .jb-details-hero-image-wrapper {
      height: 400px; } }
  @media all and (min-width: 992px) {
    .jb-details-hero-image-wrapper {
      height: 390px; } }

.jb-details-hero-logo-wrapper .jb-details-hero-logo {
  padding: 20px 5px;
  text-align: center; }

@media all and (min-width: 768px) {
  .jb-details-hero-logo-wrapper {
    z-index: 5;
    position: absolute;
    right: 0;
    top: -130px; }
    .jb-details-hero-logo-wrapper .jb-details-hero-logo {
      width: 320px;
      margin: 0 auto;
      background-color: #fff; } }

@media all and (min-width: 992px) {
  .jb-details-hero-logo-wrapper .jb-details-hero-logo {
    text-align: left; } }

@media all and (min-width: 992px) {
  .jb-details-hero-logo-wrapper {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); } }

.jb-details-hero-wrapper {
  width: 100%;
  position: relative; }
  .jb-details-hero-wrapper > .jb-container {
    position: relative; }
  .jb-details-hero-wrapper .jb-h2, .jb-details-hero-wrapper .jb-neos-headline-alternative {
    margin: 25px 0 10px 0; }
  .jb-details-hero-wrapper .jb-details-hero-content-wrapper {
    background-color: #313b45;
    padding: 25px 15px; }
    @media all and (min-width: 768px) {
      .jb-details-hero-wrapper .jb-details-hero-content-wrapper {
        background-color: transparent; } }
    @media all and (min-width: 992px) {
      .jb-details-hero-wrapper .jb-details-hero-content-wrapper:after {
        content: "";
        position: absolute;
        top: 0;
        left: 100%;
        bottom: 0;
        width: 50vw;
        background-color: #fff; } }
    .jb-details-hero-wrapper .jb-details-hero-content-wrapper .jb-stage-deal-share {
      float: right;
      margin-right: 5px;
      z-index: 19; }
  .jb-details-hero-wrapper .jb-details-text p {
    color: rgba(255, 255, 255, 0.7); }
  .jb-details-hero-wrapper .jb-details-link {
    padding-left: 12px;
    z-index: 19; }
    .jb-details-hero-wrapper .jb-details-link:before {
      content: "";
      width: 7px;
      height: 7px;
      position: absolute;
      border: 0 solid transparent;
      border-left: 2px solid #fec500;
      border-bottom: 2px solid #fec500;
      -webkit-transform: rotate(45deg) translate(-50%, -50%);
      transform: rotate(45deg) translate(-50%, -50%);
      top: 11px;
      left: 2px; }
  .jb-details-hero-wrapper .jb-airline-details-hero-facts {
    padding: 20px 0 0;
    margin-left: -30px; }
    .jb-details-hero-wrapper .jb-airline-details-hero-facts:before, .jb-details-hero-wrapper .jb-airline-details-hero-facts:after {
      display: table;
      content: " "; }
    .jb-details-hero-wrapper .jb-airline-details-hero-facts:after {
      clear: both; }
    .jb-details-hero-wrapper .jb-airline-details-hero-facts .jb-hero-col {
      text-align: center;
      font-size: 14px;
      padding: 0 10px;
      margin-bottom: 20px; }
      .jb-details-hero-wrapper .jb-airline-details-hero-facts .jb-hero-col .jb-hero-span {
        color: #fff;
        display: block;
        font-size: 16px; }
    @media all and (min-width: 768px) {
      .jb-details-hero-wrapper .jb-airline-details-hero-facts {
        padding: 30px 0 5px; } }
    @media all and (min-width: 992px) {
      .jb-details-hero-wrapper .jb-airline-details-hero-facts {
        padding: 10px 0 5px; } }
    @media all and (min-width: 1200px) {
      .jb-details-hero-wrapper .jb-airline-details-hero-facts {
        padding: 20px 0 10px; } }
  @media all and (min-width: 768px) {
    .jb-details-hero-wrapper {
      background: linear-gradient(rgba(49, 59, 69, 0.8), #313b45 200px); } }

.jb-airline-details-hero-menu {
  background-color: #39444e; }
  .jb-airline-details-hero-menu .jb-hero-menu {
    background-color: #39444e;
    padding-bottom: 16px; }
    @media all and (min-width: 768px) {
      .jb-airline-details-hero-menu .jb-hero-menu {
        padding-bottom: 0; } }
  .jb-airline-details-hero-menu .jb-hero-menu-button {
    width: 100%;
    height: 72px;
    position: relative;
    margin-top: 8px;
    background: #475460;
    border-radius: 5px; }
    .jb-airline-details-hero-menu .jb-hero-menu-button:hover, .jb-airline-details-hero-menu .jb-hero-menu-button:focus {
      background-color: #fec500;
      box-shadow: 0 0 6px 6px #2f3941; }
    .jb-airline-details-hero-menu .jb-hero-menu-button a {
      text-align: center;
      padding: 0 20px;
      font-size: 16px;
      color: #fff;
      display: block;
      position: absolute;
      width: 100%;
      height: 100%;
      line-height: 72px;
      z-index: 6; }
      .jb-airline-details-hero-menu .jb-hero-menu-button a:hover, .jb-airline-details-hero-menu .jb-hero-menu-button a:focus {
        text-decoration: none; }
    .jb-airline-details-hero-menu .jb-hero-menu-button.active {
      background-color: #fec500; }
    @media all and (min-width: 768px) {
      .jb-airline-details-hero-menu .jb-hero-menu-button {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0; }
        .jb-airline-details-hero-menu .jb-hero-menu-button:hover, .jb-airline-details-hero-menu .jb-hero-menu-button:focus {
          box-shadow: none; }
        .jb-airline-details-hero-menu .jb-hero-menu-button.active:before {
          content: "";
          background-image: url(/_Resources/Static/Packages/Mindscreen.Jetbeds/Build/Images/Airline_Details_Tab.png);
          height: 111px;
          left: -12px;
          top: -7px;
          right: -12px;
          position: absolute;
          display: block;
          background-repeat: no-repeat;
          background-size: 100% 100%;
          z-index: 1; } }

.jb-airline-gallery {
  position: relative;
  overflow: hidden;
  padding-top: 15px; }

.jb-airline-gallery-nav {
  position: relative;
  border-bottom: 5px solid #f4f6f8;
  z-index: 20;
  font-size: 16px; }
  .jb-airline-gallery-nav .jb-airline-gallery-nav-item {
    cursor: pointer;
    text-align: center;
    padding: 11px 0 8px;
    float: left;
    width: 16.66667%;
    transition: color 0.3s; }
    .jb-airline-gallery-nav .jb-airline-gallery-nav-item.active {
      transition: color 0.3s;
      color: #000000; }

.jb-airline-gallery-nav-indicator {
  position: absolute;
  height: 5px;
  width: 16.66668%;
  background-color: #fec500;
  bottom: -5px;
  left: 0;
  transition: left 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  /* easeInOutSine */ }
  .jb-airline-gallery-nav-indicator:before {
    content: "";
    position: absolute;
    display: block;
    left: 50%;
    top: 5px;
    width: 6px;
    height: 6px;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: #fec500; }

.jb-airline-gallery-nav-item.active:nth-child(2) ~ .jb-airline-gallery-nav-indicator {
  left: 16.66667%; }

.jb-airline-gallery-nav-item.active:nth-child(3) ~ .jb-airline-gallery-nav-indicator {
  left: 33.33334%; }

.jb-airline-gallery-nav-item.active:nth-child(4) ~ .jb-airline-gallery-nav-indicator {
  left: 50.00001%; }

.jb-airline-gallery-nav-item.active:nth-child(5) ~ .jb-airline-gallery-nav-indicator {
  left: 66.66668%; }

.jb-airline-gallery-nav-item.active:nth-child(6) ~ .jb-airline-gallery-nav-indicator {
  left: 83.33335%; }

.jb-airline-gallery-nav-mobile {
  width: 90%;
  max-width: 260px;
  margin-left: 15px; }

.jb-airline-gallery-slider-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
  margin-bottom: 40px; }
  @media all and (min-width: 480px) {
    .jb-airline-gallery-slider-wrapper {
      height: 300px; } }
  @media all and (min-width: 768px) {
    .jb-airline-gallery-slider-wrapper {
      height: 450px; } }

.jb-airline-gallery-slider {
  position: absolute;
  overflow: hidden;
  height: 100%;
  width: 100%;
  opacity: 1;
  z-index: 10; }
  .jb-airline-gallery-slider .slick-list, .jb-airline-gallery-slider .slick-track, .jb-airline-gallery-slider .slick-slide {
    height: 100%; }
  .jb-airline-gallery-slider .jb-airline-gallery-slider-image {
    float: left;
    background-size: cover;
    background-position: top center; }
  .jb-airline-gallery-slider .slick-dots {
    display: block;
    position: absolute;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    right: 50%;
    bottom: 20px;
    margin-bottom: 0;
    padding: 0; }
    @media all and (max-width: 767px) {
      .jb-airline-gallery-slider .slick-dots {
        display: none !important; } }
    .jb-airline-gallery-slider .slick-dots li {
      list-style-type: none;
      float: left; }
    .jb-airline-gallery-slider .slick-dots button {
      font-size: 0;
      line-height: 0;
      display: block;
      width: 20px;
      height: 20px;
      padding: 5px;
      cursor: pointer;
      color: transparent;
      border: 0;
      outline: none;
      background: transparent; }
      .jb-airline-gallery-slider .slick-dots button:before {
        content: "";
        position: absolute;
        display: block;
        height: 8px;
        width: 8px;
        border-radius: 100%;
        background-color: white; }
    .jb-airline-gallery-slider .slick-dots .slick-active button:before {
      background-color: #fec500; }
  .jb-airline-gallery-slider .slick-arrow {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
    transition: opacity 0.15s ease-in-out; }
    .jb-airline-gallery-slider .slick-arrow.inactive, .jb-airline-gallery-slider .slick-arrow.slick-disabled {
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.15s ease-in-out; }

.jb-airline-gallery-next-link, .jb-airline-gallery-prev-link {
  display: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 20;
  padding: 15px 25px 15px 20px;
  background: rgba(255, 255, 255, 0.9); }
  @media all and (min-width: 768px) {
    .jb-airline-gallery-next-link, .jb-airline-gallery-prev-link {
      padding: 20px 25px 20px 20px; } }
  .jb-airline-gallery-next-link .jb-link, .jb-airline-gallery-prev-link .jb-link {
    display: none; }

.jb-airline-gallery-prev-link.jb-js-airline-gallery-prev-link .jb-link,
.jb-airline-gallery-next-link.jb-js-airline-gallery-next-link .jb-link {
  background-color: transparent;
  border-radius: 0;
  width: 100%; }
  .jb-airline-gallery-prev-link.jb-js-airline-gallery-prev-link .jb-link:before,
  .jb-airline-gallery-next-link.jb-js-airline-gallery-next-link .jb-link:before {
    background-color: #fec500; }

.jb-airline-gallery-next-link {
  right: -5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px; }

.jb-airline-gallery-prev-link {
  left: -5px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px; }

@media all and (min-width: 768px) {
  .jb-airline-gallery-content {
    padding-bottom: 30px;
    border-bottom: 1px solid #d4dbe3; } }

.jb-airline-gallery-text {
  display: none;
  padding-bottom: 20px; }
  @media all and (max-width: 767px) {
    .jb-airline-gallery-text {
      border-bottom: 1px solid #d4dbe3;
      margin-bottom: 20px; } }
  .jb-airline-gallery-text.active {
    display: block; }
  .jb-airline-gallery-text .jb-h3 {
    margin-top: 0; }
  .jb-airline-gallery-text .jb-link {
    margin-top: 20px; }

.neos-backend .jb-airline-gallery-text {
  display: block; }

.jb-text-grid {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }
  @media all and (min-width: 768px) {
    .jb-text-grid {
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row; } }

@media all and (min-width: 768px) {
  .jb-text-grid-small .jb-text-grid-col {
    padding: 0 30px 20px; } }

.jb-text-grid-col {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d4dbe3; }
  .jb-text-grid-col.jb-no-border-bottom {
    border-bottom: none; }
  @media all and (min-width: 768px) {
    .jb-text-grid-col {
      padding: 0 40px 30px;
      margin-bottom: 0;
      border-right: 1px solid #d4dbe3; }
      .jb-text-grid-col:first-child {
        padding-left: 0; }
      .jb-text-grid-col:last-child {
        padding-right: 0;
        border-right: none; } }

.jb-login-modal {
  max-width: 750px;
  padding: 30px 0; }

.jb-login-modal-header {
  padding-bottom: 30px; }
  .jb-login-modal-header:only-child {
    padding-bottom: 0; }

.jb-login-logo {
  width: 90px;
  height: 22px;
  margin-bottom: 20px;
  fill: #000000; }

.jb-login-modal-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  margin-bottom: 20px;
  font-size: 30px;
  color: #000000;
  line-height: 1.3; }
  .jb-login-modal-headline span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased; }

.jb-login-modal-subheadline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  font-size: 22px;
  color: #000000; }

.jb-login-modal-body {
  background-color: #f4f6f8;
  padding: 30px 0; }

.jb-login-modal-body-copy {
  margin-bottom: 30px; }

@media all and (min-width: 768px) {
  .jb-login-modal-pw-form .jb-input, .jb-login-modal-pw-form .jb-input-textarea {
    margin-bottom: 0; } }

.jb-login-modal-social {
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #82909f; }
  .jb-login-modal-social:before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    background-color: #f4f6f8;
    padding: 0 8px;
    font-size: 16px;
    line-height: 1;
    color: #000000; }
  @media all and (max-width: 767px) {
    .jb-login-modal-social .jb-btn-gplus {
      margin-top: 10px; } }

.jb-login-modal-pw-link {
  display: inline-block;
  margin-bottom: 20px; }
  @media all and (min-width: 768px) {
    .jb-login-modal-pw-link {
      margin-bottom: 10px; } }

.jb-login-modal-loginlink {
  padding-top: 30px; }

.jb-login-modal-ts-row {
  text-align: center; }

.jb-login-modal-ts {
  margin-right: 20px; }

.jb-login-modal-rating {
  font-weight: 700;
  display: block;
  margin-top: 15px; }
  @media all and (min-width: 768px) {
    .jb-login-modal-rating {
      display: inline;
      margin-top: 0; } }

.jb-login-modal-terms {
  font-size: 11px;
  text-align: center;
  padding-top: 20px; }
  .jb-login-modal-terms a {
    color: #ff4700; }

.jb-login-modal-star {
  margin-top: -2px;
  width: 18px; }

.jb-login-modal-separate {
  margin: 0 20px;
  display: none; }
  @media all and (min-width: 768px) {
    .jb-login-modal-separate {
      display: inline; } }

.jb-login-modal-footer {
  padding: 30px 30px 0 30px;
  text-align: center; }

.jb-login-modal-mailprovider {
  text-align: center; }
  .jb-login-modal-mailprovider img {
    height: 70px; }
    @media all and (max-width: 767px) {
      .jb-login-modal-mailprovider img {
        display: block;
        margin: 0 auto; } }

.jb-notification {
  display: none;
  padding: 10px 0 12px;
  font-size: 15px; }
  .jb-notification.active .jb-notification-content {
    opacity: 1;
    transition: opacity 0.3s ease-in-out 0.2s; }

.jb-notification-ok {
  background-color: #fec500;
  color: #000000; }
  .jb-notification-ok .jb-notification-close-icon {
    fill: #000000; }

.jb-notification-info {
  background-color: #000000;
  color: #333333; }

.jb-notification-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  opacity: 0;
  transition: opacity 0.1s ease-in-out; }

.jb-notification-with-button {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media all and (min-width: 768px) {
    .jb-notification-with-button {
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center; } }
  @media all and (max-width: 767px) {
    .jb-notification-with-button .jb-notification-text {
      padding-right: 0;
      margin-bottom: 20px; } }

.jb-notification-title {
  font-weight: 400;
  margin-bottom: 5px; }

.jb-notification-text {
  padding-right: 40px;
  -webkit-flex-shrink: 100;
  -ms-flex-negative: 100;
  flex-shrink: 100; }
  .jb-notification-text a {
    display: inline-block; }

.jb-notification-close {
  cursor: pointer; }
  .jb-notification-close .jb-notification-close-button {
    white-space: nowrap; }
  .jb-notification-close .jb-notification-close-icon {
    height: 20px;
    width: 20px; }

#jb-notification-cookies {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  background-color: #f4f6f8;
  color: #000000;
  font-weight: 400;
  border-top: 1px solid #d4dbe3; }
  #jb-notification-cookies .jb-notification-text {
    font-size: 14px;
    padding-right: 20px; }
  #jb-notification-cookies .jb-notification-copy .jb-text-link {
    color: #000000;
    text-decoration: underline;
    padding-left: 15px; }
  #jb-notification-cookies .jb-notification-close .jb-notification-close-icon {
    fill: #000000;
    width: 10px;
    height: 10px;
    stroke: #000000;
    stroke-width: 3px; }
  @media (min-width: 1200px) {
    #jb-notification-cookies .jb-notification-copy {
      white-space: nowrap; } }

.jb-blog {
  margin-top: 80px; }
  .jb-blog-box {
    margin: 0 0 40px 0; }
    @media all and (min-width: 992px) {
      .jb-blog-box {
        max-width: 840px; } }
    @media all and (max-width: 992px) {
      .jb-blog-box {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between; } }
  .jb-blog-article {
    position: relative;
    margin-bottom: 25px;
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    @media all and (min-width: 768px) and (max-width: 991px) {
      .jb-blog-article {
        display: block; } }
    @media all and (max-width: 992px) {
      .jb-blog-article {
        width: calc(50% - 15px);
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }
    @media all and (max-width: 768px) {
      .jb-blog-article {
        width: 100%;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }
  .jb-blog-imagebox {
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 228px;
    margin-bottom: 15px; }
    @media all and (min-width: 992px) {
      .jb-blog-imagebox {
        max-width: 336px; } }
  .jb-blog-imagelink {
    width: 100%;
    max-width: 100%;
    -ms-flex-negative: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0; }
    @media all and (min-width: 992px) {
      .jb-blog-imagelink {
        max-width: 336px; } }
  .jb-blog-image {
    max-width: 100%; }
    @media all and (min-width: 992px) {
      .jb-blog-image {
        max-width: 360px; } }
  .jb-blog-content {
    padding: 0 15px; }
  .jb-blog-headline {
    font-weight: 300;
    margin-bottom: 8px;
    font-size: 28px;
    color: #313b45;
    line-height: 34px; }
  .jb-blog-text p {
    margin: 0;
    line-height: 1.5;
    color: #000000; }
  .jb-blog-btn {
    font-weight: 400;
    text-transform: uppercase;
    color: #313b45;
    margin-top: 20px; }
  .jb-blog-link {
    color: #ffffff; }
    .jb-blog-link:hover, .jb-blog-link:active, .jb-blog-link:focus {
      color: #ffffff; }
  .jb-blog-date {
    margin-bottom: 15px; }

.jb-errorpage-content {
  margin-top: 40px; }
  @media all and (min-width: 768px) {
    .jb-errorpage-content {
      margin-top: 80px; } }

.jb-errorpage-headline {
  font-size: 16px;
  font-weight: 300; }

.jb-errorpage-nextsteps {
  font-size: 16px; }

input.jb-input-label,
input.jb-input-label + label {
  display: block; }

input:focus {
  outline: 0; }

input.jb-input-label {
  margin: 0;
  background: transparent;
  transition: padding-top 0.2s ease, margin-top 0.2s ease;
  overflow-x: hidden;
  /* Hack to make "rows" attribute apply in Firefox. */ }

input.jb-input-label + label {
  display: block;
  position: relative;
  white-space: nowrap;
  padding: 0;
  margin: 0;
  width: 10%;
  transition: width 0.4s ease;
  height: 0;
  overflow: inherit; }

input.jb-input-label:focus + label {
  width: 80%; }

input.jb-input-label:focus + label > span,
input.jb-input-label.jb-input-valid + label > span {
  top: -45px;
  font-size: 14px;
  font-weight: 300;
  z-index: 0; }

input.jb-input-label.jb-input-valid + label > span {
  top: -80px;
  left: 0;
  color: #313b45; }

input.jb-input-label {
  box-shadow: none; }

input.jb-input-label + label > span {
  margin: 0;
  position: absolute;
  color: #8F8F8F;
  top: -35px;
  left: 20px;
  z-index: -1;
  transition: top 0.2s ease, color 0.2s ease; }

input.jb-input-label.jb-input-valid ~ input[type="submit"] {
  -webkit-animation: appear 1s forwards;
  animation: appear 1s forwards; }

input.jb-input-label ~ input[type="submit"] {
  display: none; }

.ccCvvNumber span {
  width: 90px;
  overflow: hidden; }

@-webkit-keyframes appear {
  100% {
    opacity: 1; } }

@keyframes appear {
  100% {
    opacity: 1; } }

/* Labels outside the Box */
.input-location .input-prepend {
  margin-top: 28px; }

input.jb-input-label + label > span {
  top: -39px; }

input.jb-input-outboxlabel:focus + label > span,
input.jb-input-outboxlabel.jb-input-valid + label > span {
  top: -80px;
  left: 0; }

input.jb-input-outboxlabel + label > span {
  transition: top 0.2s ease, left 0.2s ease, color 0.2s ease; }

/* Labels outside the Box with Icons */
.jb-search .jb-input-outboxlabelicon {
  margin-top: 0; }
  @media (min-width: 768px) {
    .jb-search .jb-input-outboxlabelicon {
      margin-top: 30px; } }

.jb-search .jb-input-outboxlabelicon.jb-input-valid {
  margin-top: 50px; }
  @media (min-width: 768px) {
    .jb-search .jb-input-outboxlabelicon.jb-input-valid {
      margin-top: 30px; } }

.jb-search .jb-input-outboxlabelicon:focus {
  margin-top: 50px; }
  @media (min-width: 768px) {
    .jb-search .jb-input-outboxlabelicon:focus {
      margin-top: 30px; } }

input.jb-input-outboxlabelicon + label > span {
  top: -34px;
  left: 45px; }

input.jb-input-outboxlabelicon:focus + label > span {
  top: -80px;
  left: 0;
  color: #000000; }

input.jb-input-outboxlabelicon + label > span {
  transition: top 0.2s ease, left 0.2s ease, color 0.2s ease; }

/* Labels outside the Datepicker with Icons */
.jb-search-return-date,
.jb-search-departure-date,
.jb-search-date-range {
  margin-top: 0; }
  @media (min-width: 768px) {
    .jb-search-return-date,
    .jb-search-departure-date,
    .jb-search-date-range {
      margin-top: 30px; } }

.jb-search-date-range .DateInput__input {
  z-index: 10; }

.jb-search-date-range .jb-datepicker-label {
  width: calc(50% - 5px);
  float: left;
  position: relative;
  overflow: visible; }
  .jb-search-date-range .jb-datepicker-label span {
    top: -34px;
    left: 45px; }
  .jb-search-date-range .jb-datepicker-label.jb-input-valid span {
    top: -80px; }
  .jb-search-date-range .jb-datepicker-label.jb-range-departure {
    margin-right: 10px; }

.jb-datepicker-label span {
  position: absolute;
  top: 16px;
  left: 40px;
  color: #8F8F8F;
  transition: top 0.2s ease, left 0.2s ease, color 0.2s ease; }

.jb-datepicker-label.jb-input-valid span {
  top: -30px;
  left: 0;
  color: #313b45; }

.jb-datepicker-label.jb-input-focus span {
  top: -30px;
  left: 0;
  color: #313b45; }

.jb-search .jb-search-input.jb-input-valid,
.jb-search .jb-search-input.jb-input-focus {
  margin-top: 30px; }
  @media all and (min-width: 768px) {
    .jb-search .jb-search-input.jb-input-valid,
    .jb-search .jb-search-input.jb-input-focus {
      margin-top: 0; } }

.jb-airlinedeal-teaser {
  width: 120px;
  height: 60px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end; }

.jb-airlinebest {
  width: 220px;
  min-height: 100px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

.jb-deal-header-right {
  width: 280px;
  height: 140px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

.svgicon--airline__deals, .svgicon--airlinebest, .svgicon--airlinedetails {
  width: 100%; }

.svgicon--airlinedeal__teaser {
  width: 90%; }

.svgicon--airlinedeal__offer {
  width: 80%; }

.svgicon--2L {
  width: 58%; }

.svgicon--4U {
  width: 85.33%; }

.svgicon--9W {
  width: 85.33%; }

.svgicon--A5 {
  width: 30%; }

.svgicon--AA {
  width: 100%; }

.svgicon--AC {
  width: 95%; }

.svgicon--AF {
  width: 80%; }

.svgicon--AI {
  width: 72%; }

.svgicon--AM {
  width: 87.33%; }

.svgicon--AR {
  width: 55.33%; }

.svgicon--AV {
  width: 54%; }

.svgicon--AY {
  width: 65.33%; }

.svgicon--AZ {
  width: 50%; }

.svgicon--B0 {
  width: 82%; }

.svgicon--B6 {
  width: 34%; }

.svgicon--BA {
  width: 94.66%; }

.svgicon--BD {
  width: 94.66%; }

.svgicon--BR {
  width: 83.33%; }

.svgicon--CA {
  width: 60%; }

.svgicon--CI {
  width: 94%; }

.svgicon--CL {
  width: 78%; }

.svgicon--CM {
  width: 92%; }

.svgicon--CX {
  width: 83.33%; }

.svgicon--CZ {
  width: 76.93%; }

.svgicon--DE {
  width: 50%; }

.svgicon--DL {
  width: 58%; }

.svgicon--DY {
  width: 66%; }

.svgicon--EI {
  width: 70%; }

.svgicon--EK {
  width: 50%; }

.svgicon--ET {
  width: 65.33%; }

.svgicon--EW {
  width: 69.33%; }

.svgicon--EY {
  width: 50%; }

.svgicon--FI {
  width: 83.33%; }

.svgicon--GA {
  width: 86.66%; }

.svgicon--GF {
  width: 56.66%; }

.svgicon--HU {
  width: 59.33%; }

.svgicon--IB {
  width: 60.66%; }

.svgicon--JJ {
  width: 59.33%; }

.svgicon--JL {
  width: 100%; }

.svgicon--JN {
  width: 28.66%; }

.svgicon--KE {
  width: 60%; }

.svgicon--KL {
  width: 62%; }

.svgicon--KU {
  width: 69.33%; }

.svgicon--LA {
  width: 59.33%; }

.svgicon--LH {
  width: 78%; }

.svgicon--LO {
  width: 33.33%; }

.svgicon--LX {
  width: 53.33%; }

.svgicon--LY {
  width: 65.33%; }

.svgicon--MF {
  width: 70%; }

.svgicon--MH {
  width: 64.33%; }

.svgicon--MS {
  width: 50%; }

.svgicon--MU {
  width: 62%; }

.svgicon--NH {
  width: 36.33%; }

.svgicon--NZ {
  width: 100%; }

.svgicon--OK {
  width: 58.66%; }

.svgicon--OS {
  width: 71.33%; }

.svgicon--OZ {
  width: 92%; }

.svgicon--PS {
  width: 42.66%; }

.svgicon--QF {
  width: 60.66%; }

.svgicon--QR {
  width: 50%; }

.svgicon--RJ {
  width: 78%; }

.svgicon--RO {
  width: 57.63%; }

.svgicon--S7 {
  width: 51%; }

.svgicon--SA {
  width: 76.66%; }

.svgicon--SK {
  width: 100%; }

.svgicon--SN {
  width: 91.66%; }

.svgicon--SQ {
  width: 100%; }

.svgicon--SU {
  width: 70%; }

.svgicon--SV {
  width: 50%; }

.svgicon--SW {
  width: 63.33%; }

.svgicon--TG {
  width: 48%; }

.svgicon--TK {
  width: 54.66%; }

.svgicon--TP {
  width: 90.66%; }

.svgicon--TR {
  width: 30%; }

.svgicon--TS {
  width: 56.66%; }

.svgicon--UA {
  width: 66.66%; }

.svgicon--UL {
  width: 62%; }

.svgicon--UX {
  width: 67.33%; }

.svgicon--VA {
  width: 66%; }

.svgicon--VN {
  width: 94%; }

.svgicon--VS {
  width: 64.66%; }

.svgicon--WY {
  width: 72.66%; }

.svgicon-deal--2L {
  width: 58%; }

.svgicon-deal--4U {
  width: 100%; }

.svgicon-deal--9W {
  width: 100%; }

.svgicon-deal--A5 {
  width: 30%; }

.svgicon-deal--AA {
  width: 100%; }

.svgicon-deal--AC {
  width: 100%; }

.svgicon-deal--AF {
  width: 100%; }

.svgicon-deal--AI {
  width: 72%; }

.svgicon-deal--AM {
  width: 87.33%; }

.svgicon-deal--AR {
  width: 55.33%; }

.svgicon-deal--AV {
  width: 54%; }

.svgicon-deal--AY {
  width: 95%; }

.svgicon-deal--AZ {
  width: 88%; }

.svgicon-deal--B0 {
  width: 88%; }

.svgicon-deal--B6 {
  width: 34%; }

.svgicon-deal--BA {
  width: 100%; }

.svgicon-deal--BD {
  width: 94.66%; }

.svgicon-deal--BR {
  width: 83.33%; }

.svgicon-deal--CA {
  width: 80%; }

.svgicon-deal--CI {
  width: 100%; }

.svgicon-deal--CL {
  width: 78%; }

.svgicon-deal--CM {
  width: 92%; }

.svgicon-deal--CX {
  width: 100%; }

.svgicon-deal--CZ {
  width: 100%; }

.svgicon-deal--DE {
  width: 100%; }

.svgicon-deal--DL {
  width: 100%; }

.svgicon-deal--DY {
  width: 83%; }

.svgicon-deal--EI {
  width: 97%; }

.svgicon-deal--EK {
  width: 90%; }

.svgicon-deal--ET {
  width: 88%; }

.svgicon-deal--EW {
  width: 97%; }

.svgicon-deal--EY {
  width: 50%; }

.svgicon-deal--FI {
  width: 97%; }

.svgicon-deal--GA {
  width: 100%; }

.svgicon-deal--GF {
  width: 100%; }

.svgicon-deal--HU {
  width: 59.33%; }

.svgicon-deal--IB {
  width: 100%; }

.svgicon-deal--JJ {
  width: 90%; }

.svgicon-deal--JL {
  width: 100%; }

.svgicon-deal--JN {
  width: 28.66%; }

.svgicon-deal--KE {
  width: 100%; }

.svgicon-deal--KL {
  width: 100%; }

.svgicon-deal--KU {
  width: 69.33%; }

.svgicon-deal--LA {
  width: 59.33%; }

.svgicon-deal--LH {
  width: 100%; }

.svgicon-deal--LO {
  width: 53%; }

.svgicon-deal--LX {
  width: 90%; }

.svgicon-deal--LY {
  width: 65.33%; }

.svgicon-deal--MF {
  width: 70%; }

.svgicon-deal--MH {
  width: 64.33%; }

.svgicon-deal--MS {
  width: 50%; }

.svgicon-deal--MU {
  width: 90%; }

.svgicon-deal--NH {
  width: 75%; }

.svgicon-deal--NZ {
  width: 100%; }

.svgicon-deal--OK {
  width: 58.66%; }

.svgicon-deal--OS {
  width: 97%; }

.svgicon-deal--OZ {
  width: 94%; }

.svgicon-deal--PS {
  width: 42.66%; }

.svgicon-deal--QF {
  width: 60.66%; }

.svgicon-deal--QR {
  width: 100%; }

.svgicon-deal--RJ {
  width: 78%; }

.svgicon-deal--RO {
  width: 57.63%; }

.svgicon-deal--S7 {
  width: 51%; }

.svgicon-deal--SA {
  width: 95%; }

.svgicon-deal--SK {
  width: 100%; }

.svgicon-deal--SN {
  width: 98%; }

.svgicon-deal--SQ {
  width: 100%; }

.svgicon-deal--SU {
  width: 90%; }

.svgicon-deal--SV {
  width: 50%; }

.svgicon-deal--SW {
  width: 63.33%; }

.svgicon-deal--TG {
  width: 90%; }

.svgicon-deal--TK {
  width: 90%; }

.svgicon-deal--TP {
  width: 100%; }

.svgicon-deal--TR {
  width: 30%; }

.svgicon-deal--TS {
  width: 56.66%; }

.svgicon-deal--UA {
  width: 100%; }

.svgicon-deal--UL {
  width: 90%; }

.svgicon-deal--UX {
  width: 67.33%; }

.svgicon-deal--VA {
  width: 66%; }

.svgicon-deal--VN {
  width: 99%; }

.svgicon-deal--VS {
  width: 100%; }

.svgicon-deal--WY {
  width: 90%; }

.pricechart {
  position: relative; }
  @media all and (min-width: 768px) {
    .pricechart {
      border-top: 2px solid #d4dbe3;
      padding-top: 27px; } }
  .pricechart--control__prev {
    position: absolute;
    right: 80px;
    bottom: 8px;
    display: none; }
    @media all and (min-width: 768px) {
      .pricechart--control__prev {
        display: block; } }
    .pricechart--control__prev > svg {
      height: 30px;
      width: 30px;
      fill: #000;
      vertical-align: top;
      background-color: #f4f6f8;
      border: 1px solid #d4dbe3;
      cursor: pointer; }
    .pricechart--control__prev.inactive {
      opacity: 0.4; }
  .pricechart--control__next {
    position: absolute;
    right: 40px;
    bottom: 8px;
    display: none; }
    @media all and (min-width: 768px) {
      .pricechart--control__next {
        display: block; } }
    .pricechart--control__next > svg {
      height: 30px;
      width: 30px;
      fill: #000;
      vertical-align: top;
      background-color: #f4f6f8;
      border: 1px solid #d4dbe3;
      cursor: pointer;
      -webkit-transform: rotate(180deg);
      transform: rotate(180deg); }
    .pricechart--control__next.inactive {
      opacity: 0.4; }
  .pricechart--scrollbox {
    margin: 0;
    overflow: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; }
    @media all and (min-width: 768px) {
      .pricechart--scrollbox {
        overflow-x: hidden;
        margin: 0 180px 0 0; } }
    .pricechart--scrollbox::-webkit-scrollbar {
      display: none; }
  .pricechart--itembox {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    transition: margin 0.3s; }
  .pricechart--item {
    padding-right: 10px; }
  .pricechart--year {
    font-weight: 500;
    font-size: 18px;
    color: #000;
    height: 26px; }
  .pricechart--month {
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 10px; }
  .pricechart--barbox {
    height: 103px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    text-align: center;
    width: 120px; }
  .pricechart--bar {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #fff;
    border-top: 2px solid #d4dbe3;
    border-left: 2px solid #d4dbe3;
    border-right: 2px solid #d4dbe3;
    border-bottom: 4px solid #d4dbe3;
    padding-bottom: 5px;
    width: 120px;
    cursor: pointer; }
  .pricechart--badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    -webkit-transform: rotate(360deg);
    border-style: solid;
    border-width: 0 21px 21px 0;
    border-color: transparent #1b9d2c transparent transparent; }
  .pricechart--pricebox {
    width: 100%;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end; }
  .pricechart--from {
    text-align: center;
    width: 100%;
    font-size: 14px; }
  .pricechart--price {
    font-weight: 500;
    text-align: center;
    width: 100%;
    font-size: 14px;
    color: #000; }
  .pricechart--nooffer {
    font-size: 11px;
    padding-bottom: 10px;
    width: 100%; }

.jb-affiliate .jb-deal-search-form-wrapper {
  width: 100%; }
  @media all and (min-width: 992px) {
    .jb-affiliate .jb-deal-search-form-wrapper {
      width: calc(100% - 110px - 30px); } }

.jb-affiliate .jb-deal-search-departure,
.jb-affiliate .jb-deal-search-arrival,
.jb-affiliate .jb-deal-search-passangers {
  width: 100%; }
  @media all and (min-width: 768px) {
    .jb-affiliate .jb-deal-search-departure,
    .jb-affiliate .jb-deal-search-arrival,
    .jb-affiliate .jb-deal-search-passangers {
      width: 33%; } }

.jb-affiliate .jb-deal-search {
  padding-top: 20px; }

.jb-affiliate .jb-deal-search-hl {
  display: none; }

.jb-affiliate .jb-deal-search-select .select2-selection__rendered {
  padding-left: 17px !important; }

@media all and (min-width: 768px) and (max-width: 991px) {
  .jb-affiliate .jb-deal-search-departure,
  .jb-affiliate .jb-deal-search-arrival {
    padding: 0; }
  .jb-affiliate .jb-deal-search-departure,
  .jb-affiliate .jb-deal-search-arrival {
    width: calc(33% - 7.5px); }
  .jb-affiliate .jb-deal-search-arrival .jb-select-border + .select2-container,
  .jb-affiliate .jb-deal-search-arrival .jb-deal-search-select {
    border-left: none; }
  .jb-affiliate .jb-search-dates-range {
    width: 33%; }
  .jb-affiliate .jb-deal-search-airportcolumn {
    width: 67%; }
  .jb-affiliate .jb-deal-search-select .select2-selection__rendered {
    padding-left: 13px !important; }
  .jb-affiliate .jb-amount-passenger,
  .jb-affiliate input.jb-deal-search-select {
    padding-left: 36px; }
  .jb-affiliate .DateInput__display-text {
    padding: 0 0 0 36px; }
  .jb-affiliate .jb-deal-search-passangers {
    padding-right: 0;
    width: 34%; }
  .jb-affiliate .jb-deal-search-button {
    width: 100%; } }

.reisetopia .jb-header-reisetopia-logo {
  height: 100%;
  width: 120px;
  margin-right: 20px;
  margin-top: -24px; }
  @media all and (min-width: 768px) {
    .reisetopia .jb-header-reisetopia-logo {
      width: 200px;
      margin-right: 40px; } }

.reisetopia .jb-header-logo {
  width: 80px; }
  @media all and (min-width: 768px) {
    .reisetopia .jb-header-logo {
      width: inherit; } }

.reisetopia .jb-btn {
  background-color: #da3d2c; }

.reisetopia .jb-btn.jb-btn-disabled {
  background-color: #acb7c1; }

.reisetopia .jb-nav-top-trust {
  margin-right: 0 !important; }

.reisetopia .jb-deal-header-item {
  display: none; }

.reisetopia .jb-deal-header-bar::before {
  background-color: #da3d2c; }

.reisetopia .jb-deal-header {
  border-top: none; }

.reisetopia .jb-section-standard-standalone {
  border-top: 1px solid #d4dbe3; }

.reisetopia .jb-section-standard:not(:last-child) {
  margin-bottom: 20px; }

.jb-dealteaser-item {
  margin-bottom: 40px; }

.jb-dealteaser-box {
  min-height: 275px;
  margin-top: 0;
  border: 1px solid #d4dbe3;
  padding: 25px;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }
  @media all and (min-width: 768px) {
    .jb-dealteaser-box {
      margin-top: 26px; } }

.jb-dealteaser-headline {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
  margin-top: 10px; }

.jb-dealteaser-text {
  font-size: 16px; }

.jb-modal-greenfield-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px; }

.jb-modal-greenfield-col {
  width: 35%; }
  .jb-modal-greenfield-col:last-child {
    width: 60%; }
  .jb-modal-greenfield-col input[type="text"],
  .jb-modal-greenfield-col input[type="number"] {
    height: 40px;
    padding: 10px;
    width: 100%; }
  .jb-modal-greenfield-col input[type="checkbox"] {
    margin-right: 10px; }
  .jb-modal-greenfield-col .DateRangePicker {
    width: 100%; }
    .jb-modal-greenfield-col .DateRangePicker .DateInput {
      width: 50%; }
  .jb-modal-greenfield-col .jb-js-tooltip-auto {
    background-color: lightgray;
    display: inline-block;
    width: auto;
    color: #fff;
    padding: 0 5px;
    border-radius: 50%;
    font-size: 11px;
    margin-left: 10px;
    cursor: pointer; }

.jb-modal-greenfield-output-link, .jb-modal-greenfield-output-js-props {
  width: 100%; }

.jb-modal-greenfield-open-btn, .jb-modal-greenfield-deal-id, .jb-modal-greenfield-deal-xzu, .jb-modal-greenfield-deal-header, .jb-modal-greenfield-deal-url, .jb-modal-greenfield-service-class, .jb-modal-greenfield-airline-logo, .jb-modal-greenfield-airlines {
  display: none; }

.jb-modal-greenfield-tooltip {
  display: none; }

.tooltipster-sidetip .tooltipster-content {
  color: #333333; }

.jb-site-home .jb-link {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  cursor: pointer;
  background-color: #ff4700;
  padding: 17px 20px;
  border-radius: 4px;
  width: 27%;
  transition: background-color 0.15s linear; }
  .jb-site-home .jb-link:hover, .jb-site-home .jb-link:focus {
    text-decoration: none;
    color: #ffffff;
    background-color: #cc3900; }
    .jb-site-home .jb-link:hover:after, .jb-site-home .jb-link:focus:after {
      display: none;
      width: 0; }
  .jb-site-home .jb-link:before, .jb-site-home .jb-link:after {
    display: none; }
