/* ==========================================================================
   $BASE-PICKER
   ========================================================================== */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
.picker {
  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;
}
/**
 * The picker input element.
 */
.picker__input {
  cursor: default;
}
/**
 * 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;
}

/*!
 * Default mobile-first, responsive 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.
 */
/**
 * Make the holder and frame fullscreen.
 */
.picker__holder,
.picker__frame {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
/**
 * The holder should overlay the entire screen.
 */
.picker__holder {
  position: fixed;
  -webkit-transition: background 0.15s ease-out, -webkit-transform 0s 0.15s;
          transition: background 0.15s ease-out, -webkit-transform 0s 0.15s;
  transition: background 0.15s ease-out, transform 0s 0.15s;
  -webkit-backface-visibility: hidden;
}
/**
 * The frame that bounds the box contents of the picker.
 */
.picker__frame {
  position: absolute;
  margin: 0 auto;
  min-width: 256px;
  max-width: 666px;
  width: 100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
          transition: all 0.15s ease-out;
}
@media (min-height: 33.875em) {
  .picker__frame {
    overflow: visible;
    top: auto;
    bottom: -100%;
    max-height: 80%;
  }
}
@media (min-height: 40.125em) {
  .picker__frame {
    margin-bottom: 7.5%;
  }
}
/**
 * The wrapper sets the stage to vertically align the box contents.
 */
.picker__wrap {
  display: table;
  width: 100%;
  height: 100%;
}
@media (min-height: 33.875em) {
  .picker__wrap {
    display: block;
  }
}
/**
 * The box contains all the picker contents.
 */
.picker__box {
  background: #ffffff;
  display: table-cell;
  vertical-align: middle;
}
@media (min-height: 26.5em) {
  .picker__box {
    font-size: 1.25em;
  }
}
@media (min-height: 33.875em) {
  .picker__box {
    display: block;
    font-size: 1.33em;
    border: 1px solid #777777;
    border-top-color: #898989;
    border-bottom-width: 0;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
  }
}
@media (min-height: 40.125em) {
  .picker__box {
    font-size: 1.5em;
    border-bottom-width: 1px;
    border-radius: 5px;
  }
}
/**
 * When the picker opens...
 */
.picker--opened .picker__holder {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  background: transparent;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#1E000000,endColorstr=#1E000000)";
  zoom: 1;
  background: rgba(0, 0, 0, 0.32);
  -webkit-transition: background 0.15s ease-out;
          transition: background 0.15s ease-out;
}
.picker--opened .picker__frame {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}
@media (min-height: 33.875em) {
  .picker--opened .picker__frame {
    top: auto;
    bottom: 0;
  }
}

/* ==========================================================================
   $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 #b7b7b7;
  height: 2em;
  padding: .5em;
  margin-left: .25em;
  margin-right: .25em;
}
@media (min-width: 24.5em) {
  .picker__select--month,
  .picker__select--year {
    margin-top: -0.5em;
  }
}
.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 #000000;
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto;
}
.picker__nav--next:before {
  border-right: 0;
  border-left: 0.75em solid #000000;
}
.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 #0059bc;
  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: #0089ec;
  color: #ffffff;
}
.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__footer {
  text-align: center;
}
.picker__button--today,
.picker__button--clear,
.picker__button--close {
  border: 1px solid #ffffff;
  background: #ffffff;
  font-size: .8em;
  padding: .66em 0;
  font-weight: bold;
  width: 33%;
  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 #0059bc;
  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;
}

/* ==========================================================================
   $DEFAULT-DATE-PICKER
   ========================================================================== */

/* ==========================================================================
   $BASE-TIME-PICKER
   ========================================================================== */
/**
 * The list of times.
 */
.picker__list {
  list-style: none;
  padding: 0.75em 0 4.2em;
  margin: 0;
}
/**
 * The times on the clock.
 */
.picker__list-item {
  border-bottom: 1px solid #dddddd;
  border-top: 1px solid #dddddd;
  margin-bottom: -1px;
  position: relative;
  background: #ffffff;
  padding: .75em 1.25em;
}
@media (min-height: 46.75em) {
  .picker__list-item {
    padding: .5em 1em;
  }
}
/* Hovered time */
.picker__list-item:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
  border-color: #0089ec;
  z-index: 10;
}
/* Highlighted and hovered/focused time */
.picker__list-item--highlighted {
  border-color: #0089ec;
  z-index: 10;
}
.picker__list-item--highlighted:hover,
.picker--focused .picker__list-item--highlighted {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
}
/* Selected and hovered/focused time */
.picker__list-item--selected,
.picker__list-item--selected:hover,
.picker--focused .picker__list-item--selected {
  background: #0089ec;
  color: #ffffff;
  z-index: 10;
}
/* Disabled time */
.picker__list-item--disabled,
.picker__list-item--disabled:hover,
.picker--focused .picker__list-item--disabled {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default;
  border-color: #dddddd;
  z-index: auto;
}
/**
 * The clear button
 */
.picker--time .picker__button--clear {
  display: block;
  width: 80%;
  margin: 1em auto 0;
  padding: 1em 1.25em;
  background: none;
  border: 0;
  font-weight: 500;
  font-size: .67em;
  text-align: center;
  text-transform: uppercase;
  color: #666;
}
.picker--time .picker__button--clear:hover,
.picker--time .picker__button--clear:focus {
  color: #000000;
  background: #b1dcfb;
  background: #ee2200;
  border-color: #ee2200;
  cursor: pointer;
  color: #ffffff;
  outline: none;
}
.picker--time .picker__button--clear:before {
  top: -0.25em;
  color: #666;
  font-size: 1.25em;
  font-weight: bold;
}
.picker--time .picker__button--clear:hover:before,
.picker--time .picker__button--clear:focus:before {
  color: #ffffff;
  border-color: #ffffff;
}

/* ==========================================================================
   $DEFAULT-TIME-PICKER
   ========================================================================== */
/**
 * The frame the bounds the time picker.
 */
.picker--time .picker__frame {
  min-width: 256px;
  max-width: 320px;
}
/**
 * The picker box.
 */
.picker--time .picker__box {
  font-size: 1em;
  background: #f2f2f2;
  padding: 0;
}
@media (min-height: 40.125em) {
  .picker--time .picker__box {
    margin-bottom: 5em;
  }
}

/*
Version: 3.5.2 Timestamp: Sat Nov  1 14:43:36 EDT 2014
*/
.select2-container {
    margin: 0;
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1;
    *display: inline;
    vertical-align: middle;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.
    More Info : http://www.quirksmode.org/css/box.html
  */ /* webkit */ /* firefox */
  box-sizing: border-box; /* css3 */
}

.select2-container .select2-choice {
    display: block;
    height: 26px;
    padding: 0 0 0 8px;
    overflow: hidden;
    position: relative;

    border: 1px solid #aaa;
    white-space: nowrap;
    line-height: 26px;
    color: #444;
    text-decoration: none;

    border-radius: 4px;

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #fff;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
    background-image: -webkit-linear-gradient(bottom, #eee 0%, #fff 50%);
    background-image: linear-gradient(to top, #eee 0%, #fff 50%);
}

html[dir="rtl"] .select2-container .select2-choice {
    padding: 0 8px 0 0;
}

.select2-container.select2-drop-above .select2-choice {
    border-bottom-color: #aaa;

    border-radius: 0 0 4px 4px;

    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
    background-image: -webkit-linear-gradient(top, #eee 0%, #fff 90%);
    background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);
}

.select2-container.select2-allowclear .select2-choice .select2-chosen {
    margin-right: 42px;
}

.select2-container .select2-choice > .select2-chosen {
    margin-right: 26px;
    display: block;
    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
    float: none;
    width: auto;
}

html[dir="rtl"] .select2-container .select2-choice > .select2-chosen {
    margin-left: 26px;
    margin-right: 0;
}

.select2-container .select2-choice abbr {
    display: none;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 24px;
    top: 8px;

    font-size: 1px;
    text-decoration: none;

    border: 0;
    background: url('select2.png') right top no-repeat;
    cursor: pointer;
    outline: 0;
}

.select2-container.select2-allowclear .select2-choice abbr {
    display: inline-block;
}

.select2-container .select2-choice abbr:hover {
    background-position: right -11px;
    cursor: pointer;
}

.select2-drop-mask {
    border: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 9998;
    /* styles required for IE to work */
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-drop {
    width: 100%;
    margin-top: -1px;
    position: absolute;
    z-index: 9999;
    top: 100%;

    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    border-top: 0;

    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}

.select2-drop.select2-drop-above {
    margin-top: 1px;
    border-top: 1px solid #aaa;
    border-bottom: 0;

    border-radius: 4px 4px 0 0;
    box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
}

.select2-drop-active {
    border: 1px solid #5897fb;
    border-top: none;
}

.select2-drop.select2-drop-above.select2-drop-active {
    border-top: 1px solid #5897fb;
}

.select2-drop-auto-width {
    border-top: 1px solid #aaa;
    width: auto;
}

.select2-drop-auto-width .select2-search {
    padding-top: 4px;
}

.select2-container .select2-choice .select2-arrow {
    display: inline-block;
    width: 18px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;

    border-left: 1px solid #aaa;
    border-radius: 0 4px 4px 0;

    background-clip: padding-box;

    background: #ccc;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
    background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
    background-image: -webkit-linear-gradient(bottom, #ccc 0%, #eee 60%);
    background-image: linear-gradient(to top, #ccc 0%, #eee 60%);
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow {
    left: 0;
    right: auto;

    border-left: none;
    border-right: 1px solid #aaa;
    border-radius: 4px 0 0 4px;
}

.select2-container .select2-choice .select2-arrow b {
    display: block;
    width: 100%;
    height: 100%;
    background: url('select2.png') no-repeat 0 1px;
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow b {
    background-position: 2px 1px;
}

.select2-search {
    display: inline-block;
    width: 100%;
    min-height: 26px;
    margin: 0;
    padding-left: 4px;
    padding-right: 4px;

    position: relative;
    z-index: 10000;

    white-space: nowrap;
}

.select2-search input {
    width: 100%;
    height: auto !important;
    min-height: 26px;
    padding: 4px 20px 4px 5px;
    margin: 0;

    outline: 0;
    font-family: sans-serif;
    font-size: 1em;

    border: 1px solid #aaa;
    border-radius: 0;
    box-shadow: none;

    background: #fff url('select2.png') no-repeat 100% -22px;
    background: url('select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select2.png') no-repeat 100% -22px, -webkit-linear-gradient(top, #fff 85%, #eee 99%) 0 0;
    background: url('select2.png') no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

html[dir="rtl"] .select2-search input {
    padding: 4px 5px 4px 20px;

    background: #fff url('select2.png') no-repeat -37px -22px;
    background: url('select2.png') no-repeat -37px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('select2.png') no-repeat -37px -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select2.png') no-repeat -37px -22px, -webkit-linear-gradient(top, #fff 85%, #eee 99%) 0 0;
    background: url('select2.png') no-repeat -37px -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-drop.select2-drop-above .select2-search input {
    margin-top: 4px;
}

.select2-search input.select2-active {
    background: #fff url('select2-spinner.gif') no-repeat 100%;
    background: url('select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(top, #fff 85%, #eee 99%) 0 0;
    background: url('select2-spinner.gif') no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.select2-dropdown-open .select2-choice {
    border-bottom-color: transparent;
    box-shadow: 0 1px 0 #fff inset;

    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    background-color: #eee;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: -webkit-linear-gradient(bottom, #fff 0%, #eee 50%);
    background-image: linear-gradient(to top, #fff 0%, #eee 50%);
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid #5897fb;
    border-top-color: transparent;

    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
    background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
}

.select2-dropdown-open .select2-choice .select2-arrow {
    background: transparent;
    border-left: none;
    -webkit-filter: none;
            filter: none;
}
html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
    border-right: none;
}

.select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -18px 1px;
}

html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -16px 1px;
}

.select2-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* results */
.select2-results {
    max-height: 200px;
    padding: 0 0 0 4px;
    margin: 4px 4px 4px 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html[dir="rtl"] .select2-results {
    padding: 0 4px 0 0;
    margin: 4px 0 4px 4px;
}

.select2-results ul.select2-result-sub {
    margin: 0;
    padding-left: 0;
}

.select2-results li {
    list-style: none;
    display: list-item;
    background-image: none;
}

.select2-results li.select2-result-with-children > .select2-result-label {
    font-weight: bold;
}

.select2-results .select2-result-label {
    padding: 3px 7px 4px;
    margin: 0;
    cursor: pointer;

    min-height: 1em;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
}

.select2-results-dept-1 .select2-result-label { padding-left: 20px }
.select2-results-dept-2 .select2-result-label { padding-left: 40px }
.select2-results-dept-3 .select2-result-label { padding-left: 60px }
.select2-results-dept-4 .select2-result-label { padding-left: 80px }
.select2-results-dept-5 .select2-result-label { padding-left: 100px }
.select2-results-dept-6 .select2-result-label { padding-left: 110px }
.select2-results-dept-7 .select2-result-label { padding-left: 120px }

.select2-results .select2-highlighted {
    background: #3875d7;
    color: #fff;
}

.select2-results li em {
    background: #feffde;
    font-style: normal;
}

.select2-results .select2-highlighted em {
    background: transparent;
}

.select2-results .select2-highlighted ul {
    background: #fff;
    color: #000;
}

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-ajax-error,
.select2-results .select2-selection-limit {
    background: #f4f4f4;
    display: list-item;
    padding-left: 5px;
}

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
    color: #666;
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}
.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

.select2-results .select2-selected {
    display: none;
}

.select2-more-results.select2-active {
    background: #f4f4f4 url('select2-spinner.gif') no-repeat 100%;
}

.select2-results .select2-ajax-error {
    background: rgba(255, 50, 50, .2);
}

.select2-more-results {
    background: #f4f4f4;
    display: list-item;
}

/* disabled styles */

.select2-container.select2-container-disabled .select2-choice {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
    background-color: #f4f4f4;
    background-image: none;
    border-left: 0;
}

.select2-container.select2-container-disabled .select2-choice abbr {
    display: none;
}


/* multiselect */

.select2-container-multi .select2-choices {
    height: auto !important;
    height: 1%;
    margin: 0;
    padding: 0 5px 0 0;
    position: relative;

    border: 1px solid #aaa;
    cursor: text;
    overflow: hidden;

    background-color: #fff;
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
    background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);
}

html[dir="rtl"] .select2-container-multi .select2-choices {
    padding: 0 0 0 5px;
}

.select2-locked {
  padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
    min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.select2-container-multi .select2-choices li {
    float: left;
    list-style: none;
}
html[dir="rtl"] .select2-container-multi .select2-choices li
{
    float: right;
}
.select2-container-multi .select2-choices .select2-search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.select2-container-multi .select2-choices .select2-search-field input {
    padding: 5px;
    margin: 1px 0;

    font-family: sans-serif;
    font-size: 100%;
    color: #666;
    outline: 0;
    border: 0;
    box-shadow: none;
    background: transparent !important;
}

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
    background: #fff url('select2-spinner.gif') no-repeat 100% !important;
}

.select2-default {
    color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 18px;
    margin: 3px 0 3px 5px;
    position: relative;

    line-height: 13px;
    color: #333;
    cursor: default;
    border: 1px solid #aaaaaa;

    border-radius: 3px;
    box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #e4e4e4;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
    background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(to bottom, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}
html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice
{
    margin: 3px 5px 3px 0;
    padding: 3px 18px 3px 5px;
}
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
    cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
    background: #d4d4d4;
}

.select2-search-choice-close {
    display: block;
    width: 12px;
    height: 13px;
    position: absolute;
    right: 3px;
    top: 4px;

    font-size: 1px;
    outline: none;
    background: url('select2.png') right top no-repeat;
}
html[dir="rtl"] .select2-search-choice-close {
    right: auto;
    left: 3px;
}

.select2-container-multi .select2-search-choice-close {
    left: 3px;
}

html[dir="rtl"] .select2-container-multi .select2-search-choice-close {
    left: auto;
    right: 2px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
    background-position: right -11px;
}

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 5px;
    border: 1px solid #ddd;
    background-image: none;
    background-color: #f4f4f4;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {    display: none;
    background: none;
}
/* end multiselect */


.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
    text-decoration: underline;
}

.select2-offscreen, .select2-offscreen:focus {
    clip: rect(0 0 0 0) !important;
    width: 1px !important;
    height: 1px !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    outline: 0 !important;
    left: 0px !important;
    top: 0px !important;
}

.select2-display-none {
    display: none;
}

.select2-measure-scrollbar {
    position: absolute;
    top: -10000px;
    left: -10000px;
    width: 100px;
    height: 100px;
    overflow: scroll;
}

/* Retina-ize icons */

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 2dppx)  {
    .select2-search input,
    .select2-search-choice-close,
    .select2-container .select2-choice abbr,
    .select2-container .select2-choice .select2-arrow b {
        background-image: url('select2x2.png') !important;
        background-repeat: no-repeat !important;
        background-size: 60px 40px !important;
    }

    .select2-search input {
        background-position: 100% -21px !important;
    }
}

.liquid-container {
    position: relative;
    overflow: hidden;

    /* without this, overflow:hidden won't take effect because the things
       we're trying to hide are on a separate accelerated
       context. Also, this prevents a tiny vertical jump when the
       content switches to accelerated.  */
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.liquid-child {
    overflow: hidden; /* Prevent margin collapse */
}

.lm-container {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.lf-dialog {
    position: relative;
    background: white;
    padding: 1.5em;
    border: 1px solid black;
    margin-left: auto;
    margin-right: auto;
    max-width: 20em;
}

.lf-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: black;
    opacity: 0.5;
    z-index: 1;
}

.lf-modal-open {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
@-webkit-keyframes growFadeIn{0%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes growFadeIn{0%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.chronos-headerView{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;z-index:2;padding:0 0 18px}.chronos-headerView-button{-webkit-transition:all 250ms ease;transition:all 250ms ease;display:block;height:32px;padding:0 18px;margin:0;border:1px solid #dbdbdb;background:#fafafb;font-size:12px;font-weight:700;color:#7d8695;text-transform:uppercase;cursor:pointer;outline:0}.chronos-headerView-button:focus,.chronos-headerView-button:hover{background-color:#e3e5ea}.chronos-headerView-button.chronos-headerView-button--active{border-color:#ea3939;background:#ea3939;color:#fff}.chronos-headerView-button+.chronos-headerView-button{border-left-width:0}.chronos-headerView-button--icon{font-size:0}.chronos-headerView-button.chronos-headerView-button--agenda,.chronos-headerView-button.chronos-headerView-button--tags{padding:0 25px;margin-left:5px;border-left-width:1px;background-position:center;background-repeat:no-repeat}.chronos-headerView-button.chronos-headerView-button--agenda{background-image:url("icon-list.svg")}.chronos-headerView-button.chronos-headerView-button--agenda.chronos-headerView-button--active{background-image:url("icon-list-active.svg")}.chronos-headerView-button.chronos-headerView-button--tags{background-image:url("icon-tag.svg");background-size:16px}.chronos-headerView-button.chronos-headerView-button--tags.chronos-headerView-button--active{background-image:url("icon-tag-active.svg")}.chronos-headerView-tagsCollapsibleMenu{-webkit-animation:growFadeIn 200ms ease;animation:growFadeIn 200ms ease;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-transform-origin:100% 0;transform-origin:100% 0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;display:none;opacity:0;position:absolute;z-index:1;top:0;right:0;padding:7px 10px;background:#fff;box-shadow:0 2px 5px 0 rgba(23,29,39,0.16),0 2px 10px 0 rgba(23,29,39,0.12)}.chronos-headerView-tagsCollapsibleMenu.chronos-headerView-tagsCollapsibleMenu--visible{display:-webkit-box;display:-ms-flexbox;display:flex}.chronos-headerView-tagsList{min-width:120px;padding:0;margin:0;list-style:none}.chronos-headerView-tag{padding:0 0 6px;font-size:14px;font-weight:700;color:#7d8695;line-height:14px}.chronos-headerView-tag:before{content:'•';position:relative;top:6px;margin-right:5px;font-size:36px;color:#939394}.chronos-headerView-arrowButtons{display:-webkit-box;display:-ms-flexbox;display:flex}.chronos-headerView-button--leftArrow,.chronos-headerView-button--rightArrow{border:0}.chronos-headerView-button--rightArrow+.chronos-headerView-button{border-left-width:1px}.chronos-headerView-button--leftArrow{background:url("icon-arrow-left.svg") 45% center no-repeat}.chronos-headerView-button--rightArrow{background:url("icon-arrow-right.svg") 55% center no-repeat}.chronos-headerView-title{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;padding:0 15px;font-size:14px;font-weight:700;color:#171d27;text-align:center;text-transform:uppercase}.chronos-headerView-collapsibleMenu{display:-webkit-box;display:-ms-flexbox;display:flex}.chronos-headerView-collapsibleMenu+.chronos-headerView-button{display:none;background-image:url("icon-overflow.svg");background-position:center;background-repeat:no-repeat}.chronos.maxWidth--767 .chronos-headerView-collapsibleMenu{-webkit-animation:growFadeIn 200ms ease;animation:growFadeIn 200ms ease;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;display:none;opacity:0;position:absolute;z-index:1;top:0;left:0;background:#fff;box-shadow:0 2px 5px 0 rgba(23,29,39,0.16),0 2px 10px 0 rgba(23,29,39,0.12)}.chronos.maxWidth--767 .chronos-headerView-collapsibleMenu.chronos-headerView-collapsibleMenu--visible{display:-webkit-box;display:-ms-flexbox;display:flex}.chronos.maxWidth--767 .chronos-headerView-collapsibleMenu .chronos-headerView-button{width:100%;min-width:120px;height:auto;padding:10px 15px;font-size:14px;text-align:left}.chronos.maxWidth--767 .chronos-headerView-collapsibleMenu .chronos-headerView-button+.chronos-headerView-button{border-top-width:0}.chronos.maxWidth--767 .chronos-headerView-collapsibleMenu .chronos-headerView-button--agenda{margin-left:0;border-left-width:0;background-image:none}.chronos.maxWidth--767 .chronos-headerView-collapsibleMenu+.chronos-headerView-button{display:block}.chronos.maxWidth--600 .chronos-headerView-button[data-view-type="week"]{display:none}.chronos.maxWidth--450 .chronos-headerView{padding-bottom:10px}.chronos.maxWidth--450 .chronos-headerView-arrowButtons{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:100%;margin-top:10px;background:#fafafb}.chronos-events{width:100%;border:solid #e3e5ea;border-width:0 1px 1px}.chronos-yearView{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:distribute;justify-content:space-around;border-top:1px solid #e3e5ea}.chronos-yearView .chronos-monthView-weekday{font-size:13px}.chronos-yearView .chronos-monthView-weekday:after{content:attr(data-abbreviation)}.chronos-yearView .chronos-monthView-weekdayName{display:none}.chronos-yearMonthView{min-width:280px;padding:12px}.chronos-yearMonthView-monthName{margin:10px 5px;font-size:16px;color:#ea3939}.chronos-yearMonthView-weekdays{display:-webkit-box;display:-ms-flexbox;display:flex;list-style:none;padding:0;margin:0}.chronos-yearMonthView-week{display:-webkit-box;display:-ms-flexbox;display:flex;list-style:none;padding:0;margin:0}.chronos-yearMonthView-day{padding:4px 0;font-size:13px;text-align:center}.chronos-yearMonthView-paddingDay{color:#dbdbdb}.chronos-yearMonthView--today .chronos-yearMonthView-date{position:relative}.chronos-yearMonthView--today .chronos-yearMonthView-date:before{content:'';position:absolute;top:-5px;left:-7px;width:26px;height:26px;border-radius:50%;background:#ea3939}.chronos-yearMonthView--today .chronos-yearMonthView-dateLabel{position:relative;z-index:1;font-weight:700;color:#fff}.chronos-monthView{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.chronos-monthView-weekdays{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;list-style:none;padding:0;margin:0;background:#fafafb;border:1px solid #e3e5ea;border-width:1px 0}.chronos-monthView-weekday{position:relative;padding:10px 0;font-size:14px;font-weight:700;color:#939394;text-align:center}.chronos-monthView-weeks{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.chronos-monthView-week{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 130px;flex:1 1 130px;list-style:none;padding:0;margin:0;border-top:1px solid #e3e5ea}.chronos-monthView-week:first-child{border-top:0}.chronos-monthView-day{position:relative;border-left:1px solid #e3e5ea;background:#fff;font-size:12px;font-weight:700;color:#939394}.chronos-monthView-day:first-child{border-left:0}.chronos-monthView-day[data-event-count]:after{content:attr(data-event-count);display:none;position:relative;z-index:2;min-width:7px;padding:2px 6px;border-radius:10px;background:#939394;font-size:12px;color:#fff;text-align:center}.chronos-monthView-paddingDay{background:#f5f5f5}.chronos-monthView-date{display:block;position:absolute;z-index:1;top:0;right:0;bottom:0;left:0;padding:7px 0}.chronos-monthView-dateLabel{padding:0 10px}.chronos-monthView--today:before{content:'';position:absolute;z-index:0;top:0;right:0;bottom:0;left:0;padding:6px 0;border:1px solid #a9acaf;background:#fafafb;color:#171d27}.chronos-monthView-events{position:relative;padding-top:3px}.chronos-monthView-event{display:-webkit-box;display:-ms-flexbox;display:flex;height:19px;padding:2px 7px 3px;margin-bottom:2px;font-size:12px;color:#3e506e;cursor:pointer;line-height:1.2}.chronos-monthView-event:hover,.chronos-monthView-event:focus{color:#171d27}.chronos-monthView-event--empty{cursor:default}.chronos-monthView-event--multiple{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;position:relative;left:-1px;width:calc(100% + 2px);height:19px;padding:2px 5px 3px;background:#dbdbdb}.chronos-monthView-event--multiple .chronos-monthView-eventTitle,.chronos-monthView-event--multiple .chronos-monthView-eventTitle:before,.chronos-monthView-event--multiple .chronos-monthView-eventTime{display:none}.chronos-monthView-day:first-child .chronos-monthView-event--multiple .chronos-monthView-eventTitle{padding-left:5px}.chronos-monthView-day:first-child .chronos-monthView-event--multiple .chronos-monthView-eventTitle{display:-webkit-box;display:-ms-flexbox;display:flex}.chronos-monthView--today .chronos-monthView-event--multiple:not(.chronos-monthView-event--multipleStart){left:-2px;width:calc(100% + 3px)}.chronos-monthView-event--multipleStart{left:8px;width:calc(100% - 7px);padding-left:11px;border-left:3px solid #939394}.chronos-monthView-event--multipleStart .chronos-monthView-eventTitle,.chronos-monthView-event--multipleStart .chronos-monthView-eventTime{display:block}.chronos-monthView--today .chronos-monthView-event{color:#171d27}.chronos-monthView-eventTitle{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;overflow:hidden;width:100%;font-weight:700;white-space:nowrap;text-overflow:ellipsis}.chronos-monthView-eventTitle:before{content:'•';position:absolute;top:0;left:0;margin-right:7px;font-size:36px;color:#939394;line-height:11px}.chronos-monthView-eventTitleContainer{display:block;position:relative;padding-left:20px;overflow:hidden;width:100%;text-overflow:ellipsis}.chronos-monthView-eventTime{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;font-weight:400}.chronos-monthView-event--multipleStart .chronos-monthView-eventTime{padding-right:3px}.chronos-monthView-eventEndTime{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;padding-right:5px;font-weight:400;text-align:right}.chronos-monthView-moreEvent{display:none;position:absolute;right:0;bottom:0;left:0;padding:2px 7px 5px;font-size:11px;font-style:italic;color:#7083a3}.chronos-monthView-moreEvent:active,.chronos-monthView-moreEvent:hover{color:#3e506e;cursor:pointer}.chronos-moreEvents{-webkit-animation:growFadeIn 200ms ease;animation:growFadeIn 200ms ease;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;opacity:0;-webkit-transform-origin:0 100%;transform-origin:0 100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;position:absolute;overflow-y:scroll;overflow-x:hidden;z-index:2;top:-20px;left:-20px;height:calc(100% + 40px);width:calc(100% + 40px);border:1px solid #a9acaf;background:#fafafb;box-shadow:0 1px 5px rgba(23,29,39,0.3);color:#171d27;font-size:12px}.chronos-moreEvents-title{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;background:#f2f3f5;border-bottom:1px solid #e3e5ea;color:#171d27}.chronos-moreEvents-events{overflow-y:auto}.chronos-moreEvents-date{padding:5px 5px 5px 10px;font-size:11px}.chronos-moreEvents-close{display:block;-ms-flex-negative:0;flex-shrink:0;padding:5px 10px;font-size:14px;cursor:pointer}.chronos-moreEvents-close:active,.chronos-moreEvents-close:hover{color:#7d8695}.chronos-moreEvents-event{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:5px 7px 5px;margin:2px 0;font-size:12px;color:#3e506e}.chronos-moreEvents-event:active,.chronos-moreEvents-event:hover{cursor:pointer;background:#f5f5f5;color:#171d27}.chronos-moreEvents-event:before{content:'•';position:relative;top:0;margin-right:8px;font-size:36px;color:#939394;line-height:12px}.chronos-moreEvents-event-eventTitle{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;position:relative;overflow:hidden;display:block;width:100%;font-weight:700;white-space:nowrap;text-overflow:ellipsis}.chronos-moreEvents-event-eventTime{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-left:5px;font-weight:400}.chronos.maxWidth--1000 .chronos-monthView-week{-ms-flex-preferred-size:100px;flex-basis:100px}.chronos.maxWidth--1000 .chronos-monthView-eventTime,.chronos.maxWidth--1000 .chronos-monthView-event--multipleStart .chronos-monthView-eventTime{display:none}.chronos.maxWidth--700 .chronos-monthView-weekday:after{content:attr(data-abbreviation);display:block}.chronos.maxWidth--700 .chronos-monthView-weekdayName{display:none}.chronos.maxWidth--700 .chronos-monthView-week{-ms-flex-preferred-size:85px;flex-basis:85px}.chronos.maxWidth--700 .chronos-moreEvents{top:-35px;left:-35px;height:calc(100% + 70px);width:calc(100% + 70px)}.chronos.maxWidth--550 .chronos-monthView-week{-ms-flex-preferred-size:70px;flex-basis:70px}.chronos.maxWidth--550 .chronos-moreEvents{display:none}.chronos.maxWidth--550 .chronos-monthView-moreEvent{display:none !important}.chronos.maxWidth--550 .chronos-monthView-day{font-size:11px}.chronos.maxWidth--550 .chronos-monthView-day[data-event-count]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.chronos.maxWidth--550 .chronos-monthView-day[data-event-count]:after{display:inline-block}.chronos.maxWidth--550 .chronos-monthView-events{display:none}.chronos.maxWidth--450 .chronos-monthView-week{-ms-flex-preferred-size:50px;flex-basis:50px}.chronos.maxWidth--450 .chronos-monthView-day[data-event-count]{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;padding-bottom:5px}.chronos-weekView{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.chronos-weekView-headerDays{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;position:relative;list-style:none;padding:0;margin:0;border-top:1px solid #e3e5ea}.chronos-weekView-headerDay{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;position:relative;width:14.2857%;padding:10px 0;border:1px solid #e3e5ea;border-width:0 1px 1px 0;background:#fafafb;color:#939394;font-size:14px;font-weight:700;text-align:center}.chronos-weekView-headerDay:last-of-type{border-right:0}.chronos-weekView-headerDay.chronos-weekView-headerDay--active{color:#ea3939;border-bottom-color:#f8baba}.chronos-weekView-headerHours{position:relative;width:100px;padding:20px 0;border-right:1px solid #e3e5ea}.chronos-weekView-days{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;list-style:none;position:relative;padding:0;margin:0}.chronos-weekView-day{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;width:14.2857%;border-right:1px solid #e3e5ea}.chronos-weekView-day:last-of-type{border-right:0}.chronos-weekView-day.chronos-weekView-day--active{background:#fde8e8}.chronos-weekView-day.chronos-weekView-day--active .chronos-weekView-hourGrid-item{border-bottom-color:#f9c3c3}.chronos-weekView-event{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;position:absolute;width:100%;min-height:20px;overflow:hidden;background:#f2f3f5;border-left:3px solid #e3e5ea;color:#3e506e;font-size:13px;font-weight:400;z-index:1}.chronos-weekView-event:hover,.chronos-weekView-event:focus{z-index:2;cursor:pointer;border-left:3px solid #a9acaf;background:#f5f5f5;color:#171d27}.chronos-weekView-day--active .chronos-weekView-event{background:#f49595;color:#941010}.chronos-weekView-day--active .chronos-weekView-event:hover,.chronos-weekView-day--active .chronos-weekView-event:focus{background:#f59e9e}.chronos-weekView-infos{padding:4px 5px 5px}.chronos-weekView-eventIcon{margin:10px 5px;width:25px;height:15px}.chronos-weekView-eventTime{display:block;font-size:11px;font-weight:700}.chronos-weekView-eventTitle{display:block;position:relative;overflow:hidden;font-size:12px;line-height:1.3;text-overflow:ellipsis}.chronos-weekView-event[data-slot-span="1"] .chronos-weekView-eventTime{display:none}.chronos-weekView-event[data-slot-span="1"] .chronos-weekView-eventTitle{padding-top:2px;font-size:11px;white-space:nowrap}.chronos-weekView-event[data-slot-span="1"] .chronos-weekView-infos{padding:0 5px}.chronos-weekView-hours{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100px}.chronos-weekView-hour{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 40px;flex:1 1 40px;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-right:1px solid #e3e5ea;color:#a9acaf}.chronos-dayView-day .chronos-weekView-hour{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.chronos-weekView-hourGrid{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.chronos-weekView-hourGrid-item{display:block;-webkit-box-flex:1;-ms-flex:1 1 40px;flex:1 1 40px;border-bottom:1px solid #e3e5ea}.chronos-weekView-hourGrid-item:hover{background:#fafafb}.chronos-weekView-hourGrid-item:last-of-type{border-bottom:0}.chronos-weekView-day--active .chronos-weekView-hourGrid-item:hover{background:#fcdfdf}.chronos.maxWidth--767 .chronos-weekView-headerDay{font-size:13px}.chronos.maxWidth--767 .chronos-weekView-headerHours{width:80px}.chronos.maxWidth--767 .chronos-weekView-hours{width:80px}.chronos.maxWidth--767 .chronos-weekView-hour{font-size:13px}.chronos-dayView-day{border-top:1px solid #e3e5ea}.chronos-agendaView{list-style:none}.chronos-agendaView-empty{padding:60px 0;border-top:1px solid #e3e5ea;color:#a9acaf;font-style:italic;text-align:center}.chronos-agendaView-header{width:100%;display:block;padding:9px 14px;background:#f2f3f5;font-size:13px;text-transform:uppercase}.chronos-agendaView-header.chronos-agendaView-header--today{color:#ea3939}.chronos-agendaView-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:15px 10px;text-decoration:none}.chronos-agendaView-item:focus,.chronos-agendaView-item:hover{background:#fafafb}.chronos-agendaView-item:focus .chronos-agendaView-item-time,.chronos-agendaView-item:hover .chronos-agendaView-item-time{color:#ea3939}.chronos-agendaView-item-time{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-negative:0;flex-shrink:0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:85px;margin:0 10px;font-size:13px;text-align:right}.chronos-agendaView-item-time-day{display:block;color:#a9acaf;font-size:11px}.chronos-agendaView-item-time-duration{color:#a9acaf}.chronos-agendaView-item-icon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-negative:0;flex-shrink:0;width:65px;margin:0 5px;padding:0 10px}.chronos-agendaView-item-icon-image{width:30px;height:30px}.chronos-agendaView-item-infos{font-size:17px}.chronos-agendaView-item-infos.chronos-agendaView-item-infos--imageLess{margin-left:15px}.chronos.maxWidth--450 .chronos-agendaView{border-top:1px solid #e3e5ea}.chronos.maxWidth--450 .chronos-agendaView-header,.chronos.maxWidth--450 .chronos-agendaView-item{margin:0}.chronos.maxWidth--450 .chronos-agendaView-item-icon{width:40px}.chronos.maxWidth--450 .chronos-agendaView-item-time{width:60px}.chronos.maxWidth--450 .chronos-agendaView-item-infos{font-size:14px}.chronos,.chronos *{box-sizing:border-box;-webkit-font-smoothing:antialiased}.chronos{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;min-width:280px;padding:18px;background:#fff;font-family:"Montserrat"}.chronos.maxWidth--450{padding:10px}

