.picker,
.picker__holder {
  width: 100%;
  position: absolute;
}
.picker {
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: #000;
  z-index: 10000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: 0;
}
.picker__input {
  cursor: default;
}
.picker__input.picker__input--active {
  border-color: #0089ec;
}
.picker__holder {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border: 1px solid #aaa;
  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;
  transform: translateY(-1em) perspective(600px) rotateX(10deg);
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s;
}
/*!
 * Classic picker styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
.picker__frame {
  padding: 1px;
}
.picker__wrap {
  margin: -1px;
}
.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;
  transform: translateY(0) perspective(600px) rotateX(0);
  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.12);
}
.picker__footer,
.picker__header,
.picker__table {
  text-align: center;
}
.picker__box {
  padding: 0 1em;
}
.picker__header {
  position: relative;
  margin-top: 0.75em;
}
.picker__month,
.picker__year {
  font-weight: 500;
  display: inline-block;
  margin-left: 0.25em;
  margin-right: 0.25em;
}
.picker__year {
  color: #999;
  font-size: 0.8em;
  font-style: italic;
}
.picker__select--month,
.picker__select--year {
  border: 1px solid #b7b7b7;
  height: 2em;
  padding: 0.5em;
  margin-left: 0.25em;
  margin-right: 0.25em;
}
.picker__select--month {
  width: 35%;
}
.picker__select--year {
  width: 22.5%;
}
.picker__select--month:focus,
.picker__select--year:focus {
  border-color: #0089ec;
}
.picker__nav--next,
.picker__nav--prev {
  position: absolute;
  padding: 0.5em 1.25em;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  top: -0.25em;
}
.picker__nav--prev {
  left: -1em;
  padding-right: 1.25em;
}
.picker__nav--next {
  right: -1em;
  padding-left: 1.25em;
}
@media (min-width: 24.5em) {
  .picker__select--month,
  .picker__select--year {
    margin-top: -0.5em;
  }
  .picker__nav--next,
  .picker__nav--prev {
    top: -0.33em;
  }
  .picker__nav--prev {
    padding-right: 1.5em;
  }
  .picker__nav--next {
    padding-left: 1.5em;
  }
}
.picker__nav--next:before,
.picker__nav--prev:before {
  content: " ";
  border-top: 0.5em solid transparent;
  border-bottom: 0.5em solid transparent;
  border-right: 0.75em solid #000;
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto;
}
.picker__nav--next:before {
  border-right: 0;
  border-left: 0.75em solid #000;
}
.picker__nav--next:hover,
.picker__nav--prev:hover {
  cursor: pointer;
  color: #000;
  background: #b1dcfb;
}
.picker__nav--disabled,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover,
.picker__nav--disabled:hover {
  cursor: default;
  background: 0 0;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5;
}
.picker__table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: inherit;
  width: 100%;
  margin-top: 0.75em;
  margin-bottom: 0.5em;
}
@media (min-height: 33.875em) {
  .picker__table {
    margin-bottom: 0.75em;
  }
}
.picker__table td {
  margin: 0;
  padding: 0;
}
.picker__weekday {
  width: 14.28571429%;
  font-size: 0.75em;
  padding-bottom: 0.25em;
  color: #999;
  font-weight: 500;
}
@media (min-height: 33.875em) {
  .picker__weekday {
    padding-bottom: 0.5em;
  }
}
.picker__day {
  padding: 0.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: 0.5em solid transparent;
}
.picker__day--disabled:before {
  border-top-color: #aaa;
}
.picker__day--outfocus {
  color: #ddd;
}
.picker--focused .picker__day--highlighted,
.picker__day--highlighted:hover,
.picker__day--infocus:hover,
.picker__day--outfocus:hover {
  cursor: pointer;
  color: #000;
  background: #b1dcfb;
}
.picker__day--highlighted {
  border-color: #0089ec;
}
.picker--focused .picker__day--selected,
.picker__day--selected,
.picker__day--selected:hover {
  background: #0089ec;
  color: #fff;
}
.picker--focused .picker__day--disabled,
.picker__day--disabled,
.picker__day--disabled:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #ddd;
  cursor: default;
}
.picker__day--highlighted.picker__day--disabled,
.picker__day--highlighted.picker__day--disabled:hover {
  background: #bbb;
}
.picker__button--clear,
.picker__button--close,
.picker__button--today {
  border: 1px solid #fff;
  background: #fff;
  font-size: 0.8em;
  padding: 0.66em 0;
  font-weight: 700;
  width: 33%;
  display: inline-block;
  vertical-align: bottom;
}
.picker__button--clear:hover,
.picker__button--close:hover,
.picker__button--today:hover {
  cursor: pointer;
  color: #000;
  background: #b1dcfb;
  border-bottom-color: #b1dcfb;
}
.picker__button--clear:focus,
.picker__button--close:focus,
.picker__button--today:focus {
  background: #b1dcfb;
  border-color: #0089ec;
  outline: 0;
}
.picker__button--clear:before,
.picker__button--close:before,
.picker__button--today:before {
  position: relative;
  display: inline-block;
  height: 0;
}
.picker__button--clear:before,
.picker__button--today:before {
  content: " ";
  margin-right: 0.45em;
}
.picker__button--today:before {
  top: -0.05em;
  width: 0;
  border-top: 0.66em solid #0059bc;
  border-left: 0.66em solid transparent;
}
.picker__button--clear:before {
  top: -0.25em;
  width: 0.66em;
  border-top: 3px solid #e20;
}
.picker__button--close:before {
  content: "\D7";
  top: -0.1em;
  vertical-align: top;
  font-size: 1.1em;
  margin-right: 0.35em;
  color: #777;
}
.picker__button--today[disabled],
.picker__button--today[disabled]:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #ddd;
  cursor: default;
}
.picker__button--today[disabled]:before {
  border-top-color: #aaa;
}
.picker__list {
  list-style: none;
  padding: 0.75em 0 4.2em;
  margin: 0;
}
.picker__list-item {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  margin-bottom: -1px;
  position: relative;
  background: #fff;
  padding: 0.75em 1.25em;
}
.picker__list-item--highlighted,
.picker__list-item:hover {
  border-color: #0089ec;
  z-index: 10;
}
.picker--focused .picker__list-item--highlighted,
.picker__list-item--highlighted:hover,
.picker__list-item:hover {
  cursor: pointer;
  color: #000;
  background: #b1dcfb;
}
@media (min-height: 46.75em) {
  .picker__list-item {
    padding: 0.5em 1em;
  }
}
.picker--focused .picker__list-item--selected,
.picker__list-item--selected,
.picker__list-item--selected:hover {
  background: #0089ec;
  color: #fff;
  z-index: 10;
}
.picker--focused .picker__list-item--disabled,
.picker__list-item--disabled,
.picker__list-item--disabled:hover {
  background: #f5f5f5;
  color: #ddd;
  cursor: default;
  border-color: #ddd;
  z-index: auto;
}
.picker--time .picker__button--clear {
  display: block;
  width: 80%;
  margin: 1em auto 0;
  padding: 1em 1.25em;
  background: 0 0;
  border: 0;
  font-weight: 500;
  font-size: 0.67em;
  text-align: center;
  text-transform: uppercase;
  color: #666;
}
.picker--time .picker__button--clear:focus,
.picker--time .picker__button--clear:hover {
  background: #e20;
  border-color: #e20;
  cursor: pointer;
  color: #fff;
  outline: 0;
}
.picker--time .picker__button--clear:before {
  top: -0.25em;
  color: #666;
  font-size: 1.25em;
  font-weight: 700;
}
.picker--time .picker__button--clear:focus:before,
.picker--time .picker__button--clear:hover:before {
  color: #fff;
  border-color: #fff;
}
.picker--time {
  min-width: 256px;
  max-width: 320px;
}
.picker--time .picker__holder {
  background: #f2f2f2;
}
@media (min-height: 40.125em) {
  .picker--time .picker__holder {
    font-size: 0.875em;
  }
}
.picker--time .picker__box {
  padding: 0;
  position: relative;
}
/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%,
  70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@-moz-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%,
  70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%,
  70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-moz-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.dropzone,
.dropzone * {
  box-sizing: border-box;
}
.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px 20px;
}
.dropzone.dz-clickable {
  cursor: pointer;
}
.dropzone.dz-clickable * {
  cursor: default;
}
.dropzone.dz-clickable .dz-message,
.dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}
.dropzone.dz-started .dz-message {
  display: none;
}
.dropzone.dz-drag-hover {
  border-style: solid;
}
.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}
.dropzone .dz-message {
  text-align: center;
  margin: 2em 0;
}
.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}
.dropzone .dz-preview:hover {
  z-index: 1000;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd);
}
.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-image-preview {
  background: white;
}
.dropzone .dz-preview.dz-image-preview .dz-details {
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -ms-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}
.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}
.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}
.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}
.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}
.dropzone .dz-preview .dz-details .dz-filename span,
.dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}
.dropzone .dz-preview:hover .dz-image img {
  -webkit-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  -webkit-filter: blur(8px);
  filter: blur(8px);
}
.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}
.dropzone .dz-preview .dz-image img {
  display: block;
}
.dropzone .dz-preview.dz-success .dz-success-mark {
  -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview .dz-success-mark,
.dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}
.dropzone .dz-preview .dz-success-mark svg,
.dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}
.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in;
  -moz-transition: opacity 0.4s ease-in;
  -ms-transition: opacity 0.4s ease-in;
  -o-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in;
}
.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  -webkit-animation: pulse 6s ease infinite;
  -moz-animation: pulse 6s ease infinite;
  -ms-animation: pulse 6s ease infinite;
  -o-animation: pulse 6s ease infinite;
  animation: pulse 6s ease infinite;
}
.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}
.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 300ms ease-in-out;
  -moz-transition: width 300ms ease-in-out;
  -ms-transition: width 300ms ease-in-out;
  -o-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
}
.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}
.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}
.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white;
}
.dropzone .dz-preview .dz-error-message:after {
  content: '';
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}
/**
 * wenk - Lightweight tooltip for the greater good
 * @version v1.0.6
 * (c) 2018 Tiaan du Plessis @tiaanduplessis |
 * @link https://tiaanduplessis.github.io/wenk/
 * @license MIT
 */
[data-wenk] {
  position: relative;
  /* ===[Tooltip Down]=== */
  /* ===[Tooltip Left]=== */
  /* ===[Tooltip Right]=== */
  /* ===[Length of tooltip]=== */
  /* ===[Alignment of tooltip]=== */
}
[data-wenk]:after {
  position: absolute;
  font-size: 13px;
  border-radius: 0.4rem;
  content: attr(data-wenk);
  padding: 0.4rem 0.8rem;
  background-color: rgba(17, 17, 17, 0.8);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
  color: #fff;
  line-height: 1.25rem;
  text-align: left;
  z-index: 1;
  pointer-events: none;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  white-space: pre;
  width: auto;
  z-index: 2;
}
[data-wenk]:after {
  opacity: 0;
}
[data-wenk]:hover {
  overflow: visible;
}
[data-wenk]:hover:after {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -10px);
}
[data-wenk].wenk--bottom:after,
[data-wenk][data-wenk-pos="bottom"]:after {
  bottom: auto;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -10px);
}
[data-wenk].wenk--bottom:hover:after,
[data-wenk][data-wenk-pos="bottom"]:hover:after {
  transform: translate(-50%, 10px);
}
[data-wenk].wenk--left:after,
[data-wenk][data-wenk-pos="left"]:after {
  bottom: auto;
  left: auto;
  top: 50%;
  right: 100%;
  transform: translate(10px, -50%);
}
[data-wenk].wenk--left:hover:after,
[data-wenk][data-wenk-pos="left"]:hover:after {
  transform: translate(-10px, -50%);
}
[data-wenk].wenk--right:after,
[data-wenk][data-wenk-pos="right"]:after {
  bottom: auto;
  top: 50%;
  left: 100%;
  transform: translate(-10px, -50%);
}
[data-wenk].wenk--right:hover:after,
[data-wenk][data-wenk-pos="right"]:hover:after {
  transform: translate(10px, -50%);
}
[data-wenk][data-wenk-length="small"]:after,
[data-wenk].wenk-length--small:after {
  white-space: normal;
  width: 80px;
}
[data-wenk][data-wenk-length="medium"]:after,
[data-wenk].wenk-length--medium:after {
  white-space: normal;
  width: 150px;
}
[data-wenk][data-wenk-length="large"]:after,
[data-wenk].wenk-length--large:after {
  white-space: normal;
  width: 260px;
}
[data-wenk][data-wenk-length="fit"]:after,
[data-wenk].wenk-length--fit:after {
  white-space: normal;
  width: 100%;
}
[data-wenk][data-wenk-align="right"]:after,
[data-wenk].wenk-align--right:after {
  text-align: right;
}
[data-wenk][data-wenk-align="center"]:after,
[data-wenk].wenk-align--center:after {
  text-align: center;
}
[data-wenk=""]:after {
  visibility: hidden !important;
}
/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.8.7
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2018 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.chosen-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(100% 100%);
  clip-path: inset(100% 100%);
}
.chosen-container.chosen-with-drop .chosen-drop {
  clip: auto;
  -webkit-clip-path: none;
  clip-path: none;
}
.chosen-container a {
  cursor: pointer;
}
.chosen-container .chosen-single .group-name,
.chosen-container .search-choice .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 400;
  color: #999;
}
.chosen-container .chosen-single .group-name:after,
.chosen-container .search-choice .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top;
}
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fff), color-stop(50%, #f6f6f6), color-stop(52%, #eee), to(#f4f4f4));
  background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px;
}
.chosen-container-single .chosen-default {
  color: #999;
}
.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}
.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url(chosen-sprite.png) -42px 1px no-repeat;
  font-size: 1px;
}
.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}
.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}
.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%;
}
.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url(chosen-sprite.png) no-repeat 0 2px;
}
.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}
.chosen-container-single .chosen-search input[type=text] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  background: url(chosen-sprite.png) no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}
.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(100% 100%);
  clip-path: inset(100% 100%);
}
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}
.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none;
}
.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}
.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}
.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff;
}
.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4;
}
.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: 700;
  cursor: default;
}
.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}
.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eee), color-stop(15%, #fff));
  background-image: linear-gradient(#eee 1%, #fff 15%);
  cursor: text;
}
.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}
.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.chosen-container-multi .chosen-choices li.search-field input[type=text] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0!important;
  background: 0 0!important;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
  width: 25px;
}
.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eee;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default;
}
.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url(chosen-sprite.png) -42px 1px no-repeat;
  font-size: 1px;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px;
}
.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  color: #666;
}
.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}
.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px;
}
.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}
.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #eee), color-stop(80%, #fff));
  background-image: linear-gradient(#eee 20%, #fff 80%);
  -webkit-box-shadow: 0 1px 0 #fff inset;
  box-shadow: 0 1px 0 #fff inset;
}
.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: 0 0;
}
.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px;
}
.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.chosen-container-active .chosen-choices li.search-field input[type=text] {
  color: #222 !important;
}
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}
.chosen-disabled .chosen-single {
  cursor: default;
}
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}
.chosen-rtl {
  text-align: right;
}
.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0;
}
.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl;
}
.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px;
}
.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px;
}
.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px;
}
.chosen-rtl .chosen-choices li {
  float: right;
}
.chosen-rtl .chosen-choices li.search-field input[type=text] {
  direction: rtl;
}
.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}
.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}
.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}
.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}
.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none;
}
.chosen-rtl .chosen-search input[type=text] {
  padding: 4px 5px 4px 20px;
  background: url(chosen-sprite.png) no-repeat -30px -20px;
  direction: rtl;
}
.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px;
}
.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span,
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container-single .chosen-search input[type=text],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-single div b,
  .chosen-rtl .chosen-search input[type=text] {
    background-image: url(chosen-sprite@2x.png) !important;
    background-size: 52px 37px!important;
    background-repeat: no-repeat !important;
  }
}
.alert {
  background: white;
  box-shadow: rgba(67, 90, 111, 0.14) 0px 0px 0px 1px inset;
  box-sizing: border-box;
  line-height: 1.3;
  padding-bottom: 12px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 12px;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #153447;
  border-left: 3px solid #1070ca;
}
.alert i {
  color: #1070ca;
}
.alert span {
  margin-left: 10px;
}
.alert.warning {
  border-left: 3px solid #d9822b;
}
.alert.warning i {
  color: #d9822b;
}
.alert.success {
  border-left: 3px solid #47b881;
}
.alert.success i {
  color: #47b881;
}
.alert.danger {
  border-left: 3px solid #ec4c47;
}
.alert.danger i {
  color: #ec4c47;
}
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
html {
  box-sizing: border-box;
  font-size: 16px;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
img,
embed,
iframe,
object,
video {
  max-width: 100%;
  height: auto;
}
audio {
  max-width: 100%;
}
iframe {
  border: 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
  text-align: left;
}
button {
  background: none;
  border: none;
  outline: 0;
  font-size: inherit;
  padding: 0;
  cursor: pointer;
}
input:not([type="checkbox"]):not([type="radio"]),
textarea {
  -webkit-appearance: none;
}
.flex {
  display: flex;
}
.flex-1 {
  flex: 1;
}
.flex-grow-1 {
  flex-grow: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-basis-auto {
  flex-basis: auto;
}
.flex-direction-row {
  flex-direction: row;
}
.flex-direction-row-reverse {
  flex-direction: row-reverse;
}
.flex-direction-column {
  flex-direction: column;
}
.flex-direction-column-reverse {
  flex-direction: column-reverse;
}
.flex-wrap-wrap {
  flex-wrap: wrap;
}
.flex-wrap-nowrap {
  flex-wrap: nowrap;
}
.flex-wrap-wrap-reverse {
  flex-wrap: wrap-reverse;
}
.justify-content-flex-start {
  justify-content: flex-start;
}
.justify-content-flex-end {
  justify-content: flex-end;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-space-between {
  justify-content: space-between;
}
.justify-content-space-around {
  justify-content: space-around;
}
.justify-content-space-evenly {
  justify-content: space-evenly;
}
.align-items-flex-start {
  align-items: flex-start;
}
.align-items-flex-end {
  align-items: flex-end;
}
.align-items-center {
  align-items: center;
}
.align-items-baseline {
  align-items: baseline;
}
.align-items-stretch {
  align-items: stretch;
}
.align-self-flex-start {
  align-self: flex-start;
}
.align-self-flex-end {
  align-self: flex-end;
}
.align-self-center {
  align-self: center;
}
.align-self-baseline {
  align-self: baseline;
}
.align-self-stretch {
  align-self: stretch;
}
.align-content-flex-start {
  align-content: flex-start;
}
.align-content-flex-end {
  align-content: flex-end;
}
.align-content-center {
  align-content: center;
}
.align-content-baseline {
  align-content: baseline;
}
.align-content-stretch {
  align-content: stretch;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.order-4 {
  order: 4;
}
.order-5 {
  order: 5;
}
.order-6 {
  order: 6;
}
.order-7 {
  order: 7;
}
.order-8 {
  order: 8;
}
.order-9 {
  order: 9;
}
.order-10 {
  order: 10;
}
.width-1-12 {
  width: calc((100% / 12));
}
.width-2-12 {
  width: calc((100% / 12 * 2));
}
.width-3-12 {
  width: calc((100% / 12 * 3));
}
.width-4-12 {
  width: calc((100% / 12 * 4));
}
.width-5-12 {
  width: calc((100% / 12 * 5));
}
.width-6-12 {
  width: calc((100% / 12 * 6));
}
.width-7-12 {
  width: calc((100% / 12 * 7));
}
.width-8-12 {
  width: calc((100% / 12 * 8));
}
.width-9-12 {
  width: calc((100% / 12 * 9));
}
.width-10-12 {
  width: calc((100% / 12 * 10));
}
.width-11-12 {
  width: calc((100% / 12 * 11));
}
.width-1-5 {
  width: calc((100% / 5));
}
.width-2-5 {
  width: calc((100% / 5 * 2));
}
.width-3-5 {
  width: calc((100% / 5 * 3));
}
.width-4-5 {
  width: calc((100% / 5 * 4));
}
.width-1-4 {
  width: calc((100% / 4));
}
.width-2-4 {
  width: calc((100% / 4 * 2));
}
.width-3-4 {
  width: calc((100% / 4 * 3));
}
.width-1-3 {
  width: calc((100% / 3));
}
.width-2-3 {
  width: calc((100% / 3 * 2));
}
.width-1-2 {
  width: calc((100% / 2));
}
.width-1-1 {
  width: calc((100% / 1));
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.position-absolute {
  position: absolute;
}
.position-relative {
  position: relative;
}
.position-fixed {
  position: fixed;
}
.position-static {
  position: static;
}
.padding-0px {
  padding: 0px;
}
.padding-1px {
  padding: 1px;
}
.padding-2px {
  padding: 2px;
}
.padding-3px {
  padding: 3px;
}
.padding-4px {
  padding: 4px;
}
.padding-5px {
  padding: 5px;
}
.padding-6px {
  padding: 6px;
}
.padding-7px {
  padding: 7px;
}
.padding-8px {
  padding: 8px;
}
.padding-9px {
  padding: 9px;
}
.padding-10px {
  padding: 10px;
}
.padding-15px {
  padding: 15px;
}
.padding-20px {
  padding: 20px;
}
.padding-25px {
  padding: 25px;
}
.padding-30px {
  padding: 30px;
}
.padding-35px {
  padding: 35px;
}
.padding-40px {
  padding: 40px;
}
.padding-45px {
  padding: 45px;
}
.padding-50px {
  padding: 50px;
}
.padding-100px {
  padding: 100px;
}
.padding-top-0px {
  padding-top: 0px;
}
.padding-top-1px {
  padding-top: 1px;
}
.padding-top-2px {
  padding-top: 2px;
}
.padding-top-3px {
  padding-top: 3px;
}
.padding-top-4px {
  padding-top: 4px;
}
.padding-top-5px {
  padding-top: 5px;
}
.padding-top-6px {
  padding-top: 6px;
}
.padding-top-7px {
  padding-top: 7px;
}
.padding-top-8px {
  padding-top: 8px;
}
.padding-top-9px {
  padding-top: 9px;
}
.padding-top-10px {
  padding-top: 10px;
}
.padding-top-15px {
  padding-top: 15px;
}
.padding-top-20px {
  padding-top: 20px;
}
.padding-top-25px {
  padding-top: 25px;
}
.padding-top-30px {
  padding-top: 30px;
}
.padding-top-35px {
  padding-top: 35px;
}
.padding-top-40px {
  padding-top: 40px;
}
.padding-top-45px {
  padding-top: 45px;
}
.padding-top-50px {
  padding-top: 50px;
}
.padding-top-100px {
  padding-top: 100px;
}
.padding-right-0px {
  padding-right: 0px;
}
.padding-right-1px {
  padding-right: 1px;
}
.padding-right-2px {
  padding-right: 2px;
}
.padding-right-3px {
  padding-right: 3px;
}
.padding-right-4px {
  padding-right: 4px;
}
.padding-right-5px {
  padding-right: 5px;
}
.padding-right-6px {
  padding-right: 6px;
}
.padding-right-7px {
  padding-right: 7px;
}
.padding-right-8px {
  padding-right: 8px;
}
.padding-right-9px {
  padding-right: 9px;
}
.padding-right-10px {
  padding-right: 10px;
}
.padding-right-15px {
  padding-right: 15px;
}
.padding-right-20px {
  padding-right: 20px;
}
.padding-right-25px {
  padding-right: 25px;
}
.padding-right-30px {
  padding-right: 30px;
}
.padding-right-35px {
  padding-right: 35px;
}
.padding-right-40px {
  padding-right: 40px;
}
.padding-right-45px {
  padding-right: 45px;
}
.padding-right-50px {
  padding-right: 50px;
}
.padding-right-100px {
  padding-right: 100px;
}
.padding-bottom-0px {
  padding-bottom: 0px;
}
.padding-bottom-1px {
  padding-bottom: 1px;
}
.padding-bottom-2px {
  padding-bottom: 2px;
}
.padding-bottom-3px {
  padding-bottom: 3px;
}
.padding-bottom-4px {
  padding-bottom: 4px;
}
.padding-bottom-5px {
  padding-bottom: 5px;
}
.padding-bottom-6px {
  padding-bottom: 6px;
}
.padding-bottom-7px {
  padding-bottom: 7px;
}
.padding-bottom-8px {
  padding-bottom: 8px;
}
.padding-bottom-9px {
  padding-bottom: 9px;
}
.padding-bottom-10px {
  padding-bottom: 10px;
}
.padding-bottom-15px {
  padding-bottom: 15px;
}
.padding-bottom-20px {
  padding-bottom: 20px;
}
.padding-bottom-25px {
  padding-bottom: 25px;
}
.padding-bottom-30px {
  padding-bottom: 30px;
}
.padding-bottom-35px {
  padding-bottom: 35px;
}
.padding-bottom-40px {
  padding-bottom: 40px;
}
.padding-bottom-45px {
  padding-bottom: 45px;
}
.padding-bottom-50px {
  padding-bottom: 50px;
}
.padding-bottom-100px {
  padding-bottom: 100px;
}
.padding-left-0px {
  padding-left: 0px;
}
.padding-left-1px {
  padding-left: 1px;
}
.padding-left-2px {
  padding-left: 2px;
}
.padding-left-3px {
  padding-left: 3px;
}
.padding-left-4px {
  padding-left: 4px;
}
.padding-left-5px {
  padding-left: 5px;
}
.padding-left-6px {
  padding-left: 6px;
}
.padding-left-7px {
  padding-left: 7px;
}
.padding-left-8px {
  padding-left: 8px;
}
.padding-left-9px {
  padding-left: 9px;
}
.padding-left-10px {
  padding-left: 10px;
}
.padding-left-15px {
  padding-left: 15px;
}
.padding-left-20px {
  padding-left: 20px;
}
.padding-left-25px {
  padding-left: 25px;
}
.padding-left-30px {
  padding-left: 30px;
}
.padding-left-35px {
  padding-left: 35px;
}
.padding-left-40px {
  padding-left: 40px;
}
.padding-left-45px {
  padding-left: 45px;
}
.padding-left-50px {
  padding-left: 50px;
}
.padding-left-100px {
  padding-left: 100px;
}
.margin-0-auto {
  margin: 0 auto;
}
.margin-top-0px {
  margin-top: 0px;
}
.margin-top-1px {
  margin-top: 1px;
}
.margin-top-2px {
  margin-top: 2px;
}
.margin-top-3px {
  margin-top: 3px;
}
.margin-top-4px {
  margin-top: 4px;
}
.margin-top-5px {
  margin-top: 5px;
}
.margin-top-6px {
  margin-top: 6px;
}
.margin-top-7px {
  margin-top: 7px;
}
.margin-top-8px {
  margin-top: 8px;
}
.margin-top-9px {
  margin-top: 9px;
}
.margin-top-10px {
  margin-top: 10px;
}
.margin-top-15px {
  margin-top: 15px;
}
.margin-top-20px {
  margin-top: 20px;
}
.margin-top-25px {
  margin-top: 25px;
}
.margin-top-30px {
  margin-top: 30px;
}
.margin-top-35px {
  margin-top: 35px;
}
.margin-top-40px {
  margin-top: 40px;
}
.margin-top-45px {
  margin-top: 45px;
}
.margin-top-50px {
  margin-top: 50px;
}
.margin-top-100px {
  margin-top: 100px;
}
.margin-right-0px {
  margin-right: 0px;
}
.margin-right-1px {
  margin-right: 1px;
}
.margin-right-2px {
  margin-right: 2px;
}
.margin-right-3px {
  margin-right: 3px;
}
.margin-right-4px {
  margin-right: 4px;
}
.margin-right-5px {
  margin-right: 5px;
}
.margin-right-6px {
  margin-right: 6px;
}
.margin-right-7px {
  margin-right: 7px;
}
.margin-right-8px {
  margin-right: 8px;
}
.margin-right-9px {
  margin-right: 9px;
}
.margin-right-10px {
  margin-right: 10px;
}
.margin-right-15px {
  margin-right: 15px;
}
.margin-right-20px {
  margin-right: 20px;
}
.margin-right-25px {
  margin-right: 25px;
}
.margin-right-30px {
  margin-right: 30px;
}
.margin-right-35px {
  margin-right: 35px;
}
.margin-right-40px {
  margin-right: 40px;
}
.margin-right-45px {
  margin-right: 45px;
}
.margin-right-50px {
  margin-right: 50px;
}
.margin-right-100px {
  margin-right: 100px;
}
.margin-bottom-0px {
  margin-bottom: 0px;
}
.margin-bottom-1px {
  margin-bottom: 1px;
}
.margin-bottom-2px {
  margin-bottom: 2px;
}
.margin-bottom-3px {
  margin-bottom: 3px;
}
.margin-bottom-4px {
  margin-bottom: 4px;
}
.margin-bottom-5px {
  margin-bottom: 5px;
}
.margin-bottom-6px {
  margin-bottom: 6px;
}
.margin-bottom-7px {
  margin-bottom: 7px;
}
.margin-bottom-8px {
  margin-bottom: 8px;
}
.margin-bottom-9px {
  margin-bottom: 9px;
}
.margin-bottom-10px {
  margin-bottom: 10px;
}
.margin-bottom-15px {
  margin-bottom: 15px;
}
.margin-bottom-20px {
  margin-bottom: 20px;
}
.margin-bottom-25px {
  margin-bottom: 25px;
}
.margin-bottom-30px {
  margin-bottom: 30px;
}
.margin-bottom-35px {
  margin-bottom: 35px;
}
.margin-bottom-40px {
  margin-bottom: 40px;
}
.margin-bottom-45px {
  margin-bottom: 45px;
}
.margin-bottom-50px {
  margin-bottom: 50px;
}
.margin-bottom-100px {
  margin-bottom: 100px;
}
.margin-left-0px {
  margin-left: 0px;
}
.margin-left-1px {
  margin-left: 1px;
}
.margin-left-2px {
  margin-left: 2px;
}
.margin-left-3px {
  margin-left: 3px;
}
.margin-left-4px {
  margin-left: 4px;
}
.margin-left-5px {
  margin-left: 5px;
}
.margin-left-6px {
  margin-left: 6px;
}
.margin-left-7px {
  margin-left: 7px;
}
.margin-left-8px {
  margin-left: 8px;
}
.margin-left-9px {
  margin-left: 9px;
}
.margin-left-10px {
  margin-left: 10px;
}
.margin-left-15px {
  margin-left: 15px;
}
.margin-left-20px {
  margin-left: 20px;
}
.margin-left-25px {
  margin-left: 25px;
}
.margin-left-30px {
  margin-left: 30px;
}
.margin-left-35px {
  margin-left: 35px;
}
.margin-left-40px {
  margin-left: 40px;
}
.margin-left-45px {
  margin-left: 45px;
}
.margin-left-50px {
  margin-left: 50px;
}
.margin-left-100px {
  margin-left: 100px;
}
.top-0px {
  top: 0px;
}
.top-1px {
  top: 1px;
}
.top-2px {
  top: 2px;
}
.top-3px {
  top: 3px;
}
.top-4px {
  top: 4px;
}
.top-5px {
  top: 5px;
}
.top-6px {
  top: 6px;
}
.top-7px {
  top: 7px;
}
.top-8px {
  top: 8px;
}
.top-9px {
  top: 9px;
}
.top-10px {
  top: 10px;
}
.top-15px {
  top: 15px;
}
.top-20px {
  top: 20px;
}
.top-25px {
  top: 25px;
}
.top-30px {
  top: 30px;
}
.top-35px {
  top: 35px;
}
.top-40px {
  top: 40px;
}
.top-45px {
  top: 45px;
}
.top-50px {
  top: 50px;
}
.top-100px {
  top: 100px;
}
.right-0px {
  right: 0px;
}
.right-1px {
  right: 1px;
}
.right-2px {
  right: 2px;
}
.right-3px {
  right: 3px;
}
.right-4px {
  right: 4px;
}
.right-5px {
  right: 5px;
}
.right-6px {
  right: 6px;
}
.right-7px {
  right: 7px;
}
.right-8px {
  right: 8px;
}
.right-9px {
  right: 9px;
}
.right-10px {
  right: 10px;
}
.right-15px {
  right: 15px;
}
.right-20px {
  right: 20px;
}
.right-25px {
  right: 25px;
}
.right-30px {
  right: 30px;
}
.right-35px {
  right: 35px;
}
.right-40px {
  right: 40px;
}
.right-45px {
  right: 45px;
}
.right-50px {
  right: 50px;
}
.right-100px {
  right: 100px;
}
.bottom-0px {
  bottom: 0px;
}
.bottom-1px {
  bottom: 1px;
}
.bottom-2px {
  bottom: 2px;
}
.bottom-3px {
  bottom: 3px;
}
.bottom-4px {
  bottom: 4px;
}
.bottom-5px {
  bottom: 5px;
}
.bottom-6px {
  bottom: 6px;
}
.bottom-7px {
  bottom: 7px;
}
.bottom-8px {
  bottom: 8px;
}
.bottom-9px {
  bottom: 9px;
}
.bottom-10px {
  bottom: 10px;
}
.bottom-15px {
  bottom: 15px;
}
.bottom-20px {
  bottom: 20px;
}
.bottom-25px {
  bottom: 25px;
}
.bottom-30px {
  bottom: 30px;
}
.bottom-35px {
  bottom: 35px;
}
.bottom-40px {
  bottom: 40px;
}
.bottom-45px {
  bottom: 45px;
}
.bottom-50px {
  bottom: 50px;
}
.bottom-100px {
  bottom: 100px;
}
.left-0px {
  left: 0px;
}
.left-1px {
  left: 1px;
}
.left-2px {
  left: 2px;
}
.left-3px {
  left: 3px;
}
.left-4px {
  left: 4px;
}
.left-5px {
  left: 5px;
}
.left-6px {
  left: 6px;
}
.left-7px {
  left: 7px;
}
.left-8px {
  left: 8px;
}
.left-9px {
  left: 9px;
}
.left-10px {
  left: 10px;
}
.left-15px {
  left: 15px;
}
.left-20px {
  left: 20px;
}
.left-25px {
  left: 25px;
}
.left-30px {
  left: 30px;
}
.left-35px {
  left: 35px;
}
.left-40px {
  left: 40px;
}
.left-45px {
  left: 45px;
}
.left-50px {
  left: 50px;
}
.left-100px {
  left: 100px;
}
.font-weight-100 {
  font-weight: 100;
}
.font-weight-200 {
  font-weight: 200;
}
.font-weight-300 {
  font-weight: 300;
}
.font-weight-400 {
  font-weight: 400;
}
.font-weight-500 {
  font-weight: 500;
}
.font-weight-600 {
  font-weight: 600;
}
.font-weight-700 {
  font-weight: 700;
}
.font-weight-800 {
  font-weight: 800;
}
.text-align-left {
  text-align: left;
}
.text-align-center {
  text-align: center;
}
.text-align-right {
  text-align: right;
}
.text-decoration-none {
  text-decoration: none;
}
.text-decoration-underline {
  text-decoration: underline;
}
.white-space-no-wrap {
  white-space: nowrap;
}
.height-100vh {
  height: 100vh;
}
.height-100p {
  height: 100%;
}
.width-100p {
  width: 100%;
}
.min-height-100vh {
  min-height: 100vh;
}
.min-height-100p {
  min-height: 100%;
}
.min-width-100p {
  min-width: 100%;
}
.display-none {
  display: none !important;
}
.display-block {
  display: block;
}
.display-inline-block {
  display: inline-block;
}
.z-index-1 {
  z-index: 1;
}
.z-index-2 {
  z-index: 2;
}
.z-index-3 {
  z-index: 3;
}
.z-index-4 {
  z-index: 4;
}
.z-index-5 {
  z-index: 5;
}
.z-index-6 {
  z-index: 6;
}
.z-index-7 {
  z-index: 7;
}
.z-index-8 {
  z-index: 8;
}
.z-index-9 {
  z-index: 9;
}
.z-index-10 {
  z-index: 10;
}
.opacity-50 {
  opacity: 0.5;
}
.cursor-pointer {
  cursor: pointer;
}
.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.pointer-events-none {
  pointer-events: none;
}
.background-size-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.background-size-cover-round {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.dropdown {
  position: relative;
}
.dropdown i,
.dropdown span {
  position: relative;
}
.dropdown i:hover ~ ul,
.dropdown span:hover ~ ul,
.dropdown a:hover ~ ul {
  display: block;
}
.dropdown.bottom-right ul {
  left: 100%;
  top: auto;
  bottom: 0px;
}
.dropdown.bottom-right ul:before {
  display: none;
}
.dropdown.bottom-right ul:after {
  display: none;
}
.dropdown ul {
  background: white;
  position: absolute;
  margin: 0;
  padding: 0;
  right: 0px;
  top: 100%;
  border: 1px solid #eee;
  display: none;
  z-index: 10;
}
.dropdown ul:hover {
  display: block;
}
.dropdown ul:before {
  content: '';
  border: 1px solid #eee;
  width: 10px;
  height: 10px;
  -webkit-transform: rotateX(0deg) rotateY(0deg) rotateZ(45deg);
  -moz-transform: rotateX(0deg) rotateY(0deg) rotateZ(45deg);
  -o-transform: rotateX(0deg) rotateY(0deg) rotateZ(45deg);
  -ms-transform: rotateX(0deg) rotateY(0deg) rotateZ(45deg);
  transform: rotateX(0deg) rotateY(0deg) rotateZ(45deg);
  position: absolute;
  right: 13px;
  top: -6px;
}
.dropdown ul:after {
  content: '';
  background: white;
  width: 10px;
  height: 10px;
  -webkit-transform: rotateX(0deg) rotateY(0deg) rotateZ(45deg);
  -moz-transform: rotateX(0deg) rotateY(0deg) rotateZ(45deg);
  -o-transform: rotateX(0deg) rotateY(0deg) rotateZ(45deg);
  -ms-transform: rotateX(0deg) rotateY(0deg) rotateZ(45deg);
  transform: rotateX(0deg) rotateY(0deg) rotateZ(45deg);
  position: absolute;
  right: 13px;
  top: -5px;
}
.dropdown ul li {
  list-style: none;
  display: block;
}
.dropdown ul li:first-child:before {
  content: '';
  position: absolute;
  top: -50px;
  height: 50px;
  left: 0px;
  right: 0px;
}
.dropdown ul li:last-child a {
  border-bottom: none;
}
.dropdown ul li a,
.dropdown ul li button {
  display: block;
  padding: 0 20px;
  line-height: 2;
  border-bottom: 1px solid #eee;
  color: #ABB6BD;
  text-decoration: none;
  white-space: nowrap;
}
.dropdown ul li a:hover,
.dropdown ul li button:hover {
  color: #153447;
}
.dropdown ul li a i,
.dropdown ul li button i {
  font-size: 16px;
  color: #FF8034;
  width: auto;
  margin-right: 10px;
}
body.modal-open {
  overflow: hidden;
}
.modal-link {
  cursor: pointer;
}
.modal {
  z-index: 99999999999;
  color: #666;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding: 50px 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.modal.closed {
  display: none;
}
.modal .modal-bg {
  background: rgba(35, 36, 40, 0.7);
  position: fixed;
  top: 0px;
  left: 0px;
  right: 15px;
  bottom: 0px;
}
.modal .close-modal {
  background: #fcded8;
  font-size: 14px;
  cursor: pointer;
  color: #f05e38;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 4px;
}
.modal .close-modal:hover {
  color: #153447;
}
.modal .modal-footer {
  cursor: pointer;
  height: 50px;
  line-height: 50px;
  text-align: center;
  text-transform: uppercase;
  border-top: 1px solid #eee;
  font-size: 12px;
  margin-top: 0px;
}
.modal .modal-footer a {
  color: #ABB6BD;
  text-decoration: none;
  display: block;
}
.modal .modal-footer:hover a {
  color: #153447;
}
.modal .modal-menu {
  background: white;
  width: 100%;
  position: fixed;
  z-index: 2;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 60px;
}
.modal .modal-menu .modal-menu-inner {
  width: 100%;
  text-align: center;
  position: relative;
}
.modal .modal-menu .modal-menu-inner ul {
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
}
.modal .modal-menu .modal-menu-inner ul li {
  list-style: none;
  display: inline-block;
}
.modal .modal-menu .modal-menu-inner ul li a {
  display: block;
  padding: 0 30px;
  line-height: 60px;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Dosis', sans-serif;
  color: #ABB6BD;
}
.modal .modal-menu .modal-menu-inner ul li a:hover,
.modal .modal-menu .modal-menu-inner ul li a.active {
  color: #153447;
  text-decoration: none;
}
.modal .modal-inner {
  width: 600px;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.modal .modal-inner.large {
  width: 800px;
}
.modal .modal-inner.extra-large {
  width: 1000px;
}
.modal .modal-inner.super-large {
  width: 1400px;
}
.modal .modal-inner .modal-image {
  width: 100%;
  height: 300px;
  background-position: center center;
  background-size: cover;
}
.modal .modal-inner .modal-content {
  border-radius: 8px;
  background: white;
}
.modal .modal-inner .modal-content .modal-header {
  background: #F2F6F8;
  border-radius: 8px 8px 0 0;
  margin-bottom: 16px;
  height: 80px;
  line-height: 80px;
  border-bottom: 2px solid #e1ebef;
}
.modal .modal-inner .modal-content .modal-content-inner {
  padding: 40px;
  padding-top: 16px;
}
.modal .modal-inner .modal-content h2 {
  color: #222;
}
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.half-container {
  max-width: 700px;
}
[data-toggle-inner-hidden] {
  cursor: pointer;
}
ul.pagination {
  margin: 0;
  padding: 0;
}
ul.pagination li {
  list-style: none;
  display: inline-block;
  margin-right: 4px;
}
ul.pagination li.active a {
  background: none;
}
ul.pagination li a {
  display: block;
  padding: 0 8px;
  text-decoration: none;
  background: #eee;
  color: #153447 !important;
  line-height: 2;
  font-size: 14px;
  font-weight: 600;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
ul.pagination li a:hover {
  background: #e2e2e2;
}
.label-grey {
  padding: 0px 15px 0px 15px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  line-height: 27px;
  background: #E9E9E9;
  color: #83838F;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
}
.label-green {
  padding: 0px 15px 0px 15px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  line-height: 27px;
  background: #A3CB38;
  color: white;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
}
.label-orange {
  padding: 0px 15px 0px 15px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  line-height: 27px;
  background: #FFC312;
  color: white;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
}
.label-red {
  padding: 0px 15px 0px 15px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  line-height: 27px;
  background: #EE5A24;
  color: white;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
}
.button-default {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #4183DF;
  padding: 0px 16px 0px 16px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  line-height: 40px;
  color: white;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}
.button-default i {
  font-size: 12px;
  margin-right: 10px;
}
.button-primary {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #FF8034;
  padding: 0px 16px 0px 16px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  line-height: 40px;
  color: white;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}
.button-primary-light {
  position: relative;
  border: 2px solid #FFF9F5;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #FFF9F5;
  padding: 0px 16px 0px 16px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  line-height: 40px;
  color: #FF8034;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}
.button-primary-light:hover {
  border: 2px solid rgba(0, 0, 0, 0.2);
}
.button-secondary {
  position: relative;
  border: 2px solid #064E7A;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #064E7A;
  padding: 0px 16px 0px 16px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  line-height: 40px;
  color: white;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}
.button-secondary:hover {
  border: 2px solid rgba(0, 0, 0, 0.2);
}
.button-secondary-light {
  position: relative;
  border: 2px solid #F2F6F8;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #F2F6F8;
  padding: 0px 16px 0px 16px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  line-height: 40px;
  color: #064E7A;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}
.button-secondary-light:hover {
  border: 2px solid rgba(0, 0, 0, 0.2);
}
.icon-badge {
  position: absolute;
  top: -5px;
  right: 5px;
  border: 1px solid white;
  font-size: 12px;
  line-height: 16px;
  min-width: 20px;
  padding: 0 5px;
  text-align: center;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  -webkit-transform: translate3d(50%, 0px, 0px);
  -moz-transform: translate3d(50%, 0px, 0px);
  -o-transform: translate3d(50%, 0px, 0px);
  -ms-transform: translate3d(50%, 0px, 0px);
  transform: translate3d(50%, 0px, 0px);
  text-decoration: none;
}
.icon-badge.orange {
  background: #FF8034;
  color: white !important;
}
.icon-badge.grey {
  background: #eee;
  color: black !important;
  font-weight: 600;
}
.icon-badge.relative {
  position: relative;
  margin-left: 5px;
  margin-right: 5px;
  top: -1px;
}
.button-simple {
  background: none;
  padding: 0;
  color: #4183DF;
  font-weight: 600;
  text-decoration: none;
}
.button-simple i {
  margin-right: 8px;
}
.form label {
  line-height: 48px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #153447;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.form label .required {
  font-size: 1.4em;
  color: red;
  position: relative;
  top: 3px;
}
.form label[for] {
  cursor: pointer;
}
.form .label-toggle-button {
  margin-bottom: 0px;
}
.form .input-height {
  font-size: 16px;
  line-height: 50px;
}
.form input:not([type="file"]),
.form textarea {
  background: white;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #d1dfe6;
  font-size: 16px;
  line-height: 51px;
  color: #153447;
  width: 100%;
}
.form input:not([type="file"]).small-input,
.form textarea.small-input {
  line-height: 34px;
  padding: 0 15px;
}
.form input:not([type="file"])::-webkit-input-placeholder,
.form textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #b0c8d4;
}
.form input:not([type="file"])::-moz-placeholder,
.form textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #b0c8d4;
}
.form input:not([type="file"]):-ms-input-placeholder,
.form textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #b0c8d4;
}
.form input:not([type="file"]):-moz-placeholder,
.form textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #b0c8d4;
}
.form input:not([type="file"]):focus,
.form textarea:focus {
  outline: 0;
  border: 1px solid #4183DF;
}
.form input:not([type="file"]) {
  padding: 0 20px;
}
.form input:not([type="file"])[type=text]:not(.no-inner-shadow),
.form input:not([type="file"])[type=email]:not(.no-inner-shadow),
.form input:not([type="file"])[type=password]:not(.no-inner-shadow),
.form input:not([type="file"])[type=tel]:not(.no-inner-shadow) {
  border: 1px solid #d1dfe6;
}
.form input:not([type="file"])[type=text]:not(.no-inner-shadow):focus,
.form input:not([type="file"])[type=email]:not(.no-inner-shadow):focus,
.form input:not([type="file"])[type=password]:not(.no-inner-shadow):focus,
.form input:not([type="file"])[type=tel]:not(.no-inner-shadow):focus {
  outline: 0;
  border: 1px solid #4183DF;
}
.form textarea {
  padding: 20px;
  line-height: 1.1;
  border: 1px solid #ddd;
}
.form .chosen-container-multi {
  width: 100% !important;
}
.form .chosen-container-multi .chosen-choices {
  display: block;
  font-size: 16px;
  font-weight: 600;
  padding: 5px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #d1dfe6;
  border-radius: 8px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
}
.form select.chosen-select {
  display: block;
  font-size: 16px;
  font-weight: 400;
  padding: 0 1.4em 0 0.8em;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #d1dfe6;
  color: #b0c8d4;
  border-radius: 4px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  color: #153447;
}
.form select:not(.picker__select--year):not(.picker__select--month):not(.chosen-select) {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 48px;
  padding: 0 1.4em 0 0.8em;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #d1dfe6;
  color: #b0c8d4;
  border-radius: 4px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
  color: #153447;
}
.form select:not(.picker__select--year):not(.picker__select--month):not(.chosen-select) option[value=""][disabled] {
  display: none;
}
.form select:not(.picker__select--year):not(.picker__select--month):not(.chosen-select)::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #b0c8d4;
}
.form select:not(.picker__select--year):not(.picker__select--month):not(.chosen-select)::-moz-placeholder {
  /* Firefox 19+ */
  color: #b0c8d4;
}
.form select:not(.picker__select--year):not(.picker__select--month):not(.chosen-select):-ms-input-placeholder {
  /* IE 10+ */
  color: #b0c8d4;
}
.form select:not(.picker__select--year):not(.picker__select--month):not(.chosen-select):-moz-placeholder {
  /* Firefox 18- */
  color: #b0c8d4;
}
.form select:not(.picker__select--year):not(.picker__select--month):not(.chosen-select):focus {
  outline: 0;
  border: 1px solid #4183DF;
}
.form select::-ms-expand {
  display: none;
}
.form select:hover {
  border-color: #d1dfe6;
}
.form select:focus {
  border-color: #4183DF;
  color: #738691;
  outline: 0;
}
.form select option {
  font-weight: normal;
}
.form .form-note {
  display: block;
  font-size: 12px;
  margin: 5px 0;
}
.form .prefixed {
  position: relative;
}
.form .prefixed input {
  padding-left: 50px;
}
.form .prefixed span {
  position: absolute;
  width: 50px;
  left: 0px;
  top: 0px;
  bottom: 0px;
  text-align: center;
  display: flex;
  align-items: center;
}
.form .prefixed span i {
  color: #999;
  font-size: 20px;
  width: 100%;
  text-align: center;
}
.form .prefixed.end input {
  padding-left: 20px;
  padding-right: 50px;
}
.form .prefixed.end span {
  left: auto;
  right: 0px;
}
.overflow-table {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.overflow-scrolling-table thead,
.overflow-scrolling-table tbody {
  display: block;
}
.overflow-scrolling-table tbody {
  height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
}
.overflow-scrolling-table th,
.overflow-scrolling-table td {
  min-width: 70px;
}
.table-lined-container {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.table {
  width: 100%;
}
.table tr.light-green td {
  background: #f7fbee !important;
}
.table tr.light-green td a {
  color: #A3CB38;
}
.table tr.light-red td {
  background: #fde9e1 !important;
}
.table tr.light-red td a {
  color: #EE5A24;
}
.table tr th,
.table tr td {
  font-size: 14px;
  line-height: 2;
  position: relative;
}
.table.small tr th {
  padding: 2px 0;
}
.table.small tr td {
  padding: 2px 0;
}
.table.small-y tr th {
  padding: 2px 10px;
}
.table.small-y tr td {
  padding: 2px 10px;
}
.table.small-y tbody tr td:first-child {
  padding-left: 10px !important;
}
.table.vertical-align-top tr th,
.table.vertical-align-top tr td {
  vertical-align: top;
}
.table.table-striped tbody tr:nth-last-of-type(odd) {
  background: #f9f9f9;
}
.table.table-striped tbody tr td:first-child {
  padding-left: 5px;
}
.table.table-striped tbody tr td:last-child {
  padding-right: 5px;
}
.table.table-lined thead tr th:first-child {
  padding-left: 15px;
}
.table.table-lined thead tr th:last-child {
  padding-right: 15px;
}
.table.table-lined tbody tr {
  position: relative;
  box-shadow: 0 0 12px -4px rgba(6, 78, 122, 0.2);
  border-radius: 8px;
  height: 56px;
  z-index: 1;
}
.table.table-lined tbody tr.spacing {
  box-shadow: 0 0 0px 0px rgba(6, 78, 122, 0);
  z-index: 0;
  height: 0px;
}
.table.table-lined tbody tr.spacing td {
  height: 10px;
  background: transparent;
  font-size: 0px;
}
.table.table-lined tbody tr td {
  background: white;
}
.table.table-lined tbody tr td.checkbox-first {
  width: 50px;
}
.table.table-lined tbody tr td:first-child {
  -webkit-border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-left: 15px;
}
.table.table-lined tbody tr td:last-child {
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  padding-right: 15px;
}
.table.table-compact tbody tr {
  height: 45px;
}
.table.table-compact tbody tr td:first-child,
.table.table-compact tbody tr td:last-child {
  border-radius: 0px;
}
.table.th-td-table tr td:first-child,
.table.th-td-table tr th:first-child {
  padding-left: 5px;
}
.table.th-td-table tr td:last-child,
.table.th-td-table tr th:last-child {
  padding-right: 5px;
}
.table.th-td-table tr td {
  text-align: right;
}
.reset-table tr {
  background: none;
  box-shadow: 0 0 0px 0px rgba(6, 78, 122, 0) !important;
  height: auto !important;
}
.reset-table tr td {
  background: none !important;
  padding-left: 0px !important;
}
.initials {
  background: #FF8034;
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 600;
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
}
.form-table.vertical-align-top tr th,
.form-table.vertical-align-top tr td {
  vertical-align: top;
}
.form-table.small tr th {
  padding: 2px 0;
}
.form-table.small tr td {
  padding: 2px 0;
}
.form-table tr th {
  padding: 10px 0;
  color: black;
  padding-right: 50px;
  white-space: nowrap;
}
.form-table tr th label {
  padding-right: 10px;
}
.form-table tr td {
  padding: 10px 0;
}
.form-table tr td label {
  padding-right: 10px;
}
.demo {
  flex-direction: column;
}
.demo :first-child {
  margin-bottom: 20px;
}
.progress {
  transform: rotate(-90deg);
}
.progress__meter,
.progress__value {
  fill: none;
  stroke-width: 6px;
}
.progress__meter {
  stroke: #FFF9F5;
}
.progress__meter.green {
  stroke: rgba(255, 128, 52, 0.2);
}
.progress__meter.orange {
  stroke: rgba(255, 128, 52, 0.2);
}
.progress__meter.red {
  stroke: rgba(255, 128, 52, 0.2);
}
.progress__value {
  stroke: #FF8034;
  stroke-linecap: round;
  stroke-dasharray: 339.298;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.progress__value.green {
  stroke: #FF8034;
}
.progress__value.orange {
  stroke: #FF8034;
}
.progress__value.red {
  stroke: #FF8034;
}
[data-progress="0"] .progress__value {
  stroke-dashoffset: 339.298;
}
[data-progress="1"] .progress__value {
  stroke-dashoffset: 335.90502;
}
[data-progress="2"] .progress__value {
  stroke-dashoffset: 332.51204;
}
[data-progress="3"] .progress__value {
  stroke-dashoffset: 329.11906;
}
[data-progress="4"] .progress__value {
  stroke-dashoffset: 325.72608;
}
[data-progress="5"] .progress__value {
  stroke-dashoffset: 322.3331;
}
[data-progress="6"] .progress__value {
  stroke-dashoffset: 318.94012;
}
[data-progress="7"] .progress__value {
  stroke-dashoffset: 315.54714;
}
[data-progress="8"] .progress__value {
  stroke-dashoffset: 312.15416;
}
[data-progress="9"] .progress__value {
  stroke-dashoffset: 308.76118;
}
[data-progress="10"] .progress__value {
  stroke-dashoffset: 305.3682;
}
[data-progress="11"] .progress__value {
  stroke-dashoffset: 301.97522;
}
[data-progress="12"] .progress__value {
  stroke-dashoffset: 298.58224;
}
[data-progress="13"] .progress__value {
  stroke-dashoffset: 295.18926;
}
[data-progress="14"] .progress__value {
  stroke-dashoffset: 291.79628;
}
[data-progress="15"] .progress__value {
  stroke-dashoffset: 288.4033;
}
[data-progress="16"] .progress__value {
  stroke-dashoffset: 285.01032;
}
[data-progress="17"] .progress__value {
  stroke-dashoffset: 281.61734;
}
[data-progress="18"] .progress__value {
  stroke-dashoffset: 278.22436;
}
[data-progress="19"] .progress__value {
  stroke-dashoffset: 274.83138;
}
[data-progress="20"] .progress__value {
  stroke-dashoffset: 271.4384;
}
[data-progress="21"] .progress__value {
  stroke-dashoffset: 268.04542;
}
[data-progress="22"] .progress__value {
  stroke-dashoffset: 264.65244;
}
[data-progress="23"] .progress__value {
  stroke-dashoffset: 261.25946;
}
[data-progress="24"] .progress__value {
  stroke-dashoffset: 257.86648;
}
[data-progress="25"] .progress__value {
  stroke-dashoffset: 254.4735;
}
[data-progress="26"] .progress__value {
  stroke-dashoffset: 251.08052;
}
[data-progress="27"] .progress__value {
  stroke-dashoffset: 247.68754;
}
[data-progress="28"] .progress__value {
  stroke-dashoffset: 244.29456;
}
[data-progress="29"] .progress__value {
  stroke-dashoffset: 240.90158;
}
[data-progress="30"] .progress__value {
  stroke-dashoffset: 237.5086;
}
[data-progress="31"] .progress__value {
  stroke-dashoffset: 234.11562;
}
[data-progress="32"] .progress__value {
  stroke-dashoffset: 230.72264;
}
[data-progress="33"] .progress__value {
  stroke-dashoffset: 227.32966;
}
[data-progress="34"] .progress__value {
  stroke-dashoffset: 223.93668;
}
[data-progress="35"] .progress__value {
  stroke-dashoffset: 220.5437;
}
[data-progress="36"] .progress__value {
  stroke-dashoffset: 217.15072;
}
[data-progress="37"] .progress__value {
  stroke-dashoffset: 213.75774;
}
[data-progress="38"] .progress__value {
  stroke-dashoffset: 210.36476;
}
[data-progress="39"] .progress__value {
  stroke-dashoffset: 206.97178;
}
[data-progress="40"] .progress__value {
  stroke-dashoffset: 203.5788;
}
[data-progress="41"] .progress__value {
  stroke-dashoffset: 200.18582;
}
[data-progress="42"] .progress__value {
  stroke-dashoffset: 196.79284;
}
[data-progress="43"] .progress__value {
  stroke-dashoffset: 193.39986;
}
[data-progress="44"] .progress__value {
  stroke-dashoffset: 190.00688;
}
[data-progress="45"] .progress__value {
  stroke-dashoffset: 186.6139;
}
[data-progress="46"] .progress__value {
  stroke-dashoffset: 183.22092;
}
[data-progress="47"] .progress__value {
  stroke-dashoffset: 179.82794;
}
[data-progress="48"] .progress__value {
  stroke-dashoffset: 176.43496;
}
[data-progress="49"] .progress__value {
  stroke-dashoffset: 173.04198;
}
[data-progress="50"] .progress__value {
  stroke-dashoffset: 169.649;
}
[data-progress="51"] .progress__value {
  stroke-dashoffset: 166.25602;
}
[data-progress="52"] .progress__value {
  stroke-dashoffset: 162.86304;
}
[data-progress="53"] .progress__value {
  stroke-dashoffset: 159.47006;
}
[data-progress="54"] .progress__value {
  stroke-dashoffset: 156.07708;
}
[data-progress="55"] .progress__value {
  stroke-dashoffset: 152.6841;
}
[data-progress="56"] .progress__value {
  stroke-dashoffset: 149.29112;
}
[data-progress="57"] .progress__value {
  stroke-dashoffset: 145.89814;
}
[data-progress="58"] .progress__value {
  stroke-dashoffset: 142.50516;
}
[data-progress="59"] .progress__value {
  stroke-dashoffset: 139.11218;
}
[data-progress="60"] .progress__value {
  stroke-dashoffset: 135.7192;
}
[data-progress="61"] .progress__value {
  stroke-dashoffset: 132.32622;
}
[data-progress="62"] .progress__value {
  stroke-dashoffset: 128.93324;
}
[data-progress="63"] .progress__value {
  stroke-dashoffset: 125.54026;
}
[data-progress="64"] .progress__value {
  stroke-dashoffset: 122.14728;
}
[data-progress="65"] .progress__value {
  stroke-dashoffset: 118.7543;
}
[data-progress="66"] .progress__value {
  stroke-dashoffset: 115.36132;
}
[data-progress="67"] .progress__value {
  stroke-dashoffset: 111.96834;
}
[data-progress="68"] .progress__value {
  stroke-dashoffset: 108.57536;
}
[data-progress="69"] .progress__value {
  stroke-dashoffset: 105.18238;
}
[data-progress="70"] .progress__value {
  stroke-dashoffset: 101.7894;
}
[data-progress="71"] .progress__value {
  stroke-dashoffset: 98.39642;
}
[data-progress="72"] .progress__value {
  stroke-dashoffset: 95.00344;
}
[data-progress="73"] .progress__value {
  stroke-dashoffset: 91.61046;
}
[data-progress="74"] .progress__value {
  stroke-dashoffset: 88.21748;
}
[data-progress="75"] .progress__value {
  stroke-dashoffset: 84.8245;
}
[data-progress="76"] .progress__value {
  stroke-dashoffset: 81.43152;
}
[data-progress="77"] .progress__value {
  stroke-dashoffset: 78.03854;
}
[data-progress="78"] .progress__value {
  stroke-dashoffset: 74.64556;
}
[data-progress="79"] .progress__value {
  stroke-dashoffset: 71.25258;
}
[data-progress="80"] .progress__value {
  stroke-dashoffset: 67.8596;
}
[data-progress="81"] .progress__value {
  stroke-dashoffset: 64.46662;
}
[data-progress="82"] .progress__value {
  stroke-dashoffset: 61.07364;
}
[data-progress="83"] .progress__value {
  stroke-dashoffset: 57.68066;
}
[data-progress="84"] .progress__value {
  stroke-dashoffset: 54.28768;
}
[data-progress="85"] .progress__value {
  stroke-dashoffset: 50.8947;
}
[data-progress="86"] .progress__value {
  stroke-dashoffset: 47.50172;
}
[data-progress="87"] .progress__value {
  stroke-dashoffset: 44.10874;
}
[data-progress="88"] .progress__value {
  stroke-dashoffset: 40.71576;
}
[data-progress="89"] .progress__value {
  stroke-dashoffset: 37.32278;
}
[data-progress="90"] .progress__value {
  stroke-dashoffset: 33.9298;
}
[data-progress="91"] .progress__value {
  stroke-dashoffset: 30.53682;
}
[data-progress="92"] .progress__value {
  stroke-dashoffset: 27.14384;
}
[data-progress="93"] .progress__value {
  stroke-dashoffset: 23.75086;
}
[data-progress="94"] .progress__value {
  stroke-dashoffset: 20.35788;
}
[data-progress="95"] .progress__value {
  stroke-dashoffset: 16.9649;
}
[data-progress="96"] .progress__value {
  stroke-dashoffset: 13.57192;
}
[data-progress="97"] .progress__value {
  stroke-dashoffset: 10.17894;
}
[data-progress="98"] .progress__value {
  stroke-dashoffset: 6.78596;
}
[data-progress="99"] .progress__value {
  stroke-dashoffset: 3.39298;
}
[data-progress="100"] .progress__value {
  stroke-dashoffset: 0;
}
html {
  background: #f9fbfc;
}
body {
  color: #153447;
  font-family: 'Raleway', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: #153447;
  line-height: 1.4;
}
h1.label,
h2.label,
h3.label,
h4.label,
h5.label,
h6.label {
  color: #738691;
}
.h1,
h1 {
  font-size: 40px;
}
.h2,
h2 {
  font-size: 34px;
}
.h3,
h3 {
  font-size: 28px;
}
.h4,
h4 {
  font-size: 22px;
}
.h5,
h5 {
  font-size: 16px;
}
.h6,
h6 {
  font-size: 14px;
}
.overall-link {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
a {
  color: #FF8034;
}
p {
  font-size: 16px;
  font-weight: 300;
  color: #ABB6BD;
}
hr {
  border: 0;
  height: 1px;
  background: #ffe1cc;
  background: #eee;
}
.badge-count {
  font-family: 'Raleway', sans-serif;
  background: #FF8034;
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 0 5px;
  line-height: 17px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  position: absolute;
  top: 8px;
  right: 3px;
  border: 2px solid white;
}
.badge-count.relative {
  position: relative;
  top: 0px;
  margin-left: 10px;
  border: none;
}
.color-primary {
  color: #FF8034;
}
.color-secondary {
  color: #064E7A;
}
.color-subtle {
  color: #738691;
}
.color-green {
  color: #A3CB38;
}
.color-orange {
  color: #FFC312;
}
.color-red {
  color: #EE5A24;
}
[data-checkbox-buttons] i {
  font-size: 16px;
  color: #738691;
}
.wenk-pre-line:after {
  white-space: pre-line;
}
.list {
  margin: inherit;
  padding: inherit;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.list.no-list-style {
  margin: 0;
  padding: 0;
}
.list.no-list-style li {
  list-style: none;
}
.list li {
  color: #ABB6BD;
}
.login-container {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url('/assets/img/background-login-screen.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}
.login-container:before {
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.2);
}
.login-container .inner {
  position: relative;
  width: 96%;
  max-width: 500px;
  margin: 0 auto;
}
.login-container .inner .title h1,
.login-container .inner .title h2,
.login-container .inner .title h3,
.login-container .inner .title h4 {
  color: white;
}
.login-container .inner .login-box {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background: white;
}
.login-container .inner .login-box .card-header {
  padding-top: 40px;
}
.login-container .inner .login-box .card-header img {
  margin-left: 46px;
  margin-bottom: 20px;
  width: 60px;
}
.login-container .inner .login-box .card-header h4 {
  padding-left: 20px;
  line-height: 2;
  font-weight: 600;
}
.login-container .inner .login-box .card-content {
  padding: 20px 50px 40px 50px;
}
.login-container .forgot-password {
  color: #153447;
  font-size: 16px;
  text-decoration: none;
}
.login-container .forgot-password:hover {
  color: #FF8034;
}
.admin-menu {
  min-height: 100vh;
  background: white;
  width: 280px;
}
.admin-menu .admin-menu-inner {
  position: fixed;
  top: 0px;
  left: 0px;
  bottom: 0px;
  width: 280px;
}
.admin-menu .logo {
  border-bottom: 1px solid #eee;
  padding: 24px 0;
}
.admin-menu .logo img {
  width: 120px;
}
.admin-menu .menu {
  margin: 24px;
  padding: 0;
}
.admin-menu .menu li {
  display: block;
}
.admin-menu .menu li a {
  display: block;
  line-height: 1.5;
  color: #153447;
  text-decoration: none;
  font-weight: 600;
  padding: 0 10px;
  font-size: 14px;
  color: #8BB3EA;
  line-height: 33px;
  margin-bottom: 4px;
}
.admin-menu .menu li.active a,
.admin-menu .menu li:hover a {
  background: #D4E1F4;
  border-radius: 8px;
}
.admin-menu .user-bar {
  padding: 0 24px 24px 34px;
}
.admin-menu .user-bar a {
  text-decoration: none;
  color: #153447;
  font-weight: 600;
}
.admin-menu .user-bar .user-icon {
  background: #ffeadc;
  color: #FF8034;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 4px;
  margin-right: 10px;
}
.admin-menu .user-bar .user-icon i {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 16px;
}
.unit-detail {
  background: #F2F6F8;
  padding: 20px;
  margin: 20px 0;
}
.admin-page-container {
  padding: 24px;
}
.header-height-fix {
  width: 100%;
}
.header-height-fix .inner {
  height: 80px;
}
.menu-alert {
  font-size: 14px;
  color: #FF8034;
  position: relative;
  top: -3px;
  margin-left: 3px;
}
.menu-alert i {
  font-size: 14px !important;
}
header {
  position: fixed;
  width: 100%;
  background: white;
  height: 80px;
  z-index: 999;
  padding: 0 40px;
}
header > .flex {
  height: 100%;
}
header .logo-container {
  height: 100%;
}
header .logo-container .logo {
  display: block;
  font-size: 0;
  padding-right: 20px;
}
header .logo-container .logo img {
  width: 85px;
}
header nav.main-menu ul {
  margin: 0;
  padding: 0;
  font-size: 0px;
}
header nav.main-menu ul li {
  display: inline-block;
  list-style: none;
}
header nav.main-menu ul li a {
  display: block;
  font-size: 16px;
  line-height: 80px;
  box-sizing: border-box;
  height: 80px;
  color: #acb7be;
  margin: 0 50px;
  text-decoration: none;
  font-weight: 400;
}
header nav.main-menu ul li a i {
  margin-right: 10px;
  font-size: 20px;
  position: relative;
  top: 1px;
}
header nav.main-menu ul li a:hover {
  color: #738691;
}
header nav.main-menu ul li.active a {
  color: #153447;
  font-weight: 600;
  border-bottom: 2px solid #FF8034;
}
header nav.main-menu ul li.active a i {
  color: #FF8034;
  margin-right: 5px;
}
header .dropdown .user-icon {
  background: #ffeadc;
  color: #FF8034;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 4px;
}
header .dropdown .user-icon i {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 16px;
}
header .dropdown i {
  font-size: 24px;
  width: 40px;
  text-align: center;
  height: 60px;
  line-height: 60px;
}
nav.sub-menu {
  background: #F2F6F8;
  height: 56px;
}
nav.sub-menu ul {
  margin: 0;
  padding: 0;
  font-size: 0px;
  text-align: center;
}
nav.sub-menu ul li {
  display: inline-block;
}
nav.sub-menu ul li a {
  display: block;
  color: #c9d0d4;
  font-size: 16px;
  line-height: 56px;
  padding: 0 30px;
  text-decoration: none;
  font-weight: 600;
}
nav.sub-menu ul li a:hover {
  color: #909fa7;
}
nav.sub-menu ul li.active a {
  color: #FF8034;
}
.page-header {
  padding: 24px;
}
.page-header .hidden-logo-upload {
  width: 0px;
  height: 0px;
  overflow: hidden;
}
.page-header .change-club-logo {
  width: 120px;
  height: 120px;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: white;
  border: 1px solid #eee;
  background-size: 50%;
  margin-right: 30px;
  position: relative;
  border-radius: 50%;
}
.page-header .change-club-logo .inner {
  position: relative;
  width: 100%;
  border-radius: 50%;
  height: 100%;
  overflow: hidden;
}
.page-header .change-club-logo .inner .overlay {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  text-align: center;
  line-height: 120px;
  font-size: 30px;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.page-header .change-club-logo:hover .inner .overlay {
  opacity: 1;
}
.add-new,
.select-item {
  width: 300px;
  height: 150px;
  border-radius: 8px;
  color: #5d8fa8;
  text-decoration: none;
  text-align: center;
  background: white;
  border: 1px solid #d1dfe6;
}
.add-new h5,
.select-item h5 {
  color: #5d8fa8;
  font-weight: 400;
}
.add-new i,
.select-item i {
  font-size: 30px;
}
.add-new:hover,
.select-item:hover {
  color: #FF8034;
  border-color: #FF8034;
}
.add-new:hover h5,
.select-item:hover h5 {
  color: #FF8034;
}
.add-clubs .select-item {
  margin: 0 20px 20px 0;
  width: 280px;
}
.add-clubs .select-item.selected {
  border: 1px solid #A3CB38;
}
.add-clubs .select-item.selected h5 {
  color: #A3CB38;
}
.add-clubs .select-item.selected i {
  color: #A3CB38;
}
.page-sidebar {
  padding: 24px;
}
.page-sidebar ul {
  margin: 0;
  padding: 0;
}
.page-sidebar ul li {
  display: block;
}
.page-sidebar ul li a {
  display: block;
  line-height: 1.5;
  color: #153447;
  text-decoration: none;
  font-weight: 600;
  padding: 0 10px;
  font-size: 14px;
  color: #8BB3EA;
  line-height: 33px;
  margin-bottom: 4px;
}
.page-sidebar ul li.active a,
.page-sidebar ul li:hover a {
  background: #D4E1F4;
  border-radius: 8px;
}
.cards .card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 12px -4px rgba(6, 78, 122, 0.2);
}
.cards .card .card-header {
  padding: 0 24px;
  height: 50px;
  line-height: 50px;
  border-bottom: 1px solid #F2F6F8;
}
.cards .card .card-header .card-title {
  color: #064E7A;
  line-height: 50px;
}
.cards .card .card-content {
  padding: 13px 24px 24px 24px;
}
.cards .card-table {
  padding: 13px 24px 24px 24px;
}
.show-description {
  padding-top: 20px;
}
.show-description p {
  font-size: 14px;
  line-height: 1.5;
  color: #ABB6BD;
}
.show-description p strong {
  color: #153447;
}
.staff-images {
  position: relative;
  height: 30px;
}
.staff-images .staff-image {
  position: absolute;
  left: 0px;
  top: 0px;
  border: 1px solid white;
}
.staff-images .staff-image:nth-child(1) {
  left: 0px;
}
.staff-images .staff-image:nth-child(2) {
  left: 15px;
}
.staff-images .staff-image:nth-child(3) {
  left: 30px;
}
.staff-images .staff-image:nth-child(4) {
  left: 45px;
}
.staff-image {
  background: #e1ebef;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-size: cover;
  background-position: center center;
  line-height: 28px;
  text-align: center;
  color: #153447;
  font-weight: 600;
  font-size: 12px;
}
.payment-options {
  background-image: url('/assets/img/payment-options.jpg');
  background-size: contain;
  width: 279px;
  height: 30px;
  background-repeat: no-repeat;
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}
.accordion {
  border: 1px solid #eee;
}
.accordion.open {
  background: #f2f2f2;
}
.accordion.open .accordion-content {
  display: block;
}
.accordion .accordion-title {
  font-weight: 600;
  padding: 0 20px;
  line-height: 40px;
  cursor: pointer;
  color: #FF8034;
}
.accordion .accordion-title:hover {
  background: #f2f2f2;
}
.accordion .accordion-content {
  display: none;
  padding: 20px;
}
.flatpickr-calendar.open {
  z-index: 99999999999 !important;
}
/*# sourceMappingURL=co.css.map */