@charset "UTF-8";
html {
  box-sizing: border-box; }

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

.fade-in {
  -webkit-animation: fade-in 300ms ease;
  -moz-animation: fade-in 300ms ease;
  -o-animation: fade-in 300ms ease;
  animation: fade-in 300ms ease; }

@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: inline-block;
    opacity: 0; }
  100% {
    opacity: 1; } }

@-moz-keyframes fade-in {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: inline-block;
    opacity: 0; }
  100% {
    opacity: 1; } }

@-ms-keyframes fade-in {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: inline-block;
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fade-in {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: inline-block;
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(365deg);
    -moz-transform: rotate(365deg);
    -ms-transform: rotate(365deg);
    transform: rotate(365deg); }
  to {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); } }

@-moz-keyframes spin {
  from {
    -webkit-transform: rotate(365deg);
    -moz-transform: rotate(365deg);
    -ms-transform: rotate(365deg);
    transform: rotate(365deg); }
  to {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); } }

@-ms-keyframes spin {
  from {
    -webkit-transform: rotate(365deg);
    -moz-transform: rotate(365deg);
    -ms-transform: rotate(365deg);
    transform: rotate(365deg); }
  to {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); } }

@keyframes spin {
  from {
    -webkit-transform: rotate(365deg);
    -moz-transform: rotate(365deg);
    -ms-transform: rotate(365deg);
    transform: rotate(365deg); }
  to {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); } }

.spin {
  -webkit-animation: spin 800ms linear 0ms infinite;
  -moz-animation: spin 800ms linear 0ms infinite;
  -o-animation: spin 800ms linear 0ms infinite;
  animation: spin 800ms linear 0ms infinite;
  /*
    animation-name: spin;
    animation-duration: 800ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    */ }

.spin-end {
  -webkit-animation: spin 800ms linear 0ms 1;
  -moz-animation: spin 800ms linear 0ms 1;
  -o-animation: spin 800ms linear 0ms 1;
  animation: spin 800ms linear 0ms 1;
  /*
    animation-name: spin;
    animation-duration: 800ms;
    animation-iteration-count: 1;
    animation-timing-function: linear;
    */ }

.spinner {
  display: block;
  position: relative;
  width: 3rem;
  height: 3rem;
  margin: 0 auto; }
  .spinner .before,
  .spinner .after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #0280d0;
    content: '';
    opacity: .6;
    -webkit-animation: animation-bounce 2s infinite ease-in-out;
    -moz-animation: animation-bounce 2s infinite ease-in-out;
    -o-animation: animation-bounce 2s infinite ease-in-out;
    animation: animation-bounce 2s infinite ease-in-out;
    /*
        -webkit-animation: animation-bounce 2s infinite ease-in-out;
        animation: animation-bounce 2s infinite ease-in-out;
        */ }
  .spinner .after {
    background-color: #0164a5;
    -webkit-animation-delay: -1s;
    animation-delay: -1s; }
  .spinner--light .before {
    background-color: #fff; }
  .spinner--light .after {
    background-color: #f7f9fa; }
  .spinner--small {
    width: 2rem;
    height: 2rem; }

@-webkit-keyframes animation-bounce {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0); }
  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  100% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0); } }

@-moz-keyframes animation-bounce {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0); }
  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  100% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0); } }

@-ms-keyframes animation-bounce {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0); }
  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  100% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0); } }

@keyframes animation-bounce {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0); }
  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  100% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0); } }

.button {
  display: inline-block;
  padding: .5rem 1rem;
  border-radius: 2px;
  font-family: OpenSans-Bold;
  font-size: 0.75rem;
  text-transform: uppercase; }
  .button--blue {
    border: solid 1px #0164a5;
    background-color: #0280d0;
    color: #fff;
    font-family: OpenSans-Bold; }
  .button--gray {
    border: solid 1px #cacbcc;
    background-color: #d9dadb;
    color: #646566;
    font-family: OpenSans-Bold; }
  .button--wide {
    width: 100%; }
  .button--disabled {
    opacity: .5; }
  .button--salesforce {
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    font-family: OpenSans-Bold;
    font-size: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 74, 123, 0.8); }
  .button--fa {
    font-size: 1.25rem; }
  .button--flat {
    border-color: transparent;
    background-color: transparent; }
    .button--flat--highlighted {
      color: #0280d0; }
    .button--flat--standard {
      color: #969899; }
    .button--flat--disabled {
      color: #f0f1f2; }
    .button--flat--inactive {
      color: #cacbcc; }
  .button--no-padding {
    padding: 0; }
  .button > input[type='file'] {
    display: none; }

.full-size, .app, .main-container {
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto; }

.no-wrap {
  white-space: nowrap; }

.text-ellipsis, .fc-agendaDay-view .fc-title, .fc-agendaDay-view .fc-description {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden; }

.row-tight, .modal-dialog__button-bar {
  margin-right: 0 !important;
  margin-left: 0 !important; }

.no-padding {
  padding: 0 !important; }

.full-height, .page-container, .content {
  height: 100%; }

.full-height-1 {
  height: 95%; }

.full-width {
  width: 100%; }

.scrollable {
  overflow: auto; }

.without-overflow {
  overflow: hidden; }

.scrollable--vertical {
  overflow-y: auto;
  overflow-x: hidden; }

.clickable {
  cursor: pointer; }

.horizontal-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%); }

.hidden {
  display: none; }

.transparent {
  opacity: 0; }

.below-content {
  z-index: -1; }

.text--link {
  color: #0164a5; }

.max-50vh {
  max-height: 50vh; }

.block--smaller {
  height: 3rem; }

.disabled {
  opacity: .5; }

@font-face {
  font-family: 'OpenSans-Light';
  src: url(fonts/OpenSans-Light.eot);
  src: url(fonts/OpenSans-Light.eot?#iefix&v=1.1.0) format("embedded-opentype"), url(fonts/OpenSans-Light.woff) format("woff"), url(fonts/OpenSans-Light.ttf) format("truetype");
  font-weight: 300;
  font-style: normal; }

/* END Light */
/* BEGIN Regular */
@font-face {
  font-family: 'Open Sans';
  src: url(fonts/OpenSans-Regular.eot);
  src: url(fonts/OpenSans-Regular.eot?#iefix&v=1.1.0) format("embedded-opentype"), url(fonts/OpenSans-Regular.woff) format("woff"), url(fonts/OpenSans-Regular.ttf) format("truetype");
  font-weight: normal;
  font-style: normal; }

/* END Regular */
/* BEGIN Semibold */
@font-face {
  font-family: 'OpenSans-Semibold';
  src: url(fonts/OpenSans-Semibold.eot);
  src: url(fonts/OpenSans-Semibold.eot?#iefix&v=1.1.0) format("embedded-opentype"), url(fonts/OpenSans-Semibold.woff) format("woff"), url(fonts/OpenSans-Semibold.ttf) format("truetype");
  font-weight: 600;
  font-style: normal; }

/* END Semibold */
/* BEGIN Bold */
@font-face {
  font-family: 'OpenSans-Bold';
  src: url(fonts/OpenSans-Bold.eot);
  src: url(fonts/OpenSans-Bold.eot?#iefix&v=1.1.0) format("embedded-opentype"), url(fonts/OpenSans-Bold.woff) format("woff"), url(fonts/OpenSans-Bold.ttf) format("truetype");
  font-weight: bold;
  font-style: normal; }

/* END Bold */
/* BEGIN Extrabold */
/*
@font-face {
    font-family: 'OpenSans-ExtraBold';
    src: url("../fonts/ExtraBold/OpenSans-ExtraBold.eot?v=1.1.0");
    src: url("../fonts/ExtraBold/OpenSans-ExtraBold.eot?#iefix&v=1.1.0") format("embedded-opentype"), url("../fonts/ExtraBold/OpenSans-ExtraBold.woff?v=1.1.0") format("woff"), url("../fonts/ExtraBold/OpenSans-ExtraBold.ttf?v=1.1.0") format("truetype"), url("../fonts/ExtraBold/OpenSans-ExtraBold.svg?v=1.1.0#ExtraBold") format("svg");
    font-weight: 800;
    font-style: normal; }
*/
/* END Extrabold */
html {
  box-sizing: border-box; }

html,
body {
  width: 100%;
  min-width: 320px;
  height: 100%; }

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

body,
dl,
menu,
ol,
ul,
fieldset,
figure,
form,
button,
input,
select,
textarea,
dt,
dd,
p {
  margin: 0;
  padding: 0; }

ul,
ol {
  list-style: none; }

fieldset {
  border: 0; }

textarea {
  border: 0;
  color: #646566;
  overflow: auto;
  vertical-align: top;
  resize: vertical; }

audio,
canvas,
video {
  display: inline-block;
  vertical-align: middle; }

html,
button,
input,
select,
textarea {
  border-radius: 0;
  font-family: inherit;
  -webkit-appearance: none; }

a:active,
a:hover,
a:focus {
  outline: 0; }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-family: inherit;
  font-weight: normal; }

blockquote {
  margin: 1em 40px; }

dfn {
  font-style: italic; }

pre {
  margin: 1em 0;
  white-space: pre-wrap;
  word-wrap: break-word; }

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

small {
  font-size: 0.6875rem; }

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline; }

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  vertical-align: middle; }
  button:focus,
  input:focus,
  select:focus,
  textarea:focus {
    outline: 0; }

button,
input {
  border: 0;
  line-height: normal; }

button,
select {
  text-transform: none; }

button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
  border: 0;
  outline: 0;
  background: none;
  color: #646566;
  cursor: pointer;
  -webkit-appearance: none;
  user-select: none; }

input::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border: 0; }

button[disabled],
html input[disabled] {
  cursor: default; }

input[type='checkbox'],
input[type='radio'] {
  padding: 0; }

input[type='search'] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

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

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

a {
  outline: 0;
  color: inherit;
  text-decoration: none; }

html,
body,
.smt-app {
  height: 100%;
  color: #646566;
  font: 16px 'Open Sans';
  -webkit-font-smoothing: antialiased; }

.smt-app {
  background-image: linear-gradient(to bottom, #0280d0, #0164a5); }

h1 {
  font-size: 1.25rem; }

h2 {
  font-size: 1.125rem; }

.font-size--s {
  font-size: 0.875rem; }

.font-size--xs {
  font-size: 0.8125rem; }

.bold, .blue-header {
  font-family: OpenSans-Bold, sans-serif; }

.blue-header {
  color: #004b7b;
  font-size: 1.125rem; }
  .blue-header--small {
    font-size: 0.8125rem;
    text-transform: uppercase; }

.tabs__group {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 3rem;
  font-family: OpenSans-Bold, sans-serif;
  font-size: 0.6875rem;
  text-align: center;
  text-transform: uppercase;
  user-select: none; }

.tabs__tab {
  transition: opacity 0.3s ease-out;
  cursor: pointer; }
  .tabs__tab--unselected {
    opacity: .7; }

.tabs__indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  transition: transform 0.3s ease-out;
  background-color: #0280d0; }
  [dir="rtl"] .tabs__indicator {
    left: auto;
    right: 0; }
  .tabs__indicator-1 {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%); }
  .tabs__indicator-2 {
    -webkit-transform: translateX(200%);
    -moz-transform: translateX(200%);
    -ms-transform: translateX(200%);
    transform: translateX(200%); }
  .tabs__indicator-3 {
    -webkit-transform: translateX(300%);
    -moz-transform: translateX(300%);
    -ms-transform: translateX(300%);
    transform: translateX(300%); }
  .tabs__indicator-4 {
    -webkit-transform: translateX(400%);
    -moz-transform: translateX(400%);
    -ms-transform: translateX(400%);
    transform: translateX(400%); }
  .tabs__indicator-5 {
    -webkit-transform: translateX(500%);
    -moz-transform: translateX(500%);
    -ms-transform: translateX(500%);
    transform: translateX(500%); }
  .tabs__indicator-6 {
    -webkit-transform: translateX(600%);
    -moz-transform: translateX(600%);
    -ms-transform: translateX(600%);
    transform: translateX(600%); }
  .tabs__indicator-7 {
    -webkit-transform: translateX(700%);
    -moz-transform: translateX(700%);
    -ms-transform: translateX(700%);
    transform: translateX(700%); }
  .tabs__indicator-8 {
    -webkit-transform: translateX(800%);
    -moz-transform: translateX(800%);
    -ms-transform: translateX(800%);
    transform: translateX(800%); }
  .tabs__indicator-9 {
    -webkit-transform: translateX(900%);
    -moz-transform: translateX(900%);
    -ms-transform: translateX(900%);
    transform: translateX(900%); }
  .tabs__indicator-10 {
    -webkit-transform: translateX(1000%);
    -moz-transform: translateX(1000%);
    -ms-transform: translateX(1000%);
    transform: translateX(1000%); }
  .tabs__indicator-11 {
    -webkit-transform: translateX(1100%);
    -moz-transform: translateX(1100%);
    -ms-transform: translateX(1100%);
    transform: translateX(1100%); }
  .tabs__indicator-12 {
    -webkit-transform: translateX(1200%);
    -moz-transform: translateX(1200%);
    -ms-transform: translateX(1200%);
    transform: translateX(1200%); }
  .tabs__indicator-13 {
    -webkit-transform: translateX(1300%);
    -moz-transform: translateX(1300%);
    -ms-transform: translateX(1300%);
    transform: translateX(1300%); }
  .tabs__indicator-14 {
    -webkit-transform: translateX(1400%);
    -moz-transform: translateX(1400%);
    -ms-transform: translateX(1400%);
    transform: translateX(1400%); }
  .tabs__indicator-15 {
    -webkit-transform: translateX(1500%);
    -moz-transform: translateX(1500%);
    -ms-transform: translateX(1500%);
    transform: translateX(1500%); }
  .tabs__indicator-16 {
    -webkit-transform: translateX(1600%);
    -moz-transform: translateX(1600%);
    -ms-transform: translateX(1600%);
    transform: translateX(1600%); }
  .tabs__indicator-17 {
    -webkit-transform: translateX(1700%);
    -moz-transform: translateX(1700%);
    -ms-transform: translateX(1700%);
    transform: translateX(1700%); }
  .tabs__indicator-18 {
    -webkit-transform: translateX(1800%);
    -moz-transform: translateX(1800%);
    -ms-transform: translateX(1800%);
    transform: translateX(1800%); }
  .tabs__indicator-19 {
    -webkit-transform: translateX(1900%);
    -moz-transform: translateX(1900%);
    -ms-transform: translateX(1900%);
    transform: translateX(1900%); }
  .tabs__indicator-20 {
    -webkit-transform: translateX(2000%);
    -moz-transform: translateX(2000%);
    -ms-transform: translateX(2000%);
    transform: translateX(2000%); }
  .tabs__indicator-21 {
    -webkit-transform: translateX(2100%);
    -moz-transform: translateX(2100%);
    -ms-transform: translateX(2100%);
    transform: translateX(2100%); }
  .tabs__indicator-22 {
    -webkit-transform: translateX(2200%);
    -moz-transform: translateX(2200%);
    -ms-transform: translateX(2200%);
    transform: translateX(2200%); }
  .tabs__indicator-23 {
    -webkit-transform: translateX(2300%);
    -moz-transform: translateX(2300%);
    -ms-transform: translateX(2300%);
    transform: translateX(2300%); }
  .tabs__indicator-24 {
    -webkit-transform: translateX(2400%);
    -moz-transform: translateX(2400%);
    -ms-transform: translateX(2400%);
    transform: translateX(2400%); }
  .tabs__indicator-25 {
    -webkit-transform: translateX(2500%);
    -moz-transform: translateX(2500%);
    -ms-transform: translateX(2500%);
    transform: translateX(2500%); }
  .tabs__indicator-26 {
    -webkit-transform: translateX(2600%);
    -moz-transform: translateX(2600%);
    -ms-transform: translateX(2600%);
    transform: translateX(2600%); }
  .tabs__indicator-27 {
    -webkit-transform: translateX(2700%);
    -moz-transform: translateX(2700%);
    -ms-transform: translateX(2700%);
    transform: translateX(2700%); }
  .tabs__indicator-28 {
    -webkit-transform: translateX(2800%);
    -moz-transform: translateX(2800%);
    -ms-transform: translateX(2800%);
    transform: translateX(2800%); }
  .tabs__indicator-29 {
    -webkit-transform: translateX(2900%);
    -moz-transform: translateX(2900%);
    -ms-transform: translateX(2900%);
    transform: translateX(2900%); }
  .tabs__indicator-30 {
    -webkit-transform: translateX(3000%);
    -moz-transform: translateX(3000%);
    -ms-transform: translateX(3000%);
    transform: translateX(3000%); }
  [dir="rtl"] .tabs__indicator-1 {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%); }
  [dir="rtl"] .tabs__indicator-2 {
    -webkit-transform: translateX(-200%);
    -moz-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%); }
  [dir="rtl"] .tabs__indicator-3 {
    -webkit-transform: translateX(-300%);
    -moz-transform: translateX(-300%);
    -ms-transform: translateX(-300%);
    transform: translateX(-300%); }
  [dir="rtl"] .tabs__indicator-4 {
    -webkit-transform: translateX(-400%);
    -moz-transform: translateX(-400%);
    -ms-transform: translateX(-400%);
    transform: translateX(-400%); }
  [dir="rtl"] .tabs__indicator-5 {
    -webkit-transform: translateX(-500%);
    -moz-transform: translateX(-500%);
    -ms-transform: translateX(-500%);
    transform: translateX(-500%); }
  [dir="rtl"] .tabs__indicator-6 {
    -webkit-transform: translateX(-600%);
    -moz-transform: translateX(-600%);
    -ms-transform: translateX(-600%);
    transform: translateX(-600%); }
  [dir="rtl"] .tabs__indicator-7 {
    -webkit-transform: translateX(-700%);
    -moz-transform: translateX(-700%);
    -ms-transform: translateX(-700%);
    transform: translateX(-700%); }
  [dir="rtl"] .tabs__indicator-8 {
    -webkit-transform: translateX(-800%);
    -moz-transform: translateX(-800%);
    -ms-transform: translateX(-800%);
    transform: translateX(-800%); }
  [dir="rtl"] .tabs__indicator-9 {
    -webkit-transform: translateX(-900%);
    -moz-transform: translateX(-900%);
    -ms-transform: translateX(-900%);
    transform: translateX(-900%); }
  [dir="rtl"] .tabs__indicator-10 {
    -webkit-transform: translateX(-1000%);
    -moz-transform: translateX(-1000%);
    -ms-transform: translateX(-1000%);
    transform: translateX(-1000%); }
  [dir="rtl"] .tabs__indicator-11 {
    -webkit-transform: translateX(-1100%);
    -moz-transform: translateX(-1100%);
    -ms-transform: translateX(-1100%);
    transform: translateX(-1100%); }
  [dir="rtl"] .tabs__indicator-12 {
    -webkit-transform: translateX(-1200%);
    -moz-transform: translateX(-1200%);
    -ms-transform: translateX(-1200%);
    transform: translateX(-1200%); }
  [dir="rtl"] .tabs__indicator-13 {
    -webkit-transform: translateX(-1300%);
    -moz-transform: translateX(-1300%);
    -ms-transform: translateX(-1300%);
    transform: translateX(-1300%); }
  [dir="rtl"] .tabs__indicator-14 {
    -webkit-transform: translateX(-1400%);
    -moz-transform: translateX(-1400%);
    -ms-transform: translateX(-1400%);
    transform: translateX(-1400%); }
  [dir="rtl"] .tabs__indicator-15 {
    -webkit-transform: translateX(-1500%);
    -moz-transform: translateX(-1500%);
    -ms-transform: translateX(-1500%);
    transform: translateX(-1500%); }
  [dir="rtl"] .tabs__indicator-16 {
    -webkit-transform: translateX(-1600%);
    -moz-transform: translateX(-1600%);
    -ms-transform: translateX(-1600%);
    transform: translateX(-1600%); }
  [dir="rtl"] .tabs__indicator-17 {
    -webkit-transform: translateX(-1700%);
    -moz-transform: translateX(-1700%);
    -ms-transform: translateX(-1700%);
    transform: translateX(-1700%); }
  [dir="rtl"] .tabs__indicator-18 {
    -webkit-transform: translateX(-1800%);
    -moz-transform: translateX(-1800%);
    -ms-transform: translateX(-1800%);
    transform: translateX(-1800%); }
  [dir="rtl"] .tabs__indicator-19 {
    -webkit-transform: translateX(-1900%);
    -moz-transform: translateX(-1900%);
    -ms-transform: translateX(-1900%);
    transform: translateX(-1900%); }
  [dir="rtl"] .tabs__indicator-20 {
    -webkit-transform: translateX(-2000%);
    -moz-transform: translateX(-2000%);
    -ms-transform: translateX(-2000%);
    transform: translateX(-2000%); }
  [dir="rtl"] .tabs__indicator-21 {
    -webkit-transform: translateX(-2100%);
    -moz-transform: translateX(-2100%);
    -ms-transform: translateX(-2100%);
    transform: translateX(-2100%); }
  [dir="rtl"] .tabs__indicator-22 {
    -webkit-transform: translateX(-2200%);
    -moz-transform: translateX(-2200%);
    -ms-transform: translateX(-2200%);
    transform: translateX(-2200%); }
  [dir="rtl"] .tabs__indicator-23 {
    -webkit-transform: translateX(-2300%);
    -moz-transform: translateX(-2300%);
    -ms-transform: translateX(-2300%);
    transform: translateX(-2300%); }
  [dir="rtl"] .tabs__indicator-24 {
    -webkit-transform: translateX(-2400%);
    -moz-transform: translateX(-2400%);
    -ms-transform: translateX(-2400%);
    transform: translateX(-2400%); }
  [dir="rtl"] .tabs__indicator-25 {
    -webkit-transform: translateX(-2500%);
    -moz-transform: translateX(-2500%);
    -ms-transform: translateX(-2500%);
    transform: translateX(-2500%); }
  [dir="rtl"] .tabs__indicator-26 {
    -webkit-transform: translateX(-2600%);
    -moz-transform: translateX(-2600%);
    -ms-transform: translateX(-2600%);
    transform: translateX(-2600%); }
  [dir="rtl"] .tabs__indicator-27 {
    -webkit-transform: translateX(-2700%);
    -moz-transform: translateX(-2700%);
    -ms-transform: translateX(-2700%);
    transform: translateX(-2700%); }
  [dir="rtl"] .tabs__indicator-28 {
    -webkit-transform: translateX(-2800%);
    -moz-transform: translateX(-2800%);
    -ms-transform: translateX(-2800%);
    transform: translateX(-2800%); }
  [dir="rtl"] .tabs__indicator-29 {
    -webkit-transform: translateX(-2900%);
    -moz-transform: translateX(-2900%);
    -ms-transform: translateX(-2900%);
    transform: translateX(-2900%); }
  [dir="rtl"] .tabs__indicator-30 {
    -webkit-transform: translateX(-3000%);
    -moz-transform: translateX(-3000%);
    -ms-transform: translateX(-3000%);
    transform: translateX(-3000%); }

.separated {
  border-bottom: 1px solid #d9dadb; }
  .separated--bottom-dark {
    border-bottom: 1px solid #d9dadb; }
  .separated--bottom-light {
    border-bottom: 1px solid #ebeced; }
  .separated--top-light {
    border-top: 1px solid #ebeced; }
  .separated--top-dark {
    border-top: 1px solid #d9dadb; }
  .separated--right-dark {
    border-right: 1px solid #d9dadb; }
  .separated--vertical-light {
    border-left: 1px solid #ebeced; }
    .separated--vertical-light:first-child {
      border-left: 1px solid transparent; }

.icon-button {
  width: 24px;
  height: 24px;
  border-color: transparent;
  background-color: transparent;
  display: list-item;
  /*opacity: .7;*/
  /* for fontawesome */
  color: #fff;
  font-size: 1.25rem; }
  .icon-button--disabled {
    opacity: .3; }
  .icon-button > svg {
    margin: auto; }

.shadow--std, .card__content {
  box-shadow: 0 1px 2px 0 #cacbcc; }

.text--left-menu-selected {
  color: #4b4c4d;
  font-size: 0.8125rem; }

.text--text-field-normal, .field, input[type='text'],
input[role='combobox'],
input[type='date'],
input[type='email'],
input[type='time'],
textarea, .contact-field {
  color: #646566;
  font-size: 0.875rem; }

.text--placeholder, .placeholder, input[type='text']::placeholder,
input[role='combobox']::placeholder,
input[type='date']::placeholder,
input[type='email']::placeholder,
input[type='time']::placeholder,
textarea::placeholder {
  color: #969899;
  font-size: 0.875rem; }

.text--big-header {
  color: #646566;
  font-size: 1.25rem; }

.icon {
  display: inline-block;
  width: 24px;
  height: 24px; }
  .icon--small {
    width: 16px;
    height: 16px; }
  .icon--logo {
    width: 85px;
    height: 44px; }
  .icon--large {
    width: 48px;
    height: 48px; }
  .icon--massive {
    width: 120px;
    height: 120px; }
  .icon--logo-blue {
    width: 62px;
    height: 32px; }

.icon-big {
  width: 44px;
  height: 44px; }

[dir="rtl"] .icon-oriented {
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1); }

.icon-container {
  padding: 0.75rem 0.75rem 0.75rem 1.25rem; }
  [dir="rtl"] .icon-container {
    padding: 0.75rem 1.25rem 0.75rem 0.75rem; }

.icon-dimensions-font-awesome {
  width: 24px;
  height: 24px;
  font-size: 20px;
  text-align: center;
  color: #969899; }

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

.dropup,
.dropdown {
  position: relative; }

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

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 16px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box; }
  .dropdown-menu.pull-right {
    right: 0;
    left: auto; }
  .dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857;
    color: #646566;
    white-space: nowrap; }

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

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

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

.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  cursor: none; }

.open > .dropdown-menu {
  display: block; }

.open > a {
  outline: 0; }

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

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

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 0.85rem;
  line-height: 1.42857;
  color: #f7f9fa;
  white-space: nowrap; }

.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990; }

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

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: ""; }

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px; }

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto; }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto; } }

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  border-radius: 3px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  .btn:hover, .btn:focus, .btn.focus {
    color: #333;
    text-decoration: none; }
  .btn:active, .btn.active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  .btn.disabled, .btn[disabled],
  fieldset[disabled] .btn {
    cursor: not-allowed;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none; }

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

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc; }
  .btn-default:focus, .btn-default.focus {
    color: #333;
    border-color: #8c8c8c; }
  .btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad; }
  .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad; }
    .btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus,
    .open > .btn-default.dropdown-toggle:hover,
    .open > .btn-default.dropdown-toggle:focus,
    .open > .btn-default.dropdown-toggle.focus {
      color: #333;
      border-color: #8c8c8c; }
  .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    background-image: none; }
  .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus,
  fieldset[disabled] .btn-default:hover,
  fieldset[disabled] .btn-default:focus,
  fieldset[disabled] .btn-default.focus {
    background-color: #fff;
    border-color: #ccc; }
  .btn-default .badge {
    color: #fff;
    background-color: #333; }

.btn-primary {
  color: #fff;
  background-color: #0280d0;
  border-color: #0270b7; }
  .btn-primary:focus, .btn-primary.focus {
    color: #fff;
    border-color: #012338; }
  .btn-primary:hover {
    color: #fff;
    background-color: #02619d;
    border-color: #014b7a; }
  .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #02619d;
    border-color: #014b7a; }
    .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus,
    .open > .btn-primary.dropdown-toggle:hover,
    .open > .btn-primary.dropdown-toggle:focus,
    .open > .btn-primary.dropdown-toggle.focus {
      color: #fff;
      border-color: #012338; }
  .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    background-image: none; }
  .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus,
  fieldset[disabled] .btn-primary:hover,
  fieldset[disabled] .btn-primary:focus,
  fieldset[disabled] .btn-primary.focus {
    background-color: #0280d0;
    border-color: #0270b7; }
  .btn-primary .badge {
    color: #0280d0;
    background-color: #fff; }

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c; }
  .btn-success:focus, .btn-success.focus {
    color: #fff;
    border-color: #255625; }
  .btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439; }
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #449d44;
    border-color: #398439; }
    .btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus,
    .open > .btn-success.dropdown-toggle:hover,
    .open > .btn-success.dropdown-toggle:focus,
    .open > .btn-success.dropdown-toggle.focus {
      color: #fff;
      border-color: #255625; }
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    background-image: none; }
  .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus,
  fieldset[disabled] .btn-success:hover,
  fieldset[disabled] .btn-success:focus,
  fieldset[disabled] .btn-success.focus {
    background-color: #5cb85c;
    border-color: #4cae4c; }
  .btn-success .badge {
    color: #5cb85c;
    background-color: #fff; }

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da; }
  .btn-info:focus, .btn-info.focus {
    color: #fff;
    border-color: #1b6d85; }
  .btn-info:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc; }
    .btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus,
    .open > .btn-info.dropdown-toggle:hover,
    .open > .btn-info.dropdown-toggle:focus,
    .open > .btn-info.dropdown-toggle.focus {
      color: #fff;
      border-color: #1b6d85; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    background-image: none; }
  .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus,
  fieldset[disabled] .btn-info:hover,
  fieldset[disabled] .btn-info:focus,
  fieldset[disabled] .btn-info.focus {
    background-color: #5bc0de;
    border-color: #46b8da; }
  .btn-info .badge {
    color: #5bc0de;
    background-color: #fff; }

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236; }
  .btn-warning:focus, .btn-warning.focus {
    color: #fff;
    border-color: #985f0d; }
  .btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512; }
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512; }
    .btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus,
    .open > .btn-warning.dropdown-toggle:hover,
    .open > .btn-warning.dropdown-toggle:focus,
    .open > .btn-warning.dropdown-toggle.focus {
      color: #fff;
      border-color: #985f0d; }
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    background-image: none; }
  .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus,
  fieldset[disabled] .btn-warning:hover,
  fieldset[disabled] .btn-warning:focus,
  fieldset[disabled] .btn-warning.focus {
    background-color: #f0ad4e;
    border-color: #eea236; }
  .btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff; }

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a; }
  .btn-danger:focus, .btn-danger.focus {
    color: #fff;
    border-color: #761c19; }
  .btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925; }
    .btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus,
    .open > .btn-danger.dropdown-toggle:hover,
    .open > .btn-danger.dropdown-toggle:focus,
    .open > .btn-danger.dropdown-toggle.focus {
      color: #fff;
      border-color: #761c19; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    background-image: none; }
  .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus,
  fieldset[disabled] .btn-danger:hover,
  fieldset[disabled] .btn-danger:focus,
  fieldset[disabled] .btn-danger.focus {
    background-color: #d9534f;
    border-color: #d43f3a; }
  .btn-danger .badge {
    color: #d9534f;
    background-color: #fff; }

.btn-link {
  color: #0280d0;
  font-weight: normal;
  border-radius: 0; }
  .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled],
  fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
    border-color: transparent; }
  .btn-link:hover, .btn-link:focus {
    color: #015184;
    text-decoration: underline;
    background-color: transparent; }
  .btn-link[disabled]:hover, .btn-link[disabled]:focus,
  fieldset[disabled] .btn-link:hover,
  fieldset[disabled] .btn-link:focus {
    color: #f7f9fa;
    text-decoration: none; }

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

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

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

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

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

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

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle; }
  .btn-group > .btn,
  .btn-group-vertical > .btn {
    position: relative;
    float: left; }
    .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
    .btn-group-vertical > .btn:hover,
    .btn-group-vertical > .btn:focus,
    .btn-group-vertical > .btn:active,
    .btn-group-vertical > .btn.active {
      z-index: 2; }

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px; }

.btn-toolbar {
  margin-left: -5px; }
  .btn-toolbar:before, .btn-toolbar:after {
    content: " ";
    display: table; }
  .btn-toolbar:after {
    clear: both; }
  .btn-toolbar .btn,
  .btn-toolbar .btn-group,
  .btn-toolbar .input-group {
    float: left; }
  .btn-toolbar > .btn,
  .btn-toolbar > .btn-group,
  .btn-toolbar > .input-group {
    margin-left: 5px; }

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0; }

.btn-group > .btn:first-child {
  margin-left: 0; }
  .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0; }

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group > .btn-group {
  float: left; }

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0; }

.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px; }

.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px; }

.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  .btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none; }

.btn .caret {
  margin-left: 0; }

.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0; }

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px; }

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%; }

.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table; }

.btn-group-vertical > .btn-group:after {
  clear: both; }

.btn-group-vertical > .btn-group > .btn {
  float: none; }

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0; }

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0; }

.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate; }
  .btn-group-justified > .btn,
  .btn-group-justified > .btn-group {
    float: none;
    display: table-cell;
    width: 1%; }
  .btn-group-justified > .btn-group .btn {
    width: 100%; }
  .btn-group-justified > .btn-group .dropdown-menu {
    left: auto; }

[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none; }

/**
 * React Select
 * ============
 * Created by Jed Watson and Joss Mackison for KeystoneJS, http://www.keystonejs.com/
 * https://twitter.com/jedwatson https://twitter.com/jossmackison https://twitter.com/keystonejs
 * MIT License: https://github.com/JedWatson/react-select
*/
@keyframes Select-animation-spin {
  to {
    transform: rotate(1turn); } }

@-webkit-keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn); } }

.Select {
  position: relative;
  font-size: 0.875rem; }
  .Select,
  .Select div,
  .Select input,
  .Select span {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  .Select.is-disabled > .Select-control {
    background-color: transparent; }
    .Select.is-disabled > .Select-control:hover {
      box-shadow: none; }
  .Select.is-disabled .Select-arrow-zone {
    cursor: default;
    pointer-events: none; }

.Select-control {
  background-color: transparent;
  border-color: rgba(13, 13, 13, 0) transparent rgba(0, 0, 0, 0);
  border-radius: 0;
  border: 0 solid transparent;
  color: #646566;
  cursor: default;
  display: table;
  border-spacing: 0;
  border-collapse: separate;
  min-height: 3rem;
  outline: none;
  overflow: hidden;
  position: relative;
  width: 100%; }
  .Select-control:hover {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06); }
  .Select-control .Select-input:focus {
    outline: none; }

.is-searchable.is-open > .Select-control {
  cursor: text; }

.is-open > .Select-control {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: transparent;
  border-color: rgba(0, 0, 0, 0) transparent rgba(13, 13, 13, 0); }
  .is-open > .Select-control > .Select-arrow {
    border-color: transparent transparent #999;
    border-width: 0 5px 5px; }

.is-searchable.is-focused:not(.is-open) > .Select-control {
  cursor: text; }

.is-focused:not(.is-open) > .Select-control {
  border-color: transparent rgba(13, 13, 13, 0) rgba(13, 13, 13, 0);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 5px -1px fade(transparent, 50%); }

.Select-placeholder {
  color: #969899; }

.Select-placeholder,
.Select--single > .Select-control .Select-value {
  bottom: 0;
  left: 0;
  line-height: 3rem;
  padding-left: 16px;
  padding-right: 16px;
  position: absolute;
  right: 0;
  top: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.has-value.Select--single:not(.is-focused) > .Select-control > .Select-value .Select-value-label,
.has-value.is-pseudo-focused.Select--single > .Select-control > .Select-value .Select-value-label {
  color: #646566; }

.has-value.Select--single:not(.is-focused) > .Select-control > .Select-value a.Select-value-label,
.has-value.is-pseudo-focused.Select--single > .Select-control > .Select-value a.Select-value-label {
  cursor: pointer;
  text-decoration: none; }
  .has-value.Select--single:not(.is-focused) > .Select-control > .Select-value a.Select-value-label:hover,
  .has-value.is-pseudo-focused.Select--single > .Select-control > .Select-value a.Select-value-label:hover {
    color: transparent;
    text-decoration: underline; }

.Select-input {
  height: 3rem;
  padding-left: 0;
  padding-right: 16px;
  vertical-align: middle; }
  .Select-input > input {
    background: none transparent;
    border: 0 none;
    box-shadow: none;
    cursor: default;
    display: inline-block;
    font-family: inherit;
    font-size: inherit;
    margin: 0;
    outline: none;
    line-height: 14px;
    /* For IE 8 compatibility */
    padding: -7.5rem 0 -3.5rem;
    /* For IE 8 compatibility */
    -webkit-appearance: none; }
    .is-focused .Select-input > input {
      cursor: text; }

.has-value.is-pseudo-focused .Select-input {
  opacity: 0; }

.Select-control:not(.is-searchable) > .Select-input {
  outline: none; }

.Select-loading-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 16px; }

.Select-loading {
  -webkit-animation: Select-animation-spin 400ms infinite linear;
  -o-animation: Select-animation-spin 400ms infinite linear;
  animation: Select-animation-spin 400ms infinite linear;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid transparent;
  border-right-color: #646566;
  display: inline-block;
  position: relative;
  vertical-align: middle; }

.Select-clear-zone {
  -webkit-animation: Select-animation-fadeIn 200ms;
  -o-animation: Select-animation-fadeIn 200ms;
  animation: Select-animation-fadeIn 200ms;
  color: #999;
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 1.5rem; }
  .Select-clear-zone:hover {
    color: #D0021B; }

.Select-clear {
  display: inline-block;
  font-size: 1rem;
  line-height: 1; }

.Select--multi .Select-clear-zone {
  width: 1.5rem; }

.Select--multi .Select-multi-value-wrapper {
  display: inline-block; }

.Select-arrow-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 25px;
  padding-right: 16px;
  padding-left: 5px; }
  [dir="rtl"] .Select-arrow-zone {
    padding-right: 5px;
    padding-left: 16px; }

.Select-arrow {
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 2.5px;
  display: inline-block;
  height: 0;
  width: 0; }

.is-open .Select-arrow,
.Select-arrow-zone:hover > .Select-arrow {
  border-top-color: #666; }

.Select-clear-zone {
  padding-right: 5px; }

th .Select-arrow-container {
  float: right;
  padding-left: 5px; }

.flip-image {
  -moz-transform: scaleY(-1);
  -o-transform: scaleY(-1);
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
  filter: FlipV;
  -ms-filter: "FlipV"; }

.collapsible-group-header {
  cursor: pointer; }

.collapsible-group-header .Select-arrow {
  margin-right: 5px;
  transition: transform 300ms; }
  [dir="rtl"] .collapsible-group-header .Select-arrow {
    margin-left: 5px;
    margin-right: 0; }

.collapsible-group-header.is-open .Select-arrow {
  transform: rotateZ(180deg); }

.collapsible-group-header .spinner {
  float: right;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.4rem; }

.collapsible-group-header .overlay {
  background-color: #f7f9fa;
  border-bottom: 1px solid #ebeced; }

@-webkit-keyframes Select-animation-fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes Select-animation-fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.Select-menu-outer {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-color: #fff;
  border: 1px solid #d9dadb;
  border-top-color: rgba(217, 218, 219, 0.5);
  box-sizing: border-box;
  max-height: 200px;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 1000;
  -webkit-overflow-scrolling: touch; }

.Select-menu {
  max-height: 198px;
  overflow-y: auto; }

.Select-option {
  box-sizing: border-box;
  color: #979899;
  cursor: pointer;
  display: block;
  padding: 8px 16px; }
  .Select-option:last-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
  .Select-option.is-selected {
    background-color: #f5faff;
    color: #646566; }
  .Select-option.is-focused {
    background-color: #f2f9fc;
    color: #646566; }
  .Select-option.is-disabled {
    color: #fefefe;
    cursor: default; }

.Select-noresults {
  box-sizing: border-box;
  color: #cacbcc;
  cursor: default;
  display: block;
  padding: 0 16px; }

.Select--multi .Select-input {
  vertical-align: middle;
  margin-left: 16px;
  padding: 0; }
  .Select--multi .Select-input > input {
    padding: 0; }

.Select--multi.has-value .Select-input {
  margin-left: 6px; }

.Select--multi .Select-value {
  background-color: #dce7ee;
  border-radius: 2px;
  border: 1px solid transparent;
  color: #0274bf;
  display: inline-block;
  font-size: 0.9em;
  margin-left: 6px;
  margin-top: 12px;
  vertical-align: top;
  height: 24px; }

.Select--multi .Select-value-icon,
.Select--multi .Select-value-label {
  display: inline-block;
  vertical-align: middle; }

.Select--multi .Select-value-label {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  cursor: default;
  padding: 0 5px;
  height: 22px;
  line-height: 22px; }

.Select--multi a.Select-value-label {
  color: #0274bf;
  cursor: pointer;
  text-decoration: none; }
  .Select--multi a.Select-value-label:hover {
    text-decoration: underline; }

.Select--multi .Select-value-icon {
  cursor: pointer;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-right: 1px solid transparent;
  padding: 0 5px 0;
  height: 22px;
  line-height: 22px; }
  .Select--multi .Select-value-icon:hover, .Select--multi .Select-value-icon:focus {
    background-color: #cbdbe6;
    color: #0265a6; }
  .Select--multi .Select-value-icon:active {
    background-color: transparent; }

.Select--multi.is-disabled .Select-value {
  background-color: #fcfcfc;
  border: 1px solid #e3e3e3;
  color: #333; }

.Select--multi.is-disabled .Select-value-icon {
  cursor: not-allowed;
  border-right: 1px solid #e3e3e3; }
  .Select--multi.is-disabled .Select-value-icon:hover, .Select--multi.is-disabled .Select-value-icon:focus, .Select--multi.is-disabled .Select-value-icon:active {
    background-color: #fcfcfc; }

@keyframes Select-animation-spin {
  to {
    transform: rotate(1turn); } }

@-webkit-keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn); } }

/*!
 * FullCalendar v2.7.0 Stylesheet
 * Docs & License: http://fullcalendar.io/
 * (c) 2015 Adam Shaw
 */
.fc {
  direction: ltr;
  text-align: left; }

.fc-rtl {
  text-align: right; }

body .fc {
  /* extra precedence to overcome jqui */
  font-size: 1em; }

/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-content,
.fc-unthemed .fc-popover {
  border-color: #ddd; }

.fc-unthemed .fc-popover {
  background-color: #fff; }

.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover .fc-header {
  background: #eee; }

.fc-unthemed .fc-popover .fc-header .fc-close {
  color: #666; }

.fc-unthemed .fc-today {
  background: #fcf8e3; }

.fc-highlight {
  /* when user is selecting cells */
  background: #bce8f1;
  opacity: .3;
  filter: alpha(opacity=30);
  /* for IE */ }

.fc-bgevent {
  /* default look for background events */
  background: #8fdf82;
  opacity: .3;
  filter: alpha(opacity=30);
  /* for IE */ }

.fc-nonbusiness {
  /* default look for non-business-hours areas */
  /* will inherit .fc-bgevent's styles */
  background: #d7d7d7; }

/* Icons (inline elements with styled text that mock arrow icons)
--------------------------------------------------------------------------------------------------*/
.fc-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1em;
  font-size: 1em;
  text-align: center;
  overflow: hidden;
  /* don't allow browser text-selection */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/*
Acceptable font-family overrides for individual icons:
    "Arial", sans-serif
    "Times New Roman", serif

NOTE: use percentage font sizes or else old IE chokes
*/
.fc-icon:after {
  position: relative;
  margin: 0 -1em;
  /* ensures character will be centered, regardless of width */ }

.fc-icon-left-single-arrow:after {
  content: "\2039";
  font-weight: bold;
  font-size: 200%;
  top: -7%;
  left: 3%; }

.fc-icon-right-single-arrow:after {
  content: "\203A";
  font-weight: bold;
  font-size: 200%;
  top: -7%;
  left: -3%; }

.fc-icon-left-double-arrow:after {
  content: "\AB";
  font-size: 160%;
  top: -7%; }

.fc-icon-right-double-arrow:after {
  content: "\BB";
  font-size: 160%;
  top: -7%; }

.fc-icon-left-triangle:after {
  content: "\25C4";
  font-size: 125%;
  top: 3%;
  left: -2%; }

.fc-icon-right-triangle:after {
  content: "\25BA";
  font-size: 125%;
  top: 3%;
  left: 2%; }

.fc-icon-down-triangle:after {
  content: "\25BC";
  font-size: 125%;
  top: 2%; }

.fc-icon-x:after {
  content: "\D7";
  font-size: 200%;
  top: 6%; }

/* Buttons (styled <button> tags, normalized to work cross-browser)
--------------------------------------------------------------------------------------------------*/
.fc button {
  /* force height to include the border and padding */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* dimensions */
  margin: 0;
  height: 2.1em;
  padding: 0 .6em;
  /* text & cursor */
  font-size: 1em;
  /* normalize */
  white-space: nowrap;
  cursor: pointer; }

/* Firefox has an annoying inner border */
.fc button::-moz-focus-inner {
  margin: 0;
  padding: 0; }

.fc-state-default {
  /* non-theme */
  border: 1px solid; }

.fc-state-default.fc-corner-left {
  /* non-theme */
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px; }

.fc-state-default.fc-corner-right {
  /* non-theme */
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px; }

/* icons in buttons */
.fc button .fc-icon {
  /* non-theme */
  position: relative;
  top: -0.05em;
  /* seems to be a good adjustment across browsers */
  margin: 0 .2em;
  vertical-align: middle; }

/*
  button states
  borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
*/
.fc-state-default {
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); }

.fc-state-hover,
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
  color: #333333;
  background-color: #e6e6e6; }

.fc-state-hover {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear; }

.fc-state-down,
.fc-state-active {
  background-color: #cccccc;
  background-image: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); }

.fc-state-disabled {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none; }

/* Buttons Groups
--------------------------------------------------------------------------------------------------*/
.fc-button-group {
  display: inline-block; }

/*
every button that is not first in a button group should scootch over one pixel and cover the
previous button's border...
*/
.fc .fc-button-group > * {
  /* extra precedence b/c buttons have margin set to zero */
  float: left;
  margin: 0 0 0 -1px; }

.fc .fc-button-group > :first-child {
  /* same */
  margin-left: 0; }

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-popover {
  position: absolute;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); }

.fc-popover .fc-header {
  /* TODO: be more consistent with fc-head/fc-body */
  padding: 2px 4px; }

.fc-popover .fc-header .fc-title {
  margin: 0 2px; }

.fc-popover .fc-header .fc-close {
  cursor: pointer; }

.fc-ltr .fc-popover .fc-header .fc-title,
.fc-rtl .fc-popover .fc-header .fc-close {
  float: left; }

.fc-rtl .fc-popover .fc-header .fc-title,
.fc-ltr .fc-popover .fc-header .fc-close {
  float: right; }

/* unthemed */
.fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid; }

.fc-unthemed .fc-popover .fc-header .fc-close {
  font-size: .9em;
  margin-top: 2px; }

/* jqui themed */
.fc-popover > .ui-widget-header + .ui-widget-content {
  border-top: 0;
  /* where they meet, let the header have the border */ }

/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/
.fc-divider {
  border-style: solid;
  border-width: 1px; }

hr.fc-divider {
  height: 0;
  margin: 0;
  padding: 0 0 2px;
  /* height is unreliable across browsers, so use padding */
  border-width: 1px 0; }

.fc-clear {
  clear: both; }

.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-helper-skeleton {
  /* these element should always cling to top-left/right corners */
  position: absolute;
  top: 0;
  left: 0;
  right: 0; }

.fc-bg {
  bottom: 0;
  /* strech bg to bottom edge */ }

.fc-bg table {
  height: 100%;
  /* strech bg to bottom edge */ }

/* Tables
--------------------------------------------------------------------------------------------------*/
.fc table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
  /* normalize cross-browser */ }

.fc th {
  text-align: center; }

.fc th,
.fc td {
  border-style: solid;
  border-width: 1px;
  padding: 0;
  vertical-align: top; }

.fc td.fc-today {
  border-style: double;
  /* overcome neighboring borders */ }

/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/
.fc .fc-row {
  /* extra precedence to overcome themes w/ .ui-widget-content forcing a 1px border */
  /* no visible border by default. but make available if need be (scrollbar width compensation) */
  border-style: solid;
  border-width: 0; }

.fc-row table {
  /* don't put left/right border on anything within a fake row.
       the outer tbody will worry about this */
  border-left: 0 hidden transparent;
  border-right: 0 hidden transparent;
  /* no bottom borders on rows */
  border-bottom: 0 hidden transparent; }

.fc-row:first-child table {
  border-top: 0 hidden transparent;
  /* no top border on first row */ }

/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/
.fc-row {
  position: relative; }

.fc-row .fc-bg {
  z-index: 1; }

/* highlighting cells & background event skeleton */
.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
  bottom: 0;
  /* stretch skeleton to bottom of row */ }

.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
  height: 100%;
  /* stretch skeleton to bottom of row */ }

.fc-row .fc-highlight-skeleton td,
.fc-row .fc-bgevent-skeleton td {
  border-color: transparent; }

.fc-row .fc-bgevent-skeleton {
  z-index: 2; }

.fc-row .fc-highlight-skeleton {
  z-index: 3; }

/*
row content (which contains day/week numbers and events) as well as "helper" (which contains
temporary rendered events).
*/
.fc-row .fc-content-skeleton {
  position: relative;
  z-index: 4;
  padding-bottom: 2px;
  /* matches the space above the events */ }

.fc-row .fc-helper-skeleton {
  z-index: 5; }

.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td {
  /* see-through to the background below */
  background: none;
  /* in case <td>s are globally styled */
  border-color: transparent;
  /* don't put a border between events and/or the day number */
  border-bottom: 0; }

.fc-row .fc-content-skeleton tbody td,
.fc-row .fc-helper-skeleton tbody td {
  /* don't put a border between event cells */
  border-top: 0; }

/* Scrolling Container
--------------------------------------------------------------------------------------------------*/
.fc-scroller {
  -webkit-overflow-scrolling: touch; }

/* TODO: move to agenda/basic */
.fc-scroller > .fc-day-grid,
.fc-scroller > .fc-time-grid {
  position: relative;
  /* re-scope all positions */
  width: 100%;
  /* hack to force re-sizing this inner element when scrollbars appear/disappear */ }

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.fc-event {
  position: relative;
  /* for resize handle and other inner positioning */
  display: block;
  /* make the <a> tag block */
  font-size: .85em;
  line-height: 1.3;
  border-radius: 3px;
  border: 1px solid #3a87ad;
  /* default BORDER color */
  background-color: #3a87ad;
  /* default BACKGROUND color */
  font-weight: normal;
  /* undo jqui's ui-widget-header bold */ }

/* overpower some of bootstrap's and jqui's styles on <a> tags */
.fc-event,
.fc-event:hover,
.ui-widget .fc-event {
  color: #fff;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */ }

.fc-event[href],
.fc-event.fc-draggable {
  cursor: pointer;
  /* give events with links and draggable events a hand mouse pointer */ }

.fc-not-allowed,
.fc-not-allowed .fc-event {
  /* to override an event's custom cursor */
  cursor: not-allowed; }

.fc-event .fc-bg {
  /* the generic .fc-bg already does position */
  z-index: 1;
  background: #fff;
  opacity: .25;
  filter: alpha(opacity=25);
  /* for IE */ }

.fc-event .fc-content {
  position: relative;
  z-index: 2; }

/* resizer (cursor AND touch devices) */
.fc-event .fc-resizer {
  position: absolute;
  z-index: 4; }

/* resizer (touch devices) */
.fc-touch .fc-event .fc-resizer {
  display: none;
  /* only show when selected */ }

.fc-touch .fc-event.fc-selected .fc-resizer {
  display: block; }

/* Hit Area (for events and expander)
--------------------------------------------------------------------------------------------------*/
.fc-expander {
  /* fc-event is already position:relative */
  position: relative; }

.fc-touch .fc-expander:before,
.fc-touch .fc-event .fc-resizer:before {
  /* 40x40 touch area */
  content: "";
  position: absolute;
  z-index: 9999;
  /* user of this util can scope within a lower z-index */
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px; }

/* Event Selection (only for touch devices)
--------------------------------------------------------------------------------------------------*/
.fc-event.fc-selected {
  z-index: 9999 !important;
  /* overcomes inline z-index */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); }

.fc-event.fc-selected.fc-dragging {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3); }

/* Horizontal Events
--------------------------------------------------------------------------------------------------*/
/* bigger touch area when selected */
.fc-h-event.fc-selected:before {
  content: "";
  position: absolute;
  z-index: 3;
  /* below resizers */
  top: -10px;
  bottom: -10px;
  left: 0;
  right: 0; }

/* events that are continuing to/from another week. kill rounded corners and butt up against edge */
.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
  margin-left: 0;
  border-left-width: 0;
  padding-left: 1px;
  /* replace the border with padding */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
  margin-right: 0;
  border-right-width: 0;
  padding-right: 1px;
  /* replace the border with padding */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

/* resizer (cursor AND touch devices) */
/* left resizer  */
.fc-ltr .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-end-resizer {
  cursor: w-resize;
  left: -1px;
  /* overcome border */ }

/* right resizer */
.fc-ltr .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-start-resizer {
  cursor: e-resize;
  right: -1px;
  /* overcome border */ }

/* resizer (cursor devices) */
.fc-cursor .fc-h-event .fc-resizer {
  width: 7px;
  top: -1px;
  /* overcome top border */
  bottom: -1px;
  /* overcome bottom border */ }

/* resizer (touch devices) */
.fc-touch .fc-h-event .fc-resizer {
  /* 8x8 little dot */
  border-radius: 4px;
  border-width: 1px;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* vertically center */
  top: 50%;
  margin-top: -4px; }

/* left resizer  */
.fc-touch.fc-ltr .fc-h-event .fc-start-resizer,
.fc-touch.fc-rtl .fc-h-event .fc-end-resizer {
  margin-left: -4px;
  /* centers the 8x8 dot on the left edge */ }

/* right resizer */
.fc-touch.fc-ltr .fc-h-event .fc-end-resizer,
.fc-touch.fc-rtl .fc-h-event .fc-start-resizer {
  margin-right: -4px;
  /* centers the 8x8 dot on the right edge */ }

/* DayGrid events
----------------------------------------------------------------------------------------------------
We use the full "fc-day-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-day-grid-event {
  margin: 1px 2px 0;
  /* spacing between events and edges */
  padding: 0 1px; }

.fc-day-grid-event.fc-selected:after {
  content: "";
  position: absolute;
  z-index: 1;
  /* same z-index as fc-bg, behind text */
  /* overcome the borders */
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  /* darkening effect */
  background: #000;
  opacity: .25;
  filter: alpha(opacity=25);
  /* for IE */ }

.fc-day-grid-event .fc-content {
  /* force events to be one-line tall */
  white-space: nowrap;
  overflow: hidden; }

.fc-day-grid-event .fc-time {
  font-weight: bold; }

/* resizer (cursor devices) */
/* left resizer  */
.fc-cursor.fc-ltr .fc-day-grid-event .fc-start-resizer,
.fc-cursor.fc-rtl .fc-day-grid-event .fc-end-resizer {
  margin-left: -2px;
  /* to the day cell's edge */ }

/* right resizer */
.fc-cursor.fc-ltr .fc-day-grid-event .fc-end-resizer,
.fc-cursor.fc-rtl .fc-day-grid-event .fc-start-resizer {
  margin-right: -2px;
  /* to the day cell's edge */ }

/* Event Limiting
--------------------------------------------------------------------------------------------------*/
/* "more" link that represents hidden events */
a.fc-more {
  margin: 1px 3px;
  font-size: .85em;
  cursor: pointer;
  text-decoration: none; }

a.fc-more:hover {
  text-decoration: underline; }

.fc-limited {
  /* rows and cells that are hidden because of a "more" link */
  display: none; }

/* popover that appears when "more" link is clicked */
.fc-day-grid .fc-row {
  z-index: 1;
  /* make the "more" popover one higher than this */ }

.fc-more-popover {
  z-index: 2;
  width: 220px; }

.fc-more-popover .fc-event-container {
  padding: 10px; }

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-now-indicator {
  position: absolute;
  border: 0 solid red; }

/* Utilities
--------------------------------------------------------------------------------------------------*/
.fc-unselectable {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

/* Toolbar
--------------------------------------------------------------------------------------------------*/
.fc-toolbar {
  text-align: center;
  margin-bottom: 1em; }

.fc-toolbar .fc-left {
  float: left; }

.fc-toolbar .fc-right {
  float: right; }

.fc-toolbar .fc-center {
  display: inline-block; }

/* the things within each left/right/center section */
.fc .fc-toolbar > * > * {
  /* extra precedence to override button border margins */
  float: left;
  margin-left: .75em; }

/* the first thing within each left/center/right section */
.fc .fc-toolbar > * > :first-child {
  /* extra precedence to override button border margins */
  margin-left: 0; }

/* title text */
.fc-toolbar h2 {
  margin: 0; }

/* button layering (for border precedence) */
.fc-toolbar button {
  position: relative; }

.fc-toolbar .fc-state-hover,
.fc-toolbar .ui-state-hover {
  z-index: 2; }

.fc-toolbar .fc-state-down {
  z-index: 3; }

.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
  z-index: 4; }

.fc-toolbar button:focus {
  z-index: 5; }

/* View Structure
--------------------------------------------------------------------------------------------------*/
/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

.fc-view,
.fc-view > table {
  /* so dragged elements can be above the view's main element */
  position: relative;
  z-index: 1; }

/* BasicView
--------------------------------------------------------------------------------------------------*/
/* day row structure */
.fc-basicWeek-view .fc-content-skeleton,
.fc-basicDay-view .fc-content-skeleton {
  /* we are sure there are no day numbers in these views, so... */
  padding-top: 1px;
  /* add a pixel to make sure there are 2px padding above events */
  padding-bottom: 1em;
  /* ensure a space at bottom of cell for user selecting/clicking */ }

.fc-basic-view .fc-body .fc-row {
  min-height: 4em;
  /* ensure that all rows are at least this tall */ }

/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */
.fc-row.fc-rigid {
  overflow: hidden; }

.fc-row.fc-rigid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0; }

/* week and day number styling */
.fc-basic-view .fc-week-number,
.fc-basic-view .fc-day-number {
  padding: 0 2px; }

.fc-basic-view td.fc-week-number span,
.fc-basic-view td.fc-day-number {
  padding-top: 2px;
  padding-bottom: 2px; }

.fc-basic-view .fc-week-number {
  text-align: center; }

.fc-basic-view .fc-week-number span {
  /* work around the way we do column resizing and ensure a minimum width */
  display: inline-block;
  min-width: 1.25em; }

.fc-ltr .fc-basic-view .fc-day-number {
  text-align: right; }

.fc-rtl .fc-basic-view .fc-day-number {
  text-align: left; }

.fc-day-number.fc-other-month {
  opacity: 0.3;
  filter: alpha(opacity=30);
  /* for IE */
  /* opacity with small font can sometimes look too faded
       might want to set the 'color' property instead
       making day-numbers bold also fixes the problem */ }

/* AgendaView all-day area
--------------------------------------------------------------------------------------------------*/
.fc-agenda-view .fc-day-grid {
  position: relative;
  z-index: 2;
  /* so the "more.." popover will be over the time grid */ }

.fc-agenda-view .fc-day-grid .fc-row {
  min-height: 3em;
  /* all-day section will never get shorter than this */ }

.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
  padding-top: 1px;
  /* add a pixel to make sure there are 2px padding above events */
  padding-bottom: 1em;
  /* give space underneath events for clicking/selecting days */ }

/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/
.fc .fc-axis {
  /* .fc to overcome default cell styles */
  vertical-align: middle;
  padding: 0 4px;
  white-space: nowrap; }

.fc-ltr .fc-axis {
  text-align: right; }

.fc-rtl .fc-axis {
  text-align: left; }

.ui-widget td.fc-axis {
  font-weight: normal;
  /* overcome jqui theme making it bold */ }

/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/
.fc-time-grid-container,
.fc-time-grid {
  /* so slats/bg/content/etc positions get scoped within here */
  position: relative;
  z-index: 1; }

.fc-time-grid {
  min-height: 100%;
  /* so if height setting is 'auto', .fc-bg stretches to fill height */ }

.fc-time-grid table {
  /* don't put outer borders on slats/bg/content/etc */
  border: 0 hidden transparent; }

.fc-time-grid > .fc-bg {
  z-index: 1; }

.fc-time-grid .fc-slats,
.fc-time-grid > hr {
  /* the <hr> AgendaView injects when grid is shorter than scroller */
  position: relative;
  z-index: 2; }

.fc-time-grid .fc-content-col {
  position: relative;
  /* because now-indicator lives directly inside */ }

.fc-time-grid .fc-content-skeleton {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0; }

/* divs within a cell within the fc-content-skeleton */
.fc-time-grid .fc-business-container {
  position: relative;
  z-index: 1; }

.fc-time-grid .fc-bgevent-container {
  position: relative;
  z-index: 2; }

.fc-time-grid .fc-highlight-container {
  position: relative;
  z-index: 3; }

.fc-time-grid .fc-event-container {
  position: relative;
  z-index: 4; }

.fc-time-grid .fc-now-indicator-line {
  z-index: 5; }

.fc-time-grid .fc-helper-container {
  /* also is fc-event-container */
  position: relative;
  z-index: 6; }

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-slats td {
  height: 1.5em;
  border-bottom: 0;
  /* each cell is responsible for its top border */ }

.fc-time-grid .fc-slats .fc-minor td {
  border-top-style: dotted; }

.fc-time-grid .fc-slats .ui-widget-content {
  /* for jqui theme */
  background: none;
  /* see through to fc-bg */ }

/* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-highlight-container {
  /* a div within a cell within the fc-highlight-skeleton */
  position: relative;
  /* scopes the left/right of the fc-highlight to be in the column */ }

.fc-time-grid .fc-highlight {
  position: absolute;
  left: 0;
  right: 0;
  /* top and bottom will be in by JS */ }

/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/
.fc-ltr .fc-time-grid .fc-event-container {
  /* space on the sides of events for LTR (default) */
  margin: 0 2.5% 0 2px; }

.fc-rtl .fc-time-grid .fc-event-container {
  /* space on the sides of events for RTL */
  margin: 0 2px 0 2.5%; }

.fc-time-grid .fc-event,
.fc-time-grid .fc-bgevent {
  position: absolute;
  z-index: 1;
  /* scope inner z-index's */ }

.fc-time-grid .fc-bgevent {
  /* background events always span full width */
  left: 0;
  right: 0; }

/* Generic Vertical Event
--------------------------------------------------------------------------------------------------*/
.fc-v-event.fc-not-start {
  /* events that are continuing from another day */
  /* replace space made by the top border with padding */
  border-top-width: 0;
  padding-top: 1px;
  /* remove top rounded corners */
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.fc-v-event.fc-not-end {
  /* replace space made by the top border with padding */
  border-bottom-width: 0;
  padding-bottom: 1px;
  /* remove bottom rounded corners */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

/* TimeGrid Event Styling
----------------------------------------------------------------------------------------------------
We use the full "fc-time-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-time-grid-event {
  overflow: hidden;
  /* don't let the bg flow over rounded corners */ }

.fc-time-grid-event.fc-selected {
  /* need to allow touch resizers to extend outside event's bounding box */
  /* common fc-selected styles hide the fc-bg, so don't need this anyway */
  overflow: visible; }

.fc-time-grid-event.fc-selected .fc-bg {
  display: none;
  /* hide semi-white background, to appear darker */ }

.fc-time-grid-event .fc-content {
  overflow: hidden;
  /* for when .fc-selected */ }

.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
  padding: 0 1px; }

.fc-time-grid-event .fc-time {
  font-size: .85em;
  white-space: nowrap; }

/* short mode, where time and title are on the same line */
.fc-time-grid-event.fc-short .fc-content {
  /* don't wrap to second line (now that contents will be inline) */
  white-space: nowrap; }

.fc-time-grid-event.fc-short .fc-time,
.fc-time-grid-event.fc-short .fc-title {
  /* put the time and title on the same line */
  display: inline-block;
  vertical-align: top; }

.fc-time-grid-event.fc-short .fc-time span {
  display: none;
  /* don't display the full time text... */ }

.fc-time-grid-event.fc-short .fc-time:before {
  content: attr(data-start);
  /* ...instead, display only the start time */ }

.fc-time-grid-event.fc-short .fc-time:after {
  content: "\A0-\A0";
  /* seperate with a dash, wrapped in nbsp's */ }

.fc-time-grid-event.fc-short .fc-title {
  font-size: .85em;
  /* make the title text the same size as the time */
  padding: 0;
  /* undo padding from above */ }

/* resizer (cursor device) */
.fc-cursor .fc-time-grid-event .fc-resizer {
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  overflow: hidden;
  line-height: 8px;
  font-size: 11px;
  font-family: monospace;
  text-align: center;
  cursor: s-resize; }

.fc-cursor .fc-time-grid-event .fc-resizer:after {
  content: "="; }

/* resizer (touch device) */
.fc-touch .fc-time-grid-event .fc-resizer {
  /* 10x10 dot */
  border-radius: 5px;
  border-width: 1px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* horizontally center */
  left: 50%;
  margin-left: -5px;
  /* center on the bottom edge */
  bottom: -5px; }

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-now-indicator-line {
  border-top-width: 1px;
  left: 0;
  right: 0; }

/* arrow on axis */
.fc-time-grid .fc-now-indicator-arrow {
  margin-top: -5px;
  /* vertically center on top coordinate */ }

.fc-ltr .fc-time-grid .fc-now-indicator-arrow {
  left: 0;
  /* triangle pointing right... */
  border-width: 5px 0 5px 6px;
  border-top-color: transparent;
  border-bottom-color: transparent; }

.fc-rtl .fc-time-grid .fc-now-indicator-arrow {
  right: 0;
  /* triangle pointing left... */
  border-width: 5px 6px 5px 0;
  border-top-color: transparent;
  border-bottom-color: transparent; }

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 8px;
  padding-right: 8px; }
  .container:before, .container:after {
    content: " ";
    display: table; }
  .container:after {
    clear: both; }
  @media (min-width: 768px) {
    .container {
      width: 736px; } }
  @media (min-width: 992px) {
    .container {
      width: 956px; } }
  @media (min-width: 1200px) {
    .container {
      width: 1156px; } }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 8px;
  padding-right: 8px; }
  .container-fluid:before, .container-fluid:after {
    content: " ";
    display: table; }
  .container-fluid:after {
    clear: both; }

.row, .row-tight, .modal-dialog__button-bar {
  margin-left: -8px;
  margin-right: -8px; }
  .row:before, .row-tight:before, .modal-dialog__button-bar:before, .row:after, .row-tight:after, .modal-dialog__button-bar:after {
    content: " ";
    display: table; }
  .row:after, .row-tight:after, .modal-dialog__button-bar:after {
    clear: both; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .feed-header__options, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 8px;
  padding-right: 8px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

.col-xs-1 {
  width: 8.33333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .feed-header__options, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }
  .col-sm-1 {
    width: 8.33333%; }
  .col-sm-2 {
    width: 16.66667%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-4 {
    width: 33.33333%; }
  .col-sm-5 {
    width: 41.66667%; }
  .col-sm-6, .feed-header__options {
    width: 50%; }
  .col-sm-7 {
    width: 58.33333%; }
  .col-sm-8 {
    width: 66.66667%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-10 {
    width: 83.33333%; }
  .col-sm-11 {
    width: 91.66667%; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-pull-1 {
    right: 8.33333%; }
  .col-sm-pull-2 {
    right: 16.66667%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-4 {
    right: 33.33333%; }
  .col-sm-pull-5 {
    right: 41.66667%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-7 {
    right: 58.33333%; }
  .col-sm-pull-8 {
    right: 66.66667%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-10 {
    right: 83.33333%; }
  .col-sm-pull-11 {
    right: 91.66667%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-push-1 {
    left: 8.33333%; }
  .col-sm-push-2 {
    left: 16.66667%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-4 {
    left: 33.33333%; }
  .col-sm-push-5 {
    left: 41.66667%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-7 {
    left: 58.33333%; }
  .col-sm-push-8 {
    left: 66.66667%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-10 {
    left: 83.33333%; }
  .col-sm-push-11 {
    left: 91.66667%; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-offset-0 {
    margin-left: 0%; }
  .col-sm-offset-1 {
    margin-left: 8.33333%; }
  .col-sm-offset-2 {
    margin-left: 16.66667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.33333%; }
  .col-sm-offset-5 {
    margin-left: 41.66667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.33333%; }
  .col-sm-offset-8 {
    margin-left: 66.66667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.33333%; }
  .col-sm-offset-11 {
    margin-left: 91.66667%; }
  .col-sm-offset-12 {
    margin-left: 100%; } }

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }
  .col-md-1 {
    width: 8.33333%; }
  .col-md-2 {
    width: 16.66667%; }
  .col-md-3 {
    width: 25%; }
  .col-md-4 {
    width: 33.33333%; }
  .col-md-5 {
    width: 41.66667%; }
  .col-md-6 {
    width: 50%; }
  .col-md-7 {
    width: 58.33333%; }
  .col-md-8 {
    width: 66.66667%; }
  .col-md-9 {
    width: 75%; }
  .col-md-10 {
    width: 83.33333%; }
  .col-md-11 {
    width: 91.66667%; }
  .col-md-12 {
    width: 100%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-pull-1 {
    right: 8.33333%; }
  .col-md-pull-2 {
    right: 16.66667%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-4 {
    right: 33.33333%; }
  .col-md-pull-5 {
    right: 41.66667%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-7 {
    right: 58.33333%; }
  .col-md-pull-8 {
    right: 66.66667%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-10 {
    right: 83.33333%; }
  .col-md-pull-11 {
    right: 91.66667%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-push-1 {
    left: 8.33333%; }
  .col-md-push-2 {
    left: 16.66667%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-4 {
    left: 33.33333%; }
  .col-md-push-5 {
    left: 41.66667%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-7 {
    left: 58.33333%; }
  .col-md-push-8 {
    left: 66.66667%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-10 {
    left: 83.33333%; }
  .col-md-push-11 {
    left: 91.66667%; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-offset-0 {
    margin-left: 0%; }
  .col-md-offset-1 {
    margin-left: 8.33333%; }
  .col-md-offset-2 {
    margin-left: 16.66667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.33333%; }
  .col-md-offset-5 {
    margin-left: 41.66667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.33333%; }
  .col-md-offset-8 {
    margin-left: 66.66667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.33333%; }
  .col-md-offset-11 {
    margin-left: 91.66667%; }
  .col-md-offset-12 {
    margin-left: 100%; } }

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-lg-1 {
    width: 8.33333%; }
  .col-lg-2 {
    width: 16.66667%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-4 {
    width: 33.33333%; }
  .col-lg-5 {
    width: 41.66667%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-7 {
    width: 58.33333%; }
  .col-lg-8 {
    width: 66.66667%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-10 {
    width: 83.33333%; }
  .col-lg-11 {
    width: 91.66667%; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-pull-1 {
    right: 8.33333%; }
  .col-lg-pull-2 {
    right: 16.66667%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-4 {
    right: 33.33333%; }
  .col-lg-pull-5 {
    right: 41.66667%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-7 {
    right: 58.33333%; }
  .col-lg-pull-8 {
    right: 66.66667%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-10 {
    right: 83.33333%; }
  .col-lg-pull-11 {
    right: 91.66667%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-push-1 {
    left: 8.33333%; }
  .col-lg-push-2 {
    left: 16.66667%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-4 {
    left: 33.33333%; }
  .col-lg-push-5 {
    left: 41.66667%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-7 {
    left: 58.33333%; }
  .col-lg-push-8 {
    left: 66.66667%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-10 {
    left: 83.33333%; }
  .col-lg-push-11 {
    left: 91.66667%; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-offset-0 {
    margin-left: 0%; }
  .col-lg-offset-1 {
    margin-left: 8.33333%; }
  .col-lg-offset-2 {
    margin-left: 16.66667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.33333%; }
  .col-lg-offset-5 {
    margin-left: 41.66667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.33333%; }
  .col-lg-offset-8 {
    margin-left: 66.66667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.33333%; }
  .col-lg-offset-11 {
    margin-left: 91.66667%; }
  .col-lg-offset-12 {
    margin-left: 100%; } }

.react-tabs [role=tablist] {
  height: 48px;
  margin-bottom: 0;
  border: 0; }

.react-tabs [role=tab] {
  display: inline-block;
  position: relative;
  bottom: 0;
  height: 48px;
  padding: 6px 12px 4px;
  border: 0;
  border-bottom: 2px solid transparent;
  color: #fff;
  font-family: 'OpenSans-bold';
  font-size: 13px;
  line-height: 2.7em;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
  opacity: .8; }
  .react-tabs [role=tab][aria-selected=true] {
    border-bottom: 2px solid #fff;
    background: none;
    color: #fff;
    opacity: 1; }
  .react-tabs [role=tab]:focus {
    box-shadow: none; }
  .react-tabs [role=tab]:focus:after {
    display: none; }

/*
  Copied from:
  - node_modules/openlayers/css/ol.css
*/
.ol-box {
  box-sizing: border-box;
  border-radius: 2px;
  border: 2px solid blue; }

.ol-mouse-position {
  top: 8px;
  right: 8px;
  position: absolute; }

.ol-scale-line {
  background: rgba(0, 60, 136, 0.3);
  border-radius: 4px;
  bottom: 8px;
  left: 8px;
  padding: 2px;
  position: absolute; }

.ol-scale-line-inner {
  border: 1px solid #eee;
  border-top: none;
  color: #eee;
  font-size: 10px;
  text-align: center;
  margin: 1px;
  will-change: contents, width; }

.ol-overlay-container {
  will-change: left,right,top,bottom; }

.ol-unsupported {
  display: none; }

.ol-viewport .ol-unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.ol-control {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  padding: 2px; }

.ol-control:hover {
  background-color: rgba(255, 255, 255, 0.6); }

.ol-zoom {
  top: .5em;
  left: .5em; }

.ol-rotate {
  top: .5em;
  right: .5em;
  transition: opacity .25s linear, visibility 0s linear; }

.ol-rotate.ol-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s linear, visibility 0s linear .25s; }

.ol-zoom-extent {
  top: 4.643em;
  left: .5em; }

.ol-full-screen {
  right: .5em;
  top: .5em; }

@media print {
  .ol-control {
    display: none; } }

.ol-control button {
  display: block;
  margin: 1px;
  padding: 0;
  color: white;
  font-size: 1.14em;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  height: 1.375em;
  width: 1.375em;
  line-height: .4em;
  background-color: rgba(0, 60, 136, 0.5);
  border: none;
  border-radius: 2px; }

.ol-control button::-moz-focus-inner {
  border: none;
  padding: 0; }

.ol-zoom-extent button {
  line-height: 1.4em; }

.ol-compass {
  display: block;
  font-weight: normal;
  font-size: 1.2em;
  will-change: transform; }

.ol-touch .ol-control button {
  font-size: 1.5em; }

.ol-touch .ol-zoom-extent {
  top: 5.5em; }

.ol-control button:hover,
.ol-control button:focus {
  text-decoration: none;
  background-color: rgba(0, 60, 136, 0.7); }

.ol-zoom .ol-zoom-in {
  border-radius: 2px 2px 0 0; }

.ol-zoom .ol-zoom-out {
  border-radius: 0 0 2px 2px; }

.ol-attribution {
  text-align: right;
  bottom: .5em;
  right: .5em;
  max-width: calc(100% - 1.3em); }

.ol-attribution ul {
  margin: 0;
  padding: 0 .5em;
  font-size: .7rem;
  line-height: 1.375em;
  color: #000;
  text-shadow: 0 0 2px #fff; }

.ol-attribution li {
  display: inline;
  list-style: none;
  line-height: inherit; }

.ol-attribution li:not(:last-child):after {
  content: " "; }

.ol-attribution img {
  max-height: 2em;
  max-width: inherit;
  vertical-align: middle; }

.ol-attribution ul, .ol-attribution button {
  display: inline-block; }

.ol-attribution.ol-collapsed ul {
  display: none; }

.ol-attribution.ol-logo-only ul {
  display: block; }

.ol-attribution:not(.ol-collapsed) {
  background: rgba(255, 255, 255, 0.8); }

.ol-attribution.ol-uncollapsible {
  bottom: 0;
  right: 0;
  border-radius: 4px 0 0;
  height: 1.1em;
  line-height: 1em; }

.ol-attribution.ol-logo-only {
  background: transparent;
  bottom: .4em;
  height: 1.1em;
  line-height: 1em; }

.ol-attribution.ol-uncollapsible img {
  margin-top: -.2em;
  max-height: 1.6em; }

.ol-attribution.ol-logo-only button,
.ol-attribution.ol-uncollapsible button {
  display: none; }

.ol-zoomslider {
  top: 4.5em;
  left: .5em;
  height: 200px; }

.ol-zoomslider button {
  position: relative;
  height: 10px; }

.ol-touch .ol-zoomslider {
  top: 5.5em; }

.ol-overviewmap {
  left: 0.5em;
  bottom: 0.5em; }

.ol-overviewmap.ol-uncollapsible {
  bottom: 0;
  left: 0;
  border-radius: 0 4px 0 0; }

.ol-overviewmap .ol-overviewmap-map,
.ol-overviewmap button {
  display: inline-block; }

.ol-overviewmap .ol-overviewmap-map {
  border: 1px solid #7b98bc;
  height: 150px;
  margin: 2px;
  width: 150px; }

.ol-overviewmap:not(.ol-collapsed) button {
  bottom: 1px;
  left: 2px;
  position: absolute; }

.ol-overviewmap.ol-collapsed .ol-overviewmap-map,
.ol-overviewmap.ol-uncollapsible button {
  display: none; }

.ol-overviewmap:not(.ol-collapsed) {
  background: rgba(255, 255, 255, 0.8); }

.ol-overviewmap-box {
  border: 2px dotted rgba(0, 60, 136, 0.7); }

.info-modal {
  padding: 21px 24px 15px; }
  .info-modal__title {
    margin-bottom: 13px; }
  .info-modal__body {
    color: #4b4c4d;
    line-height: 1.5; }
  .info-modal__button-bar {
    margin-top: 26px;
    text-align: right; }
    .info-modal__button-bar > .info-modal__button {
      padding: 7px 27px;
      color: #0280d0;
      font-size: .8125rem;
      font-weight: 600;
      text-transform: uppercase; }

.badge {
  display: inline-block;
  min-width: 1.25rem;
  border-radius: 2px;
  background-color: #688699;
  color: #fff;
  font-family: OpenSans-Bold;
  font-size: 0.5625rem;
  line-height: 1.25rem;
  text-align: center; }

@keyframes delayed-fade-in {
  0% {
    opacity: 0; }
  50% {
    opacity: 0; }
  100% {
    opacity: .8; } }

.overlay {
  background-color: #fff;
  opacity: .8;
  z-index: 400;
  animation-name: delayed-fade-in;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-duration: .6s; }

.filter-bar--bottom .filter-bar__button {
  position: relative; }
  .filter-bar--bottom .filter-bar__button--active {
    border-top-color: transparent;
    border-bottom-color: #d9dadb; }

.filter-bar__button {
  min-height: 3rem;
  border: 1px solid #d9dadb;
  border-right: 0;
  background-color: #f0f1f2;
  color: #646566;
  font-family: OpenSans-Bold; }
  .filter-bar__button--active {
    border-bottom-color: transparent;
    background-color: #fff; }
  .filter-bar__button:first-child {
    border-left: 0; }

.fc-toolbar {
  display: flex;
  flex-shrink: 0;
  height: 48px;
  margin-bottom: 0;
  background-color: #f0f1f2;
  box-shadow: inset 0 -1px 0 0 #d9dadb;
  box-sizing: border-box; }
  .fc-toolbar .fc-state-default {
    color: #646566;
    box-shadow: none; }
  .fc-toolbar .fc-state-active {
    color: #004b7b;
    box-shadow: inset 0 -2px 0 0 #0280d0; }
  .fc-toolbar .fc-left {
    margin: 0;
    float: none;
    flex-shrink: 0;
    order: 1; }
    .fc-toolbar .fc-left > * {
      margin: 0;
      float: none; }
  .fc-toolbar .fc-right {
    margin: 0;
    float: none;
    flex-shrink: 0;
    order: 3; }
    .fc-toolbar .fc-right > * {
      margin: 0;
      float: none; }
    .fc-toolbar .fc-right > .fc-button {
      padding: 0 0.625rem; }
  .fc-toolbar .fc-center {
    margin: 0;
    float: none;
    display: block;
    flex-grow: 1;
    flex-shrink: 1;
    order: 2; }
    .fc-toolbar .fc-center > * {
      margin: 0;
      float: none; }
    .fc-toolbar .fc-center > h2 {
      padding: 0;
      color: #004b7b;
      font-family: 'OpenSans-Bold';
      font-size: 0.8125rem;
      line-height: 48px;
      text-transform: uppercase; }
  .fc-toolbar .fc-button {
    height: 48px;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: none;
    font-family: OpenSans-Bold;
    font-size: 11px;
    text-transform: uppercase; }
  .fc-toolbar .fc-icon {
    top: 0;
    margin: 0; }

.droppable-indicator {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  border: 1px dashed #0280d0;
  border-radius: 2px;
  z-index: 300;
  pointer-events: none; }
  .droppable-indicator--active {
    display: block; }

.calendar-wrapper {
  color: #969899; }
  .calendar-wrapper .fc {
    display: flex;
    flex-direction: column;
    /*height: 100%;*/
    font-family: 'Open Sans';
    font-size: 13px; }
    .calendar-wrapper .fc th,
    .calendar-wrapper .fc thead > tr > td {
      border: 0; }

.fc-title {
  color: #646566;
  font-family: OpenSans-Semibold; }

.fc-view-container {
  background-color: #f7f9fa;
  overflow: auto; }

.fc-event {
  margin: 1px;
  padding: 0.5rem 1rem;
  border: 0;
  border-radius: 2px;
  background-color: #f7f9fa;
  color: inherit;
  font-size: 0.8125rem; }
  .fc-event:hover {
    color: inherit;
    cursor: pointer; }
  .fc-event .fc-bg {
    background-color: #8cb3cc;
    opacity: .25; }
  .fc-event--completed .fc-bg {
    opacity: .1; }
  .fc-event--week {
    padding: 0.3125rem 0.5rem;
    font-size: 0.6875rem; }

.fc-syncing {
  opacity: .6; }

.fc-content-skeleton {
  pointer-events: none; }

.fc-now-indicator-arrow {
  display: none; }

.fc-now-indicator-line {
  border-color: #0280d0; }

.fc-axis.fc-axis {
  text-align: left;
  vertical-align: top; }

.fc-day-header,
.fc-axis {
  color: #646566;
  font-size: 0.6875rem; }

.fc-agenda-view .fc-day-grid {
  display: none; }

.fc-icon {
  width: 24px;
  height: 24px; }
  .fc-icon:after {
    content: ''; }

.fc-icon-left-single-arrow {
  background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M16 16.6L14.6 18l-6-6 6-6L16 7.4 11.4 12z" fill="%23969899" fill-rule="evenodd"/></svg>'); }

.fc-icon-right-single-arrow {
  background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M8.6 7.4L10 6l6 6-6 6-1.4-1.4 4.6-4.6z" fill="%23969899" fill-rule="evenodd"/></svg>'); }

.fc-icon.fc-icon-x:after {
  content: '\D7'; }

.fc-time-grid tbody,
.fc-time-grid td {
  border: 0; }

.fc-time-grid tr {
  height: 3.5rem; }

.fc-time-grid > .fc-slats tr {
  border-top: 1px solid #ebeced; }
  .fc-time-grid > .fc-slats tr :first-child {
    border-top: 0; }

.fc-time-grid .fc-event-container.fc-event-container {
  margin: 0;
  pointer-events: auto; }

.fc-body > tr > td {
  border: 0; }

.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
  margin-right: 1.4rem;
  margin-left: .4rem;
  padding: .5rem 1rem; }

.fc-widget-header th > span {
  color: #969899;
  line-height: 2.5rem; }

.fc-divider.fc-divider {
  padding: 0;
  border-top: 0;
  border-color: #d9dadb; }

.fc-agendaDay-view {
  padding-left: 1rem; }
  .fc-agendaDay-view .fc-axis {
    width: 5.25rem !important;
    box-sizing: border-box; }
  .fc-agendaDay-view .fc-head {
    display: none; }
  .fc-agendaDay-view .fc-week {
    margin-top: 2px;
    border-right-width: 0 !important; }
  .fc-agendaDay-view .fc-divider {
    display: none; }
  .fc-agendaDay-view .fc-title {
    max-width: 50%;
    margin-bottom: 6px;
    float: left; }
  .fc-agendaDay-view .fc-time-grid-event .fc-time {
    margin-left: 1rem;
    float: left;
    line-height: 1rem; }
  .fc-agendaDay-view .fc-description {
    clear: both; }
  .fc-agendaDay-view .fc-event-icon {
    margin-left: 4px;
    float: right; }
  .fc-agendaDay-view .fc-today {
    background-color: transparent; }
  .fc-agendaDay-view .fc-body .fc-scroller {
    padding-right: 12px; }

.fc-agendaWeek-view .fc-today {
  background-color: #ebeced;
  opacity: .5; }

.fc-month-view .fc-today {
  background-color: #ebeced; }

.fc-month-view .fc-body > tr > .fc-widget-content {
  box-shadow: inset 0 1px 0 0 #d9dadb; }

.fab-button {
  z-index: 300;
  /* for fontawesome icons*/
  color: #fff;
  font-size: 1.125rem;
  width: 3.5rem;
  height: 3.5rem;
  transition: transform .3s;
  border-radius: 50%;
  background-color: #004b7b;
  box-shadow: 0 2px 2px 0 rgba(26, 25, 24, 0.24); }
  .fab-button--crossing-line {
    position: absolute;
    z-index: 500;
    right: 0;
    bottom: 0;
    margin: 0 1rem;
    transform: translate(0, 30%); }
    [dir="rtl"] .fab-button--crossing-line {
      left: 0;
      right: auto; }
  .fab-button--crossing-line-20 {
    transform: translate(0, 20%); }
  .fab-button--rotated {
    transform: rotate(45deg); }
  .fab-button--small {
    width: 2.75rem;
    height: 2.75rem; }
  .fab-button__icon {
    position: absolute;
    transform: translate(-50%, -50%); }
    [dir="rtl"] .fab-button__icon {
      transform: translate(50%, -50%); }

.fab-menu {
  z-index: 300; }
  .fab-menu__item {
    z-index: 299;
    position: absolute;
    left: 50%;
    margin-left: -1.375rem;
    transform: scale(0.1); }
    .fab-menu__item--shown-1 {
      transform: scale(1) translate(0, -3.375rem); }
    .fab-menu__item--shown-2 {
      transform: scale(1) translate(0, -6.75rem); }
    .fab-menu__item--shown-3 {
      transform: scale(1) translate(0, -10.125rem); }
    .fab-menu__item--shown-4 {
      transform: scale(1) translate(0, -13.5rem); }
    .fab-menu__item--shown-5 {
      transform: scale(1) translate(0, -16.875rem); }
    .fab-menu__item--shown-6 {
      transform: scale(1) translate(0, -20.25rem); }
    .fab-menu__item--shown-7 {
      transform: scale(1) translate(0, -23.625rem); }
    .fab-menu__item--shown-8 {
      transform: scale(1) translate(0, -27rem); }
    .fab-menu__item--shown-9 {
      transform: scale(1) translate(0, -30.375rem); }
    .fab-menu__item--shown-10 {
      transform: scale(1) translate(0, -33.75rem); }
    .fab-menu__item--shown-11 {
      transform: scale(1) translate(0, -37.125rem); }

.fab-menu-dropdown {
  z-index: 300;
  top: -13px; }
  .fab-menu-dropdown__item {
    z-index: 299;
    position: absolute;
    left: 50%;
    margin-left: -1.375rem;
    transform: scale(0.1); }
    .fab-menu-dropdown__item--shown-1 {
      transform: scale(1) translate(0, 4rem); }
    .fab-menu-dropdown__item--shown-2 {
      transform: scale(1) translate(0, 7.375rem); }
    .fab-menu-dropdown__item--shown-3 {
      transform: scale(1) translate(0, 10.75rem); }
    .fab-menu-dropdown__item--shown-4 {
      transform: scale(1) translate(0, 14.125rem); }
    .fab-menu-dropdown__item--shown-5 {
      transform: scale(1) translate(0, 17.5rem); }
    .fab-menu-dropdown__item--shown-6 {
      transform: scale(1) translate(0, 20.875rem); }
    .fab-menu-dropdown__item--shown-7 {
      transform: scale(1) translate(0, 24.25rem); }
    .fab-menu-dropdown__item--shown-8 {
      transform: scale(1) translate(0, 27.625rem); }
    .fab-menu-dropdown__item--shown-9 {
      transform: scale(1) translate(0, 31rem); }
    .fab-menu-dropdown__item--shown-10 {
      transform: scale(1) translate(0, 34.375rem); }
    .fab-menu-dropdown__item--shown-11 {
      transform: scale(1) translate(0, 37.75rem); }

.sidebar {
  position: absolute;
  top: 4rem;
  bottom: 0;
  left: 0;
  width: 4rem;
  background-color: #fff;
  overflow: hidden;
  z-index: 400; }
  .sidebar button {
    color: #4B4C4C;
    font-size: 24px; }
  [dir="rtl"] .sidebar {
    right: 0;
    left: auto; }
  .main-container--menu-open .sidebar {
    width: 14rem;
    box-shadow: 20px 0 120px 0 rgba(75, 76, 77, 0.1); }

.menu-user-details {
  width: 14rem;
  height: 130px;
  transition: opacity 300ms ease;
  border-bottom: 1px solid #f0f1f2;
  background-color: #f7f9fa;
  opacity: 0;
  overflow: hidden; }
  .main-container--menu-open .menu-user-details {
    display: block;
    max-width: none;
    opacity: 1; }
  .menu-user-details__btn {
    opacity: .6; }
  .menu-user-details__logo {
    height: 2rem; }
  .menu-user-details__name {
    color: #646566;
    font-size: 0.75rem; }
  .menu-user-details__mail {
    color: #646566;
    font-size: 0.5625rem; }

.menu-items--animation {
  max-width: 4rem;
  margin-bottom: -130px;
  transform: translateY(-130px);
  transition: transform 300ms ease; }
  .main-container--menu-open .menu-items--animation {
    max-width: none;
    margin-bottom: 0;
    transform: translateY(0); }

.menu-item {
  display: block;
  height: 3.5rem;
  margin: .5rem .25rem;
  padding: 1rem;
  text-align: left;
  cursor: pointer;
  opacity: .6;
  vertical-align: middle; }
  .menu-item--active {
    border-radius: 4px;
    background-color: #ebeced;
    opacity: 1; }
  .menu-item__icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    vertical-align: middle; }
    .main-container--menu-open .menu-item__icon {
      margin: 0 .25rem; }
  .menu-item__label {
    display: none;
    margin-left: 32px;
    transition: opacity .05s linear;
    transition-delay: .05s;
    color: #646566;
    font-size: .8125rem;
    font-weight: 600;
    vertical-align: middle; }
    .main-container--menu-open .menu-item__label {
      display: inline;
      animation: fade-in 300ms 1 ease; }
  .menu-item__button {
    height: 3.5rem;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0; }
    .main-container--menu-open .menu-item__button {
      width: 100%; }
  .main-container--menu-open .menu-item {
    margin-right: 0;
    margin-left: 0;
    border-radius: 0; }

.menu-version-number {
  display: none;
  height: 1.5rem;
  padding: 0.3125rem;
  font-size: .8rem;
  text-align: center;
  opacity: .6;
  width: 100%; }
  .main-container--menu-open .menu-version-number {
    display: block; }

.modal-dialog {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: 672px;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  outline: none;
  background-color: #fff;
  box-shadow: 0 24px 24px 0 rgba(0, 0, 0, 0.15), 0 0 24px 0 rgba(0, 0, 0, 0.11); }
  .modal-dialog__overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(217, 218, 219, 0.8);
    z-index: 500; }
    .modal-dialog__overlay--transparent {
      background-color: transparent; }
  .modal-dialog__topbar {
    padding: 1rem;
    background-color: #0280d0;
    color: #fff;
    font-family: OpenSans-bold; }
    .modal-dialog__topbar span,
    .modal-dialog__topbar img {
      vertical-align: middle; }
    .modal-dialog__topbar-title-wrapper {
      padding: 1rem 0 0 3.5rem; }
    .modal-dialog__topbar-title {
      display: inline-block;
      font-size: 1.125rem;
      line-height: 1.5rem;
      vertical-align: middle; }
    .modal-dialog__topbar-btn {
      height: 34px;
      margin-right: 2rem;
      color: inherit;
      font-family: OpenSans-Semibold;
      font-size: .875rem;
      line-height: 1.5rem;
      text-transform: uppercase; }
      [dir="rtl"] .modal-dialog__topbar-btn {
        margin-right: 0;
        margin-left: 2rem; }
    .modal-dialog__topbar-btn--disabled {
      cursor: auto;
      opacity: .5; }
    .modal-dialog__topbar-actions {
      position: absolute;
      top: 0;
      right: 0;
      margin: 6px 10px 0 0;
      padding: 10px;
      cursor: pointer; }
    .modal-dialog__topbar-additional-action-btn {
      margin-left: 24px;
      color: #fff;
      font-family: OpenSans-Semibold;
      font-size: .875rem;
      line-height: 1.5rem;
      text-transform: uppercase;
      cursor: pointer; }
      .modal-dialog__topbar-additional-action-btn--right {
        margin-right: 0;
        float: right; }
    .modal-dialog__topbar-additional-action-btn--text {
      margin-top: 6px; }
    .modal-dialog__topbar-additional-action-btn:first-child {
      margin-left: 0; }
    .modal-dialog__topbar--right {
      margin-right: 0;
      float: right; }
  .modal-dialog--hidden {
    visibility: hidden; }
  .modal-dialog__body {
    overflow: auto; }
    .modal-dialog__body--no-scrollable {
      overflow: hidden; }
  .modal-dialog__button-bar {
    display: flex;
    justify-content: flex-end;
    padding: 0.5rem; }
    .modal-dialog__button-bar--clear {
      padding: 0 16px 16px;
      border-top: 0; }
  .modal-dialog__container {
    height: 90vh; }
  .modal-dialog--flexible .modal-dialog__container {
    height: auto; }
  .modal-dialog--flexible .modal-dialog__body {
    display: flex;
    position: static;
    flex-direction: column;
    max-height: 90vh; }
  .modal-dialog--size-narrow {
    width: 392px; }

.overview-details {
  position: relative;
  height: 5.75rem;
  box-shadow: 1px 1px 0 0 #ebeced;
  overflow: hidden; }
  .overview-details--navigatable {
    cursor: pointer; }
  .overview-details--blocked {
    cursor: not-allowed; }
    .overview-details--blocked > * {
      opacity: .45; }
  .overview-details__data {
    font-size: 0.6875rem; }
  .overview-details__title {
    font-family: OpenSans-bold;
    text-transform: uppercase; }
    .overview-details__title:before {
      display: block;
      width: 1rem;
      height: 1rem;
      float: right;
      content: ' '; }
  .overview-details__status {
    color: #969899; }
  .overview-details__icon {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem; }
    [dir="rtl"] .overview-details__icon {
      left: 0.5rem;
      right: auto; }
  .overview-details__progress {
    flex-grow: 0;
    flex-shrink: 0; }
  @media (max-width: 1200px) {
    .overview-details {
      height: 5rem; } }

.progressbar {
  width: 3rem;
  height: 3rem; }
  .progressbar__label {
    color: #0164a5 !important;
    font-size: 1.125rem;
    font-weight: 600; }

.progress-chart {
  margin-bottom: 19px; }

.toasts {
  position: absolute;
  bottom: 0;
  left: 50%;
  min-width: 300px;
  transform: translateX(-50%);
  z-index: 1000;
  list-style-type: none; }
  .toasts--below-modal {
    z-index: 499; }

.toast {
  margin-bottom: 0.5rem;
  border-radius: 2px;
  background-color: #323232;
  color: #fff;
  font-family: OpenSans-Bold;
  font-size: 0.875rem;
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.24); }
  .toast:last-child {
    margin-bottom: 0; }
  .toast__message {
    display: inline-block; }
  .toast__more {
    color: #fff;
    font-size: 0.6875rem;
    text-decoration: none;
    text-transform: uppercase; }
  .toast__close {
    border: 0;
    background: none;
    color: #fff;
    font-size: 1.25rem; }

.toggle-wrap {
  height: 100%; }

input[type='radio'][name='toggles'] {
  display: none;
  position: absolute;
  z-index: -1; }
  input[type='radio'][name='toggles']:checked + .toggle-label-content .toggle-content {
    display: block; }

.toggle-label {
  display: block;
  cursor: pointer; }
  .toggle-label__badge {
    min-width: 1rem;
    min-height: 1rem;
    margin-left: 1em;
    padding: 1px 5px;
    border-radius: 2px;
    background-color: #688699;
    color: #fff;
    font-family: OpenSans-Bold;
    font-size: 0.5625rem; }

.active-toggle-slide, .toggle-underline:after {
  position: absolute;
  top: 100%;
  width: 50%;
  height: 2px;
  transition: left .3s ease-out;
  background: #0280d0; }

.active-toggle-slide.left, .left.toggle-underline:after {
  left: 0; }

.active-toggle-slide.right, .right.toggle-underline:after {
  left: 50%; }

.toggle-label-content {
  width: 100%;
  text-align: center; }
  .toggle-label-content .toggle-content {
    display: none;
    position: absolute;
    top: 100px;
    left: 16px;
    line-height: 130%; }

.toggle-underline {
  position: relative; }
  .toggle-underline:after {
    top: auto !important;
    bottom: 0;
    left: 0;
    content: ''; }
  .toggle-underline--inverse {
    height: 48px;
    background-color: #0280d0; }
    .toggle-underline--inverse:after {
      display: none; }
  .toggle-underline--right:after {
    left: 50%; }

.topbar {
  top: 0;
  right: 0;
  left: 0;
  height: 4rem;
  background-color: #0280d0;
  color: #fff;
  z-index: 200; }
  .topbar__panel {
    width: 100%;
    height: 100%; }
  .topbar__menu-btn {
    padding: 20px; }
  .topbar__title {
    padding-left: 8px;
    font-family: 'OpenSans-Bold';
    font-size: 1.125rem; }
    [dir="rtl"] .topbar__title {
      padding-right: 8px;
      padding-left: 0; }
  .topbar__separator {
    border-right: 1px solid #0164a5; }
    [dir="rtl"] .topbar__separator {
      border-right: 0;
      border-left: 1px solid #0164a5; }
  .topbar__dropdown {
    min-width: 250px;
    margin-left: auto;
    line-height: initial; }
    .topbar__dropdown .Select-placeholder,
    .topbar__dropdown .Select-value-label,
    .topbar__dropdown input {
      color: #fff; }
    .topbar__dropdown .Select-arrow {
      border-color: #fff transparent transparent; }

.labeled-value {
  min-height: 3.75rem;
  padding-left: 1rem; }
  [dir="rtl"] .labeled-value {
    padding-left: 0;
    padding-right: 1rem; }
  .labeled-value__label {
    color: #969899;
    font-size: 0.75rem;
    overflow: hidden;
    text-overflow: ellipsis; }
  .labeled-value__value {
    color: #646566;
    font-size: 0.875rem;
    white-space: pre-wrap;
    overflow: hidden;
    text-overflow: ellipsis; }

.link-wrapper {
  cursor: pointer; }
  .link-wrapper--full-width {
    width: 100%;
    text-align: start; }
  .link-wrapper__icon {
    top: 18px;
    right: 16px; }
    [dir="rtl"] .link-wrapper__icon {
      right: auto;
      left: 16px;
      -webkit-transform: scaleX(-1);
      -moz-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
      transform: scaleX(-1); }

.map-filter {
  position: relative;
  overflow: auto;
  z-index: 300; }
  .map-filter__tabs {
    min-width: 35.625rem;
    max-width: 38.75rem; }

.equipment-modal-tabs__tab {
  min-width: 10rem;
  text-align: center; }

.list-detail-topbar {
  width: 100%;
  height: 4rem;
  min-height: 4rem;
  background-color: #0280d0;
  padding: 0 5.5rem 0 3.5rem; }
  [dir="rtl"] .list-detail-topbar {
    padding: 0 3.5rem 0 5.5rem; }

.list-detail {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  overflow-y: auto;
  /*
    &--underlined {
        width: 100%;
        line-height: $size-large;
    }
    */ }
  .list-detail__main {
    flex-grow: 1;
    min-height: 4rem; }
  .list-detail__header {
    min-height: 4rem;
    color: #646566;
    font-size: 1.25rem;
    font-weight: bold;
    width: 100%;
    flex: none; }

.list-detail-footer {
  min-height: 4rem;
  background-color: #fff; }

.check-button__container {
  flex: 0 0 auto; }

.check-button {
  width: 1rem;
  height: 1rem;
  display: block;
  position: relative;
  margin: auto;
  border: 1px solid #969899;
  border-radius: 0.5rem; }
  .check-button--checked {
    border-color: #0280d0;
    background-color: #0280d0; }
    .check-button--checked::after {
      width: 12px;
      height: 5px;
      position: absolute;
      top: 45%;
      left: 50%;
      transform: rotate(-45deg);
      transform-origin: left bottom;
      border-bottom: 2px solid #fff;
      border-left: 2px solid #fff;
      content: ''; }

.foreground-panel {
  width: 392px; }
  .foreground-panel__title {
    color: #0164a5; }
  .foreground-panel__body {
    line-height: 1.57143; }

.dialog-header {
  position: relative;
  min-height: 3.5rem;
  padding: 0 1rem;
  background-color: #0280d0;
  color: #fff;
  z-index: 1; }
  .dialog-header__line {
    display: flex;
    align-items: center;
    height: 3.5rem;
    /* this was used for the floating primary action buttons in the dialogs, I am just pushing the button to the right of the header now */ }
    .dialog-header__line--primary-action {
      padding-right: 4.5rem; }
      [dir="rtl"] .dialog-header__line--primary-action {
        padding-left: 4.5rem;
        padding-right: 0; }
  .dialog-header__title {
    font-family: OpenSans-bold;
    font-size: 1.125rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
    .dialog-header__title--line-1 {
      padding-left: 2.25rem; }
    .dialog-header__title--line-2 {
      padding-left: 3.75rem; }
      [dir="rtl"] .dialog-header__title--line-2 {
        padding-left: 0;
        padding-right: 3.75rem; }
  .dialog-header__primary-action {
    margin-right: 1rem; }
  .dialog-header__btn--disabled {
    opacity: .5; }
  .dialog-header__btn-close {
    width: 1.5rem;
    height: 1.5rem; }
  .dialog-header__btn-fa {
    color: #B3D9F1;
    line-height: 24px;
    padding-bottom: 2px; }
  .dialog-header__btn-confirm {
    margin-left: 1rem;
    color: inherit;
    font-size: 0.875rem;
    text-transform: uppercase;
    cursor: pointer; }
    [dir="rtl"] .dialog-header__btn-confirm {
      margin-right: auto;
      margin-left: 0; }
  .dialog-header__actions {
    margin-left: auto; }
    [dir="rtl"] .dialog-header__actions {
      margin-right: auto;
      margin-left: 0; }

.list-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid #ebeced;
  background-color: #fff;
  line-height: 1.8;
  cursor: pointer;
  padding-left: 1rem;
  padding-right: 1rem; }
  [dir="rtl"] .list-item {
    padding-right: 1rem;
    padding-left: 1rem; }
  .list-item__content {
    min-height: 3.5rem; }
    .list-item__content--high-priority {
      box-shadow: inset -5px 0 0 -2px #c11b1b; }
      [dir="rtl"] .list-item__content--high-priority {
        box-shadow: inset 5px 0 0 -2px #c11b1b; }
  .list-item__title {
    color: #646566;
    font-family: OpenSans-Semibold;
    font-size: 0.8125rem; }
  .list-item__details {
    color: #969899;
    font-size: 0.8125rem; }
  .list-item__side-note {
    color: #646566;
    font-size: 0.75rem; }
  .list-item--selected {
    background-color: #8cb3cd; }
    .list-item--selected .list-item__title {
      color: #fff; }
    .list-item--selected .list-item__details {
      color: #fff; }
  .list-item--dragged {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 1px 2px 0 #cacbcc;
    cursor: default;
    z-index: 1100;
    pointer-events: none; }

/**
* The zoomslider in the second map shall be placed between the zoom-in and
* zoom-out buttons.
*/
#openlayers-map .ol-zoom .ol-zoom-out {
  margin-top: 204px; }

#openlayers-map .ol-zoomslider {
  background-color: transparent;
  top: 2.3em; }

#openlayers-map .ol-touch .ol-zoom .ol-zoom-out {
  margin-top: 212px; }

#openlayers-map .ol-touch .ol-zoomslider {
  top: 2.75em; }

#openlayers-map .ol-zoom-in.ol-has-tooltip:hover [role=tooltip],
#openlayers-map .ol-zoom-in.ol-has-tooltip:focus [role=tooltip] {
  top: 3px; }

#openlayers-map .ol-zoom-out.ol-has-tooltip:hover [role=tooltip],
#openlayers-map .ol-zoom-out.ol-has-tooltip:focus [role=tooltip] {
  top: 232px; }

#map-legend {
  left: .5em;
  bottom: .5em;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 5px;
  overflow-y: auto;
  max-height: 40%;
  max-width: 50%; }

#map-legend img {
  width: 30px; }

.search-input-container {
  padding: 0 0.5rem; }

.search-input {
  border: 0;
  background-color: transparent;
  color: #fff;
  font-family: 'OpenSans-Bold';
  font-size: 1.125rem; }
  .search-input::placeholder {
    color: #fff;
    opacity: .5; }

#search-filters {
  background-color: #f7f9fa;
  height: auto;
  line-height: normal;
  border-bottom: 1px solid #ebeced; }

.empty-view--grey {
  background-color: #f7f9fa; }

.empty-view__icon {
  width: 5rem;
  height: 5rem;
  opacity: .35; }

.empty-view__title {
  margin: 0.5rem 0;
  color: #646566;
  font-family: OpenSans-Bold, sans-serif;
  font-size: 0.6875rem;
  text-transform: uppercase; }

.empty-view__description {
  max-width: 10.9375rem;
  color: #969899;
  font-size: 0.8125rem;
  text-align: center; }

.my-tasks-filter {
  font-size: 0.6875rem;
  text-align: center;
  text-transform: uppercase; }
  .my-tasks-filter__caption {
    vertical-align: middle; }
  .my-tasks-filter__badge {
    float: right; }
    [dir="rtl"] .my-tasks-filter__badge {
      float: left; }

.my-tasks-badge {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  z-index: 300; }
  [dir="rtl"] .my-tasks-badge {
    left: -0.25rem;
    right: auto; }
  .my-tasks-badge__container {
    position: relative; }

.subheader {
  display: block;
  max-height: 6.25rem;
  padding: 0 1rem;
  background-color: #f7f9fa;
  color: #0280d0;
  font-family: OpenSans-Bold;
  font-size: 0.8125rem;
  line-height: 2.5rem;
  /*
    line-height: $size-standard;
    height: $size-standard;
    font-size: $font-size--m;
    */ }
  .subheader--alert {
    color: #c11b1b; }
  .subheader--auto-height {
    height: auto;
    line-height: auto; }
  @media (max-width: 768px) {
    .subheader {
      font-size: 0.6875rem; } }

.list-tile {
  display: flex;
  min-height: 3.75rem;
  padding: 0 1rem; }
  .list-tile__title {
    color: #646566;
    font-size: 0.875rem; }
  .list-tile__sub-title {
    color: #969899;
    font-size: 0.8125rem; }
  .list-tile__secondary-content {
    margin-left: auto; }
    .list-tile__secondary-content__text {
      color: #969899;
      font-family: OpenSans-Bold;
      font-size: 0.75rem;
      text-transform: uppercase; }

.report-container {
  position: relative;
  margin: auto 2.375rem 2.375rem;
  font-family: Sans-serif; }

#report {
  background-color: white;
  border: 1px solid #d9dadb; }

#report-header {
  font-size: 1.875rem;
  /*margin-top: 0.8rem;*/ }

.report-print-button {
  float: right;
  color: white;
  margin-top: 1rem;
  margin-right: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #0280d0;
  font-size: .8em; }
  [dir="rtl"] .report-print-button {
    margin-right: 0;
    margin-left: 1rem;
    float: left; }

@media print {
  .report-print-button {
    display: none; } }

.report-header {
  height: 3.5rem;
  padding: 1.75rem 1rem 0.6875rem 0;
  /*border-bottom: 1px solid $grey3;*/
  color: #0280d0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1rem; }
  .report-header--small {
    padding: 1.125rem 1rem 0.6875rem 0;
    border-bottom: 0;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 0.875rem; }

@media print {
  .topbar {
    display: none; }
  .main-container__content {
    top: 0;
    transform: none; }
  .sidebar {
    display: none; }
  #report {
    width: 100%;
    height: 100%;
    page-break-after: always; } }

.accordion-tabs {
  line-height: 1.5;
  margin-top: 1.5em;
  padding: 0; }
  .accordion-tabs:before, .accordion-tabs:after {
    content: " ";
    display: table; }
  .accordion-tabs:after {
    clear: both; }
  @media screen and (max-width: 40em) {
    .accordion-tabs {
      border: 1px solid #dcdcdc;
      border-radius: 3px; } }
  .accordion-tabs .tab-header-and-content {
    list-style: none; }
    @media screen and (min-width: 40em) {
      .accordion-tabs .tab-header-and-content {
        display: inline; } }
    .accordion-tabs .tab-header-and-content:first-child .tab-link {
      border-top-left-radius: 3px;
      border-top-right-radius: 3px; }
      @media screen and (max-width: 40em) {
        .accordion-tabs .tab-header-and-content:first-child .tab-link {
          border-top: 0; } }
    @media screen and (max-width: 40em) {
      .accordion-tabs .tab-header-and-content:last-child .tab-link {
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px; } }
  .accordion-tabs .tab-link {
    background-color: #fff;
    border-top: 1px solid #dcdcdc;
    color: #333;
    display: block;
    font-weight: bold;
    padding: 0.75em 0.809em;
    text-decoration: none; }
    @media screen and (min-width: 40em) {
      .accordion-tabs .tab-link {
        border-top-right-radius: 3px;
        border-top-left-radius: 3px;
        border-top: 0;
        display: inline-block; } }
    .accordion-tabs .tab-link:hover {
      color: #477dca; }
    .accordion-tabs .tab-link:focus {
      outline: none; }
    .accordion-tabs .tab-link.is-active {
      background-color: #f7f7f7; }
      @media screen and (min-width: 40em) {
        .accordion-tabs .tab-link.is-active {
          background-color: #f7f7f7;
          border: 1px solid #dcdcdc;
          border-bottom-color: #f7f7f7;
          margin-bottom: -1px; } }
  .accordion-tabs .tab-content {
    background: #f7f7f7;
    display: none;
    padding: 1.5em 1.618em;
    width: 100%; }
    @media screen and (min-width: 40em) {
      .accordion-tabs .tab-content {
        border: 1px solid #dcdcdc;
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px;
        border-top-right-radius: 3px;
        float: left; } }

.data-table {
  width: 100%;
  min-width: 44.375rem; }
  .data-table--scrollable tbody {
    overflow-y: scroll; }
  .data-table--scrollable thead > tr::after {
    height: 2rem;
    border-top: 1px solid #ebeced;
    border-bottom: 1px solid #ebeced;
    background-color: #f7f9fa;
    display: table-cell;
    padding: 0 7px;
    content: ''; }

/* implemented with mixin for excel compatibility */
.data-table th {
  height: 2.25rem;
  padding: 0.5rem 1rem 0.3125rem 1rem;
  border-bottom: 1px solid #ebeced;
  font-size: 0.8125rem;
  font-weight: 400;
  text-align: left;
  vertical-align: top; }

.data-table td {
  height: 2.25rem;
  padding: 0.5rem 1rem 0.3125rem 1rem;
  border-bottom: 1px solid #ebeced;
  font-size: 0.8125rem;
  font-weight: 400;
  text-align: left;
  vertical-align: top; }

.data-table.fixed-header div.th {
  height: 2.25rem;
  padding: 0.5rem 1rem 0.3125rem 1rem;
  border-bottom: 1px solid #ebeced;
  font-size: 0.8125rem;
  font-weight: 400;
  text-align: left;
  vertical-align: top; }

/*
.data-table td,
.data-table th,
.data-table.fixed-header div.th {
    height: rem(36);
    padding: rem(8) rem(16) rem(5) rem(16);
    border-bottom: 1px solid $grey3;
    //background-color: $white;
    font-size: rem(13);
    font-weight: 400;
    text-align: left;
    vertical-align: top;
}
*/
.data-table td {
  height: 2rem;
  padding: 0.625rem 1rem 0.4375rem 1rem; }

.data-table-cell--no-entries {
  color: #969899;
  text-align: center; }

.data-table-cell--green {
  background-color: #bee7d3; }

.data-table-cell--red {
  background-color: #f6babc; }

.data-table-cell--yellow {
  background-color: #eaf0bf; }

.data-table-cell--orange {
  background-color: #f1d8bf; }

.data-table-cell--high-priority {
  box-shadow: inset 5px 0 0 -2px #c11b1b; }

.data-table-cell--number {
  text-align: right !important; }

.data-table-bordered--left {
  border-left: 1px solid #ebeced; }

.data-table-bordered--right {
  border-right: 1px solid #ebeced; }

.data-table th {
  height: 2rem;
  border-top: 1px solid #ebeced;
  border-bottom: 1px solid #ebeced;
  background-color: #f7f9fa;
  /*@extend .data-table-header-bg;*/ }

.data-table-header--big {
  height: 2.625rem;
  padding: 1.125rem 1rem 0.5rem 1rem;
  border-top: 0;
  background-color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1rem; }

.data-table-header--clickable {
  cursor: pointer; }

.data-table-highlighted {
  background-color: #f0f1f2; }

.data-table-border-right {
  border-right: 1px solid #cacbcc; }

.data-table-column--col1 {
  width: 8.33333%; }

.data-table-column--col2 {
  width: 16.66667%; }

.data-table-column--col3 {
  width: 25%; }

.data-table-column--col4 {
  width: 33.33333%; }

.data-table-column--col5 {
  width: 41.66667%; }

.data-table-column--col6 {
  width: 50%; }

.data-table-column--col7 {
  width: 58.33333%; }

.data-table-column--col8 {
  width: 66.66667%; }

.data-table-column--col9 {
  width: 75%; }

.data-table-column--col10 {
  width: 83.33333%; }

.data-table-column--col11 {
  width: 91.66667%; }

.data-table-column--col12 {
  width: 100%; }

.table-fixed-header-container {
  position: relative;
  /*border: 1px solid #000;*/
  padding-top: 32px;
  background: #f7f9fa;
  height: 100%;
  border-top: 1px solid #ebeced; }

.table-fixed-header-container2 {
  overflow-y: auto;
  background: #fff;
  height: 100%;
  border-top: 1px solid #ebeced;
  box-shadow: inset 0 7px 9px -7px rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 17px 19px -17px rgba(0, 0, 0, 0.3); }

.data-table.fixed-header th div.th {
  position: absolute;
  background: transparent;
  top: 0;
  line-height: normal;
  color: #646566;
  border: 0;
  /*padding: rem(8) rem(16) rem(5) rem(16);*/ }

.data-table.fixed-header th {
  height: 0;
  line-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding: 0;
  color: transparent;
  border: none;
  white-space: nowrap; }
  .data-table.fixed-header th > span .Select-arrow {
    display: none; }

.split-panel__container-full {
  display: flex;
  position: absolute;
  top: -4rem;
  right: 0;
  flex-direction: column;
  min-height: 100vh;
  box-sizing: border-box; }
  [dir="rtl"] .split-panel__container-full {
    left: 0;
    right: auto; }

.split-panel--side-above {
  z-index: 400; }

.above-split-panel {
  z-index: 401; }

.score {
  align-self: stretch;
  font-family: OpenSans-Bold;
  text-align: center;
  overflow: hidden; }
  .score__value {
    color: #0280d0;
    font-size: 1.625rem; }
    .score__value--bad {
      color: #ed2324; }
    .score__value--neutral {
      color: #969899; }
  .score__caption {
    max-width: 6.25rem;
    font-size: 0.6875rem;
    text-transform: uppercase; }
  .score--inactive {
    border: 1px solid #d9dadb;
    border-top: 0; }
    .score--inactive + .score--inactive {
      border-left: 0; }

.panel--gray, .score--inactive {
  background-color: #f0f1f2; }

.panel--light-gray {
  background-color: #f7f9fa; }

.panel--white {
  background-color: #fff; }

.card__content {
  border-radius: 2px;
  background-color: #fff; }

.card--std {
  padding: 1rem; }
  .card--std + .card--std {
    padding-top: 0; }

.checkbox {
  position: relative;
  padding-right: 52px;
  line-height: 18px; }
  .checkbox > input {
    display: none; }
    .checkbox > input:checked ~ label::before {
      border-color: #0280d0; }
  .checkbox > label {
    display: block;
    cursor: pointer; }
    .checkbox > label::before, .checkbox > label::after {
      display: inline-block;
      position: absolute;
      top: 50%;
      right: 0;
      margin: -1px 0;
      transform: translate(0, -9px);
      transition-duration: .3s;
      content: ''; }
    .checkbox > label::before {
      width: 18px;
      height: 18px;
      border: 2px solid #969899;
      background-color: #fff; }
  .checkbox > input:checked ~ label::before {
    background-color: #0280d0; }
  .checkbox > input:checked ~ label::after {
    transform: translate(0, -7px) scale(1) rotate(45deg);
    opacity: 1; }
  .checkbox > label::before {
    border-radius: 3px; }
  .checkbox > label::after {
    top: 50%;
    right: 6px;
    width: 7px;
    height: 12px;
    transform: translate(0, -7px) rotate(180deg);
    border: 2px solid #fff;
    border-top: 0;
    border-left: 0;
    opacity: 0; }
  .checkbox--left {
    padding-right: 0;
    padding-left: 52px; }
    .checkbox--left > label::before {
      right: auto;
      left: 0; }
    .checkbox--left > label::after {
      right: auto;
      left: 6px; }
    .checkbox--left--inline-block {
      display: inline-block;
      margin-right: 52px; }
  .checkbox--left--decreased {
    padding-left: 26px; }

.field, input[type='text'],
input[role='combobox'],
input[type='date'],
input[type='email'],
input[type='time'],
textarea {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  line-height: 1.5rem; }

input[type='text'],
input[role='combobox'],
input[type='date'],
input[type='email'],
input[type='time'],
textarea {
  background-color: transparent; }
  input[type='text'].invalid,
  input[role='combobox'].invalid,
  input[type='date'].invalid,
  input[type='email'].invalid,
  input[type='time'].invalid,
  textarea.invalid {
    box-shadow: inset -5px 0 0 -2px #c11b1b; }

.Select.invalid {
  box-shadow: inset -5px 0 0 -2px #c11b1b; }

textarea {
  padding: 0.75rem 1rem; }

.contact-field {
  line-height: 2rem; }
  .contact-field--item {
    display: inline-block;
    border-radius: 2px;
    background-color: #ebeced;
    line-height: 1.5rem; }

.datetime__separator {
  box-shadow: 9px 0 0 -8px #d9dadb; }
  [dir="rtl"] .datetime__separator {
    box-shadow: -9px 0 0 -8px #d9dadb; }

.equipment-service-orders {
  position: relative;
  top: -1px; }

.sync-items-panel {
  max-height: 50vh;
  overflow: auto; }

.upload-box {
  height: 200px;
  border: 1px solid #8cb3cd;
  background-color: #f7f9fa; }
  .upload-box__input {
    z-index: 1; }

.covering-dropdown .dropdown-menu {
  top: 0; }

.rich-list-item {
  /* don't understand why this was done like this, have replaced with border-bottom
    background-color: $grey3;
    box-shadow: inset $icons-panel-width 3.4375rem 0 0 $white;
    
    &:last-child {
        box-shadow: inset 0 3.4375rem 0 0 $white;
    }
    */
  background-color: white;
  border-bottom: 1px solid #ebeced; }
  .rich-list-item__content {
    min-height: 3.5rem;
    padding-right: 0.5rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem; }
  .rich-list-item__icons-panel {
    width: 2.25rem; }

.filter-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  color: #969899;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  box-shadow: inset 1px -1px 0 0 #dee0e0; }

.page-container {
  background-color: #f7f9fa; }

.base-container {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.col-xs-6 {
  padding: 0 10px;
  margin-bottom: 10px; }

@media (min-width: 576px) {
  .col-sm-3 {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px); } }

.title-container {
  flex: 3 !important; }

.sort-multiselect-frame {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 5px; }

.excel-button {
  padding: 10px 20px;
  font-size: 20px;
  margin-left: 20px; }

.excel-icon {
  width: 30px;
  height: auto; }

.custom-multiselect .optionListContainer {
  font-size: 12px;
  min-width: 150px;
  max-width: calc(100vw - 20px);
  z-index: 1000;
  position: absolute; }

.custom-multiselect .chip {
  display: none; }

.custom-multiselect .searchBox {
  display: flex;
  align-items: center;
  height: 15px; }

.custom-multiselect .search-wrapper {
  position: relative;
  width: 100%; }

.custom-multiselect .search-wrapper::after {
  content: '\25BC';
  font-size: 12px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none; }

.custom-multiselect .optionListContainer .option {
  display: flex;
  align-items: center; }

.custom-multiselect .optionListContainer .option input[type="checkbox"] {
  margin-right: 8px;
  display: block !important;
  cursor: default !important;
  appearance: auto !important;
  box-sizing: border-box !important;
  margin: 3px 3px 3px 4px !important;
  padding: initial; }

.custom-multiselect .optionListContainer .option label {
  cursor: pointer; }

.custom-multiselect .multiSelectContainer input[type='checkbox'], .custom-multiselect .multiSelectContainer input[type='radio'] {
  padding: 8px;
  background: black;
  border: 4px;
  margin-top: 3px; }

.multiselect-1 .optionListContainer,
.multiselect-2 .optionListContainer {
  left: auto !important;
  right: 0 !important; }

.button-sort {
  background-color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  padding: 3px; }
  .button-sort:hover {
    color: #007bff; }

.pagination-wrapper {
  display: flex;
  justify-content: center;
  width: 50%;
  margin: 0;
  border-right: 1px solid #d9dadb;
  border-bottom: 1px solid #d9dadb; }
  .pagination-wrapper .nav-button-wrapper {
    margin: 0.5rem 0;
    font-weight: bold;
    width: 100%; }
  .pagination-wrapper .invisible {
    pointer-events: none;
    visibility: hidden; }
  @media (min-width: 768px) {
    .pagination-wrapper {
      width: 41.66667%; } }
  @media (min-width: 1200px) {
    .pagination-wrapper {
      width: 33.3333%; } }

.feed {
  border-left: 1px solid #d9dadb; }
  [dir="rtl"] .feed {
    border-right: 1px solid #d9dadb;
    border-left: 0; }

.list-container {
  border-right: 1px solid #d9dadb; }
  [dir="rtl"] .list-container {
    border-left: 1px solid #d9dadb;
    border-right: 0; }

.feed-header {
  min-height: 3rem;
  line-height: 3rem; }
  .feed-header--separated {
    border-bottom: 1px solid #d9dadb; }
  .feed-header__title {
    padding: 0 0 0 16px;
    color: #004b7b;
    font-family: 'OpenSans-Bold';
    font-size: .8125rem;
    text-transform: uppercase; }
    [dir="rtl"] .feed-header__title {
      padding: 0 16px 0 0; }
  .feed-header__options {
    height: 3rem; }
  .feed-header__checkbox {
    margin-left: auto;
    margin-right: .5rem; }

.list-body {
  position: relative;
  background-color: #f7f9fa; }

.list-body-virtualized {
  background-color: #fff; }

.feed-list {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto; }

.feed-footer {
  margin: 0; }

.main-container__content {
  position: absolute;
  top: 4rem;
  right: 0;
  bottom: 0;
  left: 0;
  margin-right: 4rem;
  transform: translateX(4rem);
  transition: transform .3s ease;
  z-index: 300; }
  [dir="rtl"] .main-container__content {
    transform: translateX(-4rem);
    margin-left: 4rem;
    margin-right: initial; }

.content {
  border-right: 1px solid #dee0e0;
  background-color: #f0f1f2;
  overflow-x: auto;
  overflow-y: hidden; }
  .content__container {
    height: 100%; }

.container--centered {
  display: flex;
  align-items: center;
  justify-content: center; }

.container--vertical, .page-container {
  display: flex;
  flex-direction: column;
  justify-content: center; }

.container--horizontal {
  display: flex;
  flex-direction: row;
  align-items: center; }

.container--justify-start {
  justify-content: flex-start; }

.container--inversed {
  justify-content: flex-end; }

.container--align-start {
  align-items: flex-start; }

.container--oposite {
  justify-content: space-between; }

.container--truncate {
  min-width: 0; }

.container__item--centered {
  align-self: center; }

.container__item--stretch {
  align-self: stretch; }

.flex-grow--1 {
  flex-grow: 1; }

.flex-shrink--0 {
  flex-shrink: 0; }

.flex--1 {
  flex: 1; }

.cover-all {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.top-right {
  position: absolute;
  right: 0;
  top: 0; }

.bottom-left {
  position: absolute;
  left: 0;
  bottom: 0; }

.bottom-right {
  position: absolute;
  right: 0;
  bottom: 0; }

.relative {
  position: relative; }

.absolute {
  position: absolute; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

/*
.pull-left {
    float: left;
}

.pull-right {
    float: right;
}
*/
.half-width {
  width: 50%; }

.padding-left--std {
  padding-left: 1rem; }

.padding--large, .page-container,
.padding-top--large,
.padding-horizontal--large {
  padding-top: 1.25rem; }

.margin--large,
.margin-top--large,
.margin-horizontal--large {
  margin-top: 1.25rem; }

.padding--std,
.padding-top--std,
.padding-horizontal--std {
  padding-top: 1rem; }

.margin--std,
.margin-top--std,
.margin-horizontal--std {
  margin-top: 1rem; }

.padding--decreased,
.padding-top--decreased,
.padding-horizontal--decreased {
  padding-top: 0.75rem; }

.margin--decreased,
.margin-top--decreased,
.margin-horizontal--decreased {
  margin-top: 0.75rem; }

.padding--small,
.padding-top--small,
.padding-horizontal--small {
  padding-top: 0.5rem; }

.margin--small,
.margin-top--small,
.margin-horizontal--small {
  margin-top: 0.5rem; }

.padding--smallest,
.padding-top--smallest,
.padding-horizontal--smallest {
  padding-top: 0.25rem; }

.margin--smallest,
.margin-top--smallest,
.margin-horizontal--smallest {
  margin-top: 0.25rem; }

.padding--large, .page-container,
.padding-bottom--large,
.padding-horizontal--large {
  padding-bottom: 1.25rem; }

.margin--large,
.margin-bottom--large,
.margin-horizontal--large {
  margin-bottom: 1.25rem; }

.padding--std,
.padding-bottom--std,
.padding-horizontal--std {
  padding-bottom: 1rem; }

.margin--std,
.margin-bottom--std,
.margin-horizontal--std {
  margin-bottom: 1rem; }

.padding--decreased,
.padding-bottom--decreased,
.padding-horizontal--decreased {
  padding-bottom: 0.75rem; }

.margin--decreased,
.margin-bottom--decreased,
.margin-horizontal--decreased {
  margin-bottom: 0.75rem; }

.padding--small,
.padding-bottom--small,
.padding-horizontal--small {
  padding-bottom: 0.5rem; }

.margin--small,
.margin-bottom--small,
.margin-horizontal--small {
  margin-bottom: 0.5rem; }

.padding--smallest,
.padding-bottom--smallest,
.padding-horizontal--smallest {
  padding-bottom: 0.25rem; }

.margin--smallest,
.margin-bottom--smallest,
.margin-horizontal--smallest {
  margin-bottom: 0.25rem; }

.padding--large, .page-container,
.padding-right--large,
.padding-vertical--large {
  padding-right: 1.25rem; }

.margin--large,
.margin-right--large,
.margin-vertical--large {
  margin-right: 1.25rem; }

.padding--std,
.padding-right--std,
.padding-vertical--std {
  padding-right: 1rem; }

.margin--std,
.margin-right--std,
.margin-vertical--std {
  margin-right: 1rem; }

.padding--decreased,
.padding-right--decreased,
.padding-vertical--decreased {
  padding-right: 0.75rem; }

.margin--decreased,
.margin-right--decreased,
.margin-vertical--decreased {
  margin-right: 0.75rem; }

.padding--small,
.padding-right--small,
.padding-vertical--small {
  padding-right: 0.5rem; }

.margin--small,
.margin-right--small,
.margin-vertical--small {
  margin-right: 0.5rem; }

.padding--smallest,
.padding-right--smallest,
.padding-vertical--smallest {
  padding-right: 0.25rem; }

.margin--smallest,
.margin-right--smallest,
.margin-vertical--smallest {
  margin-right: 0.25rem; }

.padding--large, .page-container,
.padding-left--large,
.padding-vertical--large {
  padding-left: 1.25rem; }

.margin--large,
.margin-left--large,
.margin-vertical--large {
  margin-left: 1.25rem; }

.padding--std,
.padding-left--std,
.padding-vertical--std {
  padding-left: 1rem; }

.margin--std,
.margin-left--std,
.margin-vertical--std {
  margin-left: 1rem; }

.padding--decreased,
.padding-left--decreased,
.padding-vertical--decreased {
  padding-left: 0.75rem; }

.margin--decreased,
.margin-left--decreased,
.margin-vertical--decreased {
  margin-left: 0.75rem; }

.padding--small,
.padding-left--small,
.padding-vertical--small {
  padding-left: 0.5rem; }

.margin--small,
.margin-left--small,
.margin-vertical--small {
  margin-left: 0.5rem; }

.padding--smallest,
.padding-left--smallest,
.padding-vertical--smallest {
  padding-left: 0.25rem; }

.margin--smallest,
.margin-left--smallest,
.margin-vertical--smallest {
  margin-left: 0.25rem; }

.margin-left--auto {
  margin-left: auto; }

/* "ltr support" for bootstrap 3 */
[dir="rtl"] .col-xs-2 {
  float: right; }

[dir="rtl"] .col-xs-3 {
  float: right; }

[dir="rtl"] .col-xs-4 {
  float: right; }

[dir="rtl"] .col-xs-5 {
  float: right; }

[dir="rtl"] .col-xs-6 {
  float: right; }

[dir="rtl"] .col-xs-7 {
  float: right; }

[dir="rtl"] .col-xs-8 {
  float: right; }

[dir="rtl"] .col-xs-9 {
  float: right; }

[dir="rtl"] .col-xs-10 {
  float: right; }

[dir="rtl"] .col-xs-11 {
  float: right; }

[dir="rtl"] .col-xs-12 {
  float: right; }

[dir="rtl"] .col-sm-2 {
  float: right; }

[dir="rtl"] .col-sm-3 {
  float: right; }

[dir="rtl"] .col-sm-4 {
  float: right; }

[dir="rtl"] .col-sm-5 {
  float: right; }

[dir="rtl"] .col-sm-6, [dir="rtl"] .feed-header__options {
  float: right; }

[dir="rtl"] .col-sm-7 {
  float: right; }

[dir="rtl"] .col-sm-8 {
  float: right; }

[dir="rtl"] .col-sm-9 {
  float: right; }

[dir="rtl"] .col-sm-10 {
  float: right; }

[dir="rtl"] .col-sm-11 {
  float: right; }

[dir="rtl"] .col-sm-12 {
  float: right; }

[dir="rtl"] .col-md-2 {
  float: right; }

[dir="rtl"] .col-md-3 {
  float: right; }

[dir="rtl"] .col-md-4 {
  float: right; }

[dir="rtl"] .col-md-5 {
  float: right; }

[dir="rtl"] .col-md-6 {
  float: right; }

[dir="rtl"] .col-md-7 {
  float: right; }

[dir="rtl"] .col-md-8 {
  float: right; }

[dir="rtl"] .col-md-9 {
  float: right; }

[dir="rtl"] .col-md-10 {
  float: right; }

[dir="rtl"] .col-md-11 {
  float: right; }

[dir="rtl"] .col-md-12 {
  float: right; }

[dir="rtl"] .col-lg-2 {
  float: right; }

[dir="rtl"] .col-lg-3 {
  float: right; }

[dir="rtl"] .col-lg-4 {
  float: right; }

[dir="rtl"] .col-lg-5 {
  float: right; }

[dir="rtl"] .col-lg-6 {
  float: right; }

[dir="rtl"] .col-lg-7 {
  float: right; }

[dir="rtl"] .col-lg-8 {
  float: right; }

[dir="rtl"] .col-lg-9 {
  float: right; }

[dir="rtl"] .col-lg-10 {
  float: right; }

[dir="rtl"] .col-lg-11 {
  float: right; }

[dir="rtl"] .col-lg-12 {
  float: right; }

.login__background {
  height: 100%;
  text-align: center; }

.login__container {
  position: relative;
  top: 25%;
  height: 75%;
  color: #fff; }

.login__title {
  padding-top: 20px;
  text-transform: uppercase; }

.login__details {
  position: relative;
  top: 10%;
  width: 23.04%;
  min-width: 300px;
  margin: 0 auto 4.5rem;
  font-size: 0.875rem;
  font-weight: 300; }

.login__error {
  width: 60%;
  text-align: left;
  margin: 0 auto;
  font-size: 0.875rem;
  font-weight: 300;
  max-height: 40vh;
  overflow-y: auto;
  word-break: break-word;
  max-width: 700px; }

@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.overview-container {
  margin-bottom: 16px;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 #cacbcc;
  animation-name: fade-in;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-duration: .5s; }
  .overview-container__title {
    height: 3rem;
    color: #004b7b;
    font-family: 'OpenSans-Bold';
    font-size: .8125rem;
    letter-spacing: .3px;
    line-height: 1.2;
    text-transform: uppercase; }
  .overview-container__body {
    position: relative;
    overflow: visible; }
    .overview-container__body:before, .overview-container__body:after {
      display: block;
      position: absolute;
      background-color: #fff;
      content: ' ';
      z-index: 300; }
    .overview-container__body:before {
      top: 0;
      right: -1px;
      bottom: 0;
      width: 1px; }
    .overview-container__body:after {
      right: 0;
      bottom: -1px;
      left: 0;
      height: 1px; }

.overview-container:last-of-type {
  margin-bottom: 0; }

.errorify {
  color: #ed2324; }

/*

The reason for this file is the fact that it's not possible to ignore only a single line using sass-lint.
That's why we have this file that is ignored by the linting task in Gulp.

http://stackoverflow.com/questions/35136098/have-sass-lint-ignore-a-certain-line

*/
.feed-list {
  -webkit-overflow-scrolling: touch; }


/*# sourceMappingURL=main.css.map*/