.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.animated.bounceIn {
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
}

.animated.bounceOut {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.animated.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

.animated.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

.animated.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
}

.animated.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}

.animated.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

.animated.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: perspective(1px) scale3d(0.3, 0.3, 0.3);
            transform: perspective(1px) scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: perspective(1px) scale3d(1.1, 1.1, 1.1);
            transform: perspective(1px) scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: perspective(1px) scale3d(0.9, 0.9, 0.9);
            transform: perspective(1px) scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: perspective(1px) scale3d(1.03, 1.03, 1.03);
            transform: perspective(1px) scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: perspective(1px) scale3d(0.97, 0.97, 0.97);
            transform: perspective(1px) scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: perspective(1px) scale3d(1, 1, 1);
            transform: perspective(1px) scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: perspective(1px) scale3d(0.3, 0.3, 0.3);
            transform: perspective(1px) scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: perspective(1px) scale3d(1.1, 1.1, 1.1);
            transform: perspective(1px) scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: perspective(1px) scale3d(0.9, 0.9, 0.9);
            transform: perspective(1px) scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: perspective(1px) scale3d(1.03, 1.03, 1.03);
            transform: perspective(1px) scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: perspective(1px) scale3d(0.97, 0.97, 0.97);
            transform: perspective(1px) scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: perspective(1px) scale3d(1, 1, 1);
            transform: perspective(1px) scale3d(1, 1, 1);
  }
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
            transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
            transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
            transform: none;
  }
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
}

.rrt-confirm-holder {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999;
}

.rrt-confirm-holder .shadow {
  width: 100%;
  height: 100%;
  background-color: rgba(50, 58, 68, 0.8);
}

.rrt-confirm-holder .rrt-confirm {
  width: 320px;
  background-color: #fff;
  position: absolute;
  z-index: 9;
  top: 20%;
  left: 50%;
  margin-left: -160px;
  -webkit-box-shadow: 3px 3px 20px #333;
          box-shadow: 3px 3px 20px #333;
  border-radius: 4px;
  overflow: hidden;
}

.rrt-confirm-holder .rrt-confirm .rrt-message {
  width: 100%;
  padding: 5%;
  min-height: 50px;
  font-size: 1em;
  background-color: #fff;
  text-align: center;
  font-family: "open-sanscondensed-light", sans-serif;
  clear: both;
}

.rrt-confirm-holder .rrt-confirm .rrt-buttons-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.rrt-confirm-holder .rrt-confirm .rrt-buttons-holder .rrt-button {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 50px;
  text-transform: capitalize;
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  float: left;
  border-top: 1px solid #f0f0f0;
  font-size: 14px;
  overflow: hidden;
  cursor: pointer;
}

.rrt-confirm-holder .rrt-confirm .rrt-buttons-holder .rrt-button:hover {
  background-color: #f5f5f5;
}

.rrt-confirm-holder .rrt-confirm .rrt-buttons-holder .rrt-button.rrt-ok-btn:active {
  background-color: #60bb71;
  color: #fff;
}

.rrt-confirm-holder .rrt-confirm .rrt-buttons-holder .rrt-button.rrt-cancel-btn:active {
  background-color: #db6a64;
  color: #fff;
}

.rrt-confirm-holder .rrt-confirm .rrt-buttons-holder .rrt-button:focus {
  outline: none;
}

body.toastr-confirm-active {
  overflow: hidden;
}

.redux-toastr *,
.redux-toastr *:before,
.redux-toastr *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.redux-toastr .top-left,
.redux-toastr .top-right,
.redux-toastr .top-center,
.redux-toastr .bottom-left,
.redux-toastr .bottom-right,
.redux-toastr .bottom-center {
  width: 350px;
  position: fixed;
  z-index: 99999999;
  padding: 0 10px;
}

.redux-toastr .top-left,
.redux-toastr .top-right,
.redux-toastr .top-center {
  top: 0;
}

.redux-toastr .top-right,
.redux-toastr .bottom-right {
  right: 0;
}

.redux-toastr .bottom-left,
.redux-toastr .bottom-right,
.redux-toastr .bottom-center {
  bottom: 0;
}

.redux-toastr .top-left,
.redux-toastr .bottom-left {
  left: 0;
}

.redux-toastr .top-center,
.redux-toastr .bottom-center {
  left: 50%;
  margin-left: -175px;
}

@media (max-width: 320px) {
  .redux-toastr .top-left,
  .redux-toastr .top-right,
  .redux-toastr .top-center,
  .redux-toastr .bottom-left,
  .redux-toastr .bottom-right,
  .redux-toastr .bottom-center {
    width: 320px;
  }

  .redux-toastr .top-center,
  .redux-toastr .bottom-center {
    margin-left: -160px;
  }
}

.redux-toastr .toastr {
  background-color: #fcfcfc;
  width: 100%;
  min-height: 70px;
  overflow: hidden;
  margin: 10px 0;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  color: #333;
  opacity: 0.94;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
          box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}

.redux-toastr .toastr:hover:not(.rrt-message) {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
  opacity: 1;
}

.redux-toastr .toastr .toastr-status {
  width: 100%;
  height: 5px;
}

.redux-toastr .toastr .toastr-status.success {
  background-color: #60bb71;
}

.redux-toastr .toastr .toastr-status.warning {
  background-color: #f7a336;
}

.redux-toastr .toastr .toastr-status.info {
  background-color: #58abc3;
}

.redux-toastr .toastr .toastr-status.error {
  background-color: #db6a64;
}

.redux-toastr .toastr .rrt-left-container,
.redux-toastr .toastr .rrt-right-container {
  float: left;
  text-align: center;
  overflow: hidden;
}

.redux-toastr .toastr .rrt-left-container {
  width: 80px;
  top: 0;
  left: 0;
  position: absolute;
  bottom: 0;
}

.redux-toastr .toastr .rrt-left-container .rrt-holder {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 50%;
  margin-top: -35px;
  left: 5px;
  line-height: 60px;
}

.redux-toastr .toastr .rrt-left-container .toastr-icon {
  fill: #fff;
  vertical-align: middle;
  margin-top: 5px;
}

.redux-toastr .toastr .rrt-middle-container {
  width: 65%;
  margin-left: 80px;
  position: relative;
  float: left;
  font-family: Arial, Helvetica, sans-serif, sans-serif;
  font-size: 1em;
  text-align: left;
  padding: 10px 5px;
}

.redux-toastr .toastr .rrt-middle-container .rrt-title {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 5px;
}

.redux-toastr .toastr .rrt-right-container {
  width: 10%;
}

.redux-toastr .toastr .close-toastr {
  width: 10%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  font-size: 22px;
  border: none;
  outline: none;
  opacity: 0.5;
  cursor: pointer;
  font-family: "Helvetica Neue", Helvetica, Arial sans-serif;
  color: #000;
}

.redux-toastr .toastr .close-toastr:hover {
  opacity: 1;
}

.redux-toastr .toastr .close-toastr:focus {
  outline: none;
}

.redux-toastr .toastr .close-toastr span {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.redux-toastr .toastr.rrt-info,
.redux-toastr .toastr.rrt-success,
.redux-toastr .toastr.rrt-warning,
.redux-toastr .toastr.rrt-error {
  color: #fff;
}

.redux-toastr .toastr.rrt-info {
  background-color: #58abc3;
}

.redux-toastr .toastr.rrt-info .rrt-progressbar {
  background-color: #378298;
}

.redux-toastr .toastr.rrt-success {
  background-color: #60bb71;
}

.redux-toastr .toastr.rrt-success .rrt-progressbar {
  background-color: #3e914d;
}

.redux-toastr .toastr.rrt-warning {
  background-color: #f7a336;
}

.redux-toastr .toastr.rrt-warning .rrt-progressbar {
  background-color: #d87e09;
}

.redux-toastr .toastr.rrt-error {
  background-color: #db6a64;
}

.redux-toastr .toastr.rrt-error .rrt-progressbar {
  background-color: #c5352e;
}

.redux-toastr .toastr.rrt-light .rrt-progressbar {
  background-color: #ccc;
}

.redux-toastr .toastr.rrt-light .toastr-icon {
  fill: #333 !important;
}

.redux-toastr .toastr.rrt-message {
  opacity: 1;
  border: 1px solid #dbdbdb;
}

.redux-toastr .toastr.rrt-message .rrt-title {
  width: 90%;
  height: 50px;
  text-align: center;
  overflow: hidden;
  font-size: 1.2em;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 50px;
  padding: 0 20px;
}

.redux-toastr .toastr.rrt-message .rrt-text {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  overflow-y: auto;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  background-color: #fff;
  padding: 15px;
  font-size: 1.1em;
  margin-bottom: 20px;
}

.redux-toastr .toastr.rrt-message .rrt-text img {
  display: block;
  margin: 10px auto;
  max-width: 100%;
}

.redux-toastr .toastr.rrt-message .close-toastr {
  height: 50px;
}

.redux-toastr .toastr .rrt-progress-container {
  height: 5px;
  margin: 0 -20px -20px -60px;
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.redux-toastr .toastr .rrt-progress-container .rrt-progressbar {
  border-radius: 0 0 0 4px;
  height: 100%;
}

.redux-toastr .toastr-attention {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}




@charset "UTF-8";

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

/*!
 * Bootstrap v3.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*! 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;
  -webkit-text-decoration: underline dotted;
          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 {
  -webkit-box-sizing: content-box;
          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] {
  -webkit-box-sizing: border-box;
          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;
  -webkit-box-sizing: content-box;
          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;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

@media print {
  *,
  *:before,
  *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  .navbar {
    display: none;
  }

  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }

  .label {
    border: 1px solid #000;
  }

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

  .table td,
  .table th {
    background-color: #fff !important;
  }

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}

@font-face {
  font-family: "Glyphicons Halflings";
  src: url(/public/fonts/glyphicons-halflings-regular.eot);
  src: url(/public/fonts/glyphicons-halflings-regular.eot) format("embedded-opentype"), url(/public/fonts/glyphicons-halflings-regular.woff2) format("woff2"), url(/public/fonts/glyphicons-halflings-regular.woff) format("woff"), url(/public/fonts/e18bbf611f2a2e43afc071aa2f4e1512.ttf) format("truetype"), url(/public/fonts/89889688147bd7575d6327160d64e760.svg) format("svg");
}

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.glyphicon-asterisk:before {
  content: "*";
}

.glyphicon-plus:before {
  content: "+";
}

.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "€";
}

.glyphicon-minus:before {
  content: "−";
}

.glyphicon-cloud:before {
  content: "☁";
}

.glyphicon-envelope:before {
  content: "✉";
}

.glyphicon-pencil:before {
  content: "✏";
}

.glyphicon-glass:before {
  content: "";
}

.glyphicon-music:before {
  content: "";
}

.glyphicon-search:before {
  content: "";
}

.glyphicon-heart:before {
  content: "";
}

.glyphicon-star:before {
  content: "";
}

.glyphicon-star-empty:before {
  content: "";
}

.glyphicon-user:before {
  content: "";
}

.glyphicon-film:before {
  content: "";
}

.glyphicon-th-large:before {
  content: "";
}

.glyphicon-th:before {
  content: "";
}

.glyphicon-th-list:before {
  content: "";
}

.glyphicon-ok:before {
  content: "";
}

.glyphicon-remove:before {
  content: "";
}

.glyphicon-zoom-in:before {
  content: "";
}

.glyphicon-zoom-out:before {
  content: "";
}

.glyphicon-off:before {
  content: "";
}

.glyphicon-signal:before {
  content: "";
}

.glyphicon-cog:before {
  content: "";
}

.glyphicon-trash:before {
  content: "";
}

.glyphicon-home:before {
  content: "";
}

.glyphicon-file:before {
  content: "";
}

.glyphicon-time:before {
  content: "";
}

.glyphicon-road:before {
  content: "";
}

.glyphicon-download-alt:before {
  content: "";
}

.glyphicon-download:before {
  content: "";
}

.glyphicon-upload:before {
  content: "";
}

.glyphicon-inbox:before {
  content: "";
}

.glyphicon-play-circle:before {
  content: "";
}

.glyphicon-repeat:before {
  content: "";
}

.glyphicon-refresh:before {
  content: "";
}

.glyphicon-list-alt:before {
  content: "";
}

.glyphicon-lock:before {
  content: "";
}

.glyphicon-flag:before {
  content: "";
}

.glyphicon-headphones:before {
  content: "";
}

.glyphicon-volume-off:before {
  content: "";
}

.glyphicon-volume-down:before {
  content: "";
}

.glyphicon-volume-up:before {
  content: "";
}

.glyphicon-qrcode:before {
  content: "";
}

.glyphicon-barcode:before {
  content: "";
}

.glyphicon-tag:before {
  content: "";
}

.glyphicon-tags:before {
  content: "";
}

.glyphicon-book:before {
  content: "";
}

.glyphicon-bookmark:before {
  content: "";
}

.glyphicon-print:before {
  content: "";
}

.glyphicon-camera:before {
  content: "";
}

.glyphicon-font:before {
  content: "";
}

.glyphicon-bold:before {
  content: "";
}

.glyphicon-italic:before {
  content: "";
}

.glyphicon-text-height:before {
  content: "";
}

.glyphicon-text-width:before {
  content: "";
}

.glyphicon-align-left:before {
  content: "";
}

.glyphicon-align-center:before {
  content: "";
}

.glyphicon-align-right:before {
  content: "";
}

.glyphicon-align-justify:before {
  content: "";
}

.glyphicon-list:before {
  content: "";
}

.glyphicon-indent-left:before {
  content: "";
}

.glyphicon-indent-right:before {
  content: "";
}

.glyphicon-facetime-video:before {
  content: "";
}

.glyphicon-picture:before {
  content: "";
}

.glyphicon-map-marker:before {
  content: "";
}

.glyphicon-adjust:before {
  content: "";
}

.glyphicon-tint:before {
  content: "";
}

.glyphicon-edit:before {
  content: "";
}

.glyphicon-share:before {
  content: "";
}

.glyphicon-check:before {
  content: "";
}

.glyphicon-move:before {
  content: "";
}

.glyphicon-step-backward:before {
  content: "";
}

.glyphicon-fast-backward:before {
  content: "";
}

.glyphicon-backward:before {
  content: "";
}

.glyphicon-play:before {
  content: "";
}

.glyphicon-pause:before {
  content: "";
}

.glyphicon-stop:before {
  content: "";
}

.glyphicon-forward:before {
  content: "";
}

.glyphicon-fast-forward:before {
  content: "";
}

.glyphicon-step-forward:before {
  content: "";
}

.glyphicon-eject:before {
  content: "";
}

.glyphicon-chevron-left:before {
  content: "";
}

.glyphicon-chevron-right:before {
  content: "";
}

.glyphicon-plus-sign:before {
  content: "";
}

.glyphicon-minus-sign:before {
  content: "";
}

.glyphicon-remove-sign:before {
  content: "";
}

.glyphicon-ok-sign:before {
  content: "";
}

.glyphicon-question-sign:before {
  content: "";
}

.glyphicon-info-sign:before {
  content: "";
}

.glyphicon-screenshot:before {
  content: "";
}

.glyphicon-remove-circle:before {
  content: "";
}

.glyphicon-ok-circle:before {
  content: "";
}

.glyphicon-ban-circle:before {
  content: "";
}

.glyphicon-arrow-left:before {
  content: "";
}

.glyphicon-arrow-right:before {
  content: "";
}

.glyphicon-arrow-up:before {
  content: "";
}

.glyphicon-arrow-down:before {
  content: "";
}

.glyphicon-share-alt:before {
  content: "";
}

.glyphicon-resize-full:before {
  content: "";
}

.glyphicon-resize-small:before {
  content: "";
}

.glyphicon-exclamation-sign:before {
  content: "";
}

.glyphicon-gift:before {
  content: "";
}

.glyphicon-leaf:before {
  content: "";
}

.glyphicon-fire:before {
  content: "";
}

.glyphicon-eye-open:before {
  content: "";
}

.glyphicon-eye-close:before {
  content: "";
}

.glyphicon-warning-sign:before {
  content: "";
}

.glyphicon-plane:before {
  content: "";
}

.glyphicon-calendar:before {
  content: "";
}

.glyphicon-random:before {
  content: "";
}

.glyphicon-comment:before {
  content: "";
}

.glyphicon-magnet:before {
  content: "";
}

.glyphicon-chevron-up:before {
  content: "";
}

.glyphicon-chevron-down:before {
  content: "";
}

.glyphicon-retweet:before {
  content: "";
}

.glyphicon-shopping-cart:before {
  content: "";
}

.glyphicon-folder-close:before {
  content: "";
}

.glyphicon-folder-open:before {
  content: "";
}

.glyphicon-resize-vertical:before {
  content: "";
}

.glyphicon-resize-horizontal:before {
  content: "";
}

.glyphicon-hdd:before {
  content: "";
}

.glyphicon-bullhorn:before {
  content: "";
}

.glyphicon-bell:before {
  content: "";
}

.glyphicon-certificate:before {
  content: "";
}

.glyphicon-thumbs-up:before {
  content: "";
}

.glyphicon-thumbs-down:before {
  content: "";
}

.glyphicon-hand-right:before {
  content: "";
}

.glyphicon-hand-left:before {
  content: "";
}

.glyphicon-hand-up:before {
  content: "";
}

.glyphicon-hand-down:before {
  content: "";
}

.glyphicon-circle-arrow-right:before {
  content: "";
}

.glyphicon-circle-arrow-left:before {
  content: "";
}

.glyphicon-circle-arrow-up:before {
  content: "";
}

.glyphicon-circle-arrow-down:before {
  content: "";
}

.glyphicon-globe:before {
  content: "";
}

.glyphicon-wrench:before {
  content: "";
}

.glyphicon-tasks:before {
  content: "";
}

.glyphicon-filter:before {
  content: "";
}

.glyphicon-briefcase:before {
  content: "";
}

.glyphicon-fullscreen:before {
  content: "";
}

.glyphicon-dashboard:before {
  content: "";
}

.glyphicon-paperclip:before {
  content: "";
}

.glyphicon-heart-empty:before {
  content: "";
}

.glyphicon-link:before {
  content: "";
}

.glyphicon-phone:before {
  content: "";
}

.glyphicon-pushpin:before {
  content: "";
}

.glyphicon-usd:before {
  content: "";
}

.glyphicon-gbp:before {
  content: "";
}

.glyphicon-sort:before {
  content: "";
}

.glyphicon-sort-by-alphabet:before {
  content: "";
}

.glyphicon-sort-by-alphabet-alt:before {
  content: "";
}

.glyphicon-sort-by-order:before {
  content: "";
}

.glyphicon-sort-by-order-alt:before {
  content: "";
}

.glyphicon-sort-by-attributes:before {
  content: "";
}

.glyphicon-sort-by-attributes-alt:before {
  content: "";
}

.glyphicon-unchecked:before {
  content: "";
}

.glyphicon-expand:before {
  content: "";
}

.glyphicon-collapse-down:before {
  content: "";
}

.glyphicon-collapse-up:before {
  content: "";
}

.glyphicon-log-in:before {
  content: "";
}

.glyphicon-flash:before {
  content: "";
}

.glyphicon-log-out:before {
  content: "";
}

.glyphicon-new-window:before {
  content: "";
}

.glyphicon-record:before {
  content: "";
}

.glyphicon-save:before {
  content: "";
}

.glyphicon-open:before {
  content: "";
}

.glyphicon-saved:before {
  content: "";
}

.glyphicon-import:before {
  content: "";
}

.glyphicon-export:before {
  content: "";
}

.glyphicon-send:before {
  content: "";
}

.glyphicon-floppy-disk:before {
  content: "";
}

.glyphicon-floppy-saved:before {
  content: "";
}

.glyphicon-floppy-remove:before {
  content: "";
}

.glyphicon-floppy-save:before {
  content: "";
}

.glyphicon-floppy-open:before {
  content: "";
}

.glyphicon-credit-card:before {
  content: "";
}

.glyphicon-transfer:before {
  content: "";
}

.glyphicon-cutlery:before {
  content: "";
}

.glyphicon-header:before {
  content: "";
}

.glyphicon-compressed:before {
  content: "";
}

.glyphicon-earphone:before {
  content: "";
}

.glyphicon-phone-alt:before {
  content: "";
}

.glyphicon-tower:before {
  content: "";
}

.glyphicon-stats:before {
  content: "";
}

.glyphicon-sd-video:before {
  content: "";
}

.glyphicon-hd-video:before {
  content: "";
}

.glyphicon-subtitles:before {
  content: "";
}

.glyphicon-sound-stereo:before {
  content: "";
}

.glyphicon-sound-dolby:before {
  content: "";
}

.glyphicon-sound-5-1:before {
  content: "";
}

.glyphicon-sound-6-1:before {
  content: "";
}

.glyphicon-sound-7-1:before {
  content: "";
}

.glyphicon-copyright-mark:before {
  content: "";
}

.glyphicon-registration-mark:before {
  content: "";
}

.glyphicon-cloud-download:before {
  content: "";
}

.glyphicon-cloud-upload:before {
  content: "";
}

.glyphicon-tree-conifer:before {
  content: "";
}

.glyphicon-tree-deciduous:before {
  content: "";
}

.glyphicon-cd:before {
  content: "";
}

.glyphicon-save-file:before {
  content: "";
}

.glyphicon-open-file:before {
  content: "";
}

.glyphicon-level-up:before {
  content: "";
}

.glyphicon-copy:before {
  content: "";
}

.glyphicon-paste:before {
  content: "";
}

.glyphicon-alert:before {
  content: "";
}

.glyphicon-equalizer:before {
  content: "";
}

.glyphicon-king:before {
  content: "";
}

.glyphicon-queen:before {
  content: "";
}

.glyphicon-pawn:before {
  content: "";
}

.glyphicon-bishop:before {
  content: "";
}

.glyphicon-knight:before {
  content: "";
}

.glyphicon-baby-formula:before {
  content: "";
}

.glyphicon-tent:before {
  content: "⛺";
}

.glyphicon-blackboard:before {
  content: "";
}

.glyphicon-bed:before {
  content: "";
}

.glyphicon-apple:before {
  content: "";
}

.glyphicon-erase:before {
  content: "";
}

.glyphicon-hourglass:before {
  content: "⌛";
}

.glyphicon-lamp:before {
  content: "";
}

.glyphicon-duplicate:before {
  content: "";
}

.glyphicon-piggy-bank:before {
  content: "";
}

.glyphicon-scissors:before {
  content: "";
}

.glyphicon-bitcoin:before {
  content: "";
}

.glyphicon-btc:before {
  content: "";
}

.glyphicon-xbt:before {
  content: "";
}

.glyphicon-yen:before {
  content: "¥";
}

.glyphicon-jpy:before {
  content: "¥";
}

.glyphicon-ruble:before {
  content: "₽";
}

.glyphicon-rub:before {
  content: "₽";
}

.glyphicon-scale:before {
  content: "";
}

.glyphicon-ice-lolly:before {
  content: "";
}

.glyphicon-ice-lolly-tasted:before {
  content: "";
}

.glyphicon-education:before {
  content: "";
}

.glyphicon-option-horizontal:before {
  content: "";
}

.glyphicon-option-vertical:before {
  content: "";
}

.glyphicon-menu-hamburger:before {
  content: "";
}

.glyphicon-modal-window:before {
  content: "";
}

.glyphicon-oil:before {
  content: "";
}

.glyphicon-grain:before {
  content: "";
}

.glyphicon-sunglasses:before {
  content: "";
}

.glyphicon-text-size:before {
  content: "";
}

.glyphicon-text-color:before {
  content: "";
}

.glyphicon-text-background:before {
  content: "";
}

.glyphicon-object-align-top:before {
  content: "";
}

.glyphicon-object-align-bottom:before {
  content: "";
}

.glyphicon-object-align-horizontal:before {
  content: "";
}

.glyphicon-object-align-left:before {
  content: "";
}

.glyphicon-object-align-vertical:before {
  content: "";
}

.glyphicon-object-align-right:before {
  content: "";
}

.glyphicon-triangle-right:before {
  content: "";
}

.glyphicon-triangle-left:before {
  content: "";
}

.glyphicon-triangle-bottom:before {
  content: "";
}

.glyphicon-triangle-top:before {
  content: "";
}

.glyphicon-console:before {
  content: "";
}

.glyphicon-superscript:before {
  content: "";
}

.glyphicon-subscript:before {
  content: "";
}

.glyphicon-menu-left:before {
  content: "";
}

.glyphicon-menu-right:before {
  content: "";
}

.glyphicon-menu-down:before {
  content: "";
}

.glyphicon-menu-up:before {
  content: "";
}

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

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

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: "jaf-facitweb", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  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.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  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;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: #0045A0;
}

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: 0.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.428571429;
}

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.428571429;
  color: #777777;
}

blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: "— ";
}

.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: " —";
}

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

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
  -webkit-box-shadow: none;
          box-shadow: none;
}

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.428571429;
  color: #333333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}

pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.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.3333333333%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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.3333333333%;
  }

  .col-sm-2 {
    width: 16.6666666667%;
  }

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

  .col-sm-4 {
    width: 33.3333333333%;
  }

  .col-sm-5 {
    width: 41.6666666667%;
  }

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

  .col-sm-7 {
    width: 58.3333333333%;
  }

  .col-sm-8 {
    width: 66.6666666667%;
  }

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

  .col-sm-10 {
    width: 83.3333333333%;
  }

  .col-sm-11 {
    width: 91.6666666667%;
  }

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

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

  .col-sm-pull-1 {
    right: 8.3333333333%;
  }

  .col-sm-pull-2 {
    right: 16.6666666667%;
  }

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

  .col-sm-pull-4 {
    right: 33.3333333333%;
  }

  .col-sm-pull-5 {
    right: 41.6666666667%;
  }

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

  .col-sm-pull-7 {
    right: 58.3333333333%;
  }

  .col-sm-pull-8 {
    right: 66.6666666667%;
  }

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

  .col-sm-pull-10 {
    right: 83.3333333333%;
  }

  .col-sm-pull-11 {
    right: 91.6666666667%;
  }

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

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

  .col-sm-push-1 {
    left: 8.3333333333%;
  }

  .col-sm-push-2 {
    left: 16.6666666667%;
  }

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

  .col-sm-push-4 {
    left: 33.3333333333%;
  }

  .col-sm-push-5 {
    left: 41.6666666667%;
  }

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

  .col-sm-push-7 {
    left: 58.3333333333%;
  }

  .col-sm-push-8 {
    left: 66.6666666667%;
  }

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

  .col-sm-push-10 {
    left: 83.3333333333%;
  }

  .col-sm-push-11 {
    left: 91.6666666667%;
  }

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

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

  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }

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

  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }

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

  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }

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

  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }

  .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.3333333333%;
  }

  .col-md-2 {
    width: 16.6666666667%;
  }

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

  .col-md-4 {
    width: 33.3333333333%;
  }

  .col-md-5 {
    width: 41.6666666667%;
  }

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

  .col-md-7 {
    width: 58.3333333333%;
  }

  .col-md-8 {
    width: 66.6666666667%;
  }

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

  .col-md-10 {
    width: 83.3333333333%;
  }

  .col-md-11 {
    width: 91.6666666667%;
  }

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

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

  .col-md-pull-1 {
    right: 8.3333333333%;
  }

  .col-md-pull-2 {
    right: 16.6666666667%;
  }

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

  .col-md-pull-4 {
    right: 33.3333333333%;
  }

  .col-md-pull-5 {
    right: 41.6666666667%;
  }

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

  .col-md-pull-7 {
    right: 58.3333333333%;
  }

  .col-md-pull-8 {
    right: 66.6666666667%;
  }

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

  .col-md-pull-10 {
    right: 83.3333333333%;
  }

  .col-md-pull-11 {
    right: 91.6666666667%;
  }

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

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

  .col-md-push-1 {
    left: 8.3333333333%;
  }

  .col-md-push-2 {
    left: 16.6666666667%;
  }

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

  .col-md-push-4 {
    left: 33.3333333333%;
  }

  .col-md-push-5 {
    left: 41.6666666667%;
  }

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

  .col-md-push-7 {
    left: 58.3333333333%;
  }

  .col-md-push-8 {
    left: 66.6666666667%;
  }

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

  .col-md-push-10 {
    left: 83.3333333333%;
  }

  .col-md-push-11 {
    left: 91.6666666667%;
  }

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

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

  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }

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

  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }

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

  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }

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

  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }

  .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.3333333333%;
  }

  .col-lg-2 {
    width: 16.6666666667%;
  }

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

  .col-lg-4 {
    width: 33.3333333333%;
  }

  .col-lg-5 {
    width: 41.6666666667%;
  }

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

  .col-lg-7 {
    width: 58.3333333333%;
  }

  .col-lg-8 {
    width: 66.6666666667%;
  }

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

  .col-lg-10 {
    width: 83.3333333333%;
  }

  .col-lg-11 {
    width: 91.6666666667%;
  }

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

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

  .col-lg-pull-1 {
    right: 8.3333333333%;
  }

  .col-lg-pull-2 {
    right: 16.6666666667%;
  }

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

  .col-lg-pull-4 {
    right: 33.3333333333%;
  }

  .col-lg-pull-5 {
    right: 41.6666666667%;
  }

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

  .col-lg-pull-7 {
    right: 58.3333333333%;
  }

  .col-lg-pull-8 {
    right: 66.6666666667%;
  }

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

  .col-lg-pull-10 {
    right: 83.3333333333%;
  }

  .col-lg-pull-11 {
    right: 91.6666666667%;
  }

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

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

  .col-lg-push-1 {
    left: 8.3333333333%;
  }

  .col-lg-push-2 {
    left: 16.6666666667%;
  }

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

  .col-lg-push-4 {
    left: 33.3333333333%;
  }

  .col-lg-push-5 {
    left: 41.6666666667%;
  }

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

  .col-lg-push-7 {
    left: 58.3333333333%;
  }

  .col-lg-push-8 {
    left: 66.6666666667%;
  }

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

  .col-lg-push-10 {
    left: 83.3333333333%;
  }

  .col-lg-push-11 {
    left: 91.6666666667%;
  }

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

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

  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }

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

  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }

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

  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }

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

  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }

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

table {
  background-color: #FEFEFE;
}

table col[class*=col-] {
  position: static;
  display: table-column;
  float: none;
}

table td[class*=col-],
table th[class*=col-] {
  position: static;
  display: table-cell;
  float: none;
}

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left;
}

th {
  text-align: left;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.428571429;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

.table > tbody + tbody {
  border-top: 2px solid #ddd;
}

.table .table {
  background-color: #fff;
}

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}

.table-bordered {
  border: 1px solid #ddd;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}

.table > thead > tr > td.active,
.table > thead > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}

.table > thead > tr > td.success,
.table > thead > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}

.table > thead > tr > td.info,
.table > thead > tr > th.info,
.table > thead > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}

.table > thead > tr > td.warning,
.table > thead > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}

.table > thead > tr > td.danger,
.table > thead > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}

.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}

@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }

  .table-responsive > .table {
    margin-bottom: 0;
  }

  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }

  .table-responsive > .table-bordered {
    border: 0;
  }

  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }

  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }

  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}

input[type=search] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input[type=radio],
input[type=checkbox] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}

input[type=radio][disabled],
input[type=radio].disabled,
fieldset[disabled] input[type=radio],
input[type=checkbox][disabled],
input[type=checkbox].disabled,
fieldset[disabled] input[type=checkbox] {
  cursor: not-allowed;
}

input[type=file] {
  display: block;
}

input[type=range] {
  display: block;
  width: 100%;
}

select[multiple],
select[size] {
  height: auto;
}

input[type=file]:focus,
input[type=radio]:focus,
input[type=checkbox]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
}

.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #999;
}

.form-control::-webkit-input-placeholder {
  color: #999;
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}

.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}

textarea.form-control {
  height: auto;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type=date].form-control,
  input[type=time].form-control,
  input[type=datetime-local].form-control,
  input[type=month].form-control {
    line-height: 34px;
  }

  input[type=date].input-sm,
  .input-group-sm > .input-group-btn > input[type=date].btn,
  .input-group-sm input[type=date],
  input[type=time].input-sm,
  .input-group-sm > .input-group-btn > input[type=time].btn,
  .input-group-sm input[type=time],
  input[type=datetime-local].input-sm,
  .input-group-sm > .input-group-btn > input[type=datetime-local].btn,
  .input-group-sm input[type=datetime-local],
  input[type=month].input-sm,
  .input-group-sm > .input-group-btn > input[type=month].btn,
  .input-group-sm input[type=month] {
    line-height: 30px;
  }

  input[type=date].input-lg,
  .input-group-lg > .input-group-btn > input[type=date].btn,
  .input-group-lg input[type=date],
  input[type=time].input-lg,
  .input-group-lg > .input-group-btn > input[type=time].btn,
  .input-group-lg input[type=time],
  input[type=datetime-local].input-lg,
  .input-group-lg > .input-group-btn > input[type=datetime-local].btn,
  .input-group-lg input[type=datetime-local],
  input[type=month].input-lg,
  .input-group-lg > .input-group-btn > input[type=month].btn,
  .input-group-lg input[type=month] {
    line-height: 46px;
  }
}

.form-group {
  margin-bottom: 15px;
}

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.radio.disabled label,
fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}

.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

.radio input[type=radio],
.radio-inline input[type=radio],
.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer;
}

.radio-inline.disabled,
fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

.form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}

.form-control-static.input-lg,
.input-group-lg > .form-control-static.form-control,
.input-group-lg > .form-control-static.input-group-addon,
.input-group-lg > .input-group-btn > .form-control-static.btn,
.form-control-static.input-sm,
.input-group-sm > .form-control-static.form-control,
.input-group-sm > .form-control-static.input-group-addon,
.input-group-sm > .input-group-btn > .form-control-static.btn {
  padding-right: 0;
  padding-left: 0;
}

.input-sm,
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

select.input-sm,
.input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 30px;
  line-height: 30px;
}

textarea.input-sm,
.input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select[multiple].input-sm,
.input-group-sm > select[multiple].form-control,
.input-group-sm > select[multiple].input-group-addon,
.input-group-sm > .input-group-btn > select[multiple].btn {
  height: auto;
}

.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}

.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}

.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.input-lg,
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

select.input-lg,
.input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 46px;
  line-height: 46px;
}

textarea.input-lg,
.input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select[multiple].input-lg,
.input-group-lg > select[multiple].form-control,
.input-group-lg > select[multiple].input-group-addon,
.input-group-lg > .input-group-btn > select[multiple].btn {
  height: auto;
}

.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}

.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}

.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

.has-feedback {
  position: relative;
}

.has-feedback .form-control {
  padding-right: 42.5px;
}

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}

.input-lg + .form-control-feedback,
.input-group-lg > .form-control + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}

.input-sm + .form-control-feedback,
.input-group-sm > .form-control + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}

.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}

.has-success .form-control-feedback {
  color: #3c763d;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}

.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}

.has-warning .form-control-feedback {
  color: #8a6d3b;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}

.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}

.has-error .form-control-feedback {
  color: #a94442;
}

.has-feedback label ~ .form-control-feedback {
  top: 25px;
}

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form-inline .form-control-static {
    display: inline-block;
  }

  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }

  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }

  .form-inline .input-group > .form-control {
    width: 100%;
  }

  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }

  .form-inline .radio input[type=radio],
  .form-inline .checkbox input[type=checkbox] {
    position: relative;
    margin-left: 0;
  }

  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}

.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}

.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}

.form-horizontal .form-group:before,
.form-horizontal .form-group:after {
  display: table;
  content: " ";
}

.form-horizontal .form-group:after {
  clear: both;
}

@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}

.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}

@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn:focus,
.btn.focus,
.btn:active:focus,
.btn:active.focus,
.btn.active:focus,
.btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn:hover,
.btn:focus,
.btn.focus {
  color: #333;
  text-decoration: none;
}

.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
  -webkit-box-shadow: none;
  box-shadow: none;
}

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}

.btn-default:focus,
.btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}

.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.btn-default:active,
.btn-default.active,
.open > .btn-default.dropdown-toggle {
  color: #333;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
}

.btn-default:active:hover,
.btn-default:active:focus,
.btn-default:active.focus,
.btn-default.active:hover,
.btn-default.active:focus,
.btn-default.active.focus,
.open > .btn-default.dropdown-toggle:hover,
.open > .btn-default.dropdown-toggle:focus,
.open > .btn-default.dropdown-toggle.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}

.btn-default.disabled:hover,
.btn-default.disabled:focus,
.btn-default.disabled.focus,
.btn-default[disabled]:hover,
.btn-default[disabled]:focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default:hover,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default.focus {
  background-color: #fff;
  border-color: #ccc;
}

.btn-default .badge {
  color: #fff;
  background-color: #333;
}

.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #009227;
}

.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #001305;
}

.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #005517;
}

.btn-primary:active,
.btn-primary.active,
.open > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #286090;
  background-image: none;
  border-color: #005517;
}

.btn-primary:active:hover,
.btn-primary:active:focus,
.btn-primary:active.focus,
.btn-primary.active:hover,
.btn-primary.active:focus,
.btn-primary.active.focus,
.open > .btn-primary.dropdown-toggle:hover,
.open > .btn-primary.dropdown-toggle:focus,
.open > .btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #001305;
}

.btn-primary.disabled:hover,
.btn-primary.disabled:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled]:hover,
.btn-primary[disabled]:focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary:hover,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #009227;
}

.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}

.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}

.btn-success:active,
.btn-success.active,
.open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  background-image: none;
  border-color: #398439;
}

.btn-success:active:hover,
.btn-success:active:focus,
.btn-success:active.focus,
.btn-success.active:hover,
.btn-success.active:focus,
.btn-success.active.focus,
.open > .btn-success.dropdown-toggle:hover,
.open > .btn-success.dropdown-toggle:focus,
.open > .btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}

.btn-success.disabled:hover,
.btn-success.disabled:focus,
.btn-success.disabled.focus,
.btn-success[disabled]:hover,
.btn-success[disabled]:focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success:hover,
fieldset[disabled] .btn-success:focus,
fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}

.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}

.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}

.btn-info:active,
.btn-info.active,
.open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #31b0d5;
  background-image: none;
  border-color: #269abc;
}

.btn-info:active:hover,
.btn-info:active:focus,
.btn-info:active.focus,
.btn-info.active:hover,
.btn-info.active:focus,
.btn-info.active.focus,
.open > .btn-info.dropdown-toggle:hover,
.open > .btn-info.dropdown-toggle:focus,
.open > .btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}

.btn-info.disabled:hover,
.btn-info.disabled:focus,
.btn-info.disabled.focus,
.btn-info[disabled]:hover,
.btn-info[disabled]:focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info:hover,
fieldset[disabled] .btn-info:focus,
fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}

.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning:focus,
.btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}

.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}

.btn-warning:active,
.btn-warning.active,
.open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ec971f;
  background-image: none;
  border-color: #d58512;
}

.btn-warning:active:hover,
.btn-warning:active:focus,
.btn-warning:active.focus,
.btn-warning.active:hover,
.btn-warning.active:focus,
.btn-warning.active.focus,
.open > .btn-warning.dropdown-toggle:hover,
.open > .btn-warning.dropdown-toggle:focus,
.open > .btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}

.btn-warning.disabled:hover,
.btn-warning.disabled:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled]:hover,
.btn-warning[disabled]:focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning:hover,
fieldset[disabled] .btn-warning:focus,
fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}

.btn-danger:active,
.btn-danger.active,
.open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c9302c;
  background-image: none;
  border-color: #ac2925;
}

.btn-danger:active:hover,
.btn-danger:active:focus,
.btn-danger:active.focus,
.btn-danger.active:hover,
.btn-danger.active:focus,
.btn-danger.active.focus,
.open > .btn-danger.dropdown-toggle:hover,
.open > .btn-danger.dropdown-toggle:focus,
.open > .btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}

.btn-danger.disabled:hover,
.btn-danger.disabled:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled]:hover,
.btn-danger[disabled]:focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger:hover,
fieldset[disabled] .btn-danger:focus,
fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

.btn-link {
  font-weight: 400;
  color: #337ab7;
  border-radius: 0;
}

.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}

.btn-link:hover,
.btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}

.btn-link[disabled]:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:hover,
fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}

.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 5px;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.dropup,
.dropdown {
  position: relative;
}

.dropdown-toggle:focus {
  outline: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.428571429;
  color: #333333;
  white-space: nowrap;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777777;
}

.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}

.open > .dropdown-menu {
  display: block;
}

.open > a {
  outline: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.428571429;
  color: #777777;
  white-space: nowrap;
}

.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}

.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }

  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}

.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-toolbar {
  margin-left: -5px;
}

.btn-toolbar:before,
.btn-toolbar:after {
  display: table;
  content: " ";
}

.btn-toolbar:after {
  clear: both;
}

.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}

.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

.btn-group > .btn:first-child {
  margin-left: 0;
}

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group > .btn-group {
  float: left;
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}

.btn-group > .btn-lg + .dropdown-toggle,
.btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}

.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn .caret {
  margin-left: 0;
}

.btn-lg .caret,
.btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

.dropup .btn-lg .caret,
.dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}

.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after {
  display: table;
  content: " ";
}

.btn-group-vertical > .btn-group:after {
  clear: both;
}

.btn-group-vertical > .btn-group > .btn {
  float: none;
}

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}

.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}

.btn-group-justified > .btn-group .btn {
  width: 100%;
}

.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}

[data-toggle=buttons] > .btn input[type=radio],
[data-toggle=buttons] > .btn input[type=checkbox],
[data-toggle=buttons] > .btn-group > .btn input[type=radio],
[data-toggle=buttons] > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

.input-group[class*=col-] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}

.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

.input-group .form-control:focus {
  z-index: 3;
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}

.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.input-group-addon.input-sm,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}

.input-group-addon.input-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}

.input-group-addon input[type=radio],
.input-group-addon input[type=checkbox] {
  margin-top: 0;
}

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-addon:first-child {
  border-right: 0;
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-addon:last-child {
  border-left: 0;
}

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}

.input-group-btn > .btn {
  position: relative;
}

.input-group-btn > .btn + .btn {
  margin-left: -1px;
}

.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}

.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}

.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

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

.nav:after {
  clear: both;
}

.nav > li {
  position: relative;
  display: block;
}

.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}

.nav > li.disabled > a {
  color: #777777;
}

.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #337ab7;
}

.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.nav > li > a > img {
  max-width: none;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}

.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}

.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.428571429;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}

.nav-pills > li {
  float: left;
}

.nav-pills > li > a {
  border-radius: 4px;
}

.nav-pills > li + li {
  margin-left: 2px;
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}

.nav-stacked > li {
  float: none;
}

.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

.nav-justified,
.nav-tabs.nav-justified {
  width: 100%;
}

.nav-justified > li,
.nav-tabs.nav-justified > li {
  float: none;
}

.nav-justified > li > a,
.nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}

.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width: 768px) {
  .nav-justified > li,
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }

  .nav-justified > li > a,
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

.nav-tabs-justified,
.nav-tabs.nav-justified {
  border-bottom: 0;
}

.nav-tabs-justified > li > a,
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

.nav-tabs-justified > .active > a,
.nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}

@media (min-width: 768px) {
  .nav-tabs-justified > li > a,
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }

  .nav-tabs-justified > .active > a,
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

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

.navbar:after {
  clear: both;
}

@media (min-width: 768px) {
  .navbar {
    border-radius: 0px;
  }
}

.navbar-header:before,
.navbar-header:after {
  display: table;
  content: " ";
}

.navbar-header:after {
  clear: both;
}

@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}

.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}

.navbar-collapse:before,
.navbar-collapse:after {
  display: table;
  content: " ";
}

.navbar-collapse:after {
  clear: both;
}

.navbar-collapse.in {
  overflow-y: auto;
}

@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }

  .navbar-collapse.in {
    overflow-y: visible;
  }

  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}

@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}

@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 768px) {
  .container > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-header,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}

@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}

.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

.navbar-brand > img {
  display: block;
}

@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}

.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-right: 15px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.navbar-toggle:focus {
  outline: 0;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}

.navbar-nav {
  margin: 7.5px -15px;
}

.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}

@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }

  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }

  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}

@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }

  .navbar-nav > li {
    float: left;
  }

  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.navbar-form {
  padding: 10px 15px;
  margin-right: -15px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .navbar-form .form-control-static {
    display: inline-block;
  }

  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }

  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }

  .navbar-form .input-group > .form-control {
    width: 100%;
  }

  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }

  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }

  .navbar-form .radio input[type=radio],
  .navbar-form .checkbox input[type=checkbox] {
    position: relative;
    margin-left: 0;
  }

  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}

@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }

  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}

.navbar-btn.btn-sm,
.btn-group-sm > .navbar-btn.btn {
  margin-top: 10px;
  margin-bottom: 10px;
}

.navbar-btn.btn-xs,
.btn-group-xs > .navbar-btn.btn {
  margin-top: 14px;
  margin-bottom: 14px;
}

.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}

@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }

  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }

  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}

.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}

.navbar-default .navbar-brand {
  color: #0045A0;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #002f6d;
  background-color: transparent;
}

.navbar-default .navbar-text {
  color: #777;
}

.navbar-default .navbar-nav > li > a {
  color: #0045A0;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #0078FF;
  background-color: transparent;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #0078FF;
  background-color: #e7e7e7;
}

.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #0078FF;
  background-color: #e7e7e7;
}

@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #0045A0;
  }

  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #0078FF;
    background-color: transparent;
  }

  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #0078FF;
    background-color: #e7e7e7;
  }

  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}

.navbar-default .navbar-toggle {
  border-color: #ddd;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}

.navbar-default .navbar-link {
  color: #0045A0;
}

.navbar-default .navbar-link:hover {
  color: #0078FF;
}

.navbar-default .btn-link {
  color: #0045A0;
}

.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #0078FF;
}

.navbar-default .btn-link[disabled]:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:hover,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}

.navbar-inverse {
  background-color: #222;
  border-color: #090909;
}

.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}

.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}

.navbar-inverse .navbar-text {
  color: #9d9d9d;
}

.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #090909;
}

.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}

.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #090909;
}

@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #090909;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #090909;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #090909;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}

.navbar-inverse .navbar-toggle {
  border-color: #333;
}

.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}

.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}

.navbar-inverse .navbar-link {
  color: #9d9d9d;
}

.navbar-inverse .navbar-link:hover {
  color: #fff;
}

.navbar-inverse .btn-link {
  color: #9d9d9d;
}

.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #fff;
}

.navbar-inverse .btn-link[disabled]:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:hover,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.breadcrumb > li {
  display: inline-block;
}

.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/ ";
}

.breadcrumb > .active {
  color: #777777;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

.pagination > li {
  display: inline;
}

.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.428571429;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

.pagination > li > a:hover,
.pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #ddd;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.pagination > .active > a,
.pagination > .active > a:hover,
.pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}

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

.pager:after {
  clear: both;
}

.pager li {
  display: inline;
}

.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}

.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}

.pager .next > a,
.pager .next > span {
  float: right;
}

.pager .previous > a,
.pager .previous > span {
  float: left;
}

.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  cursor: not-allowed;
  background-color: #fff;
}

.label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}

.label:empty {
  display: none;
}

.btn .label {
  position: relative;
  top: -1px;
}

a.label:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.label-default {
  background-color: #777777;
}

.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e;
}

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

.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #286090;
}

.label-success {
  background-color: #5cb85c;
}

.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44;
}

.label-info {
  background-color: #5bc0de;
}

.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}

.label-warning {
  background-color: #f0ad4e;
}

.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}

.label-danger {
  background-color: #d9534f;
}

.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777777;
  border-radius: 10px;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}

.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}

.list-group-item > .badge {
  float: right;
}

.list-group-item > .badge + .badge {
  margin-right: 5px;
}

.nav-pills > li > a > .badge {
  margin-left: 3px;
}

a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}

.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}

.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}

.jumbotron > hr {
  border-top-color: #d5d5d5;
}

.container .jumbotron,
.container-fluid .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px;
}

.jumbotron .container {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }

  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}

.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}

.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}

.thumbnail .caption {
  padding: 9px;
  color: #333333;
}

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert h4 {
  margin-top: 0;
  color: inherit;
}

.alert .alert-link {
  font-weight: bold;
}

.alert > p,
.alert > ul {
  margin-bottom: 0;
}

.alert > p + p {
  margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}

.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.alert-success hr {
  border-top-color: #c9e2b3;
}

.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.alert-info hr {
  border-top-color: #a6e1ec;
}

.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.alert-warning hr {
  border-top-color: #f7e1b5;
}

.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.alert-danger hr {
  border-top-color: #e4b9c0;
}

.alert-danger .alert-link {
  color: #843534;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }

  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }

  to {
    background-position: 0 0;
  }
}

.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}

.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

.progress-bar-success {
  background-color: #5cb85c;
}

.progress-striped .progress-bar-success {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-info {
  background-color: #5bc0de;
}

.progress-striped .progress-bar-info {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-warning {
  background-color: #f0ad4e;
}

.progress-striped .progress-bar-warning {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-danger {
  background-color: #d9534f;
}

.progress-striped .progress-bar-danger {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.media {
  margin-top: 15px;
}

.media:first-child {
  margin-top: 0;
}

.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}

.media-body {
  width: 10000px;
}

.media-object {
  display: block;
}

.media-object.img-thumbnail {
  max-width: none;
}

.media-right,
.media > .pull-right {
  padding-left: 10px;
}

.media-left,
.media > .pull-left {
  padding-right: 10px;
}

.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}

.media-middle {
  vertical-align: middle;
}

.media-bottom {
  vertical-align: bottom;
}

.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

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

.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}

.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  color: #777777;
  cursor: not-allowed;
  background-color: #eeeeee;
}

.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}

.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #777777;
}

.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}

.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}

a.list-group-item,
button.list-group-item {
  color: #555;
}

a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}

a.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:hover,
button.list-group-item:focus {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}

button.list-group-item {
  width: 100%;
  text-align: left;
}

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}

a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}

a.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:hover,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}

a.list-group-item-success.active,
a.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active,
button.list-group-item-success.active:hover,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}

a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}

a.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:hover,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}

a.list-group-item-info.active,
a.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active,
button.list-group-item-info.active:hover,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}

a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}

a.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:hover,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}

a.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active,
button.list-group-item-warning.active:hover,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}

a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}

a.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:hover,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}

a.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active,
button.list-group-item-danger.active:hover,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
  padding: 15px;
}

.panel-body:before,
.panel-body:after {
  display: table;
  content: " ";
}

.panel-body:after {
  clear: both;
}

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}

.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}

.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}

.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

.list-group + .panel-footer {
  border-top-width: 0;
}

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}

.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}

.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}

.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}

.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}

.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}

.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}

.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}

.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}

.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}

.panel-group {
  margin-bottom: 20px;
}

.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}

.panel-group .panel + .panel {
  margin-top: 5px;
}

.panel-group .panel-heading {
  border-bottom: 0;
}

.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}

.panel-group .panel-footer {
  border-top: 0;
}

.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

.panel-default {
  border-color: #ddd;
}

.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}

.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}

.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}

.panel-primary {
  border-color: #337ab7;
}

.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}

.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}

.panel-success {
  border-color: #d6e9c6;
}

.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}

.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}

.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}

.panel-info {
  border-color: #bce8f1;
}

.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}

.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}

.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}

.panel-warning {
  border-color: #faebcc;
}

.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}

.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}

.panel-danger {
  border-color: #ebccd1;
}

.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}

.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
  padding-bottom: 75%;
}

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

.well-lg {
  padding: 24px;
  border-radius: 6px;
}

.well-sm {
  padding: 9px;
  border-radius: 3px;
}

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: 0.2;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: 0.5;
}

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}

.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-header:before,
.modal-header:after {
  display: table;
  content: " ";
}

.modal-header:after {
  clear: both;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.428571429;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}

.modal-footer:after {
  clear: both;
}

.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

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

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }

  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  .modal-sm {
    width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "jaf-facitweb", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.428571429;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 12px;
  filter: alpha(opacity=0);
  opacity: 0;
}

.tooltip.in {
  filter: alpha(opacity=90);
  opacity: 0.9;
}

.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}

.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}

.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}

.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}

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

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "jaf-facitweb", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.428571429;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 14px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.popover.top {
  margin-top: -10px;
}

.popover.right {
  margin-left: 10px;
}

.popover.bottom {
  margin-top: 10px;
}

.popover.left {
  margin-left: -10px;
}

.popover > .arrow {
  border-width: 11px;
}

.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.popover > .arrow:after {
  content: "";
  border-width: 10px;
}

.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}

.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}

.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0;
}

.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}

.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}

.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}

.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

.popover-content {
  padding: 9px 14px;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1;
}

@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
  }

  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }

  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }

  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}

.carousel-inner > .active {
  left: 0;
}

.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

.carousel-inner > .next {
  left: 100%;
}

.carousel-inner > .prev {
  left: -100%;
}

.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}

.carousel-inner > .active.left {
  left: -100%;
}

.carousel-inner > .active.right {
  left: 100%;
}

.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.carousel-control.left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#80000000", endColorstr="#00000000", GradientType=1);
  background-repeat: repeat-x;
}

.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#80000000", GradientType=1);
  background-repeat: repeat-x;
}

.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  filter: alpha(opacity=90);
  opacity: 0.9;
}

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}

.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}

.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}

.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}

.carousel-control .icon-prev:before {
  content: "‹";
}

.carousel-control .icon-next:before {
  content: "›";
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}

.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}

.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }

  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }

  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }

  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }

  .carousel-indicators {
    bottom: 20px;
  }
}

.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;
  }
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */

/* FONT PATH
 * -------------------------- */

@font-face {
  font-family: "FontAwesome";
  src: url(/public/fonts/fontawesome-webfont.eot);
  src: url(/public/fonts/fontawesome-webfont.eot) format("embedded-opentype"), url(/public/fonts/fontawesome-webfont.woff2) format("woff2"), url(/public/fonts/fontawesome-webfont.woff) format("woff"), url(/public/fonts/b06871f281fee6b241d60582ae9369b9.ttf) format("truetype"), url(/public/fonts/912ec66d7572ff821749319396470bde.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */

.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.2857142857em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.8571428571em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right {
  margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}

.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
          filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */

.fa-glass:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-feed:before,
.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-area-chart:before {
  content: "";
}

.fa-pie-chart:before {
  content: "";
}

.fa-line-chart:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-facebook-official:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-hotel:before,
.fa-bed:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-sticky-note-o:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-hourglass-o:before {
  content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "";
}

.fa-hand-scissors-o:before {
  content: "";
}

.fa-hand-lizard-o:before {
  content: "";
}

.fa-hand-spock-o:before {
  content: "";
}

.fa-hand-pointer-o:before {
  content: "";
}

.fa-hand-peace-o:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-tv:before,
.fa-television:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-500px:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-calendar-plus-o:before {
  content: "";
}

.fa-calendar-minus-o:before {
  content: "";
}

.fa-calendar-times-o:before {
  content: "";
}

.fa-calendar-check-o:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-map-o:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-commenting:before {
  content: "";
}

.fa-commenting-o:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-credit-card-alt:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-pause-circle-o:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stop-circle-o:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-wheelchair-alt:before {
  content: "";
}

.fa-question-circle-o:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-audio-description:before {
  content: "";
}

.fa-volume-control-phone:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-assistive-listening-systems:before {
  content: "";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-first-order:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "";
}

.fa-handshake-o:before {
  content: "";
}

.fa-envelope-open:before {
  content: "";
}

.fa-envelope-open-o:before {
  content: "";
}

.fa-linode:before {
  content: "";
}

.fa-address-book:before {
  content: "";
}

.fa-address-book-o:before {
  content: "";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "";
}

.fa-user-circle:before {
  content: "";
}

.fa-user-circle-o:before {
  content: "";
}

.fa-user-o:before {
  content: "";
}

.fa-id-badge:before {
  content: "";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "";
}

.fa-quora:before {
  content: "";
}

.fa-free-code-camp:before {
  content: "";
}

.fa-telegram:before {
  content: "";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "";
}

.fa-shower:before {
  content: "";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "";
}

.fa-podcast:before {
  content: "";
}

.fa-window-maximize:before {
  content: "";
}

.fa-window-minimize:before {
  content: "";
}

.fa-window-restore:before {
  content: "";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "";
}

.fa-bandcamp:before {
  content: "";
}

.fa-grav:before {
  content: "";
}

.fa-etsy:before {
  content: "";
}

.fa-imdb:before {
  content: "";
}

.fa-ravelry:before {
  content: "";
}

.fa-eercast:before {
  content: "";
}

.fa-microchip:before {
  content: "";
}

.fa-snowflake-o:before {
  content: "";
}

.fa-superpowers:before {
  content: "";
}

.fa-wpexplorer:before {
  content: "";
}

.fa-meetup:before {
  content: "";
}

.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;
}

/* BEGIN Regular */

@font-face {
  font-family: "Open Sans";
  src: url(/public/fonts/OpenSans-Regular.eot);
  src: url(/public/fonts/OpenSans-Regular.eot) format("embedded-opentype"), url(/public/fonts/OpenSans-Regular.woff) format("woff"), url(/public/fonts/cd7296352d159532b66c07d98efb1126.ttf) format("truetype"), url(/public/fonts/f641a7d4e80fd6321135b1a2b4ce8bb1.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}

/* END Regular */

/* BEGIN Bold */

@font-face {
  font-family: "Open Sans";
  src: url(/public/fonts/OpenSans-Bold.eot);
  src: url(/public/fonts/OpenSans-Bold.eot) format("embedded-opentype"), url(/public/fonts/OpenSans-Bold.woff) format("woff"), url(/public/fonts/5a100916f94b0babde0c92aaa8fb80d6.ttf) format("truetype"), url(/public/fonts/d6291f88056601e360ce6cea4bf676f4.svg) format("svg");
  font-weight: bold;
  font-style: normal;
}

/* END Bold */

/* BEGIN Italic */

@font-face {
  font-family: "Open Sans";
  src: url(/public/fonts/OpenSans-Italic.eot);
  src: url(/public/fonts/OpenSans-Italic.eot) format("embedded-opentype"), url(/public/fonts/OpenSans-Italic.woff) format("woff"), url(/public/fonts/9b30f13428e1b4a659aeeab4ac1fff35.ttf) format("truetype"), url(/public/fonts/d6671d41dde41d355619fe05b44f4aac.svg) format("svg");
  font-weight: normal;
  font-style: italic;
}

/* END Italic */

.react-datepicker__navigation-icon::before,
.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  border-color: #ccc;
  border-style: solid;
  border-width: 3px 3px 0 0;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  top: 6px;
  width: 9px;
}

.react-datepicker-wrapper {
  display: inline-block;
  padding: 0;
  border: 0;
}

.react-datepicker {
  font-family: "Helvetica Neue", helvetica, arial, sans-serif;
  font-size: 0.8rem;
  background-color: #fff;
  color: #000;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  display: inline-block;
  position: relative;
  line-height: initial;
}

.react-datepicker--time-only .react-datepicker__time-container {
  border-left: 0;
}

.react-datepicker--time-only .react-datepicker__time,
.react-datepicker--time-only .react-datepicker__time-box {
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.react-datepicker-popper {
  z-index: 1;
  line-height: 0;
}

.react-datepicker-popper .react-datepicker__triangle {
  stroke: #aeaeae;
}

.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
  fill: #f0f0f0;
  color: #f0f0f0;
}

.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle {
  fill: #fff;
  color: #fff;
}

.react-datepicker__header {
  text-align: center;
  background-color: #f0f0f0;
  border-bottom: 1px solid #aeaeae;
  border-top-left-radius: 0.3rem;
  padding: 8px 0;
  position: relative;
}

.react-datepicker__header--time {
  padding-bottom: 8px;
  padding-left: 5px;
  padding-right: 5px;
}

.react-datepicker__header--time:not(.react-datepicker__header--time--only) {
  border-top-left-radius: 0;
}

.react-datepicker__header:not(.react-datepicker__header--has-time-select) {
  border-top-right-radius: 0.3rem;
}

.react-datepicker__year-dropdown-container--select,
.react-datepicker__month-dropdown-container--select,
.react-datepicker__month-year-dropdown-container--select,
.react-datepicker__year-dropdown-container--scroll,
.react-datepicker__month-dropdown-container--scroll,
.react-datepicker__month-year-dropdown-container--scroll {
  display: inline-block;
  margin: 0 15px;
}

.react-datepicker__current-month,
.react-datepicker-time__header,
.react-datepicker-year-header {
  margin-top: 0;
  color: #000;
  font-weight: bold;
  font-size: 0.944rem;
}

h2.react-datepicker__current-month {
  padding: 0;
  margin: 0;
}

.react-datepicker-time__header {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.react-datepicker__navigation {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 2px;
  padding: 0;
  border: none;
  z-index: 1;
  height: 32px;
  width: 32px;
  text-indent: -999em;
  overflow: hidden;
}

.react-datepicker__navigation--previous {
  left: 2px;
}

.react-datepicker__navigation--next {
  right: 2px;
}

.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
  right: 85px;
}

.react-datepicker__navigation--years {
  position: relative;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.react-datepicker__navigation--years-previous {
  top: 4px;
}

.react-datepicker__navigation--years-upcoming {
  top: -4px;
}

.react-datepicker__navigation:hover *::before {
  border-color: #a6a6a6;
}

.react-datepicker__navigation-icon {
  position: relative;
  top: -1px;
  font-size: 20px;
  width: 0;
}

.react-datepicker__navigation-icon--next {
  left: -2px;
}

.react-datepicker__navigation-icon--next::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: -7px;
}

.react-datepicker__navigation-icon--previous {
  right: -2px;
}

.react-datepicker__navigation-icon--previous::before {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  right: -7px;
}

.react-datepicker__month-container {
  float: left;
}

.react-datepicker__year {
  margin: 0.4rem;
  text-align: center;
}

.react-datepicker__year-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 180px;
}

.react-datepicker__year .react-datepicker__year-text {
  display: inline-block;
  width: 4rem;
  margin: 2px;
}

.react-datepicker__month {
  margin: 0.4rem;
  text-align: center;
}

.react-datepicker__month .react-datepicker__month-text,
.react-datepicker__month .react-datepicker__quarter-text {
  display: inline-block;
  width: 4rem;
  margin: 2px;
}

.react-datepicker__input-time-container {
  clear: both;
  width: 100%;
  float: left;
  margin: 5px 0 10px 15px;
  text-align: left;
}

.react-datepicker__input-time-container .react-datepicker-time__caption {
  display: inline-block;
}

.react-datepicker__input-time-container .react-datepicker-time__input-container {
  display: inline-block;
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input {
  display: inline-block;
  margin-left: 10px;
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input {
  width: auto;
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time] {
  -moz-appearance: textfield;
}

.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter {
  margin-left: 5px;
  display: inline-block;
}

.react-datepicker__time-container {
  float: right;
  border-left: 1px solid #aeaeae;
  width: 85px;
}

.react-datepicker__time-container--with-today-button {
  display: inline;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  position: absolute;
  right: -87px;
  top: 0;
}

.react-datepicker__time-container .react-datepicker__time {
  position: relative;
  background: white;
  border-bottom-right-radius: 0.3rem;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box {
  width: 85px;
  overflow-x: hidden;
  margin: 0 auto;
  text-align: center;
  border-bottom-right-radius: 0.3rem;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list {
  list-style: none;
  margin: 0;
  height: calc(195px + (1.7rem / 2));
  overflow-y: scroll;
  padding-right: 0;
  padding-left: 0;
  width: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
  height: 30px;
  padding: 5px 10px;
  white-space: nowrap;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
  cursor: pointer;
  background-color: #f0f0f0;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
  background-color: #216ba5;
  color: white;
  font-weight: bold;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover {
  background-color: #216ba5;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled {
  color: #ccc;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover {
  cursor: default;
  background-color: transparent;
}

.react-datepicker__week-number {
  color: #ccc;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}

.react-datepicker__week-number.react-datepicker__week-number--clickable {
  cursor: pointer;
}

.react-datepicker__week-number.react-datepicker__week-number--clickable:not(.react-datepicker__week-number--selected):hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}

.react-datepicker__week-number--selected {
  border-radius: 0.3rem;
  background-color: #216ba5;
  color: #fff;
}

.react-datepicker__week-number--selected:hover {
  background-color: #1d5d90;
}

.react-datepicker__day-names {
  white-space: nowrap;
  margin-bottom: -8px;
}

.react-datepicker__week {
  white-space: nowrap;
}

.react-datepicker__day-name,
.react-datepicker__day,
.react-datepicker__time-name {
  color: #000;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}

.react-datepicker__day,
.react-datepicker__month-text,
.react-datepicker__quarter-text,
.react-datepicker__year-text {
  cursor: pointer;
}

.react-datepicker__day:not([aria-disabled=true]):hover,
.react-datepicker__month-text:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text:not([aria-disabled=true]):hover,
.react-datepicker__year-text:not([aria-disabled=true]):hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}

.react-datepicker__day--today,
.react-datepicker__month-text--today,
.react-datepicker__quarter-text--today,
.react-datepicker__year-text--today {
  font-weight: bold;
}

.react-datepicker__day--highlighted,
.react-datepicker__month-text--highlighted,
.react-datepicker__quarter-text--highlighted,
.react-datepicker__year-text--highlighted {
  border-radius: 0.3rem;
  background-color: #3dcc4a;
  color: #fff;
}

.react-datepicker__day--highlighted:not([aria-disabled=true]):hover,
.react-datepicker__month-text--highlighted:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--highlighted:not([aria-disabled=true]):hover,
.react-datepicker__year-text--highlighted:not([aria-disabled=true]):hover {
  background-color: #32be3f;
}

.react-datepicker__day--highlighted-custom-1,
.react-datepicker__month-text--highlighted-custom-1,
.react-datepicker__quarter-text--highlighted-custom-1,
.react-datepicker__year-text--highlighted-custom-1 {
  color: magenta;
}

.react-datepicker__day--highlighted-custom-2,
.react-datepicker__month-text--highlighted-custom-2,
.react-datepicker__quarter-text--highlighted-custom-2,
.react-datepicker__year-text--highlighted-custom-2 {
  color: green;
}

.react-datepicker__day--holidays,
.react-datepicker__month-text--holidays,
.react-datepicker__quarter-text--holidays,
.react-datepicker__year-text--holidays {
  position: relative;
  border-radius: 0.3rem;
  background-color: #ff6803;
  color: #fff;
}

.react-datepicker__day--holidays .overlay,
.react-datepicker__month-text--holidays .overlay,
.react-datepicker__quarter-text--holidays .overlay,
.react-datepicker__year-text--holidays .overlay {
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 4px;
  border-radius: 4px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0s, opacity 0.3s ease-in-out;
  transition: visibility 0s, opacity 0.3s ease-in-out;
}

.react-datepicker__day--holidays:not([aria-disabled=true]):hover,
.react-datepicker__month-text--holidays:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--holidays:not([aria-disabled=true]):hover,
.react-datepicker__year-text--holidays:not([aria-disabled=true]):hover {
  background-color: #cf5300;
}

.react-datepicker__day--holidays:hover .overlay,
.react-datepicker__month-text--holidays:hover .overlay,
.react-datepicker__quarter-text--holidays:hover .overlay,
.react-datepicker__year-text--holidays:hover .overlay {
  visibility: visible;
  opacity: 1;
}

.react-datepicker__day--selected,
.react-datepicker__day--in-selecting-range,
.react-datepicker__day--in-range,
.react-datepicker__month-text--selected,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--selected,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--selected,
.react-datepicker__year-text--in-selecting-range,
.react-datepicker__year-text--in-range {
  border-radius: 0.3rem;
  background-color: #216ba5;
  color: #fff;
}

.react-datepicker__day--selected:not([aria-disabled=true]):hover,
.react-datepicker__day--in-selecting-range:not([aria-disabled=true]):hover,
.react-datepicker__day--in-range:not([aria-disabled=true]):hover,
.react-datepicker__month-text--selected:not([aria-disabled=true]):hover,
.react-datepicker__month-text--in-selecting-range:not([aria-disabled=true]):hover,
.react-datepicker__month-text--in-range:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--selected:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--in-selecting-range:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--in-range:not([aria-disabled=true]):hover,
.react-datepicker__year-text--selected:not([aria-disabled=true]):hover,
.react-datepicker__year-text--in-selecting-range:not([aria-disabled=true]):hover,
.react-datepicker__year-text--in-range:not([aria-disabled=true]):hover {
  background-color: #1d5d90;
}

.react-datepicker__day--keyboard-selected,
.react-datepicker__month-text--keyboard-selected,
.react-datepicker__quarter-text--keyboard-selected,
.react-datepicker__year-text--keyboard-selected {
  border-radius: 0.3rem;
  background-color: #bad9f1;
  color: black;
}

.react-datepicker__day--keyboard-selected:not([aria-disabled=true]):hover,
.react-datepicker__month-text--keyboard-selected:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--keyboard-selected:not([aria-disabled=true]):hover,
.react-datepicker__year-text--keyboard-selected:not([aria-disabled=true]):hover {
  background-color: #1d5d90;
}

.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range),
.react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range),
.react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range),
.react-datepicker__year-text--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range) {
  background-color: rgba(33, 107, 165, 0.5);
}

.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range) {
  background-color: #f0f0f0;
  color: #000;
}

.react-datepicker__day--disabled,
.react-datepicker__month-text--disabled,
.react-datepicker__quarter-text--disabled,
.react-datepicker__year-text--disabled {
  cursor: default;
  color: #ccc;
}

.react-datepicker__day--disabled .overlay,
.react-datepicker__month-text--disabled .overlay,
.react-datepicker__quarter-text--disabled .overlay,
.react-datepicker__year-text--disabled .overlay {
  position: absolute;
  bottom: 70%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 4px;
  border-radius: 4px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0s, opacity 0.3s ease-in-out;
  transition: visibility 0s, opacity 0.3s ease-in-out;
}

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

.react-datepicker__input-container .react-datepicker__calendar-icon {
  position: absolute;
  padding: 0.5rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.react-datepicker__view-calendar-icon input {
  padding: 6px 10px 5px 25px;
}

.react-datepicker__year-read-view,
.react-datepicker__month-read-view,
.react-datepicker__month-year-read-view {
  border: 1px solid transparent;
  border-radius: 0.3rem;
  position: relative;
}

.react-datepicker__year-read-view:hover,
.react-datepicker__month-read-view:hover,
.react-datepicker__month-year-read-view:hover {
  cursor: pointer;
}

.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow {
  border-top-color: #b3b3b3;
}

.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  right: -16px;
  top: 0;
}

.react-datepicker__year-dropdown,
.react-datepicker__month-dropdown,
.react-datepicker__month-year-dropdown {
  background-color: #f0f0f0;
  position: absolute;
  width: 50%;
  left: 25%;
  top: 30px;
  z-index: 1;
  text-align: center;
  border-radius: 0.3rem;
  border: 1px solid #aeaeae;
}

.react-datepicker__year-dropdown:hover,
.react-datepicker__month-dropdown:hover,
.react-datepicker__month-year-dropdown:hover {
  cursor: pointer;
}

.react-datepicker__year-dropdown--scrollable,
.react-datepicker__month-dropdown--scrollable,
.react-datepicker__month-year-dropdown--scrollable {
  height: 150px;
  overflow-y: scroll;
}

.react-datepicker__year-option,
.react-datepicker__month-option,
.react-datepicker__month-year-option {
  line-height: 20px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.react-datepicker__year-option:first-of-type,
.react-datepicker__month-option:first-of-type,
.react-datepicker__month-year-option:first-of-type {
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.react-datepicker__year-option:last-of-type,
.react-datepicker__month-option:last-of-type,
.react-datepicker__month-year-option:last-of-type {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.react-datepicker__year-option:hover,
.react-datepicker__month-option:hover,
.react-datepicker__month-year-option:hover {
  background-color: #ccc;
}

.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming {
  border-bottom-color: #b3b3b3;
}

.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous {
  border-top-color: #b3b3b3;
}

.react-datepicker__year-option--selected,
.react-datepicker__month-option--selected,
.react-datepicker__month-year-option--selected {
  position: absolute;
  left: 15px;
}

.react-datepicker__close-icon {
  cursor: pointer;
  background-color: transparent;
  border: 0;
  outline: 0;
  padding: 0 6px 0 0;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}

.react-datepicker__close-icon::after {
  cursor: pointer;
  background-color: #216ba5;
  color: #fff;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  padding: 2px;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  content: "×";
}

.react-datepicker__close-icon--disabled {
  cursor: default;
}

.react-datepicker__close-icon--disabled::after {
  cursor: default;
  background-color: #ccc;
}

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

.react-datepicker__portal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2147483647;
}

.react-datepicker__portal .react-datepicker__day-name,
.react-datepicker__portal .react-datepicker__day,
.react-datepicker__portal .react-datepicker__time-name {
  width: 3rem;
  line-height: 3rem;
}

@media (max-width: 400px), (max-height: 550px) {
  .react-datepicker__portal .react-datepicker__day-name,
  .react-datepicker__portal .react-datepicker__day,
  .react-datepicker__portal .react-datepicker__time-name {
    width: 2rem;
    line-height: 2rem;
  }
}

.react-datepicker__portal .react-datepicker__current-month,
.react-datepicker__portal .react-datepicker-time__header {
  font-size: 1.44rem;
}

.react-datepicker__children-container {
  width: 13.8rem;
  margin: 0.4rem;
  padding-right: 0.2rem;
  padding-left: 0.2rem;
  height: auto;
}

.react-datepicker__aria-live {
  position: absolute;
  -webkit-clip-path: circle(0);
          clip-path: circle(0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  width: 1px;
  white-space: nowrap;
}

.react-datepicker__calendar-icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}

/**
 * React Select
 * ============
 * Created by Jed Watson and Joss Mackison for KeystoneJS, http://www.keystonejs.com/
 * https://twitter.com/jedwatson https://twitter.com/jossmackison https://twitter.com/keystonejs
 * MIT License: https://github.com/JedWatson/react-select
*/

@keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@-webkit-keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn);
  }
}

.Select {
  position: relative;
}

.Select input::-webkit-contacts-auto-fill-button,
.Select input::-webkit-credentials-auto-fill-button {
  display: none !important;
}

.Select input::-ms-clear {
  display: none !important;
}

.Select input::-ms-reveal {
  display: none !important;
}

.Select,
.Select div,
.Select input,
.Select span {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.Select.is-disabled .Select-arrow-zone {
  cursor: default;
  pointer-events: none;
}

.Select.is-disabled > .Select-control {
  background-color: #f9f9f9;
}

.Select.is-disabled > .Select-control:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.Select.is-searchable.is-open > .Select-control {
  cursor: text;
}

.Select.is-searchable.is-focused:not(.is-open) > .Select-control {
  cursor: text;
}

.Select.is-open > .Select-control {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: #fff;
  border-color: #b3b3b3 #ccc #d9d9d9;
}

.Select.is-open > .Select-control .Select-arrow {
  top: -2px;
  border-color: transparent transparent #999;
  border-width: 0 5px 5px;
}

.Select.is-focused > .Select-control {
  background: #fff;
}

.Select.is-focused:not(.is-open) > .Select-control {
  border-color: #08c #0099e6 #0099e6;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 5px -1px fade(#08c, 50%);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 5px -1px fade(#08c, 50%);
}

.Select.has-value.is-clearable.Select--single > .Select-control .Select-value {
  padding-right: 42px;
}

.Select.has-value.Select--single > .Select-control .Select-value .Select-value-label,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value .Select-value-label {
  color: #333;
}

.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label {
  cursor: pointer;
  text-decoration: none;
}

.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:hover,
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:hover,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
  color: #08c;
  outline: none;
  text-decoration: underline;
}

.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
  background: #fff;
}

.Select.has-value.is-pseudo-focused .Select-input {
  opacity: 0;
}

.Select.is-open .Select-arrow,
.Select .Select-arrow-zone:hover > .Select-arrow {
  border-top-color: #666;
}

.Select.Select--rtl {
  direction: rtl;
  text-align: right;
}

.Select-control {
  background-color: #fff;
  border-color: #d9d9d9 #ccc #b3b3b3;
  border-radius: 4px;
  border: 1px solid #ccc;
  color: #333;
  cursor: default;
  display: table;
  border-spacing: 0;
  border-collapse: separate;
  height: 36px;
  outline: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.Select-control:hover {
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.Select-control .Select-input:focus {
  outline: none;
  background: #fff;
}

.Select-placeholder,
.Select--single > .Select-control .Select-value {
  bottom: 0;
  color: #aaa;
  left: 0;
  line-height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  right: 0;
  top: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.Select-input {
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
}

.Select-input > input {
  width: 100%;
  background: none transparent;
  border: 0 none;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: default;
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  outline: none;
  line-height: 17px;
  /* For IE 8 compatibility */
  padding: 8px 0 12px;
  /* For IE 8 compatibility */
  -webkit-appearance: none;
}

.is-focused .Select-input > input {
  cursor: text;
}

.Select-control:not(.is-searchable) > .Select-input {
  outline: none;
}

.Select-loading-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 16px;
}

.Select-loading {
  -webkit-animation: Select-animation-spin 400ms infinite linear;
  animation: Select-animation-spin 400ms infinite linear;
  width: 16px;
  height: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-right-color: #333;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.Select-clear-zone {
  -webkit-animation: Select-animation-fadeIn 200ms;
  animation: Select-animation-fadeIn 200ms;
  color: #999;
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 17px;
}

.Select-clear-zone:hover {
  color: #D0021B;
}

.Select-clear {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}

.Select--multi .Select-clear-zone {
  width: 17px;
}

.Select--multi .Select-multi-value-wrapper {
  display: inline-block;
}

.Select .Select-aria-only {
  position: absolute;
  display: inline-block;
  height: 1px;
  width: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  float: left;
}

.Select-arrow-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 25px;
  padding-right: 5px;
}

.Select--rtl .Select-arrow-zone {
  padding-right: 0;
  padding-left: 5px;
}

.Select-arrow {
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 2.5px;
  display: inline-block;
  height: 0;
  width: 0;
  position: relative;
}

@-webkit-keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.Select-menu-outer {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top-color: #e6e6e6;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: -1px;
  max-height: 200px;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 1000;
  -webkit-overflow-scrolling: touch;
}

.Select-menu {
  max-height: 198px;
  overflow-y: auto;
}

.Select-option {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  color: #666666;
  cursor: pointer;
  display: block;
  padding: 8px 10px;
}

.Select-option:last-child {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.Select-option.is-selected {
  background-color: #f5faff;
  color: #333;
}

.Select-option.is-focused {
  background-color: #f2f9fc;
  color: #333;
}

.Select-option.is-disabled {
  color: #cccccc;
  cursor: default;
}

.Select-noresults {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #999999;
  cursor: default;
  display: block;
  padding: 8px 10px;
}

.Select--multi .Select-input {
  vertical-align: middle;
  margin-left: 10px;
  padding: 0;
}

.Select--multi.Select--rtl .Select-input {
  margin-left: 0;
  margin-right: 10px;
}

.Select--multi.has-value .Select-input {
  margin-left: 5px;
}

.Select--multi .Select-value {
  background-color: #f2f9fc;
  border-radius: 2px;
  border: 1px solid #c9e6f2;
  color: #08c;
  display: inline-block;
  font-size: 0.9em;
  margin-left: 5px;
  margin-top: 5px;
  vertical-align: top;
}

.Select--multi .Select-value-icon,
.Select--multi .Select-value-label {
  display: inline-block;
  vertical-align: middle;
}

.Select--multi .Select-value-label {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  cursor: default;
  padding: 2px 5px;
}

.Select--multi a.Select-value-label {
  color: #08c;
  cursor: pointer;
  text-decoration: none;
}

.Select--multi a.Select-value-label:hover {
  text-decoration: underline;
}

.Select--multi .Select-value-icon {
  cursor: pointer;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-right: 1px solid #c9e6f2;
  padding: 1px 5px 3px;
}

.Select--multi .Select-value-icon:hover,
.Select--multi .Select-value-icon:focus {
  background-color: #ddeff7;
  color: #0077b3;
}

.Select--multi .Select-value-icon:active {
  background-color: #c9e6f2;
}

.Select--multi.Select--rtl .Select-value {
  margin-left: 0;
  margin-right: 5px;
}

.Select--multi.Select--rtl .Select-value-icon {
  border-right: none;
  border-left: 1px solid #c9e6f2;
}

.Select--multi.is-disabled .Select-value {
  background-color: #fcfcfc;
  border: 1px solid #e3e3e3;
  color: #333;
}

.Select--multi.is-disabled .Select-value-icon {
  cursor: not-allowed;
  border-right: 1px solid #e3e3e3;
}

.Select--multi.is-disabled .Select-value-icon:hover,
.Select--multi.is-disabled .Select-value-icon:focus,
.Select--multi.is-disabled .Select-value-icon:active {
  background-color: #fcfcfc;
}

@keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@-webkit-keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn);
  }
}

/*editor error animate*/

/*@import "~toastr/build/toastr.min.css";*/

.react-bs-table-container .react-bs-table-search-form {
  margin-bottom: 0;
}

.react-bs-table-bordered {
  border: 1px solid #ddd;
  border-radius: 5px;
}

.react-bs-table table {
  margin-bottom: 0;
  table-layout: fixed;
}

.react-bs-table table td,
.react-bs-table table th {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.react-bs-table-pagination {
  margin-top: 10px;
}

.react-bs-table-tool-bar {
  margin-bottom: 5px;
}

.react-bs-container-header,
.react-bs-container-footer {
  overflow: hidden;
  width: 100%;
}

.react-bs-container-body {
  /*height: 154px;*/
  overflow: auto;
  width: 100%;
}

.react-bootstrap-table-page-btns-ul {
  float: right;
  /* override the margin-top defined in .pagination class in bootstrap. */
  margin-top: 0;
}

.react-bs-table .table-bordered {
  border: 0;
  outline: none !important;
}

.react-bs-table .table-bordered > thead > tr > th,
.react-bs-table .table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.react-bs-table .table-bordered > tbody > tr > td {
  outline: none !important;
}

.react-bs-table .table-bordered > tbody > tr > td.default-focus-cell {
  outline: 3px solid cornflowerblue !important;
  outline-offset: -1px;
}

.react-bs-table .table-bordered > tfoot > tr > th,
.react-bs-table .table-bordered > tfoot > tr > td {
  border-top-width: 2px;
}

.react-bs-table .table-bordered > tfoot > tr > th,
.react-bs-table .table-bordered > tfoot > tr > td {
  border-bottom-width: 0;
}

/*Esquerda*/

.react-bs-table .table-bordered > thead > tr > th:first-child,
.react-bs-table .table-bordered > tbody > tr > th:first-child,
.react-bs-table .table-bordered > tfoot > tr > th:first-child,
.react-bs-table .table-bordered > thead > tr > td:first-child,
.react-bs-table .table-bordered > tbody > tr > td:first-child,
.react-bs-table .table-bordered > tfoot > tr > td:first-child {
  border-left-width: 0;
}

/*Direita*/

.react-bs-table .table-bordered > thead > tr > th:last-child,
.react-bs-table .table-bordered > tbody > tr > th:last-child,
.react-bs-table .table-bordered > tfoot > tr > th:last-child,
.react-bs-table .table-bordered > thead > tr > td:last-child,
.react-bs-table .table-bordered > tbody > tr > td:last-child,
.react-bs-table .table-bordered > tfoot > tr > td:last-child {
  border-right-width: 0;
}

/*Topo*/

.react-bs-table .table-bordered > thead > tr:first-child > th,
.react-bs-table .table-bordered > thead > tr:first-child > td {
  border-top-width: 0;
}

/*Baixo*/

.react-bs-table .table-bordered > tfoot > tr:last-child > th,
.react-bs-table .table-bordered > tfoot > tr:last-child > td {
  border-bottom-width: 0;
}

.react-bs-table .react-bs-container-header > table > thead > tr > th,
.react-bs-table .react-bs-container-footer > table > thead > tr > th {
  vertical-align: middle;
}

.react-bs-table .react-bs-container-header > table > thead > tr > th .filter,
.react-bs-table .react-bs-container-footer > table > thead > tr > th .filter {
  font-weight: normal;
}

.react-bs-table .react-bs-container-header > table > thead > tr > th .select-filter option[value=""],
.react-bs-table .react-bs-container-header > table > thead > tr > th .select-filter.placeholder-selected,
.react-bs-table .react-bs-container-header > table > thead > tr > th .filter::-webkit-input-placeholder,
.react-bs-table .react-bs-container-header > table > thead > tr > th .number-filter-input::-webkit-input-placeholder {
  color: lightgrey;
  font-style: italic;
}

.react-bs-table .react-bs-container-footer > table > thead > tr > th .select-filter option[value=""],
.react-bs-table .react-bs-container-footer > table > thead > tr > th .select-filter.placeholder-selected,
.react-bs-table .react-bs-container-footer > table > thead > tr > th .filter::-webkit-input-placeholder,
.react-bs-table .react-bs-container-footer > table > thead > tr > th .number-filter-input::-webkit-input-placeholder {
  color: lightgrey;
  font-style: italic;
}

.react-bs-table .react-bs-container-header > table > thead > tr > th .select-filter.placeholder-selected option:not([value=""]),
.react-bs-table .react-bs-container-footer > table > thead > tr > th .select-filter.placeholder-selected option:not([value=""]) {
  color: initial;
  font-style: initial;
}

.react-bs-table .react-bs-container-header > table > thead > tr > th .number-filter,
.react-bs-table .react-bs-container-header > table > thead > tr > th .date-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.react-bs-table .react-bs-container-footer > table > thead > tr > th .number-filter,
.react-bs-table .react-bs-container-footer > table > thead > tr > th .date-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.react-bs-table .react-bs-container-header > table > thead > tr > th .number-filter-input,
.react-bs-table .react-bs-container-header > table > thead > tr > th .date-filter-input {
  margin-left: 5px;
  float: left;
  width: calc(100% - 67px - 5px);
}

.react-bs-table .react-bs-container-footer > table > thead > tr > th .number-filter-input,
.react-bs-table .react-bs-container-footer > table > thead > tr > th .date-filter-input {
  margin-left: 5px;
  float: left;
  width: calc(100% - 67px - 5px);
}

.react-bs-table .react-bs-container-header > table > thead > tr > th .number-filter-comparator,
.react-bs-table .react-bs-container-header > table > thead > tr > th .date-filter-comparator {
  width: 67px;
  float: left;
}

.react-bs-table .react-bs-container-footer > table > thead > tr > th .number-filter-comparator,
.react-bs-table .react-bs-container-footer > table > thead > tr > th .date-filter-comparator {
  width: 67px;
  float: left;
}

.react-bs-table .react-bs-container-header .sort-column {
  cursor: pointer;
}

/*inline editor default style*/

.react-bs-container .form-control.editor {
  /*width:100%;
  top:0;
  left:0;*/
  /*height: 100%;
  position: absolute;*/
}

.react-bs-container .textarea-save-btn {
  position: absolute;
  z-index: 100;
  right: 0;
  top: -21px;
}

.react-bs-table-no-data {
  text-align: center;
}

.ReactModal__Overlay {
  -webkit-perspective: 600;
  perspective: 600;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 101;
}

.ReactModal__Overlay--after-open {
  opacity: 1;
  -webkit-transition: opacity 150ms ease-out;
  transition: opacity 150ms ease-out;
}

.ReactModal__Content {
  -webkit-transform: scale(0.5) rotateX(-30deg);
  transform: scale(0.5) rotateX(-30deg);
}

.ReactModal__Content--after-open {
  -webkit-transform: scale(1) rotateX(0deg);
  transform: scale(1) rotateX(0deg);
  -webkit-transition: all 150ms ease-in;
  transition: all 150ms ease-in;
}

.ReactModal__Overlay--before-close {
  opacity: 0;
}

.ReactModal__Content--before-close {
  -webkit-transform: scale(0.5) rotateX(30deg);
  transform: scale(0.5) rotateX(30deg);
  -webkit-transition: all 150ms ease-in;
  transition: all 150ms ease-in;
}

.ReactModal__Content.modal-dialog {
  border: none;
  background-color: transparent;
}

/*error tip style*/

.animated {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
}

.animated.shake {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}

td.react-bs-table-expand-cell {
  cursor: pointer;
}

th.react-bs-table-expand-cell > div {
  cursor: pointer;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  10%, 50%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }

  30%, 70% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  10%, 50%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }

  30%, 70% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
          animation-name: shake;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
            transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
            transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
          animation-name: bounceIn;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
          animation-name: bounceOut;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.layout {
  background-color: transparent;
}

html,
body {
  background: #FEFEFE;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0045A0;
}

.emergency-messaging h1,
.emergency-messaging h2,
.emergency-messaging h3,
.emergency-messaging h4,
.emergency-messaging h5,
.emergency-messaging h6 {
  color: #282828;
}

.emergency-messaging p {
  font-size: 20px;
  margin-bottom: 0;
}

.internal-page {
  padding-bottom: 20px;
  background: #FEFEFE;
  position: relative;
  z-index: 5;
  margin-bottom: 140px;
}

@media all and (max-width: 480px) {
  .internal-page {
    margin-bottom: 50px;
  }
}

.margin-top {
  margin-top: 15px;
}

.pointer {
  cursor: pointer;
}

main > div > .container {
  min-height: calc(100vh - 155px - 90px);
}

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

.icon-fill {
  fill: #0078FF;
}

.radio-group .radio,
.radio-group .checkbox {
  text-align: left;
  margin-bottom: 5px;
}

.radio-group .radio input,
.radio-group .checkbox input {
  display: block;
  opacity: 0;
}

.radio-group .radio label,
.radio-group .checkbox label {
  padding-left: 0;
  font-weight: bold;
}

.radio-group .radio label div,
.radio-group .checkbox label div {
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #FEFEFE;
  margin-right: 10px;
  margin-bottom: -3px;
  border: 1px solid #0078FF;
  position: relative;
  z-index: 1;
}

.radio-group .radio label div:after,
.radio-group .checkbox label div:after {
  opacity: 0;
  content: "";
  background: url(/public/fonts/8ba0d585d2031db2b0e0d46db18dbece.svg) 4px 0 no-repeat, -webkit-gradient(linear, left bottom, left top, from(#00A32E), to(#00C535));
  background: url(/public/fonts/8ba0d585d2031db2b0e0d46db18dbece.svg) 4px 0 no-repeat, linear-gradient(to top, #00A32E, #00C535);
  background-size: 70% 100%;
  font-size: 1.2em;
  color: white;
  text-align: center;
  padding: 4px 2px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: absolute;
  left: -1px;
  top: -1px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  line-height: 17px;
}

.radio-group .radio label input:checked + div::after,
.radio-group .checkbox label input:checked + div::after {
  opacity: 1;
}

.radio-group .radio label input:focus + div,
.radio-group .checkbox label input:focus + div {
  -webkit-box-shadow: 0 0 3px #282828;
          box-shadow: 0 0 3px #282828;
}

.radio-group .control-label {
  text-align: center !important;
}

.radio-horizontal input[type=radio] {
  margin-right: 10px;
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-bottom: 10px;
}

.radio-horizontal .radio,
.checkbox {
  padding-top: 0;
}

.radio-horizontal .radio input,
.checkbox input {
  display: block;
  opacity: 0;
}

.radio-horizontal .radio label,
.checkbox label {
  padding-left: 0;
  font-weight: bold;
}

.radio-horizontal .radio label div,
.checkbox label div {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #FEFEFE;
  margin-right: 10px;
  margin-bottom: -6px;
  border: 1px solid #B8B8CC;
  position: relative;
  z-index: 1;
}

.radio-horizontal .radio label div:after,
.checkbox label div:after {
  opacity: 0;
  content: "";
  background: url(/public/fonts/eb3e0ac26fbf1f15b9dfc9d24b787188.svg) center center no-repeat;
  font-size: 1.5em;
  color: #00A32E;
  text-align: center;
  padding: 0;
  width: 32px;
  height: 37px;
  position: absolute;
  left: 1px;
  bottom: -3px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  line-height: 17px;
}

.radio-horizontal .radio label input:checked + div::after,
.checkbox label input:checked + div::after {
  opacity: 1;
}

.radio-horizontal .radio label input:focus + div,
.checkbox label input:focus + div {
  -webkit-box-shadow: 0 0 3px #282828;
          box-shadow: 0 0 3px #282828;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #FEFEFE;
}

table thead {
  font-weight: bold;
  color: #0045A0;
  border-bottom: 1px solid #4F4F4F;
}

table td {
  padding: 15px;
}

table tr {
  border-bottom: 1px solid #4F4F4F;
}

table tr:nth-child(odd) {
  background-color: #A5CDDB;
}

li {
  margin: 10px 0;
}

.btn-bar {
  height: 31px;
}

.btn-bar--auto-height {
  height: auto;
}

.btn-lg,
.btn-group-lg > .btn {
  padding: 15px 50px;
}

.btn {
  position: relative;
  font-weight: bolder;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.btn-primary {
  border: 1px solid #009227;
  background: -webkit-gradient(linear, left bottom, left top, from(#00A32E), to(#00C535));
  background: linear-gradient(to top, #00A32E, #00C535);
  border-radius: 3px !important;
}

.btn-primary:disabled:active {
  background: -webkit-gradient(linear, left bottom, left top, from(#00A32E), to(#00C535));
  background: linear-gradient(to top, #00A32E, #00C535);
}

.flex-btn-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media all and (max-width: 768px) {
  .flex-btn-bar .btn {
    padding: 15px 25px;
  }
}

.form-control,
.Select-control {
  border: 1px solid #41A5F5;
  border-radius: 3px !important;
  font-size: 16px !important;
}

.manual-field-label {
  margin-bottom: 5px;
}

@media all and (max-width: 768px) {
  .full-name-fields .form-control,
  .full-name-fields .Select-control {
    margin-bottom: 15px;
  }
}

.input-group .form-control {
  border-radius: 3px 0 0 3px !important;
}

.input-group .input-group-btn .btn-postcode {
  padding-bottom: 7px;
  height: 34px;
  border-radius: 0 3px 3px 0 !important;
  margin: 0 !important;
}

.line-top {
  border-radius: 3px 3px 0 0 !important;
  border-bottom: 1px solid transparent;
}

.line-middle {
  border-radius: 0 !important;
  border-bottom: 1px solid transparent;
}

.line-bottom {
  border-radius: 0 0 3px 3px !important;
}

.section-group {
  border: 1px solid #F0F0EB;
  border-radius: 3px;
  margin-bottom: 15px;
  background: #FEFEFE;
  -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
}

.section-group .section {
  border-radius: 0;
  margin-bottom: 0;
  border: none;
  border-top: 1px solid #41a5f55c;
}

.section-group .section:first-child {
  border-top: none;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-color: #41a5f55c;
}

.section-group .section:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-color: #41a5f55c;
  border-bottom-color: 1px solid #F0F0EB;
}

.section-group .summary-section {
  padding: 15px;
  border-radius: 0;
  margin-bottom: 0;
  border: none;
}

.section-group .sub-benefit {
  font-size: 0.8em;
}

.section-group .white-section {
  background: #FEFEFE;
  border-radius: 0 0 3px 3px;
  border: none;
  margin-bottom: 0;
  color: #0045A0;
}

.section-group .white-section:not(.no-divider) {
  border-top: 1px solid #41a5f55c;
}

.section {
  background: #FEFEFE;
  margin-bottom: 15px;
  padding: 15px;
}

.section.no-top-border {
  border-top: unset;
}

.section strong {
  color: #0045A0;
}

.section h4,
.section h3 {
  color: #0045A0 !important;
  margin-bottom: 0 !important;
}

.section a {
  cursor: pointer;
}

.section a:hover {
  text-decoration: none;
}

.section label {
  font-weight: normal !important;
}

.section-important {
  border-radius: 3px;
  background: #F0F0EC;
  -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  padding: 15px;
}

.section-important.no-top-border {
  border-top: unset;
}

.section-important strong {
  color: #0045A0;
}

.section-important h4,
.section-important h3 {
  color: #0045A0 !important;
  margin-bottom: 0 !important;
}

.section-important a {
  cursor: pointer;
}

.section-important a:hover {
  text-decoration: none;
}

.section-important label {
  font-weight: normal !important;
}

.section-border-top {
  border-top: 1px solid #F0F0EB;
}

.section-inside-section {
  padding-top: 0 !important;
}

.white-section {
  border: 1px solid #F0F0EB;
  background: #FEFEFE;
  border-radius: 3px;
  margin-bottom: 15px;
  padding: 15px;
}

.white-section p {
  font-weight: bold !important;
}

.white-section a {
  cursor: pointer;
}

.white-section a:hover {
  text-decoration: none;
}

.section-title {
  border-bottom: 1px solid #41a5f55c;
  margin-bottom: 15px;
}

.section-title .purchase-complete {
  color: #0045A0;
  margin-bottom: 25px;
}

.section-title-no-border {
  margin-bottom: 15px;
}

.important-inline-section {
  background: #F0F0EC;
  color: #00A32E;
  padding: 15px;
}

.important-inline-section .text {
  padding-bottom: 10px;
}

.important {
  color: #00A32E;
  padding: 0 15px;
}

.important strong {
  color: #00A32E !important;
}

.important p {
  font-weight: normal !important;
}

.info-box {
  color: #0045A0;
  background-color: #e4f4ff;
  padding: 5px;
  margin: 5px;
}

.info-box strong {
  color: #0045A0;
}

.info-note {
  color: #4F4F4F;
  padding: 0px 0px;
  font-style: italic;
  font-size: 0.75em;
  font-weight: bold;
}

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

.cookie-and-privacy-container {
  background: #464646;
  color: #F7F7F5;
  position: relative;
}

.cookie-and-privacy-container .container {
  position: relative;
}

@media all and (max-width: 768px) {
  .cookie-and-privacy-container .container {
    padding: 0;
  }
}

.cookie-and-privacy-container a {
  color: #FF7911;
  text-decoration: none;
  margin-right: 5px;
}

.cookie-and-privacy-container .cookie-and-privacy-message {
  padding: 15px 0;
  width: 80%;
  float: left;
}

@media all and (max-width: 768px) {
  .cookie-and-privacy-container .cookie-and-privacy-message {
    width: 100%;
    padding: 15px;
  }
}

.cookie-and-privacy-container .cookie-and-privacy-btn {
  background: -webkit-gradient(linear, left bottom, left top, from(#00A32E), to(#00C535));
  background: linear-gradient(to top, #00A32E, #00C535);
  width: 130px;
  right: 15px;
  height: 100%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5em;
  cursor: pointer;
  padding: 10px 0;
}

@media all and (max-width: 768px) {
  .cookie-and-privacy-container .cookie-and-privacy-btn {
    width: 100%;
    right: 0;
    position: relative;
  }
}

.cookie-and-privacy-container .cookie-and-privacy-btn .cookie-btn-content {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cookie-and-privacy-container .cookie-and-privacy-btn svg {
  font-size: 1.8em;
  opacity: 0.8;
  margin-left: -5px;
}

.fade-out {
  -webkit-animation: fadeOut 1s ease;
          animation: fadeOut 1s ease;
  opacity: 0;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.popover-content {
  max-height: 500px;
  overflow: auto;
}

.icon-cal {
  background: #0045A0;
  border-radius: 0 3px 3px 0;
  width: 34px;
  height: 34px;
  padding: 0;
  cursor: pointer;
}

.icon-cal img {
  width: 34px;
}

.alternative-date-picker {
  position: relative;
}

.alternative-date-picker .field {
  width: 85%;
  float: left;
}

.alternative-date-picker .icon {
  width: 34px;
  float: right;
}

.alternative-date-picker div:first-child .form-control {
  border-radius: 3px 0 0 3px !important;
}

.alternative-date-picker .form-control {
  border-radius: 0 !important;
  text-align: left;
}

.primary-text {
  color: #0045A0;
}

.amt-message {
  margin-top: 15px;
  font-size: 14px;
  font-style: italic;
}

.icon {
  vertical-align: middle;
}

.admiral-card {
  border-radius: 5px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.admiral-card .header {
  background-color: #0045A0;
  color: #FFF;
  font-weight: normal;
  padding: 15px;
  font-size: 16.8px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.admiral-card .body .section-divider {
  border-bottom: 1px solid #C6E2E6;
}

.admiral-card .body .section-divider .medical-section-group {
  margin: 0;
}

.admiral-card .body .row:not(.billing) {
  padding: 15px 0 15px 0;
}

.admiral-card .body .row:not(.card-panel):not(.dynamic-row):not(.billing) {
  border-bottom: 1px solid #C6E2E6;
}

.admiral-card .body .row.clickable {
  cursor: pointer;
}

@media all and (max-width: 768px) {
  .admiral-card .body .sm-full {
    width: 100% !important;
    margin-top: 15px;
  }
}

@media all and (max-width: 480px) {
  .admiral-card .body .xs-full {
    width: 100% !important;
    margin-top: 15px;
  }
}

ul {
  list-style: disc !important;
}

ul li:before {
  content: none !important;
}

.admiral-secondary-btn.btn-default {
  padding: 6px 12px !important;
  background-color: #009227 !important;
  color: #FEFEFE !important;
  border-color: #009227 !important;
  font-size: 1.6rem;
  font-weight: 400;
}

.admiral-blue-btn.btn-default {
  padding: 6px 12px !important;
  background-color: #e4f4ff !important;
  color: #006dcc !important;
  border-color: #006dcc !important;
  font-size: 1.6rem;
  font-weight: 400;
}

.admiral-blue-btn.medium {
  width: 130px;
}

.pill-button {
  text-align: center;
  border-radius: 20px;
  padding: 5px 0;
  width: 180px;
  margin: 0 auto;
  cursor: pointer;
  color: black;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.pill-button:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  text-decoration: none;
  color: black;
}

.admiral-red-btn.btn-default {
  padding: 6px 12px !important;
  background-color: #CC0033 !important;
  color: #FEFEFE !important;
  border-color: #CC0033 !important;
  font-size: 1.6rem;
  font-weight: 400;
}

.admiral-red-btn.medium {
  width: 130px;
}

.error-message {
  border: 1px solid #FF7911;
  background-color: #FF7911;
  padding: 10px;
  color: #FFFFFF;
}

#teconsent img {
  z-index: 99999999;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

header {
  padding: 20px;
  color: #0045A0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media all and (max-width: 768px) {
  .header-container {
    width: 100% !important;
  }
}

.header-container .header-flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media all and (max-width: 768px) {
  .header-container .header-flex-box {
    display: block;
  }
}

.logo-container {
  text-align: center;
  position: relative;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 430px;
}

.logo-container .channel-logo-solo {
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo-container .channel-logo-solo img {
  width: 200px;
}

.logo-container .logo-link {
  position: relative;
  max-width: 200px;
  max-height: 90px;
  float: left;
}

@media all and (max-width: 768px) {
  .logo-container .logo-link img {
    max-width: 120px;
  }
}

@media all and (max-width: 480px) {
  .logo-container .logo-link {
    width: 100%;
    padding: 15px 0;
    float: none;
    margin: auto;
  }

  .logo-container .logo-link img {
    max-width: 80px;
  }
}

.logo-container .logo-link img {
  width: 200px;
}

.logo-container .logo-title {
  font-size: 2.5em;
  position: relative;
}

@media all and (max-width: 768px) {
  .logo-container .logo-title {
    font-size: 2rem;
  }
}

@media all and (max-width: 480px) {
  .logo-container .logo-title {
    width: 100%;
    padding: 15px 0;
    font-size: 1.4rem;
    margin: auto;
  }
}

.logo-container .logo-divider {
  border-left: 1px solid #0045A0;
  width: 1px;
  margin: 0 15px;
  min-height: 60px;
  position: relative;
  float: left;
}

@media all and (max-width: 480px) {
  .logo-container .logo-divider {
    margin: 0 10px;
  }
}

.logo-container .agg-logo {
  float: left;
  position: relative;
}

.logo-container .agg-logo img {
  max-height: 90px;
  max-width: 200px;
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media all and (max-width: 768px) {
  .logo-container .agg-logo img {
    max-width: 120px;
  }
}

@media all and (max-width: 480px) {
  .logo-container .agg-logo {
    padding: 15px 0;
    width: 100%;
    float: none;
  }

  .logo-container .agg-logo img {
    max-width: 80px;
  }
}

.extra-info {
  float: right;
  min-height: 64px;
  text-align: right;
}

.extra-info .info-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: right;
  min-height: 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.extra-info .info-header .phone {
  font-size: 1.5em;
  float: right;
  font-weight: bold;
  color: #0045A0;
  background: none;
  border: 1px solid #0045A0;
  padding: 5px;
  border-radius: 3px;
  cursor: pointer;
}

@media all and (max-width: 768px) {
  .extra-info .info-header .phone {
    font-size: 1.2em;
    margin: auto;
    float: none;
  }
}

@media all and (max-width: 480px) {
  .extra-info .info-header .phone {
    font-size: 0.8em;
  }
}

.extra-info .info-header .phone svg {
  font-size: 1em;
  margin-right: 5px;
  vertical-align: middle;
}

.extra-info .info-header .agg-phone {
  font-size: 1.5em;
  float: right;
  font-weight: bold;
  color: #0045A0;
  background: none;
  border: 1px solid #0045A0;
  padding: 5px;
  border-radius: 3px;
  cursor: pointer;
}

@media all and (max-width: 768px) {
  .extra-info .info-header .agg-phone {
    font-size: 1.2em;
    margin: auto;
    float: none;
  }
}

@media all and (max-width: 480px) {
  .extra-info .info-header .agg-phone {
    font-size: 0.8em;
  }
}

@media all and (max-width: 340px) {
  .extra-info .info-header .agg-phone .agg-phone-text {
    display: none;
  }
}

.extra-info .info-header .agg-phone svg {
  font-size: 1.2em;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

@media all and (max-width: 768px) {
  .extra-info .info-header {
    margin: auto;
    float: none;
  }
}

.phone-btn {
  font-size: 1.4em;
}

.phone-btn svg {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  margin-right: 5px;
}

.modal-body a {
  text-decoration: none;
}

.opening-hours {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.opening-hours li {
  margin: 5px 0;
}

.opening-hours.special li:last-child {
  font-size: 0.8em;
  color: #464646;
  margin-top: 15px;
  line-height: 140%;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.wizard {
  list-style: none;
  overflow: hidden;
  margin-top: 15px;
  padding: 0;
  border-radius: 3px;
  z-index: 5;
  position: relative;
}

.wizard ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.wizard .disabled:first-child a {
  border-radius: 3px 0 0 3px;
  border-left: 1px solid #0045A0;
}

.wizard .disabled:last-child a {
  border-radius: 0 3px 3px 0;
  border-right: 1px solid #0045A0;
  border-left: none;
}

.wizard li {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.wizard li:first-child a {
  border-radius: 3px 0 0 3px;
  border-left: 1px solid #0045A0;
}

.wizard li:last-child a {
  border-radius: 0 3px 3px 0;
  border-right: 1px solid #0045A0;
}

.wizard li:last-child a:after,
.wizard li:last-child a:before {
  display: none;
}

.wizard li:before {
  display: none;
}

.wizard li a {
  color: #0045A0;
  text-decoration: none;
  background: #FEFEFE;
  border-top: 1px solid #0045A0;
  border-bottom: 1px solid #0045A0;
  position: relative;
  height: 34px;
  padding-left: 15px;
  padding-top: 7px;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.wizard li a:after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 15px solid #FEFEFE;
  position: absolute;
  top: 100%;
  margin-top: -32px;
  left: 100%;
  z-index: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media all and (max-width: 768px) {
  .wizard li a:after {
    margin-left: -1px;
  }
}

.wizard li a:before {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 17px solid #0045A0;
  position: absolute;
  top: 100%;
  margin-top: -34px;
  left: 100%;
  z-index: 1;
}

@media all and (max-width: 768px) {
  .wizard li a p {
    font-size: 1rem;
  }
}

@media all and (max-width: 600px) {
  .wizard li a p {
    display: none;
  }
}

@media all and (max-width: 600px) {
  .wizard li a span {
    display: none;
  }
}

.wizard li a .number {
  display: none;
}

.wizard li a span {
  margin-right: 5px;
}

.wizard li.active a {
  background: #0045A0;
  color: #FEFEFE;
}

.wizard li.active a:after {
  border-left: 16px solid #0045A0;
}

.wizard li.active a span {
  color: #FEFEFE;
}

.wizard li.disabled a {
  color: #0045A0;
  cursor: default;
  background: #FEFEFE;
  border-top: 1px solid #0045A0;
  border-bottom: 1px solid #0045A0;
  border-right: none;
}

.wizard li.disabled a:after {
  border-left: 15px solid #FEFEFE;
}

.wizard li.disabled a:before {
  border-left: 17px solid #0045A0;
}

.wizard li.disabled a:active,
.wizard li.disabled a:hover,
.wizard li.disabled a:focus {
  text-decoration: none;
}

@media all and (max-width: 768px) {
  .wizard {
    border-right: none;
  }

  .wizard li a {
    padding: 7px;
  }

  .wizard li a .number {
    display: block;
  }
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.portal-area-top-nav {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 40px;
  text-align: right;
  background-color: #0045A0;
  color: #FFF;
  padding: 10px 20px 5px 20px;
}

@media all and (max-width: 768px) {
  .portal-area-top-nav {
    padding: 10px 10px 5px 0;
  }
}

@media all and (max-width: 768px) {
  .portal-area-top-nav .container {
    margin-right: 15px;
    margin-left: 10px;
  }
}

.portal-area-top-nav .container .portal-area-header-flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.portal-area-top-nav .portal-area-customer {
  text-align: left;
}

@media all and (max-width: 768px) {
  .portal-area-top-nav .portal-area-customer {
    padding-left: 0;
    padding-right: 0;
  }
}

@media all and (max-width: 368px) {
  .portal-area-top-nav .portal-area-customer {
    font-size: 1rem;
  }
}

@media all and (max-width: 768px) {
  .portal-area-top-nav .pointer {
    padding-right: 0;
    padding-left: 0;
  }
}

@media all and (max-width: 368px) {
  .portal-area-top-nav .pointer {
    font-size: 1rem;
  }
}

.portal-area-top-nav__icon {
  font-size: 18px;
  margin-right: 5px;
  vertical-align: middle;
}

.portal-area-top-nav a {
  color: #FFF;
}

.portal-area-top-nav a:hover {
  color: #FFF;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.new-header {
  padding: 55px 20px 10px 20px;
  border: none;
  border-bottom: 1px solid #A4CCEA;
  color: #0045A0;
  background-color: #FFF;
}

.new-header header {
  padding: 20px 0 20px 0 !important;
}

.new-header .header-container {
  padding: 0 !important;
}

@media all and (max-width: 768px) {
  .new-header .header-container {
    width: 100% !important;
  }
}

.new-header .header-container .header-flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media all and (max-width: 768px) {
  .new-header .header-container .header-flex-box {
    display: block;
  }
}

.new-header .logo-container {
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 430px;
}

@media all and (max-width: 480px) {
  .new-header .logo-container {
    display: inline-block;
    width: 300px;
    text-align: left;
  }
}

.new-header .logo-container .channel-logo-solo {
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media all and (max-width: 768px) {
  .new-header .logo-container .channel-logo-solo {
    margin: auto;
  }
}

.new-header .logo-container .channel-logo-solo img {
  width: 200px;
}

.new-header .logo-container .logo-link {
  position: relative;
  max-width: 200px;
  max-height: 90px;
  float: left;
}

.new-header .logo-container .logo-link img {
  width: 200px;
}

@media all and (max-width: 992px) {
  .new-header .logo-container .logo-link {
    width: 100px;
    padding: 15px 0;
    float: left;
  }

  .new-header .logo-container .logo-link img {
    width: 100px;
  }
}

.new-header .logo-container .logo-title {
  font-size: 2.5em;
  position: relative;
}

@media all and (max-width: 992px) {
  .new-header .logo-container .logo-title {
    width: 100%;
    padding: 17px 0 15px 0;
    font-size: 2rem;
  }
}

.new-header .logo-container .logo-divider {
  border-left: 1px solid #0045A0;
  width: 1px;
  margin: 0 15px;
  min-height: 60px;
  position: relative;
  float: left;
}

@media all and (max-width: 480px) {
  .new-header .logo-container .logo-divider {
    display: block;
  }
}

.new-header .logo-container .agg-logo {
  float: left;
}

@media all and (max-width: 480px) {
  .new-header .logo-container .agg-logo {
    padding: 15px 0;
    width: 100%;
    float: none;
  }
}

.new-header .logo-container .agg-logo img {
  max-height: 90px;
  max-width: 200px;
}

.new-header .extra-info {
  float: right;
  min-height: 64px;
  text-align: right;
}

@media all and (max-width: 768px) {
  .new-header .extra-info {
    margin: auto;
    float: none;
  }
}

.new-header .extra-info .info-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: right;
  min-height: 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.new-header .extra-info .info-header .phone {
  font-size: 1.5em;
  float: right;
  font-weight: bold;
  color: #0045A0;
  background: none;
  border: 1px solid #0045A0;
  padding: 5px;
  border-radius: 3px;
  cursor: pointer;
}

@media all and (max-width: 768px) {
  .new-header .extra-info .info-header .phone {
    margin: auto;
    float: none;
  }
}

.new-header .extra-info .info-header .phone svg {
  font-size: 1em;
  margin-right: 5px;
  vertical-align: middle;
}

@media all and (max-width: 768px) {
  .new-header .extra-info .info-header {
    margin: auto;
    float: none;
  }
}

.new-header .phone-btn {
  font-size: 1.4em;
}

.new-header .phone-btn svg {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  margin-right: 5px;
}

.new-header .modal-body a {
  text-decoration: none;
}

.new-header .opening-hours {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.new-header .opening-hours li {
  margin: 5px 0;
}

.new-header .opening-hours li:last-child {
  font-size: 0.8em;
  color: #464646;
  margin-top: 15px;
  line-height: 140%;
}

@media all and (max-width: 992px) {
  .new-header .navbar-nav {
    font-size: 1.2rem;
  }
}

.new-header .navbar-nav li a {
  background-color: transparent;
  text-decoration: none;
  border-bottom: #FFF solid 2px;
}

.new-header .navbar-nav li a:hover {
  border-bottom: #A4CCEA solid 2px;
  text-decoration: none;
}

.new-header .navbar-nav li a.active {
  border-bottom: #A4CCEA solid 2px;
  text-decoration: none;
}

.new-header .navbar-toggle {
  float: right;
  color: #0045A0;
  border: none;
}

@media all and (max-width: 480px) {
  .new-header .navbar-toggle {
    position: absolute;
    right: 20px;
    top: 60px;
  }
}

.new-header .navbar-toggle .icon-bar {
  background-color: #0045A0;
}

.new-header .navbar-collapse {
  border: none;
}

@media all and (max-width: 480px) {
  .new-header .navbar-header {
    text-align: center;
  }
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.customer-area-top-nav {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 40px;
  text-align: right;
  background-color: #0045A0;
  color: #FFF;
  padding: 5px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media all and (max-width: 768px) {
  .customer-area-top-nav {
    padding: 3px;
  }
}

.customer-area-top-nav__icon {
  font-size: 18px;
  margin-right: 5px;
  vertical-align: middle;
  margin-bottom: 5px;
  cursor: pointer;
}

.customer-area-top-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0px;
}

@media all and (max-width: 768px) {
  .customer-area-top-nav ul {
    font-size: 12px;
    padding: 0px;
    margin: auto;
  }
}

.customer-area-top-nav ul li {
  margin: 0px 0px 0px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media all and (max-width: 768px) {
  .customer-area-top-nav ul li {
    margin: 0px 0px 0px 10px;
  }
}

.customer-area-top-nav ul li a {
  color: #FFF;
}

.customer-area-top-nav ul li a:hover {
  color: #FFF;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

footer {
  background: #464646;
  color: #FEFEFE;
  text-align: center;
  font-size: 0.8em;
  padding: 20px 0 0 0;
  position: fixed;
  bottom: 0;
  width: 100%;
}

footer a {
  color: #FF7911;
  text-decoration: none;
  margin-right: 5px;
}

footer a:hover {
  text-decoration: none;
  color: #FF7911;
}

@media all and (max-width: 480px) {
  footer {
    position: relative;
  }
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.ahib--container {
  position: relative;
  margin-top: 10px;
}

.ahib--container .ahib--overlay-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 15px;
}

@media all and (max-width: 480px) {
  .ahib--container .ahib--overlay-container {
    height: 100%;
  }
}

.ahib--container .ahib--overlay-container .ahib--box {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 250px;
}

.ahib--container .ahib--overlay-container .ahib--greeting {
  font-size: 16px;
}

@media all and (max-width: 480px) {
  .ahib--container .ahib--overlay-container .ahib--greeting {
    font-size: 14px;
  }
}

.ahib--container .ahib--overlay-container .ahib--main-text {
  font-size: 23px;
}

@media all and (max-width: 480px) {
  .ahib--container .ahib--overlay-container .ahib--main-text {
    font-size: 20px;
  }
}

.ahib--container .ahib--overlay-container .ahib--main-button-container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
}

.ahib--container .ahib--overlay-container .ahib--footer {
  margin-top: 5px;
  font-size: 11px;
  opacity: 0.8;
  max-width: 75%;
}

@media all and (max-width: 480px) {
  .ahib--container .ahib--overlay-container .ahib--footer {
    max-width: 60%;
  }
}

.ahib--container .ahib--overlay-container .ahib--error {
  margin-top: 20px;
  max-width: 75%;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.refer-a-friend-banner {
  background-color: #9C6BE0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: white;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media all and (max-width: 768px) {
  .refer-a-friend-banner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.refer-a-friend-banner--image-wrapper {
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
}

@media all and (max-width: 768px) {
  .refer-a-friend-banner--image-wrapper {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.refer-a-friend-banner--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 10px;
}

@media all and (min-width: 992px) {
  .refer-a-friend-banner--content {
    padding-right: 30px;
  }
}

.refer-a-friend-banner--content-text {
  font-size: 0.75em;
  margin-bottom: 5px;
}

.refer-a-friend-banner--content-text a {
  color: white;
  text-decoration: underline;
}

.refer-a-friend-banner--content-button {
  background-color: #FFDBEB;
  font-size: 0.75em;
  font-weight: bold;
  color: black;
}

.refer-a-friend-banner img {
  width: 100%;
}

.offline-message-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.offline-message-container h1 {
  font-size: 2em;
  text-align: center;
}

.input-with-icon {
  position: relative;
}

.input-with-icon .input-icon {
  position: absolute;
  right: 10px;
  top: 5px;
  cursor: pointer;
  opacity: 0.5;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.Select-control {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
}

.has-error .Select-control,
.has-error .form-control {
  border-color: #FF7911;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .Select-control:focus,
.has-error .form-control:focus {
  border-color: #dd6100;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #888888;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #888888;
}

.has-error .help-block {
  color: #FF7911;
}

.has-error label {
  color: #FF7911;
}

.has-error-red .Select-control,
.has-error-red .form-control {
  border-color: #CC0033;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error-red .Select-control:focus,
.has-error-red .form-control:focus {
  border-color: #990026;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #888888;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #888888;
}

.has-error-red .help-block {
  color: #CC0033;
}

.has-error-red label {
  color: #CC0033;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.payment-details-container .details-selection-container {
  padding: 20px;
}

@media all and (max-width: 480px) {
  .payment-details-container .details-selection-container {
    margin-top: 15px;
    padding: 10px;
  }
}

.payment-details-container .details-selection-container .adm-form-group {
  margin-bottom: 15px;
}

.payment-details-container .details-selection-container .title {
  font-size: 18px;
  font-weight: bold;
  color: #0045A0;
  margin-bottom: 20px;
}

.payment-details-container .select {
  margin-bottom: 15px;
}

.payment-details-container .select .select-question {
  padding-top: 5px;
}

.payment-details-container .permissions-container .title {
  margin-bottom: 15px;
}

.payment-details-container .permissions-container .payment-details-setting {
  color: #41a5f5;
  cursor: pointer;
}

.payment-details-container .permissions-container .card-preferences-container {
  margin-top: 20px;
}

.payment-details-container .permissions-container .card-preferences-container .radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.payment-details-container .permissions-container .card-preferences-container .radio-group .option-new {
  width: 100%;
}

.payment-details-container .permissions-container .card-preferences-container .card-preferences-selection-container .box {
  border-radius: 3px;
  border: 1px solid #ced9e5;
  -webkit-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
  margin-bottom: 0.25em;
  background-color: #FFFFFF;
}

.payment-details-container .permissions-container .card-preferences-container .card-preferences-selection-container .box label {
  padding: 0.5em 0.625em;
  cursor: pointer;
  width: 100% !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.payment-details-container .permissions-container .card-preferences-container .card-preferences-selection-container .box label input {
  margin-left: -5px;
}

.payment-details-container .permissions-container .card-preferences-container .card-preferences-selection-container .box.selected-trip-type {
  border: 1px solid #00A32E;
}

.payment-details-container .permissions-container .card-preferences-container .card-preferences-selection-container .box .radio {
  padding-top: 0 !important;
}

.payment-details-container .permissions-container .card-preferences-container .card-preferences-selection-container .box .trip-type-btn .trip-type-selection-container {
  padding-left: 15px;
}

.payment-details-container .permissions-container .card-preferences-container .card-preferences-selection-container .box .trip-type-btn .trip-type-selection-container .title-selection {
  color: #41a5f5;
  font-weight: 700;
}

.payment-details-container .permissions-container .card-preferences-container .card-preferences-selection-container .box .trip-type-btn .trip-type-selection-container .sub-text {
  font-size: 1.5rem;
  opacity: 0.6;
}

.billing-title-field {
  margin-bottom: 15px;
  width: 100%;
}

.billing-title-field.form-field {
  max-width: 100%;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.opt-in-modal-body {
  padding: 0;
}

.optIn-details-info {
  background-color: #edf7ff;
  border-left: solid 4px #0045A0;
  padding: 10px 35px;
}

.optIn-details-info svg {
  padding-top: 4px;
}

.radio-text {
  padding-left: 15px;
}

.renewal-selection {
  background-color: #edf7ff !important;
}

.info-icon {
  position: absolute;
  left: 15px;
}

.radio-group-opt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 5px 30px 20px 30px;
}

.radio-group-opt .radio-opt {
  width: 50%;
}

.radio-group-opt .radio-opt #optIn,
.radio-group-opt .radio-opt #optOut {
  -webkit-transform: scale(1.9);
          transform: scale(1.9);
}

.radio-group-opt .radio-opt input:checked + .radio-opt-text-auto {
  background-color: #00A32E !important;
}

.radio-group-opt .radio-opt .radio-opt-text-auto {
  color: #00A32E;
  font-size: 1.7rem;
}

.radio-group-opt .radio-opt .radio-opt-text-manual {
  font-size: 1.7rem;
}

.radio-group-renewal .radio-opt:first-child .radio,
.radio-group-renewal .radio-opt:first-child .checkbox {
  text-align: left;
  margin-bottom: 5px;
}

.radio-group-renewal .radio-opt:first-child .radio input,
.radio-group-renewal .radio-opt:first-child .checkbox input {
  display: block;
  opacity: 0;
}

.radio-group-renewal .radio-opt:first-child .radio label,
.radio-group-renewal .radio-opt:first-child .checkbox label {
  padding-left: 0;
  font-weight: bold;
}

.radio-group-renewal .radio-opt:first-child .radio label div,
.radio-group-renewal .radio-opt:first-child .checkbox label div {
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin-bottom: -6px;
  border: 2px solid #00A32E;
  position: relative;
  z-index: 1;
}

.radio-group-renewal .radio-opt:first-child .radio label div:after,
.radio-group-renewal .radio-opt:first-child .checkbox label div:after {
  content: "";
  font-size: 1.2em;
  color: #00A32E;
  text-align: center;
  padding: 4px 2px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: absolute;
  left: -2px;
  top: -2px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  line-height: 17px;
}

.radio-group-renewal .radio-opt:first-child .radio label input:checked + div::after,
.radio-group-renewal .radio-opt:first-child .checkbox label input:checked + div::after {
  opacity: 1;
  background-color: #00A32E;
  border: 2px solid #edf7ff;
}

.radio-group-renewal .radio-opt:first-child .radio label input:focus + div,
.radio-group-renewal .radio-opt:first-child .checkbox label input:focus + div {
  -webkit-box-shadow: 0 0 3px #282828;
          box-shadow: 0 0 3px #282828;
}

.radio-group-renewal .radio-opt:first-child .control-label {
  text-align: center !important;
}

.radio-group-renewal .radio-opt:nth-child(2) .radio,
.radio-group-renewal .radio-opt:nth-child(2) .checkbox {
  text-align: left;
  margin-bottom: 5px;
}

.radio-group-renewal .radio-opt:nth-child(2) .radio input,
.radio-group-renewal .radio-opt:nth-child(2) .checkbox input {
  display: block;
  opacity: 0;
}

.radio-group-renewal .radio-opt:nth-child(2) .radio label,
.radio-group-renewal .radio-opt:nth-child(2) .checkbox label {
  padding-left: 0;
  font-weight: bold;
}

.radio-group-renewal .radio-opt:nth-child(2) .radio label div,
.radio-group-renewal .radio-opt:nth-child(2) .checkbox label div {
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin-bottom: -6px;
  border: 2px solid #282828;
  position: relative;
  z-index: 1;
}

.radio-group-renewal .radio-opt:nth-child(2) .radio label div:after,
.radio-group-renewal .radio-opt:nth-child(2) .checkbox label div:after {
  content: "";
  font-size: 1.2em;
  color: #00A32E;
  text-align: center;
  padding: 4px 2px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: absolute;
  left: -2px;
  top: -2px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  line-height: 17px;
}

.radio-group-renewal .radio-opt:nth-child(2) .radio label input:checked + div::after,
.radio-group-renewal .radio-opt:nth-child(2) .checkbox label input:checked + div::after {
  opacity: 1;
  background-color: #00A32E;
  border: 2px solid #edf7ff;
}

.radio-group-renewal .radio-opt:nth-child(2) .radio label input:focus + div,
.radio-group-renewal .radio-opt:nth-child(2) .checkbox label input:focus + div {
  -webkit-box-shadow: 0 0 3px #282828;
          box-shadow: 0 0 3px #282828;
}

.radio-group-renewal .radio-opt:nth-child(2) .control-label {
  text-align: center !important;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

@media (min-width: 768px) {
  .upsell-modal .modal-dialog {
    width: 700px;
    margin: 30px auto;
  }
}

.upsell-modal .marketing-upsell-modal-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.upsell-modal .marketing-upsell-modal-body .upsell-header-image {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  padding-top: 10px;
}

.upsell-modal .marketing-upsell-modal-body .upsell-header-image img {
  position: relative;
  width: 100%;
  max-height: 350px;
}

@media (max-width: 600px) {
  .upsell-modal .marketing-upsell-modal-body .upsell-header-image {
    display: none;
  }
}

.upsell-modal .marketing-upsell-modal-body .header-text-wrapper {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
  font-weight: 700;
  line-height: 1.3;
  padding: 0 10px;
}

@media (max-width: 600px) {
  .upsell-modal .marketing-upsell-modal-body .header-text-wrapper {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.upsell-modal .marketing-upsell-modal-body .header-text-wrapper .header-title {
  text-align: center;
  font-size: 1.6em;
}

.upsell-modal .marketing-upsell-modal-body .header-text-wrapper .header-subtitle {
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 10px;
}

.upsell-modal .marketing-upsell-modal-body .header-text-wrapper .upsell-benefits-container {
  margin-left: 60px;
}

@media (max-width: 480px) {
  .upsell-modal .marketing-upsell-modal-body .header-text-wrapper .upsell-benefits-container {
    margin-left: 40px;
  }
}

.upsell-modal .marketing-upsell-modal-body .header-text-wrapper .upsell-benefits-container .upsell-benefits {
  padding: 10px 0;
  font-size: 0.8em;
}

.upsell-modal .marketing-upsell-modal-body .header-text-wrapper .modal-footer-buttons {
  padding: 15px 0 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.upsell-modal .marketing-upsell-modal-body .header-text-wrapper .modal-footer-buttons .accept {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 5px;
}

.upsell-modal .marketing-upsell-modal-body .header-text-wrapper .modal-footer-buttons .cancel {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 5px;
  opacity: 60%;
}

.upsell-discount {
  text-align: center;
  color: #337ab7;
}

.upsell-discount .upsell-discount-title {
  font-size: 20px;
  margin-bottom: 5px;
}

.info-dropdown {
  padding-bottom: 5px;
  margin-left: 55px;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

/*------------
Internal Page
------------*/

.hero-container {
  position: relative;
  background: url(/public/images/a932a422cde6504ec2053963e563ed80.jpg) no-repeat;
  background-size: cover;
  border-radius: 3px;
  padding: 60px 15px;
  height: 246px;
  margin-bottom: 20px;
  margin-top: 15px;
  color: #FF7911;
}

.hero-container h1 {
  font-weight: bold;
  font-size: 3em;
  color: #FF7911;
}

.hero-container p {
  font-size: 1.5em;
}

@media all and (min-width: 992px) {
  .hero-container {
    background-position: center -40px;
  }
}

@media all and (min-width: 1200px) {
  .hero-container {
    background-position: center -120px;
  }
}

/*------------
Quote journey Containers
------------*/

.quote-content-container {
  border-radius: 3px;
  background: #FEFEFE;
  position: relative;
  color: #4F4F4F;
  font-size: 1.2em;
}

.quote-content-container ul {
  list-style-type: none;
  padding: 5px;
}

.quote-content-container ul li:before {
  content: "";
  font-family: "FontAwesome";
  font-size: 1.5em;
  color: #41A5F5;
  margin: 5px;
}

.quote-content-container ul.declaration {
  list-style-type: none;
  padding: 5px 5px 5px 40px;
}

.quote-content-container ul.declaration li.declaration-list {
  position: relative;
  margin: 20px 0;
}

.quote-content-container ul.declaration li.declaration-list:before {
  content: "";
  font-family: "FontAwesome";
  font-size: 24px;
  color: #41A5F5;
  margin: 5px;
  position: absolute;
  left: -35px;
  top: -12px;
}

.quote-content-container ul.declaration-green {
  list-style-type: none;
  padding: 5px 5px 5px 40px;
}

.quote-content-container ul.declaration-green li.declaration-list {
  position: relative;
  margin: 20px 0;
}

.quote-content-container ul.declaration-green li.declaration-list:before {
  content: "";
  font-family: "FontAwesome";
  font-size: 24px;
  color: #00A32E;
  margin: 5px;
  position: absolute;
  left: -35px;
  top: -12px;
}

.quote-content-container .medical-questions-container ul {
  list-style-type: disc;
  padding: 0;
  margin-left: 40px;
}

.quote-content-container .medical-questions-container ul li:before {
  content: none;
}

.quote-content-container p {
  font-weight: bold;
}

.quote-content-container p.normal {
  font-weight: normal;
}

.quote-content-container h4,
.quote-content-container h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #464646;
}

.quote-content-container .steps-container {
  max-width: 708px;
  margin: auto;
}

.p-out-of-section {
  padding: 0 10px;
  color: #0045A0;
}

.group-type-description {
  font-size: 0.8em;
}

.remove-margins-from-children > * {
  margin: 0px !important;
}

/*------------
Your Quote summary
------------*/

.quote-info {
  text-align: right;
  padding-bottom: 15px;
}

.quote-info__final-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: right;
  font-weight: normal !important;
}

.quote-info ul {
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.quote-info ul li {
  margin: 0;
  padding: 0 0 10px 0;
}

.quote-info ul li:before {
  content: "";
  position: absolute;
}

/*------------
Voucher code area
------------*/

.voucher-code {
  font-size: 0.9em;
}

.voucher-code ul {
  list-style-type: none;
  padding: 0 0;
  font-size: 0.9em;
}

.voucher-code ul li.list {
  position: relative;
  margin-left: 18px;
}

.voucher-code ul li.list:before {
  content: "";
  font-family: "FontAwesome";
  font-size: 1em;
  color: #41A5F5;
  margin: 5px;
  position: absolute;
  left: -23px;
  top: -5px;
}

@media all and (max-width: 768px) {
  .voucher-code-input {
    margin-bottom: 15px;
  }
}

/*------------
Error block
------------*/

.error-block-container {
  background: #FF7911;
  padding: 15px;
  text-align: center;
  z-index: 2;
  margin-bottom: 30px;
}

.error-block-container:before {
  content: "";
  background: #FF7911;
  width: 100%;
  height: 100%;
  top: -15px;
  left: 0;
  z-index: 0;
}

.error-block-container h1 {
  color: #FEFEFE;
  font-weight: bolder;
}

.error-block-container p {
  color: #FEFEFE;
  font-weight: normal;
}

/*------------
RESIZE React DatePicker
------------*/

.react-datepicker-wrapper {
  width: 100% !important;
  position: relative;
}

.react-datepicker-popper {
  left: -186px !important;
  z-index: 1000;
}

.start-date-input .react-datepicker-popper,
.end-date-input .react-datepicker-popper {
  left: unset !important;
  z-index: 1000;
}

.react-datepicker__input-container {
  display: block !important;
}

.react-datepicker {
  font-size: 1.6rem !important;
  width: 240px;
}

.react-datepicker .react-datepicker__triangle {
  margin-left: 120px !important;
  left: 75px;
}

.react-datepicker .react-datepicker__month-container {
  width: 238px !important;
}

.react-datepicker .react-datepicker__month-container .react-datepicker__day {
  padding: 0;
}

.react-datepicker .react-datepicker__month-container .react-datepicker__day--selected {
  background-color: #41A5F5;
}

.react-datepicker__current-month {
  font-size: 1.5rem !important;
  color: #FEFEFE;
}

.react-datepicker__day-names div {
  color: #FEFEFE;
}

.react-datepicker__header {
  padding-top: 6px !important;
  background: #0045A0;
}

.react-datepicker__navigation {
  top: 13px !important;
}

.react-datepicker__day-name,
.react-datepicker__day {
  margin: 0.5rem !important;
}

.react-datepicker__day-name,
.react-datepicker__day,
.react-datepicker__time-name {
  width: 2.3rem;
}

.react-datepicker__day--keyboard-selected {
  background-color: #FFFFFF;
  border: solid 1px #41A5F5;
}

.react-datepicker__day-name,
.react-datepicker__day,
.react-datepicker__time-name {
  line-height: 3rem;
}

.react-datepicker__day:not(.react-datepicker__day--disabled, .react-datepicker__day--selected) {
  color: #4f4f4fbf;
}

/*------------
INFO BUTTONS - renderDefinitions
------------*/

.info-btn {
  margin-left: 5px;
  color: #41A5F5;
  font-size: 22px;
  vertical-align: middle;
}

@media all and (max-width: 340px) {
  .info-btn {
    font-size: 18px;
  }

  .info-btn.no-margin {
    margin-left: 0;
  }
}

/*------------
SAVE-QUOTE-BTN
------------*/

.save-quote-btn {
  float: left;
}

@media all and (max-width: 480px) {
  .save-quote-btn {
    float: right;
    padding: 15px 0;
    margin-bottom: 15px;
    width: 193px;
  }
}

.screen-button {
  min-width: 90px;
}

@media all and (max-width: 480px) {
  .screen-button {
    margin: 15px;
  }
}

/*-----------
LAYOUT-HACK
 */

@media all and (max-width: 480px) {
  .full-width-xs {
    width: 100% !important;
  }

  .half-width-xs {
    width: 49% !important;
  }
}

@media all and (max-width: 600px) {
  .dropdown-text {
    font-size: 10px;
  }
}

.covid-disclaimer-container {
  margin-bottom: 25px;
}

.covid-disclaimer-container .dropdown-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 10px 5px 10px;
  background-color: #0045A0;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
}

.covid-disclaimer-container .dropdown-box .dropdown-box-text {
  -ms-flex-preferred-size: 90%;
      flex-basis: 90%;
}

.covid-disclaimer-container .dropdown-box .dropdown-box-icon {
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
  text-align: right;
}

.covid-disclaimer-container .dropdown-box .dropdown-box-icon .svg {
  font-size: 25px;
}

.covid-disclaimer-container .covid-disclaimer-body {
  padding: 15px;
}

.covid-disclaimer-container .covid-disclaimer-body .sub-heading {
  color: #41A5F5;
}

.information-panel-container .dropdown-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  background-color: #0045A0;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
}

.information-panel-container .dropdown-box .dropdown-box-text {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
  font-size: 1.4rem;
}

.information-panel-container .dropdown-box .dropdown-box-icon {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  text-align: right;
  font-size: 1.4rem;
}

.information-panel-container .dropdown-box .dropdown-box-icon .svg {
  font-size: 25px;
}

.information-panel-container .information-panel-body {
  font-size: 16.8px;
  padding: 15px;
  background-color: #e3f1fe;
}

.information-panel-container .information-panel-body .sub-heading {
  color: #41A5F5;
}

.admiral-white-btn.btn-default {
  padding: 6px 12px !important;
  background-color: #FEFEFE !important;
  color: #006dcc !important;
  border-color: #006dcc !important;
  font-size: 1.6rem;
  font-weight: 400;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.Select-control {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
}

.has-error .Select-control,
.has-error .form-control {
  border-color: #FF7911;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .Select-control:focus,
.has-error .form-control:focus {
  border-color: #dd6100;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #888888;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #888888;
}

.has-error .help-block {
  color: #FF7911;
}

.has-error label {
  color: #FF7911;
}

.has-error-red .Select-control,
.has-error-red .form-control {
  border-color: #CC0033;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error-red .Select-control:focus,
.has-error-red .form-control:focus {
  border-color: #990026;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #888888;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #888888;
}

.has-error-red .help-block {
  color: #CC0033;
}

.has-error-red label {
  color: #CC0033;
}

.card-panel .dropdown {
  cursor: pointer;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.question-buttons button {
  width: 150px;
}

.question-buttons #no-button {
  margin-left: 10px;
}

.send-documents-box {
  text-align: left;
  font-size: 0.8em;
  padding-bottom: 30px;
}

.send-documents-box .section {
  padding-top: 0;
  padding-bottom: 0;
}

.send-documents-box .title {
  font-size: 1.4em;
  margin-bottom: 30px !important;
}

.send-documents-box p {
  margin-top: 15px;
  font-size: 1em;
}

.send-documents-box .icon {
  font-size: 2em;
}

.send-documents-box .environment-text {
  font-size: 0.8em;
  font-weight: 500;
}

.send-documents-box .radio-group {
  padding: 0;
}

.send-documents-box .radio-group .radio-button {
  width: 10%;
}

.send-documents-box .radio-group .radio-text {
  width: 90%;
  margin: auto 0 auto 0;
  font-weight: bold;
}

.send-documents-box .radio-group .option {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  background-color: #FFF;
  padding: 15px;
  border-top: 1px solid #41a5f55c !important;
  font-size: 1.2em;
}

.send-documents-box .radio-group .option.no-border {
  border-top: none !important;
}

.send-documents-box .radio-group .option.renewal {
  border-top: none !important;
  padding: 0 15px 0 15px !important;
}

.send-documents-box .radio-group .radio-text.renewal {
  font-weight: normal;
}

.send-documents-box .select-option {
  font-size: 1.3em;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.question-buttons button {
  width: 150px;
}

.question-buttons #no-button {
  margin-left: 10px;
}

.send-documents-box {
  text-align: left;
  font-size: 0.8em;
  padding-bottom: 30px;
}

.send-documents-box .section {
  padding-top: 0;
  padding-bottom: 0;
}

.send-documents-box .title {
  font-size: 1.4em;
  margin-bottom: 30px !important;
}

.send-documents-box p {
  margin-top: 15px;
  font-size: 1em;
}

.send-documents-box .icon {
  font-size: 2em;
}

.send-documents-box .environment-text {
  font-size: 0.8em;
  font-weight: 500;
}

.send-documents-box .radio-group {
  padding: 0;
}

.send-documents-box .radio-group .radio-button {
  width: 10%;
}

.send-documents-box .radio-group .radio-text {
  width: 90%;
  margin: auto 0 auto 0;
  font-weight: bold;
}

.send-documents-box .radio-group .option {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  background-color: #FFF;
  padding: 15px;
  border-top: 1px solid #41a5f55c !important;
  font-size: 1.2em;
}

.send-documents-box .radio-group .option.no-border {
  border-top: none !important;
}

.send-documents-box .radio-group .option.renewal {
  border-top: none !important;
  padding: 0 15px 0 15px !important;
}

.send-documents-box .radio-group .radio-text.renewal {
  font-weight: normal;
}

.send-documents-box .select-option {
  font-size: 1.3em;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.expired-card-banner {
  background: #e05f5f;
  padding: 10px 0;
  text-align: center;
  color: #FEFEFE;
  cursor: pointer;
  font-size: 19px;
}

@media all and (max-width: 480px) {
  .expired-card-banner {
    font-size: 16px;
  }
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.card-details-helper {
  background-color: #edf7ff;
  border-left: solid 2px #0045A0;
  padding: 10px;
  margin: 15px;
}

@media all and (max-width: 480px) {
  .card-details-helper {
    font-size: 0.8em;
    margin: 15px 0;
  }
}

.card-details-helper svg {
  padding-top: 4px;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.info-annie-container {
  padding: 12px 10px;
  border-radius: 10px;
  min-height: 80px;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
}

.info-annie-container.blue {
  background-color: #e3f1fe;
  color: #0045A0;
}

.info-annie-container .annie-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  font-size: 1.75em;
  line-height: 1;
  padding-right: 0.4em;
}

.info-annie-container .annie-img > img {
  height: 44px;
}

.info-annie-container .content .title {
  font-weight: bold;
  font-size: 1.8rem;
}

@media all and (max-width: 480px) {
  .info-annie-container .content .title {
    font-size: 1.6rem;
  }
}

.info-annie-container .content .title.standalone {
  font-size: 2rem;
}

.info-annie-container .content .text {
  font-size: 1.3rem;
}

@media all and (max-width: 480px) {
  .info-annie-container .content .text {
    font-size: 1.3rem;
  }
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.renewals-details-info {
  background-color: #edf7ff;
  border-left: solid 4px #0045A0;
  padding: 10px 35px;
}

.renewals-details-info svg {
  padding-top: 4px;
}

.renewals-details-info .info-icon {
  position: absolute;
  left: 25px;
}

.radio-text {
  padding-left: 15px;
}

.renewal-selection {
  background-color: #edf7ff !important;
}

.has-error-red {
  font-size: 1.5rem;
  font-weight: bold;
}

.has-error-red svg {
  width: 1.3em;
  height: 1.3em;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.mental-health-panel {
  border: 1px #0045A0 solid;
  border-radius: 6px;
  padding: 5px 10px;
  margin: 20px 0;
}

.mental-health-panel .dropdown-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: bold;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.mental-health-panel .dropdown-box-icon {
  cursor: pointer;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.quote-follow-up-container {
  border-radius: 3px;
  background: #FEFEFE;
  position: relative;
  color: #4F4F4F;
  font-size: 1.2em;
  max-width: 900px;
}

.quote-follow-up-container .welcome-back-message {
  text-transform: uppercase;
  font-weight: bold;
  color: #006dcc;
  font-size: 1.6em;
}

.quote-follow-up-container h1 {
  margin: 40px 10px;
  color: #006dcc;
  text-align: center;
  font-size: 1.6em;
}

.quote-follow-up-container .mobile-layout-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.quote-follow-up-container .follow-up-banner-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 15px;
}

.quote-follow-up-container .follow-up-banner-mobile .f-u-content-container-mobile {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
}

.quote-follow-up-container .follow-up-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media all and (min-width: 480px) {
  .quote-follow-up-container .follow-up-banner {
    padding: 0 15px;
  }
}

.quote-follow-up-container .follow-up-banner .follow-up-banner-annie {
  width: 50%;
}

@media all and (min-width: 480px) {
  .quote-follow-up-container .follow-up-banner .follow-up-banner-annie {
    width: 40%;
    margin-left: auto;
  }
}

.quote-follow-up-container .follow-up-banner .follow-up-banner-defaqto {
  width: 35%;
}

@media all and (min-width: 480px) {
  .quote-follow-up-container .follow-up-banner .follow-up-banner-defaqto {
    width: 25%;
  }
}

.quote-follow-up-container .follow-up-banner .follow-up-banner-defaqto img {
  width: 100%;
}

.quote-follow-up-container .validate-quote-details {
  margin-bottom: 25px;
}

.quote-follow-up-container .next-steps .next-steps-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0045A0;
}

.quote-follow-up-container .next-steps .next-steps-icon-wrapper {
  margin: 15px 30px;
}

.quote-follow-up-container .next-steps .next-steps-icon-wrapper img {
  width: 40px;
  height: 40px;
}

.quote-follow-up-container .retrieve-button-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media all and (min-width: 600px) {
  .quote-follow-up-container .retrieve-button-wrapper {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.quote-follow-up-container .retrieve-button-wrapper button {
  display: block;
  padding: 10px 30px;
  color: white;
  border-radius: 10px;
  letter-spacing: 1px;
  border: 1px solid #00A32E;
  min-width: 150px;
  margin: 15px;
  background: #00A32E;
}

@media all and (min-width: 480px) {
  .quote-follow-up-container .retrieve-button-wrapper button {
    min-width: 200px;
  }
}

.quote-follow-up-container .retrieve-button-wrapper button:hover {
  border: 1px #0045A0 solid;
  background: #00A32E;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.additional-option {
  background: none !important;
  padding: 5px 0 !important;
}

.additional-option:first-of-type {
  padding-top: 0 !important;
}

.trip-details-addition {
  padding-top: 30px;
}

@media all and (max-width: 768px) {
  .trip-details-addition {
    padding-top: 0;
  }
}

.question-text {
  padding-top: 10px;
  padding-bottom: 10px;
  margin: auto;
}

.question-text .title {
  font-weight: normal;
  color: #0045A0;
  font-size: 16px;
}

.question-text .additional-cover-icon-desktop {
  margin: 0 5px 0 0;
  width: 100%;
  float: left;
  padding-top: 10px;
}

.question-text .additional-cover-icon-desktop-ws-cc {
  margin: 0 5px 0 0;
  width: 60px;
  height: 80px;
  float: left;
  padding-top: 30px;
}

.question-text .additional-cover-icon-mobile {
  margin: 0 10px 10px 0;
  width: 60px;
  height: 60px;
}

.question-text .selected-no-text {
  color: #FF7911;
}

.send-documents-box {
  text-align: left;
  font-size: 0.8em;
  padding-bottom: 30px;
}

.send-documents-box.no-padding {
  padding-bottom: 0;
}

.send-documents-box .title {
  font-size: 1.4em;
  margin-bottom: 30px !important;
  margin-top: 20px;
}

.send-documents-box p {
  margin-top: 15px;
  font-size: 1em;
}

.send-documents-box .icon {
  font-size: 2em;
}

.send-documents-box .environment-text {
  font-size: 0.8em;
  font-weight: 500;
}

.send-documents-box .radio-group {
  padding: 0;
}

.send-documents-box .radio-group .radio-button {
  width: 10%;
}

.send-documents-box .radio-group .radio-text {
  width: 90%;
  margin: auto 0 auto 0;
}

.send-documents-box .radio-group .option {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  background-color: #FFF;
  padding: 15px;
  border-top: 1px solid #41a5f55c !important;
  font-size: 1.2em;
}

.send-documents-box .radio-group .option.no-top-border {
  border-top: 0 !important;
}

.send-documents-box .radio-group .option.no-top-padding {
  padding-top: 0;
}

.send-documents-box .radio-group .option.no-bottom-padding {
  padding-bottom: 0;
}

.send-documents-box .select-option {
  font-size: 1.3em;
}

.options-section-group {
  margin: 30px 0;
}

.options-section-group .options-section {
  border-radius: 0;
  margin-bottom: 0;
  border: none;
  padding: 15px 0;
  border-top: 1px solid #F0F0EB;
  -webkit-animation: fadeIn 0.5s ease;
          animation: fadeIn 0.5s ease;
  opacity: 1;
}

.options-section-group .options-section p {
  font-weight: normal;
}

.options-section-group .options-section .covered-btn {
  background: #41A5F5;
  color: #FEFEFE;
  border: 1px solid #0080C2;
  padding: 10px 15px;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 0.8em;
  text-transform: uppercase;
  cursor: not-allowed;
  border-radius: 3px;
  font-weight: bold;
}

@media all and (max-width: 768px) {
  .options-section-group .options-section .option-question-container {
    margin-left: 25px;
    margin-right: 25px;
  }
}

.options-section-group .options-section .option-question label,
.options-section-group .options-section .checkbox label {
  padding-left: 0;
  width: 100%;
  font-weight: bold;
}

.options-section-group .options-section .option-question label .option-btn,
.options-section-group .options-section .checkbox label .option-btn {
  padding: 10px 15px;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 0.8em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  color: #282828;
  border: 1px solid 1px solid #B8B8CC !important;
  background: -webkit-gradient(linear, left bottom, left top, from(#E0E0E7), to(#F8F8F8));
  background: linear-gradient(to top, #E0E0E7, #F8F8F8);
  font-weight: bold;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

.options-section-group .options-section .option-question label .option-btn .option-content,
.options-section-group .options-section .checkbox label .option-btn .option-content {
  background: none;
  position: relative;
  padding-top: 5px;
  float: left;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  width: auto;
}

.options-section-group .options-section .option-question label .option-btn .option-content span,
.options-section-group .options-section .checkbox label .option-btn .option-content span {
  text-align: left;
  margin: 0 2px;
}

.options-section-group .options-section .option-question label .option-btn:hover,
.options-section-group .options-section .checkbox label .option-btn:hover {
  -webkit-box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.5);
}

.options-section-group .options-section .option-question label .option-btn:after,
.options-section-group .options-section .checkbox label .option-btn:after {
  display: none;
}

.options-section-group .options-section .option-question label .option-btn .add,
.options-section-group .options-section .checkbox label .option-btn .add {
  display: block;
}

.options-section-group .options-section .option-question label .option-btn .remove,
.options-section-group .options-section .checkbox label .option-btn .remove {
  display: none;
}

.options-section-group .options-section .option-question label input:checked + .option-btn,
.options-section-group .options-section .checkbox label input:checked + .option-btn {
  opacity: 1;
  background: -webkit-gradient(linear, left bottom, left top, from(#0080CC), to(#00B8EA));
  background: linear-gradient(to top, #0080CC, #00B8EA);
  color: #FEFEFE;
  border: 1px solid #0080C2;
}

.options-section-group .options-section .option-question label input:checked + .option-btn:hover,
.options-section-group .options-section .checkbox label input:checked + .option-btn:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.options-section-group .options-section .option-question label input:checked + .option-btn .add,
.options-section-group .options-section .checkbox label input:checked + .option-btn .add {
  display: none;
}

.options-section-group .options-section .option-question label input:checked + .option-btn .remove,
.options-section-group .options-section .checkbox label input:checked + .option-btn .remove {
  display: block;
}

.options-section-group .options-section .option-question label input:disabled + .option-btn,
.options-section-group .options-section .checkbox label input:disabled + .option-btn {
  opacity: 0.6;
  cursor: wait;
}

.options-section-group .options-section .option-question label input:disabled + .option-btn:hover,
.options-section-group .options-section .checkbox label input:disabled + .option-btn:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.sticky-container {
  height: 100% !important;
  z-index: 1000 !important;
  overflow: hidden !important;
  position: absolute !important;
  width: 100% !important;
  pointer-events: none !important;
}

.choose-from-a-range-title {
  padding-top: 120px;
}

@media all and (max-width: 370px) {
  .choose-from-a-range-title {
    padding-top: 150px;
  }
}

.extension-of-cover-buttons {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.extension-of-cover-buttons div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 193px;
}

.extension-of-cover-buttons div .btn {
  padding: 15px !important;
  width: 100%;
  float: none !important;
  height: 100%;
}

@media all and (max-width: 360px) {
  .extension-of-cover-buttons div .btn {
    font-size: 0.8em;
  }
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.more-info {
  color: #0045A0;
  cursor: pointer;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.more-info {
  color: #0045A0;
  cursor: pointer;
}

.more-info-table-header {
  border: solid 2px black;
  padding: 10px 10px;
  margin-top: 15px;
}

.more-info-table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-right: solid 2px black;
  border-bottom: solid 2px black;
}

.more-info-table-row .more-info-table-column {
  padding: 10px 0 10px 10px;
  width: 50%;
  border-left: solid 2px black;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.policy-number {
  font-size: 1.2em;
  color: #0045A0;
}

@media all and (max-width: 600px) {
  .policy-number {
    font-size: 1em;
  }
}

@media all and (max-width: 375px) {
  .policy-number {
    font-size: 0.8em;
  }
}

.policy-documents {
  margin-top: 30px;
}

.policy-documents .btn-documents {
  padding: 10px 10px !important;
  background: -webkit-gradient(linear, left bottom, left top, from(#0080CC), to(#00B8EA));
  background: linear-gradient(to top, #0080CC, #00B8EA);
  color: #FEFEFE;
  width: 100%;
  font-weight: normal;
  font-size: 1.4rem;
}

@media all and (max-width: 600px) {
  .policy-documents .btn-documents {
    font-size: 1rem;
  }
}

.page-complete .section {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.purchase-complete-text {
  font-size: 0.9em;
  font-weight: bold;
}

.link {
  color: #337ab7;
  cursor: pointer;
}

.form-horizontal.question .control-label {
  padding-top: 15px;
}

.screening-border-bottom {
  border-bottom: #d4d4d4 solid 1px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.traveller-medical {
  background: #FEFEFE;
  padding: 0;
  margin-bottom: 15px;
}

.traveller-medical:last-of-type {
  margin-bottom: 0;
}

.traveller-medical p {
  margin-bottom: 0;
}

.important ul li {
  list-style-type: circle;
  list-style-position: outside;
}

.important ul li:before {
  content: none !important;
}

.medical-question .col-xs-6 {
  padding: 0;
}

@media all and (max-width: 767px) {
  .medical-question .medical-btn.yes {
    margin-left: 40px;
  }

  .medical-question .medical-btn.no {
    margin-right: 40px;
  }
}

.medical-question .answer input {
  display: block;
  opacity: 0;
}

.medical-question .answer .yes {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.medical-question .answer .no {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.medical-question .answer-number input {
  display: block;
}

.medical-question label {
  padding-left: 0;
  width: 100%;
  font-weight: bold;
}

.medical-question label .medical-btn {
  padding: 10px 15px;
  text-align: center;
  font-size: 0.8em;
  text-transform: capitalize;
  cursor: pointer;
  font-weight: bold;
  color: #282828;
  border: 1px solid #B8B8CC;
  background: -webkit-gradient(linear, left bottom, left top, from(#E0E0E7), to(#F8F8F8));
  background: linear-gradient(to top, #E0E0E7, #F8F8F8);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.medical-question label input:disabled + .medical-btn {
  opacity: 0.6 !important;
  cursor: wait;
}

.medical-question label input:disabled + .medical-btn:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.medical-question label input:checked ~ .medical-btn.yes {
  opacity: 1;
  background: -webkit-gradient(linear, left bottom, left top, from(#0080CC), to(#00B8EA));
  background: linear-gradient(to top, #0080CC, #00B8EA);
  color: #FEFEFE;
  border: 1px solid #0080C2;
}

.medical-question label input:checked ~ .medical-btn.no {
  position: relative;
  opacity: 1;
  background: -webkit-gradient(linear, left bottom, left top, from(#0080CC), to(#00B8EA));
  background: linear-gradient(to top, #0080CC, #00B8EA);
  color: #FEFEFE;
  border: 1px solid #0080C2;
  right: 1px;
}

.medical-question label input:not(:checked) ~ .medical-btn.no {
  border-left: none;
}

.medical-question input:focus + .medical-btn {
  -webkit-box-shadow: 0 0 3px #282828;
          box-shadow: 0 0 3px #282828;
}

.medical-section-group {
  margin-bottom: 15px;
}

.medical-section-group .medical-section {
  border-radius: 0;
  margin-bottom: 0;
  border: none;
  padding: 15px 0;
  border-top: 1px solid #41a5f55c;
}

.medical-section-group .medical-section p {
  font-weight: normal;
}

.medical-section-group .medical-section:first-child {
  border-top: none;
}

.medical-section-group .option-section {
  border-radius: 0;
  margin-bottom: 0;
  border: none;
}

.medical-section-group .option-section p {
  font-weight: normal;
}

.medical-section-group .option-section .option-subtext {
  margin-top: 5px;
  font-size: 14px;
}

@media all and (max-width: 480px) {
  .medical-section-group .option-section .option-subtext {
    text-align: center;
    margin: 10px 0 10px 0;
  }
}

.medical-section-group .option-section .option-subtext-display {
  padding: 15px 0 0 80px;
}

@media all and (max-width: 480px) {
  .medical-section-group .option-section .option-subtext-display {
    padding: 15px 15px 0 15px;
    font-size: 12px;
  }
}

.medical-section-group hr {
  border-top: 1px solid #41a5f55c;
}

.has-error .answer .medical-btn {
  border: 1px solid #FF7911;
  color: #FF7911;
}

.has-error .answer .yes,
.has-error .answer .no {
  border: 2px solid #FF7911;
  color: #FF7911;
}

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

.screening-session-healix {
  border: 1px solid #F0F0EB;
  border-radius: 3px;
  background: #FEFEFE;
}

.screening-session-healix .traveller-name {
  color: #0045A0;
  padding: 15px;
  border-bottom: 1px solid #F0F0EB;
}

.screening-session-healix .screening-body {
  margin-bottom: 15px;
  padding: 15px;
}

.screening-session-healix .screening-body .condition {
  border: 1px solid #F0F0EB;
  border-radius: 3px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.screening-session-healix .screening-body .condition span {
  color: #0045A0;
}

.screening-session-healix .screening-body .declaration-actions {
  border-top: 1px solid #F0F0EB;
  padding-top: 15px;
  margin-top: 15px;
}

.condition-questions {
  margin-bottom: 15px;
}

.condition-questions:last-of-type {
  margin-bottom: 0;
}

.condition-questions .condition-label {
  color: #0045A0;
  margin-top: 0;
  border-bottom: 1px solid #D1C7BD;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.condition-questions label {
  padding-bottom: 10px;
}

.condition-questions .text-info {
  font-size: 0.9em !important;
  margin: -10px 0 20px;
  color: #41a5f5;
}

.condition-questions .text-danger {
  font-size: 0.9em !important;
  margin: -10px 0 20px;
  color: #CC0033;
}

.condition-questions .screening-radio-question {
  margin-bottom: 15px;
}

.condition-questions .screening-radio-question .radio input,
.condition-questions .screening-radio-question .checkbox input,
.condition-questions .screening-radio-question .btn-quote-option input {
  opacity: 0;
}

.condition-questions .screening-radio-question .radio label,
.condition-questions .screening-radio-question .checkbox label,
.condition-questions .screening-radio-question .btn-quote-option label {
  padding: 0 0 2px 0;
  font-weight: bold;
}

.condition-questions .screening-radio-question .radio label div,
.condition-questions .screening-radio-question .checkbox label div,
.condition-questions .screening-radio-question .btn-quote-option label div {
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #FEFEFE;
  margin-right: 10px;
  margin-bottom: -3px;
  border: 1px solid #0078FF;
  position: relative;
  z-index: 1;
}

.condition-questions .screening-radio-question .radio label div:after,
.condition-questions .screening-radio-question .checkbox label div:after,
.condition-questions .screening-radio-question .btn-quote-option label div:after {
  opacity: 0;
  content: "";
  background: url(/public/fonts/8ba0d585d2031db2b0e0d46db18dbece.svg) 4px 0 no-repeat, -webkit-gradient(linear, left bottom, left top, from(#00A32E), to(#00C535));
  background: url(/public/fonts/8ba0d585d2031db2b0e0d46db18dbece.svg) 4px 0 no-repeat, linear-gradient(to top, #00A32E, #00C535);
  background-size: 70% 100%;
  font-size: 1.2em;
  color: white;
  text-align: center;
  padding: 4px 2px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: absolute;
  left: -1px;
  top: -1px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  line-height: 17px;
}

.condition-questions .screening-radio-question .radio label input:checked + div::after,
.condition-questions .screening-radio-question .checkbox label input:checked + div::after,
.condition-questions .screening-radio-question .btn-quote-option label input:checked + div::after {
  opacity: 1;
}

.declared-conditions {
  margin: 25px 0;
}

.declared-conditions .condition {
  background: rgba(240, 240, 235, 0.3);
  padding: 15px 0;
  margin: 0 0 15px 0;
}

.declared-conditions .condition .btn {
  margin-left: 10px;
}

@media all and (max-width: 634px) {
  .declared-conditions .condition {
    text-align: center;
  }
}

.declared-conditions .primary-condition {
  margin: 0;
}

.declared-conditions .linked-condition {
  padding-right: 5px;
}

.declared-conditions .actions button {
  float: right;
  margin-left: 10px;
}

.declared-conditions .reverse-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
  max-width: 160px;
  float: right;
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

.declared-conditions .reverse-buttons .declared-conditions-button {
  width: 70px;
}

@media all and (max-width: 634px) {
  .declared-conditions .reverse-buttons {
    max-width: 95px;
  }
}

.toc {
  text-align: left;
  padding-left: 15px;
  padding-top: 15px;
}

.medical-declaration-text-sub {
  color: #41A5F5;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

@media all and (max-width: 480px) {
  .payment-page .section-group {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0;
  }

  .payment-page .section-group > div {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.payment-page .section-group .section-group-content {
  padding: 5px;
}

@media all and (max-width: 480px) {
  .payment-page .section-group .section-group-content {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.payment-page .text-me-details-field {
  background: #A5CDDB;
  color: #F0F0EB;
  border-radius: 3px;
  height: 40px;
  padding: 0 15px;
  margin-bottom: 30px;
}

.payment-page .text-me-details-field .control-label {
  font-weight: normal;
}

.payment-page .text-me-details-field svg {
  font-size: 26px;
  padding-left: 1px;
  color: #0045A0;
  float: right;
  right: 0;
  top: 5px;
  position: absolute;
}

.payment-page .text-me-details-field .text-me-radio {
  float: right;
}

.payment-page .payments-modal {
  width: 100%;
  min-height: 655px;
  border: 0;
}

@media all and (min-width: 992px) {
  .payment-page .payments-modal {
    min-height: 600px;
  }
}

.payment-page .payment-logos {
  margin-top: -15px;
  margin-bottom: 15px;
}

@media all and (max-width: 480px) {
  .payment-page .payment-logos {
    text-align: center;
  }
}

.payment-page .payment-logos img {
  width: 100%;
}

@media all and (max-width: 480px) {
  .payment-page .payment-logos img {
    width: 60%;
  }
}

.payment-page .permissions-box {
  text-align: left;
  font-size: 0.8em;
}

.payment-page .permissions-box .title {
  font-size: 1.4em;
  margin-bottom: 30px !important;
}

.payment-page .permissions-box p {
  margin-top: 15px;
  font-size: 1em;
}

.payment-page .permissions-box .icon {
  font-size: 2em;
}

.payment-page .permissions-box .environment-text {
  font-size: 0.8em;
  font-weight: 500;
}

.payment-page .permissions-box .radio-group {
  padding: 0;
}

.payment-page .permissions-box .radio-group .radio-button {
  width: 10%;
}

.payment-page .permissions-box .radio-group .radio-text {
  width: 90%;
  margin: auto 0 auto 0;
}

.payment-page .permissions-box .radio-group .option {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  background-color: #FFF;
  padding: 15px;
  border: 1px solid #D1C7BD;
  font-size: 1.2em;
}

.payment-page .permissions-box .select-option {
  font-size: 1.3em;
}

@media all and (max-width: 480px) {
  .payment-page .benefits {
    font-size: 13px;
  }
}

.payment-page .back-button,
.payment-page .purchase-button {
  display: block;
  padding: 10px 30px;
  background: #0045A0;
  color: white;
  border-radius: 10px;
  letter-spacing: 1px;
  border: 1px solid #0045A0;
  min-width: 150px;
}

@media all and (min-width: 480px) {
  .payment-page .back-button,
  .payment-page .purchase-button {
    min-width: 200px;
    margin: 15px;
  }
}

.payment-page .back-button:hover,
.payment-page .purchase-button:hover {
  border: 1px #0045A0 solid;
  background: #0045A0;
}

.payment-page .payment-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.payment-page .payment-buttons .purchase-button-wrapper {
  display: block;
}

.payment-page .payment-buttons .purchase-button-wrapper .purchase-button {
  background: #00A32E;
  border: 1px solid #00A32E;
}

.payment-page .payment-buttons .purchase-button-wrapper .purchase-button:hover {
  border: 1px #0045A0 solid;
  background: #00A32E;
}

.payment-page .radio-group .option {
  border-radius: 3px;
}

.payment-page .payment-total-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
}

@media all and (max-width: 480px) {
  .payment-page .payment-total-price {
    padding: 10px;
  }
}

.payment-page .payment-total-price .total-pay-text {
  font-size: 30px;
}

@media all and (max-width: 480px) {
  .payment-page .payment-total-price .total-pay-text {
    font-size: 1em;
  }
}

.payment-page .payment-total-price span {
  font-size: 36px;
  font-weight: bold;
}

.payment-page .payment-total-price .quote-info__discount span {
  font-size: 1em;
}

.payment-page .payment-price-info {
  font-size: 1.2rem;
}

.payment-page .duplicate-warning {
  color: #0045A0;
  background: #e3f1fe;
  font-weight: bold;
  padding: 10px;
}

.payment-page .link-element {
  cursor: pointer;
  text-decoration: underline;
}

.payment-page .payment-step-container .radio-group,
.payment-page .payment-step-container .checkbox-group {
  padding: 10px;
}

.payment-page .payment-step-container .quote-marketing-checkbox-group,
.payment-page .payment-step-container .card-preferences-container .radio-group,
.payment-page .payment-step-container .auto-renewal-buttons,
.payment-page .payment-step-container .policy-document-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.payment-page .payment-step-container .option-new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  padding: 0 10px;
  margin-bottom: 10px;
}

@media all and (min-width: 480px) {
  .payment-page .payment-step-container .option-new {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

.payment-page .payment-step-container .option-new .radio,
.payment-page .payment-step-container .option-new .checkbox {
  margin: 0;
  padding: 0;
}

.payment-page .payment-step-container .option-new .radio label {
  padding-left: 0;
}

.payment-page .payment-step-container .option-new .radio-text,
.payment-page .payment-step-container .option-new .checkbox-text {
  font-size: 1em;
  margin: 10px 0;
  padding-left: 15px;
  text-align: left;
  height: auto;
}

.payment-page .payment-step-container .option-new .radio-button-square {
  width: auto !important;
}

.payment-page .payment-step-container .option-new .radio-button-square .has-error,
.payment-page .payment-step-container .option-new .checkbox-button-square .has-error {
  padding: 15px 0;
}

.payment-page .payment-step-container .option-new .radio-button-square .radio label div,
.payment-page .payment-step-container .option-new .radio-button-square .checkbox label div,
.payment-page .payment-step-container .option-new .checkbox-button-square .radio label div,
.payment-page .payment-step-container .option-new .checkbox-button-square .checkbox label div {
  border-radius: 4px;
  width: 25px !important;
  height: 25px !important;
  cursor: pointer;
}

.payment-page .payment-step-container .option-new .radio-button-square .radio label div:after,
.payment-page .payment-step-container .option-new .radio-button-square .checkbox label div:after,
.payment-page .payment-step-container .option-new .checkbox-button-square .radio label div:after,
.payment-page .payment-step-container .option-new .checkbox-button-square .checkbox label div:after {
  width: 25px !important;
  height: 25px !important;
  left: -1px;
  top: -1px;
  border-radius: 4px;
  background: url(/public/fonts/8ba0d585d2031db2b0e0d46db18dbece.svg) 4px 3px no-repeat, #009227;
  background-size: 18px 18px;
}

.payment-page .payment-step-container .quote-marketing-checkbox-group .option-new,
.payment-page .payment-step-container .policy-document-buttons .option-new,
.payment-page .payment-step-container .auto-renewal-buttons .option-new {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.payment-page .policy-doc-prefs-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.payment-page .policy-doc-prefs-info .policy-doc-prefs-icon {
  width: 10%;
  max-width: 60px;
  min-width: 40px;
  margin: 0 20px;
}

@media all and (max-width: 768px) {
  .payment-page .policy-doc-prefs-info .policy-doc-prefs-icon {
    margin: 0 10px;
  }
}

.payment-page .policy-doc-prefs-info .radio-group,
.payment-page .policy-doc-prefs-info .option-new {
  padding-left: 0;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.greetings {
  color: #0045A0;
}

.greetings .customer-name {
  font-size: 2em;
}

.greetings .greeting-1 {
  font-size: 1.5em;
}

.greetings .greeting-2 {
  font-size: 0.8em;
}

.section-space {
  padding-top: 0;
}

.declaration-confirm {
  border: 1px solid #F0F0EB;
  border-radius: 3px;
  margin-bottom: 15px;
  background: #FEFEFE;
  -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
}

.text-me-details-field {
  background: #A5CDDB;
  color: #F0F0EB;
  border-radius: 3px;
  height: 40px;
  padding: 0 15px;
  margin-bottom: 30px;
}

.text-me-details-field .control-label {
  font-weight: normal;
}

.text-me-details-field svg {
  font-size: 26px;
  padding-left: 1px;
  color: #0045A0;
  float: right;
  right: 0;
  top: 5px;
  position: absolute;
}

.text-me-details-field .text-me-radio {
  float: right;
}

.payments-modal {
  width: 100%;
  min-height: 655px;
  border: 0;
}

@media all and (min-width: 992px) {
  .payments-modal {
    min-height: 600px;
  }
}

.payment-logos {
  margin-top: -15px;
  margin-bottom: 15px;
}

@media all and (max-width: 480px) {
  .payment-logos {
    text-align: center;
  }
}

.payment-logos img {
  width: 100%;
}

@media all and (max-width: 480px) {
  .payment-logos img {
    width: 60%;
  }
}

.permissions-box {
  text-align: left;
  font-size: 0.8em;
}

.permissions-box .title {
  font-size: 1.4em;
  margin-bottom: 30px !important;
}

.permissions-box p {
  margin-top: 15px;
  font-size: 1em;
}

.permissions-box .icon {
  font-size: 2em;
}

.permissions-box .environment-text {
  font-size: 0.8em;
  font-weight: 500;
}

.permissions-box .radio-group {
  padding: 0;
}

.permissions-box .radio-group .radio-button {
  width: 10%;
}

.permissions-box .radio-group .radio-text {
  width: 90%;
  margin: auto 0 auto 0;
}

.permissions-box .radio-group .option {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  background-color: #FFF;
  padding: 15px;
  border: 1px solid #D1C7BD;
  font-size: 1.2em;
}

.permissions-box .select-option {
  font-size: 1.3em;
}

@media all and (max-width: 480px) {
  .benefits {
    font-size: 13px;
  }
}

.duplicate-warning {
  color: #0045A0;
  background: #e3f1fe;
  font-weight: bold;
  padding: 10px;
}

.agg-contact-details-section {
  padding: 5px;
}

.agg-contact-details-section > .row {
  margin-bottom: 15px;
  padding: 0 15px;
}

@media all and (min-width: 768px) {
  .agg-contact-details-section .manual-field-label {
    text-align: right;
  }
}

.agg-contact-details-section .lead-traveller-name {
  font-weight: bold;
  color: #0045A0;
  margin: 15px 0;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.title-your-renewal {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #0045A0;
}

.renewal-setting {
  color: #41a5f5;
  cursor: pointer;
}

.section-group-content:not(.no-padding) {
  padding: 20px 20px 0 20px;
}

.notes-your-renewal {
  background-color: #FFF;
  padding: 15px;
  margin: 0 5px 0 5px;
  border: 1px solid #D1C7BD;
  font-size: 15px;
}

.notes-your-renewal p {
  font-weight: normal;
}

.selection-your-renewal {
  margin-right: -10px;
  margin-left: -10px;
}

.radio-group {
  padding: 0;
}

.radio-group .radio-button {
  width: 10%;
}

@media all and (max-width: 600px) {
  .radio-group .radio-button {
    width: 20% !important;
    font-size: 0.8em;
  }
}

.radio-group .radio-button .sessioncamhidetext.disabled label > div,
.radio-group .radio-button .radio.disabled label > div {
  border: 1px solid #8A8A8A98 !important;
}

@media all and (max-width: 480px) {
  .radio-group .radio-button {
    width: 100% !important;
  }

  .radio-group .radio-button .radio {
    text-align: center;
  }

  .radio-group .radio-button .radio label {
    padding-left: 10px;
  }
}

@media all and (max-width: 340px) {
  .radio-group .radio-button {
    font-size: 0.6em;
  }
}

.radio-group .radio-text {
  width: 90%;
  margin: auto 0 auto 0;
}

@media all and (max-width: 600px) {
  .radio-group .radio-text {
    width: 80% !important;
    font-size: 0.8em;
  }
}

@media all and (max-width: 480px) {
  .radio-group .radio-text {
    width: 100% !important;
    text-align: center;
    height: 20px;
  }
}

@media all and (max-width: 600px) {
  .radio-group .dont-save-text {
    font-size: 0.8em;
  }
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.traveller-conditions {
  color: #0078FF;
}

.quote-summary-card-container {
  background-color: #FFFFFF;
  padding: 20px;
  border-bottom: 1px solid #ced9e5;
}

.quote-summary-card-container .flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media all and (max-width: 480px) {
  .quote-summary-card-container .summary-section-title {
    margin-bottom: 10px;
  }
}

.quote-summary-card-container .info-popup {
  color: #41a5f5;
  font-size: 1.4rem;
}

.quote-summary-card-container .flex--20 {
  min-width: 150px;
}

.quote-summary-card-container .flex--stretch {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.quote-summary-card-container .traveller-info-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media all and (max-width: 480px) {
  .quote-summary-card-container .traveller-info-container {
    min-width: 300px;
  }
}

.quote-summary-card-container .traveller-info-container svg {
  width: 25px;
}

.quote-summary-card-container .traveller-info-container .traveller-info {
  padding: 5px 0 10px 10px;
}

.quote-summary-card-container .traveller-info-container .traveller-info .traveller-medical-section .title {
  margin: 10px 0 5px;
}

.quote-summary-card-container .traveller-info-container .traveller-info.single {
  padding: 0 0 10px 10px;
}

.quote-summary-card-container .traveller-info-container .traveller-info .title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0045A0;
}

.quote-summary-card-container .traveller-info-container .traveller-info .sub-title {
  color: #00A32E;
}

.quote-summary-card-container .traveller-info-container.extra-cover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.quote-summary-card-container .traveller-info-container.extra-cover .flex-container {
  min-width: 250px;
}

.quote-summary-card-container .cover-level-list-container {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media all and (min-width: 480px) {
  .quote-summary-card-container .cover-level-list-container {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.quote-summary-card-container .cover-level-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10px;
}

.quote-summary-card-container .cover-level-list.cancellation-note .cancellation-note-icon {
  width: 25px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.quote-summary-card-container .cover-level-list.cancellation-note .cancellation-note-icon svg {
  margin: 0;
}

.quote-summary-card-container .cover-level-list.cancellation-note .sub-title {
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1em;
}

.quote-summary-card-container .cover-level-list.no-padding {
  padding-top: 0;
}

.quote-summary-card-container .cover-level-list .adm-icon__svg {
  margin-right: 10px;
}

.quote-summary-card-container .cover-level-list .sub-title {
  color: #00A32E;
  font-size: 1.4rem;
}

.close-selection {
  background-color: #FFFFFF;
  padding: 20px;
  border-bottom: 1px solid #ced9e5;
}

.agg-edit-travellers-container {
  background-color: #FFFFFF;
  padding: 20px;
}

.summary-button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #FFFFFF;
}

.summary-button-container .box--half {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30%;
          flex: 1 1 30%;
  max-width: 300px;
}

.quote-summary-header {
  background: #ABEFEE;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 30vh;
  min-height: 260px;
  position: relative;
}

@media all and (max-width: 480px) {
  .quote-summary-header {
    min-height: 300px;
  }
}

.quote-summary-header .sea-bg {
  height: 100%;
  background-image: url(/public/images/ba95fd083d2e4e23dd6fe81f46899ca6.png);
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: auto;
}

.quote-summary-header .page-header-content-wrapper {
  position: absolute;
  width: 100vw;
  left: 0;
  top: 0;
  height: 30vh;
  min-height: 260px;
}

@media all and (max-width: 480px) {
  .quote-summary-header .page-header-content-wrapper {
    min-height: 300px;
  }
}

.quote-summary-header .page-header-content-wrapper .logo-container > div {
  padding: 0;
}

@media all and (min-width: 992px) {
  .quote-summary-header .page-header-content-wrapper .logo-container {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media all and (min-width: 1200px) {
  .quote-summary-header .page-header-content-wrapper .logo-container {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@media all and (min-width: 768px) {
  .quote-summary-header .page-header-content-wrapper .logo-container img {
    max-width: 130px;
    padding: 10px;
  }
}

.quote-summary-header .page-header-content-wrapper .logo-container .logo-divider {
  min-height: 30px;
}

.quote-summary-header .page-header-content-wrapper .logo-container .logo-title {
  font-size: 1em;
  color: #0045A0;
}

@media all and (min-width: 480px) {
  .quote-summary-header .page-header-content-wrapper .logo-container .logo-title {
    font-size: 1.3em;
  }
}

.quote-summary-header .page-header-container {
  max-width: 708px;
  margin: auto;
  height: 100%;
  position: relative;
}

@media all and (max-width: 480px) {
  .quote-summary-header .page-header-container {
    padding: 10px;
  }
}

.quote-summary-header .page-header-container .page-header-content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-line-pack: distribute;
      align-content: space-around;
  height: 100%;
  z-index: 9999;
  width: 70%;
}

.quote-summary-header .page-header-container .title-section {
  padding-top: 50px;
}

.quote-summary-header .page-header-container .title-section h2 {
  color: #0045A0;
  margin: 0;
  font-weight: 600;
  padding-top: 5px;
}

@media all and (max-width: 768px) {
  .quote-summary-header .page-header-container .title-section h2 {
    font-size: 1.3em;
  }
}

.quote-summary-header .page-header-container .quote-reference {
  font-weight: 600;
  padding-bottom: 20px;
}

@media all and (max-width: 768px) {
  .quote-summary-header .page-header-container .quote-reference {
    font-size: 0.8em;
  }
}

.quote-summary-header .page-header-container .price-display-value {
  font-size: 44px;
  font-weight: bold;
}

.quote-summary-header .page-header-container [class^=admiral-bg] {
  z-index: 100;
  position: absolute;
  height: 100%;
  bottom: 0;
  right: 0;
}

@media all and (max-width: 480px) {
  .quote-summary-header .page-header-container [class^=admiral-bg] {
    height: 85%;
  }
}

.quote-summary-header .page-header-container .admiral-bg--sm {
  display: inline;
}

.quote-summary-header .page-header-container .admiral-bg--lg {
  display: none;
}

@media all and (min-width: 480px) {
  .quote-summary-header .page-header-container .admiral-bg--sm {
    display: none;
  }

  .quote-summary-header .page-header-container .admiral-bg--lg {
    display: inline;
  }
}

.quote-summary-main .section-group {
  margin-top: 30px;
  border: none;
}

@media all and (max-width: 480px) {
  .quote-summary-main .section-group {
    margin-top: 0;
  }
}

.quote-card-title {
  background: #0045A0;
  color: white;
  padding: 10px 12px;
  margin-bottom: 15px;
}

.important-title {
  font-weight: bold;
  color: #0045A0;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.medical-important-container {
  padding: 5px;
}

.medical-important-container .important-information {
  font-weight: bold;
  margin: 15px 0;
  color: #0045A0;
}

.medical-important-container .important-information:first-of-type {
  margin-top: 0;
}

.medical-important-container .important-information {
  font-weight: bold;
  margin: 15px 0;
  color: #0045A0;
}

.medical-important-container .medical-important-modal {
  margin: auto;
  font-size: 1.2em;
}

.medical-important-container .changes-in-health {
  color: #0045A0;
}

.medical-important-container ul {
  margin-left: 30px;
}

.medical-question {
  padding: 15px 0 5px;
}

.medical-question .medical-question-buttons {
  margin: 15px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.medical-question .medical-question-buttons .answer {
  margin: 0;
}

.medical-question .medical-question-buttons .has-error .answer .yes,
.medical-question .medical-question-buttons .has-error .answer .no {
  border: 2px solid #FF7911 !important;
  color: #FF7911 !important;
}

.medical-question .medical-question-buttons .medical-btn-new {
  text-align: center;
  border-radius: 6px !important;
  color: #0045A0;
  padding: 10px 60px;
  border: 2px #0045A0 solid;
  margin: 10px;
  max-width: 200px;
}

@media all and (max-width: 480px) {
  .medical-question .medical-question-buttons .medical-btn-new {
    width: 300px;
    margin: 0 10px 10px;
  }
}

.medical-question input:checked ~ .medical-btn-new {
  opacity: 1;
  background: #0045A0;
  color: white;
  border: 1px solid #0080C2;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.schemes-loader {
  position: relative;
  min-height: 200px;
}

.schemes-loader .loading-icon {
  width: 25px;
  height: 25px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.scheme-choice-section {
  max-width: 708px;
  margin: auto;
  text-align: center;
}

@media all and (max-width: 480px) {
  .scheme-choice-section h1 {
    font-size: 1.7em;
  }
}

.scheme-choice-section .active {
  outline-offset: -5px;
  outline: 6px solid #00A32E;
  -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.4);
          box-shadow: 0 6px 6px rgba(0, 0, 0, 0.4);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.scheme-choice-section .available-quotes .quote-container {
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
  margin: 30px 0 30px 0;
}

.scheme-choice-section .available-quotes .quote-container .quote-header-container div:nth-child(1) {
  padding-right: 0;
  padding-left: 0;
}

.scheme-choice-section .available-quotes .quote-container .quote-header-container div:nth-child(2) {
  padding-right: 0;
  border-right: 3px solid #F0F0EC;
  padding-left: 0;
  border-left: 3px solid #F0F0EC;
}

.scheme-choice-section .available-quotes .quote-container .quote-header-container div:nth-child(3) {
  padding-left: 0;
  padding-right: 0;
}

.scheme-choice-section .available-quotes .quote-container .quote-header-container .quote-header {
  background: #0045A0;
  color: #FEFEFE;
  text-transform: uppercase;
  padding: 15px;
  font-size: 1.4em;
  text-align: center;
}

@media all and (max-width: 480px) {
  .scheme-choice-section .available-quotes .quote-container .quote-header-container .quote-header {
    font-size: 1em;
  }
}

.scheme-choice-section .available-quotes .quote-container .quote-header-container .quote-header-excess-banner {
  position: absolute;
  left: -3px;
  top: -53px;
  width: calc(100% + 6px);
  height: 50px;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #00A32E;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  font-size: 1.2em;
}

.scheme-choice-section .available-quotes .quote-container .quote-header-container .quote-header-excess-banner div {
  margin: 5px;
}

@media all and (max-width: 768px) {
  .scheme-choice-section .available-quotes .quote-container .quote-header-container .quote-header-excess-banner {
    font-size: 1em;
  }
}

@media all and (max-width: 480px) {
  .scheme-choice-section .available-quotes .quote-container .quote-header-container .quote-header-excess-banner {
    font-size: 0.8em;
  }
}

.scheme-choice-section .available-quotes .quote-container .quote-body {
  padding: 0 15px 0 15px;
  border-top: none;
  background: #FEFEFE;
  position: relative;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .quote-value-container {
  background-color: #FEFEFE;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .quote-value-container .discount-price-strikethrough {
  font-size: 1.3rem;
  text-decoration: line-through;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .quote-value-container div:nth-child(1) {
  padding-right: 0;
  padding-left: 0;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .quote-value-container div:nth-child(2) {
  padding-right: 0;
  border-right: 3px solid #F0F0EC;
  padding-left: 0;
  border-left: 3px solid #F0F0EC;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .quote-value-container div:nth-child(3) {
  padding-left: 0;
  padding-right: 0;
}

@media all and (max-width: 480px) {
  .scheme-choice-section .available-quotes .quote-container .quote-body .quote-value-container {
    max-height: 69.59px;
  }

  .scheme-choice-section .available-quotes .quote-container .quote-body .quote-value-container h1 {
    font-size: 2.5rem;
  }
}

.scheme-choice-section .available-quotes .quote-container .quote-body .quote-value-container .quote-prices {
  background-color: #FEFEFE;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .quote-value-container .quote-prices h1.discount-price {
  margin-top: 10px;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .quote-value-container .quote-prices.selected {
  background: #0045A0;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .quote-value-container .quote-prices.selected h1 > span {
  color: #FEFEFE !important;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .quote-value-container .quote-prices.selected .discount-price-strikethrough {
  color: #FEFEFE !important;
}

@media all and (max-width: 350px) {
  .scheme-choice-section .available-quotes .quote-container .quote-body .quote-value-container .quote-prices h1 {
    font-size: 2.2rem;
  }
}

.scheme-choice-section .available-quotes .quote-container .quote-body .discount {
  max-height: 69.59px;
}

@media all and (max-width: 480px) {
  .scheme-choice-section .available-quotes .quote-container .quote-body .discount {
    max-height: 55px;
  }
}

.scheme-choice-section .available-quotes .quote-container .quote-body .quote-select-container {
  padding-top: 69px;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .quote-select-container.discount {
  padding-top: 70px;
}

@media all and (max-width: 480px) {
  .scheme-choice-section .available-quotes .quote-container .quote-body .quote-select-container.discount {
    padding-top: 56px;
  }
}

@media all and (max-width: 480px) {
  .scheme-choice-section .available-quotes .quote-container .quote-body .quote-select-container {
    padding-top: 53px;
  }
}

.scheme-choice-section .available-quotes .quote-container .quote-body .quote-select-container .button-wrapper-0 {
  padding-right: 0;
  padding-left: 0;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .quote-select-container .button-wrapper-1 {
  padding-right: 0;
  border-right: 3px solid #F0F0EC;
  padding-left: 0;
  border-left: 3px solid #F0F0EC;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .quote-select-container .button-wrapper-2 {
  padding-left: 0;
  padding-right: 0;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .quote-select-annual-container .button-wrapper-0 {
  padding-right: 0;
  padding-left: 0;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .quote-select-annual-container .button-wrapper-1 {
  padding-right: 0;
  border-right: 3px solid #F0F0EC;
  padding-left: 0;
  border-left: 3px solid #F0F0EC;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .quote-select-annual-container .button-wrapper-2 {
  padding-left: 0;
  padding-right: 0;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .quote-documents-container .document-wrapper-0 {
  padding-right: 0;
  padding-left: 0;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .quote-documents-container .document-wrapper-1 {
  padding-right: 0;
  border-right: 3px solid #F0F0EC;
  padding-left: 0;
  border-left: 3px solid #F0F0EC;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .quote-documents-container .document-wrapper-2 {
  padding-left: 0;
  padding-right: 0;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .benefit-header {
  text-align: center;
  background-color: #F0F0EC;
  padding: 10px 0 10px 0;
}

@media all and (max-width: 480px) {
  .scheme-choice-section .available-quotes .quote-container .quote-body .benefit-header {
    font-size: 1.4rem;
  }
}

.scheme-choice-section .available-quotes .quote-container .quote-body .benefit-body {
  text-align: center;
  padding: 10px 0 10px 0;
}

@media all and (max-width: 480px) {
  .scheme-choice-section .available-quotes .quote-container .quote-body .benefit-body {
    font-size: 1.4rem;
  }
}

.scheme-choice-section .available-quotes .quote-container .quote-body .benefit-body-wrapper-0 {
  padding-right: 0;
  padding-left: 0;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .benefit-body-wrapper-1 {
  padding-right: 0;
  border-right: 3px solid #F0F0EC;
  padding-left: 0;
  border-left: 3px solid #F0F0EC;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .benefit-body-wrapper-2 {
  padding-left: 0;
  padding-right: 0;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .more-info-wrapper-0 {
  padding-right: 0;
  padding-left: 0;
  padding-top: 15px;
  border-top: 3px solid #F0F0EC;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .more-info-wrapper-1 {
  padding-right: 0;
  border-right: 3px solid #F0F0EC;
  padding-left: 0;
  border-left: 3px solid #F0F0EC;
  padding-top: 15px;
  border-top: 3px solid #F0F0EC;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .more-info-wrapper-2 {
  padding-right: 0;
  padding-left: 0;
  padding-top: 15px;
  border-top: 3px solid #F0F0EC;
}

.scheme-choice-section .available-quotes .quote-container .quote-body span {
  color: #0045A0;
}

.scheme-choice-section .available-quotes .quote-container .quote-body input {
  display: block;
  opacity: 0;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .has-error label {
  color: #282828 !important;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .has-error .help-block {
  display: none;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .select-quote-btn.disabled {
  cursor: not-allowed;
  background: #feb645;
}

.scheme-choice-section .available-quotes .quote-container .quote-body label {
  width: 100%;
  padding: 0;
}

.scheme-choice-section .available-quotes .quote-container .quote-body label .select-quote-btn {
  background: -webkit-gradient(linear, left bottom, left top, from(#0080CC), to(#00B8EA));
  background: linear-gradient(to top, #0080CC, #00B8EA);
  border: 1px solid #0080C2;
  border-radius: 3px;
  color: #FEFEFE;
  padding: 10px 0;
  text-transform: capitalize;
  cursor: pointer;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  margin-bottom: 15px;
  margin-top: 15px;
}

.scheme-choice-section .available-quotes .quote-container .quote-body label .select-quote-btn span {
  margin-left: 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: #FEFEFE;
}

@media all and (max-width: 480px) {
  .scheme-choice-section .available-quotes .quote-container .quote-body label .select-quote-btn {
    font-size: 1rem;
  }
}

.scheme-choice-section .available-quotes .quote-container .quote-body label input:checked + .select-quote-btn {
  opacity: 1;
  background: -webkit-gradient(linear, left bottom, left top, from(#00A32E), to(#00C535));
  background: linear-gradient(to top, #00A32E, #00C535);
  border: 1px solid #009227;
  color: #FEFEFE;
}

.scheme-choice-section .available-quotes .quote-container .quote-body label input:checked + .select-quote-btn span {
  color: #FEFEFE;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.scheme-choice-section .available-quotes .quote-container .quote-body label input:focus + .select-quote-btn {
  -webkit-box-shadow: 0 0 3px #282828;
          box-shadow: 0 0 3px #282828;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .quote-section {
  border-top: 1px solid #D1C7BD;
  padding: 6px 0;
  min-height: 68px;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .quote-section span {
  color: #41A5F5;
  font-size: 0.8em;
  cursor: pointer;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .quote-section h4 {
  margin-bottom: 0;
  background-color: #FEFEFE;
}

.scheme-choice-section .available-quotes .quote-container .quote-body .more-info-btn {
  border: 1px solid #B8B8CC;
  background: -webkit-gradient(linear, left bottom, left top, from(#E0E0E7), to(#F8F8F8));
  background: linear-gradient(to top, #E0E0E7, #F8F8F8);
  border-radius: 3px;
  color: #282828;
  font-weight: normal;
  cursor: pointer;
  padding: 10px 15px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media all and (max-width: 480px) {
  .scheme-choice-section .available-quotes .quote-container .quote-body .more-info-btn {
    font-size: 1rem;
  }
}

.scheme-choice-section .available-quotes .quote-container .sticky-container-prices {
  height: 100%;
  z-index: 1000;
  overflow: hidden;
  max-width: 708px;
  position: absolute;
  width: 100%;
  pointer-events: none;
}

.quote-documents .btn-documents {
  border: 1px solid #B8B8CC;
  background: -webkit-gradient(linear, left bottom, left top, from(#E0E0E7), to(#F8F8F8));
  background: linear-gradient(to top, #E0E0E7, #F8F8F8);
  border-radius: 3px;
  color: #282828;
  font-weight: normal;
  cursor: pointer;
  padding: 5px 15px;
  width: 100%;
  margin-bottom: 15px;
  white-space: normal;
  text-align: center;
}

@media all and (max-width: 480px) {
  .quote-documents .btn-documents {
    font-size: 1rem;
  }
}

@media all and (max-width: 380px) {
  .quote-documents .btn-documents {
    padding: 5px 10px;
  }
}

@media all and (max-width: 320px) {
  .quote-documents .btn-documents {
    padding: 5px 3px;
    font-size: 0.7rem;
  }
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.modal-content .modal-header {
  background: #0045A0;
  color: #A5CDDB;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.modal-content .modal-header h4 {
  color: #A5CDDB;
}

.modal-content .modal-header .close {
  color: #A5CDDB;
}

.info-btn {
  cursor: pointer;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.traveller {
  background: #FEFEFE;
  padding-top: 10px;
}

.traveller h5 {
  font-weight: bold;
  margin-bottom: 15px;
}

.trip-type-container {
  margin-bottom: 20px;
  padding: 0 15px;
  text-align: center;
}

.trip-type-container .trip-type-text {
  white-space: nowrap;
}

@media all and (max-width: 480px) {
  .trip-type-container h1 > div {
    font-size: 0.8em;
  }
}

@media all and (max-width: 370px) {
  .trip-type-container h1 > div {
    font-size: 0.7em;
  }
}

@media all and (max-width: 370px) {
  .trip-type-container h4 > div {
    font-size: 0.7em;
  }
}

.trip-type-container .trip-type-btn-container {
  padding: 0;
}

.trip-type-container input {
  display: block;
  opacity: 0;
}

.trip-type-container label {
  padding: 0;
  width: 100%;
}

.trip-type-container .single {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.trip-type-container .annual {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.trip-type-container .trip-type-btn {
  background: -webkit-gradient(linear, left bottom, left top, from(#E0E0E7), to(#F8F8F8));
  background: linear-gradient(to top, #E0E0E7, #F8F8F8);
  border: 1px solid #B8B8CC;
  padding: 15px;
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media all and (max-width: 320px) {
  .trip-type-container .trip-type-btn {
    height: 135px;
  }
}

.trip-type-container .trip-type-btn svg {
  font-size: 1em;
  width: 45px;
  height: 50px;
}

.trip-type-container .trip-type-btn p {
  font-weight: lighter;
  text-transform: uppercase;
  font-size: 0.8em;
}

.trip-type-container input:checked + .trip-type-btn {
  background: -webkit-gradient(linear, left bottom, left top, from(#11448C), to(#2350A0));
  background: linear-gradient(to top, #11448C, #2350A0);
  border: 1px solid #0B2C5B;
  color: #FEFEFE;
  position: relative;
}

.trip-type-container input:checked + .trip-type-btn svg {
  fill: #FEFEFE;
}

.trip-type-container input:checked + .trip-type-btn:after {
  content: "";
  border-bottom: 10px solid white;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  left: 47%;
  bottom: -2px;
}

.trip-type-container input:focus + .trip-type-btn {
  -webkit-box-shadow: inset 0 0 16px #41A5F5;
          box-shadow: inset 0 0 16px #41A5F5;
}

.group-type-selection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media all and (max-width: 480px) {
  label[for=start-date],
  label[for=end-date],
  .date-picker {
    width: 100% !important;
  }
}

.radio-button-text svg {
  margin-bottom: 5px;
}

@media all and (max-width: 370px) {
  .section-title > h2 {
    font-size: 1.3em;
  }
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.destinations-inputs > div {
  margin-bottom: 5px;
}

.destinations-inputs > div:last-of-type {
  margin-bottom: 0;
}

.single-trip-europe-info .info-annie-container {
  color: #4F4F4F;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.trash-btn {
  position: relative;
  z-index: 2;
  float: right;
  margin-top: -30px;
}

.margin-bottom {
  margin-bottom: 15px;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.customer-area-container {
  border-radius: 3px;
  background: #FEFEFE;
  position: relative;
  color: #4F4F4F;
  font-size: 1.2em;
}

.customer-area-container h4,
.customer-area-container h3,
.customer-area-container h2 {
  margin-top: 30px;
  margin-bottom: 20px;
  color: #4F4F4F;
}

.customer-area-container h2 {
  font-size: 26px;
}

.blue-section {
  border: 1px solid #41A5F5;
  border-radius: 3px;
  background: #e4f4ff;
  margin-bottom: 15px;
  padding: 15px;
  color: #0045A0;
}

.blue-section .form-control {
  border: 1px solid #41A5F5;
}

.blue-section strong {
  color: #0045A0;
}

.blue-section h4,
.blue-section h3 {
  color: #0045A0 !important;
}

.blue-section a {
  cursor: pointer;
}

.blue-section a:hover {
  text-decoration: none;
}

.blue-section-group {
  border: 1px solid #41A5F5;
  border-radius: 3px;
  margin-bottom: 15px;
  overflow: hidden;
}

.blue-section-group .blue-section {
  border-radius: 0;
  margin-bottom: 0;
  border: none;
  border-top: 1px solid #41A5F5;
}

.blue-section-group .blue-section:first-child {
  border-top: none;
}

.customer-section-title {
  color: #0045A0;
}

.customer-section-title h1 {
  font-size: 30px;
  font-weight: bold;
  margin: 0px -15px 25px -15px;
  padding: 15px;
  background-color: #2350A0;
  color: #FFF;
}

.customer-section-title h3 {
  font-weight: bold;
  margin: 0px -15px 25px -15px;
  padding: 15px;
  background-color: #2350A0;
  color: #FFF;
}

.customer-section-title .login-failure {
  color: #CC0033;
  font-size: 0.9em;
}

.accessibility-support-container {
  border-radius: 5px;
  -webkit-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  padding: 15px;
  margin: 30px auto 30px auto;
  max-width: 708px;
}

.accessibility-support-container h3 {
  font-weight: bold;
  margin: 0px -15px 25px -15px;
  padding: 15px;
  background-color: #2350A0;
  color: #FFF;
}

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

.redirect svg {
  font-size: 2em;
  margin: 15px auto;
}

.underline {
  text-decoration: underline;
}

.button-bar {
  margin-top: 10px;
}

.button-bar__yes {
  margin-right: 20px;
}

.button-bar__yes,
.button-bar__no {
  font-size: 16px;
}

.button-bar__no {
  background-color: #ececec;
}

.clickable-text {
  font-weight: bold;
  color: #0045A0;
  cursor: pointer;
}

.cancel-loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.bold {
  font-weight: bold;
}

.expand-icon {
  color: #41a5f5;
}

iframe {
  border: 0;
}

.medium-width {
  font-size: 16px;
  width: 180px;
}

@media all and (max-width: 480px) {
  .medium-width {
    font-size: 14px;
  }
}

.full-width {
  font-size: 16px;
}

@media all and (max-width: 480px) {
  .full-width {
    font-size: 14px;
  }
}

.blue-divider {
  border: 0.5px solid #A5CDDB;
}

.faqs a {
  color: #317AF7 !important;
}

.radio-questions .answer input {
  display: block;
  opacity: 0;
}

.radio-questions .answer .yes {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.radio-questions .answer .no {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.radio-questions label {
  padding-left: 0;
  width: 100%;
  font-weight: bold;
}

.radio-questions label .label-btn {
  padding: 10px 15px;
  text-align: center;
  font-size: 0.8em;
  text-transform: capitalize;
  cursor: pointer;
  font-weight: bold;
  color: #282828;
  border: 1px solid #B8B8CC;
  background: -webkit-gradient(linear, left bottom, left top, from(#E0E0E7), to(#F8F8F8));
  background: linear-gradient(to top, #E0E0E7, #F8F8F8);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.radio-questions label input:disabled + .label-btn {
  opacity: 0.6 !important;
  cursor: wait;
}

.radio-questions label input:disabled + .label-btn:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.radio-questions label input:checked ~ .label-btn.yes {
  opacity: 1;
  background: -webkit-gradient(linear, left bottom, left top, from(#0080CC), to(#00B8EA));
  background: linear-gradient(to top, #0080CC, #00B8EA);
  color: #FEFEFE;
  border: 1px solid #0080C2;
}

.radio-questions label input:checked ~ .label-btn.no {
  position: relative;
  opacity: 1;
  background: -webkit-gradient(linear, left bottom, left top, from(#0080CC), to(#00B8EA));
  background: linear-gradient(to top, #0080CC, #00B8EA);
  color: #FEFEFE;
  border: 1px solid #0080C2;
  right: 1px;
}

.radio-questions label input:not(:checked) ~ .label-btn.no {
  border-left: none;
}

.radio-questions input:focus + .label-btn {
  -webkit-box-shadow: 0 0 3px #282828;
          box-shadow: 0 0 3px #282828;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

@media all and (max-width: 480px) {
  .last-name {
    margin-top: 20px;
  }
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.summary-info {
  font-weight: bold;
  margin: 15px 0;
}

.summary-info .info {
  color: #4F4F4F;
  text-transform: capitalize;
  text-align: left;
}

@media all and (max-width: 480px) {
  .edit-quote-button {
    font-size: 14px;
    width: 150px;
  }

  .edit-quote-button svg {
    display: none;
  }
}

@media all and (max-width: 340px) {
  .edit-quote-button {
    font-size: 12px;
    width: 125px;
  }
}

@media all and (max-width: 480px) {
  .documents-button {
    font-size: 14px;
  }

  .documents-button svg {
    display: none;
  }
}

@media all and (max-width: 340px) {
  .documents-button {
    font-size: 12px;
    width: 125px;
  }
}

.customer-documents {
  margin: 10px -15px;
}

.customer-documents .document-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: auto 15px;
  background: -webkit-gradient(linear, left bottom, left top, from(#11448C), to(#2350A0));
  background: linear-gradient(to top, #11448C, #2350A0);
  cursor: pointer;
  color: white;
  margin-bottom: 15px;
  border-radius: 3px;
  font-weight: bold;
  min-height: 99px;
}

.customer-documents .document-btn:hover {
  -webkit-box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.5);
}

.customer-documents .document-btn span {
  font-size: 0.6em;
}

.customer-documents .Quotation {
  height: 100px;
}

@media all and (max-width: 768px) {
  .customer-documents .Quotation {
    height: auto;
  }
}

.return-to-account-btn {
  color: #0078FF;
  cursor: pointer;
  font-weight: bold;
}

.return-to-account-btn:hover {
  text-decoration: none;
}

.return-to-account-btn:before {
  content: "";
  font-family: "FontAwesome";
  margin-right: 5px;
}

.section-header {
  border-radius: 5px;
  -webkit-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  padding-bottom: 0px;
  margin: 30px auto 30px auto;
  color: #0045A0;
}

.section-header .row {
  margin-left: 0;
  margin-right: 0;
  border-bottom: 1px solid #C6E2E6;
  padding-top: 15px;
  padding-bottom: 15px;
}

.section-header .row:first-of-type {
  border-bottom: none;
  padding-top: 0;
  padding-bottom: 0;
}

.section-header .row:nth-of-type(2) {
  padding-top: 5px;
}

.section-header .row:last-of-type {
  border-bottom: none;
}

.section-header h1 {
  font-size: 30px;
  font-weight: bold;
  margin: 0px -15px 10px -15px;
  padding: 15px;
  background-color: #2350A0;
  color: #FFF;
}

.section-header h3 {
  font-weight: bold;
  margin: 0px -15px 10px -15px;
  padding: 15px;
  background-color: #2350A0;
  color: #FFF;
}

.document-area__download {
  float: right;
}

.document-area__download svg {
  color: #41a5f5 !important;
}

.document-area__download.dynamic {
  cursor: pointer;
}

.premium-info {
  font-weight: bold;
  font-size: 3rem;
}

@media all and (max-width: 768px) {
  .detail-header-buttons .document-button {
    text-align: center;
  }
}

.detail-header-buttons .card-preference {
  text-align: center;
}

@media all and (max-width: 768px) {
  .detail-header-buttons .card-preference {
    padding: 10px 0;
  }
}

.detail-header-buttons .edit-button {
  text-align: right;
}

@media all and (max-width: 768px) {
  .detail-header-buttons .edit-button {
    text-align: center !important;
  }
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.info-banner {
  width: 100%;
  padding: 8px;
  background-color: #0045A0;
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3px;
}

.info-banner__icon {
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.info-banner__icon svg {
  height: 50px;
  width: 50px;
  fill: #FEFEFE !important;
}

.info-banner__title {
  display: block;
  margin-bottom: 3px;
  font-size: 20px;
  font-weight: bold;
}

.info-banner__text {
  font-size: 14px;
}

.info-banner__info {
  border-left: 2px solid #FFF;
  padding-left: 10px;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.document-area table {
  table-layout: auto;
}

.document-area__download svg {
  font-size: 30px;
  color: #0045A0;
}

.document-area .download-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.document-area .download-container .view {
  width: 50%;
  text-align: right;
}

.document-area .download-container .download-file {
  width: 50%;
  text-align: right;
}

@media all and (max-width: 480px) {
  .document-area th#Description,
  .document-area th#Date {
    display: none;
  }

  .document-area tbody tr td.document-description,
  .document-area tbody tr td.date {
    display: none;
  }
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.checkbox-container .checkbox-element .radio-container.inline {
  display: inline-block;
}

.checkbox-container .checkbox-element input {
  opacity: 0;
  margin: 0;
}

.checkbox-container .checkbox-element .form-radio {
  padding: 7px;
}

.checkbox-container .checkbox-element .form-radio label {
  padding-left: 0;
  font-weight: bold;
}

.checkbox-container .checkbox-element .form-radio label .custom-checkbox {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #FEFEFE;
  margin-right: 10px;
  margin-bottom: -6px;
  border: 1px solid #B8B8CC;
  position: relative;
  z-index: 1;
}

.checkbox-container .checkbox-element .form-radio label .custom-checkbox:after {
  opacity: 0;
  content: "";
  background: url(/public/fonts/eb3e0ac26fbf1f15b9dfc9d24b787188.svg) center center no-repeat;
  font-size: 1.5em;
  color: #00A32E;
  text-align: center;
  padding: 0;
  width: 32px;
  height: 37px;
  position: absolute;
  left: 1px;
  bottom: -3px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  line-height: 17px;
}

.checkbox-container .checkbox-element .form-radio label input:checked + div::after {
  opacity: 1;
}

.checkbox-container .checkbox-element .form-radio label input:focus + div {
  -webkit-box-shadow: 0 0 3px #282828;
          box-shadow: 0 0 3px #282828;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

@media all and (max-width: 480px) {
  .card-option-button {
    font-size: 14px;
    width: 150px;
  }

  .card-option-button svg {
    display: none;
  }
}

@media all and (max-width: 340px) {
  .card-option-button {
    font-size: 12px;
    width: 125px;
  }
}

.show-on-mobile {
  display: none;
}

@media all and (max-width: 768px) {
  .show-on-mobile {
    display: block;
  }
}

@media all and (max-width: 1200px) {
  .text-aligning {
    padding-left: 0;
  }
}

@media all and (min-width: 1200px) {
  .text-aligning {
    padding-left: 65px !important;
  }
}

.renewal-buttons {
  font-size: 16px;
  font-weight: normal;
  width: 300px !important;
}

@media all and (max-width: 480px) {
  .renewal-buttons {
    font-size: 14px;
  }
}

.payment-link {
  text-decoration: underline;
  cursor: pointer;
  color: #0078FF;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

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

.form-field {
  max-width: 300px;
}

@media all and (max-width: 768px) {
  .form-field {
    max-width: unset;
    margin-top: 15px;
  }
}

.email-change-note {
  color: #00A32E;
}

.post-code-selector {
  max-width: 400px;
}

@media all and (max-width: 768px) {
  .post-code-selector {
    max-width: unset;
  }
}

.input-group-btn .btn-postcode {
  min-width: 95px;
}

@media all and (max-width: 768px) {
  .input-group-btn .btn-postcode {
    margin-top: 15px;
  }
}

.cancel-header {
  background-color: #0045A0;
  width: 100%;
  height: 20px;
  margin-bottom: 10px;
}

.cancel-confirm-body {
  background-color: #e4f4ff;
  color: #0045A0;
  text-align: center;
  border-radius: 15px;
  padding: 15px;
  max-width: 700px;
  margin: 20px auto 0 auto;
}

.cancel-confirm-body .cancel-confirm-title {
  font-weight: bold;
  padding: 10px 0 20px 0;
}

.objection-images-container {
  margin: 40px 0 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.objection-images-container .objection-image {
  text-align: center;
}

.cancel-policy-image-text {
  font-style: italic;
  font-size: 1.5rem;
  padding-top: 15px;
}

.cancellation-cards-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px 0 40px 0;
}

.cancellation-cards-container .cancellation-card-wrapper {
  margin: 0 10px 0 10px;
}

.cancellation-cards-container .cancellation-card-wrapper.right {
  text-align: -webkit-right;
}

.cancellation-cards-container .cancellation-card-wrapper.center {
  text-align: -webkit-center;
}

@media all and (max-width: 480px) {
  .cancellation-cards-container .cancellation-card-wrapper {
    text-align: -webkit-center;
    margin-bottom: 20px;
  }

  .cancellation-cards-container .cancellation-card-wrapper.right {
    text-align: -webkit-center;
  }
}

.cancellation-cards-container .cancellation-card-wrapper .cancellation-discount-card {
  text-align: center;
  cursor: pointer;
  width: 170px;
  height: 190px;
  border: 3px solid #00A32E;
  border-radius: 20px;
  position: relative;
}

.cancellation-cards-container .cancellation-card-wrapper .cancellation-discount-card:hover {
  -webkit-box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
          box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.cancellation-cards-container .cancellation-card-wrapper .cancellation-discount-card .cancellation-discount-card-header {
  height: 60px;
  background-color: #00A32E;
  border-top: 4px solid #00A32E;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.cancellation-cards-container .cancellation-card-wrapper .cancellation-discount-card .cancellation-discount-card-image {
  position: absolute;
  left: 45px;
  width: 70px;
  height: 70px;
  bottom: 128px;
}

.cancellation-cards-container .cancellation-card-wrapper .cancellation-discount-card .cancellation-discount-card-image.clock,
.cancellation-cards-container .cancellation-card-wrapper .cancellation-discount-card .cancellation-discount-card-image.globe {
  position: absolute;
  left: 45px;
  width: 70px;
  height: 55px;
  bottom: 128px;
}

.cancellation-cards-container .cancellation-card-wrapper .cancellation-discount-card .cancellation-discount-card-image.cover-level {
  position: absolute;
  left: 45px;
  width: 71px;
  height: 70px;
  bottom: 122px;
}

.cancellation-cards-container .cancellation-card-wrapper .cancellation-discount-card .header-title {
  padding-top: 5px;
  font-size: 16px;
}

.cancellation-cards-container .cancellation-card-wrapper .cancellation-discount-card .body-text {
  font-size: 12px;
  padding-top: 10px;
}

.cancellation-cards-container .cancellation-card-wrapper .cancellation-cancel-card {
  cursor: pointer;
  text-align: center;
  width: 170px;
  height: 190px;
  border: 3px solid #0045A0;
  border-radius: 20px;
  position: relative;
}

.cancellation-cards-container .cancellation-card-wrapper .cancellation-cancel-card:hover {
  -webkit-box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
          box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.cancellation-cards-container .cancellation-card-wrapper .cancellation-cancel-card .cancellation-cancel-card-header {
  height: 60px;
  background-color: #0045A0;
  border-top: 4px solid #0045A0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.cancellation-cards-container .cancellation-card-wrapper .cancellation-cancel-card .cancel-card-image {
  position: absolute;
  left: 54px;
  width: 55px;
  height: 55px;
  bottom: 126px;
}

.cancellation-cards-container .cancellation-card-wrapper .cancellation-cancel-card .body-text {
  font-size: 16px;
  padding: 30px 10px 0 10px;
}

.cancellation-cancel-selection {
  width: 80px;
  height: 100px;
  background-color: blue;
}

.cancellation-dropdown-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.cancellation-dropdown-container .text {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.cancellation-dropdown-container .dropdown {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.discount-refund-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}

.discount-refund-container .text {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-top: 10px;
}

.discount-refund-container .button {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: end;
}

.lapse-reasons .Select-menu-outer {
  max-height: 1000px;
}

.lapse-reasons .Select-menu {
  max-height: 998px;
}

#env_banner {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background-color: #00BCD4;
  color: #fff;
  font-size: 0.5em;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

#env_banner > span {
  display: inline-block;
  padding: 3px;
}

#env_banner.env-qa {
  background-color: #673AB7;
}

#env_banner.env-uat {
  background-color: #FFEB3B;
  color: #000000;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.admiral-table {
  padding: 0 !important;
  width: 100%;
  overflow-x: auto;
  border-radius: 5px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.admiral-table a {
  color: #000;
}

.admiral-table a:hover {
  text-decoration: none;
}

.admiral-table h1,
.admiral-table h2,
.admiral-table h3,
.admiral-table h4,
.admiral-table h5,
.admiral-table h6 {
  color: #FFF;
  margin: 0;
  font-weight: normal;
  font-size: 16.8px;
}

.admiral-table table {
  margin: 0;
  border: none !important;
  border-radius: 5px;
}

.admiral-table table thead tr {
  background-color: #0045A0;
  color: #FFF;
  font-weight: normal;
}

.admiral-table table thead:first-child > tr:first-child > th {
  border-bottom: 0;
  border-top: 0;
}

.admiral-table table thead th {
  padding: 15px;
  font-weight: normal;
  font-size: 16.8px;
}

.admiral-table table tbody tr {
  background: none;
  border-bottom: 1px solid #C6E2E6;
}

.admiral-table table tbody tr td {
  padding: 15px;
  border: none !important;
}

.admiral-table table button {
  width: 100%;
}

.admiral-table.premiums table tr td {
  text-align: center;
}

.admiral-table--alternative {
  text-align: center;
}

.admiral-table--alternative table tr {
  background-color: #F5F7FC;
  border-bottom: none;
}

.admiral-table--alternative h3 {
  text-align: center;
}

.admiral-table__discount-value {
  text-decoration: line-through;
  font-size: 14px;
}

@media all and (max-width: 1200px) {
  .admiral-table th[data-lg-hide=hide] {
    display: none;
  }

  .admiral-table tbody tr td[data-lg-hide=hide] {
    display: none;
  }
}

@media all and (max-width: 992px) {
  .admiral-table th[data-md-hide=hide] {
    display: none;
  }

  .admiral-table tbody tr td[data-md-hide=hide] {
    display: none;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1200px) {
  .admiral-table th[data-mds-hide=hide] {
    display: none;
  }

  .admiral-table tr td[data-mds-hide=hide] {
    display: none;
  }

  .admiral-table tr .render {
    display: block !important;
  }
}

@media all and (max-width: 768px) {
  .admiral-table:not(.no-wrap) thead {
    border: none !important;
  }

  .admiral-table:not(.no-wrap) thead tr {
    border: none !important;
  }

  .admiral-table:not(.no-wrap) th {
    display: none;
    border: none !important;
  }

  .admiral-table:not(.no-wrap) th[data-sm-show=show] {
    display: block;
  }

  .admiral-table:not(.no-wrap) tbody tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    width: auto;
  }

  .admiral-table:not(.no-wrap) tbody tr td {
    border: none !important;
    padding: 5px 15px 5px 15px !important;
    width: 100%;
  }

  .admiral-table:not(.no-wrap) tbody tr td[data-md-hide=hide] {
    display: block;
  }

  .admiral-table:not(.no-wrap) tbody tr td[data-sm-show=show] {
    display: block;
  }

  .admiral-table:not(.no-wrap) tbody tr td.t-bold {
    font-weight: bold;
  }

  .admiral-table:not(.no-wrap) tbody tr td.traveller-email {
    max-width: 260px;
    word-wrap: break-word;
  }

  .admiral-table:not(.no-wrap) tbody tr td button {
    float: left;
    width: 48%;
    margin-bottom: 10px;
  }

  .admiral-table:not(.no-wrap) tbody tr.documents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: unset;
            flex-flow: unset;
  }

  .admiral-table:not(.no-wrap) tbody tr.documents td {
    padding: 15px 15px 15px 15px !important;
  }

  .admiral-table:not(.no-wrap) tbody tr.documents a {
    float: right;
  }
}

.cancellation-table-wrapper {
  background-color: #e3f1fe;
  padding: 15px;
}

.cancellation-table-wrapper .cancellation-table {
  background-color: #FFFFFF;
  border: 1px solid black;
}

.cancellation-table-wrapper .cancellation-table td {
  background-color: #FFFFFF;
  border: 1px solid black;
  text-align: center;
  color: black;
  padding: 5px;
  font-size: 1.6rem;
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.banner img {
  width: 100%;
}

@media all and (min-width: 768px) {
  .banner-mobile {
    display: none;
  }
}

@media all and (max-width: 767px) {
  .banner-desktop {
    display: none;
  }
}

/* Global */

/* Header */

/* Footer */

/* Quote Summary */

/* Trip Details */

/* Medical Declaration */

/* Scheme Choice */

/* Payment */

/* Complete */

/* Buttons */

/* li */

/* errors */

.medical-decline {
  background: #f0f8ff;
  text-align: left;
}

.medical-decline p {
  font-weight: normal;
}

.medical-decline .title {
  text-decoration: underline;
  text-align: center;
  padding-top: 10px;
}

.medical-threshold {
  padding-bottom: 10px;
}

.medical-threshold .content {
  padding: 20px;
}

.medical-threshold p {
  font-weight: normal;
}

.medical-threshold .title {
  padding-bottom: 10px;
  font-weight: bold;
  font-size: 2rem;
}

.call-center {
  background: #f0f8ff;
  text-align: center;
  padding: 20px;
}

.call-center.no-center {
  text-align: left;
}

.call-center .title {
  padding-top: 10px;
  font-weight: bold;
}

@media all and (max-width: 480px) {
  .medical-directory-link a {
    font-size: 1.3rem;
  }
}

.m0 {
  margin: 0px;
}

.p0 {
  margin: 0px;
}

.mt-0 {
  margin-top: 0px;
}

.pt-0 {
  padding-top: 0px;
}

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

.pb-0 {
  padding-bottom: 0px;
}

.ml-0 {
  margin-left: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.m1 {
  margin: 1px;
}

.p1 {
  margin: 1px;
}

.mt-1 {
  margin-top: 1px;
}

.pt-1 {
  padding-top: 1px;
}

.mb-1 {
  margin-bottom: 1px;
}

.pb-1 {
  padding-bottom: 1px;
}

.ml-1 {
  margin-left: 1px;
}

.pl-1 {
  padding-left: 1px;
}

.mr-1 {
  margin-right: 1px;
}

.pr-1 {
  padding-right: 1px;
}

.m2 {
  margin: 2px;
}

.p2 {
  margin: 2px;
}

.mt-2 {
  margin-top: 2px;
}

.pt-2 {
  padding-top: 2px;
}

.mb-2 {
  margin-bottom: 2px;
}

.pb-2 {
  padding-bottom: 2px;
}

.ml-2 {
  margin-left: 2px;
}

.pl-2 {
  padding-left: 2px;
}

.mr-2 {
  margin-right: 2px;
}

.pr-2 {
  padding-right: 2px;
}

.m3 {
  margin: 3px;
}

.p3 {
  margin: 3px;
}

.mt-3 {
  margin-top: 3px;
}

.pt-3 {
  padding-top: 3px;
}

.mb-3 {
  margin-bottom: 3px;
}

.pb-3 {
  padding-bottom: 3px;
}

.ml-3 {
  margin-left: 3px;
}

.pl-3 {
  padding-left: 3px;
}

.mr-3 {
  margin-right: 3px;
}

.pr-3 {
  padding-right: 3px;
}

.m4 {
  margin: 4px;
}

.p4 {
  margin: 4px;
}

.mt-4 {
  margin-top: 4px;
}

.pt-4 {
  padding-top: 4px;
}

.mb-4 {
  margin-bottom: 4px;
}

.pb-4 {
  padding-bottom: 4px;
}

.ml-4 {
  margin-left: 4px;
}

.pl-4 {
  padding-left: 4px;
}

.mr-4 {
  margin-right: 4px;
}

.pr-4 {
  padding-right: 4px;
}

.m5 {
  margin: 5px;
}

.p5 {
  margin: 5px;
}

.mt-5 {
  margin-top: 5px;
}

.pt-5 {
  padding-top: 5px;
}

.mb-5 {
  margin-bottom: 5px;
}

.pb-5 {
  padding-bottom: 5px;
}

.ml-5 {
  margin-left: 5px;
}

.pl-5 {
  padding-left: 5px;
}

.mr-5 {
  margin-right: 5px;
}

.pr-5 {
  padding-right: 5px;
}

.m6 {
  margin: 6px;
}

.p6 {
  margin: 6px;
}

.mt-6 {
  margin-top: 6px;
}

.pt-6 {
  padding-top: 6px;
}

.mb-6 {
  margin-bottom: 6px;
}

.pb-6 {
  padding-bottom: 6px;
}

.ml-6 {
  margin-left: 6px;
}

.pl-6 {
  padding-left: 6px;
}

.mr-6 {
  margin-right: 6px;
}

.pr-6 {
  padding-right: 6px;
}

.m7 {
  margin: 7px;
}

.p7 {
  margin: 7px;
}

.mt-7 {
  margin-top: 7px;
}

.pt-7 {
  padding-top: 7px;
}

.mb-7 {
  margin-bottom: 7px;
}

.pb-7 {
  padding-bottom: 7px;
}

.ml-7 {
  margin-left: 7px;
}

.pl-7 {
  padding-left: 7px;
}

.mr-7 {
  margin-right: 7px;
}

.pr-7 {
  padding-right: 7px;
}

.m8 {
  margin: 8px;
}

.p8 {
  margin: 8px;
}

.mt-8 {
  margin-top: 8px;
}

.pt-8 {
  padding-top: 8px;
}

.mb-8 {
  margin-bottom: 8px;
}

.pb-8 {
  padding-bottom: 8px;
}

.ml-8 {
  margin-left: 8px;
}

.pl-8 {
  padding-left: 8px;
}

.mr-8 {
  margin-right: 8px;
}

.pr-8 {
  padding-right: 8px;
}

.m9 {
  margin: 9px;
}

.p9 {
  margin: 9px;
}

.mt-9 {
  margin-top: 9px;
}

.pt-9 {
  padding-top: 9px;
}

.mb-9 {
  margin-bottom: 9px;
}

.pb-9 {
  padding-bottom: 9px;
}

.ml-9 {
  margin-left: 9px;
}

.pl-9 {
  padding-left: 9px;
}

.mr-9 {
  margin-right: 9px;
}

.pr-9 {
  padding-right: 9px;
}

.m10 {
  margin: 10px;
}

.p10 {
  margin: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.m15 {
  margin: 15px;
}

.p15 {
  margin: 15px;
}

.mt-15 {
  margin-top: 15px;
}

.pt-15 {
  padding-top: 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

.pb-15 {
  padding-bottom: 15px;
}

.ml-15 {
  margin-left: 15px;
}

.pl-15 {
  padding-left: 15px;
}

.mr-15 {
  margin-right: 15px;
}

.pr-15 {
  padding-right: 15px;
}

.m20 {
  margin: 20px;
}

.p20 {
  margin: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.m25 {
  margin: 25px;
}

.p25 {
  margin: 25px;
}

.mt-25 {
  margin-top: 25px;
}

.pt-25 {
  padding-top: 25px;
}

.mb-25 {
  margin-bottom: 25px;
}

.pb-25 {
  padding-bottom: 25px;
}

.ml-25 {
  margin-left: 25px;
}

.pl-25 {
  padding-left: 25px;
}

.mr-25 {
  margin-right: 25px;
}

.pr-25 {
  padding-right: 25px;
}

.m30 {
  margin: 30px;
}

.p30 {
  margin: 30px;
}

.mt-30 {
  margin-top: 30px;
}

.pt-30 {
  padding-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

.ml-30 {
  margin-left: 30px;
}

.pl-30 {
  padding-left: 30px;
}

.mr-30 {
  margin-right: 30px;
}

.pr-30 {
  padding-right: 30px;
}

.m35 {
  margin: 35px;
}

.p35 {
  margin: 35px;
}

.mt-35 {
  margin-top: 35px;
}

.pt-35 {
  padding-top: 35px;
}

.mb-35 {
  margin-bottom: 35px;
}

.pb-35 {
  padding-bottom: 35px;
}

.ml-35 {
  margin-left: 35px;
}

.pl-35 {
  padding-left: 35px;
}

.mr-35 {
  margin-right: 35px;
}

.pr-35 {
  padding-right: 35px;
}

.m40 {
  margin: 40px;
}

.p40 {
  margin: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.m45 {
  margin: 45px;
}

.p45 {
  margin: 45px;
}

.mt-45 {
  margin-top: 45px;
}

.pt-45 {
  padding-top: 45px;
}

.mb-45 {
  margin-bottom: 45px;
}

.pb-45 {
  padding-bottom: 45px;
}

.ml-45 {
  margin-left: 45px;
}

.pl-45 {
  padding-left: 45px;
}

.mr-45 {
  margin-right: 45px;
}

.pr-45 {
  padding-right: 45px;
}

.m50 {
  margin: 50px;
}

.p50 {
  margin: 50px;
}

.mt-50 {
  margin-top: 50px;
}

.pt-50 {
  padding-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.ml-50 {
  margin-left: 50px;
}

.pl-50 {
  padding-left: 50px;
}

.mr-50 {
  margin-right: 50px;
}

.pr-50 {
  padding-right: 50px;
}

.m75 {
  margin: 75px;
}

.p75 {
  margin: 75px;
}

.mt-75 {
  margin-top: 75px;
}

.pt-75 {
  padding-top: 75px;
}

.mb-75 {
  margin-bottom: 75px;
}

.pb-75 {
  padding-bottom: 75px;
}

.ml-75 {
  margin-left: 75px;
}

.pl-75 {
  padding-left: 75px;
}

.mr-75 {
  margin-right: 75px;
}

.pr-75 {
  padding-right: 75px;
}

.m100 {
  margin: 100px;
}

.p100 {
  margin: 100px;
}

.mt-100 {
  margin-top: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.ml-100 {
  margin-left: 100px;
}

.pl-100 {
  padding-left: 100px;
}

.mr-100 {
  margin-right: 100px;
}

.pr-100 {
  padding-right: 100px;
}

.w-1 {
  width: 100%;
}

.w-2 {
  width: 50%;
}

.w-3 {
  width: 33.3333333333%;
}

.w-4 {
  width: 25%;
}

.w-5 {
  width: 20%;
}

.w-6 {
  width: 16.6666666667%;
}

.w-7 {
  width: 14.2857142857%;
}

.w-8 {
  width: 12.5%;
}



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