/* !Base (Author: mail@jandousek.cz) */

/*
 Bodies
 ***
*/

html, body {
  height: 100%;
}
body {
  min-width: 400px;
  position: relative;
  margin: 0 auto;
  background-color: #fff;
  font: 400 16px 'Rubik', sans-serif;
  color: #001F3F;
}

/*
  form-elements
  ***
*/

input, select, textarea, button {
  font: 400 14px 'Rubik', sans-serif;
  color: #001F3F;
}

/*
  placeholder
  ***
*/

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #001F3F;
}
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: #B1B1C7
}
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #001F3F;
}
input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
  color: #B1B1C7
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #001F3F;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: #B1B1C7
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #001F3F;
}
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: #B1B1C7
}

/*
  a
  ***
*/

a {
  color: #001F3F;
}
html.device-desktop a:hover {
  color: #FF0000;
}

/*
  adjust grid
  ***
 */

.grid {
  margin: 0 -10px;
}
.grid-col {
  font-size: 16px;
}
.grid-col-inset {
  margin: 0 5px;
}

/*
  ui-toggler
  ---
*/

.ui-toggler {
  cursor: pointer;
}

/*
  or
  ***
*/

.or {
  position: relative;
  text-align: center;
  font-size: 0;
}
.or:before {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  background-color: #d8d8e3;
}
.or span {
  position: relative;
  display: inline-block;
  padding: 0 10px;
  background-color: #fff;
  font-size: 14px;
  color: #848494;
}

/*
  icon
  ***
*/

.icon {
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 0;
}
.icon img, .icon svg {
  display: inline-block;
}

/*
  tag
  ***
*/

.tag {
  min-width: 24px;
  height: 24px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
  border-radius: 100px;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  color: #fff;
}

/*
  size-*
  ---
*/

.tag.size-large {
  height: auto;
  white-space: normal;
  text-transform: uppercase;
  font-weight: 500;
}

/*
  label
  ---
*/

.tag-label {
  position: relative;
  display: none;
  vertical-align: middle;
  padding: 5px 10px 5px 10px;
  white-space: nowrap;
}
.tag-label > b {
  margin-right: 3px;
  vertical-align: baseline;
  font-weight: inherit;
  color: #fff;
}

/*
  after label
  ...
*/

.tag .icon + .tag-label {
  padding-left: 28px;
}

/*
  size-*
  ---
*/

.tag.size-large .tag-label {
  white-space: normal;
}


/*
  adjust icon
  ---
*/

.tag .icon {
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* actions */

.tag.is-expanded .tag-label {
  display: inline-block;
}
.tag.is-expanded .icon {
  left: 9px;
}

/*
  link
  ***
*/

.link {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  background-color: #8c9095;
  border: none;
  vertical-align: middle;
  line-height: 1.5;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

/*
  type-button
  ---
*/

.link.type-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 14px 30px;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.link.type-button > small {
  font-size: 100%;
  font-weight: 300;
}

/*
  size
*/

.link.type-button.size-large {
  padding: 18px 30px;
}
.link.type-button.size-medium {
  padding: 10px 25px;
}
.link.type-button.size-small {
  padding: 8px 30px 9px 30px;
  font-size: 13px;
}
.link.type-button.size-tiny {
  padding: 5px 14px;
  font-size: 13px;
}

/*
  width
  ---
*/

.link.type-button.width-300 {
  min-width: 300px;
}

/*
  skinBg-*
  ---
*/

.link.skinBg-white {
  color: #505062;
}

/*
  adjust icon
*/

.link.type-button .icon {
  position: relative;
  top: -2px;
  margin: 0 5px;
}
.link.type-button.size-small .icon {
  top: 0;
}
.link.type-button .icon:first {
  margin-left: 0;
}
.link.type-button .icon:last {
  margin-right: 0;
}

/* actions */

html.device-desktop .link:hover {
  background-color: #76797d;
  color: #fff;
}
html.device-desktop .link:hover:focus {
  background-color: #54575b;
  outline: none;
}

/*
  type-social
  ---
*/

.link.type-social {
  display: none;
  padding: 14px 15px 13px 15px;
  background-color: #fff;
  border: 1px solid #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.link.type-social span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 0 10px;
}

/*
  icon
  ---
*/

.link.type-social.icon-facebook, .link.type-social.icon-google {
  display: inline-block;
}
.link.type-social.icon-facebook {
  background-color: #3B65C4;
  border-color: #3B65C4;
  color: #fff;
}
.link.type-social.icon-google {
  border-color: #B1B1C7;
  color: #001F3F;
}

/* actions */

html.device-desktop .link.type-social.icon-facebook:hover {
  background-color: #3256a9;
}
html.device-desktop .link.type-social.icon-google:hover {
  background-color: #eeeef6;
}

/*
  adjust icon
  ---
*/

.link.type-social .icon {
  position: relative;
  top: -2px;
  margin-right: 10px;
}

/*
  width
  ---
*/

.link.width-full {
  width: 100%;
}

/*
  input
  ***
*/

.input {
  width: 100%;
  max-width: 100%;
  display: block;
  padding: 13px 15px;
  background: #F7F7F7;
  border: none;
  border-bottom: 2px solid #B1B1C7;
  text-align: left;
}
.input[type="date"] {
  padding-top: 11px;
  padding-bottom: 11px;
}
textarea.input {
  line-height: 1.7;
}

/* actions, state */

.input:focus {
  outline: none;
  border-bottom-color: #FF0000;
}
.input.state-error {
  background-color: #ffeeee;
  border-bottom-color: #cd0000;
}

/*
  checkbox, radio
  ---
*/

.input[type="checkbox"], .input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  top: -3px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  padding: 0;
  background-color: #fff;
  border: 1px solid #b1b1c7;
  outline: none;
}
.input[type="checkbox"] {
  width: 18px;
  height: 18px;
}
.input[type="radio"] {
  width: 16px;
  height: 16px;
}
.input[type="checkbox"]:before, .input[type="radio"]:before {
  content: '';
  position: absolute;
  display: none;
}
.input[type="checkbox"]:before {
  width: 17px;
  height: 17px;
  left: 2px;
  top: -2px;
  display: none;
  background: url('../img/icons/white/checkmark.svg') left top no-repeat;
  background-size: contain;
}
.input[type="radio"], .input[type="radio"]:before {
  border-radius: 100%;
}
.input[type="radio"]:before {
  width: 6px;
  height: 6px;
  left: -1px;
  top: -1px;
  border: 5px solid #FF0000;
}

/* actions */

.input[type="checkbox"]:checked {
  background-color: #FF0000;
  border-color: #FF0000;
}
.input[type="radio"]:checked:before, .input[type="checkbox"]:checked:before {
  display: block;
}

/*
  size-*
  ---
*/

.input.size-small {
  font-size: 14px;
}
.input.size-large {
  padding: 18px 20px;
  font-size: 16px;
}

/*
  width-*
  ---
*/

.input.width-auto {
  width: auto;
}

/*
  weight
  ---
*/

.input.weight-bold {
  font-weight: 500;
}

/*
  - wrap
  ---
*/

.input--wrap {
  position: relative;
  display: block;
}

/*
  input--wrap-icon, input--wrap-reset
*/

.input--wrap-icon, .input--wrap-reset {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-55%);
  -moz-transform: translateY(-55%);
  transform: translateY(-55%);
}
.input--wrap-icon {
  left: 10px;
}
.input--wrap-reset {
  right: 10px;
  display: none;
}
.input--wrap-icon.icon path, .input--wrap-reset.icon path {
  fill: #b7b7cc;
}

/*
  size
*/

.input--wrap.size-large .input--wrap-icon {
  left: 15px;
}
.input--wrap.size-large .input--wrap-reset {
  right: 15px;
}

/* actions */

.input--wrap.is-filled .input--wrap-reset {
  display: block;
}
.input--wrap.is-filled .input--wrap-icon.icon path {
  fill: #001f3f;
}
.input--wrap.is-focused .input--wrap-icon.icon path, .input--wrap.is-filled.is-focused .input--wrap-icon.icon path {
  fill: #FF0000 !important;
}

/*
  adjust input
*/

.input--wrap .input {
  padding-left: 40px;
}
.input--wrap .input.size-large {
  padding-left: 50px;
}
.input--wrap.is-filled .input.size-large {
  padding-right: 45px;
}

/* icon-none */

.input--wrap.icon-none .input {
  padding-left: 15px;
}
.input--wrap.icon-none .input.size-large {
  padding-left: 20px;
}

/*
  field
  ***
*/

.field {
  display: block;
  margin-bottom: 25px;
  text-align: left;
}

/*
  label
  ---
*/

.field-label {
  display: block;
  padding-bottom: 9px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 500;
  font-size: 12px;
}
.field-label em {
  float: right;
  font-weight: normal;
  font-style: normal;
  color: #848494;
}

/*
  size
*/

.field-label.size-small {
  font-size: 14px !important;
}

/*
  contain
*/

.field-label.contain-check {
  display: inline-block;
  margin-left: -4px;
  padding-bottom: 0;
  text-transform: none;
  font-size: 16px;
  font-weight: normal;
}
.field-label.contain-check + .field-label.contain-check {
  margin-left: 20px;
  margin-bottom: 10px;
}
br + .field-label.contain-check {
  margin-top: 10px;
}

/*
  desc, error
  ---
*/

.field-desc, .field-error {
  display: block;
  padding-top: 8px;
  line-height: 1.7;
  font-style: normal;
  font-size: 14px;
  color: #848494;
}
.field-desc {
  font-style: normal;
  color: #848494;
}
.field-error {
  font-weight: 500;
  font-style: italic;
  color: #d11313;
}

/*
  adjust input
  ---
*/

.field .input + .input, .field .input--wrap + .input--wrap {
  margin-top: 10px;
}

/*
  flashMessage
  ***
*/

.flashMessage {
  max-width: 884px;
  position: relative;
  margin: -1px auto 0 auto;
  padding: 20px 69px 20px 25px;
  background-color: #EEFAFF;
  border: 1px solid #C8E6F2;
  border-radius: 0 0 16px 16px;
}
.flashMessage + .flashMessage {
  margin-top: 15px;
  padding-top: 18px;
  padding-bottom: 18px;
  border-radius: 16px;
}

/*
  type
  ---
*/

.flashMessage.type-happy {
  background-color: #EEFFF5;
  border: 1px solid #C7E6D4;
}
.flashMessage.type-danger {
  background-color: #FFEEEE;
  border: 1px solid #ECCBCB;
}

/*
  close
  ---
*/

.flashMessage-close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -16px;
}

/*
  adjust icon
*/


.flashMessage-close .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

}

/*
  format
  ---
*/

.flashMessage p {
  line-height: 1.5;
}

/*
  adjust icon
*/

.flashMessage p .icon {
  position: relative;
  top: -1px;
  margin-right: 7px;
}

/*
  activated
  ***
*/

.activated {
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 14px;
}

/*
  adjust icon
  ---
*/

.activated .icon {
  position: relative;
  top: -2px;
  vertical-align: middle;
}

/*
  title
  ***
*/

.title {
  line-height: 1.2;
}
.title small {
  font-weight: 500;
  font-size: 50%;
}
.title span {
  line-height: inherit;
}

/*
  level
  ---
*/

.title.level-0 {
  font-size: 100px;
}
.title.level-0 small {
  display: block;
  vertical-align: top;
  font-weight: 700;
  font-size: 25%;
}
.title.level-1 {
  font-size: 48px;
}
.title.level-2 {
  font-size: 32px;
}
.title.level-3 {
  line-height: 1.4;
  font-size: 24px;
}
.title.level-4 {
  line-height: 1.4;
  font-weight: normal;
  font-size: 20px;
}
.title.level-5 {
  line-height: 1.5;
  font-weight: normal;
  font-size: 18px;
}
.title.level-6 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  color: #848494;
}

/*
  weight
  ---
*/

.title.weight-light {
  font-weight: 300;
}

/*
  adjust icon
  ---
*/

.title .icon  {
  margin-bottom: 10px;
}

/*
  icon
*/

.title[class*="icon-"]:before {
  background-position: left -330px;
}

/*
  excerpt
  ***
*/

.excerpt {
  line-height: 1.7;
}

/*
  dot
  ---
*/

.excerpt-dot {
  width: 3px;
  height: 3px;
  position: relative;
  top: -1px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 13px;
  background-color: #b1b1c7;
  border-radius: 100%;
}

/*
  adjust skin-color_*
  ---
*/

.excerpt[class*="skin-color_"] {
  font-size: 85%;
}

/*
  navDropdown
  ***
*/

.navDropdown {
  position: relative;
  z-index: 1;
  display: inline-block;
  background-color: #EBEBF1;
  text-align: left;
}
body.effectEnable .navDropdown {
  -webkit-transition: 200ms linear;
  -moz-transition: 200ms linear;
  transition: 200ms linear;
}

/* actions */

.navDropdown.is-active {
  background-color: #F73B28;
}

/*
  title
  ---
*/

.navDropdown-title {
  cursor: pointer;
}
body.effectEnable .navDropdown-title {
  -webkit-transition: 200ms linear;
  -moz-transition: 200ms linear;
  transition: 200ms linear;
}
.navDropdown-title span, .navDropdown-title a, .navDropdown-title b {
  position: relative;
  z-index: 1;
  display: block;
  padding: 11px 20px 10px 20px;
  text-decoration: none;
  font-weight: normal;
  font-size: 14px;
  color: inherit;
}
.navDropdown-title span, .navDropdown-title a {
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.navDropdown.has-list .navDropdown-title span, .navDropdown.has-list .navDropdown-title a, .navDropdown.has-list .navDropdown-title b {
  padding-right: 35px;
}
.navDropdown-title span b {
  display: none;
}
body.effectEnable .navDropdown-title .icon path {
  -webkit-transition: 200ms linear;
  -moz-transition: 200ms linear;
  transition: 200ms linear;
}

/*
  adjust icon
*/

.navDropdown-title .icon {
  display: inline-block;
  margin: -1px 7px -1px -3px;
  padding: 0;
  padding-right: 0 !important
}

/* actions */

.navDropdown.is-active .navDropdown-title {
  color: #fff;
}
.navDropdown.is-active .navDropdown-title .icon.skinFill-darkgrey path {
  fill: #fff;
}

/*
  list
  ---
*/

.navDropdown-list {
  min-width: 150px;
  max-width: 320px;
  position: absolute;
  right: 0;
  top: 100%;
}
.navDropdown-list:before {
  content: '\25bc';
  width: 30px;
  height: 24px;
  position: absolute;
  right: 0;
  top: -35px;
  padding-top: 11px;
  background-color: #EBEBF1;
  text-align: center;
  font-size: 12px;
  color: #b7b7cc;
}
body.effectEnable .navDropdown-list:before {
  -webkit-transition: 200ms linear;
  -moz-transition: 200ms linear;
  transition: 200ms linear;
}
.navDropdown-list > ul {
  display: none;
  background-color: #F73B28;
  border-top: 1px solid #CD0000;
}
.navDropdown-list > ul > li {
  margin-bottom: -1px;
}
.navDropdown-list > ul > li > a {
  display: block;
  padding: 14px 17px;
  border-bottom: 1px solid #CD0000;
  text-decoration: none;
  white-space: nowrap;
  font-size: 16px;
  color: #fff;
}

/*
  format
*/

.navDropdown-list > ul > li > a > b {
  min-width: 30px;
  display: inline-block;
  margin-right: 12px;
  text-align: left;
  font-weight: 500;
}
.navDropdown-list > ul > li > a > span {
  font-size: 14px;
  opacity: 0.6;
}

/* actions */

.navDropdown.is-active .navDropdown-list:before {
  background-color: #F73B28;
  color: #fff;
}
html.device-desktop .navDropdown-list > ul > li > a:hover {
  background-color: #991F1F;
  border-bottom-color: #991F1F;
}

/*
  - group
  ---
*/

.navDropdown--group {
  font-size: 0;
}

/*
  adjust navDropdown
*/

.navDropdown--group .navDropdown {
  vertical-align: top;
  margin-left: 10px;
}

/*
  navSources
  ***
*/

.navSources {
  /* TODO */
}

/*
  list
  ---
*/

.navSources-list {
  max-height: 70px;
  overflow: hidden;
  font-size: 14px;
}
.navSources-list > li {
  opacity: 0.1;
}
.navSources-list > li:nth-child(1) {
  opacity: 1;
}
.navSources-list > li:nth-child(2) {
  opacity: 0.5;
}
.navSources-list > li:nth-child(3) {
  opacity: 0.3;
}
.navSources-list > li > a {
  overflow: hidden;
  display: block;
  padding: 4px 0;
  text-decoration: none;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.navSources-list > li > a > img {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}
.navSources-list > li > a > span {
  text-decoration: underline;
}

/*
  type-boxed
*/

.navSources.type-boxed .navSources-list {
  max-height: none;
  overflow: hidden;
  padding: 25px 30px;
  background-color: #fff;
  font-size: 16px;
}
.navSources.type-boxed .navSources-list > li {
  opacity: 1 !important;
}
.navSources.type-boxed .navSources-list > li > a > img {
  top: -1px;
}

/* actions */

.navSources.is-active .navSources-list {
  max-height: 500px;
}
.navSources.is-active .navSources-list > li {
  opacity: 1 !important
}

/*
  toggler
  ---
*/

.navSources-toggler {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  font-size: 13px;
}
.navSources-toggler span {
  display: block;
}
.navSources-toggler span:before {
  position: relative;
  top: -1px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  font-size: 11px;
}
.navSources-toggler span:first-child:before {
  content: "\25bc";
}
.navSources-toggler span:last-child {
  display: none;
}
.navSources-toggler span:last-child:before {
  content: "\25b2";
}

/*
  type-boxed
*/

.navSources.type-boxed .navSources-toggler {
  display: none;
}

/* actions */

.navSources.is-active .navSources-toggler span:first-child {
  display: none;
}
.navSources.is-active .navSources-toggler span:last-child {
  display: block;
}

/*
  adjust title
  ---
*/

.navSources .title {
  margin-bottom: 10px;
}

/*
  listDates
  ***
*/

.listDates {
  overflow: hidden;
}

/*
  table
  ---
*/

.listDates-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 2px;
  font-size: 14px;
}
.listDates-table th, .listDates-table td {
  padding: 4px 5px 4px 20px;
  background-color: #fff;
  line-height: 1.5;
}
.listDates-table th {
  font-weight: 400;
}

/*
  break-false
*/

.listDates-table th.break-false, .listDates-table td.break-false {
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*
  size
*/


.listDates-table th.size-large {
  padding-bottom: 12px;
  font-size: 16px;
}

/*
  adjust format
*/

.listDates-table img {
  position: relative;
  top: -2px;
  vertical-align: middle;
  margin-right: 10px;
}
.listDates-table strong {
  font-size: 18px;
}
.listDates-table strong > small {
  position: relative;
  font-weight: 300;
  font-size: 85%;
}

/*
  adjust icon
*/

.listDates-table .icon {
  position: relative;
  top: -1px;
  margin: 0 5px;
}

/*
  adjust link
*/

.listDates-table .link.type-button {
  width: 220px;
  text-transform: none;
}

/*
  adjust title
  ---
*/

.listDates .title {
  margin-bottom: 15px;
}

/*
  listSummary
  ***
*/

.listSummary {
  /* TODO */
}

/*
  has-slider
  ---
*/

.listSummary.has-slider {
  max-width: 250px;
  position: relative;
  padding: 0 70px;

}

/*
  bx-controls
  ...
*/

.listSummary.has-slider .bx-controls-direction > a {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  overflow: hidden;
  margin-top: -15px;
  text-indent: 200%;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0;
  color: #fff;
}
.listSummary.has-slider .bx-controls-direction > a:before {
  position: absolute;
  left: 3px;
  top: 3px;
  text-indent: 0;
  font-size: 20px;
}
.listSummary.has-slider .bx-controls-direction > a.bx-prev {
  left: 0;
}
.listSummary.has-slider .bx-controls-direction > a.bx-prev:before {
  content: '\2190';
}
.listSummary.has-slider .bx-controls-direction > a.bx-next {
  right: 0;
}
.listSummary.has-slider .bx-controls-direction > a.bx-next:before {
  content: '\2192';
}

/*
  list
  ---
*/

.listSummary-list {
  font-size: 0;
}
.listSummary-list > li {
  width: 33.33%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 20px;
  text-align: left;
  font-size: 14px;
}
.listSummary-list > li > span {
  display: block;
  margin: 0 25px;
  line-height: 1.8;
}
.listSummary-list > li > span > b {
  line-height: 2;
  font-weight: inherit;
  font-size: 16px;
}
.listSummary-list > li > span > a {
  color: inherit;
}
.listSummary-list > li > span > strong {
  display: inline-block;
  margin: 10px 0;
  font-size: 48px;
}
.listSummary-list > li > span > strong > small {
  font-weight: 400;
  font-size: 16px;
}

/*
  has-slider
  ...
*/

.listSummary.has-slider .listSummary-list > li {
  width: auto;
  display: block;
  margin-bottom: 0;
  text-align: center;
}
.listSummary.has-slider .listSummary-list > li > span {
  margin: 0;
}

/*
  gallery
  ***
*/

.gallery {
  margin: 0 -15px;
  font-size: 0;
}
.gallery figure {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 30px;
}
.gallery figure a {
  display: block;
  margin: 0 15px;
  text-decoration: none;
}
.gallery figure img {
  width: 100%;
  display: block;
}
.gallery figure figcaption {
  padding-top: 15px;
  line-height: 1.4;
  font-weight: bold;
  font-size: 18px;
}

/*
  shareBox
  ***
*/

.shareBox {
  width: 470px;
  position: relative;
}
.shareBox-inset {
  margin-top: -15px;
  padding: 20px 25px;
  background-color: #F7F7F7;
  border: 1px solid #B1B1C7;
  font-size: 0;
}

/*
  title
  ---
*/

.shareBox-title {
  position: relative;
  display: inline-block;
  margin-left: 15px;
  padding: 0 0 5px 10px;
  background-color: #F7F7F7;
  font-weight: 500;
  font-size: 14px;
  color: #505062;
}

/*
  adjust icon
*/

.shareBox-title .icon {
  position: relative;
  top: -2px;
  margin-right: 5px;
}

/* actions */

html.device-desktop .shareBox-title:hover > span:last-child {
  text-decoration: underline;
}

/*
  adjust input
  ---
*/

.shareBox .input {
  width: auto;
  display: block;
}

/*
  adjust link
  ---
*/

.shareBox .link.size-small {
  margin: 8px 0 0 8px;
  padding-left: 15px;
  padding-right: 15px;
}

/*
  headPrimary
  ***
*/

.headPrimary {
  margin-bottom: 45px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.headPrimary[style] {
  position: relative;
}
.headPrimary[style]:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0,0,0,0.3);
}
.headPrimary[class*="skinBg"] {
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  color: #fff;
}

/*
  no-margin
  ---
*/

.headPrimary.no-margin {
  margin-bottom: 0;
}

/*
  size
  ---
*/

.headPrimary[class*="size-"] {
  padding-left: 40px;
  padding-right: 40px;
}
.headPrimary.size-small {
  padding-top: 44px;
  padding-bottom: 35px;
}
.headPrimary.size-large {
  padding-top: 90px;
  padding-bottom: 85px;
}
.headPrimary.size-largest {
  padding-top: 220px;
  padding-bottom: 200px;
}

/*
  adjust title
  ---
*/

.headPrimary .title {
  position: relative;
  margin-bottom: 20px;
}
.headPrimary .title +  .title {
  margin-top: 40px;
  margin-bottom: 0;
}

/*
  adjust excerpt
  ---
*/

.headPrimary .excerpt {
  position: relative;
  margin-bottom: 20px;
  line-height: 1.7;
}

/*
  adjust listSummary
  ---
*/

.headPrimary .listSummary {
  position: relative;
  max-width: 940px;
  margin: 35px auto 0 auto;
  color: #fff;
}
.headPrimary .listSummary a:hover {
  text-decoration: none;
  color: inherit;
}

/*
  headSecondary
  ***
*/

.headSecondary {
  margin-bottom: 25px;
}

/*
  adjust title
  ---
*/

.headSecondary .title {
  margin-bottom: 10px;
}

/*
  excerpt
  ---
*/

.headSecondary .excerpt {
  margin-bottom: 10px;
  line-height: 1.7;
  color: #848494;
}

/*
  formPremium
  ***
*/

.formPremium {
  /* TODO */
}

/*
  adjust formSimple
  ---
*/

.formPremium .formSimple {
  width: 60%;
  width: calc(100% - 480px);
  float: right;
}

/*
  adjust itemTarif
  ---
*/

.formPremium .itemTarif {
  width: 35%;
  width: calc(350px);
  float: left;
}

/*
  formFilter
  ***
*/

.formFilter {
  /* TODO */
}

/*
  adjust grid
  ---
*/

.formFilter .grid {
  margin-top: 30px;
}

/*
  toggler
  ---
*/

.formFilter-toggler {
  display: none;
  padding: 18px 23px 17px 23px;
  background-color: #F7F7F7;
  border-bottom: 2px solid #b1b1c7;
  line-height: 1.4;
  font-weight: 500;
}
/*
  JS version
*/

html.js .formFilter-toggler {
  position: relative;
  cursor: pointer;
}
html.js .formFilter-toggler:after {
  content: "\25b6";
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -7px;
  font-size: 11px;
  color: #b1b1c7;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  transition: all 150ms linear;
}

/* actions */

.formFilter-toggler.is-active {
  border-bottom-color: transparent;
}
html.js .formFilter-toggler.is-active:after {
  transform: rotate(90deg);
}

/*
  adjust link
  ---
*/

.formFilter .link {
  margin-top: 21px;
}

/*
  formSimple
  ***
*/

.formSimple-inset {
  max-width: 350px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  text-align: center;
}

/*
  width
  ---
*/

.formSimple.width-large .formSimple-inset {
  max-width: 460px;
}
.formSimple.width-huge .formSimple-inset {
  max-width: 960px;
}

/*
  section
  ---
*/

.formSimple-section {
  margin-bottom: 15px;
}
.formSimple-section:last-child {
  margin-bottom: 0;
}

/*
  spacer
  ---
*/

.formSimple-spacer {
  padding: 5px 0;
}

/*
  size
*/

.formSimple-spacer.size-large {
  padding: 30px 0;
}

/*
  puller
  ---
*/

.formSimple-puller {
  margin-left: -40px;
  margin-right: -40px;
}

/*
  dog
  ---
*/

.formSimple-dog {
  position: absolute;
}
.formSimple-dog.is-first {
  left: -180px;
  margin-top: -175px;
}
.formSimple-dog.is-last {
  right: -100px;
  transform: scaleX(-1);
  margin-top: 200px;
}

/*
  svg
*/

.formSimple-dog svg path {
  fill: #f7f7f7;
}

/*
  foot
  ---
*/

.formSimple-foot {
  margin-top: 30px;
}

/*
  adjust link
  ...
*/

.formSimple-foot .link {
  margin-right: 5px;
}
.formSimple-foot.ta-right .link {
  margin: 0 0 0 5px;
}

/*
  adjust link
  ---
*/

.formSimple .link.type-social {
  margin-bottom: 10px;
}

/*
  adjust or
  ---
*/

.formSimple .or {
  margin: 30px 0;
}

/*
  formAdd
  ***
*/

.formAdd-inset {
  margin-top: 10px;
  padding: 0 20px;
  background-color: #f7f7f7;
  text-align: center;
}
.formAdd-inset-inset {
  max-width: 350px;
  margin: 0 auto;
  padding: 65px 0;
}

/*
  width
  ---
*/

.formAdd.width-large .formAdd-inset-inset {
  max-width: 460px;
}

/*
  foot
  ---
*/

.formAdd-foot {
  margin-top: 30px;
  line-height: 1.6;
}

/*
  reset
  ---
*/

.formAdd-reset {
  display: inline-block;
  padding-top: 15px;
  text-decoration: none;
  font-size: 14px;
  color: #848494;
}

/*
  adjust title
  ---
*/

.formAdd .title {
  margin-bottom: 40px;
}

/*
  tableTarifes
  ***
*/

.tableTarifes {
  /* TODO */
}

/*
  table
  ---
*/

.tableTarifes-table {
  border-collapse: separate;
  border-spacing: 0 3px;
}

/*
  thead
  ...
*/

.tableTarifes-table thead th {
  padding: 0 20px 3px 0;
  line-height: 1.5;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 500;
  font-size: 12px;
  color: #848494;
}
.tableTarifes-table thead th:nth-child(1) {
  width: 150px;
}
.tableTarifes-table thead th:nth-child(3) {
  width: 210px;
  text-align: right;
}

/*
  tbody
  ...
*/

.tableTarifes-table tbody th, .tableTarifes-table tbody td {
  vertical-align: top;
  padding: 17px 20px 17px 24px;
  background-color: #fff;
  line-height: 1.5;
}
.tableTarifes-table tbody tr td:nth-child(2) {
  padding-left: 0;
}
.tableTarifes-table tbody th {
  text-transform: uppercase;
}
.tableTarifes-table tbody td:last-child {
  text-align: right;
}
.tableTarifes-table tbody td {
  position: relative;
}

/*
  adjust link
  ...
*/

.tableTarifes-table .link {
  position: absolute;
  right: 20px;
  bottom: 20px;
  white-space: nowrap;
}

/*
  adjust activated
  ...
*/

.tableTarifes-table .activated {
  position: absolute;
  right: 20px;
  bottom: 15px;
}

/*
  price
  ---
*/

.tableTarifes-price {
  font-size: 20px;
}
.tableTarifes-price > small {
  position: relative;
  top: -1px;
  margin-left: 3px;
  font-weight: 400;
  font-size: 70%;
}
.tableTarifes-price > i {
  display: block;
  margin-top: 2px;
  font-weight: 400;
  font-size: 12px;
}

/*
  benefits
  ---
*/

.tableTarifes-benefits > li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 20px;
  line-height: 1.6;
  font-size: 14px;
}
.tableTarifes-benefits > li:last-child {
  margin-bottom: 0;
}
.tableTarifes-benefits > li:before {
  content: '';
  width: 11px;
  height: 11px;
  position: absolute;
  left: 0;
  top: 5px;
  background: url('../img/icons/green/checkmark.svg') no-repeat;
  background-size: contain;
}

/*
  itemPost
  ***
*/

.itemPost-inset {
  display: block;
  text-decoration: none;
  font-size: 14px;
}

/*
  thumb
  ---
*/

.itemPost-thumb {
  width: 100%;
  display: block;
  margin: 0 auto;
}

/*
  adjust title
  ---
*/

.itemPost .title {
  width: 100%;
  display: table;
  background-color: #F7F7F7;
}
.itemPost .title span {
  height: 95px;
  display: table-cell;
  vertical-align: middle;
  padding: 15px 25px;
}

/*
  - list
  ---
*/

.itemPost--list {
  max-width: 870px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  font-size: 0;
}
.itemPost--list-inset {
  margin-left: -30px;
  margin-right: -30px;
}

/*
  adjust itemPost
*/

.itemPost--list .itemPost {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 60px;
}
.itemPost--list .itemPost-inset {
  margin: 0 30px;
}

/*
  itemTarif
  ***
*/

.itemTarif-inset {
  padding: 40px 20px 30px 20px;
  background-color: #fff;
  border: 1px solid #ECECF5;
  text-align: center;
  font-size: 16px;
  color: #001F3F;
}

/*
  title
  ---
*/

.itemTarif-title {
  margin-bottom: 5px;
  line-height: 1.3;
  text-transform: uppercase;
  font-size: 24px;
}

/*
  price
  ---
*/

.itemTarif-price {
  position: relative;
  margin-top: 10px;
  line-height: 1.15;
  font-weight: 700;
  font-size: 40px;
}
.itemTarif-price small {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  font-weight: bold;
  font-style: italic;
  font-size: 16px;
}

/*
  benefits
  ---
*/

.itemTarif-benefits {
  min-height: 330px;
  margin-top: 30px;
  font-size: 14px;
}
.itemTarif-benefits > li {
  padding: 14px 10%;
  background: url('../img/itemTarif-benefits-li.gif') left bottom repeat-x;
  line-height: 1.6;
}
.itemTarif-benefits > li:last-child {
  padding-bottom: 5px;
  background: transparent;
}

/*
  adjust after:icon
  ---
*/

.itemTarif-benefits + .icon {
  margin: 37px 0 22px 0;
}

/*
  note
  ---
*/

.itemTarif-note {
  margin: 13px 0 0 0;
  line-height: 1.5;
  font-style: italic;
  font-size: 13px;
  color: #848494;
}

/*
  activated
  ---
*/

.itemTarif-activated {
  margin: 28px 0 25px 0;
}

/*
  adjust link
  ---
*/

.itemTarif .link {
  margin-top: 30px;
}

/*
  - list
  ---
*/

.itemTarif--list {
  margin: 0 -10px;
  text-align: center;
  font-size: 0;
}

/*
  adjust itemTarif
  ...
*/

.itemTarif--list .itemTarif {
  width: 33.33%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 20px;
}
.itemTarif--list .itemTarif-inset {
  margin: 0 10px;
}

/* actions */

html.device-desktop .itemTarif--list .itemTarif-inset:hover {
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
  border-color: transparent;
  color: #001F3F;
}

/*
  itemInfo
  ***
*/

.itemInfo-inset {
  text-align: center;
  font-size: 16px;
}

/*
  adjust icon
  ---
*/

.itemInfo .icon {
  margin-bottom: 25px;
}

/*
  - list
  ---
*/

.itemInfo--list {
  text-align: center;
  font-size: 0;
}
.itemInfo--list-inset {
  margin: 0 -35px;
}

/*
  foot
*/

.itemInfo--list-foot {
  overflow: hidden;
  margin-top: 25px;
}

/*
  adjust itemInfo
*/

.itemInfo--list .itemInfo {
  width: 33.33%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 50px;
}
.itemInfo--list .itemInfo-inset {
  margin: 0 50px;
}

/*
  adjust headSecondary
  ---
*/

.itemInfo--list .headSecondary {
  margin-bottom: 50px;
}

/*
  itemOffer
  ***
*/

.itemOffer {
  position: relative;
  background-color: #fff;
}
.itemOffer-inset {
  padding: 25px 25px 25px 230px;
  font-size: 14px;
}

/*
  thumb
  ---
*/

.itemOffer-thumb {
  width: 200px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background: #eee center center no-repeat;
  background-size: cover;
  color: #fff;
}
.itemOffer-thumb > img {
  display: block;
  opacity: 0;
}
.itemOffer-thumb > b {
  position: absolute;
  left: 10%;
  top: 50%;
  right: 10%;
  margin-top: -12px;
  text-align: center;
  text-shadow: 0 0 8px rgba(0,0,0,0.8);
  font-size: 24px;
}

/*
  title
  ---
*/

.itemOffer-title {
  float: left;
  line-height: 1.4;
}
.itemOffer-title small {
  font-weight: 400;
  font-size: 14px;
  color: #848494;
}

/*
  adjust icon
*/

.itemOffer-title .icon {
  width: 37px;
  height: 37px;
  position: relative;
  float: left;
  margin: 2px 15px 0 0;
  border-radius: 100%;
}
.itemOffer-title .icon img, .itemOffer-title .icon svg {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*
  brand
  ---
*/

.itemOffer-brand {
  position: absolute;
  right: 25px;
  top: 25px;
  line-height: 1.4;
  font-size: 13px;
}
.itemOffer-brand img {
  position: relative;
  top: -1px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}

/*
  watch
  ---
*/

.itemOffer-watch {
  margin-top: 40px;
  line-height: 1.5;
}

/*
  adjust icon
  ---
*/

.itemOffer-watch .icon {
  position: relative;
  top: -1px;
  margin-right: 4px;
}

/*
  itemFlight
  ***
*/

.itemFlight {
  position: relative;
  overflow: hidden;
  background-color: #F7F7F7;
  font-size: 0;
  -webkit-transition: 200ms linear;
  -moz-transition: 200ms linear;
  transition: 200ms linear;
}

/*
  action-toggle
  ---
*/

.itemFlight.action-toggle {
  cursor: pointer;
}

/*
  size
  ---
*/

.itemFlight.size-small {
  font-size: 14px;
}

/*
  is-supressed
  ---
*/

.itemFlight.is-supressed {
  color: #c9c9d0;
}

/*
  adjust img, svg
  ...
*/

.itemFlight.is-supressed img {
  opacity: 0.2;
}
.itemFlight.is-supressed svg {
  opacity: 0.3;
}

/*
  alert
  ---
*/

.itemFlight-alert {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 4px 8px;
  transform: translate(-50%, -50%);
  background-color: #FF98B2;
  border-radius: 100px;
  line-height: 1.5;
  text-transform: uppercase;
  font-size: 12px;
  color: #fff;
}

/*
  timestamp
*/

.itemFlight-timestamp {
  display: block;
  text-align: left;
  padding: 5px 0 0 2px;
  font-size: 12px !important;
}


/*
  col
  ---
*/

.itemFlight-col {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: table-cell;
  vertical-align: middle;
  padding: 0 20px 0 0;
  text-align: left;
  white-space: nowrap;
  font-size: 16px;
  text-overflow: ellipsis;
}
.itemFlight-col.is-first {
  padding-left: 20px;
}
.itemFlight-col * {
  vertical-align: middle;
}

/*
  size
  ---
*/

.itemFlight.size-small .itemFlight-col {
  padding: 13px 20px 13px 0;
  font-size: 14px;
}
.itemFlight.size-small .itemFlight-col:first-child {
  padding-left: 20px;
}

/*
  label
*/

.itemFlight-col-label {
  min-width: 85px;
  display: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  color: #848494;
}

/*
  format
*/

.itemFlight-col em {
  font-size: 85%;
  opacity: 0.6;
}
.itemFlight-col strong {
  font-size: 120%;
}
.itemFlight-col strong > small {
  vertical-align: baseline;
  font-weight: 300;
  font-size: 80%;
}

/*
  adjust icon
*/

.itemFlight-col .icon {
  margin-right: 7px;
}
.itemFlight-col .icon img {
  border-radius: 2px;
}
.itemFlight-col .icon svg[width="28"] {
  border-radius: 3px;
}

/*
  adjust tag
*/

.itemFlight-col em + .tag, .itemFlight-col strong + .tag {
  margin-left: 10px;
}

/* actions */

.itemFlight.is-active .itemFlight-col .tag {
  background-color: #B1B1C7 !important;
}

/*
  - wrap
*/

.itemFlight-col--wrap {
  width: 100%;
  height: 64px;
  display: table;
  float: left;
  vertical-align: middle;
  font-size: 0;
  -webkit-transition: opacity 200ms linear;
  -moz-transition: opacity 200ms linear;
  transition: opacity 200ms linear;
}
.itemFlight-col--wrap:last-of-type {
  text-align: right;
}

/*
  close
  ---
*/

.itemFlight-close {
  position: absolute;
  right: 25px;
  top: 23px;
  opacity: 0;
  filter: opacity(0);
  -webkit-transition: opacity 200ms linear;
  -moz-transition: opacity 200ms linear;
  transition: opacity 200ms linear;
}

/* actions */

html.device-desktop .itemFlight.action-toggle:hover {
  background-color: #e1e1ea;
}
.itemFlight.is-active, html.device-desktop .itemFlight.is-active:hover {
  background-color: #848494;
  color: #fff;
}
.itemFlight.is-active .itemFlight-col--wrap:nth-child(2) {
  opacity: 0;
  filter: opacity(0);
}
.itemFlight.is-active .itemFlight-close {
  opacity: 1;
  filter: opacity(100);
}
.itemFlight.is-active .skinFill-lightgrey path, html.device-desktop .itemFlight.is-active.ui-toggler:hover .skinFill-lightgrey path {
  fill: #fff;
}

/*
  -- content
  ---
*/

.itemFlight---content {
  display: none;
  margin-top: -10px;
  background-color: #F7F7F7;
}
.itemFlight---content-inset {
  overflow: hidden;
  padding: 40px 50px 45px 50px;
}

/*
  link
*/

.itemFlight---content-link {
  margin-top: 30px;
  float: left;
  text-transform: none !important;
  font-size: 16px !important;
  font-weight: 300 !important;
}

/*
  adjust listDates. navSources
  ***
*/

.itemFlight---content .listDates, .itemFlight---content .navSources {
  margin-top: 40px;
}

/*
  - list
  ---
*/

.itemFlight--list {
  /* TODO */
}

/*
  adjust mobile titles
  ---
*/

.itemFlight--list .title.in-mobile {
  margin-top: 30px;
  margin-bottom: 12px;
  text-align: left;
  font-size: 14px;
}
.itemFlight--list-table .title.in-mobile {
  margin-left: -20px;
}

/*
  table
*/

.itemFlight--list-table {
  width: 100%;
  margin-top: 15px;
}
.itemFlight--list-table + .itemFlight--list-table {
  margin-top: 40px;
}
.itemFlight--list .title.in-mobile {
  display: none;
}

/* title */

.itemFlight--list-table-title {
  margin-bottom: 13px;
}
.itemFlight--list-table-title.title.level-6 {
  color: #001F3F;
}

/* head */

.itemFlight--list-table-head {
  font-size: 0;
}
.itemFlight--list-table-head > li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  padding: 0 20px 18px 0;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 500;
  font-size: 13px;
  color: #848494;
}
.itemFlight--list-table-head > li:first-child {
  padding-left: 0;
}
.itemFlight--list-table-head > li.ta-right:first-child {
  padding-right: 0;
}

/* foot */

.itemFlight--list-foot {
  display: block;
  margin-top: 10px;
}

/* adjust itemFlight */

.itemFlight--list-table .itemFlight {
  margin-bottom: 4px;
}
.itemFlight--list-table .itemFlight---content {
  margin-bottom: 10px;
}

/*
  foot
*/

.itemFlight--list-foot {
  margin-top: 30px;
}

/*
  adjust formFilter
*/

.itemFlight--list .formFilter {
  margin-bottom: 15px;
}

/*
  adjust formAdd
*/

.itemFlight--list .formAdd {
  margin-top: 17px;
}

/*
  - box
*/

.itemFlight--list--box-inset {
  padding: 60px 110px 70px 110px;
  border: 1px solid #001F3F;
}

/* foot */

.itemFlight--list--box-foot {
  margin-top: 60px;
}
.itemFlight--list--box-foot .link {
  margin-top: 30px;
}

/* adjust icon */

.itemFlight--list--box > .icon {
  width: 210px;
  position: relative;
  display: block;
  margin: 0 auto -40px auto;
  padding-bottom: 15px;
  background-color: #fff;
}

/*
  itemDefinition
  ***
*/

.itemDefinition {
  /* TODO */
}

/*
  upgrade
  ---
*/

.itemDefinition-upgrade {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
  padding-left: 20px;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  color: #F73B28;
}
body.effectEnable .itemDefinition-upgrade {
  transition: 150ms linear;
}

/*
  title
  ---
*/

.itemDefinition-title {
  position: relative;
  padding: 13px 20px 13px 55px;
  background-color: #f7f7f7;
  line-height: 1.6;
  font-weight: 500;
  user-select: none;
}
body.effectEnable .itemDefinition-title {
  transition: 150ms linear;
}
html.js .itemDefinition-title {
  cursor: pointer;
}

/*
  content
  ...
*/

.itemDefinition-title-content {
  float: right;
  transition: 150ms linear;
}

/*
  adjust tag
*/

.itemDefinition-title-content .tag {
  vertical-align: middle;
}


/*
  adjust icon
  ...
*/

.itemDefinition-title .icon {
  position: absolute;
  left: 22px;
  top: 50%;
  margin-top: -8px;
}
.itemDefinition-title .itemDefinition-close.icon {
  left: auto;
  right: 25px;
  opacity: 0;
  transition: 150ms linear;
}

/* actions */

html.js .itemDefinition-title:hover {
  background-color: #e1e1ea;
}
.itemDefinition.is-active .itemDefinition-title {
  padding-top: 16px;
  padding-bottom: 16px;
  background-color: #848494 !important;
  font-size: 19px;
  color: #fff;
}
.itemDefinition.is-active .itemDefinition-title .icon path {
  fill: #ebebf1;
}
.itemDefinition.is-active  .itemDefinition-title .itemDefinition-close.icon {
  opacity: 1;
}
.itemDefinition.is-active  .itemDefinition-title-content {
  opacity: 0;
}

/*
  content
  ---
*/

.itemDefinition-content {
  padding: 45px 55px;
  background-color: #f7f7f7;
}

/*
  adjust formSimple
  ...
*/

.itemDefinition-content .formSimple {
  max-width: 380px;
  margin: 0 auto;
}

/*
  - list
  ---
*/

.itemDefinition--list {
  /* TODO */
}

/*
  adjust itemDefinition
  ---
*/

.itemDefinition--list .itemDefinition {
  margin-bottom: 5px;
}

/*
  detailflight
  ***
*/

.detailFlight {
  /* TODO */
}

/*
  head
  ---
*/

.detailFlight-head {
  float: left;
  margin-bottom: 0;
}

/*
  adjust tag
  ---
*/

.detailFlight-head .tag {
  margin: 0 3px 3px 0;
}

/*
  logo
  ---
*/

.detailFlight-logo {
  display: inline-block;
  margin: 0 10px 15px 0;
}
.detailFlight-logo[width="40"] {
  display: inline-block;
  margin-bottom: 5px;
  border-radius: 5px;
}

/*
  title
  ---
*/

.detailFlight-title {
  margin-bottom: 15px;
  line-height: 1.65;
  font-weight: 400;
  font-size: 20px;
}
.detailFlight-title b {
  font-size: 36px;
}

/*
  adjust icon
  ...
*/

.detailFlight-title .icon {
  position: relative;
  top: -2px;
  margin: 0 4px;
}

/*
  watch
  ---
*/

.detailFlight-watch {
  margin-top: 12px;
  line-height: 1.65;
  font-size: 14px;
}

/*
  offer
  ---
*/

.detailFlight-offer {
  width: 150px;
  overflow: hidden;
  float: right;
  margin-top: 12px;
  line-height: 1.3;
  text-align: right;
  font-size: 13px;
  color: #848494;
}

/*
  format
  ...
*/

.detailFlight-offer > strong {
  display: block;
  line-height: inherit;
  text-align: left;
}
.detailFlight-offer > small {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
}

/*
  adjust tag
  ...
*/

.detailFlight-offer > .tag {
  margin-top: 7px;
}

/*
  link
  ---
*/

.detailFlight-link.type-button {
  float: left;
  padding-left: 15px;
  text-transform: none;
  font-weight: 500;
}

/* actions */

html.device-desktop .detailFlight-link.type-button.skinBg-transparent:hover {
  background-color: transparent
}
html.device-desktop .detailFlight-link.type-button.skinBg-transparent:hover > span {
  text-decoration: underline;
}

/*
  adjust icon
  ...
*/

.detailFlight-offer .icon {
  float: left;
  margin: 4px 10px 5px 0;
}

/*
  adjust icon
  ...
*/

.detailFlight-watch .icon {
  position: relative;
  top: -2px;
  margin-right: 4px;
}

/*
  adjust listDates
  ---
*/

.detailFlight .listDates {
  margin-top: 40px;
}

/*
  adjust shareBox
  ---
*/

.detailFlight .shareBox {
  float: left;
  margin: 16px 0 0 70px;
}

/*
  adjust navSources
  ---
*/

.detailFlight .navSources {
  margin: 35px 0 25px 0;
}

/*
  adjust format
  ---
*/

.detailFlight .format {
  max-width: 560px;
  margin-top: 40px;
  font-size: 16px;
}

/*
  adjust format
*/

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.detailFlight .format li {
  margin-bottom: 15px;
  padding-left: 45px;
  
}
.detailFlight .format ul > li:before {
  background-color: #848494;
  border-radius: 100%;
}
.detailFlight .format .title.level-6 {
  margin: 0 0 15px 0;
}

/*
  detailPage
  ***
*/

.detailPage {
  position: relative;
  margin-bottom: 80px;
}

/*
  align
  ---
*/

.detailPage.align-right {
  padding-left: 400px;
}
.detailPage.align-left {
  padding-right: 400px;
}

/*
  thumb
  ---
*/

.detailPage-thumb, .detailPage-thumb img {
  width: 300px;
  display: block;
  border-radius: 100%;
}
.detailPage-thumb {
  position: absolute;
  top: 0;
  display: none;
  box-shadow: 0 4px 25px rgba(0,0,0,0.12);
}

/*
  map
  ---
*/

.detailPage-map {
  width: 550px;
  height: 380px;
  position: absolute;
  left: -200px;
  top: -120px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0,0,0,0.2);
}

/*
  align
*/

.detailPage.align-right .detailPage-thumb, .detailPage.align-left .detailPage-thumb {
  display: block;
}
.detailPage.align-right .detailPage-thumb {
  left: 0;
}
.detailPage.align-left .detailPage-thumb {
  right: 0;
}

/*
  pull
  ---
*/

.detailPage-pull {
  position: relative;
  margin-top: 50px;
}

/*
  align
*/

.detailPage-pull.align-right {
  padding-left: 290px;
}
.detailPage-pull.align-left {
  padding-right: 290px;
}

/*
  thumb
*/

.detailPage-pull-thumb {
  position: absolute;
  top: 5px;
  display: none;
}

/* align */

.detailPage-pull.align-right .detailPage-pull-thumb, .detailPage-pull.align-left .detailPage-pull-thumb {
  display: block;
}
.detailPage-pull.align-right .detailPage-pull-thumb {
  left: 0;
}
.detailPage-pull.align-left .detailPage-pull-thumb {
  right: 0;
}

/*
  adjust itemFigure--list
  ---
*/

.detailPage .itemFigure--list {
  margin: 10px auto 30px auto;
}

/*
  itemFigure
  ***
*/

.itemFigure {
  font-size: 16px;
}

/*
  excerpt
  ---
*/

.itemFigure-excerpt {
  position: relative;
  display: block;
  padding: 8px 0 10px 0;
  line-height: 1.7;
  text-align: center;
  color: #848494;
}
.itemFigure-excerpt:after {
  content: '';
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #d8d8d8;
}

/*
  thumb
  ---
*/

.itemFigure-thumb {
  width: 100%;
}

/*
  - list
  ---
*/

.itemFigure--list {
  font-size: 0;
}
.itemFigure--list-inset {
  margin: 0 -15px;
}

/*
  more
*/

.itemFigure--list-more {
  display: block;
  text-align: center;
  font-size: 14px;
}

/*
  adjust itemFigure
*/

.itemFigure--list .itemFigure {
  width: 50%;
  display: inline-block;
  margin-bottom: 23px;
}
.itemFigure--list .itemFigure-inset {
  padding: 0 15px;
}
.itemFigure--list .itemFigure.is-first .itemFigure-excerpt:after {
  right: -15px;
}
.itemFigure--list .itemFigure.is-last .itemFigure-excerpt:after {
  left: -15px;
}

/*
  webHead
  ***
*/

#webHead {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid #EBEBF1;
}
#webHead-inset {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 40px;
}

/*
  logo
  ---
*/

#webHead-logo {
  width: 104px;
  height: 79px;
  position: relative;
  float: left;
  overflow: hidden;
  margin: -20px 70px -20px 0;
  white-space: nowrap;
  text-indent: 200%;
}
#webHead-logo:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url('../img/logo.svg') center center no-repeat;
  background-size: contain;
}

/*
  nav
  ---
*/

#webHead-nav {
  float: left;
}
#webHead-nav > ul {
  font-size: 0;
}
#webHead-nav > ul > li {
  display: inline-block;
}
#webHead-nav > ul > li > a {
  display: block;
  padding: 8px 18px;
  line-height: 1.4;
  text-decoration: none;
  font-size: 14px;
  color: #848494;
}

/* actions */

html.device-desktop #webHead-nav > ul > li > a:hover, #webHead-nav > ul > li.is-active > a {
  color: #FF0000;
}

/*
  user
  ---
*/

#webHead-user {
  float: right;
  margin-left: 2%;
}
#webHead-user > ul {
  font-size: 0;
}
#webHead-user > ul > li {
  display: inline-block;
}
#webHead-user > ul > li > a {
  display: block;
  padding: 8px 25px;
  line-height: 1.4;
  text-decoration: none;
  font-size: 14px;
  color: #FF0000;
}

/* actions */

html.device-desktop #webHead-user > ul > li > a:hover {
  color: #001F3F;
}
#webHead-user > ul > li.is-active > a {
  background-color: #F73B28;
  text-transform: uppercase;
  font-size: 13px;
  color: #fff;
}
html.device-desktop #webHead-user > ul > li.is-active > a:hover {
  background-color: #cd0000;
}

/*
  adjust navDropdown--group
  ---
*/

#webHead .navDropdown--group.align-left {
  float: left;
  margin-left: 20px;
}
#webHead .navDropdown--group.align-right {
  float: right;
}
#webHead .navDropdown--group#webHead-user-replace {
  display: none;
}

/*
  adjust burger
  ---
*/

#webHead .burger {
  float: right;
  display: none;
  margin-left: 15px;
  margin-top: -6px;
}

/*
  webMain
  ***
*/

.webMain {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.webMain-inset {
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 40px 0 40px;
}

/*
  size
  ---
*/

.webMain-inset.size-large {
  max-width: 1100px;
}

/*
  separate
  ---
*/

.webMain-separate {
  margin-bottom: 120px;
}
.webMain-separate-small {
  margin-bottom: 80px;
}
.webMain-separate-tiny {
  margin-bottom: 50px;
}

/*
  webFoot
  ***
*/

#webFoot, #webFoot-inset {
  overflow: hidden;
}
#webFoot {
  background: #031c39 url('../img/webFoot.jpg') center center no-repeat;
  background-size: cover;
  text-align: center;
  font-size: 14px;
  color: #8895a4;
}
#webFoot-inset {
  max-width: 1440px;
  margin: 0 auto;
  padding: 50px 40px 10px 40px;
}

/*
  title
  ---
*/

#webFoot-title {
  margin-bottom: 25px;
  font-size: 24px;
  color: #fff;
}

/*
  nav
  ---
*/

#webFoot-nav {
  display: inline-block;
  margin-bottom: 50px;
}
#webFoot-nav > ul {
  font-size: 0;
}
#webFoot-nav > ul > li {
  display: inline-block;
}
#webFoot-nav > ul > li > a {
  position: relative;
  display: block;
  padding: 8px 25px;
  line-height: 1.4;
  text-decoration: none;
  font-size: 16px;
  color: #fff;
}
#webFoot-nav > ul > li > a:after {
  content: '';
  width: 3px;
  height: 3px;
  position: absolute;
  right: -2px;
  top: 50%;
  margin-top: -2px;
  background-color: #b1b1c7;
  border-radius: 100%;
}
#webFoot-nav > ul > li:last-child > a:after {
  display: none;
}

/* actions */

#webFoot-nav > ul > li.is-active > a, html.device-desktop #webFoot-nav > ul > li > a:hover {
  text-decoration: underline;
}

/*
  social
  ---
*/

#webFoot-social {
  margin-bottom: 50px;
  font-size: 0;
}
#webFoot-social > li {
  display: inline-block;
}
#webFoot-social > li > a {
  position: relative;
  display: block;
  padding: 7px 30px 7px 42px;
  line-height: 1.4;
  text-decoration: none;
  font-size: 16px;
  color: #fff;
}

/*
  adjust icon
  ---
*/

#webFoot-social > li > a > .icon {
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin: -1px 10px 0 0;
  background-color: #fff;
  border-radius: 100%;
}
#webFoot-social > li > a > .icon > img, #webFoot-social > li > a > .icon > svg {
  margin: 7px auto 0 auto;
}

/* actions */

html.device-desktop #webFoot-social > li > a:hover {
  text-decoration: underline;
}

/*
  copy
  ---
*/

#webFoot-copy {
  margin-bottom: 50px;
  line-height: 1.7;
}
#webFoot-copy a {
  text-decoration: none;
  color: #8895a4;
}
#webFoot-copy span {
  width: 3px;
  height: 3px;
  position: relative;
  top: -2px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
  background-color: #8895a4;
  border-radius: 100%;
}

/* actions */

html.device-desktop #webFoot-copy a:hover {
  color: #F73B28;
}

/*
  webFlash
  ***
*/

#webFlash-inset {
  overflow: hidden;
  display: block;
  padding: 22px 40px 12px 40px;
  text-align: center;
  text-decoration: none;
  color: #fff;
}

/*
  title
  ---
*/

#webFlash-title {
  margin-bottom: 10px;
  line-height: 1.6;
  text-decoration: underline;
  font-size: 20px;
  font-weight: 400;
}

/* actions */

html.device-desktop #webFlash-inset:hover {
  color: #061f3b;
}

/*
  skinColor
  ***
*/

.skinColor-white {
  color: #fff;
}
.skinColor-lightgrey {
  color: #b7b7cc;
}
.skinColor-grey {
  color: #848494;
}
.skinColor-darkgrey {
  color: #505062;
}
.skinColor-lightgreen {
  color: #B5ECB3;
}
.skinColor-green {
  color: #5E9E15;
}
.skinColor-darkgreen {
  color: #03A350;
}
.skinColor-greeny {
  color: #02a350;
}
.skinColor-red {
  color: #D0021B;
}
.skinColor-orange {
  color: #eb8060;
}
.skinColor-darkorange {
  color: #F73B28;
}
.skinColor-darkblue {
  color: #001f3f;
}
.skinColor-blue {
  color: #5ebce0;
}
.skinColor-darkpink {
  color: #FF278F;
}
.skinColor-pink {
  color: #FFABB5;
}

/*
  skinOpacity
  ***
*/

.skinOpacity-80 {
  opacity: 0.8;
}
.skinOpacity-60 {
  opacity: 0.6;
}
.skinOpacity-40 {
  opacity: 0.4;
}
.skinOpacity-20 {
  opacity: 0.2;
}

/*
  skinBg
  ***
*/

.skinBg-white {
  background-color: #fff;
}
.skinBg-lightgrey {
  background-color: #b7b7cc;
}
.skinBg-grey {
  background-color: #848494;
}
.skinBg-darkgrey {
  background-color: #505062;
}
.skinBg-lightgreen {
  background-color: #B5ECB3;
}
.skinBg-green {
  background-color: #5E9E15;
}
.skinBg-darkgreen {
  background-color: #03A350;
}
.skinBg-greeny {
  background-color: #02a350;
}
.skinBg-red {
  background-color: #D0021B;
}
.skinBg-orange {
  background-color: #eb8060;
}
.skinBg-darkorange {
  background-color: #F73B28;
}
.skinBg-darkblue {
  background-color: #001f3f;
}
.skinBg-blue {
  background-color: #5ebce0;
}
.skinBg-darkpink {
  background-color: #FF0084;
}
.skinBg-pink {
  background-color: #FFABB5;
}
.skinBg-transparent {
  background-color: transparent;
}

/*
  skinBorder
  ***
*/

.skinBorder-white {
  border-color: #fff;
}
.skinBorder-lightgrey {
  border-color: #b7b7cc;
}
.skinBorder-grey {
  border-color: #848494;
}
.skinBorder-darkgrey {
  border-color: #505062;
}
.skinBorder-lightgreen {
  border-color: #B5ECB3;
}
.skinBorder-green {
  border-color: #5E9E15;
}
.skinBorder-darkgreen {
  border-color: #03A350;
}
.skinBorder-greeny {
  border-color: #02a350;
}
.skinBorder-red {
  border-color: #D0021B;
}
.skinBorder-orange {
  border-color: #eb8060;
}
.skinBorder-darkorange {
  border-color: #F73B28;
}
.skinBorder-darkblue {
  border-color: #001f3f;
}
.skinBorder-blue {
  border-color: #5ebce0;
}
.skinBorder-darkpink {
  border-color: #FF0084;
}
.skinBorder-pink {
  border-color: #FFABB5;
}

/* actions */

html.device-desktop a.skinBg-grey:hover, html.device-desktop input.skinBg-grey:hover, html.device-desktop button.skinBg-grey:hover {
  background-color: #6d6d81 !important;
}
html.device-desktop a.skinBg-white:hover, html.device-desktop input.skinBg-white:hover, html.device-desktop button.skinBg-white:hover {
  background-color: #fbfbfb !important;
}
html.device-desktop a.skinBg-grey:focus, html.device-desktop input.skinBg-grey:focus, html.device-desktop button.skinBg-grey:focus {
  background-color: #505062 !important;
}
html.device-desktop a.skinBg-darkorange:hover, html.device-desktop input.skinBg-darkorange:hover, html.device-desktop button.skinBg-darkorange:hover {
  background-color: #cd0000 !important;
}
html.device-desktop a.skinBg-darkorange:focus, html.device-desktop input.skinBg-darkorange:focus, html.device-desktop button.skinBg-darkorange:focus {
  background-color: #991f1f !important;
}
html.device-desktop a.skinBg-greeny:hover, html.device-desktop input.skinBg-greeny:hover, html.device-desktop button.skinBg-greeny:hover {
  background-color: #059249 !important;
}
html.device-desktop a.skinBg-greeny:focus, html.device-desktop input.skinBg-greeny:focus, html.device-desktop button.skinBg-greeny:focus {
  background-color: #06793e !important;
}

/*
  skinFill
  ***
*/

.skinFill-white path {
  fill: #fff;
}
.skinFill-lightgrey path {
  fill: #b7b7cc;
}
.skinFill-grey path {
  fill: #848494;
}
.skinFill-darkgrey path {
  fill: #505062;
}
.skinFill-lightgreen path {
  fill: #B5ECB3;
}
.skinFill-green path {
  fill: #5E9E15;
}
.skinFill-darkgreen path {
  fill: #03A350;
}
.skinFill-greeny path {
  fill: #02a350;
}
.skinFill-red path {
  fill: #D0021B;
}
.skinFill-orange path {
  fill: #eb8060;
}
.skinFill-darkorange path {
  fill: #F73B28;
}
.skinFill-darkblue path {
  fill: #001f3f;
}
.skinFill-blue path {
  fill: #5ebce0;
}
.skinFill-darkpink path {
  fill: #FF0084;
}
.skinFill-pink path {
  fill: #FFABB5;
}
