/*------------------------------------*\
    $TABLE OF CONTENTS
    based generally on Harry Roberts excellent CSS Guidelines https://github.com/csswizardry/CSS-Guidelines
\*------------------------------------*/
/**
 * VARIABLES..............................Declarations of Sass variables
 * .....Colors
 * .....Typography
 * .....Layout
 * .....Defaults
 * .....Breakpoints
 * MIXINS.................................Sass mixins
 * RESET..................................Set reset defaults
 * GLOBAL CLASSES.........................Set reset defaults
 * GLOBAL ELEMENTS........................Establish global styles
 * .....Main
 * .....Headings
 * .....Text-related elements (p, blockquote, lists)
 * .....Defaults
 * .....Breakpoints
 * TYPOGRAPHY------------------------------
 * MEDIA------------------------------
 * LAYOUT------------------------------
 * NAVIGATION------------------------------
 * TOC To Be Continued
 */
/*------------------------------------*\
    $VARIABLES
\*------------------------------------*/
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/* CSS Transition
	Usage: @include transition(width,0.3s,ease-out);
 */
/* Rem Unit font sizes with relative fallback http:/seesparkbox.com/foundry/scss_rem_mixin_now_with_a_better_fallback
	Usage: @include font-size(1, large);
*/
/*------------------------------------*\
    $GLOBAL ELEMENTS
\*------------------------------------*/
/*------------------------------------*\
    $GLOBAL CLASSES
\*------------------------------------*/
/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box; }

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

/* Clearfix */
.clearfix {
  *zoom: 1; }

.clearfix:before, .clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.clearfix:after {
  clear: both; }

/* Completely remove from the flow and screen readers. */
.is-hidden {
  display: none !important;
  visibility: hidden !important; }

/* Completely remove from the flow but leave available to screen readers. */
.is-vishidden, .visuallyhidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px); }

.low-opacity {
  opacity: 0.2; }

/* Floats */
.right {
  float: right; }

.left {
  float: left; }

.add-top {
  margin-top: 20px !important; }

.half-top {
  margin-top: 10px !important; }

.add-section-top {
  margin-top: 40px !important; }

.add-bottom {
  margin-bottom: 20px !important; }

.add-right {
  margin-right: 20px !important; }

.add-section-right {
  margin-right: 40px !important; }

.add-left-margin {
  margin-left: 20px; }

.half-bottom {
  margin-bottom: 10px !important; }

.add-section-bottom {
  margin-bottom: 40px !important; }

.remove-top {
  margin-top: 0 !important; }

.remove-bottom {
  margin-bottom: 0 !important; }

.relative {
  position: relative; }

/* Text-Align */
.align-right {
  text-align: right; }

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

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

.font-secondary {
  font-family: "Open Sans", sans-serif; }

.dark-background {
  color: white; }

.remove-margin {
  margin: 0 !important; }

.remove-top-padding {
  padding-top: 0 !important; }

.divider-bottom {
  border-bottom: 1px solid #dddddd; }

.add-bottom-with-divider {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dddddd; }

@media all and (max-width: 768px) {
  .remove-padding-sm {
    padding: 0 !important; } }

@media all and (max-width: 768px) {
  .add-padding-side-sm {
    padding: 0 10px !important; } }

@media all and (max-width: 550px) {
  .remove-float-xs {
    float: none !important; } }

.transform-center-all {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0); }

.no-csstransforms3d .transform-center-all {
  top: 10%;
  left: 10%; }

.no-background {
  background: none !important; }

.scroll-horizontal-content {
  width: 100%;
  overflow-x: auto; }

html {
  -webkit-font-smoothing: antialiased;
  overflow-y: scroll; }

body {
  background: #EDEFF5;
  color: #1b1728;
  font: 16px/1.4 "Open Sans", sans-serif !important;
  padding-bottom: 50px; }

.controls-visible.signed-in.admin-user .portlet-column-content {
  padding: .25em;
  border: 1px dashed #c7c7c7; }
  .controls-visible.signed-in.admin-user .portlet-column-content.empty {
    padding: 1em; }
  .controls-visible.signed-in.admin-user .portlet-column-content:hover, .controls-visible.signed-in.admin-user .portlet-column-content:focus {
    border-color: #5d5d5d; }

.columns-max {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto; }

@media all and (max-width: 768px) {
  .aui body {
    padding: 0; } }

@media print {
  .portlet-dockbar {
    display: none; } }
/* Links */
a {
  color: #5093e1;
  text-decoration: none;
  outline: 0;
  cursor: pointer; }
  a:hover, a:focus, a:active {
    color: #438bdf;
    text-decoration: underline; }
  a.link-with-arrow {
    position: relative; }
    a.link-with-arrow:after {
      content: "";
      height: 23px;
      width: 23px;
      background: url(../images/icons/icon-round-arrow.svg) no-repeat;
      display: inline-block;
      position: absolute;
      right: -30px; }
      @media all and (max-width: 768px) {
        a.link-with-arrow:after {
          display: none; } }

.journal-content-article p a:visited {
  color: #7caee8; }

@media print {
  a[href]:after {
    content: none !important; } }
.toggle-visibility {
  margin-bottom: 20px;
  display: inline-block;
  color: #1b1728;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600; }

.scroll-down-link {
  background: url(../images/arrows/arrow-full-down-public-primary.svg) no-repeat right 4px;
  background-size: 10px auto;
  padding-right: 15px; }

/* Headings */
/*Further Reading: http:/csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css/ */
h1, h2 {
  font-family: "Open Sans", sans-serif; }

h1, .alpha {
  line-height: 1.2;
  font-size: 1.6875em;
  font-weight: normal; }
  @media all and (max-width: 768px) {
    h1, .alpha {
      font-size: 1.375em; } }

h2, .beta {
  line-height: 1.2;
  font-size: 1.625em;
  font-weight: normal; }
  @media all and (max-width: 768px) {
    h2, .beta {
      font-size: 1.1875em; } }

h3, .gamma {
  line-height: 1.2;
  font-size: 1.25em;
  margin-bottom: 0.75em;
  font-weight: 600; }
  @media all and (max-width: 768px) {
    h3, .gamma {
      font-size: 1.0625em; } }

h4, .delta {
  line-height: 1.2;
  font-size: 1.0625em;
  margin-bottom: 0.75em;
  font-weight: 600; }
  @media all and (max-width: 768px) {
    h4, .delta {
      font-size: 1em; } }

h5, .epsilon {
  font-size: 1em;
  font-weight: 600; }
  @media all and (max-width: 768px) {
    h5, .epsilon {
      font-size: 0.9375em; } }

h6, .zeta {
  font-size: 0.875em;
  font-weight: normal; }

/* Subheadings */
.subheading {
  font-family: "Open Sans", sans-serif;
  font-weight: normal; }

.page-title {
  margin: 0 0 15px; }
  @media all and (max-width: 768px) {
    .page-title {
      padding: 0 20px; } }

.heading-toggle {
  position: relative;
  padding: 5px 0 5px 35px;
  border-bottom: 2px solid #DCDCDC;
  cursor: pointer;
  background: rgba(240, 240, 240, 0.6);
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }
  .heading-toggle:hover {
    color: #525252;
    background: #f0f0f0; }
  .heading-toggle::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 7px;
    display: inline-block;
    margin-right: 0px;
    width: 20px;
    height: 20px;
    background: url(../images/icons/icon-arrow-circle-right-color-primary.svg) no-repeat;
    background-size: 100%;
    -webkit-transition: transform 0.2s ease-in-out;
    -moz-transition: transform 0.2s ease-in-out;
    -ms-transition: transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out; }
  .heading-toggle.open::before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); }

/* Text-Related Elements */
p {
  margin-bottom: 20px;
  font-size: 0.875em; }
  @media all and (max-width: 768px) {
    p {
      font-size: 0.9375em; } }
  p.lead {
    font-size: 20px; }
    @media all and (max-width: 768px) {
      p.lead {
        font-size: 16px; } }

pre {
  border: 1px solid #dddddd;
  background: #f0f0f0;
  border-radius: 2px;
  padding: 0px;
  margin: 10px 0; }
  pre code {
    padding: 0;
    background: none; }

/* Blockquote */
blockquote {
  font-family: "Open Sans", sans-serif;
  font-style: italic;
  border-left: 2px solid #dddddd;
  color: #666666;
  padding-left: 15px;
  margin-bottom: 20px; }
  blockquote cite {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-size: 0.875em; }

/* Horizontal Rule */
hr {
  border: 0;
  height: 1px;
  background: #dddddd;
  margin: 40px 0; }
  hr.reduce-spacing {
    margin-top: 25px;
    margin-bottom: 25px; }

abbr {
  border-bottom: 1px dotted #626262;
  cursor: help; }

.text-align-bottom {
  height: 40px;
  line-height: 40px;
  display: table; }
  .text-align-bottom span {
    vertical-align: bottom; }
  .text-align-bottom .small-inline-bottom {
    font-size: 13px; }
  .text-align-bottom .large-inline-bottom {
    font-size: 20px; }

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

.bold, .strong {
  font-weight: bold; }

.semibold {
  font-weight: 600; }

.muted {
  color: #818181; }

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

.text-large {
  font-size: 1.3em; }

.text-small {
  font-size: 0.895em; }

.text-font-weight-normal {
  font-weight: normal !important; }

.label {
  text-shadow: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  border-radius: 10px;
  padding: 2px 8px;
  background-color: #9E9E9E; }
  .label.label-success {
    background-color: #51bf49; }
  .label.label-warning {
    background-color: #e05d5d; }
  .label.label-important {
    background-color: #f85677; }
  .label.label-info {
    background-color: #5093e1; }
  .label.label-inverse {
    background-color: #626262; }
  .label.label-source-INTERNAL {
    background-color: #0AA2A2; }
  .label.label-source-ONLINE {
    background-color: #E68D08; }
  .label.label-source-SCHOOL {
    background-color: #f85677; }
  .label.label-language {
    background-color: #6e16af;
    font-size: 10px;
    padding: 1px 2px 2px;
    border-radius: 2px;
    margin-left: 5px;
    width: 24px;
    text-align: center; }

.text-highlight-box {
  background-color: #6e16af;
  border-radius: 2px;
  color: #FFF;
  font-weight: 600;
  padding: 5px;
  line-height: 1; }
  .text-highlight-box.text-highlight-box-accent {
    background-color: #51bf49; }
  .text-highlight-box.text-highlight-box-primary {
    background-color: #5093e1; }
  .text-highlight-box.text-highlight-box-notification {
    background-color: #f85677; }

.text-highlight-large {
  font-size: 1.25em; }

.text-highlight-large-fixed-width {
  display: inline-block;
  min-width: 40px;
  text-align: center;
  margin-right: 5px; }

.text-public-primary {
  color: #10069f; }

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

/* Definition Lists */
dl {
  overflow: hidden;
  margin: 0 0 20px; }

dt {
  font-weight: bold; }

dd {
  margin-left: 0; }

ul.item-list li {
  margin-bottom: 10px; }

.item-list-tall li {
  margin-bottom: 10px;
  line-height: 2em; }

.journal-content-article ul, .journal-content-article ol {
  margin: 0 0 20px 0;
  padding: 0 0 0 20px; }
.journal-content-article ul {
  list-style: square;
  list-style-position: outside; }
.journal-content-article ol {
  list-style: decimal;
  list-style-position: outside; }

/*------------------------------------*\
    $MEDIA ELEMENTS
\*------------------------------------*/
/* Flexible Media */
img, video, object {
  max-width: 100%;
  height: auto; }

img.parallax-slider {
  max-width: none; }

iframe {
  margin-bottom: 20px; }

figure {
  margin-bottom: 20px; }
  figure img {
    margin-bottom: 10px; }

figcaption {
  font-style: italic; }

/*
 * Let's target IE to respect aspect ratios and sizes for img tags containing SVG files
 *
 * [1] IE9
 * [2] IE10+
 */
/* 1 */
.ie .logo img[src*=".svg"] {
  width: 100%; }

/* 2 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .logo img[src*=".svg"] {
    width: 100%; } }
.image-details-view {
  max-width: 90px; }

.media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start; }

.media-figure {
  margin-right: 1em; }

.media-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.profile-avatar {
  width: 90px;
  border: 1px solid #A5A5A5;
  padding: 5px;
  border-radius: 50px;
  background-color: #EAEAEA; }

/*------------------------------------*\
    $Table
\*------------------------------------*/
.table th.table-cell-with-buttons {
  width: 140px; }
.table td {
  vertical-align: middle;
  font-size: 0.875em; }
  .table td.center-all {
    text-align: center;
    vertical-align: middle; }

.table.table-light-borders td {
  border-color: #eeeeee; }
  .table.table-light-borders td.thick-border {
    border-top: 1px solid #7B7B7B; }

.resource-week-calendar-table .table-resource-day-list {
  border-collapse: separate; }
  .resource-week-calendar-table .table-resource-day-list td {
    border-left: none;
    border-right: none;
    border-bottom: none;
    background-color: #FFF; }
    .resource-week-calendar-table .table-resource-day-list td:last-child {
      text-align: right; }
    .resource-week-calendar-table .table-resource-day-list td.continued {
      background: url(../images/arrows/arrow-full-up.svg) no-repeat right 10px center;
      background-size: 12px auto; }
  .resource-week-calendar-table .table-resource-day-list .entry-type-reserved.entry-flag-not-allocated td {
    border-top: none; }

.dataTables_length select {
  margin-bottom: 0;
  width: 60px; }

.dataTables_wrapper .dataTables_filter input {
  width: 180px; }

table.dataTable thead th, table.dataTable.no-footer {
  border-bottom: 2px solid #B9BEC7; }

table.dataTable thead th {
  padding: 14px 18px; }
  @media all and (max-width: 768px) {
    table.dataTable thead th {
      font-size: 13px; } }

.floatThead-wrapper {
  overflow-x: auto; }

.table-horizontally-scrollable {
  position: relative; }
  @media all and (max-width: 768px) {
    .table-horizontally-scrollable:after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 30px;
      height: 100%;
      pointer-events: none;
      background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
      /* FF3.6-15 */
      background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }
    .table-horizontally-scrollable table {
      border-top: 3px solid #BDBDBD; } }

th.exceptions-column {
  width: 250px; }

@media all and (max-width: 768px) {
  table.dataTable tbody th {
    font-size: 14px; } }

table.dataTable thead .sorting {
  background-color: #fafafa; }

table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc {
  background-color: #E2E3E4; }

table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc, table.dataTable thead .sorting_asc_disabled, table.dataTable thead .sorting_desc_disabled {
  background-repeat: no-repeat;
  background-position: center right 3px; }

@media all and (max-width: 1028px) {
  table .btn {
    margin-bottom: 5px; } }

.td-block-buttons .btn {
  display: block;
  margin-bottom: 5px; }
  .td-block-buttons .btn:last-child {
    margin-bottom: 0; }

table.opening-hours tbody tr, table.table-simple tbody tr {
  background: none; }
table.opening-hours tbody tr td, table.table-simple tbody tr td {
  padding: 2px;
  border-top: none;
  vertical-align: top;
  background: none !important; }
table.opening-hours tbody tr td:first-child, table.table-simple tbody tr td:first-child {
  padding-left: 0; }

#stations-table td {
  vertical-align: top; }

.table-resource-day-list .no-results {
  color: #626262;
  text-align: center;
  font-size: 1.0625em;
  padding: 40px 10px;
  font-weight: 600; }
.table-resource-day-list td .name {
  font-weight: 600; }
.table-resource-day-list td.status {
  background: url(../images/icons/icon-check-white.svg) no-repeat #51bf49 center center;
  background-size: 16px auto; }
.table-resource-day-list .unused_slot td.status {
  background: none; }
@media print {
  .table-resource-day-list {
    font-size: 12px !important; }
    .table-resource-day-list .label {
      text-transform: none;
      font-weight: normal;
      padding: 0; }
    .table-resource-day-list th:first-child {
      width: 0 !important; }
    .table-resource-day-list th:nth-child(2) {
      width: 85px !important;
      padding-left: 0; }
    .table-resource-day-list td:nth-child(2) {
      padding-left: 0; } }

.no_requisites td.status {
  background: url(../images/icons/icon-warning-white.svg) no-repeat #ec3e3e center center;
  background-size: 20px auto; }
.no_requisites td {
  background: #f5e9e9; }

.requisite_check_problem td.status {
  background: url(../images/icons/icon-warning-white.svg) no-repeat #f85677 center center;
  background-size: 20px auto; }
.requisite_check_problem td {
  background: #f5e5e8; }

.used_outside_allocation td.status {
  background: url(../images/icons/icon-warning-black.svg) no-repeat #ffd102 center center;
  background-size: 20px auto; }
.used_outside_allocation td {
  background: #f5f4e9; }

.used_outside_station_opening_hours td.status {
  background: url(../images/icons/icon-warning-white.svg) no-repeat #303746 center center;
  background-size: 20px auto; }
.used_outside_station_opening_hours td {
  background: #eeeeee; }

.unused_allocation_slot td.status {
  background: url(../images/icons/icon-circle-white.svg) no-repeat #5093e1 center center;
  background-size: 16px auto; }
.unused_allocation_slot td {
  background: #e9edf2; }

.non_reservable_slot td.status {
  background: url(../images/icons/icon-circle-white.svg) no-repeat #626262 center center;
  background-size: 16px auto; }
.non_reservable_slot td {
  background: #dddddd; }

.unused_outside_station_opening_hours td.status {
  background: url(../images/icons/icon-warning-white.svg) no-repeat #6e16af center center;
  background-size: 20px auto; }
.unused_outside_station_opening_hours td {
  background: #ede4f0; }

/* for week list */
.entry-type-closed td.status,
.entry-type-open td.status {
  background: none; }

.entry-type-allocated td.status {
  background: url(../images/icons/icon-circle-white.svg) no-repeat #5093e1 center center;
  background-size: 16px auto; }

.entry-type-non-reservable td.status {
  background: url(../images/icons/icon-circle-white.svg) no-repeat #626262 center center;
  background-size: 16px auto; }

.entry-type-reserved.entry-flag-not-open td.status {
  background: url(../images/icons/icon-warning-white.svg) no-repeat #303746 center center;
  background-size: 20px auto; }
.entry-type-reserved.entry-flag-not-allocated td.status {
  background: url(../images/icons/icon-warning-black.svg) no-repeat #ffd102 center center;
  background-size: 20px auto; }

.duplicateProduct td.status {
  background: url(../images/icons/icon-warning-black.svg) no-repeat #ffd102 center center !important;
  background-size: 20px auto !important; }

.confirmedNoShow td.status {
  background: url(../images/icons/icon-warning-black.svg) no-repeat #ffd102 center center !important;
  background-size: 20px auto !important; }

.station-table-address {
  font-weight: normal !important;
  font-size: 14px !important; }

.table-responsive {
  min-height: 0.01%; }
  @media screen and (max-width: 768px) {
    .table-responsive {
      overflow-x: auto;
      width: 100%;
      margin-bottom: 20px;
      padding: 10px 0;
      overflow-y: hidden;
      -ms-overflow-style: -ms-autohiding-scrollbar;
      border: 1px solid #dddddd; }
      .table-responsive > .table {
        margin-bottom: 0; }
      .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; } }

.green {
  color: green; }

.yellow {
  color: yellow; }

.red {
  color: red; }

.color-text-danger {
  color: #ec3e3e; }

.color-bg-primary {
  background-color: #5093e1; }

.color-bg-accent {
  background-color: #51bf49; }

.color-bg-hightlight {
  background-color: #f85677; }

.color-bg-hightlight-2 {
  background-color: #6e16af; }

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

.color-bg-alert {
  background-color: #ffd102; }

.color-bg-gray-dark {
  background-color: #303746; }

.color-bg-divider {
  background-color: #dddddd; }

.color-bg-primary-text {
  background-color: #1b1728; }

.color-bg-secondary-text {
  background-color: #626262; }

.colors {
  width: 100%;
  float: left;
  margin: 0 -20px; }
  .colors .color-ball {
    float: left;
    margin: 0 20px 20px;
    text-align: center; }
  .colors .circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    line-height: 110px;
    color: #FFF;
    text-shadow: 1px 1px black; }

.color-legend {
  float: left;
  margin-right: 20px; }
  .color-legend .color-box {
    border-radius: 5px;
    width: 24px;
    height: 24px;
    float: left; }
  .color-legend .title {
    margin-left: 30px;
    line-height: 24px;
    font-weight: 600;
    color: #626262; }
  .color-legend p {
    margin-bottom: 10px; }

/*------------------------------------*\
    $FORMS
\*------------------------------------*/
/*------------------------------------*\
    $FORMS
\*------------------------------------*/
form ol, form ul {
  list-style: none;
  margin-left: 0; }

fieldset {
  border: 0;
  padding: 30px;
  margin: 0 0 20px 0;
  border: 2px solid #dddddd;
  background-color: rgba(249, 249, 249, 0.44);
  min-width: 0; }
  .lfr-admin-panel fieldset {
    padding: 0;
    border: none; }
  @media all and (max-width: 768px) {
    fieldset {
      padding: 10px; } }

body:not(:-moz-handler-blocked) fieldset {
  display: table-cell; }

legend {
  font-weight: 900;
  display: inline-block;
  width: auto;
  margin-bottom: 0;
  padding: 0px 20px; }
  @media all and (max-width: 768px) {
    legend {
      font-size: 16px; } }

legend + .control-group {
  margin-top: 0; }

label {
  font-weight: normal;
  font-size: 14px; }

.required {
  color: #f85677;
  display: inline-block;
  margin-left: 3px;
  font-weight: 600; }

.form-horizontal .control-label {
  line-height: 32px; }

.form-horizontal .control-group {
  margin-bottom: 14px; }

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0 1px 0; }

textarea {
  resize: vertical; }

textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
  border: 1px solid #d6d6d6;
  padding: 7px 0.65em;
  font-size: 0.875em;
  margin-bottom: 0;
  border-radius: 2px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  box-shadow: none;
  height: auto;
  -webkit-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out; }
  textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .uneditable-input:focus {
    outline: none;
    border-color: #5093e1;
    box-shadow: 0px 0px 5px 0px rgba(69, 149, 227, 0.3); }
  @media all and (max-width: 1000px) {
    .aui textarea, .aui input[type="text"], .aui input[type="password"], .aui input[type="datetime"], .aui input[type="datetime-local"], .aui input[type="date"], .aui input[type="month"], .aui input[type="time"], .aui input[type="week"], .aui input[type="number"], .aui input[type="email"], .aui input[type="url"], .aui input[type="search"], .aui input[type="tel"], .aui input[type="color"], .aui .uneditable-input {
      font-size: 16px; } }

@media all and (max-width: 1000px) {
  .aui.ios input {
    max-width: 100% !important; }

  .aui.ios input[type='submit'] {
    width: auto; } }
@media all and (max-width: 767px) {
  .aui.ios input[type='submit'] {
    width: 100%; } }
.error input, .error select, .error textarea {
  border-color: #ec3e3e !important;
  color: #555555 !important; }

.error .select2-container--default .select2-selection--single {
  border-color: #ec3e3e; }

.error input[type='submit'] {
  color: #FFF !important;
  border-color: #216cc3 !important; }

.error .help-block {
  color: #ec3e3e !important; }

.error .control-label {
  color: #1b1728 !important; }

.form-buttons {
  float: right; }
  .form-buttons .btn {
    margin-left: 5px; }
  @media all and (max-width: 768px) {
    .form-buttons {
      width: 100%; }
      .form-buttons .btn {
        margin-left: 0px; } }

input, textarea, .uneditable-input {
  width: 100%; }

@media all and (max-width: 768px) {
  .aui input {
    width: 100%; }

  .aui input[type=checkbox] {
    width: auto; } }
.controls .label {
  display: inline-block;
  margin-top: 14px; }

input[type=text], input[type=search], input[type=url], input[type=number], textarea {
  -webkit-appearance: none; }

input[type="search"] {
  border-radius: 2px; }

.checkbox {
  margin-bottom: 10px; }

.radio input[type="radio"], .checkbox input[type="checkbox"] {
  font-size: 16px; }

.block-radio {
  padding: 12px 6px;
  line-height: 1.2;
  border-bottom: 1px solid #ddd; }
  .block-radio input {
    margin: 0 4px 0 0;
    width: auto !important; }
  .block-radio label {
    display: inline; }

select {
  border-radius: 2px;
  background-color: #F3F3F3;
  margin-bottom: 20px; }

.help-block {
  color: #7c7c7c;
  margin: 0 0px 10px;
  font-size: 0.8125em; }

.form-horizontal .help-block {
  margin-left: 180px; }
  @media all and (max-width: 480px) {
    .form-horizontal .help-block {
      margin-left: 0; } }

.control-group + .help-block {
  margin-top: -10px; }

input[type="search"] {
  -webkit-appearance: none; }

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

.input-time {
  background: url(../images/icons/icon-clock.svg) no-repeat white top 9px right 5px;
  background-size: 20px;
  padding-right: 34px !important; }
  @media all and (max-width: 768px) {
    .input-time {
      background: #FFF;
      padding-right: 0.65em !important; } }

.checkbox-cloud .checkbox {
  float: left;
  margin-right: 15px; }
.checkbox-cloud .help-block {
  float: left;
  width: 100%;
  margin: 0; }

::-webkit-input-placeholder {
  color: #7e7e7e; }

:-moz-placeholder {
  /* Firefox 18- */
  color: #7e7e7e; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: #7e7e7e; }

:-ms-input-placeholder {
  color: #7e7e7e; }

.field-container {
  margin-bottom: 20px; }

.aui-state-default {
  color: #1b1728; }

.field.search-query {
  font-size: 16px;
  border-radius: 4px !important;
  margin-bottom: 10px;
  border-color: #7C87AD;
  background-color: #EDF5FB; }

.localized-string-input input, .localized-string-input textarea {
  padding-right: 40px;
  margin-bottom: 15px; }
.localized-string-input .mce-tinymce.mce-container.mce-panel {
  margin-bottom: 15px; }
.localized-string-input .help-block {
  margin: -10px 0 10px; }

.control-group .flag {
  position: relative;
  display: block; }
  .control-group .flag:after {
    content: "";
    width: 24px;
    height: 20px;
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #FFF;
    background-color: #6e16af;
    line-height: 20px;
    border-radius: 2px;
    text-align: center; }

.control-group .flag-fi:after {
  content: "FI"; }

.control-group .flag-sv:after {
  content: "SV"; }

.control-group .flag-en:after {
  content: "EN"; }

.input-with-suffix {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  max-width: 500px; }
  .input-with-suffix .form-input-text, .input-with-suffix .select2-container {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 5px; }
  @media all and (max-width: 1020px) {
    .input-with-suffix .form-input-text, .input-with-suffix .select2-container {
      -webkit-box-flex: 1;
      -webkit-flex: 1 1 100%;
      -ms-flex: 1 1 100%;
      flex: 1 1 100%;
      margin-bottom: 5px;
      margin-right: 0; } }

#calendar-nav-form {
  margin-bottom: 0; }

.form-input-search {
  background-image: url(../images/icons/icon-search.svg);
  background-repeat: no-repeat;
  background-position: 8px center;
  padding-left: 34px !important; }

.form-item-inline input {
  float: left; }

input.form-input-small {
  font-size: 13px;
  padding: 4px; }

.controls .twitter-typeahead {
  width: 100%; }

.form-input-text.typeahead {
  width: 100%;
  z-index: auto; }

#school-selection-area .selected-item {
  margin-top: 5px; }
#school-selection-area .help-block {
  display: block;
  clear: both;
  margin-top: -10px; }

.onoffswitch {
  position: relative;
  width: 55px;
  margin-top: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none; }

.onoffswitch-checkbox {
  display: none !important; }

.onoffswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  height: 26px;
  padding: 0;
  line-height: 20px;
  border: 2px solid #9E9E9E;
  border-radius: 20px;
  background-color: #9E9E9E;
  -webkit-transition: background-color 0.3s ease-in;
  transition: background-color 0.3s ease-in; }

.onoffswitch-label:before {
  content: "";
  display: block;
  width: 26px;
  margin: 0px;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 34px;
  border: 2px solid #9E9E9E;
  border-radius: 20px;
  -webkit-transition: all 0.16s ease-in-out 0s;
  transition: all 0.16s ease-in-out 0s; }

.onoffswitch-checkbox:checked + .onoffswitch-label {
  background-color: #51bf49; }

.onoffswitch-checkbox:checked + .onoffswitch-label,
.onoffswitch-checkbox:checked + .onoffswitch-label:before {
  border-color: #51bf49; }

.onoffswitch-checkbox:checked + .onoffswitch-label:before {
  right: 0px; }

.onoffswitch-checkbox:disabled + .onoffswitch-label {
  cursor: default; }

.signed-out .portlet-login {
  position: relative;
  margin: 40px auto;
  padding: 110px 0 0 0;
  max-width: 500px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  background: url(../images/akat-logo.svg) no-repeat center 20px #303746;
  background-size: 70px; }
  .signed-out .portlet-login .portlet-borderless-container {
    background: #f9f9f9;
    padding-top: 15px; }
  .signed-out .portlet-login form {
    margin-bottom: 0; }
    .signed-out .portlet-login form .button-holder {
      background: #f9f9f9;
      margin: 0;
      padding: 0 30px 30px; }
  .signed-out .portlet-login fieldset {
    background: #f9f9f9;
    padding: 30px; }
  .signed-out .portlet-login .navigation {
    background: #f9f9f9;
    border-top: #d5d5d5;
    padding: 30px 20px; }
  .signed-out .portlet-login .alert {
    margin: 0 30px 15px; }

.extranet-scheme.signed-out .portlet-login {
  background-color: #2a7ed1; }
  .extranet-scheme.signed-out .portlet-login fieldset.input-container {
    padding: 0; }

.signed-in .portlet-login {
  max-width: 100%;
  margin: 0;
  border: none;
  background: none;
  padding: 0 !important; }
  .signed-in .portlet-login:before {
    display: none; }

/*------------------------------------*\
    $LAYOUT
\*------------------------------------*/
/*------------------------------------*\
    $LAYOUT
\*------------------------------------*/
/* Layout Container */
.container {
  width: 100% !important; }

#wrapper {
  padding: 20px; }
  @media all and (max-width: 768px) {
    #wrapper {
      padding: 20px 0; } }

@media all and (max-width: 768px) {
  .portlet-login {
    padding: 0 20px; } }

.width-100 {
  width: 100%; }

.width-50 {
  width: 50%; }
  @media all and (max-width: 550px) {
    .width-50 {
      width: 100%; } }

.container-one-col {
  width: 65%; }
  @media all and (max-width: 1040px) {
    .container-one-col {
      width: 100%; } }

@media all and (max-width: 1200px) {
  .full-width-large {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important; } }
.flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }
  .flex-container.row-container {
    margin: 0 -5px; }
    @media all and (max-width: 768px) {
      .flex-container.row-container {
        margin: 0; } }
  .flex-container.section-container {
    margin: 0 -10px; }
    @media all and (max-width: 768px) {
      .flex-container.section-container {
        margin: 0; } }
  .flex-container .area-separated {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    margin: 0 5px; }
    @media all and (max-width: 1000px) {
      .flex-container .area-separated {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 100%;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        -webkit-align-self: auto;
        -ms-flex-item-align: auto;
        align-self: auto;
        margin: 0 0 10px; } }
    .flex-container .area-separated.area-full-width {
      -webkit-box-flex: 1;
      -webkit-flex: 1 1 100%;
      -ms-flex: 1 1 100%;
      flex: 1 1 100%;
      margin-top: 10px; }
    @media all and (max-width: 1250px) {
      .flex-container .area-separated.area-separated-full-width-bp-large {
        margin: 20px 5px 0;
        -webkit-box-flex: 0;
        -webkit-flex: 1 1 100%;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%; } }
    @media all and (max-width: 768px) {
      .flex-container .area-separated.area-order-top-mobile {
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1; } }

.flex-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap; }

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

.flex-grid-1of2 > .flex-grid-cell {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 45%;
  -ms-flex: 1 1 45%;
  flex: 1 1 45%; }

.force-one-column > .flex-grid-cell {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 100% !important;
  -ms-flex: 1 1 100% !important;
  flex: 1 1 100% !important; }

@media all and (max-width: 990px) {
  .reservation-layout.row-fluid .span3, .reservation-layout.row-fluid .span9 {
    width: 100%;
    margin-right: 0;
    margin-left: 0; } }

/*------------------------------------*\
    $PAGE STRUCTURE
\*------------------------------------*/
.site-header {
  padding: 0;
  width: 100%;
  float: left;
  position: relative;
  z-index: 200; }
  .extranet-scheme .site-header {
    background-color: #2a7ed1; }

.nav-main-row {
  width: 100%;
  float: left;
  background-color: #303746;
  border-bottom: 1px solid #272e3c;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .nav-main-row .logo-container {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 52px;
    -ms-flex: 0 0 52px;
    flex: 0 0 52px; }
    @media all and (max-width: 970px) {
      .nav-main-row .logo-container {
        display: none; } }
  .nav-main-row .main-nav {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; }

.nav-top-row {
  width: 100%;
  float: left;
  background-color: #3B4354;
  border-bottom: 1px solid #272e3c; }
  .extranet-scheme .nav-top-row {
    background-color: #44586D; }
  .nav-top-row ul li {
    float: left; }
  .nav-top-row .link-icon {
    float: left;
    color: #FFF;
    font-size: 13px;
    font-weight: 600;
    line-height: 28px;
    padding: 7px 20px;
    border-right: 1px solid #2d3545;
    position: relative; }
    .nav-top-row .link-icon:hover {
      text-decoration: none;
      color: #5093e1; }
      .extranet-scheme .nav-top-row .link-icon:hover {
        color: #88B3DE; }
    .nav-top-row .link-icon.link-select-school {
      background: url(../images/icons/icon-wheel.svg) no-repeat 20px center;
      background-size: 16px auto;
      padding: 7px 40px 7px 45px; }
      .nav-top-row .link-icon.link-select-school:after {
        content: "";
        background: url(../images/arrows/arrow-down-open-white.svg) no-repeat;
        position: absolute;
        right: 19px;
        top: 20px;
        width: 10px;
        height: 8px;
        background-size: 100% auto; }
    .nav-top-row .link-icon.nav-user {
      background: url(../images/icons/icon-user.svg) no-repeat 20px center;
      background-size: 16px auto;
      padding: 7px 40px 7px 45px; }
      .nav-top-row .link-icon.nav-user:after {
        content: "";
        background: url(../images/arrows/arrow-down-open-white.svg) no-repeat;
        position: absolute;
        right: 19px;
        top: 20px;
        width: 10px;
        height: 8px;
        background-size: 100% auto; }
    .nav-top-row .link-icon.link-sign-out {
      background: url(../images/icons/icon-sign-out.svg) no-repeat 20px center;
      background-size: 16px auto;
      padding: 7px 20px 7px 45px; }
  @media all and (max-width: 660px) {
    .nav-top-row {
      display: flex;
      flex-flow: row wrap; }
      .nav-top-row .link-icon.link-sign-out {
        border: none; }
      .nav-top-row .link-icon {
        flex: 1 0 50%;
        border-bottom: 1px solid #2d3545; } }
  @media all and (max-width: 440px) {
    .nav-top-row .link-icon, .nav-top-row .lang-switch {
      display: none; }
    .nav-top-row ul {
      float: left; }
    .nav-top-row .lang-switch {
      padding: 0; }
    .nav-top-row.open .link-icon, .nav-top-row.open .lang-switch {
      display: block; } }

.mobile-nav-bar {
  display: none;
  float: left;
  width: 100%;
  background: #303746; }
  @media all and (max-width: 970px) {
    .mobile-nav-bar {
      display: block; } }

.extranet-scheme .nav-main-row {
  background-color: #2a7ed1;
  border-bottom-color: #1d5891; }
.extranet-scheme .mobile-nav-bar {
  background-color: #2a7ed1; }

.portlet-dockbar {
  z-index: 300;
  position: relative; }

.logo-container {
  float: left;
  padding: 9px;
  margin-left: 10px; }
  @media all and (max-width: 970px) {
    .logo-container {
      padding: 7px; } }

.logo {
  width: 34px;
  height: auto; }
  @media all and (max-width: 970px) {
    .logo {
      width: 32px; } }

@media all and (max-width: 1000px) {
  .user-avatar-image {
    width: 14px; } }

.aui .dockbar {
  font-size: 14px; }
  @media all and (max-width: 768px) {
    .aui .dockbar {
      display: none; } }

.page-header {
  margin: 0 0 10px 0;
  padding: 0;
  border: none; }
  .page-header .title {
    float: left;
    margin-top: 5px; }
  .page-header .buttons {
    float: right; }
    .page-header .buttons .btn {
      margin: 0 0 5px 1px;
      display: inline-block;
      width: auto; }
    @media all and (max-width: 768px) {
      .page-header .buttons {
        padding: 0 15px; } }
  @media all and (max-width: 500px) {
    .page-header .buttons {
      float: left; } }
  @media all and (max-width: 360px) {
    .page-header .title {
      float: none; }
    .page-header .buttons {
      float: left;
      width: 100%; }
      .page-header .buttons .btn {
        display: block;
        margin: 0 0 5px 0; } }

/*------------------------------------*\
    $NAVIGATION
\*------------------------------------*/
.main-nav {
  float: left; }
  @media all and (max-width: 970px) {
    .main-nav {
      width: 100%; } }
  .main-nav li {
    float: left;
    display: block; }
    .main-nav li a {
      display: inline-block;
      padding: 16px 15px 12px;
      margin: 0 8px;
      border-bottom: 4px solid #303746;
      font-size: 13px;
      font-weight: bold;
      text-transform: uppercase;
      color: #FFF; }
      .extranet-scheme .main-nav li a {
        border-color: #2a7ed1; }
      .main-nav li a:hover, .main-nav li a:focus, .main-nav li a:active {
        text-decoration: none;
        color: #66a0e5; }
        .extranet-scheme .main-nav li a:hover, .extranet-scheme .main-nav li a:focus, .extranet-scheme .main-nav li a:active {
          color: #F3FB09; }
      .main-nav li a.dropdown-toggle {
        background: url(../images/arrows/arrow-down-open-white.svg) no-repeat right 23px;
        padding-right: 20px; }
        .main-nav li a.dropdown-toggle:hover {
          background: url(../images/arrows/arrow-down-open-light-blue.svg) no-repeat right 23px; }
      .main-nav li a.nav-toggle-station {
        background-color: #394758;
        border-bottom: 4px solid #394758;
        background-image: none !important;
        padding-left: 20px; }
        .extranet-scheme .main-nav li a.nav-toggle-station {
          background-color: #2671bc;
          border-color: #2671bc; }
      .main-nav li a.nav-station {
        text-transform: none; }
      .main-nav li a.nav-school {
        text-transform: none; }
      .main-nav li a.nav-user {
        text-transform: none; }
      @media all and (max-width: 970px) {
        .main-nav li a {
          padding: 15px;
          margin: 0;
          border-bottom: 1px solid #454f64;
          border-left: 4px solid #303746; } }
    .main-nav li.selected a {
      color: #66a0e5;
      border-bottom: 4px solid #66a0e5; }
      .extranet-scheme .main-nav li.selected a {
        color: #FFF;
        border-bottom-color: #F3FB09; }
      .main-nav li.selected a.dropdown-toggle {
        background: url(../images/arrows/arrow-down-open-light-blue.svg) no-repeat right 23px; }
      @media all and (max-width: 970px) {
        .main-nav li.selected a {
          border-bottom: 1px solid #454f64;
          border-left: 4px solid #66a0e5; }
          .main-nav li.selected a.dropdown-toggle {
            background: url(../images/arrows/arrow-down-open-light-blue.svg) no-repeat right 7px top 19px; } }
  .main-nav .settings-item {
    float: right;
    margin-right: 14px; }
    .main-nav .settings-item .dropdown-menu {
      left: -90px; }
    @media all and (max-width: 970px) {
      .main-nav .settings-item {
        float: left;
        margin-right: 0;
        width: 100%; }
        .main-nav .settings-item .dropdown-menu {
          left: 0; } }
  @media all and (max-width: 970px) {
    .main-nav ul {
      display: none; }
      .main-nav ul.open {
        display: block;
        border-top: 2px solid #454f64; }
      .main-nav ul.child-menu li {
        padding-left: 35px; }
      .main-nav ul li {
        display: block;
        width: 100%;
        float: left; }
        .main-nav ul li a {
          display: block; }
          .main-nav ul li a.dropdown-toggle {
            border-bottom: none;
            background: url(../images/arrows/arrow-down-open-white.svg) no-repeat right 7px top 19px; }
    .main-nav .dropdown-menu {
      position: relative;
      top: auto;
      box-shadow: none;
      border-top: none !important;
      width: 100%; }
      .main-nav .dropdown-menu li a {
        padding: 10px 10px 10px 30px; } }

.main-nav .dropdown-menu, .nav-top-row .dropdown-menu {
  border: none;
  border-top: 4px solid #66a0e5;
  border-radius: 0px;
  margin: 0;
  top: 93%;
  background: #303746; }
  .main-nav .dropdown-menu li, .nav-top-row .dropdown-menu li {
    display: block;
    width: 100%; }
    .main-nav .dropdown-menu li a, .nav-top-row .dropdown-menu li a {
      border: none;
      padding: 8px 8px;
      text-transform: none;
      color: #FFF;
      display: block;
      font-weight: 600;
      font-size: 13px; }
      .main-nav .dropdown-menu li a:hover, .nav-top-row .dropdown-menu li a:hover {
        background: none;
        color: #66a0e5; }
    .main-nav .dropdown-menu li.selected a, .nav-top-row .dropdown-menu li.selected a {
      color: #66a0e5; }

.nav-select-station .dropdown-menu {
  background-color: #FFF;
  padding: 0 10px;
  width: 250px; }
.nav-select-station input {
  margin-bottom: 10px;
  width: 100%; }
.nav-select-station .twitter-typeahead {
  width: 100%; }
@media all and (max-width: 970px) {
  .nav-select-station .nav-toggle-station {
    display: none; }
  .nav-select-station .dropdown-menu {
    width: 100%;
    background-color: #454F64; }
    .nav-select-station .dropdown-menu h5 {
      color: #FFF; } }

.dropdown-menu .divider {
  margin: 7px 0px;
  border-bottom: 1px solid #65728E; }

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

.nav-toggle {
  display: none; }
  @media all and (max-width: 970px) {
    .nav-toggle {
      display: block;
      float: right;
      padding: 11px 12px 12px 16px;
      border-left: 1px solid #454f64;
      background-color: #384152; } }

.lang-switch {
  padding: 0 20px 0 50px;
  background: url(../images/graphics/lang-switch-corner.svg) #272c35 no-repeat -1px 0px;
  background-size: auto 100%;
  position: relative;
  float: right; }
  .extranet-scheme .lang-switch {
    background: url(../images/graphics/lang-switch-corner-extranet.svg) #263b52 no-repeat -1px 0px; }
  .lang-switch li {
    float: left;
    margin-right: 15px;
    z-index: 1;
    position: relative; }
    .lang-switch li:last-child {
      margin-right: 0; }
    .lang-switch li a {
      color: #FFF;
      font-size: 13px;
      font-weight: 600;
      line-height: 28px;
      padding: 7px 0px;
      display: inline-block; }
  @media all and (max-width: 660px) {
    .lang-switch {
      background: none; }
      .lang-switch:before {
        display: none; } }

.breadcrumbs {
  display: inline-block;
  margin: 15px 0 10px;
  padding: 0; }
  .breadcrumbs li {
    float: left;
    margin-right: 10px; }
    .breadcrumbs li:after {
      content: "\203A";
      display: inline-block;
      margin-left: 10px; }
    .breadcrumbs li a {
      font-weight: normal;
      color: #6c6c6c;
      font-size: 1em; }
    .breadcrumbs li:last-child:after {
      content: ""; }
    .breadcrumbs li:last-child a {
      color: #111; }
  @media all and (max-width: 768px) {
    .breadcrumbs {
      margin: 10px 10px 5px; }
      .breadcrumbs li {
        margin-right: 5px; }
        .breadcrumbs li:after {
          margin-left: 2px; }
        .breadcrumbs li a {
          font-size: 0.875em; } }

.nav-round-btn {
  width: 36px;
  height: 36px;
  border: 2px solid #c7c7c7;
  border-radius: 20px;
  display: inline-block; }
  .nav-round-btn.next {
    background: url(../images/arrows/arrow-right-mid-gray.svg) no-repeat center center;
    background-size: 8px 15px; }
  .nav-round-btn.prev {
    background: url(../images/arrows/arrow-left-mid-gray.svg) no-repeat center center;
    background-size: 8px 15px; }

.nav-station-avatar {
  padding: 10px 0;
  border-bottom: 1px solid #2B2B2B;
  background-color: #394758;
  margin: -5px 0 5px 0; }
  .nav-station-avatar img {
    width: 25px;
    margin: 7px 10px 0; }
  .nav-station-avatar .nav-station-name, .nav-station-avatar .nav-station-city {
    color: #FFF;
    display: block; }
  .nav-station-avatar .nav-station-name {
    font-size: 14px; }
  .nav-station-avatar .nav-station-city {
    font-size: 11px; }

.nav-school-avatar {
  padding: 10px 0;
  border-bottom: 1px solid #2B2B2B;
  background-color: #394758;
  margin: -5px 0 5px 0; }
  .nav-school-avatar img {
    width: 25px;
    margin: 7px 10px 0; }
  .nav-school-avatar .nav-school-name, .nav-school-avatar .nav-school-city {
    color: #FFF;
    display: block; }
  .nav-school-avatar .nav-school-name {
    font-size: 14px; }
  .nav-school-avatar .nav-school-city {
    font-size: 11px; }

.nav-user-avatar {
  padding: 10px 0;
  border-bottom: 1px solid #2B2B2B;
  background-color: #394758;
  margin: -5px 0 5px 0; }
  .nav-user-avatar img {
    width: 25px;
    margin: 7px 10px 0; }
  .nav-user-avatar .nav-user-name {
    color: #FFF;
    display: block;
    font-size: 14px; }

.sidenav li {
  display: block;
  padding: 10px;
  border-top: 1px solid #dddddd; }
  .sidenav li:last-child {
    border-bottom: 1px solid #dddddd; }

/*------------------------------------*\
    $TEXT Styles
\*------------------------------------*/
.text-primary {
  color: #1b1728 !important; }

.text-secondary {
  color: #626262; }

.text-disabled {
  color: #BFBFBF; }

.text-gray-dark {
  color: #303746; }

.text-highlight {
  color: #6e16af; }

.small-secondary {
  color: #626262;
  font-size: 0.8125em; }

.location-text {
  font-weight: 600;
  padding-left: 14px;
  background: url(../images/icons/icon-location.svg) no-repeat 0px 3px;
  background-size: 10px auto; }

.date-range-label {
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 5px;
  display: inline-block; }

.text-price {
  display: block;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px; }
  @media all and (max-width: 1020px) {
    .text-price {
      font-size: 18px; } }

/*------------------------------------*\
    $COMPONENTS
\*------------------------------------*/
.status.paid {
  background: #78be20 !important; }

.status.web {
  background: #5bc0de !important; }

.status.canceled {
  background: #808080 !important; }

.status.not-paid {
  background: #626262 !important; }

.status.marked_as_paid {
  background: #5093e1 !important; }

.status.marked_as_billed {
  background: #5093e1 !important; }

.status.marked_as_prepaid {
  background: #5093e1 !important; }

.status.marked_as_paid_in_kamu {
  background: #5093e1 !important; }

.status.moved_into_product_prepayment {
  background: #78be20 !important; }

.status.marked_as_completed {
  background: #78be20 !important; }

.status.marked_as_completed_paid {
  background: #78be20 !important; }

.status.marked_as_completed_prepaid {
  background: #78be20 !important; }

.status.normal {
  background: #008000 !important; }

.status.checked_in {
  background: #78be20 !important; }

.status.no_show {
  background: #dfa809 !important; }

.status.cancelled {
  background: #ec3e3e !important; }

.status {
  text-transform: uppercase;
  color: #FFF;
  font-weight: bold;
  text-align: center !important;
  font-size: 0.875em; }

.prepayment-status {
  text-transform: uppercase;
  color: #FFF;
  font-weight: bold;
  text-align: center !important;
  font-size: 0.875em; }

.prepayment-status.normal {
  background: #008000 !important; }

.prepayment-status.used {
  background: #5093e1 !important; }

.prepayment-status.invalidated {
  background: #ec3e3e !important; }

.prepayment-source {
  text-transform: uppercase;
  color: #FFF;
  font-weight: bold;
  text-align: center !important;
  font-size: 0.875em; }

.prepayment-source.kamu {
  background: #f85677 !important; }

.prepayment-source.kamu a {
  color: #fff !important; }

.prepayment-source.aboa_payment {
  background: #6E16AF !important; }

.prepayment-source.aboa_payment a {
  color: #fff !important; }

.source {
  text-transform: uppercase;
  color: #FFF;
  font-weight: bold;
  text-align: center !important;
  font-size: 0.875em; }

.source.internal {
  background: #0AA2A2 !important; }

.source.online {
  background: #E68D08 !important; }

.source.extranet {
  background: #5093e1 !important; }

/*------------------------------------*\
    $BUTTONS
\*------------------------------------*/
.btn, button, input[type="submit"] {
  border: 1px solid #C5C5C5;
  border-bottom-width: 2px;
  border-radius: 2px;
  padding: 0.65em 1.4em;
  background: #f0f0f0;
  font-weight: 700;
  text-transform: uppercase;
  color: #252525;
  text-shadow: none;
  font-size: 14px;
  box-shadow: none;
  position: relative; }
  @media all and (max-width: 768px) {
    .btn, button, input[type="submit"] {
      font-size: 14px !important; } }
  .btn:hover, button:hover, input[type="submit"]:hover {
    background: #e3e3e3; }
  .btn.btn-small, button.btn-small, input[type="submit"].btn-small {
    font-size: 12px;
    padding: 6px 14px; }
  .btn.btn-text-secondary, button.btn-text-secondary, input[type="submit"].btn-text-secondary {
    border: none;
    color: #626262; }
    .btn.btn-text-secondary:hover, button.btn-text-secondary:hover, input[type="submit"].btn-text-secondary:hover {
      background: none;
      color: #1b1728; }
    .btn.btn-text-secondary.disabled, button.btn-text-secondary.disabled, input[type="submit"].btn-text-secondary.disabled {
      background: none; }
  .btn.btn-text-primary, button.btn-text-primary, input[type="submit"].btn-text-primary {
    border: none;
    color: #5093e1;
    background: none; }
    .btn.btn-text-primary:hover, button.btn-text-primary:hover, input[type="submit"].btn-text-primary:hover {
      background: none;
      color: #2a7ed1; }
    .btn.btn-text-primary.disabled, button.btn-text-primary.disabled, input[type="submit"].btn-text-primary.disabled {
      background: none; }
  .btn.btn-text-small, button.btn-text-small, input[type="submit"].btn-text-small {
    text-transform: none;
    font-size: 14px;
    font-weight: normal; }
  .btn.btn-danger, button.btn-danger, input[type="submit"].btn-danger {
    border-color: #c01313;
    background-color: #ec3e3e;
    color: #FFF; }
    .btn.btn-danger:hover, button.btn-danger:hover, input[type="submit"].btn-danger:hover {
      border-color: #840d0d;
      background-color: #ea2727; }

.btn-loading {
  -moz-transition: none;
  -webkit-transition: none;
  -o-transition: color 0 ease-in;
  transition: none;
  background: url(../images/loaders/three-dots.svg) no-repeat center center #f0f0f0 !important;
  background-size: 38px auto !important;
  color: rgba(0, 0, 0, 0) !important;
  border: 1px solid #C5C5C5 !important; }

@media all and (max-width: 979px) {
  .aui .btn {
    padding: 0.65em 1.4em;
    font-size: 14px; }
    .aui .btn.btn-small {
      font-size: 12px;
      padding: 6px 14px; } }
.btn.disabled {
  opacity: 0.5; }

.btn-primary, input[type="submit"] {
  background: #5093e1;
  border-color: #216cc3;
  color: #FFF;
  text-shadow: none;
  box-shadow: none; }
  .btn-primary:hover, .btn-primary:focus, .btn-primary:active, input[type="submit"]:hover, input[type="submit"]:focus, input[type="submit"]:active {
    box-shadow: none;
    background: #3a86dd;
    color: #FFF;
    border-color: #1e60ad; }
  @media all and (max-width: 768px) {
    .btn-primary, input[type="submit"] {
      margin: 5px 0; } }

.btn-block {
  margin-bottom: 5px; }

.input-append input {
  border-radius: 2px 0 0 2px;
  width: 200px; }
.input-append .btn {
  background-color: #E0E0E0;
  border-left: 1px solid #CACACA;
  padding: 10px 14px; }
  .input-append .btn:last-child {
    border-radius: 0 2px 2px 0; }

.btn-add-new {
  width: 32px;
  height: 32px;
  background: url(../images/icons/icon-add-circle-color-accent.svg) no-repeat;
  background-size: 100%;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  /* easeOutQuart */
  transform: translate3d(0, 0, 0); }
  .btn-add-new.large {
    width: 50px;
    height: 50px; }
  .btn-add-new:hover {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg); }

.btn-remove {
  width: 28px;
  height: 28px;
  background: url(../images/icons/icon-remove-circle-color-danger.svg) no-repeat;
  background-size: 100%;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  /* easeOutQuart */
  transform: translate3d(0, 0, 0); }
  .btn-remove:hover {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg); }

.back-button {
  width: 24px;
  height: 44px;
  background: url(../images/arrows/arrow-left-mid-gray.svg) no-repeat center left;
  display: inline-block;
  float: left;
  opacity: 0.5; }
  .back-button:hover {
    opacity: 1; }
  @media all and (max-width: 768px) {
    .back-button {
      margin-left: 15px;
      height: 40px; } }

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  border: 1px solid #5093e1;
  background: #5093e1;
  color: #FFF !important; }

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: #DDD;
  color: #1b1728 !important;
  border: 1px solid #DDD; }

.btn-group > .btn:first-child {
  margin-left: 0;
  -webkit-border-top-left-radius: 2px;
  -moz-border-radius-topleft: 2px;
  border-top-left-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -moz-border-radius-bottomleft: 2px;
  border-bottom-left-radius: 2px; }

.btn-group > .btn:last-child, .btn-group > .dropdown-toggle {
  -webkit-border-top-right-radius: 2px;
  -moz-border-radius-topright: 2px;
  border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -moz-border-radius-bottomright: 2px;
  border-bottom-right-radius: 2px; }

.btn .caret {
  margin-top: 7px;
  margin-left: 10px;
  background: url(../images/arrows/arrow-down-open-dark-gray.svg) no-repeat;
  width: 12px;
  height: 7px;
  border: none; }

.dropdown-menu {
  padding: 0;
  margin: -2px 0 0;
  border: 1px solid #dedede;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border-top-left-radius: 0; }
  .dropdown-menu.dropdown-menu-align-right {
    left: auto;
    right: 0; }

.dropdown-menu > li > a {
  padding: 6px 20px;
  color: #333; }
  .dropdown-menu > li > a:hover {
    background: #8A8A8A; }
  .dropdown-menu > li > a .delete-symbol {
    background: url(../images/icons/icon-x-thick-color-danger.svg) no-repeat;
    width: 16px;
    height: 10px;
    display: inline-block; }

.selected-item {
  float: left;
  margin-bottom: 20px; }
  .selected-item .js-content-body {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis; }
  .selected-item .content {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 240px;
    font-size: 14px;
    color: #FFF;
    font-weight: 600;
    padding: 5px 16px 6px;
    background-color: #51bf49;
    border-radius: 20px;
    margin-right: 7px; }
    @media all and (max-width: 1180px) {
      .selected-item .content {
        max-width: none;
        white-space: normal; } }
    @media all and (max-width: 768px) {
      .selected-item .content {
        display: block;
        border-radius: 5px; } }
  .selected-item.failed .content {
    background-color: #ffd102;
    color: #171101; }
  .selected-item .action {
    font-size: 12px;
    display: block;
    float: right;
    margin-top: 9px; }
    @media all and (max-width: 768px) {
      .selected-item .action {
        float: left; } }
  .selected-item.large .content {
    display: block;
    padding: 15px;
    border-radius: 2px;
    font-size: 18px; }
    .selected-item.large .content .heading {
      font-size: 14px;
      margin-bottom: 5px; }

.info-box-header {
  color: #303746;
  padding: 15px 15px 0;
  margin: 0;
  font-size: 16px; }

.info-box-content {
  padding: 15px;
  border-bottom: 1px solid #dddddd; }
  .info-box-content li, .info-box-content table td {
    font-size: 14px;
    color: #626262; }
  .info-box-content table th {
    font-size: 14px; }
  .info-box-content table td:first-child, .info-box-content table th:first-child {
    padding-left: 0; }
  .info-box-content table td:last-child, .info-box-content table th:last-child {
    padding-right: 0; }

.read-only-value {
  margin-bottom: 10px; }
  .read-only-value strong {
    display: block; }

.area-highlight {
  padding: 15px;
  border: 3px solid #c5dac4; }

.area-separated {
  background-color: #FBFBFB;
  margin-bottom: 20px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  border-bottom: 3px solid #dddddd; }
  .area-separated .heading {
    padding: 10px 15px;
    border-bottom: 1px solid #DADADA;
    color: #444;
    font-weight: 600; }
    @media print {
      .area-separated .heading {
        font-size: 14px;
        padding: 5px 15px; } }
  .area-separated .content {
    padding: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: #626262; }
    .area-separated .content h2 {
      color: #1b1728; }
    @media print {
      .area-separated .content {
        font-size: 11px; } }
  .area-separated .total-price-container {
    border-bottom: none;
    background: none; }
  .area-separated .info-box-header {
    padding: 0; }
  .area-separated a {
    word-break: break-word; }
  .area-separated.area-separated-divided .content {
    padding: 0; }

.area-separated .flex-grid-cell {
  border-left: 1px solid #dddddd;
  padding: 15px; }
  .area-separated .flex-grid-cell:first-child {
    border-left: none; }

.sidebox-fixed-with-scroll .area-separated {
  background: none;
  border: none; }
  .sidebox-fixed-with-scroll .area-separated .content {
    padding-bottom: 0; }

.total-price-container {
  color: #626262;
  padding: 10px 10px 10px 15px;
  line-height: 40px;
  background-color: #F5F5F5;
  border-bottom: 1px solid #dddddd; }
  .total-price-container .total-price {
    float: right;
    font-size: 26px;
    padding: 5px 8px;
    border-radius: 4px;
    line-height: 1.2;
    font-weight: 900; }
  @media print {
    .total-price-container {
      padding-bottom: 0;
      line-height: 30px; }
      .total-price-container .total-price {
        font-size: 22px;
        padding: 0; } }

.note {
  background-color: #972de5;
  color: #FFF;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.4);
  margin-bottom: 10px;
  min-width: 200px;
  width: 100%; }
  @media all and (max-width: 1250px) {
    .note {
      max-width: 300px;
      float: left; } }
  .note .note-header {
    background-color: #6e16af;
    min-height: 28px;
    position: relative;
    padding: 5px 15px;
    font-size: 14px; }
    .note .note-header.empty {
      padding: 0; }
    .note .note-header a {
      color: #FFF;
      text-decoration: none;
      width: 100%;
      display: inline-block; }
      .note .note-header a:hover {
        color: #FFF;
        text-decoration: none; }
  .note .note-content {
    padding: 15px; }
  .note p {
    margin-bottom: 0; }
  @media all and (max-width: 1250px) {
    .area-separated-full-width-bp-large .note {
      margin: 0 20px 10px 0; } }
  .note.note-muted {
    background-color: #E6E6E6;
    color: #1b1728; }
    .note.note-muted .note-header {
      background-color: #CCC; }
      .note.note-muted .note-header a {
        color: #1b1728;
        text-decoration: none; }
        .note.note-muted .note-header a:hover {
          color: #1b1728;
          text-decoration: none;
          width: 100%;
          display: inline-block; }

.klarna-logo {
  background: url(../images/logos/klarna_logo_black.png);
  background-size: 100% 100%;
  width: 56px;
  height: 56px; }

.item-divider-bottom {
  border-bottom: 1px solid #dddddd;
  margin-bottom: 10px; }
  .item-divider-bottom:last-child {
    border-bottom: none; }

.payment-methods-list {
  float: left;
  margin-bottom: 20px; }
  .payment-methods-list li {
    float: left;
    min-width: 120px;
    text-align: center; }

.tab-nav {
  display: inline-block; }
  .tab-nav li {
    float: left;
    margin-right: 20px; }
    .tab-nav li a, .tab-nav li span {
      font-weight: bold;
      font-size: 14px;
      text-transform: uppercase;
      padding: 10px 10px 22px; }
    .tab-nav li span {
      color: #626262; }
    .tab-nav li a {
      color: #1b1728; }
    @media all and (max-width: 768px) {
      .tab-nav li.current {
        border-bottom: none; } }
    .tab-nav li.current span {
      border-bottom: 2px solid #5093e1; }
    .tab-nav li.current a, .tab-nav li.current span {
      color: #5093e1; }
  @media all and (max-width: 768px) {
    .tab-nav {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
      flex-flow: row wrap;
      -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
      justify-content: space-around;
      -webkit-box-align: baseline;
      -webkit-align-items: baseline;
      -ms-flex-align: baseline;
      align-items: baseline; }
      .tab-nav li {
        -webkit-box-flex: 1 1 47%;
        -webkit-flex: 1 1 47%;
        -ms-flex: 1 1 47%;
        flex: 1 1 47%;
        -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
        align-self: stretch;
        margin-right: 0;
        background-color: #eee;
        border: 1px solid white; }
        .tab-nav li a, .tab-nav li span {
          display: block;
          text-align: center;
          font-size: 12px;
          word-break: break-word;
          padding: 10px; } }

.section {
  background: white;
  border-radius: 3px;
  margin-bottom: 20px;
  box-shadow: 0 0 0 1px #e3e3e3; }
  @media all and (max-width: 768px) {
    .section {
      border-radius: 0; } }
  .section .total-price-container {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px; }

.flex-container .section {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  margin: 0 10px; }
  @media all and (max-width: 768px) {
    .flex-container .section {
      -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
      margin: 0 0 20px; } }

.flex-container .section.flex-basis-30 {
  flex-basis: 30%; }

.section-title {
  padding: 16px 30px;
  text-align: left;
  font-size: 18px;
  line-height: 1.4;
  color: #696969;
  border-bottom: 1px solid #dddddd; }
  @media all and (max-width: 768px) {
    .section-title {
      padding: 15px;
      font-size: 14px;
      line-height: 1.4; } }

.section-content {
  padding: 30px; }
  @media all and (max-width: 768px) {
    .section-content {
      padding: 10px; } }

.section-footer {
  border-top: 1px solid #dddddd;
  padding: 16px 30px; }

.section-hr {
  margin: 0 -30px; }
  @media all and (max-width: 768px) {
    .section-hr {
      margin: 0; } }

.section-title-inner {
  border-top: 1px solid #dddddd;
  margin: 40px -30px 30px; }

.sidebox-fixed-with-scroll .section-content {
  padding: 0; }
.sidebox-fixed-with-scroll .total-price-container {
  border-bottom: none; }

.sidebox-fixed {
  position: fixed;
  top: 0;
  right: 20px;
  left: auto; }
  @media all and (max-width: 768px) {
    .sidebox-fixed {
      position: relative;
      right: auto;
      top: auto;
      bottom: auto; }
      .sidebox-fixed .section {
        padding-top: 0;
        height: auto; } }

.bottom-nav-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFF;
  border-top: 2px solid #dddddd;
  padding: 10px;
  z-index: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }
  @media all and (max-width: 768px) {
    .bottom-nav-fixed {
      position: relative;
      bottom: auto;
      left: auto;
      right: auto;
      width: 100%; }
      .bottom-nav-fixed .pull-left, .bottom-nav-fixed .pull-right {
        width: 100%; }
      .bottom-nav-fixed .btn {
        width: 100%;
        padding: 8px 12px; } }

.section-footer .form-buttons {
  width: 100%; }

.station-select-area form {
  margin-top: 12px; }

.resource-day-list-header .toggle-visibility, .resource-day-list-header .time-ranges {
  margin: 10px 0; }
.resource-day-list-header .time-ranges {
  font-weight: 600;
  color: #626262; }

.stations-list-view ul {
  list-style: none;
  margin: 0;
  padding: 0;
  float: left;
  width: 100%; }
.stations-list-view li {
  display: block;
  border-top: 1px solid #d1d1d1;
  padding: 15px 0px 5px; }
  .stations-list-view li input {
    width: auto; }

#stationSearchForm label {
  display: none; }

.open .popover {
  display: block; }

.popover {
  border: none;
  border-radius: 3px; }
  .popover form {
    margin-bottom: 0; }
  .popover input {
    margin-bottom: 10px; }

.dialog-parent {
  display: none;
  z-index: 1001; }
  .dialog-parent.visible {
    position: fixed;
    z-index: 900;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
    .dialog-parent.visible .dialog-curtain {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5); }

.dialog-container {
  position: relative;
  left: auto;
  top: auto;
  background-color: #FFF;
  -webkit-box-shadow: 0 5px 27px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 27px 5px rgba(0, 0, 0, 0.2);
  width: 85%;
  max-width: 460px;
  border-radius: 3px;
  z-index: 1000; }
  .dialog-container .dialog-header {
    padding: 15px;
    float: left;
    width: 100%; }
    .dialog-container .dialog-header .heading {
      margin: 0;
      float: left;
      line-height: 1.4;
      font-weight: normal; }
  .dialog-container .dialog-body {
    padding: 15px;
    color: #626262; }
  .dialog-container .dialog-footer {
    float: left;
    width: 100%;
    padding: 8px 15px;
    border-top: 1px solid #e5e5e5;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px; }

.aui .navbar .nav > li a.user-notification-link {
  padding: 3px;
  color: #FFF;
  text-shadow: none; }

.alert {
  border-color: #e05d5d;
  background-color: #FFE38E;
  color: #885805;
  border-radius: 2px;
  padding: 15px;
  position: relative; }
  .alert.alert-closable {
    padding-right: 40px; }
  .alert.alert-success {
    background: url(../images/icons/icon-check-white.svg) no-repeat left 15px center #51bf49;
    border-color: #51bf49;
    color: #FFF;
    text-shadow: none;
    padding-left: 50px; }
  .alert.alert-block {
    background: url(../images/icons/icon-warning-black.svg) no-repeat left 15px center #ffd102;
    border-color: #ffd102;
    color: #171101;
    text-shadow: none;
    padding-left: 55px; }
    .alert.alert-block .close {
      background-image: url(../images/icons/icon-close-black.svg); }
  .alert.alert-error {
    background: url(../images/icons/icon-x-thick-white.svg) no-repeat left 15px center #ec3e3e;
    border-color: #ec3e3e;
    color: #FFF;
    text-shadow: none;
    padding-left: 50px; }
  .alert.alert-notification {
    background: none;
    color: #626262;
    border: 2px solid #f85677;
    border-radius: 0; }
  .alert.alert-no-requirements {
    background: url(../images/icons/icon-no-requirements.svg) no-repeat left 11px center #ffd102;
    background-size: 28px auto;
    border: 4px solid #ec3e3e;
    color: #171101;
    text-shadow: none;
    padding-left: 50px; }
  .alert .close {
    top: 5px;
    text-indent: -9999em;
    right: -25px;
    background: url(../images/icons/icon-close-white.svg) no-repeat center center;
    opacity: 1;
    width: 14px;
    height: 14px;
    background-size: 100%; }
    .alert .close:hover {
      opacity: 0.7; }
  .alert .btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: 1px solid #DADADA;
    width: auto;
    margin-top: 0;
    color: #171101; }
  .alert.alert-with-button {
    padding-right: 90px; }
  .alert a {
    color: #fff; }

.spinner {
  background: url(../images/loaders/three-dots.svg) no-repeat left 10px;
  background-size: 46px;
  color: #acacac;
  font-weight: bold;
  margin: 20px 0;
  line-height: 30px;
  padding-left: 60px; }

table.calendar td {
  padding: 0;
  vertical-align: top; }
  table.calendar td.weekend-calendar-day {
    background-image: url("../images/graphics/subtle_dots.png"); }
    @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
      table.calendar td.weekend-calendar-day {
        background-image: url("../images/graphics/subtle_dots@2x.png"); } }
table.calendar th {
  color: #333;
  padding: 20px 10px;
  font-weight: 600;
  background-color: #FFF;
  min-width: 110px; }
table.calendar tbody {
  border: 1px solid #dddddd; }

.single-free-time {
  clear: both;
  background-color: #DCDCDC;
  border: 1px solid #FFF;
  padding: 9px;
  min-height: 45px;
  font-weight: 600;
  cursor: pointer;
  position: relative; }
  .single-free-time .slot-from-to {
    display: block;
    margin-right: 5px;
    color: #464646;
    float: left;
    line-height: 23px;
    font-size: 14px; }
  .single-free-time .slot-duration {
    display: block;
    font-size: 12px;
    background-color: #c4c4c4;
    padding: 2px 4px;
    color: #1c1c1c;
    text-align: center;
    border-radius: 2px;
    float: right; }
  .single-free-time.non-suggested {
    background-color: #f6f6f6; }
    .single-free-time.non-suggested .slot-from-to {
      color: #959595; }
    .single-free-time.non-suggested .slot-duration {
      background-color: #e8e8e8;
      color: #959595; }
  @media all and (max-width: 1140px) {
    .single-free-time .slot-from-to, .single-free-time .slot-duration, .single-free-time .slot-resource-loss-score {
      float: none; }
    .single-free-time .slot-resource-loss-score {
      margin: 3px 0 0 0; } }
  .single-free-time.selected {
    background-color: #51bf49 !important;
    cursor: default; }
    .single-free-time.selected .slot-from-to, .single-free-time.selected .slot-time {
      color: #FFF; }
    .single-free-time.selected .slot-duration {
      background-color: #378b31;
      color: #FFF; }
  .single-free-time:hover {
    background-color: #d2e8d1; }
    .single-free-time:hover .slot-duration {
      background-color: #378b31;
      color: #FFF; }
  .single-free-time.not-available {
    cursor: default;
    color: #717171;
    text-align: center; }
    .single-free-time.not-available:hover {
      background-color: #E8E8E8; }

@media all and (max-width: 1500px) {
  .full-week .single-free-time .slot-from-to, .full-week .single-free-time .slot-duration, .full-week .single-free-time .slot-resource-loss-score {
    float: none; }
  .full-week .single-free-time .slot-resource-loss-score {
    margin: 3px 0 0 0; } }

.calendar-nav {
  text-align: center;
  margin-bottom: 20px;
  position: relative; }
  .calendar-nav .picker {
    left: 50%;
    transform: translateX(-50%); }
  .calendar-nav a, .calendar-nav input {
    display: inline-block; }
  .calendar-nav input {
    width: 135px; }
  .calendar-nav .nav-round-btn {
    display: none; }
  @media all and (max-width: 800px) {
    .calendar-nav .btn {
      display: inline-block;
      width: auto;
      background: none; }
    .calendar-nav .nav-round-btn {
      display: inline-block;
      margin-top: 2px; }
    .calendar-nav .btn .text {
      display: none; } }

.slot-resource-loss-score {
  display: block;
  font-size: 12px;
  background-color: #D2D2D2;
  padding: 2px 6px;
  color: #1c1c1c;
  text-align: center;
  border-radius: 2px;
  float: right;
  margin-right: 2px; }
  .slot-resource-loss-score.loss-score-severity-GAIN {
    background-color: #6BB9F0; }
  .slot-resource-loss-score.loss-score-severity-LOW {
    background-color: #378b31;
    color: #FFF; }
  .slot-resource-loss-score.loss-score-severity-MODERATE {
    background-color: #F9690E; }
  .slot-resource-loss-score.loss-score-severity-SEVERE {
    background-color: #D91E18;
    color: #FFF; }

.slot-resource-alternatives {
  display: none; }
  .slot-resource-alternatives table {
    width: 100%;
    border-top: none !important; }
    .slot-resource-alternatives table td, .slot-resource-alternatives table tbody {
      border: none; }
  .slot-resource-alternatives.open {
    display: block;
    position: absolute;
    top: 40px;
    right: 12px;
    background-color: #fff;
    padding: 10px;
    border-radius: 2px;
    min-width: 160px;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.23);
    z-index: 500; }
    .slot-resource-alternatives.open:after {
      content: "";
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 6px 8px 6px;
      border-color: transparent transparent #ffffff transparent;
      position: absolute;
      top: -8px;
      right: 49px; }
    @media all and (max-width: 1140px) {
      .slot-resource-alternatives.open {
        top: 90px;
        right: 28px; } }
    @media all and (max-width: 400px) {
      .slot-resource-alternatives.open {
        right: 0;
        min-width: 90px; } }

.slot-resource-requirement {
  font-size: 12px;
  color: #626262; }

.single-free-time:last-child .slot-resource-alternatives.open, .single-free-time.last-visible .slot-resource-alternatives.open {
  top: auto;
  bottom: 40px; }
  .single-free-time:last-child .slot-resource-alternatives.open:after, .single-free-time.last-visible .slot-resource-alternatives.open:after {
    border-width: 8px 6px 0 6px;
    border-color: #ffffff transparent transparent transparent;
    top: auto;
    bottom: -8px; }

/*------------------------------------*\
    $COMPONENTS
\*------------------------------------*/
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }
  @media all and (max-width: 768px) {
    .select2-container {
      margin: 5px 0; } }

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 34px;
  user-select: none;
  -webkit-user-select: none; }

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  font-size: 0.875em;
  padding-left: 12px;
  padding-right: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px; }

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none; }

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap; }

.select2-container .select2-search--inline {
  float: left; }

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 8px;
  padding: 0; }

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none; }

.select2-dropdown {
  background-color: #fff;
  border: 1px solid #e2e4e6;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
  z-index: 1051; }

.select2-results {
  display: block; }

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

.select2-results__option {
  padding: 6px 9px;
  user-select: none;
  -webkit-user-select: none; }

.select2-results__option:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px; }

.select2-results__option[aria-selected] {
  cursor: pointer; }

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

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

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

.select2-search--dropdown {
  display: block;
  padding: 4px; }

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box; }

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none; }

.select2-search--dropdown.select2-search--hide {
  display: none; }

.ios .select2-search--dropdown {
  display: none; }

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

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

.select2-container--default .select2-selection--single {
  background-color: #FFF;
  border: 1px solid #b9b9b9;
  border-radius: 3px; }
  .select2-container--default .select2-selection--single:hover {
    border-color: #9f9f9f; }

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #4f4f4f;
  line-height: 33px; }

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold; }

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999; }

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 32px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 30px; }

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0; }

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

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

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

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none; }

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

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  cursor: text; }

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%; }

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left; }

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #51bf49;
  padding: 6px 35px 6px 12px;
  margin: 5px 5px 0px 2px;
  position: relative;
  float: left;
  line-height: 13px;
  color: #FFF;
  cursor: default;
  border-radius: 20px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #FFF;
  cursor: pointer;
  display: inline-block;
  font-size: 22px;
  position: absolute;
  top: 6px;
  right: 10px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em; }

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

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

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, #ffffff 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

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

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px; }

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px; }

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999; }

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0; }

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

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

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

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none; }

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

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

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

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0; }

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

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px; }

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ==========================================================================
   $BASE-PICKER
   ========================================================================== */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
.picker {
  width: 350px;
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: #000000;
  position: absolute;
  z-index: 10000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  @media all and (max-width: 380px) {
    .picker {
      width: 100%; } }

@media all and (max-width: 1160px) {
  .section-container .section .picker {
    width: 300px; } }
@media all and (max-width: 1040px) {
  .section-container .section .picker {
    width: 250px; } }
@media all and (max-width: 875px) {
  .section-container .section .picker {
    width: 210px; } }
@media all and (max-width: 768px) {
  .section-container .section .picker {
    width: 300px; } }

.picker__week-select .picker__day--highlighted {
  border-color: #FFF;
  background: #FFF !important; }
.picker__week-select tr:hover .picker__day--infocus, .picker__week-select tr:hover .picker__day--outfocus {
  background: #b1dcfb !important;
  border-color: #b1dcfb; }

.picker__week--highlighted .picker__day--infocus, .picker__week--highlighted .picker__day--outfocus {
  background: #51bf49 !important;
  color: #FFF !important;
  font-weight: 600; }
.picker__week--highlighted .picker__day--selected {
  border-color: #51bf49; }

/**
 * The picker input element.
 */
.fieldset__input.picker__input {
  cursor: default; }

.datepicker.picker__input {
  cursor: default;
  background: url(../images/icons/icon-calendar.svg) no-repeat right 10px center white; }

/**
 * When the picker is opened, the input element is “activated”.
 */
.picker__input.picker__input--active {
  border-color: #0089ec; }

/**
 * The holder is the only “scrollable” top-level container element.
 */
.picker__holder {
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }

/*!
 * Classic picker styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
/**
 * The holder is the base of the picker.
 */
.picker__holder {
  position: absolute;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-top-width: 0;
  border-bottom-width: 0;
  border-radius: 0 0 5px 5px;
  box-sizing: border-box;
  min-width: 176px;
  max-width: 466px;
  max-height: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transform: translateY(-1em) perspective(600px) rotateX(10deg);
  transform: translateY(-1em) perspective(600px) rotateX(10deg);
  transition: -webkit-transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s; }

/**
 * The frame and wrap work together to ensure that
 * clicks within the picker don’t reach the holder.
 */
.picker__frame {
  padding: 1px; }

.picker__wrap {
  margin: -1px; }

/**
 * When the picker opens...
 */
.picker--opened .picker__holder {
  max-height: 25em;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
  border-top-width: 1px;
  border-bottom-width: 1px;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
  transition: -webkit-transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
  box-shadow: 0 6px 18px 1px rgba(0, 0, 0, 0.3); }

/* ==========================================================================
   $BASE-DATE-PICKER
   ========================================================================== */
/**
 * The picker box.
 */
.picker__box {
  padding: 0 1em; }

/**
 * The header containing the month and year stuff.
 */
.picker__header {
  text-align: center;
  position: relative;
  margin-top: .75em; }

/**
 * The month and year labels.
 */
.picker__month,
.picker__year {
  font-weight: 500;
  display: inline-block;
  margin-left: .25em;
  margin-right: .25em; }

.picker__year {
  color: #999999;
  font-size: .8em;
  font-style: italic; }

/**
 * The month and year selectors.
 */
.picker__select--month,
.picker__select--year {
  border: 1px solid #ccc;
  height: 2em;
  padding: 0;
  margin-left: .25em;
  margin-right: .25em; }

@media (min-width: 24.5em) {
  .picker__select--month,
  .picker__select--year {
    margin-top: -0.25em; } }
.picker__select--month {
  width: 35%; }

.picker__select--year {
  width: 22.5%; }

.picker__select--month:focus,
.picker__select--year:focus {
  border-color: #0089ec; }

/**
 * The month navigation buttons.
 */
.picker__nav--prev,
.picker__nav--next {
  position: absolute;
  padding: .5em 1.25em;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  top: -0.25em; }

@media (min-width: 24.5em) {
  .picker__nav--prev,
  .picker__nav--next {
    top: -0.33em; } }
.picker__nav--prev {
  left: -1em;
  padding-right: 1.25em; }

@media (min-width: 24.5em) {
  .picker__nav--prev {
    padding-right: 1.5em; } }
.picker__nav--next {
  right: -1em;
  padding-left: 1.25em; }

@media (min-width: 24.5em) {
  .picker__nav--next {
    padding-left: 1.5em; } }
.picker__nav--prev:before,
.picker__nav--next:before {
  content: " ";
  border-top: .5em solid transparent;
  border-bottom: .5em solid transparent;
  border-right: 0.75em solid #717171;
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto; }

.picker__nav--next:before {
  border-right: 0;
  border-left: 0.75em solid #717171; }

.picker__nav--prev:hover,
.picker__nav--next:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb; }

.picker__nav--disabled,
.picker__nav--disabled:hover,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover {
  cursor: default;
  background: none;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5; }

/**
 * The calendar table of dates
 */
.picker__table {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: inherit;
  width: 100%;
  margin-top: .75em;
  margin-bottom: .5em; }

@media (min-height: 33.875em) {
  .picker__table {
    margin-bottom: .75em; } }
.picker__table td {
  margin: 0;
  padding: 0; }

/**
 * The weekday labels
 */
.picker__weekday {
  width: 14.285714286%;
  font-size: .75em;
  padding-bottom: .25em;
  color: #999999;
  font-weight: 500;
  /* Increase the spacing a tad */ }

@media (min-height: 33.875em) {
  .picker__weekday {
    padding-bottom: .5em; } }
/**
 * The days on the calendar
 */
.picker__day {
  padding: .3125em 0;
  font-weight: 200;
  border: 1px solid transparent; }

.picker__day--today {
  position: relative; }

.picker__day--today:before {
  content: " ";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-top: 0.5em solid #5093e1;
  border-left: .5em solid transparent; }

.picker__day--disabled:before {
  border-top-color: #aaaaaa; }

.picker__day--outfocus {
  color: #dddddd; }

.picker__day--infocus:hover,
.picker__day--outfocus:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb; }

.picker__day--highlighted {
  border-color: #0089ec; }

.picker__day--highlighted:hover,
.picker--focused .picker__day--highlighted {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb; }

.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
  background: #51bf49;
  border-color: #51bf49;
  color: #ffffff;
  font-weight: 600; }

.picker__day--disabled,
.picker__day--disabled:hover,
.picker--focused .picker__day--disabled {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default; }

.picker__day--highlighted.picker__day--disabled,
.picker__day--highlighted.picker__day--disabled:hover {
  background: #bbbbbb; }

/**
 * The footer containing the "today", "clear", and "close" buttons.
 */
.picker__button--today,
.picker__button--clear,
.picker__button--close {
  border: 1px solid #ffffff;
  background: #ffffff;
  font-size: .8em;
  padding: .66em;
  font-weight: bold;
  width: auto;
  text-align: left;
  display: inline-block;
  vertical-align: bottom; }

.picker__button--today:hover,
.picker__button--clear:hover,
.picker__button--close:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
  border-bottom-color: #b1dcfb; }

.picker__button--today:focus,
.picker__button--clear:focus,
.picker__button--close:focus {
  background: #b1dcfb;
  border-color: #0089ec;
  outline: none; }

.picker__button--today:before,
.picker__button--clear:before,
.picker__button--close:before {
  position: relative;
  display: inline-block;
  height: 0; }

.picker__button--today:before,
.picker__button--clear:before {
  content: " ";
  margin-right: .45em; }

.picker__button--today:before {
  top: -0.05em;
  width: 0;
  border-top: 0.66em solid #5093e1;
  border-left: .66em solid transparent; }

.picker__button--clear:before {
  top: -0.25em;
  width: .66em;
  border-top: 3px solid #ee2200; }

.picker__button--close:before {
  content: "\D7";
  top: -0.1em;
  vertical-align: top;
  font-size: 1.1em;
  margin-right: .35em;
  color: #777777; }

.picker__button--today[disabled],
.picker__button--today[disabled]:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default; }

.picker__button--today[disabled]:before {
  border-top-color: #aaaaaa; }

/* ==========================================================================
   $CLASSIC-DATE-PICKER
   ========================================================================== */
.tt-menu {
  width: 100%;
  margin: -10px 0 0;
  padding: 8px 0;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }

.tt-suggestion {
  padding: 7px 16px;
  font-size: 14px;
  line-height: 1.4; }

.tt-suggestion:hover {
  cursor: pointer;
  color: #fff;
  background-color: #5093e1; }

.tt-suggestion.tt-cursor {
  color: #fff;
  background-color: #5093e1; }

.tt-suggestion p {
  margin: 0; }

.tt-hint {
  color: #bfbfbf !important; }

.tt-empty-message {
  padding: 7px 16px;
  font-size: 14px;
  line-height: 1.4; }

/*------------------------------------*\
    $ORGANISMS
\*------------------------------------*/
#p_p_id_searchcustomers_WAR_craportlet_,
#p_p_id_insertcustomer_WAR_craportlet_ {
  background: #FFF;
  border-radius: 3px;
  box-shadow: 0 0 0 1px #e3e3e3;
  padding: 30px; }
  #p_p_id_searchcustomers_WAR_craportlet_ .row, #p_p_id_searchcustomers_WAR_craportlet_ hr,
  #p_p_id_insertcustomer_WAR_craportlet_ .row,
  #p_p_id_insertcustomer_WAR_craportlet_ hr {
    margin-left: -15px;
    margin-right: -15px; }
  #p_p_id_searchcustomers_WAR_craportlet_ .col-md-2, #p_p_id_searchcustomers_WAR_craportlet_ .col-md-4, #p_p_id_searchcustomers_WAR_craportlet_ .col-md-12,
  #p_p_id_insertcustomer_WAR_craportlet_ .col-md-2,
  #p_p_id_insertcustomer_WAR_craportlet_ .col-md-4,
  #p_p_id_insertcustomer_WAR_craportlet_ .col-md-12 {
    float: left;
    padding: 0 15px; }
  #p_p_id_searchcustomers_WAR_craportlet_ .col-md-2,
  #p_p_id_insertcustomer_WAR_craportlet_ .col-md-2 {
    width: 16.6666%; }
  #p_p_id_searchcustomers_WAR_craportlet_ .col-md-4,
  #p_p_id_insertcustomer_WAR_craportlet_ .col-md-4 {
    width: 33.333%; }
  #p_p_id_searchcustomers_WAR_craportlet_ .col-md-6,
  #p_p_id_insertcustomer_WAR_craportlet_ .col-md-6 {
    width: 50%; }
  #p_p_id_searchcustomers_WAR_craportlet_ .col-md-12,
  #p_p_id_insertcustomer_WAR_craportlet_ .col-md-12 {
    width: 100%; }
  #p_p_id_searchcustomers_WAR_craportlet_ .form-group,
  #p_p_id_insertcustomer_WAR_craportlet_ .form-group {
    margin-bottom: 15px; }

.error-page {
  text-align: center;
  padding: 170px 10px 50px; }
  .error-page .page-title {
    font-weight: 900; }
  .error-page p {
    color: #444; }

/*
 * Copyright (c) 2016 Ambientia Oy.
 */
table.resource-week-calendar-table td {
  position: relative;
  vertical-align: top;
  border: 1px solid #c4c4c4; }
  table.resource-week-calendar-table td.weekend, table.resource-week-calendar-table td.holiday {
    background-image: url("../images/graphics/subtle_dots.png");
    background-clip: padding-box; }
    @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
      table.resource-week-calendar-table td.weekend, table.resource-week-calendar-table td.holiday {
        background-image: url("../images/graphics/subtle_dots@2x.png"); } }
  table.resource-week-calendar-table td.past {
    background: #f9f9f9;
    background-clip: padding-box; }
  table.resource-week-calendar-table td .label-holiday {
    position: absolute;
    top: 5px;
    right: 5px; }
table.resource-week-calendar-table th {
  min-width: 225px;
  background-color: #DADADA;
  padding: 12px;
  border-bottom: 2px solid #c4c4c4; }

.resource-week-calendar-tools {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap; }
  .resource-week-calendar-tools .item-left {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 170px;
    -ms-flex: 0 1 170px;
    flex: 0 1 170px; }
  .resource-week-calendar-tools .item-center {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1; }
  .resource-week-calendar-tools .item-right {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 325px;
    -ms-flex: 0 1 325px;
    flex: 0 1 325px; }
  @media all and (max-width: 999px) {
    .resource-week-calendar-tools .item-left {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
      -ms-flex-order: 1;
      order: 1;
      -webkit-box-flex: 1;
      -webkit-flex: 1 1 40%;
      -ms-flex: 1 1 40%;
      flex: 1 1 40%; }
    .resource-week-calendar-tools .item-center {
      -webkit-box-ordinal-group: 4;
      -webkit-order: 3;
      -ms-flex-order: 3;
      order: 3;
      -webkit-box-flex: 1;
      -webkit-flex: 1 1 100%;
      -ms-flex: 1 1 100%;
      flex: 1 1 100%; }
    .resource-week-calendar-tools .item-right {
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
      -ms-flex-order: 2;
      order: 2;
      -webkit-box-flex: 1;
      -webkit-flex: 1 1 60%;
      -ms-flex: 1 1 60%;
      flex: 1 1 60%; } }
  @media all and (max-width: 768px) {
    .resource-week-calendar-tools .item-left {
      -webkit-box-ordinal-group: 4;
      -webkit-order: 3;
      -ms-flex-order: 3;
      order: 3;
      -webkit-box-flex: 1;
      -webkit-flex: 1 1 100%;
      -ms-flex: 1 1 100%;
      flex: 1 1 100%;
      margin-bottom: 20px; }
    .resource-week-calendar-tools .item-center {
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
      -ms-flex-order: 2;
      order: 2;
      -webkit-box-flex: 1;
      -webkit-flex: 1 1 100%;
      -ms-flex: 1 1 100%;
      flex: 1 1 100%; }
    .resource-week-calendar-tools .item-right {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
      -ms-flex-order: 1;
      order: 1;
      -webkit-box-flex: 1;
      -webkit-flex: 1 1 100%;
      -ms-flex: 1 1 100%;
      flex: 1 1 100%; } }
  @media all and (max-width: 420px) {
    .resource-week-calendar-tools .calendar-nav .text-secondary {
      position: absolute;
      width: 100%;
      left: 0;
      bottom: -15px; } }

.input-row-container {
  background-color: #ECECEC;
  border: 1px solid #D2D2D2;
  padding: 5px;
  border-radius: 2px;
  margin: 5px 0 0; }
  .input-row-container.input-with-action {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    .input-row-container.input-with-action .control-group {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
      -ms-flex: 1;
      flex: 1; }
    .input-row-container.input-with-action .btn-remove {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 28px;
      -ms-flex: 0 0 28px;
      flex: 0 0 28px; }
  .input-row-container label {
    display: none; }
  .input-row-container .control-group {
    margin-bottom: 5px; }
  .input-row-container .btn-remove {
    margin: 5px; }

.add-new-container {
  margin: 10px 0; }

.allocation-slot {
  padding: 5px;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out; }
  .allocation-slot .slot-action-buttons {
    opacity: 0;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out; }
  .allocation-slot:hover .slot-action-buttons {
    opacity: 1; }
  .allocation-slot.secondary-station .resourceAllocationStationSelectContainer .select2-container--default .select2-selection--single {
    background-color: #6e16af;
    border-color: #27083e; }
  .allocation-slot.secondary-station .resourceAllocationStationSelectContainer .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #FFF; }
  .allocation-slot.secondary-station .resourceAllocationStationSelectContainer .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #FFF transparent transparent transparent; }
  .allocation-slot .error-message {
    font-size: 12px;
    color: #f85677;
    margin-top: 5px;
    margin-right: -20px;
    line-height: 1.4; }

td.message-icon {
  background: url(../images/icons/icon-bubble.svg) no-repeat center 14px;
  background-size: 22px auto; }

.modified .full-allocation-slot {
  border-left: 2px solid #f85677; }

.input-range label {
  float: left;
  line-height: 40px; }
.input-range .control-group {
  float: left;
  margin: 0 7px;
  max-width: 120px; }
.input-range .input-dash {
  line-height: 40px;
  float: left;
  color: #626262; }
@media all and (max-width: 420px) {
  .input-range label {
    float: none; }
  .input-range .control-group {
    margin: 0 7px 10px 0; }
  .input-range .input-dash {
    margin-right: 5px; } }

.allocation-small-inline-field .inline-field-label {
  font-size: 12px;
  line-height: 30px;
  float: left;
  margin-right: 3px;
  color: #555; }
.allocation-small-inline-field input.form-input-small {
  float: left;
  width: 80px; }

.service-group-selection-area {
  float: left;
  margin-right: 40px; }
  .service-group-selection-area.has-min-width {
    min-width: 400px;
    max-width: 100%; }
    @media all and (max-width: 460px) {
      .service-group-selection-area.has-min-width {
        min-width: 0;
        width: 100%; } }
  @media all and (max-width: 1180px) {
    .service-group-selection-area {
      float: left;
      width: 100%; } }

@media all and (max-width: 1180px) {
  #basic-information-area {
    float: left;
    width: 100%; } }

.reservation-search {
  width: 500px;
  max-width: 500px;
  margin: 0 auto; }

.reservation-top-navigation {
  display: none; }
  @media all and (max-width: 768px) {
    .reservation-top-navigation {
      display: block;
      padding: 10px;
      background: #FFF; }
      .reservation-top-navigation .pull-left, .reservation-top-navigation .pull-right {
        width: 100%; }
      .reservation-top-navigation .btn {
        display: block; } }

.radio-button-list .product-suffix-content {
  padding: 10px 10px 0 28px;
  border-left: 3px solid #51bf49; }

.station-search-result-notification {
  padding-top: 10px;
  padding-left: 18px;
  width: 50%;
  max-width: 50%; }

.easy-autocomplete {
  position: relative; }

.easy-autocomplete input {
  margin-bottom: 4px; }

.easy-autocomplete a {
  display: block; }

.easy-autocomplete-container {
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2; }

.easy-autocomplete-container ul {
  background: none repeat scroll 0 0 #ffffff;
  border-top: 1px solid #ccc;
  display: none;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  position: relative;
  top: -1px;
  text-align: left;
  margin: 0; }

.easy-autocomplete-container ul li, .easy-autocomplete-container ul .eac-category {
  background: inherit;
  border-color: #ccc;
  border-image: none;
  border-style: solid;
  border-width: 0 1px;
  display: block;
  font-size: 14px;
  font-weight: normal;
  padding: 4px 12px; }

.easy-autocomplete-container ul li:last-child {
  border-radius: 0 0 2px 2px;
  border-width: 0 1px 1px; }

.easy-autocomplete-container ul li.selected {
  background: none repeat scroll 0 0 #ebebeb;
  cursor: pointer; }

.easy-autocomplete-container ul li.selected div {
  font-weight: normal; }

.easy-autocomplete-container ul li div {
  display: block;
  font-weight: normal;
  word-break: break-all; }

.easy-autocomplete-container ul li b {
  font-weight: bold; }

.easy-autocomplete-container ul .eac-category {
  font-style: italic; }

.eac-description .eac-item span {
  color: #aaa;
  font-style: italic;
  font-size: 0.9em; }

.eac-icon-left .eac-item img {
  margin-right: 4px;
  max-height: 30px; }

.eac-icon-right .eac-item {
  margin-top: 8px;
  min-height: 24px;
  position: relative; }

.eac-icon-right .eac-item img {
  margin-left: 4px;
  max-height: 30px;
  position: absolute;
  right: -4px;
  top: -8px; }

.opening-hours-horizontal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px; }
  .opening-hours-horizontal .opening-hours-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100px;
    -ms-flex: 0 1 100px;
    flex: 0 1 100px;
    border-left: 1px solid #dddddd;
    padding: 12px 7px; }
    .opening-hours-horizontal .opening-hours-item:first-child {
      border-left: none; }
    .opening-hours-horizontal .opening-hours-item .weekday {
      font-weight: bold;
      font-size: 14px; }
    .opening-hours-horizontal .opening-hours-item .time-range {
      font-size: 13px; }

.scheduled-entry-horizontal {
  margin-bottom: 20px; }
  .scheduled-entry-horizontal .date-range-label {
    font-size: 20px;
    font-weight: normal; }

.empty-state.waiting-for-action {
  background: url(../images/graphics/settings.svg) no-repeat center center;
  width: 100%;
  height: 200px;
  background-size: 140px auto;
  opacity: 0.15; }

.configurable-fields-horizontal label {
  float: left;
  width: 30px;
  font-size: 18px;
  line-height: 3;
  color: #656565;
  font-weight: 600; }
.configurable-fields-horizontal .configurable-fields-container {
  margin-left: 40px; }

.table-department-opening-hours th {
  color: #626262;
  font-size: 14px; }
.table-department-opening-hours tbody tr td {
  min-width: 150px;
  font-size: 14px;
  border-bottom: 1px solid #cfcfcf;
  border-right: 1px solid #cfcfcf; }
  .table-department-opening-hours tbody tr td:first-child {
    font-weight: 600; }
.table-department-opening-hours tbody tr.station-opening-hours td {
  background: #d5d5d5;
  border-right: 1px solid #c2c2c2; }
.table-department-opening-hours thead tr th {
  text-align: center; }
.table-department-opening-hours tbody tr td {
  text-align: center; }
  .table-department-opening-hours tbody tr td:first-child {
    text-align: left; }
  .table-department-opening-hours tbody tr td.department-closed, .table-department-opening-hours tbody tr td.station-closed {
    background: #303746;
    color: #FFF;
    border-right: 1px solid #15181f;
    border-bottom: 1px solid #15181f;
    font-weight: 600; }
  .table-department-opening-hours tbody tr td.department-daily-opening-hours-undefined {
    color: #bfbfbf; }
  .table-department-opening-hours tbody tr td.department-daily-opening-hours-special, .table-department-opening-hours tbody tr td.station-daily-opening-hours-special {
    background: #6e16af;
    color: #FFF;
    border-right: 1px solid #490f74;
    border-bottom: 1px solid #490f74;
    font-weight: 600; }
  .table-department-opening-hours tbody tr td.station-daily-opening-hours-holiday {
    background: #f85677;
    color: #FFF;
    border-right: 1px solid #f51644;
    border-bottom: 1px solid #f51644;
    font-weight: 600; }

.department-public {
  float: right;
  margin-top: 4px !important; }

.public-scheme .container3 {
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto; }
.public-scheme .container3:before,
.public-scheme .container3:after {
  display: table;
  content: " "; }
.public-scheme .container3:after {
  clear: both; }
.public-scheme .container3:before,
.public-scheme .container3:after {
  display: table;
  content: " "; }
.public-scheme .container3:after {
  clear: both; }
.public-scheme .row {
  margin-right: -20px;
  margin-left: -20px; }
.public-scheme .row:before,
.public-scheme .row:after {
  display: table;
  content: " "; }
.public-scheme .row:after {
  clear: both; }
.public-scheme .row:before,
.public-scheme .row:after {
  display: table;
  content: " "; }
.public-scheme .row:after {
  clear: both; }
.public-scheme .aui .pull-right {
  float: right !important; }
.public-scheme .aui .pull-left {
  float: left !important; }
.public-scheme .col-xs-1,
.public-scheme .col-xs-2,
.public-scheme .col-xs-3,
.public-scheme .col-xs-4,
.public-scheme .col-xs-5,
.public-scheme .col-xs-6,
.public-scheme .col-xs-7,
.public-scheme .col-xs-8,
.public-scheme .col-xs-9,
.public-scheme .col-xs-10,
.public-scheme .col-xs-11,
.public-scheme .col-xs-12,
.public-scheme .col-sm-1,
.public-scheme .col-sm-2,
.public-scheme .col-sm-3,
.public-scheme .col-sm-4,
.public-scheme .col-sm-5,
.public-scheme .col-sm-6,
.public-scheme .col-sm-7,
.public-scheme .col-sm-8,
.public-scheme .col-sm-9,
.public-scheme .col-sm-10,
.public-scheme .col-sm-11,
.public-scheme .col-sm-12,
.public-scheme .col-md-1,
.public-scheme .col-md-2,
.public-scheme .col-md-3,
.public-scheme .col-md-4,
.public-scheme .col-md-5,
.public-scheme .col-md-6,
.public-scheme .col-md-7,
.public-scheme .col-md-8,
.public-scheme .col-md-9,
.public-scheme .col-md-10,
.public-scheme .col-md-11,
.public-scheme .col-md-12,
.public-scheme .col-lg-1,
.public-scheme .col-lg-2,
.public-scheme .col-lg-3,
.public-scheme .col-lg-4,
.public-scheme .col-lg-5,
.public-scheme .col-lg-6,
.public-scheme .col-lg-7,
.public-scheme .col-lg-8,
.public-scheme .col-lg-9,
.public-scheme .col-lg-10,
.public-scheme .col-lg-11,
.public-scheme .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 20px;
  padding-left: 20px; }
.public-scheme .col-xs-1,
.public-scheme .col-xs-2,
.public-scheme .col-xs-3,
.public-scheme .col-xs-4,
.public-scheme .col-xs-5,
.public-scheme .col-xs-6,
.public-scheme .col-xs-7,
.public-scheme .col-xs-8,
.public-scheme .col-xs-9,
.public-scheme .col-xs-10,
.public-scheme .col-xs-11 {
  float: left; }
.public-scheme .col-xs-1 {
  width: 8.333333333333332%; }
.public-scheme .col-xs-2 {
  width: 16.666666666666664%; }
.public-scheme .col-xs-3 {
  width: 25%; }
.public-scheme .col-xs-4 {
  width: 33.33333333333333%; }
.public-scheme .col-xs-5 {
  width: 41.66666666666667%; }
.public-scheme .col-xs-6 {
  width: 50%; }
.public-scheme .col-xs-7 {
  width: 58.333333333333336%; }
.public-scheme .col-xs-8 {
  width: 66.66666666666666%; }
.public-scheme .col-xs-9 {
  width: 75%; }
.public-scheme .col-xs-10 {
  width: 83.33333333333334%; }
.public-scheme .col-xs-11 {
  width: 91.66666666666666%; }
.public-scheme .col-xs-12 {
  width: 100%; }
@media (max-width: 767px) {
  .public-scheme .col-xs-offset-1 {
    margin-left: 8.333333333333332%; }
  .public-scheme .col-xs-offset-2 {
    margin-left: 16.666666666666664%; }
  .public-scheme .col-xs-offset-3 {
    margin-left: 25%; }
  .public-scheme .col-xs-offset-4 {
    margin-left: 33.33333333333333%; }
  .public-scheme .col-xs-offset-5 {
    margin-left: 41.66666666666667%; }
  .public-scheme .col-xs-offset-6 {
    margin-left: 50%; }
  .public-scheme .col-xs-offset-7 {
    margin-left: 58.333333333333336%; }
  .public-scheme .col-xs-offset-8 {
    margin-left: 66.66666666666666%; }
  .public-scheme .col-xs-offset-9 {
    margin-left: 75%; }
  .public-scheme .col-xs-offset-10 {
    margin-left: 83.33333333333334%; }
  .public-scheme .col-xs-offset-11 {
    margin-left: 91.66666666666666%; }
  .public-scheme .col-xs-offset-12 {
    margin-left: 100%; } }
@media (min-width: 768px) {
  .public-scheme .container3 {
    max-width: 750px; }
  .public-scheme .col-sm-1,
  .public-scheme .col-sm-2,
  .public-scheme .col-sm-3,
  .public-scheme .col-sm-4,
  .public-scheme .col-sm-5,
  .public-scheme .col-sm-6,
  .public-scheme .col-sm-7,
  .public-scheme .col-sm-8,
  .public-scheme .col-sm-9,
  .public-scheme .col-sm-10,
  .public-scheme .col-sm-11 {
    float: left; }
  .public-scheme .col-sm-1 {
    width: 8.333333333333332%; }
  .public-scheme .col-sm-2 {
    width: 16.666666666666664%; }
  .public-scheme .col-sm-3 {
    width: 25%; }
  .public-scheme .col-sm-4 {
    width: 33.33333333333333%; }
  .public-scheme .col-sm-5 {
    width: 41.66666666666667%; }
  .public-scheme .col-sm-6 {
    width: 50%; }
  .public-scheme .col-sm-7 {
    width: 58.333333333333336%; }
  .public-scheme .col-sm-8 {
    width: 66.66666666666666%; }
  .public-scheme .col-sm-9 {
    width: 75%; }
  .public-scheme .col-sm-10 {
    width: 83.33333333333334%; }
  .public-scheme .col-sm-11 {
    width: 91.66666666666666%; }
  .public-scheme .col-sm-12 {
    width: 100%; }
  .public-scheme .col-sm-push-1 {
    left: 8.333333333333332%; }
  .public-scheme .col-sm-push-2 {
    left: 16.666666666666664%; }
  .public-scheme .col-sm-push-3 {
    left: 25%; }
  .public-scheme .col-sm-push-4 {
    left: 33.33333333333333%; }
  .public-scheme .col-sm-push-5 {
    left: 41.66666666666667%; }
  .public-scheme .col-sm-push-6 {
    left: 50%; }
  .public-scheme .col-sm-push-7 {
    left: 58.333333333333336%; }
  .public-scheme .col-sm-push-8 {
    left: 66.66666666666666%; }
  .public-scheme .col-sm-push-9 {
    left: 75%; }
  .public-scheme .col-sm-push-10 {
    left: 83.33333333333334%; }
  .public-scheme .col-sm-push-11 {
    left: 91.66666666666666%; }
  .public-scheme .col-sm-pull-1 {
    right: 8.333333333333332%; }
  .public-scheme .col-sm-pull-2 {
    right: 16.666666666666664%; }
  .public-scheme .col-sm-pull-3 {
    right: 25%; }
  .public-scheme .col-sm-pull-4 {
    right: 33.33333333333333%; }
  .public-scheme .col-sm-pull-5 {
    right: 41.66666666666667%; }
  .public-scheme .col-sm-pull-6 {
    right: 50%; }
  .public-scheme .col-sm-pull-7 {
    right: 58.333333333333336%; }
  .public-scheme .col-sm-pull-8 {
    right: 66.66666666666666%; }
  .public-scheme .col-sm-pull-9 {
    right: 75%; }
  .public-scheme .col-sm-pull-10 {
    right: 83.33333333333334%; }
  .public-scheme .col-sm-pull-11 {
    right: 91.66666666666666%; }
  .public-scheme .col-sm-offset-1 {
    margin-left: 8.333333333333332%; }
  .public-scheme .col-sm-offset-2 {
    margin-left: 16.666666666666664%; }
  .public-scheme .col-sm-offset-3 {
    margin-left: 25%; }
  .public-scheme .col-sm-offset-4 {
    margin-left: 33.33333333333333%; }
  .public-scheme .col-sm-offset-5 {
    margin-left: 41.66666666666667%; }
  .public-scheme .col-sm-offset-6 {
    margin-left: 50%; }
  .public-scheme .col-sm-offset-7 {
    margin-left: 58.333333333333336%; }
  .public-scheme .col-sm-offset-8 {
    margin-left: 66.66666666666666%; }
  .public-scheme .col-sm-offset-9 {
    margin-left: 75%; }
  .public-scheme .col-sm-offset-10 {
    margin-left: 83.33333333333334%; }
  .public-scheme .col-sm-offset-11 {
    margin-left: 91.66666666666666%; } }
@media (min-width: 992px) {
  .public-scheme .container3 {
    max-width: 970px; }
  .public-scheme .col-md-1,
  .public-scheme .col-md-2,
  .public-scheme .col-md-3,
  .public-scheme .col-md-4,
  .public-scheme .col-md-5,
  .public-scheme .col-md-6,
  .public-scheme .col-md-7,
  .public-scheme .col-md-8,
  .public-scheme .col-md-9,
  .public-scheme .col-md-10,
  .public-scheme .col-md-11 {
    float: left; }
  .public-scheme .col-md-1 {
    width: 8.333333333333332%; }
  .public-scheme .col-md-2 {
    width: 16.666666666666664%; }
  .public-scheme .col-md-3 {
    width: 25%; }
  .public-scheme .col-md-4 {
    width: 33.33333333333333%; }
  .public-scheme .col-md-5 {
    width: 41.66666666666667%; }
  .public-scheme .col-md-6 {
    width: 50%; }
  .public-scheme .col-md-7 {
    width: 58.333333333333336%; }
  .public-scheme .col-md-8 {
    width: 66.66666666666666%; }
  .public-scheme .col-md-9 {
    width: 75%; }
  .public-scheme .col-md-10 {
    width: 83.33333333333334%; }
  .public-scheme .col-md-11 {
    width: 91.66666666666666%; }
  .public-scheme .col-md-12 {
    width: 100%; }
  .public-scheme .col-md-push-0 {
    left: auto; }
  .public-scheme .col-md-push-1 {
    left: 8.333333333333332%; }
  .public-scheme .col-md-push-2 {
    left: 16.666666666666664%; }
  .public-scheme .col-md-push-3 {
    left: 25%; }
  .public-scheme .col-md-push-4 {
    left: 33.33333333333333%; }
  .public-scheme .col-md-push-5 {
    left: 41.66666666666667%; }
  .public-scheme .col-md-push-6 {
    left: 50%; }
  .public-scheme .col-md-push-7 {
    left: 58.333333333333336%; }
  .public-scheme .col-md-push-8 {
    left: 66.66666666666666%; }
  .public-scheme .col-md-push-9 {
    left: 75%; }
  .public-scheme .col-md-push-10 {
    left: 83.33333333333334%; }
  .public-scheme .col-md-push-11 {
    left: 91.66666666666666%; }
  .public-scheme .col-md-pull-0 {
    right: auto; }
  .public-scheme .col-md-pull-1 {
    right: 8.333333333333332%; }
  .public-scheme .col-md-pull-2 {
    right: 16.666666666666664%; }
  .public-scheme .col-md-pull-3 {
    right: 25%; }
  .public-scheme .col-md-pull-4 {
    right: 33.33333333333333%; }
  .public-scheme .col-md-pull-5 {
    right: 41.66666666666667%; }
  .public-scheme .col-md-pull-6 {
    right: 50%; }
  .public-scheme .col-md-pull-7 {
    right: 58.333333333333336%; }
  .public-scheme .col-md-pull-8 {
    right: 66.66666666666666%; }
  .public-scheme .col-md-pull-9 {
    right: 75%; }
  .public-scheme .col-md-pull-10 {
    right: 83.33333333333334%; }
  .public-scheme .col-md-pull-11 {
    right: 91.66666666666666%; }
  .public-scheme .col-md-offset-0 {
    margin-left: 0; }
  .public-scheme .col-md-offset-1 {
    margin-left: 8.333333333333332%; }
  .public-scheme .col-md-offset-2 {
    margin-left: 16.666666666666664%; }
  .public-scheme .col-md-offset-3 {
    margin-left: 25%; }
  .public-scheme .col-md-offset-4 {
    margin-left: 33.33333333333333%; }
  .public-scheme .col-md-offset-5 {
    margin-left: 41.66666666666667%; }
  .public-scheme .col-md-offset-6 {
    margin-left: 50%; }
  .public-scheme .col-md-offset-7 {
    margin-left: 58.333333333333336%; }
  .public-scheme .col-md-offset-8 {
    margin-left: 66.66666666666666%; }
  .public-scheme .col-md-offset-9 {
    margin-left: 75%; }
  .public-scheme .col-md-offset-10 {
    margin-left: 83.33333333333334%; }
  .public-scheme .col-md-offset-11 {
    margin-left: 91.66666666666666%; } }
@media (min-width: 1200px) {
  .public-scheme .container3 {
    max-width: 1160px; }
  .public-scheme .col-lg-1,
  .public-scheme .col-lg-2,
  .public-scheme .col-lg-3,
  .public-scheme .col-lg-4,
  .public-scheme .col-lg-5,
  .public-scheme .col-lg-6,
  .public-scheme .col-lg-7,
  .public-scheme .col-lg-8,
  .public-scheme .col-lg-9,
  .public-scheme .col-lg-10,
  .public-scheme .col-lg-11 {
    float: left; }
  .public-scheme .col-lg-1 {
    width: 8.333333333333332%; }
  .public-scheme .col-lg-2 {
    width: 16.666666666666664%; }
  .public-scheme .col-lg-3 {
    width: 25%; }
  .public-scheme .col-lg-4 {
    width: 33.33333333333333%; }
  .public-scheme .col-lg-5 {
    width: 41.66666666666667%; }
  .public-scheme .col-lg-6 {
    width: 50%; }
  .public-scheme .col-lg-7 {
    width: 58.333333333333336%; }
  .public-scheme .col-lg-8 {
    width: 66.66666666666666%; }
  .public-scheme .col-lg-9 {
    width: 75%; }
  .public-scheme .col-lg-10 {
    width: 83.33333333333334%; }
  .public-scheme .col-lg-11 {
    width: 91.66666666666666%; }
  .public-scheme .col-lg-12 {
    width: 100%; }
  .public-scheme .col-lg-push-0 {
    left: auto; }
  .public-scheme .col-lg-push-1 {
    left: 8.333333333333332%; }
  .public-scheme .col-lg-push-2 {
    left: 16.666666666666664%; }
  .public-scheme .col-lg-push-3 {
    left: 25%; }
  .public-scheme .col-lg-push-4 {
    left: 33.33333333333333%; }
  .public-scheme .col-lg-push-5 {
    left: 41.66666666666667%; }
  .public-scheme .col-lg-push-6 {
    left: 50%; }
  .public-scheme .col-lg-push-7 {
    left: 58.333333333333336%; }
  .public-scheme .col-lg-push-8 {
    left: 66.66666666666666%; }
  .public-scheme .col-lg-push-9 {
    left: 75%; }
  .public-scheme .col-lg-push-10 {
    left: 83.33333333333334%; }
  .public-scheme .col-lg-push-11 {
    left: 91.66666666666666%; }
  .public-scheme .col-lg-pull-0 {
    right: auto; }
  .public-scheme .col-lg-pull-1 {
    right: 8.333333333333332%; }
  .public-scheme .col-lg-pull-2 {
    right: 16.666666666666664%; }
  .public-scheme .col-lg-pull-3 {
    right: 25%; }
  .public-scheme .col-lg-pull-4 {
    right: 33.33333333333333%; }
  .public-scheme .col-lg-pull-5 {
    right: 41.66666666666667%; }
  .public-scheme .col-lg-pull-6 {
    right: 50%; }
  .public-scheme .col-lg-pull-7 {
    right: 58.333333333333336%; }
  .public-scheme .col-lg-pull-8 {
    right: 66.66666666666666%; }
  .public-scheme .col-lg-pull-9 {
    right: 75%; }
  .public-scheme .col-lg-pull-10 {
    right: 83.33333333333334%; }
  .public-scheme .col-lg-pull-11 {
    right: 91.66666666666666%; }
  .public-scheme .col-lg-offset-0 {
    margin-left: 0; }
  .public-scheme .col-lg-offset-1 {
    margin-left: 8.333333333333332%; }
  .public-scheme .col-lg-offset-2 {
    margin-left: 16.666666666666664%; }
  .public-scheme .col-lg-offset-3 {
    margin-left: 25%; }
  .public-scheme .col-lg-offset-4 {
    margin-left: 33.33333333333333%; }
  .public-scheme .col-lg-offset-5 {
    margin-left: 41.66666666666667%; }
  .public-scheme .col-lg-offset-6 {
    margin-left: 50%; }
  .public-scheme .col-lg-offset-7 {
    margin-left: 58.333333333333336%; }
  .public-scheme .col-lg-offset-8 {
    margin-left: 66.66666666666666%; }
  .public-scheme .col-lg-offset-9 {
    margin-left: 75%; }
  .public-scheme .col-lg-offset-10 {
    margin-left: 83.33333333333334%; }
  .public-scheme .col-lg-offset-11 {
    margin-left: 91.66666666666666%; } }
.public-scheme .nav-area {
  border-top: none;
  background: -webkit-linear-gradient(#392de2, #1107a0);
  background: -o-linear-gradient(#392de2, #1107a0);
  background: -moz-linear-gradient(#392de2, #1107a0);
  background: linear-gradient(#392de2, #1107a0);
  background-color: #392de2; }
.public-scheme .site-header {
  background-color: #FFF;
  border-bottom: none; }
  .public-scheme .site-header .container3 {
    max-width: 970px; }
.public-scheme .site-header ul li {
  float: left; }
.public-scheme a.nav-toggle {
  background: #1107a1;
  background: -moz-linear-gradient(top, #382de1 0, #1107a1 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #382de1), color-stop(100%, #1107a1));
  background: -webkit-linear-gradient(top, #382de1 0, #1107a1 100%);
  background: -o-linear-gradient(top, #382de1 0, #1107a1 100%);
  background: -ms-linear-gradient(top, #382de1 0, #1107a1 100%);
  background: linear-gradient(to bottom, #382de1 0%, #1107a1 100%);
  border: 1px solid #1107a1;
  color: #FFF;
  font-size: 20px;
  line-height: 1;
  padding: 10px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  float: right;
  display: none;
  text-align: center;
  width: 50px;
  height: 44px; }
  .public-scheme a.nav-toggle img {
    width: 17px; }
.public-scheme .main-nav li {
  height: 48px;
  overflow: hidden; }
  .public-scheme .main-nav li a {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #fff;
    font-weight: normal;
    text-transform: none;
    border-bottom: 4px solid #78be20;
    border-left: none;
    font-size: 14px !important;
    padding: 0 17px;
    margin: 0;
    height: 52px;
    line-height: 48px;
    display: block;
    float: left;
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    -ms-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    font-weight: 800 !important; }
    .public-scheme .main-nav li a:hover {
      height: 48px; }
    @media only screen and (max-width: 900px) {
      .public-scheme .main-nav li a {
        padding: 0; } }
  .public-scheme .main-nav li.selected a {
    height: 48px; }
  .public-scheme .main-nav li.selected:before, .public-scheme .main-nav li.selected:after {
    content: "";
    width: 1px;
    height: 48px;
    background: #dadada;
    background: -moz-linear-gradient(top, white 0%, #dadada 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #dadada));
    background: -webkit-linear-gradient(top, white 0%, #dadada 100%);
    background: -o-linear-gradient(top, white 0%, #dadada 100%);
    background: -ms-linear-gradient(top, white 0%, #dadada 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #dadada 100%);
    float: left;
    display: block;
    background: #4242fe !important; }
  @media only screen and (max-width: 900px) {
    .public-scheme .main-nav li.selected:before, .public-scheme .main-nav li.selected:after {
      display: none; } }
.public-scheme .site-header .top-ui {
  float: right; }
.public-scheme .site-header ul {
  list-style: none; }
.public-scheme .site-header ul li {
  float: left; }
.public-scheme .site-header a {
  color: #444444;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px; }
.public-scheme .lang-select li {
  margin-right: 12px;
  padding-right: 12px;
  border-right: 1px solid #444444; }
  @media all and (max-width: 900px) {
    .public-scheme .lang-select li {
      border-right: none;
      margin-right: 5px;
      padding-right: 5px; } }
  .public-scheme .lang-select li:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0; }
  .public-scheme .lang-select li a {
    font-size: 12px;
    font-weight: bold; }
    @media all and (max-width: 900px) {
      .public-scheme .lang-select li a {
        font-size: 12px; } }
.public-scheme .lang-div {
  float: left; }
.public-scheme .lang-select {
  float: left;
  padding-top: 18px; }
  @media all and (max-width: 900px) {
    .public-scheme .lang-select {
      padding-top: 0; } }
.public-scheme .com-site-title {
  width: 182px;
  height: auto;
  float: left; }
.public-scheme .logo {
  display: inline-block;
  line-height: 1;
  vertical-align: middle; }
.public-scheme .com-site-title .akat-com-logo {
  margin-top: 20px;
  width: 202px;
  height: 54px;
  float: left;
  background: url(../images/graphics/ajovarma-public-logo.png) no-repeat; }
.public-scheme .search-n-toggle-wrapper {
  display: none; }
.public-scheme .site-search form {
  margin-bottom: 0; }
.public-scheme .site-search fieldset {
  padding: 0;
  border: none;
  background: none;
  margin: 0; }
.public-scheme .site-search .search-field {
  background-color: #e9e9e9;
  border: 0;
  color: #444;
  padding: 8px 10px;
  line-height: 1.2;
  float: left;
  margin: 0;
  border-radius: 0px;
  width: 148px;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 14px; }
.public-scheme .site-search .search-submit {
  background: #e9e9e9;
  border: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  text-shadow: none;
  color: #888;
  padding: 7px 10px 9px;
  margin: 0;
  font-size: 12px; }
.public-scheme #js-site-mobile-search {
  float: left;
  padding-top: 10px; }
.public-scheme .search-n-toggle-wrapper {
  float: left; }
@media only screen and (max-width: 900px) {
  .public-scheme .site-search {
    display: none; }
  .public-scheme a.nav-toggle {
    display: block; } }
@media screen and (min-width: 901px) {
  .public-scheme div.top-ui {
    margin: 25px 190px 25px 0 !important; }
  .public-scheme div#js-site-search {
    padding-top: 11px;
    position: absolute;
    right: 0;
    top: 25px;
    display: inline !important; } }
@media screen and (max-width: 900px) {
  .public-scheme {
    /* lang select */ }
    .public-scheme div.top-ui {
      margin: 15px 0 0 !important;
      position: absolute;
      right: 10px; }
    .public-scheme div#js-site-search {
      padding: 0;
      position: static;
      width: 100%;
      float: left;
      margin: 0px 0px;
      margin-top: -30px; }
    .public-scheme .search-field {
      width: 200px !important;
      float: right !important;
      padding: 10px !important; }
    .public-scheme .search-submit {
      position: absolute;
      right: 0; }
    .public-scheme div.mobile-wrapper {
      float: right;
      padding: 5px 0;
      width: 100%; }
    .public-scheme div.lang-div {
      float: right; }
    .public-scheme .lang-select {
      float: left;
      width: 100%; }
    .public-scheme div.search-n-toggle-wrapper {
      float: right;
      margin-top: 44px;
      text-align: right;
      display: table-cell;
      width: 100px;
      position: absolute;
      right: 0; }
    .public-scheme div.site-mobile-search {
      display: inline; }
    .public-scheme div.search-icon {
      display: inline; }
    .public-scheme div.search-n-toggle-wrapper div.search-div {
      float: left; }
    .public-scheme .site-mobile-search fieldset {
      background-color: #fff;
      width: auto;
      float: left; }
    .public-scheme .site-mobile-search .search-field {
      background-color: #fff;
      border: none;
      color: #444444;
      padding: 8px 10px;
      line-height: 1.2;
      float: left;
      margin-bottom: 0; }
    .public-scheme .site-mobile-search .search-submit {
      background: #fff;
      border: none;
      -webkit-border-radius: 0px;
      border-radius: 0px;
      text-shadow: none;
      color: #888888;
      padding: 6px 7px 7px; }
    .public-scheme .toggle-buttons {
      margin-bottom: 0 !important; }
    .public-scheme .main-nav nav {
      float: left !important; }
    .public-scheme #mobile-search-row {
      background: #efefef;
      height: 50px;
      display: none; }
    .public-scheme .com-site-title {
      width: 143px;
      height: auto;
      float: left; }
    .public-scheme .nav-calendar {
      float: left !important; }
    .public-scheme .com-site-title .akat-com-logo {
      margin: 57px 0 16px 0;
      width: 159px;
      height: 42px;
      float: left;
      background-size: cover; } }
.public-scheme .btn-primary, .public-scheme input[type="submit"] {
  background: #10069f;
  border-color: #0e067c; }
  .public-scheme .btn-primary:hover, .public-scheme input[type="submit"]:hover {
    background: #0e067c;
    border-color: #08025c; }
.public-scheme .tab-nav li.current a, .public-scheme .tab-nav li.current span {
  color: #10069f; }
.public-scheme .tab-nav li.current span {
  border-bottom: 2px solid #10069f; }
@media (max-width: 970px) {
  .public-scheme .main-nav ul.open {
    border-top: none; } }
.public-scheme .anomaly-alert {
  background-color: #FFF;
  clear: both; }
  .public-scheme .anomaly-alert .container {
    max-width: 970px !important;
    position: relative;
    padding-left: 15px;
    padding-right: 15px; }
  .public-scheme .anomaly-alert .pattern {
    background: url(/ajovarma-fi-theme/images/graphics/anomaly-pattern.svg) repeat;
    height: 5px;
    width: 100%;
    display: block; }
  .public-scheme .anomaly-alert.remove-top-border .content {
    border-top: none; }
  .public-scheme .anomaly-alert .content {
    border-top: 1px solid #c8102e;
    border-bottom: 1px solid #c8102e;
    background-color: #FFF; }
  .public-scheme .anomaly-alert h3 {
    font-size: 14px;
    color: #c8102e;
    margin: 12px 0;
    font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif; }
  .public-scheme .anomaly-alert .close-btn {
    position: absolute;
    top: 0px;
    right: 0px;
    margin-top: 17px;
    width: 20px;
    height: 20px;
    border-radius: 18px;
    background: url(../images/icons/icon-x-thick-white.svg) no-repeat black center center;
    background-size: 10px; }
  .public-scheme .anomaly-alert .anomaly-content {
    background: url(/ajovarma-fi-theme/images/icons/attention.png) white no-repeat left center;
    padding: 8px 0 8px 50px;
    min-height: 30px;
    margin-right: 50px; }
  @media all and (max-width: 768px) {
    .public-scheme .anomaly-alert .anomaly-content {
      padding: 10px 40px; }
    .public-scheme .anomaly-alert .close-btn {
      position: absolute;
      top: 0;
      right: 15px; } }

#browser-notification {
  padding: 0 20px;
  background: #FFF;
  border-bottom: 4px solid #c8102e; }

/*------------------------------------*\
    $PRINT STYLES
\*------------------------------------*/
@media print {
  #wrapper {
    padding-bottom: 0 !important; }

  .area-separated {
    border: none !important; }

  .section-footer {
    display: none; }

  .flex-container {
    align-items: flex-start; }
    .flex-container .area-separated {
      flex: 1 1 33% !important;
      padding: 0 5px; } }