/**
 * Copyright (c) 2014 The xterm.js authors. All rights reserved.
 * Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)
 * https://github.com/chjj/term.js
 * @license MIT
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 *
 * Originally forked from (with the author's permission):
 *   Fabrice Bellard's javascript vt100 for jslinux:
 *   http://bellard.org/jslinux/
 *   Copyright (c) 2011 Fabrice Bellard
 *   The original design remains. The terminal itself
 *   has been extended to include xterm CSI codes, among
 *   other features.
 */
/**
 *  Default styles for xterm.js
 */
.xterm {
  font-feature-settings: "liga" 0;
  position: relative;
  user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}
.xterm.focus,
.xterm:focus {
  outline: none;
}
.xterm .xterm-helpers {
  position: absolute;
  top: 0;
  /**
     * The z-index of the helpers must be higher than the canvases in order for
     * IMEs to appear on top.
     */
  z-index: 5;
}
.xterm .xterm-helper-textarea {
  padding: 0;
  border: 0;
  margin: 0;
  /* Move textarea out of the screen to the far left, so that the cursor is not visible */
  position: absolute;
  opacity: 0;
  left: -9999em;
  top: 0;
  width: 0;
  height: 0;
  z-index: -5;
  /** Prevent wrapping so the IME appears against the textarea at the correct position */
  white-space: nowrap;
  overflow: hidden;
  resize: none;
}
.xterm .composition-view {
  /* TODO: Composition position got messed up somewhere */
  background: #000;
  color: #FFF;
  display: none;
  position: absolute;
  white-space: nowrap;
  z-index: 1;
}
.xterm .composition-view.active {
  display: block;
}
.xterm .xterm-viewport {
  /* On OS X this is required in order for the scroll bar to appear fully opaque */
  background-color: #000;
  overflow-y: scroll;
  cursor: default;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
}
.xterm .xterm-screen {
  position: relative;
}
.xterm .xterm-screen canvas {
  position: absolute;
  left: 0;
  top: 0;
}
.xterm .xterm-scroll-area {
  visibility: hidden;
}
.xterm-char-measure-element {
  display: inline-block;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: -9999em;
  line-height: normal;
}
.xterm {
  cursor: text;
}
.xterm.enable-mouse-events {
  /* When mouse events are enabled (eg. tmux), revert to the standard pointer cursor */
  cursor: default;
}
.xterm.xterm-cursor-pointer {
  cursor: pointer;
}
.xterm.column-select.focus {
  /* Column selection mode */
  cursor: crosshair;
}
.xterm .xterm-accessibility,
.xterm .xterm-message {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  color: transparent;
}
.xterm .live-region {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.xterm-dim {
  opacity: 0.5;
}
.xterm-underline {
  text-decoration: underline;
}

/* line 4, ../sass/_offline-theme-base.sass */
.offline-ui, .offline-ui *, .offline-ui:before, .offline-ui:after, .offline-ui *:before, .offline-ui *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 7, ../sass/_offline-theme-base.sass */
.offline-ui {
  display: none;
  position: fixed;
  background: white;
  z-index: 2000;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
}
/* line 17, ../sass/_offline-theme-base.sass */
.offline-ui .offline-ui-content:before {
  display: inline;
}
/* line 20, ../sass/_offline-theme-base.sass */
.offline-ui .offline-ui-retry {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: none;
}
/* line 24, ../sass/_offline-theme-base.sass */
.offline-ui .offline-ui-retry:before {
  display: inline;
}
/* line 29, ../sass/_offline-theme-base.sass */
.offline-ui.offline-ui-up.offline-ui-up-5s {
  display: block;
}
/* line 32, ../sass/_offline-theme-base.sass */
.offline-ui.offline-ui-down {
  display: block;
}
/* line 37, ../sass/_offline-theme-base.sass */
.offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-retry {
  display: block;
}
/* line 42, ../sass/_offline-theme-base.sass */
.offline-ui.offline-ui-down.offline-ui-reconnect-failed-2s.offline-ui-waiting .offline-ui-retry {
  display: none;
}

@-webkit-keyframes offline-fadein {
  /* line 6, ../sass/_keyframes.sass */
  0% {
    opacity: 0;
  }

  /* line 8, ../sass/_keyframes.sass */
  100% {
    opacity: 1;
  }
}

@-moz-keyframes offline-fadein {
  /* line 6, ../sass/_keyframes.sass */
  0% {
    opacity: 0;
  }

  /* line 8, ../sass/_keyframes.sass */
  100% {
    opacity: 1;
  }
}

@-ms-keyframes offline-fadein {
  /* line 6, ../sass/_keyframes.sass */
  0% {
    opacity: 0;
  }

  /* line 8, ../sass/_keyframes.sass */
  100% {
    opacity: 1;
  }
}

@-o-keyframes offline-fadein {
  /* line 6, ../sass/_keyframes.sass */
  0% {
    opacity: 0;
  }

  /* line 8, ../sass/_keyframes.sass */
  100% {
    opacity: 1;
  }
}

@keyframes offline-fadein {
  /* line 6, ../sass/_keyframes.sass */
  0% {
    opacity: 0;
  }

  /* line 8, ../sass/_keyframes.sass */
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes offline-fadeout-and-hide {
  /* line 20, ../sass/_keyframes.sass */
  0% {
    opacity: 1;
    display: block;
  }

  /* line 23, ../sass/_keyframes.sass */
  99% {
    opacity: 0;
    display: block;
  }

  /* line 26, ../sass/_keyframes.sass */
  100% {
    opacity: 0;
    display: none;
  }
}

@-moz-keyframes offline-fadeout-and-hide {
  /* line 20, ../sass/_keyframes.sass */
  0% {
    opacity: 1;
    display: block;
  }

  /* line 23, ../sass/_keyframes.sass */
  99% {
    opacity: 0;
    display: block;
  }

  /* line 26, ../sass/_keyframes.sass */
  100% {
    opacity: 0;
    display: none;
  }
}

@-ms-keyframes offline-fadeout-and-hide {
  /* line 20, ../sass/_keyframes.sass */
  0% {
    opacity: 1;
    display: block;
  }

  /* line 23, ../sass/_keyframes.sass */
  99% {
    opacity: 0;
    display: block;
  }

  /* line 26, ../sass/_keyframes.sass */
  100% {
    opacity: 0;
    display: none;
  }
}

@-o-keyframes offline-fadeout-and-hide {
  /* line 20, ../sass/_keyframes.sass */
  0% {
    opacity: 1;
    display: block;
  }

  /* line 23, ../sass/_keyframes.sass */
  99% {
    opacity: 0;
    display: block;
  }

  /* line 26, ../sass/_keyframes.sass */
  100% {
    opacity: 0;
    display: none;
  }
}

@keyframes offline-fadeout-and-hide {
  /* line 20, ../sass/_keyframes.sass */
  0% {
    opacity: 1;
    display: block;
  }

  /* line 23, ../sass/_keyframes.sass */
  99% {
    opacity: 0;
    display: block;
  }

  /* line 26, ../sass/_keyframes.sass */
  100% {
    opacity: 0;
    display: none;
  }
}

@-webkit-keyframes offline-rotation {
  /* line 64, ../sass/_keyframes.sass */
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  /* line 66, ../sass/_keyframes.sass */
  100% {
    transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    -o-transform: rotate(359deg);
  }
}

@-moz-keyframes offline-rotation {
  /* line 64, ../sass/_keyframes.sass */
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  /* line 66, ../sass/_keyframes.sass */
  100% {
    transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    -o-transform: rotate(359deg);
  }
}

@-ms-keyframes offline-rotation {
  /* line 64, ../sass/_keyframes.sass */
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  /* line 66, ../sass/_keyframes.sass */
  100% {
    transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    -o-transform: rotate(359deg);
  }
}

@-o-keyframes offline-rotation {
  /* line 64, ../sass/_keyframes.sass */
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  /* line 66, ../sass/_keyframes.sass */
  100% {
    transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    -o-transform: rotate(359deg);
  }
}

@keyframes offline-rotation {
  /* line 64, ../sass/_keyframes.sass */
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  /* line 66, ../sass/_keyframes.sass */
  100% {
    transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    -o-transform: rotate(359deg);
  }
}

/* line 21, ../sass/offline-theme-default.sass */
.offline-ui {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  font-family: "Helvetica Neue", sans-serif;
  padding: 1em;
  top: 1em;
  width: 38em;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 38em) {
  /* line 21, ../sass/offline-theme-default.sass */
  .offline-ui {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    top: 0;
  }
}
/* line 34, ../sass/offline-theme-default.sass */
.offline-ui .offline-ui-content:before {
  line-height: 1.25em;
}
/* line 37, ../sass/offline-theme-default.sass */
.offline-ui .offline-ui-retry {
  position: absolute;
  right: 3em;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  line-height: 3.5em;
  height: 3.5em;
  margin: auto;
  padding: 0 1em;
}
/* line 50, ../sass/offline-theme-default.sass */
.offline-ui.offline-ui-up {
  -webkit-animation: offline-fadeout-and-hide forwards 0.5s 2s;
  -moz-animation: offline-fadeout-and-hide forwards 0.5s 2s;
  -ms-animation: offline-fadeout-and-hide forwards 0.5s 2s;
  -o-animation: offline-fadeout-and-hide forwards 0.5s 2s;
  animation: offline-fadeout-and-hide forwards 0.5s 2s;
  -webkit-backface-visibility: hidden;
  background: #d6e9c6;
  color: #468847;
}
/* line 55, ../sass/offline-theme-default.sass */
.offline-ui.offline-ui-down {
  -webkit-animation: offline-fadein 0.5s;
  -moz-animation: offline-fadein 0.5s;
  -ms-animation: offline-fadein 0.5s;
  -o-animation: offline-fadein 0.5s;
  animation: offline-fadein 0.5s;
  -webkit-backface-visibility: hidden;
  background: #ec8787;
  color: #551313;
}
/* line 60, ../sass/offline-theme-default.sass */
.offline-ui.offline-ui-down.offline-ui-connecting, .offline-ui.offline-ui-down.offline-ui-waiting {
  background: #f8ecad;
  color: #7c6d1f;
  padding-right: 3em;
}
/* line 65, ../sass/offline-theme-default.sass */
.offline-ui.offline-ui-down.offline-ui-connecting:after, .offline-ui.offline-ui-down.offline-ui-waiting:after {
  -webkit-animation: offline-rotation 0.7s linear infinite;
  -moz-animation: offline-rotation 0.7s linear infinite;
  -ms-animation: offline-rotation 0.7s linear infinite;
  -o-animation: offline-rotation 0.7s linear infinite;
  animation: offline-rotation 0.7s linear infinite;
  -webkit-backface-visibility: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  content: " ";
  display: block;
  position: absolute;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 1em;
  width: 1em;
  border: 2px solid rgba(0, 0, 0, 0);
  border-top-color: #7c6d1f;
  border-left-color: #7c6d1f;
  opacity: 0.7;
}
/* line 82, ../sass/offline-theme-default.sass */
.offline-ui.offline-ui-down.offline-ui-waiting {
  padding-right: 11em;
}
/* line 85, ../sass/offline-theme-default.sass */
.offline-ui.offline-ui-down.offline-ui-waiting.offline-ui-reconnect-failed-2s {
  padding-right: 0;
}

/* line 3, ../sass/_offline-theme-base-indicator.sass */
.offline-ui, .offline-ui *, .offline-ui:before, .offline-ui:after, .offline-ui *:before, .offline-ui *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 6, ../sass/_offline-theme-base-indicator.sass */
.offline-ui {
  display: none;
  position: fixed;
  background: white;
  z-index: 2000;
  display: inline-block;
}
/* line 13, ../sass/_offline-theme-base-indicator.sass */
.offline-ui .offline-ui-retry {
  display: none;
}
/* line 16, ../sass/_offline-theme-base-indicator.sass */
.offline-ui.offline-ui-up {
  display: block;
}
/* line 19, ../sass/_offline-theme-base-indicator.sass */
.offline-ui.offline-ui-down {
  display: block;
}

/* line 11, ../sass/offline-theme-default-indicator.sass */
.offline-ui {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  font-family: "Helvetica Neue", sans-serif;
  padding: 1em;
  max-width: 100%;
  bottom: 1em;
  left: 1em;
}
/* line 19, ../sass/offline-theme-default-indicator.sass */
.offline-ui.offline-ui-up {
  background: #d6e9c6;
  color: #468847;
}
/* line 23, ../sass/offline-theme-default-indicator.sass */
.offline-ui.offline-ui-down {
  background: #ec8787;
  color: #551313;
}

/* line 6, ../sass/_content.sass */
.offline-ui .offline-ui-retry:before {
  content: "Reconnect";
}
/* line 11, ../sass/_content.sass */
.offline-ui.offline-ui-up .offline-ui-content:before {
  content: "Your computer is connected to the internet.";
}
@media (max-width: 1024px) {
  /* line 11, ../sass/_content.sass */
  .offline-ui.offline-ui-up .offline-ui-content:before {
    content: "Your device is connected to the internet.";
  }
}
@media (max-width: 568px) {
  /* line 11, ../sass/_content.sass */
  .offline-ui.offline-ui-up .offline-ui-content:before {
    content: "Your device is connected.";
  }
}
/* line 22, ../sass/_content.sass */
.offline-ui.offline-ui-down .offline-ui-content:before {
  content: "Your computer lost its internet connection.";
}
@media (max-width: 1024px) {
  /* line 22, ../sass/_content.sass */
  .offline-ui.offline-ui-down .offline-ui-content:before {
    content: "Your device lost its internet connection.";
  }
}
@media (max-width: 568px) {
  /* line 22, ../sass/_content.sass */
  .offline-ui.offline-ui-down .offline-ui-content:before {
    content: "Your device isn't connected.";
  }
}
/* line 33, ../sass/_content.sass */
.offline-ui.offline-ui-down.offline-ui-connecting .offline-ui-content:before, .offline-ui.offline-ui-down.offline-ui-connecting-2s .offline-ui-content:before {
  content: "Attempting to reconnect...";
}
/* line 42, ../sass/_content.sass */
.offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="second"]:before {
  content: "Connection lost. Reconnecting in " attr(data-retry-in-value) " seconds...";
}
@media (max-width: 568px) {
  /* line 42, ../sass/_content.sass */
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="second"]:before {
    content: "Reconnecting in " attr(data-retry-in-value) "s...";
  }
}
/* line 50, ../sass/_content.sass */
.offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="second"][data-retry-in-value="1"]:before {
  content: "Connection lost. Reconnecting in " attr(data-retry-in-value) " second...";
}
@media (max-width: 568px) {
  /* line 50, ../sass/_content.sass */
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="second"][data-retry-in-value="1"]:before {
    content: "Reconnecting in " attr(data-retry-in-value) "s...";
  }
}
/* line 58, ../sass/_content.sass */
.offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="minute"]:before {
  content: "Connection lost. Reconnecting in " attr(data-retry-in-value) " minutes...";
}
@media (max-width: 568px) {
  /* line 58, ../sass/_content.sass */
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="minute"]:before {
    content: "Reconnecting in " attr(data-retry-in-value) "m...";
  }
}
/* line 66, ../sass/_content.sass */
.offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="minute"][data-retry-in-value="1"]:before {
  content: "Connection lost. Reconnecting in " attr(data-retry-in-value) " minute...";
}
@media (max-width: 568px) {
  /* line 66, ../sass/_content.sass */
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="minute"][data-retry-in-value="1"]:before {
    content: "Reconnecting in " attr(data-retry-in-value) "m...";
  }
}
/* line 74, ../sass/_content.sass */
.offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="hour"]:before {
  content: "Connection lost. Reconnecting in " attr(data-retry-in-value) " hours...";
}
@media (max-width: 568px) {
  /* line 74, ../sass/_content.sass */
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="hour"]:before {
    content: "Reconnecting in " attr(data-retry-in-value) "h...";
  }
}
/* line 82, ../sass/_content.sass */
.offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="hour"][data-retry-in-value="1"]:before {
  content: "Connection lost. Reconnecting in " attr(data-retry-in-value) " hour...";
}
@media (max-width: 568px) {
  /* line 82, ../sass/_content.sass */
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="hour"][data-retry-in-value="1"]:before {
    content: "Reconnecting in " attr(data-retry-in-value) "h...";
  }
}
/* line 90, ../sass/_content.sass */
.offline-ui.offline-ui-down.offline-ui-reconnect-failed-2s.offline-ui-waiting .offline-ui-retry {
  display: none;
}
/* line 93, ../sass/_content.sass */
.offline-ui.offline-ui-down.offline-ui-reconnect-failed-2s .offline-ui-content:before {
  content: "Connection attempt failed.";
}

.mat-badge-content{font-weight:600;font-size:12px;font-family:Roboto, "Helvetica Neue", sans-serif}.mat-badge-small .mat-badge-content{font-size:9px}.mat-badge-large .mat-badge-content{font-size:24px}.mat-h1,.mat-headline,.mat-typography h1{font:400 24px/32px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal;margin:0 0 16px}.mat-h2,.mat-title,.mat-typography h2{font:500 20px/32px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal;margin:0 0 16px}.mat-h3,.mat-subheading-2,.mat-typography h3{font:400 16px/28px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal;margin:0 0 16px}.mat-h4,.mat-subheading-1,.mat-typography h4{font:400 15px/24px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal;margin:0 0 16px}.mat-h5,.mat-typography h5{font:400 calc(14px * 0.83)/20px Roboto, "Helvetica Neue", sans-serif;margin:0 0 12px}.mat-h6,.mat-typography h6{font:400 calc(14px * 0.67)/20px Roboto, "Helvetica Neue", sans-serif;margin:0 0 12px}.mat-body-strong,.mat-body-2{font:500 14px/24px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal}.mat-body,.mat-body-1,.mat-typography{font:400 14px/20px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal}.mat-body p,.mat-body-1 p,.mat-typography p{margin:0 0 12px}.mat-small,.mat-caption{font:400 12px/20px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal}.mat-display-4,.mat-typography .mat-display-4{font:300 112px/112px Roboto, "Helvetica Neue", sans-serif;letter-spacing:-0.05em;margin:0 0 56px}.mat-display-3,.mat-typography .mat-display-3{font:400 56px/56px Roboto, "Helvetica Neue", sans-serif;letter-spacing:-0.02em;margin:0 0 64px}.mat-display-2,.mat-typography .mat-display-2{font:400 45px/48px Roboto, "Helvetica Neue", sans-serif;letter-spacing:-0.005em;margin:0 0 64px}.mat-display-1,.mat-typography .mat-display-1{font:400 34px/40px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal;margin:0 0 64px}.mat-bottom-sheet-container{font:400 14px/20px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal}.mat-button,.mat-raised-button,.mat-icon-button,.mat-stroked-button,.mat-flat-button,.mat-fab,.mat-mini-fab{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:14px;font-weight:500}.mat-button-toggle{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-card{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-card-title{font-size:24px;font-weight:500}.mat-card-header .mat-card-title{font-size:20px}.mat-card-subtitle,.mat-card-content{font-size:14px}.mat-checkbox{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-checkbox-layout .mat-checkbox-label{line-height:24px}.mat-chip{font-size:14px;font-weight:500}.mat-chip .mat-chip-trailing-icon.mat-icon,.mat-chip .mat-chip-remove.mat-icon{font-size:18px}.mat-table{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-header-cell{font-size:12px;font-weight:500}.mat-cell,.mat-footer-cell{font-size:14px}.mat-calendar{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-calendar-body{font-size:13px}.mat-calendar-body-label,.mat-calendar-period-button{font-size:14px;font-weight:500}.mat-calendar-table-header th{font-size:11px;font-weight:400}.mat-dialog-title{font:500 20px/32px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal}.mat-expansion-panel-header{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:15px;font-weight:400}.mat-expansion-panel-content{font:400 14px/20px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal}.mat-form-field{font-size:inherit;font-weight:400;line-height:1.125;font-family:Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal}.mat-form-field-wrapper{padding-bottom:1.34375em}.mat-form-field-prefix .mat-icon,.mat-form-field-suffix .mat-icon{font-size:150%;line-height:1.125}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{height:1.5em;width:1.5em}.mat-form-field-prefix .mat-icon-button .mat-icon,.mat-form-field-suffix .mat-icon-button .mat-icon{height:1.125em;line-height:1.125}.mat-form-field-infix{padding:.5em 0;border-top:.84375em solid transparent}.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.34375em) scale(0.75);width:133.3333333333%}.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.34374em) scale(0.75);width:133.3333433333%}.mat-form-field-label-wrapper{top:-0.84375em;padding-top:.84375em}.mat-form-field-label{top:1.34375em}.mat-form-field-underline{bottom:1.34375em}.mat-form-field-subscript-wrapper{font-size:75%;margin-top:.6666666667em;top:calc(100% - 1.7916666667em)}.mat-form-field-appearance-legacy .mat-form-field-wrapper{padding-bottom:1.25em}.mat-form-field-appearance-legacy .mat-form-field-infix{padding:.4375em 0}.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);-ms-transform:translateY(-1.28125em) scale(0.75);width:133.3333333333%}.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00101px);-ms-transform:translateY(-1.28124em) scale(0.75);width:133.3333433333%}.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00102px);-ms-transform:translateY(-1.28123em) scale(0.75);width:133.3333533333%}.mat-form-field-appearance-legacy .mat-form-field-label{top:1.28125em}.mat-form-field-appearance-legacy .mat-form-field-underline{bottom:1.25em}.mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper{margin-top:.5416666667em;top:calc(100% - 1.6666666667em)}@media print{.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28122em) scale(0.75)}.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28121em) scale(0.75)}.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.2812em) scale(0.75)}}.mat-form-field-appearance-fill .mat-form-field-infix{padding:.25em 0 .75em 0}.mat-form-field-appearance-fill .mat-form-field-label{top:1.09375em;margin-top:-0.5em}.mat-form-field-appearance-fill.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-0.59375em) scale(0.75);width:133.3333333333%}.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-0.59374em) scale(0.75);width:133.3333433333%}.mat-form-field-appearance-outline .mat-form-field-infix{padding:1em 0 1em 0}.mat-form-field-appearance-outline .mat-form-field-label{top:1.84375em;margin-top:-0.25em}.mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.59375em) scale(0.75);width:133.3333333333%}.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.59374em) scale(0.75);width:133.3333433333%}.mat-grid-tile-header,.mat-grid-tile-footer{font-size:14px}.mat-grid-tile-header .mat-line,.mat-grid-tile-footer .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-header .mat-line:nth-child(n+2),.mat-grid-tile-footer .mat-line:nth-child(n+2){font-size:12px}input.mat-input-element{margin-top:-0.0625em}.mat-menu-item{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:14px;font-weight:400}.mat-paginator,.mat-paginator-page-size .mat-select-trigger{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:12px}.mat-radio-button{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-select{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-select-trigger{height:1.125em}.mat-slide-toggle-content{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-slider-thumb-label-text{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:12px;font-weight:500}.mat-stepper-vertical,.mat-stepper-horizontal{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-step-label{font-size:14px;font-weight:400}.mat-step-sub-label-error{font-weight:normal}.mat-step-label-error{font-size:14px}.mat-step-label-selected{font-size:14px;font-weight:500}.mat-tab-group{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-tab-label,.mat-tab-link{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:14px;font-weight:500}.mat-toolbar,.mat-toolbar h1,.mat-toolbar h2,.mat-toolbar h3,.mat-toolbar h4,.mat-toolbar h5,.mat-toolbar h6{font:500 20px/32px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal;margin:0}.mat-tooltip{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:10px;padding-top:6px;padding-bottom:6px}.mat-tooltip-handset{font-size:14px;padding-top:8px;padding-bottom:8px}.mat-list-item{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-list-option{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-list-base .mat-list-item{font-size:16px}.mat-list-base .mat-list-item .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-list-base .mat-list-item .mat-line:nth-child(n+2){font-size:14px}.mat-list-base .mat-list-option{font-size:16px}.mat-list-base .mat-list-option .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-list-base .mat-list-option .mat-line:nth-child(n+2){font-size:14px}.mat-list-base .mat-subheader{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:14px;font-weight:500}.mat-list-base[dense] .mat-list-item{font-size:12px}.mat-list-base[dense] .mat-list-item .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-list-base[dense] .mat-list-item .mat-line:nth-child(n+2){font-size:12px}.mat-list-base[dense] .mat-list-option{font-size:12px}.mat-list-base[dense] .mat-list-option .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-list-base[dense] .mat-list-option .mat-line:nth-child(n+2){font-size:12px}.mat-list-base[dense] .mat-subheader{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:12px;font-weight:500}.mat-option{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:16px}.mat-optgroup-label{font:500 14px/24px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal}.mat-simple-snackbar{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:14px}.mat-simple-snackbar-action{line-height:1;font-family:inherit;font-size:inherit;font-weight:500}.mat-tree{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-tree-node,.mat-nested-tree-node{font-weight:400;font-size:14px}.mat-ripple{overflow:hidden;position:relative}.mat-ripple:not(:empty){transform:translateZ(0)}.mat-ripple.mat-ripple-unbounded{overflow:visible}.mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0ms cubic-bezier(0, 0, 0.2, 1);transform:scale(0)}.cdk-high-contrast-active .mat-ripple-element{display:none}.cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;outline:0;-webkit-appearance:none;-moz-appearance:none}.cdk-overlay-container,.cdk-global-overlay-wrapper{pointer-events:none;top:0;left:0;height:100%;width:100%}.cdk-overlay-container{position:fixed;z-index:1000}.cdk-overlay-container:empty{display:none}.cdk-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}.cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000;display:flex;max-width:100%;max-height:100%}.cdk-overlay-backdrop{position:absolute;top:0;bottom:0;left:0;right:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:transparent;transition:opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);opacity:0}.cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:1}@media screen and (-ms-high-contrast: active){.cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.6}}.cdk-overlay-dark-backdrop{background:rgba(0,0,0,.32)}.cdk-overlay-transparent-backdrop,.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing{opacity:0}.cdk-overlay-connected-position-bounding-box{position:absolute;z-index:1000;display:flex;flex-direction:column;min-width:1px;min-height:1px}.cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}@keyframes cdk-text-field-autofill-start{/*!*/}@keyframes cdk-text-field-autofill-end{/*!*/}.cdk-text-field-autofill-monitored:-webkit-autofill{animation:cdk-text-field-autofill-start 0s 1ms}.cdk-text-field-autofill-monitored:not(:-webkit-autofill){animation:cdk-text-field-autofill-end 0s 1ms}textarea.cdk-textarea-autosize{resize:none}textarea.cdk-textarea-autosize-measuring{padding:2px 0 !important;box-sizing:content-box !important;height:auto !important;overflow:hidden !important}textarea.cdk-textarea-autosize-measuring-firefox{padding:2px 0 !important;box-sizing:content-box !important;height:0 !important}.mat-focus-indicator{position:relative}.mat-mdc-focus-indicator{position:relative}.mat-ripple-element{background-color:rgba(0,0,0,.1)}.mat-option{color:rgba(0,0,0,.87)}.mat-option:hover:not(.mat-option-disabled),.mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.mat-option.mat-active{background:rgba(0,0,0,.04);color:rgba(0,0,0,.87)}.mat-option.mat-option-disabled{color:rgba(0,0,0,.38)}.mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#673ab7}.mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#ffd740}.mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#f44336}.mat-optgroup-label{color:rgba(0,0,0,.54)}.mat-optgroup-disabled .mat-optgroup-label{color:rgba(0,0,0,.38)}.mat-pseudo-checkbox{color:rgba(0,0,0,.54)}.mat-pseudo-checkbox::after{color:#fafafa}.mat-pseudo-checkbox-disabled{color:#b0b0b0}.mat-primary .mat-pseudo-checkbox-checked,.mat-primary .mat-pseudo-checkbox-indeterminate{background:#673ab7}.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox-indeterminate,.mat-accent .mat-pseudo-checkbox-checked,.mat-accent .mat-pseudo-checkbox-indeterminate{background:#ffd740}.mat-warn .mat-pseudo-checkbox-checked,.mat-warn .mat-pseudo-checkbox-indeterminate{background:#f44336}.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#b0b0b0}.mat-app-background{background-color:#fafafa;color:rgba(0,0,0,.87)}.mat-elevation-z0{box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2),0px 0px 0px 0px rgba(0, 0, 0, 0.14),0px 0px 0px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z1{box-shadow:0px 2px 1px -1px rgba(0, 0, 0, 0.2),0px 1px 1px 0px rgba(0, 0, 0, 0.14),0px 1px 3px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z2{box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 1px 5px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z3{box-shadow:0px 3px 3px -2px rgba(0, 0, 0, 0.2),0px 3px 4px 0px rgba(0, 0, 0, 0.14),0px 1px 8px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z4{box-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2),0px 4px 5px 0px rgba(0, 0, 0, 0.14),0px 1px 10px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z5{box-shadow:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 5px 8px 0px rgba(0, 0, 0, 0.14),0px 1px 14px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z6{box-shadow:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px 0px rgba(0, 0, 0, 0.14),0px 1px 18px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z7{box-shadow:0px 4px 5px -2px rgba(0, 0, 0, 0.2),0px 7px 10px 1px rgba(0, 0, 0, 0.14),0px 2px 16px 1px rgba(0, 0, 0, 0.12)}.mat-elevation-z8{box-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2),0px 8px 10px 1px rgba(0, 0, 0, 0.14),0px 3px 14px 2px rgba(0, 0, 0, 0.12)}.mat-elevation-z9{box-shadow:0px 5px 6px -3px rgba(0, 0, 0, 0.2),0px 9px 12px 1px rgba(0, 0, 0, 0.14),0px 3px 16px 2px rgba(0, 0, 0, 0.12)}.mat-elevation-z10{box-shadow:0px 6px 6px -3px rgba(0, 0, 0, 0.2),0px 10px 14px 1px rgba(0, 0, 0, 0.14),0px 4px 18px 3px rgba(0, 0, 0, 0.12)}.mat-elevation-z11{box-shadow:0px 6px 7px -4px rgba(0, 0, 0, 0.2),0px 11px 15px 1px rgba(0, 0, 0, 0.14),0px 4px 20px 3px rgba(0, 0, 0, 0.12)}.mat-elevation-z12{box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),0px 12px 17px 2px rgba(0, 0, 0, 0.14),0px 5px 22px 4px rgba(0, 0, 0, 0.12)}.mat-elevation-z13{box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),0px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px 4px rgba(0, 0, 0, 0.12)}.mat-elevation-z14{box-shadow:0px 7px 9px -4px rgba(0, 0, 0, 0.2),0px 14px 21px 2px rgba(0, 0, 0, 0.14),0px 5px 26px 4px rgba(0, 0, 0, 0.12)}.mat-elevation-z15{box-shadow:0px 8px 9px -5px rgba(0, 0, 0, 0.2),0px 15px 22px 2px rgba(0, 0, 0, 0.14),0px 6px 28px 5px rgba(0, 0, 0, 0.12)}.mat-elevation-z16{box-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2),0px 16px 24px 2px rgba(0, 0, 0, 0.14),0px 6px 30px 5px rgba(0, 0, 0, 0.12)}.mat-elevation-z17{box-shadow:0px 8px 11px -5px rgba(0, 0, 0, 0.2),0px 17px 26px 2px rgba(0, 0, 0, 0.14),0px 6px 32px 5px rgba(0, 0, 0, 0.12)}.mat-elevation-z18{box-shadow:0px 9px 11px -5px rgba(0, 0, 0, 0.2),0px 18px 28px 2px rgba(0, 0, 0, 0.14),0px 7px 34px 6px rgba(0, 0, 0, 0.12)}.mat-elevation-z19{box-shadow:0px 9px 12px -6px rgba(0, 0, 0, 0.2),0px 19px 29px 2px rgba(0, 0, 0, 0.14),0px 7px 36px 6px rgba(0, 0, 0, 0.12)}.mat-elevation-z20{box-shadow:0px 10px 13px -6px rgba(0, 0, 0, 0.2),0px 20px 31px 3px rgba(0, 0, 0, 0.14),0px 8px 38px 7px rgba(0, 0, 0, 0.12)}.mat-elevation-z21{box-shadow:0px 10px 13px -6px rgba(0, 0, 0, 0.2),0px 21px 33px 3px rgba(0, 0, 0, 0.14),0px 8px 40px 7px rgba(0, 0, 0, 0.12)}.mat-elevation-z22{box-shadow:0px 10px 14px -6px rgba(0, 0, 0, 0.2),0px 22px 35px 3px rgba(0, 0, 0, 0.14),0px 8px 42px 7px rgba(0, 0, 0, 0.12)}.mat-elevation-z23{box-shadow:0px 11px 14px -7px rgba(0, 0, 0, 0.2),0px 23px 36px 3px rgba(0, 0, 0, 0.14),0px 9px 44px 8px rgba(0, 0, 0, 0.12)}.mat-elevation-z24{box-shadow:0px 11px 15px -7px rgba(0, 0, 0, 0.2),0px 24px 38px 3px rgba(0, 0, 0, 0.14),0px 9px 46px 8px rgba(0, 0, 0, 0.12)}.mat-theme-loaded-marker{display:none}.mat-autocomplete-panel{background:#fff;color:rgba(0,0,0,.87)}.mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2),0px 4px 5px 0px rgba(0, 0, 0, 0.14),0px 1px 10px 0px rgba(0, 0, 0, 0.12)}.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:#fff}.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:rgba(0,0,0,.87)}.mat-badge-content{color:#fff;background:#673ab7}.cdk-high-contrast-active .mat-badge-content{outline:solid 1px;border-radius:0}.mat-badge-accent .mat-badge-content{background:#ffd740;color:rgba(0,0,0,.87)}.mat-badge-warn .mat-badge-content{color:#fff;background:#f44336}.mat-badge{position:relative}.mat-badge-hidden .mat-badge-content{display:none}.mat-badge-disabled .mat-badge-content{background:#b9b9b9;color:rgba(0,0,0,.38)}.mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform 200ms ease-in-out;transform:scale(0.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.ng-animate-disabled .mat-badge-content,.mat-badge-content._mat-animation-noopable{transition:none}.mat-badge-content.mat-badge-active{transform:none}.mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.mat-bottom-sheet-container{box-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2),0px 16px 24px 2px rgba(0, 0, 0, 0.14),0px 6px 30px 5px rgba(0, 0, 0, 0.12);background:#fff;color:rgba(0,0,0,.87)}.mat-button,.mat-icon-button,.mat-stroked-button{color:inherit;background:transparent}.mat-button.mat-primary,.mat-icon-button.mat-primary,.mat-stroked-button.mat-primary{color:#673ab7}.mat-button.mat-accent,.mat-icon-button.mat-accent,.mat-stroked-button.mat-accent{color:#ffd740}.mat-button.mat-warn,.mat-icon-button.mat-warn,.mat-stroked-button.mat-warn{color:#f44336}.mat-button.mat-primary.mat-button-disabled,.mat-button.mat-accent.mat-button-disabled,.mat-button.mat-warn.mat-button-disabled,.mat-button.mat-button-disabled.mat-button-disabled,.mat-icon-button.mat-primary.mat-button-disabled,.mat-icon-button.mat-accent.mat-button-disabled,.mat-icon-button.mat-warn.mat-button-disabled,.mat-icon-button.mat-button-disabled.mat-button-disabled,.mat-stroked-button.mat-primary.mat-button-disabled,.mat-stroked-button.mat-accent.mat-button-disabled,.mat-stroked-button.mat-warn.mat-button-disabled,.mat-stroked-button.mat-button-disabled.mat-button-disabled{color:rgba(0,0,0,.26)}.mat-button.mat-primary .mat-button-focus-overlay,.mat-icon-button.mat-primary .mat-button-focus-overlay,.mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#673ab7}.mat-button.mat-accent .mat-button-focus-overlay,.mat-icon-button.mat-accent .mat-button-focus-overlay,.mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#ffd740}.mat-button.mat-warn .mat-button-focus-overlay,.mat-icon-button.mat-warn .mat-button-focus-overlay,.mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#f44336}.mat-button.mat-button-disabled .mat-button-focus-overlay,.mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:transparent}.mat-button .mat-ripple-element,.mat-icon-button .mat-ripple-element,.mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.mat-button-focus-overlay{background:#000}.mat-stroked-button:not(.mat-button-disabled){border-color:rgba(0,0,0,.12)}.mat-flat-button,.mat-raised-button,.mat-fab,.mat-mini-fab{color:rgba(0,0,0,.87);background-color:#fff}.mat-flat-button.mat-primary,.mat-raised-button.mat-primary,.mat-fab.mat-primary,.mat-mini-fab.mat-primary{color:#fff}.mat-flat-button.mat-accent,.mat-raised-button.mat-accent,.mat-fab.mat-accent,.mat-mini-fab.mat-accent{color:rgba(0,0,0,.87)}.mat-flat-button.mat-warn,.mat-raised-button.mat-warn,.mat-fab.mat-warn,.mat-mini-fab.mat-warn{color:#fff}.mat-flat-button.mat-primary.mat-button-disabled,.mat-flat-button.mat-accent.mat-button-disabled,.mat-flat-button.mat-warn.mat-button-disabled,.mat-flat-button.mat-button-disabled.mat-button-disabled,.mat-raised-button.mat-primary.mat-button-disabled,.mat-raised-button.mat-accent.mat-button-disabled,.mat-raised-button.mat-warn.mat-button-disabled,.mat-raised-button.mat-button-disabled.mat-button-disabled,.mat-fab.mat-primary.mat-button-disabled,.mat-fab.mat-accent.mat-button-disabled,.mat-fab.mat-warn.mat-button-disabled,.mat-fab.mat-button-disabled.mat-button-disabled,.mat-mini-fab.mat-primary.mat-button-disabled,.mat-mini-fab.mat-accent.mat-button-disabled,.mat-mini-fab.mat-warn.mat-button-disabled,.mat-mini-fab.mat-button-disabled.mat-button-disabled{color:rgba(0,0,0,.26)}.mat-flat-button.mat-primary,.mat-raised-button.mat-primary,.mat-fab.mat-primary,.mat-mini-fab.mat-primary{background-color:#673ab7}.mat-flat-button.mat-accent,.mat-raised-button.mat-accent,.mat-fab.mat-accent,.mat-mini-fab.mat-accent{background-color:#ffd740}.mat-flat-button.mat-warn,.mat-raised-button.mat-warn,.mat-fab.mat-warn,.mat-mini-fab.mat-warn{background-color:#f44336}.mat-flat-button.mat-primary.mat-button-disabled,.mat-flat-button.mat-accent.mat-button-disabled,.mat-flat-button.mat-warn.mat-button-disabled,.mat-flat-button.mat-button-disabled.mat-button-disabled,.mat-raised-button.mat-primary.mat-button-disabled,.mat-raised-button.mat-accent.mat-button-disabled,.mat-raised-button.mat-warn.mat-button-disabled,.mat-raised-button.mat-button-disabled.mat-button-disabled,.mat-fab.mat-primary.mat-button-disabled,.mat-fab.mat-accent.mat-button-disabled,.mat-fab.mat-warn.mat-button-disabled,.mat-fab.mat-button-disabled.mat-button-disabled,.mat-mini-fab.mat-primary.mat-button-disabled,.mat-mini-fab.mat-accent.mat-button-disabled,.mat-mini-fab.mat-warn.mat-button-disabled,.mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:rgba(0,0,0,.12)}.mat-flat-button.mat-primary .mat-ripple-element,.mat-raised-button.mat-primary .mat-ripple-element,.mat-fab.mat-primary .mat-ripple-element,.mat-mini-fab.mat-primary .mat-ripple-element{background-color:rgba(255,255,255,.1)}.mat-flat-button.mat-accent .mat-ripple-element,.mat-raised-button.mat-accent .mat-ripple-element,.mat-fab.mat-accent .mat-ripple-element,.mat-mini-fab.mat-accent .mat-ripple-element{background-color:rgba(0,0,0,.1)}.mat-flat-button.mat-warn .mat-ripple-element,.mat-raised-button.mat-warn .mat-ripple-element,.mat-fab.mat-warn .mat-ripple-element,.mat-mini-fab.mat-warn .mat-ripple-element{background-color:rgba(255,255,255,.1)}.mat-stroked-button:not([class*=mat-elevation-z]),.mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2),0px 0px 0px 0px rgba(0, 0, 0, 0.14),0px 0px 0px 0px rgba(0, 0, 0, 0.12)}.mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 1px 5px 0px rgba(0, 0, 0, 0.12)}.mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2),0px 8px 10px 1px rgba(0, 0, 0, 0.14),0px 3px 14px 2px rgba(0, 0, 0, 0.12)}.mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2),0px 0px 0px 0px rgba(0, 0, 0, 0.14),0px 0px 0px 0px rgba(0, 0, 0, 0.12)}.mat-fab:not([class*=mat-elevation-z]),.mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px 0px rgba(0, 0, 0, 0.14),0px 1px 18px 0px rgba(0, 0, 0, 0.12)}.mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),0px 12px 17px 2px rgba(0, 0, 0, 0.14),0px 5px 22px 4px rgba(0, 0, 0, 0.12)}.mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2),0px 0px 0px 0px rgba(0, 0, 0, 0.14),0px 0px 0px 0px rgba(0, 0, 0, 0.12)}.mat-button-toggle-standalone,.mat-button-toggle-group{box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 1px 5px 0px rgba(0, 0, 0, 0.12)}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.mat-button-toggle-group-appearance-standard{box-shadow:none}.mat-button-toggle{color:rgba(0,0,0,.38)}.mat-button-toggle .mat-button-toggle-focus-overlay{background-color:rgba(0,0,0,.12)}.mat-button-toggle-appearance-standard{color:rgba(0,0,0,.87);background:#fff}.mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:#000}.mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px rgba(0,0,0,.12)}[dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}.mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px rgba(0,0,0,.12)}.mat-button-toggle-checked{background-color:#e0e0e0;color:rgba(0,0,0,.54)}.mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:rgba(0,0,0,.87)}.mat-button-toggle-disabled{color:rgba(0,0,0,.26);background-color:#eee}.mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:#fff}.mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#bdbdbd}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.mat-button-toggle-group-appearance-standard{border:solid 1px rgba(0,0,0,.12)}.mat-button-toggle-appearance-standard .mat-button-toggle-label-content{line-height:48px}.mat-card{background:#fff;color:rgba(0,0,0,.87)}.mat-card:not([class*=mat-elevation-z]){box-shadow:0px 2px 1px -1px rgba(0, 0, 0, 0.2),0px 1px 1px 0px rgba(0, 0, 0, 0.14),0px 1px 3px 0px rgba(0, 0, 0, 0.12)}.mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2),0px 0px 0px 0px rgba(0, 0, 0, 0.14),0px 0px 0px 0px rgba(0, 0, 0, 0.12)}.mat-card-subtitle{color:rgba(0,0,0,.54)}.mat-checkbox-frame{border-color:rgba(0,0,0,.54)}.mat-checkbox-checkmark{fill:#fafafa}.mat-checkbox-checkmark-path{stroke:#fafafa !important}.mat-checkbox-mixedmark{background-color:#fafafa}.mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#673ab7}.mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#ffd740}.mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#f44336}.mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#b0b0b0}.mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#b0b0b0}.mat-checkbox-disabled .mat-checkbox-label{color:rgba(0,0,0,.54)}.mat-checkbox .mat-ripple-element{background-color:#000}.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#673ab7}.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#ffd740}.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#f44336}.mat-chip.mat-standard-chip{background-color:#e0e0e0;color:rgba(0,0,0,.87)}.mat-chip.mat-standard-chip .mat-chip-remove{color:rgba(0,0,0,.87);opacity:.4}.mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0px 3px 3px -2px rgba(0, 0, 0, 0.2),0px 3px 4px 0px rgba(0, 0, 0, 0.14),0px 1px 8px 0px rgba(0, 0, 0, 0.12)}.mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.mat-chip.mat-standard-chip::after{background:#000}.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#673ab7;color:#fff}.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:rgba(255,255,255,.1)}.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#f44336;color:#fff}.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:rgba(255,255,255,.1)}.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#ffd740;color:rgba(0,0,0,.87)}.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:rgba(0,0,0,.87);opacity:.4}.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:rgba(0,0,0,.1)}.mat-table{background:#fff}.mat-table thead,.mat-table tbody,.mat-table tfoot,mat-header-row,mat-row,mat-footer-row,[mat-header-row],[mat-row],[mat-footer-row],.mat-table-sticky{background:inherit}mat-row,mat-header-row,mat-footer-row,th.mat-header-cell,td.mat-cell,td.mat-footer-cell{border-bottom-color:rgba(0,0,0,.12)}.mat-header-cell{color:rgba(0,0,0,.54)}.mat-cell,.mat-footer-cell{color:rgba(0,0,0,.87)}.mat-calendar-arrow{border-top-color:rgba(0,0,0,.54)}.mat-datepicker-toggle,.mat-datepicker-content .mat-calendar-next-button,.mat-datepicker-content .mat-calendar-previous-button{color:rgba(0,0,0,.54)}.mat-calendar-table-header{color:rgba(0,0,0,.38)}.mat-calendar-table-header-divider::after{background:rgba(0,0,0,.12)}.mat-calendar-body-label{color:rgba(0,0,0,.54)}.mat-calendar-body-cell-content,.mat-date-range-input-separator{color:rgba(0,0,0,.87);border-color:transparent}.mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:rgba(0,0,0,.38)}.mat-form-field-disabled .mat-date-range-input-separator{color:rgba(0,0,0,.38)}.mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:rgba(0,0,0,.04)}.mat-calendar-body-in-preview{color:rgba(0,0,0,.24)}.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:rgba(0,0,0,.38)}.mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:rgba(0,0,0,.18)}.mat-calendar-body-in-range::before{background:rgba(103,58,183,.2)}.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range::before{background:rgba(249,171,0,.2)}.mat-calendar-body-comparison-bridge-start::before,[dir=rtl] .mat-calendar-body-comparison-bridge-end::before{background:linear-gradient(to right, rgba(103, 58, 183, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%)}.mat-calendar-body-comparison-bridge-end::before,[dir=rtl] .mat-calendar-body-comparison-bridge-start::before{background:linear-gradient(to left, rgba(103, 58, 183, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%)}.mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after{background:#a8dab5}.mat-calendar-body-comparison-identical.mat-calendar-body-selected,.mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.mat-calendar-body-selected{background-color:#673ab7;color:#fff}.mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:rgba(103,58,183,.4)}.mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.mat-datepicker-content{box-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2),0px 4px 5px 0px rgba(0, 0, 0, 0.14),0px 1px 10px 0px rgba(0, 0, 0, 0.12);background-color:#fff;color:rgba(0,0,0,.87)}.mat-datepicker-content.mat-accent .mat-calendar-body-in-range::before{background:rgba(255,215,64,.2)}.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range::before{background:rgba(249,171,0,.2)}.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start::before,.mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end::before{background:linear-gradient(to right, rgba(255, 215, 64, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%)}.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end::before,.mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start::before{background:linear-gradient(to left, rgba(255, 215, 64, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%)}.mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after{background:#a8dab5}.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#ffd740;color:rgba(0,0,0,.87)}.mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:rgba(255,215,64,.4)}.mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px rgba(0,0,0,.87)}.mat-datepicker-content.mat-warn .mat-calendar-body-in-range::before{background:rgba(244,67,54,.2)}.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range::before{background:rgba(249,171,0,.2)}.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start::before,.mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end::before{background:linear-gradient(to right, rgba(244, 67, 54, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%)}.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end::before,.mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start::before{background:linear-gradient(to left, rgba(244, 67, 54, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%)}.mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after{background:#a8dab5}.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#f44336;color:#fff}.mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:rgba(244,67,54,.4)}.mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.mat-datepicker-content-touch{box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2),0px 0px 0px 0px rgba(0, 0, 0, 0.14),0px 0px 0px 0px rgba(0, 0, 0, 0.12)}.mat-datepicker-toggle-active{color:#673ab7}.mat-datepicker-toggle-active.mat-accent{color:#ffd740}.mat-datepicker-toggle-active.mat-warn{color:#f44336}.mat-date-range-input-inner[disabled]{color:rgba(0,0,0,.38)}.mat-dialog-container{box-shadow:0px 11px 15px -7px rgba(0, 0, 0, 0.2),0px 24px 38px 3px rgba(0, 0, 0, 0.14),0px 9px 46px 8px rgba(0, 0, 0, 0.12);background:#fff;color:rgba(0,0,0,.87)}.mat-divider{border-top-color:rgba(0,0,0,.12)}.mat-divider-vertical{border-right-color:rgba(0,0,0,.12)}.mat-expansion-panel{background:#fff;color:rgba(0,0,0,.87)}.mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 1px 5px 0px rgba(0, 0, 0, 0.12)}.mat-action-row{border-top-color:rgba(0,0,0,.12)}.mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media(hover: none){.mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:#fff}}.mat-expansion-panel-header-title{color:rgba(0,0,0,.87)}.mat-expansion-panel-header-description,.mat-expansion-indicator::after{color:rgba(0,0,0,.54)}.mat-expansion-panel-header[aria-disabled=true]{color:rgba(0,0,0,.26)}.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.mat-expansion-panel-header{height:48px}.mat-expansion-panel-header.mat-expanded{height:64px}.mat-form-field-label{color:rgba(0,0,0,.6)}.mat-hint{color:rgba(0,0,0,.6)}.mat-form-field.mat-focused .mat-form-field-label{color:#673ab7}.mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#ffd740}.mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#f44336}.mat-focused .mat-form-field-required-marker{color:#ffd740}.mat-form-field-ripple{background-color:rgba(0,0,0,.87)}.mat-form-field.mat-focused .mat-form-field-ripple{background-color:#673ab7}.mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#ffd740}.mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#f44336}.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix::after{color:#673ab7}.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix::after{color:#ffd740}.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix::after{color:#f44336}.mat-form-field.mat-form-field-invalid .mat-form-field-label{color:#f44336}.mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#f44336}.mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#f44336}.mat-error{color:#f44336}.mat-form-field-appearance-legacy .mat-form-field-label{color:rgba(0,0,0,.54)}.mat-form-field-appearance-legacy .mat-hint{color:rgba(0,0,0,.54)}.mat-form-field-appearance-legacy .mat-form-field-underline{background-color:rgba(0,0,0,.42)}.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.mat-form-field-appearance-standard .mat-form-field-underline{background-color:rgba(0,0,0,.42)}.mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.mat-form-field-appearance-fill .mat-form-field-flex{background-color:rgba(0,0,0,.04)}.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:rgba(0,0,0,.02)}.mat-form-field-appearance-fill .mat-form-field-underline::before{background-color:rgba(0,0,0,.42)}.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label{color:rgba(0,0,0,.38)}.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline::before{background-color:transparent}.mat-form-field-appearance-outline .mat-form-field-outline{color:rgba(0,0,0,.12)}.mat-form-field-appearance-outline .mat-form-field-outline-thick{color:rgba(0,0,0,.87)}.mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#673ab7}.mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#ffd740}.mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick{color:#f44336}.mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#f44336}.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label{color:rgba(0,0,0,.38)}.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:rgba(0,0,0,.06)}.mat-icon.mat-primary{color:#673ab7}.mat-icon.mat-accent{color:#ffd740}.mat-icon.mat-warn{color:#f44336}.mat-form-field-type-mat-native-select .mat-form-field-infix::after{color:rgba(0,0,0,.54)}.mat-input-element:disabled,.mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix::after{color:rgba(0,0,0,.38)}.mat-input-element{caret-color:#673ab7}.mat-input-element::placeholder{color:rgba(0,0,0,.42)}.mat-input-element::-moz-placeholder{color:rgba(0,0,0,.42)}.mat-input-element::-webkit-input-placeholder{color:rgba(0,0,0,.42)}.mat-input-element:-ms-input-placeholder{color:rgba(0,0,0,.42)}.mat-form-field.mat-accent .mat-input-element{caret-color:#ffd740}.mat-form-field.mat-warn .mat-input-element,.mat-form-field-invalid .mat-input-element{caret-color:#f44336}.mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after{color:#f44336}.mat-list-base .mat-list-item{color:rgba(0,0,0,.87)}.mat-list-base .mat-list-option{color:rgba(0,0,0,.87)}.mat-list-base .mat-subheader{color:rgba(0,0,0,.54)}.mat-list-item-disabled{background-color:#eee}.mat-list-option:hover,.mat-list-option:focus,.mat-nav-list .mat-list-item:hover,.mat-nav-list .mat-list-item:focus,.mat-action-list .mat-list-item:hover,.mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.mat-list-single-selected-option,.mat-list-single-selected-option:hover,.mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.mat-menu-panel{background:#fff}.mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2),0px 4px 5px 0px rgba(0, 0, 0, 0.14),0px 1px 10px 0px rgba(0, 0, 0, 0.12)}.mat-menu-item{background:transparent;color:rgba(0,0,0,.87)}.mat-menu-item[disabled],.mat-menu-item[disabled]::after{color:rgba(0,0,0,.38)}.mat-menu-item .mat-icon-no-color,.mat-menu-item-submenu-trigger::after{color:rgba(0,0,0,.54)}.mat-menu-item:hover:not([disabled]),.mat-menu-item.cdk-program-focused:not([disabled]),.mat-menu-item.cdk-keyboard-focused:not([disabled]),.mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.mat-paginator{background:#fff}.mat-paginator,.mat-paginator-page-size .mat-select-trigger{color:rgba(0,0,0,.54)}.mat-paginator-decrement,.mat-paginator-increment{border-top:2px solid rgba(0,0,0,.54);border-right:2px solid rgba(0,0,0,.54)}.mat-paginator-first,.mat-paginator-last{border-top:2px solid rgba(0,0,0,.54)}.mat-icon-button[disabled] .mat-paginator-decrement,.mat-icon-button[disabled] .mat-paginator-increment,.mat-icon-button[disabled] .mat-paginator-first,.mat-icon-button[disabled] .mat-paginator-last{border-color:rgba(0,0,0,.38)}.mat-paginator-container{min-height:56px}.mat-progress-bar-background{fill:#d1c4e9}.mat-progress-bar-buffer{background-color:#d1c4e9}.mat-progress-bar-fill::after{background-color:#673ab7}.mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#ffe57f}.mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#ffe57f}.mat-progress-bar.mat-accent .mat-progress-bar-fill::after{background-color:#ffd740}.mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#ffcdd2}.mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#ffcdd2}.mat-progress-bar.mat-warn .mat-progress-bar-fill::after{background-color:#f44336}.mat-progress-spinner circle,.mat-spinner circle{stroke:#673ab7}.mat-progress-spinner.mat-accent circle,.mat-spinner.mat-accent circle{stroke:#ffd740}.mat-progress-spinner.mat-warn circle,.mat-spinner.mat-warn circle{stroke:#f44336}.mat-radio-outer-circle{border-color:rgba(0,0,0,.54)}.mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#673ab7}.mat-radio-button.mat-primary .mat-radio-inner-circle,.mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#673ab7}.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#ffd740}.mat-radio-button.mat-accent .mat-radio-inner-circle,.mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#ffd740}.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#f44336}.mat-radio-button.mat-warn .mat-radio-inner-circle,.mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#f44336}.mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,.mat-radio-button.mat-radio-disabled .mat-radio-outer-circle{border-color:rgba(0,0,0,.38)}.mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,.mat-radio-button.mat-radio-disabled .mat-radio-inner-circle{background-color:rgba(0,0,0,.38)}.mat-radio-button.mat-radio-disabled .mat-radio-label-content{color:rgba(0,0,0,.38)}.mat-radio-button .mat-ripple-element{background-color:#000}.mat-select-value{color:rgba(0,0,0,.87)}.mat-select-placeholder{color:rgba(0,0,0,.42)}.mat-select-disabled .mat-select-value{color:rgba(0,0,0,.38)}.mat-select-arrow{color:rgba(0,0,0,.54)}.mat-select-panel{background:#fff}.mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2),0px 4px 5px 0px rgba(0, 0, 0, 0.14),0px 1px 10px 0px rgba(0, 0, 0, 0.12)}.mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#673ab7}.mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#ffd740}.mat-form-field.mat-focused.mat-warn .mat-select-arrow{color:#f44336}.mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#f44336}.mat-form-field .mat-select.mat-select-disabled .mat-select-arrow{color:rgba(0,0,0,.38)}.mat-drawer-container{background-color:#fafafa;color:rgba(0,0,0,.87)}.mat-drawer{background-color:#fff;color:rgba(0,0,0,.87)}.mat-drawer.mat-drawer-push{background-color:#fff}.mat-drawer:not(.mat-drawer-side){box-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2),0px 16px 24px 2px rgba(0, 0, 0, 0.14),0px 6px 30px 5px rgba(0, 0, 0, 0.12)}.mat-drawer-side{border-right:solid 1px rgba(0,0,0,.12)}.mat-drawer-side.mat-drawer-end{border-left:solid 1px rgba(0,0,0,.12);border-right:none}[dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(0,0,0,.12);border-right:none}[dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}.mat-drawer-backdrop.mat-drawer-shown{background-color:rgba(0,0,0,.6)}.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#ffd740}.mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:rgba(255,215,64,.54)}.mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#ffd740}.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#673ab7}.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:rgba(103,58,183,.54)}.mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#673ab7}.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#f44336}.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:rgba(244,67,54,.54)}.mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#f44336}.mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#000}.mat-slide-toggle-thumb{box-shadow:0px 2px 1px -1px rgba(0, 0, 0, 0.2),0px 1px 1px 0px rgba(0, 0, 0, 0.14),0px 1px 3px 0px rgba(0, 0, 0, 0.12);background-color:#fafafa}.mat-slide-toggle-bar{background-color:rgba(0,0,0,.38)}.mat-slider-track-background{background-color:rgba(0,0,0,.26)}.mat-primary .mat-slider-track-fill,.mat-primary .mat-slider-thumb,.mat-primary .mat-slider-thumb-label{background-color:#673ab7}.mat-primary .mat-slider-thumb-label-text{color:#fff}.mat-primary .mat-slider-focus-ring{background-color:rgba(103,58,183,.2)}.mat-accent .mat-slider-track-fill,.mat-accent .mat-slider-thumb,.mat-accent .mat-slider-thumb-label{background-color:#ffd740}.mat-accent .mat-slider-thumb-label-text{color:rgba(0,0,0,.87)}.mat-accent .mat-slider-focus-ring{background-color:rgba(255,215,64,.2)}.mat-warn .mat-slider-track-fill,.mat-warn .mat-slider-thumb,.mat-warn .mat-slider-thumb-label{background-color:#f44336}.mat-warn .mat-slider-thumb-label-text{color:#fff}.mat-warn .mat-slider-focus-ring{background-color:rgba(244,67,54,.2)}.mat-slider:hover .mat-slider-track-background,.cdk-focused .mat-slider-track-background{background-color:rgba(0,0,0,.38)}.mat-slider-disabled .mat-slider-track-background,.mat-slider-disabled .mat-slider-track-fill,.mat-slider-disabled .mat-slider-thumb{background-color:rgba(0,0,0,.26)}.mat-slider-disabled:hover .mat-slider-track-background{background-color:rgba(0,0,0,.26)}.mat-slider-min-value .mat-slider-focus-ring{background-color:rgba(0,0,0,.12)}.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:rgba(0,0,0,.87)}.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:rgba(0,0,0,.26)}.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:rgba(0,0,0,.26);background-color:transparent}.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:rgba(0,0,0,.38)}.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:rgba(0,0,0,.26)}.mat-slider-has-ticks .mat-slider-wrapper::after{border-color:rgba(0,0,0,.7)}.mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);background-image:-moz-repeating-linear-gradient(0.0001deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent)}.mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent)}.mat-step-header.cdk-keyboard-focused,.mat-step-header.cdk-program-focused,.mat-step-header:hover{background-color:rgba(0,0,0,.04)}@media(hover: none){.mat-step-header:hover{background:none}}.mat-step-header .mat-step-label,.mat-step-header .mat-step-optional{color:rgba(0,0,0,.54)}.mat-step-header .mat-step-icon{background-color:rgba(0,0,0,.54);color:#fff}.mat-step-header .mat-step-icon-selected,.mat-step-header .mat-step-icon-state-done,.mat-step-header .mat-step-icon-state-edit{background-color:#673ab7;color:#fff}.mat-step-header .mat-step-icon-state-error{background-color:transparent;color:#f44336}.mat-step-header .mat-step-label.mat-step-label-active{color:rgba(0,0,0,.87)}.mat-step-header .mat-step-label.mat-step-label-error{color:#f44336}.mat-stepper-horizontal,.mat-stepper-vertical{background-color:#fff}.mat-stepper-vertical-line::before{border-left-color:rgba(0,0,0,.12)}.mat-horizontal-stepper-header::before,.mat-horizontal-stepper-header::after,.mat-stepper-horizontal-line{border-top-color:rgba(0,0,0,.12)}.mat-horizontal-stepper-header{height:72px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header,.mat-vertical-stepper-header{padding:24px 24px}.mat-stepper-vertical-line::before{top:-16px;bottom:-16px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::after,.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::before{top:36px}.mat-stepper-label-position-bottom .mat-stepper-horizontal-line{top:36px}.mat-sort-header-arrow{color:#757575}.mat-tab-nav-bar,.mat-tab-header{border-bottom:1px solid rgba(0,0,0,.12)}.mat-tab-group-inverted-header .mat-tab-nav-bar,.mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(0,0,0,.12);border-bottom:none}.mat-tab-label,.mat-tab-link{color:rgba(0,0,0,.87)}.mat-tab-label.mat-tab-disabled,.mat-tab-link.mat-tab-disabled{color:rgba(0,0,0,.38)}.mat-tab-header-pagination-chevron{border-color:rgba(0,0,0,.87)}.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:rgba(0,0,0,.38)}.mat-tab-group[class*=mat-background-] .mat-tab-header,.mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:rgba(209,196,233,.3)}.mat-tab-group.mat-primary .mat-ink-bar,.mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#673ab7}.mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar,.mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar{background-color:#fff}.mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:rgba(255,229,127,.3)}.mat-tab-group.mat-accent .mat-ink-bar,.mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#ffd740}.mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar,.mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar{background-color:rgba(0,0,0,.87)}.mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:rgba(255,205,210,.3)}.mat-tab-group.mat-warn .mat-ink-bar,.mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#f44336}.mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar,.mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar{background-color:#fff}.mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:rgba(209,196,233,.3)}.mat-tab-group.mat-background-primary .mat-tab-header,.mat-tab-group.mat-background-primary .mat-tab-links,.mat-tab-group.mat-background-primary .mat-tab-header-pagination,.mat-tab-nav-bar.mat-background-primary .mat-tab-header,.mat-tab-nav-bar.mat-background-primary .mat-tab-links,.mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination{background-color:#673ab7}.mat-tab-group.mat-background-primary .mat-tab-label,.mat-tab-group.mat-background-primary .mat-tab-link,.mat-tab-nav-bar.mat-background-primary .mat-tab-label,.mat-tab-nav-bar.mat-background-primary .mat-tab-link{color:#fff}.mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled,.mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled,.mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled,.mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled{color:rgba(255,255,255,.4)}.mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron{border-color:#fff}.mat-tab-group.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:rgba(255,255,255,.4)}.mat-tab-group.mat-background-primary .mat-ripple-element,.mat-tab-nav-bar.mat-background-primary .mat-ripple-element{background-color:rgba(255,255,255,.12)}.mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:rgba(255,229,127,.3)}.mat-tab-group.mat-background-accent .mat-tab-header,.mat-tab-group.mat-background-accent .mat-tab-links,.mat-tab-group.mat-background-accent .mat-tab-header-pagination,.mat-tab-nav-bar.mat-background-accent .mat-tab-header,.mat-tab-nav-bar.mat-background-accent .mat-tab-links,.mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination{background-color:#ffd740}.mat-tab-group.mat-background-accent .mat-tab-label,.mat-tab-group.mat-background-accent .mat-tab-link,.mat-tab-nav-bar.mat-background-accent .mat-tab-label,.mat-tab-nav-bar.mat-background-accent .mat-tab-link{color:rgba(0,0,0,.87)}.mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled,.mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled,.mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled,.mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled{color:rgba(0,0,0,.4)}.mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron{border-color:rgba(0,0,0,.87)}.mat-tab-group.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:rgba(0,0,0,.4)}.mat-tab-group.mat-background-accent .mat-ripple-element,.mat-tab-nav-bar.mat-background-accent .mat-ripple-element{background-color:rgba(0,0,0,.12)}.mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:rgba(255,205,210,.3)}.mat-tab-group.mat-background-warn .mat-tab-header,.mat-tab-group.mat-background-warn .mat-tab-links,.mat-tab-group.mat-background-warn .mat-tab-header-pagination,.mat-tab-nav-bar.mat-background-warn .mat-tab-header,.mat-tab-nav-bar.mat-background-warn .mat-tab-links,.mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination{background-color:#f44336}.mat-tab-group.mat-background-warn .mat-tab-label,.mat-tab-group.mat-background-warn .mat-tab-link,.mat-tab-nav-bar.mat-background-warn .mat-tab-label,.mat-tab-nav-bar.mat-background-warn .mat-tab-link{color:#fff}.mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled,.mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled,.mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled,.mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled{color:rgba(255,255,255,.4)}.mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron{border-color:#fff}.mat-tab-group.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:rgba(255,255,255,.4)}.mat-tab-group.mat-background-warn .mat-ripple-element,.mat-tab-nav-bar.mat-background-warn .mat-ripple-element{background-color:rgba(255,255,255,.12)}.mat-toolbar{background:#f5f5f5;color:rgba(0,0,0,.87)}.mat-toolbar.mat-primary{background:#673ab7;color:#fff}.mat-toolbar.mat-accent{background:#ffd740;color:rgba(0,0,0,.87)}.mat-toolbar.mat-warn{background:#f44336;color:#fff}.mat-toolbar .mat-form-field-underline,.mat-toolbar .mat-form-field-ripple,.mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.mat-toolbar .mat-form-field-label,.mat-toolbar .mat-focused .mat-form-field-label,.mat-toolbar .mat-select-value,.mat-toolbar .mat-select-arrow,.mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.mat-toolbar .mat-input-element{caret-color:currentColor}.mat-toolbar-multiple-rows{min-height:64px}.mat-toolbar-row,.mat-toolbar-single-row{height:64px}@media(max-width: 599px){.mat-toolbar-multiple-rows{min-height:56px}.mat-toolbar-row,.mat-toolbar-single-row{height:56px}}.mat-tooltip{background:rgba(97,97,97,.9)}.mat-tree{background:#fff}.mat-tree-node,.mat-nested-tree-node{color:rgba(0,0,0,.87)}.mat-tree-node{min-height:48px}.mat-snack-bar-container{color:rgba(255,255,255,.7);background:#323232;box-shadow:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px 0px rgba(0, 0, 0, 0.14),0px 1px 18px 0px rgba(0, 0, 0, 0.12)}.mat-simple-snackbar-action{color:#ffd740}

@charset "UTF-8";
/*!
 * Bootstrap v3.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: "Glyphicons Halflings";
  src: url(https://assets.xplenty.com/5be1347c682810f199c7f486f40c5974.eot);
  src: url(https://assets.xplenty.com/5be1347c682810f199c7f486f40c5974.eot?#iefix) format("embedded-opentype"), url(https://assets.xplenty.com/be810be3a3e14c682a257d6eff341fe4.woff2) format("woff2"), url(https://assets.xplenty.com/82b1212e45a2bc35dd731913b27ad813.woff) format("woff"), url(https://assets.xplenty.com/4692b9ec53fd5972caa2f2372ae20d16.ttf) format("truetype"), url(https://assets.xplenty.com/060b2710bdbbe3dfe48b58d59bd5f1fb.svg#glyphicons_halflingsregular) format("svg");
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "\002a";
}
.glyphicon-plus:before {
  content: "\002b";
}
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270f";
}
.glyphicon-glass:before {
  content: "\e001";
}
.glyphicon-music:before {
  content: "\e002";
}
.glyphicon-search:before {
  content: "\e003";
}
.glyphicon-heart:before {
  content: "\e005";
}
.glyphicon-star:before {
  content: "\e006";
}
.glyphicon-star-empty:before {
  content: "\e007";
}
.glyphicon-user:before {
  content: "\e008";
}
.glyphicon-film:before {
  content: "\e009";
}
.glyphicon-th-large:before {
  content: "\e010";
}
.glyphicon-th:before {
  content: "\e011";
}
.glyphicon-th-list:before {
  content: "\e012";
}
.glyphicon-ok:before {
  content: "\e013";
}
.glyphicon-remove:before {
  content: "\e014";
}
.glyphicon-zoom-in:before {
  content: "\e015";
}
.glyphicon-zoom-out:before {
  content: "\e016";
}
.glyphicon-off:before {
  content: "\e017";
}
.glyphicon-signal:before {
  content: "\e018";
}
.glyphicon-cog:before {
  content: "\e019";
}
.glyphicon-trash:before {
  content: "\e020";
}
.glyphicon-home:before {
  content: "\e021";
}
.glyphicon-file:before {
  content: "\e022";
}
.glyphicon-time:before {
  content: "\e023";
}
.glyphicon-road:before {
  content: "\e024";
}
.glyphicon-download-alt:before {
  content: "\e025";
}
.glyphicon-download:before {
  content: "\e026";
}
.glyphicon-upload:before {
  content: "\e027";
}
.glyphicon-inbox:before {
  content: "\e028";
}
.glyphicon-play-circle:before {
  content: "\e029";
}
.glyphicon-repeat:before {
  content: "\e030";
}
.glyphicon-refresh:before {
  content: "\e031";
}
.glyphicon-list-alt:before {
  content: "\e032";
}
.glyphicon-lock:before {
  content: "\e033";
}
.glyphicon-flag:before {
  content: "\e034";
}
.glyphicon-headphones:before {
  content: "\e035";
}
.glyphicon-volume-off:before {
  content: "\e036";
}
.glyphicon-volume-down:before {
  content: "\e037";
}
.glyphicon-volume-up:before {
  content: "\e038";
}
.glyphicon-qrcode:before {
  content: "\e039";
}
.glyphicon-barcode:before {
  content: "\e040";
}
.glyphicon-tag:before {
  content: "\e041";
}
.glyphicon-tags:before {
  content: "\e042";
}
.glyphicon-book:before {
  content: "\e043";
}
.glyphicon-bookmark:before {
  content: "\e044";
}
.glyphicon-print:before {
  content: "\e045";
}
.glyphicon-camera:before {
  content: "\e046";
}
.glyphicon-font:before {
  content: "\e047";
}
.glyphicon-bold:before {
  content: "\e048";
}
.glyphicon-italic:before {
  content: "\e049";
}
.glyphicon-text-height:before {
  content: "\e050";
}
.glyphicon-text-width:before {
  content: "\e051";
}
.glyphicon-align-left:before {
  content: "\e052";
}
.glyphicon-align-center:before {
  content: "\e053";
}
.glyphicon-align-right:before {
  content: "\e054";
}
.glyphicon-align-justify:before {
  content: "\e055";
}
.glyphicon-list:before {
  content: "\e056";
}
.glyphicon-indent-left:before {
  content: "\e057";
}
.glyphicon-indent-right:before {
  content: "\e058";
}
.glyphicon-facetime-video:before {
  content: "\e059";
}
.glyphicon-picture:before {
  content: "\e060";
}
.glyphicon-map-marker:before {
  content: "\e062";
}
.glyphicon-adjust:before {
  content: "\e063";
}
.glyphicon-tint:before {
  content: "\e064";
}
.glyphicon-edit:before {
  content: "\e065";
}
.glyphicon-share:before {
  content: "\e066";
}
.glyphicon-check:before {
  content: "\e067";
}
.glyphicon-move:before {
  content: "\e068";
}
.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-fast-backward:before {
  content: "\e070";
}
.glyphicon-backward:before {
  content: "\e071";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-forward:before {
  content: "\e075";
}
.glyphicon-fast-forward:before {
  content: "\e076";
}
.glyphicon-step-forward:before {
  content: "\e077";
}
.glyphicon-eject:before {
  content: "\e078";
}
.glyphicon-chevron-left:before {
  content: "\e079";
}
.glyphicon-chevron-right:before {
  content: "\e080";
}
.glyphicon-plus-sign:before {
  content: "\e081";
}
.glyphicon-minus-sign:before {
  content: "\e082";
}
.glyphicon-remove-sign:before {
  content: "\e083";
}
.glyphicon-ok-sign:before {
  content: "\e084";
}
.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}
.glyphicon-screenshot:before {
  content: "\e087";
}
.glyphicon-remove-circle:before {
  content: "\e088";
}
.glyphicon-ok-circle:before {
  content: "\e089";
}
.glyphicon-ban-circle:before {
  content: "\e090";
}
.glyphicon-arrow-left:before {
  content: "\e091";
}
.glyphicon-arrow-right:before {
  content: "\e092";
}
.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}
.glyphicon-share-alt:before {
  content: "\e095";
}
.glyphicon-resize-full:before {
  content: "\e096";
}
.glyphicon-resize-small:before {
  content: "\e097";
}
.glyphicon-exclamation-sign:before {
  content: "\e101";
}
.glyphicon-gift:before {
  content: "\e102";
}
.glyphicon-leaf:before {
  content: "\e103";
}
.glyphicon-fire:before {
  content: "\e104";
}
.glyphicon-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.glyphicon-calendar:before {
  content: "\e109";
}
.glyphicon-random:before {
  content: "\e110";
}
.glyphicon-comment:before {
  content: "\e111";
}
.glyphicon-magnet:before {
  content: "\e112";
}
.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}
.glyphicon-shopping-cart:before {
  content: "\e116";
}
.glyphicon-folder-close:before {
  content: "\e117";
}
.glyphicon-folder-open:before {
  content: "\e118";
}
.glyphicon-resize-vertical:before {
  content: "\e119";
}
.glyphicon-resize-horizontal:before {
  content: "\e120";
}
.glyphicon-hdd:before {
  content: "\e121";
}
.glyphicon-bullhorn:before {
  content: "\e122";
}
.glyphicon-bell:before {
  content: "\e123";
}
.glyphicon-certificate:before {
  content: "\e124";
}
.glyphicon-thumbs-up:before {
  content: "\e125";
}
.glyphicon-thumbs-down:before {
  content: "\e126";
}
.glyphicon-hand-right:before {
  content: "\e127";
}
.glyphicon-hand-left:before {
  content: "\e128";
}
.glyphicon-hand-up:before {
  content: "\e129";
}
.glyphicon-hand-down:before {
  content: "\e130";
}
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}
.glyphicon-globe:before {
  content: "\e135";
}
.glyphicon-wrench:before {
  content: "\e136";
}
.glyphicon-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-briefcase:before {
  content: "\e139";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-paperclip:before {
  content: "\e142";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.glyphicon-pushpin:before {
  content: "\e146";
}
.glyphicon-usd:before {
  content: "\e148";
}
.glyphicon-gbp:before {
  content: "\e149";
}
.glyphicon-sort:before {
  content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
.glyphicon-sort-by-order:before {
  content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
.glyphicon-unchecked:before {
  content: "\e157";
}
.glyphicon-expand:before {
  content: "\e158";
}
.glyphicon-collapse-down:before {
  content: "\e159";
}
.glyphicon-collapse-up:before {
  content: "\e160";
}
.glyphicon-log-in:before {
  content: "\e161";
}
.glyphicon-flash:before {
  content: "\e162";
}
.glyphicon-log-out:before {
  content: "\e163";
}
.glyphicon-new-window:before {
  content: "\e164";
}
.glyphicon-record:before {
  content: "\e165";
}
.glyphicon-save:before {
  content: "\e166";
}
.glyphicon-open:before {
  content: "\e167";
}
.glyphicon-saved:before {
  content: "\e168";
}
.glyphicon-import:before {
  content: "\e169";
}
.glyphicon-export:before {
  content: "\e170";
}
.glyphicon-send:before {
  content: "\e171";
}
.glyphicon-floppy-disk:before {
  content: "\e172";
}
.glyphicon-floppy-saved:before {
  content: "\e173";
}
.glyphicon-floppy-remove:before {
  content: "\e174";
}
.glyphicon-floppy-save:before {
  content: "\e175";
}
.glyphicon-floppy-open:before {
  content: "\e176";
}
.glyphicon-credit-card:before {
  content: "\e177";
}
.glyphicon-transfer:before {
  content: "\e178";
}
.glyphicon-cutlery:before {
  content: "\e179";
}
.glyphicon-header:before {
  content: "\e180";
}
.glyphicon-compressed:before {
  content: "\e181";
}
.glyphicon-earphone:before {
  content: "\e182";
}
.glyphicon-phone-alt:before {
  content: "\e183";
}
.glyphicon-tower:before {
  content: "\e184";
}
.glyphicon-stats:before {
  content: "\e185";
}
.glyphicon-sd-video:before {
  content: "\e186";
}
.glyphicon-hd-video:before {
  content: "\e187";
}
.glyphicon-subtitles:before {
  content: "\e188";
}
.glyphicon-sound-stereo:before {
  content: "\e189";
}
.glyphicon-sound-dolby:before {
  content: "\e190";
}
.glyphicon-sound-5-1:before {
  content: "\e191";
}
.glyphicon-sound-6-1:before {
  content: "\e192";
}
.glyphicon-sound-7-1:before {
  content: "\e193";
}
.glyphicon-copyright-mark:before {
  content: "\e194";
}
.glyphicon-registration-mark:before {
  content: "\e195";
}
.glyphicon-cloud-download:before {
  content: "\e197";
}
.glyphicon-cloud-upload:before {
  content: "\e198";
}
.glyphicon-tree-conifer:before {
  content: "\e199";
}
.glyphicon-tree-deciduous:before {
  content: "\e200";
}
.glyphicon-cd:before {
  content: "\e201";
}
.glyphicon-save-file:before {
  content: "\e202";
}
.glyphicon-open-file:before {
  content: "\e203";
}
.glyphicon-level-up:before {
  content: "\e204";
}
.glyphicon-copy:before {
  content: "\e205";
}
.glyphicon-paste:before {
  content: "\e206";
}
.glyphicon-alert:before {
  content: "\e209";
}
.glyphicon-equalizer:before {
  content: "\e210";
}
.glyphicon-king:before {
  content: "\e211";
}
.glyphicon-queen:before {
  content: "\e212";
}
.glyphicon-pawn:before {
  content: "\e213";
}
.glyphicon-bishop:before {
  content: "\e214";
}
.glyphicon-knight:before {
  content: "\e215";
}
.glyphicon-baby-formula:before {
  content: "\e216";
}
.glyphicon-tent:before {
  content: "\26fa";
}
.glyphicon-blackboard:before {
  content: "\e218";
}
.glyphicon-bed:before {
  content: "\e219";
}
.glyphicon-apple:before {
  content: "\f8ff";
}
.glyphicon-erase:before {
  content: "\e221";
}
.glyphicon-hourglass:before {
  content: "\231b";
}
.glyphicon-lamp:before {
  content: "\e223";
}
.glyphicon-duplicate:before {
  content: "\e224";
}
.glyphicon-piggy-bank:before {
  content: "\e225";
}
.glyphicon-scissors:before {
  content: "\e226";
}
.glyphicon-bitcoin:before {
  content: "\e227";
}
.glyphicon-btc:before {
  content: "\e227";
}
.glyphicon-xbt:before {
  content: "\e227";
}
.glyphicon-yen:before {
  content: "\00a5";
}
.glyphicon-jpy:before {
  content: "\00a5";
}
.glyphicon-ruble:before {
  content: "\20bd";
}
.glyphicon-rub:before {
  content: "\20bd";
}
.glyphicon-scale:before {
  content: "\e230";
}
.glyphicon-ice-lolly:before {
  content: "\e231";
}
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}
.glyphicon-education:before {
  content: "\e233";
}
.glyphicon-option-horizontal:before {
  content: "\e234";
}
.glyphicon-option-vertical:before {
  content: "\e235";
}
.glyphicon-menu-hamburger:before {
  content: "\e236";
}
.glyphicon-modal-window:before {
  content: "\e237";
}
.glyphicon-oil:before {
  content: "\e238";
}
.glyphicon-grain:before {
  content: "\e239";
}
.glyphicon-sunglasses:before {
  content: "\e240";
}
.glyphicon-text-size:before {
  content: "\e241";
}
.glyphicon-text-color:before {
  content: "\e242";
}
.glyphicon-text-background:before {
  content: "\e243";
}
.glyphicon-object-align-top:before {
  content: "\e244";
}
.glyphicon-object-align-bottom:before {
  content: "\e245";
}
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}
.glyphicon-object-align-left:before {
  content: "\e247";
}
.glyphicon-object-align-vertical:before {
  content: "\e248";
}
.glyphicon-object-align-right:before {
  content: "\e249";
}
.glyphicon-triangle-right:before {
  content: "\e250";
}
.glyphicon-triangle-left:before {
  content: "\e251";
}
.glyphicon-triangle-bottom:before {
  content: "\e252";
}
.glyphicon-triangle-top:before {
  content: "\e253";
}
.glyphicon-console:before {
  content: "\e254";
}
.glyphicon-superscript:before {
  content: "\e255";
}
.glyphicon-subscript:before {
  content: "\e256";
}
.glyphicon-menu-left:before {
  content: "\e257";
}
.glyphicon-menu-right:before {
  content: "\e258";
}
.glyphicon-menu-down:before {
  content: "\e259";
}
.glyphicon-menu-up:before {
  content: "\e260";
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #3F3F3F;
  background-color: #FFF;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #0AB3E5;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #077a9c;
  text-decoration: none;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  outline: 0;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 5px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #FFF;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #E6E6E6;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "proxima-nova", sans-serif;
  font-weight: 600;
  line-height: 1.1;
  color: #3F3F3F;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: 400;
  line-height: 1;
  color: #CCCCCC;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 36px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 1200px) {
  .lead {
    font-size: 21px;
  }
}
small,
.small {
  font-size: 85%;
}
mark,
.mark {
  padding: 0.2em;
  background-color: #ffe8d4;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #CCCCCC;
}
.text-primary {
  color: #0AB3E5;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #088db4;
}
.text-success {
  color: #0e7b42;
}
a.text-success:hover,
a.text-success:focus {
  color: #094d29;
}
.text-info {
  color: #066783;
}
a.text-info:hover,
a.text-info:focus {
  color: #044052;
}
.text-warning {
  color: #d36500;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #a14d00;
}
.text-danger {
  color: #de2c1e;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #b12318;
}
.bg-primary {
  color: #fff;
  background-color: #0AB3E5;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #088db4;
}
.bg-success {
  background-color: #c3f8dc;
}
a.bg-success:hover,
a.bg-success:focus {
  background-color: #95f3c2;
}
.bg-info {
  background-color: #d7f5fd;
}
a.bg-info:hover,
a.bg-info:focus {
  background-color: #a6e8fb;
}
.bg-warning {
  background-color: #ffe8d4;
}
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #ffcea1;
}
.bg-danger {
  background-color: #fceceb;
}
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #f6c2be;
}
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #E6E6E6;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: 700;
}
dd {
  margin-left: 0;
}
@media (min-width: 1200px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #E6E6E6;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #CCCCCC;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: "\2014 \00A0";
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #E6E6E6;
  border-left: 0;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: "";
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: "\00A0 \2014";
}
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
  box-shadow: none;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #E6E6E6;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #333;
  border: 1px solid transparent;
  border-radius: 4px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1200px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row-no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.row-no-gutters [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.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,
.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-right: 15px;
  padding-left: 15px;
}
.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-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 1200px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .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-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@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-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
table {
  background-color: transparent;
}
table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #CCCCCC;
  text-align: left;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #FFF;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
  background-color: #EEE;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #EEE;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e1e1e1;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #c3f8dc;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #acf6cf;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d7f5fd;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #bfeefc;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #ffe8d4;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #ffdbba;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #fceceb;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #f9d7d4;
}
.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}
@media screen and (max-width: 1199px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #999999;
  border: 0;
  border-bottom: 1px solid #CCCCCC;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  outline: 0;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #3F3F3F;
}
.form-control {
  display: block;
  width: 100%;
  height: 41px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #3F3F3F;
  background-color: #fff;
  background-image: none;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  font-weight: 300;
  font-size: 13px;
  color: #CCCCCC;
}
.form-control:focus {
  border-color: #0AB3E5;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(10, 179, 229, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(10, 179, 229, 0.6);
}
.form-control::-moz-placeholder {
  color: #CCCCCC;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #CCCCCC;
}
.form-control::-webkit-input-placeholder {
  color: #CCCCCC;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #E6E6E6;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 41px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
.form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 30px;
  line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 5px;
}
select.input-lg {
  height: 46px;
  line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 5px;
}
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.33;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 51.25px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 41px;
  height: 41px;
  line-height: 41px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #0e7b42;
}
.has-success .form-control {
  border-color: #0e7b42;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #094d29;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #18d773;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #18d773;
}
.has-success .input-group-addon {
  color: #0e7b42;
  background-color: #c3f8dc;
  border-color: #0e7b42;
}
.has-success .form-control-feedback {
  color: #0e7b42;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #d36500;
}
.has-warning .form-control {
  border-color: #d36500;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #a14d00;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ff993b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ff993b;
}
.has-warning .input-group-addon {
  color: #d36500;
  background-color: #ffe8d4;
  border-color: #d36500;
}
.has-warning .form-control-feedback {
  color: #d36500;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #de2c1e;
}
.has-error .form-control {
  border-color: #de2c1e;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #b12318;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ec7e76;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ec7e76;
}
.has-error .input-group-addon {
  color: #de2c1e;
  background-color: #fceceb;
  border-color: #de2c1e;
}
.has-error .form-control-feedback {
  color: #de2c1e;
}
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #7f7f7f;
}
@media (min-width: 1200px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 1200px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 1200px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  outline: 0;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -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;
  filter: alpha(opacity=65);
  opacity: 0.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;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].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: #0AB3E5;
  border-color: transparent;
}
.btn-primary:focus,
.btn-primary.focus {
  color: #FFF;
  background-color: #088db4;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:hover {
  color: #FFF;
  background-color: #088db4;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #FFF;
  background-color: #088db4;
  background-image: none;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #FFF;
  background-color: #067292;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #0AB3E5;
  border-color: transparent;
}
.btn-primary .badge {
  color: #0AB3E5;
  background-color: #FFF;
}
.btn-success {
  color: #3F3F3F;
  background-color: #39E98D;
  border-color: transparent;
}
.btn-success:focus,
.btn-success.focus {
  color: #3F3F3F;
  background-color: #18d773;
  border-color: rgba(0, 0, 0, 0);
}
.btn-success:hover {
  color: #3F3F3F;
  background-color: #18d773;
  border-color: rgba(0, 0, 0, 0);
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #3F3F3F;
  background-color: #18d773;
  background-image: none;
  border-color: rgba(0, 0, 0, 0);
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #3F3F3F;
  background-color: #14b762;
  border-color: rgba(0, 0, 0, 0);
}
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
  background-color: #39E98D;
  border-color: transparent;
}
.btn-success .badge {
  color: #39E98D;
  background-color: #3F3F3F;
}
.btn-info {
  color: #3F3F3F;
  background-color: #FFD260;
  border-color: transparent;
}
.btn-info:focus,
.btn-info.focus {
  color: #3F3F3F;
  background-color: #ffc42d;
  border-color: rgba(0, 0, 0, 0);
}
.btn-info:hover {
  color: #3F3F3F;
  background-color: #ffc42d;
  border-color: rgba(0, 0, 0, 0);
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #3F3F3F;
  background-color: #ffc42d;
  background-image: none;
  border-color: rgba(0, 0, 0, 0);
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #3F3F3F;
  background-color: #ffb909;
  border-color: rgba(0, 0, 0, 0);
}
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
  background-color: #FFD260;
  border-color: transparent;
}
.btn-info .badge {
  color: #FFD260;
  background-color: #3F3F3F;
}
.btn-warning {
  color: #3F3F3F;
  background-color: #FFA654;
  border-color: transparent;
}
.btn-warning:focus,
.btn-warning.focus {
  color: #3F3F3F;
  background-color: #ff8b21;
  border-color: rgba(0, 0, 0, 0);
}
.btn-warning:hover {
  color: #3F3F3F;
  background-color: #ff8b21;
  border-color: rgba(0, 0, 0, 0);
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #3F3F3F;
  background-color: #ff8b21;
  background-image: none;
  border-color: rgba(0, 0, 0, 0);
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #3F3F3F;
  background-color: #fc7900;
  border-color: rgba(0, 0, 0, 0);
}
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
  background-color: #FFA654;
  border-color: transparent;
}
.btn-warning .badge {
  color: #FFA654;
  background-color: #3F3F3F;
}
.btn-danger {
  color: #fff;
  background-color: #E54C40;
  border-color: transparent;
}
.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #d52a1d;
  border-color: rgba(0, 0, 0, 0);
}
.btn-danger:hover {
  color: #fff;
  background-color: #d52a1d;
  border-color: rgba(0, 0, 0, 0);
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #d52a1d;
  background-image: none;
  border-color: rgba(0, 0, 0, 0);
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #fff;
  background-color: #b62419;
  border-color: rgba(0, 0, 0, 0);
}
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
  background-color: #E54C40;
  border-color: transparent;
}
.btn-danger .badge {
  color: #E54C40;
  background-color: #fff;
}
.btn-link {
  font-weight: 400;
  color: #0AB3E5;
  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: #077a9c;
  text-decoration: none;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #CCCCCC;
  text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 5px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  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%;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.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;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #FFF;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #3F3F3F;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #3F3F3F;
  text-decoration: none;
  background-color: #EEE;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #FFF;
  text-decoration: none;
  background-color: #0AB3E5;
  outline: 0;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #CCCCCC;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  right: 0;
  left: auto;
}
.dropdown-menu-left {
  right: auto;
  left: 0;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #999999;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 1200px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0;
  }
}
.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-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .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 .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-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-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-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 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 {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .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 > .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-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.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-left-radius: 0;
  border-top-right-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  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-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group .form-control:focus {
  z-index: 3;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 5px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #3F3F3F;
  text-align: center;
  background-color: #E6E6E6;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 5px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}
.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #E6E6E6;
}
.nav > li.disabled > a {
  color: #CCCCCC;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #CCCCCC;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #E6E6E6;
  border-color: #0AB3E5;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #E6E6E6 #E6E6E6 #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #808080;
  cursor: default;
  background-color: #FFF;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 1200px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 1200px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #FFF;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #0AB3E5;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 1200px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 1200px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #FFF;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar {
  position: relative;
  min-height: 48px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
@media (min-width: 1200px) {
  .navbar {
    border-radius: 4px;
  }
}
@media (min-width: 1200px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 1200px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 1200px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
@media (min-width: 1200px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 1200px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 1200px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-brand {
  float: left;
  height: 48px;
  padding: 14px 15px;
  font-size: 18px;
  line-height: 20px;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 1200px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-right: 15px;
  margin-top: 7px;
  margin-bottom: 7px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 1200px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 7px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 1199px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 1200px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
.navbar-form {
  padding: 10px 15px;
  margin-right: -15px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 3.5px;
  margin-bottom: 3.5px;
}
@media (min-width: 1200px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 1199px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 3.5px;
  margin-bottom: 3.5px;
}
.navbar-btn.btn-sm {
  margin-top: 9px;
  margin-bottom: 9px;
}
.navbar-btn.btn-xs {
  margin-top: 13px;
  margin-bottom: 13px;
}
.navbar-text {
  margin-top: 14px;
  margin-bottom: 14px;
}
@media (min-width: 1200px) {
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media (min-width: 1200px) {
  .navbar-left {
    float: left !important;
    float: left;
  }
  .navbar-right {
    float: right !important;
    float: right;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
  color: #777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #777;
}
.navbar-default .navbar-nav > li > a {
  color: #777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
@media (max-width: 1199px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-link {
  color: #777;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-default .btn-link {
  color: #777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}
.navbar-inverse {
  background-color: #000;
  border-color: #000000;
}
.navbar-inverse .navbar-brand {
  color: #CCCCCC;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #CCCCCC;
}
.navbar-inverse .navbar-nav > li > a {
  color: #CCCCCC;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #000000;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #000000;
}
@media (max-width: 1199px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #000000;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #000000;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #CCCCCC;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #000000;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #000000;
}
.navbar-inverse .navbar-link {
  color: #CCCCCC;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #CCCCCC;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #EEE;
  border-radius: 4px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}
.breadcrumb > .active {
  color: #CCCCCC;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #0AB3E5;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  color: #077a9c;
  background-color: #E6E6E6;
  border-color: #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #0AB3E5;
  border-color: #0AB3E5;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #CCCCCC;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #E6E6E6;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #CCCCCC;
  cursor: not-allowed;
  background-color: #fff;
}
.label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}
a.label:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #CCCCCC;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #b3b3b3;
}
.label-primary {
  background-color: #0AB3E5;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #088db4;
}
.label-success {
  background-color: #39E98D;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #18d773;
}
.label-info {
  background-color: #FFD260;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #ffc42d;
}
.label-warning {
  background-color: #FFA654;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ff8b21;
}
.label-danger {
  background-color: #E54C40;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #d52a1d;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #CCCCCC;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #0AB3E5;
  background-color: #fff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #E6E6E6;
}
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
.jumbotron > hr {
  border-top-color: #cdcdcd;
}
.container .jumbotron,
.container-fluid .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 5px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 1200px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #FFF;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  margin-right: auto;
  margin-left: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #0AB3E5;
}
.thumbnail .caption {
  padding: 9px;
  color: #3F3F3F;
}
.alert {
  padding: 1em;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 21em;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  color: #0e7b42;
  background-color: #c3f8dc;
  border-color: #0e7b42;
}
.alert-success hr {
  border-top-color: #0b6436;
}
.alert-success .alert-link {
  color: #094d29;
}
.alert-info {
  color: #066783;
  background-color: #d7f5fd;
  border-color: #066783;
}
.alert-info hr {
  border-top-color: #05546b;
}
.alert-info .alert-link {
  color: #044052;
}
.alert-warning {
  color: #d36500;
  background-color: #ffe8d4;
  border-color: #d36500;
}
.alert-warning hr {
  border-top-color: #ba5900;
}
.alert-warning .alert-link {
  color: #a14d00;
}
.alert-danger {
  color: #de2c1e;
  background-color: #fceceb;
  border-color: #de2c1e;
}
.alert-danger hr {
  border-top-color: #c8281b;
}
.alert-danger .alert-link {
  color: #b12318;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #EEE;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #0AB3E5;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #39E98D;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #FFD260;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
  background-color: #FFA654;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
  background-color: #E54C40;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}
.media-body {
  width: 10000px;
}
.media-object {
  display: block;
}
.media-object.img-thumbnail {
  max-width: none;
}
.media-right,
.media > .pull-right {
  padding-left: 10px;
}
.media-left,
.media > .pull-left {
  padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}
.media-middle {
  vertical-align: middle;
}
.media-bottom {
  vertical-align: bottom;
}
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: transparent;
  border: 1px solid transparent;
}
.list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  color: #CCCCCC;
  cursor: not-allowed;
  background-color: #E6E6E6;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #CCCCCC;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #0AB3E5;
  border-color: #0AB3E5;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #bfeefc;
}
a.list-group-item,
button.list-group-item {
  color: #3F3F3F;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
  color: #3F3F3F;
  text-decoration: none;
  background-color: #EEE;
}
button.list-group-item {
  width: 100%;
  text-align: left;
}
.list-group-item-success {
  color: #0e7b42;
  background-color: #c3f8dc;
}
a.list-group-item-success,
button.list-group-item-success {
  color: #0e7b42;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
  color: #0e7b42;
  background-color: #acf6cf;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #0e7b42;
  border-color: #0e7b42;
}
.list-group-item-info {
  color: #066783;
  background-color: #d7f5fd;
}
a.list-group-item-info,
button.list-group-item-info {
  color: #066783;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
  color: #066783;
  background-color: #bfeefc;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #066783;
  border-color: #066783;
}
.list-group-item-warning {
  color: #d36500;
  background-color: #ffe8d4;
}
a.list-group-item-warning,
button.list-group-item-warning {
  color: #d36500;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
  color: #d36500;
  background-color: #ffdbba;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #d36500;
  border-color: #d36500;
}
.list-group-item-danger {
  color: #de2c1e;
  background-color: #fceceb;
}
a.list-group-item-danger,
button.list-group-item-danger {
  color: #de2c1e;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
  color: #de2c1e;
  background-color: #f9d7d4;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #de2c1e;
  border-color: #de2c1e;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 0;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body {
  padding: 15px;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: -1;
  border-top-right-radius: -1;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #EEE;
  border-top: 1px solid transparent;
  border-bottom-right-radius: -1;
  border-bottom-left-radius: -1;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: -1;
  border-top-right-radius: -1;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: -1;
  border-bottom-left-radius: -1;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: -1;
  border-top-right-radius: -1;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: -1;
  border-top-right-radius: -1;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: -1;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: -1;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: -1;
  border-bottom-left-radius: -1;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: -1;
  border-bottom-left-radius: -1;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: -1;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: -1;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}
.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 0;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid transparent;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid transparent;
}
.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
  color: #999999;
  background-color: #EEE;
  border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
  color: #EEE;
  background-color: #999999;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}
.panel-primary {
  border-color: #0AB3E5;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #0AB3E5;
  border-color: #0AB3E5;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #0AB3E5;
}
.panel-primary > .panel-heading .badge {
  color: #0AB3E5;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #0AB3E5;
}
.panel-success {
  border-color: #0e7b42;
}
.panel-success > .panel-heading {
  color: #0e7b42;
  background-color: #c3f8dc;
  border-color: #0e7b42;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #0e7b42;
}
.panel-success > .panel-heading .badge {
  color: #c3f8dc;
  background-color: #0e7b42;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #0e7b42;
}
.panel-info {
  border-color: #066783;
}
.panel-info > .panel-heading {
  color: #066783;
  background-color: #d7f5fd;
  border-color: #066783;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #066783;
}
.panel-info > .panel-heading .badge {
  color: #d7f5fd;
  background-color: #066783;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #066783;
}
.panel-warning {
  border-color: #E6E6E6;
}
.panel-warning > .panel-heading {
  color: #d36500;
  background-color: #ffe8d4;
  border-color: #E6E6E6;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #E6E6E6;
}
.panel-warning > .panel-heading .badge {
  color: #ffe8d4;
  background-color: #d36500;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #E6E6E6;
}
.panel-danger {
  border-color: #de2c1e;
}
.panel-danger > .panel-heading {
  color: #de2c1e;
  background-color: #fceceb;
  border-color: #de2c1e;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #de2c1e;
}
.panel-danger > .panel-heading .badge {
  color: #fceceb;
  background-color: #de2c1e;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #de2c1e;
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #EEE;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
.well-lg {
  padding: 24px;
  border-radius: 5px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: 0.2;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: 0.5;
}
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
}
.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 5px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #FFF;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 1200px) {
  .modal-dialog {
    width: 720px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 1200px) {
  .modal-lg {
    width: 1100px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857143;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 12px;
  filter: alpha(opacity=0);
  opacity: 0;
}
.tooltip.in {
  filter: alpha(opacity=100);
  opacity: 1;
}
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #FFF;
}
.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #FFF;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #FFF;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #FFF;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #FFF;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #FFF;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #FFF;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #FFF;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #3F3F3F;
  text-align: center;
  background-color: #FFF;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "proxima-nova", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857143;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 14px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow:after {
  content: "";
  border-width: 10px;
}
.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}
.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0;
}
.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}
.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}
.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 4px 4px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -moz-transition: -moz-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
  filter: alpha(opacity=50);
  opacity: 0.5;
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  filter: alpha(opacity=90);
  opacity: 0.9;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}
.carousel-control .icon-prev:before {
  content: "\2039";
}
.carousel-control .icon-next:before {
  content: "\203a";
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 1200px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 1199px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 1199px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 1199px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) and (max-width: 1199px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) and (max-width: 1199px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 1200px) and (max-width: 1199px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) and (max-width: 1199px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 1200px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 1199px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 1200px) and (max-width: 1199px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 1200px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
@keyframes bs-notify-fadeOut {
  0% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
select.bs-select-hidden,
.bootstrap-select > select.bs-select-hidden,
select.selectpicker {
  display: none !important;
}
.bootstrap-select {
  width: 220px \0;
  /*IE9 and below*/
  vertical-align: middle;
}
.bootstrap-select > .dropdown-toggle {
  position: relative;
  width: 100%;
  text-align: right;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
.bootstrap-select > .dropdown-toggle:after {
  margin-top: -1px;
}
.bootstrap-select > .dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.bs-placeholder:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder:active {
  color: #CCCCCC;
}
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:active {
  color: rgba(255, 255, 255, 0.5);
}
.bootstrap-select > select {
  position: absolute !important;
  bottom: 0;
  left: 50%;
  display: block !important;
  width: 0.5px !important;
  height: 100% !important;
  padding: 0 !important;
  opacity: 0 !important;
  border: none;
  z-index: 0 !important;
}
.bootstrap-select > select.mobile-device {
  top: 0;
  left: 0;
  display: block !important;
  width: 100% !important;
  z-index: 2 !important;
}
.has-error .bootstrap-select .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle,
.bootstrap-select.is-invalid .dropdown-toggle,
.was-validated .bootstrap-select select:invalid + .dropdown-toggle {
  border-color: #b94a48;
}
.bootstrap-select.is-valid .dropdown-toggle,
.was-validated .bootstrap-select select:valid + .dropdown-toggle {
  border-color: #28a745;
}
.bootstrap-select.fit-width {
  width: auto !important;
}
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 100%;
}
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle,
.bootstrap-select .dropdown-toggle:focus {
  outline: thin dotted #333333 !important;
  outline: 5px auto -webkit-focus-ring-color !important;
  outline-offset: -2px;
}
.bootstrap-select.form-control {
  margin-bottom: 0;
  padding: 0;
  border: none;
  height: auto;
}
:not(.input-group) > .bootstrap-select.form-control:not([class*="col-"]) {
  width: 100%;
}
.bootstrap-select.form-control.input-group-btn {
  float: none;
  z-index: auto;
}
.form-inline .bootstrap-select,
.form-inline .bootstrap-select.form-control:not([class*="col-"]) {
  width: auto;
}
.bootstrap-select:not(.input-group-btn),
.bootstrap-select[class*="col-"] {
  float: none;
  display: inline-block;
  margin-left: 0;
}
.bootstrap-select.dropdown-menu-right,
.bootstrap-select[class*="col-"].dropdown-menu-right,
.row .bootstrap-select[class*="col-"].dropdown-menu-right {
  float: right;
}
.form-inline .bootstrap-select,
.form-horizontal .bootstrap-select,
.form-group .bootstrap-select {
  margin-bottom: 0;
}
.form-group-lg .bootstrap-select.form-control,
.form-group-sm .bootstrap-select.form-control {
  padding: 0;
}
.form-group-lg .bootstrap-select.form-control .dropdown-toggle,
.form-group-sm .bootstrap-select.form-control .dropdown-toggle {
  height: 100%;
  font-size: inherit;
  line-height: inherit;
  border-radius: inherit;
}
.bootstrap-select.form-control-sm .dropdown-toggle,
.bootstrap-select.form-control-lg .dropdown-toggle {
  font-size: inherit;
  line-height: inherit;
  border-radius: inherit;
}
.bootstrap-select.form-control-sm .dropdown-toggle {
  padding: 0.25rem 0.5rem;
}
.bootstrap-select.form-control-lg .dropdown-toggle {
  padding: 0.5rem 1rem;
}
.form-inline .bootstrap-select .form-control {
  width: 100%;
}
.bootstrap-select.disabled,
.bootstrap-select > .disabled {
  cursor: not-allowed;
}
.bootstrap-select.disabled:focus,
.bootstrap-select > .disabled:focus {
  outline: none !important;
}
.bootstrap-select.bs-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 0 !important;
  padding: 0 !important;
}
.bootstrap-select.bs-container .dropdown-menu {
  z-index: 1090;
}
.bootstrap-select .dropdown-toggle .filter-option {
  position: static;
  top: 0;
  left: 0;
  float: left;
  height: 100%;
  width: 100%;
  text-align: left;
  overflow: hidden;
  flex: 0 1 auto;
}
.bs3.bootstrap-select .dropdown-toggle .filter-option {
  padding-right: inherit;
}
.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option {
  position: absolute;
  padding-top: inherit;
  padding-bottom: inherit;
  padding-left: inherit;
  float: none;
}
.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner {
  padding-right: inherit;
}
.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  overflow: hidden;
}
.bootstrap-select .dropdown-toggle .filter-expand {
  width: 0 !important;
  float: left;
  opacity: 0 !important;
  overflow: hidden;
}
.bootstrap-select .dropdown-toggle .caret {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -2px;
  vertical-align: middle;
}
.input-group .bootstrap-select.form-control .dropdown-toggle {
  border-radius: inherit;
}
.bootstrap-select[class*="col-"] .dropdown-toggle {
  width: 100%;
}
.bootstrap-select .dropdown-menu {
  min-width: 100%;
  box-sizing: border-box;
}
.bootstrap-select .dropdown-menu > .inner:focus {
  outline: none !important;
}
.bootstrap-select .dropdown-menu.inner {
  position: static;
  float: none;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.bootstrap-select .dropdown-menu li {
  position: relative;
}
.bootstrap-select .dropdown-menu li.active small {
  color: rgba(255, 255, 255, 0.5) !important;
}
.bootstrap-select .dropdown-menu li.disabled a {
  cursor: not-allowed;
}
.bootstrap-select .dropdown-menu li a {
  cursor: pointer;
  user-select: none;
}
.bootstrap-select .dropdown-menu li a.opt {
  position: relative;
  padding-left: 2.25em;
}
.bootstrap-select .dropdown-menu li a span.check-mark {
  display: none;
}
.bootstrap-select .dropdown-menu li a span.text {
  display: inline-block;
}
.bootstrap-select .dropdown-menu li small {
  padding-left: 0.5em;
}
.bootstrap-select .dropdown-menu .notify {
  position: absolute;
  bottom: 5px;
  width: 96%;
  margin: 0 2%;
  min-height: 26px;
  padding: 3px 5px;
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  opacity: 0.9;
  box-sizing: border-box;
}
.bootstrap-select .dropdown-menu .notify.fadeOut {
  animation: 300ms linear 750ms forwards bs-notify-fadeOut;
}
.bootstrap-select .no-results {
  padding: 3px;
  background: #f5f5f5;
  margin: 0 5px;
  white-space: nowrap;
}
.bootstrap-select.fit-width .dropdown-toggle .filter-option {
  position: static;
  display: inline;
  padding: 0;
}
.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner,
.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner {
  display: inline;
}
.bootstrap-select.fit-width .dropdown-toggle .bs-caret:before {
  content: '\00a0';
}
.bootstrap-select.fit-width .dropdown-toggle .caret {
  position: static;
  top: auto;
  margin-top: -1px;
}
.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
  position: absolute;
  display: inline-block;
  right: 15px;
  top: 5px;
}
.bootstrap-select.show-tick .dropdown-menu li a span.text {
  margin-right: 34px;
}
.bootstrap-select .bs-ok-default:after {
  content: '';
  display: block;
  width: 0.5em;
  height: 1em;
  border-style: solid;
  border-width: 0 0.26em 0.26em 0;
  transform-style: preserve-3d;
  transform: rotate(45deg);
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle,
.bootstrap-select.show-menu-arrow.show > .dropdown-toggle {
  z-index: 1091;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before {
  content: '';
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(204, 204, 204, 0.2);
  position: absolute;
  bottom: -4px;
  left: 9px;
  display: none;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after {
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  position: absolute;
  bottom: -4px;
  left: 10px;
  display: none;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before {
  bottom: auto;
  top: -4px;
  border-top: 7px solid rgba(204, 204, 204, 0.2);
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after {
  bottom: auto;
  top: -4px;
  border-top: 6px solid white;
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before {
  right: 12px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after {
  right: 13px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:before,
.bootstrap-select.show-menu-arrow.show > .dropdown-toggle .filter-option:before,
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:after,
.bootstrap-select.show-menu-arrow.show > .dropdown-toggle .filter-option:after {
  display: block;
}
.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
  padding: 4px 8px;
}
.bs-actionsbox {
  width: 100%;
  box-sizing: border-box;
}
.bs-actionsbox .btn-group button {
  width: 50%;
}
.bs-donebutton {
  float: left;
  width: 100%;
  box-sizing: border-box;
}
.bs-donebutton .btn-group button {
  width: 100%;
}
.bs-searchbox + .bs-actionsbox {
  padding: 0 8px 4px;
}
.bs-searchbox .form-control {
  margin-bottom: 0;
  width: 100%;
  float: none;
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url(https://assets.xplenty.com/8b43027f47b20503057dfbbaa9401fef.eot);
  src: url(https://assets.xplenty.com/8b43027f47b20503057dfbbaa9401fef.eot?#iefix&v=4.7.0) format('embedded-opentype'), url(https://assets.xplenty.com/20fd1704ea223900efa9fd4e869efb08.woff2) format('woff2'), url(https://assets.xplenty.com/f691f37e57f04c152e2315ab7dbad881.woff) format('woff'), url(https://assets.xplenty.com/1e59d2330b4c6deb84b340635ed36249.ttf) format('truetype'), url(https://assets.xplenty.com/c1e38fd9e0e74ba58f7a2b77ef29fdd3.svg#fontawesomeregular) format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
.angular-json-explorer {
  font-family: monospace;
  font-size: 13px;
  font-weight: 300;
  white-space: pre-wrap;
  background-color: #fff;
  padding: 15px;
  border-radius: 5px;
}
.angular-json-explorer .hidden {
  display: none;
}
.angular-json-explorer .copy-path {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
  font-weight: 400;
  background-color: #CCCCCC;
  cursor: pointer;
  display: none;
}
a.angular-json-explorer .copy-path:hover,
a.angular-json-explorer .copy-path:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.angular-json-explorer .copy-path:empty {
  display: none;
}
.btn .angular-json-explorer .copy-path {
  position: relative;
  top: -1px;
}
.angular-json-explorer .copy-path[href]:hover,
.angular-json-explorer .copy-path[href]:focus {
  background-color: #b3b3b3;
}
.angular-json-explorer .copy-path:hover {
  background-color: #0AB3E5;
}
.angular-json-explorer .copy-path:hover[href]:hover,
.angular-json-explorer .copy-path:hover[href]:focus {
  background-color: #088db4;
}
.angular-json-explorer .property {
  cursor: pointer;
}
.angular-json-explorer .property:hover .copy-path {
  display: inline-block;
}
.angular-json-explorer .null {
  color: red;
}
.angular-json-explorer .bool {
  color: blue;
}
.angular-json-explorer .num {
  color: blue;
}
.angular-json-explorer .string {
  color: green;
  white-space: pre-wrap;
  overflow-wrap: break-word;
}
.angular-json-explorer .collapser {
  position: absolute;
  left: -1em;
  cursor: pointer;
  -moz-user-select: none;
  color: #f92753;
  text-decoration: none;
}
.angular-json-explorer .q {
  display: inline-block;
  width: 0px;
  color: transparent;
}
.angular-json-explorer li {
  position: relative;
}
.angular-json-explorer .error {
  -moz-border-radius: 8px;
  border: 1px solid #970000;
  background-color: #f7e8e8;
  margin: 0.5em;
  padding: 0.5em;
}
.angular-json-explorer .errormessage {
  font-family: monospace;
}
.angular-json-explorer ul {
  list-style: none;
  margin: 0 0 0 2em;
  padding: 0;
}
.angular-json-explorer .callback + #json {
  padding-left: 1em;
}
.angular-json-explorer .callback {
  font-family: monospace;
  color: #a52a2a;
}
.angular-json-explorer h1 {
  font-size: 1.2em;
}
/* Make clicks pass-through */
#loading-bar,
#loading-bar-spinner {
  pointer-events: none;
  -webkit-pointer-events: none;
  -webkit-transition: 350ms linear all;
  -moz-transition: 350ms linear all;
  -o-transition: 350ms linear all;
  transition: 350ms linear all;
}
#loading-bar.ng-enter,
#loading-bar.ng-leave.ng-leave-active,
#loading-bar-spinner.ng-enter,
#loading-bar-spinner.ng-leave.ng-leave-active {
  opacity: 0;
}
#loading-bar.ng-enter.ng-enter-active,
#loading-bar.ng-leave,
#loading-bar-spinner.ng-enter.ng-enter-active,
#loading-bar-spinner.ng-leave {
  opacity: 1;
}
#loading-bar .bar {
  -webkit-transition: width 350ms;
  -moz-transition: width 350ms;
  -o-transition: width 350ms;
  transition: width 350ms;
  background: #0AB3E5;
  position: fixed;
  z-index: 10002;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-bottom-right-radius: 1px;
  border-top-right-radius: 1px;
}
/* Fancy blur effect */
#loading-bar .peg {
  position: absolute;
  width: 70px;
  right: 0;
  top: 0;
  height: 2px;
  opacity: 0.45;
  -moz-box-shadow: #29d 1px 0 6px 1px;
  -ms-box-shadow: #29d 1px 0 6px 1px;
  -webkit-box-shadow: #29d 1px 0 6px 1px;
  box-shadow: #29d 1px 0 6px 1px;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
#loading-bar-spinner {
  display: none;
  position: fixed;
  z-index: 10002;
  top: 10px;
  left: 10px;
}
#loading-bar-spinner .spinner-icon {
  width: 14px;
  height: 14px;
  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 10px;
  -webkit-animation: loading-bar-spinner 400ms linear infinite;
  -moz-animation: loading-bar-spinner 400ms linear infinite;
  -ms-animation: loading-bar-spinner 400ms linear infinite;
  -o-animation: loading-bar-spinner 400ms linear infinite;
  animation: loading-bar-spinner 400ms linear infinite;
}
@-webkit-keyframes loading-bar-spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes loading-bar-spinner {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes loading-bar-spinner {
  0% {
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes loading-bar-spinner {
  0% {
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading-bar-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bootstrap-select {
  width: 220px \0;
  /*IE9 and below*/
  z-index: 1500 !important;
}
.bootstrap-select > .dropdown-toggle {
  width: 100%;
  padding-right: 25px;
}
.has-error .bootstrap-select .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle {
  border-color: #b94a48;
}
.bootstrap-select.fit-width {
  width: auto !important;
}
.bootstrap-select:not([class*='col-']):not([class*='form-control']):not(.input-group-btn) {
  width: 100%;
}
.bootstrap-select .dropdown-toggle:focus {
  outline: thin dotted #333333 !important;
  outline: 5px auto -webkit-focus-ring-color !important;
  outline-offset: -2px;
}
.bootstrap-select.form-control {
  margin-bottom: 0;
  padding: 0;
  border: none;
}
.bootstrap-select.form-control:not([class*='col-']) {
  width: 100%;
}
.bootstrap-select.form-control.input-group-btn {
  z-index: auto;
}
.bootstrap-select:not(.input-group-btn),
.bootstrap-select[class*='col-'] {
  float: none;
  display: inline-block;
  margin-left: 0;
}
.bootstrap-select.dropdown-menu-right,
.bootstrap-select[class*='col-'].dropdown-menu-right,
.row .bootstrap-select[class*='col-'].dropdown-menu-right {
  float: right;
}
.form-inline .bootstrap-select,
.form-horizontal .bootstrap-select,
.form-group .bootstrap-select {
  margin-bottom: 0;
}
.form-group-lg .bootstrap-select.form-control,
.form-group-sm .bootstrap-select.form-control {
  padding: 0;
}
.form-inline .bootstrap-select .form-control {
  width: 100%;
}
.bootstrap-select > .disabled {
  cursor: not-allowed;
}
.bootstrap-select > .disabled:focus {
  outline: none !important;
}
.bootstrap-select .dropdown-toggle {
  background-color: #fff;
  border: 1px solid #CCCCCC;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}
.bootstrap-select .dropdown-toggle .filter-option {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  text-align: left;
  font-weight: 400;
}
.bootstrap-select .dropdown-toggle .caret {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -2px;
  vertical-align: middle;
}
.bootstrap-select[class*='col-'] .dropdown-toggle {
  width: 100%;
}
.bootstrap-select .dropdown-menu {
  top: 110%;
  min-width: 100%;
  z-index: 1090 !important;
  box-sizing: border-box;
}
.bootstrap-select .dropdown-menu.inner {
  position: static;
  float: none;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.bootstrap-select .dropdown-menu li {
  position: relative;
}
.bootstrap-select .dropdown-menu li.active small {
  color: #fff;
}
.bootstrap-select .dropdown-menu li.disabled a {
  cursor: not-allowed;
}
.bootstrap-select .dropdown-menu li a {
  cursor: pointer;
}
.bootstrap-select .dropdown-menu li a.opt {
  position: relative;
  padding-left: 2.25em;
}
.bootstrap-select .dropdown-menu li a span.check-mark {
  display: none;
}
.bootstrap-select .dropdown-menu li a span.text {
  display: inline-block;
}
.bootstrap-select .dropdown-menu li small {
  padding-left: 0.5em;
}
.bootstrap-select .dropdown-menu .notify {
  position: absolute;
  bottom: 5px;
  width: 96%;
  margin: 0 2%;
  min-height: 26px;
  padding: 3px 5px;
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  opacity: 0.9;
  box-sizing: border-box;
}
.bootstrap-select .no-results {
  padding: 5px;
  margin: 4px 7px;
  text-align: center;
  color: #808080;
}
.bootstrap-select.fit-width .dropdown-toggle .filter-option {
  position: static;
}
.bootstrap-select.fit-width .dropdown-toggle .caret {
  position: static;
  top: auto;
  margin-top: -1px;
}
.bootstrap-select.show-tick .dropdown-menu li.selected a span.check-mark {
  position: absolute;
  display: inline-block;
  right: 15px;
  margin-top: 5px;
}
.bootstrap-select.show-tick .dropdown-menu li a span.text {
  margin-right: 34px;
}
.bootstrap-select.open {
  z-index: 1999 !important;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
  z-index: 1091;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
  content: '';
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(204, 204, 204, 0.2);
  position: absolute;
  bottom: -4px;
  left: 9px;
  display: none;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  position: absolute;
  bottom: -4px;
  left: 10px;
  display: none;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
  bottom: auto;
  top: -3px;
  border-top: 7px solid rgba(204, 204, 204, 0.2);
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
  bottom: auto;
  top: -3px;
  border-top: 6px solid white;
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
  right: 12px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
  right: 13px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before,
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
  display: block;
}
.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
  padding: 8px;
}
.bs-actionsbox {
  float: left;
  width: 100%;
  box-sizing: border-box;
}
.bs-actionsbox .btn-group button {
  width: 50%;
}
.bs-donebutton {
  float: left;
  width: 100%;
  box-sizing: border-box;
}
.bs-donebutton .btn-group button {
  width: 100%;
}
.bs-searchbox + .bs-actionsbox {
  padding: 0 8px 4px;
}
.bs-searchbox input.form-control {
  margin-bottom: 0;
  width: 100%;
}
.mobile-device {
  position: absolute !important;
  top: 0;
  left: 0;
  display: block !important;
  width: 100%;
  height: 100% !important;
  opacity: 0;
}
/* BASICS */
#code-editor {
  min-height: 130px;
}
.CodeMirror-placeholder {
  color: #CCCCCC !important;
}
.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  color: black;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  min-height: 130px;
}
/* PADDING */
.CodeMirror-lines {
  padding: 4px 0;
  /* Vertical padding around content */
}
.CodeMirror pre {
  padding: 0 4px;
  /* Horizontal padding of content */
}
.CodeMirror-scrollbar-filler,
.CodeMirror-gutter-filler {
  background-color: white;
  /* The little square between H and V scrollbars */
}
/* GUTTER */
.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
  min-height: 130px;
}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}
.CodeMirror-guttermarker {
  color: black;
}
.CodeMirror-guttermarker-subtle {
  color: #999;
}
/* CURSOR */
.CodeMirror div.CodeMirror-cursor {
  border-left: 1px solid black;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.CodeMirror.cm-fat-cursor div.CodeMirror-cursor {
  width: auto;
  border: 0;
  background: #7e7;
}
.CodeMirror.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}
.cm-animate-fat-cursor {
  width: auto;
  border: 0;
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
}
@-moz-keyframes blink {
  0% {
    background: #7e7;
  }
  50% {
    background: none;
  }
  100% {
    background: #7e7;
  }
}
@-webkit-keyframes blink {
  0% {
    background: #7e7;
  }
  50% {
    background: none;
  }
  100% {
    background: #7e7;
  }
}
@keyframes blink {
  0% {
    background: #7e7;
  }
  50% {
    background: none;
  }
  100% {
    background: #7e7;
  }
}
/* Can style cursor different in overwrite (non-insert) mode */
.cm-tab {
  display: inline-block;
  text-decoration: inherit;
}
.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  position: absolute;
}
/* DEFAULT THEME */
.cm-s-default .cm-keyword {
  color: #708;
}
.cm-s-default .cm-atom {
  color: #219;
}
.cm-s-default .cm-number {
  color: #164;
}
.cm-s-default .cm-def {
  color: #00f;
}
.cm-s-default .cm-variable-2 {
  color: #05a;
}
.cm-s-default .cm-variable-3 {
  color: #085;
}
.cm-s-default .cm-comment {
  color: #a50;
}
.cm-s-default .cm-string {
  color: #a11;
}
.cm-s-default .cm-string-2 {
  color: #f50;
}
.cm-s-default .cm-meta {
  color: #555;
}
.cm-s-default .cm-qualifier {
  color: #555;
}
.cm-s-default .cm-builtin {
  color: #30a;
}
.cm-s-default .cm-bracket {
  color: #997;
}
.cm-s-default .cm-tag {
  color: #170;
}
.cm-s-default .cm-attribute {
  color: #00c;
}
.cm-s-default .cm-header {
  color: blue;
}
.cm-s-default .cm-quote {
  color: #090;
}
.cm-s-default .cm-hr {
  color: #999;
}
.cm-s-default .cm-link {
  color: #00c;
}
.cm-negative {
  color: #d44;
}
.cm-positive {
  color: #292;
}
.cm-header,
.cm-strong {
  font-weight: bold;
}
.cm-em {
  font-style: italic;
}
.cm-link {
  text-decoration: underline;
}
.cm-strikethrough {
  text-decoration: line-through;
}
.cm-s-default .cm-error {
  color: #f00;
}
.cm-invalidchar {
  color: #f00;
}
.CodeMirror-composing {
  border-bottom: 2px solid;
}
/* Default styles for common addons */
div.CodeMirror span.CodeMirror-matchingbracket {
  color: #0f0;
}
div.CodeMirror span.CodeMirror-nonmatchingbracket {
  color: #f22;
}
.CodeMirror-matchingtag {
  background: rgba(255, 150, 0, 0.3);
}
.CodeMirror-activeline-background {
  background: #e8f2ff;
}
/* STOP */
/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */
.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}
.CodeMirror-scroll {
  overflow: scroll !important;
  /* Things will break if this is overridden */
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px;
  margin-right: -30px;
  padding-bottom: 30px;
  min-height: 130px;
  max-height: 260px;
  outline: none;
  /* Prevent dragging from highlighting the element */
  position: relative;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 30px solid transparent;
}
/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actuall scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar,
.CodeMirror-hscrollbar,
.CodeMirror-scrollbar-filler,
.CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
}
.CodeMirror-vscrollbar {
  right: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0;
  bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0;
  bottom: 0;
}
.CodeMirror-gutters {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  margin-bottom: -30px;
  /* Hack to make IE7 behave */
  *zoom: 1;
  *display: inline;
}
.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  height: 100%;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
.CodeMirror-gutter-wrapper {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.CodeMirror-lines {
  cursor: text;
  min-height: 1px;
  /* prevents collapsing before first draw */
}
.CodeMirror pre {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
}
.CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}
.CodeMirror-linebackground {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}
.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  overflow: auto;
}
.CodeMirror-code {
  outline: none;
}
/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.CodeMirror-measure pre {
  position: static;
}
.CodeMirror div.CodeMirror-cursor {
  position: absolute;
  border-right: none;
  width: 0;
}
div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}
.CodeMirror-selected {
  background: #d9d9d9;
}
.CodeMirror-focused .CodeMirror-selected {
  background: #d7d4f0;
}
.CodeMirror-crosshair {
  cursor: crosshair;
}
.CodeMirror ::selection {
  background: #d7d4f0;
}
.CodeMirror ::-moz-selection {
  background: #d7d4f0;
}
.cm-searching {
  background: #ffa;
  background: rgba(255, 255, 0, 0.4);
}
/* IE7 hack to prevent it from returning funny offsetTops on the spans */
.CodeMirror span {
  *vertical-align: text-bottom;
}
/* Used to force a border model for a node */
.cm-force-border {
  padding-right: 0.1px;
}
@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}
/* See issue #2901 */
.cm-tab-wrap-hack:after {
  content: '';
}
/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext {
  background: none;
}
.CodeMirror-hints {
  position: absolute;
  z-index: 3000;
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 1px;
  border: 1px solid #E6E6E6;
  background: white;
  font-size: 90%;
  font-family: monospace;
  max-height: 20em;
  overflow-y: auto;
}
.CodeMirror-hint {
  margin: 0;
  padding: 0 4px;
  max-width: 19em;
  overflow: hidden;
  white-space: pre;
  color: black;
  cursor: pointer;
}
.CodeMirror-hint.keyword:before,
.CodeMirror-hint.datatype:before {
  margin-right: 5px;
  font-family: FontAwesome;
  font-size: 12px;
}
.CodeMirror-hint.keyword:before {
  content: '\f111';
  color: #39E98D;
}
.CodeMirror-hint.datatype:before {
  content: '\f1b2';
  color: #E54C40;
}
li.CodeMirror-hint-active {
  background: #0AB3E5;
  color: white;
}
.CodeMirror-dialog {
  position: absolute;
  left: 0;
  right: 0;
  background: white;
  z-index: 15;
  padding: 0.1em 0.8em;
  overflow: hidden;
  color: #333;
}
.CodeMirror-dialog-top {
  border-bottom: 1px solid #eee;
  top: 0;
}
.CodeMirror-dialog-bottom {
  border-top: 1px solid #eee;
  bottom: 0;
}
.CodeMirror-dialog input {
  border: none;
  outline: none;
  background: transparent;
  width: 20em;
  color: inherit;
  font-family: monospace;
}
.CodeMirror-dialog button {
  font-size: 70%;
}
.CodeMirror-Tern-completion {
  padding-left: 22px;
  position: relative;
}
.CodeMirror-Tern-completion:before {
  position: absolute;
  left: 2px;
  bottom: 2px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  height: 15px;
  width: 15px;
  line-height: 16px;
  text-align: center;
  color: white;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.CodeMirror-Tern-completion-unknown:before {
  content: '?';
  background: #4bb;
}
.CodeMirror-Tern-completion-object:before {
  content: 'O';
  background: #77c;
}
.CodeMirror-Tern-completion-fn:before {
  content: 'F';
  background: #7c7;
}
.CodeMirror-Tern-completion-array:before {
  content: 'A';
  background: #c66;
}
.CodeMirror-Tern-completion-number:before {
  content: '1';
  background: #999;
}
.CodeMirror-Tern-completion-string:before {
  content: 'S';
  background: #999;
}
.CodeMirror-Tern-completion-bool:before {
  content: 'B';
  background: #999;
}
.CodeMirror-Tern-completion-guess {
  color: #999;
}
.CodeMirror-Tern-tooltip {
  border: 1px solid silver;
  border-radius: 3px;
  color: #444;
  padding: 2px 5px;
  font-size: 90%;
  font-family: monospace;
  background-color: white;
  white-space: pre-wrap;
  max-width: 40em;
  position: absolute;
  z-index: 10;
  -webkit-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
  transition: opacity 1s;
  -moz-transition: opacity 1s;
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
  -ms-transition: opacity 1s;
}
.CodeMirror-Tern-hint-doc {
  max-width: 25em;
  margin-top: -3px;
}
.CodeMirror-Tern-fname {
  color: black;
}
.CodeMirror-Tern-farg {
  color: #70a;
}
.CodeMirror-Tern-farg-current {
  text-decoration: underline;
}
.CodeMirror-Tern-type {
  color: #07c;
}
.CodeMirror-Tern-fhint-guess {
  opacity: 0.7;
}
.ct-double-octave:after,
.ct-major-eleventh:after,
.ct-major-second:after,
.ct-major-seventh:after,
.ct-major-sixth:after,
.ct-major-tenth:after,
.ct-major-third:after,
.ct-major-twelfth:after,
.ct-minor-second:after,
.ct-minor-seventh:after,
.ct-minor-sixth:after,
.ct-minor-third:after,
.ct-octave:after,
.ct-perfect-fifth:after,
.ct-perfect-fourth:after,
.ct-square:after {
  content: '';
  clear: both;
}
.ct-double-octave:after,
.ct-double-octave:before,
.ct-golden-section:after,
.ct-major-eleventh:after,
.ct-major-eleventh:before,
.ct-major-second:after,
.ct-major-second:before,
.ct-major-seventh:after,
.ct-major-seventh:before,
.ct-major-sixth:after,
.ct-major-sixth:before,
.ct-major-tenth:after,
.ct-major-tenth:before,
.ct-major-third:after,
.ct-major-third:before,
.ct-major-twelfth:after,
.ct-major-twelfth:before,
.ct-minor-second:after,
.ct-minor-second:before,
.ct-minor-seventh:after,
.ct-minor-seventh:before,
.ct-minor-sixth:after,
.ct-minor-sixth:before,
.ct-minor-third:after,
.ct-minor-third:before,
.ct-octave:after,
.ct-octave:before,
.ct-perfect-fifth:after,
.ct-perfect-fifth:before,
.ct-perfect-fourth:after,
.ct-perfect-fourth:before,
.ct-square:after,
.ct-square:before {
  content: '';
}
.ct-label {
  fill: rgba(0, 0, 0, 0.4);
  color: rgba(0, 0, 0, 0.4);
  font-size: 12px;
  line-height: 1;
}
.ct-chart-bar .ct-label,
.ct-chart-line .ct-label {
  display: block;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ct-label.ct-horizontal.ct-start {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}
.ct-label.ct-horizontal.ct-end {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}
.ct-label.ct-vertical.ct-start {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  text-align: right;
  text-anchor: end;
}
.ct-label.ct-vertical.ct-end {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}
.ct-chart-bar .ct-label.ct-horizontal.ct-start {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  text-anchor: start;
}
.ct-chart-bar .ct-label.ct-horizontal.ct-end {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  text-anchor: start;
}
.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-start {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}
.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-end {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}
.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-start {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  text-align: right;
  text-anchor: end;
}
.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-end {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: end;
}
.ct-grid {
  stroke: rgba(0, 0, 0, 0.2);
  stroke-width: 1px;
  stroke-dasharray: 2px;
}
.ct-point {
  stroke-width: 10px;
  stroke-linecap: round;
}
.ct-line {
  fill: none;
  stroke-width: 4px;
}
.ct-area {
  stroke: none;
  fill-opacity: 0.1;
}
.ct-bar {
  fill: none;
  stroke-width: 10px;
}
.ct-slice-donut {
  fill: none;
  stroke-width: 60px;
}
.ct-series-a .ct-bar,
.ct-series-a .ct-line,
.ct-series-a .ct-point,
.ct-series-a .ct-slice-donut {
  stroke: #0AB3E5;
}
.ct-series-a .ct-area,
.ct-series-a .ct-slice-pie {
  fill: #0AB3E5;
}
.ct-series-b .ct-bar,
.ct-series-b .ct-line,
.ct-series-b .ct-point,
.ct-series-b .ct-slice-donut {
  stroke: #FFD260;
}
.ct-series-b .ct-area,
.ct-series-b .ct-slice-pie {
  fill: #FFD260;
}
.ct-series-c .ct-bar,
.ct-series-c .ct-line,
.ct-series-c .ct-point,
.ct-series-c .ct-slice-donut {
  stroke: #f4c63d;
}
.ct-series-c .ct-area,
.ct-series-c .ct-slice-pie {
  fill: #f4c63d;
}
.ct-series-d .ct-bar,
.ct-series-d .ct-line,
.ct-series-d .ct-point,
.ct-series-d .ct-slice-donut {
  stroke: #d17905;
}
.ct-series-d .ct-area,
.ct-series-d .ct-slice-pie {
  fill: #d17905;
}
.ct-series-e .ct-bar,
.ct-series-e .ct-line,
.ct-series-e .ct-point,
.ct-series-e .ct-slice-donut {
  stroke: #453d3f;
}
.ct-series-e .ct-area,
.ct-series-e .ct-slice-pie {
  fill: #453d3f;
}
.ct-series-f .ct-bar,
.ct-series-f .ct-line,
.ct-series-f .ct-point,
.ct-series-f .ct-slice-donut {
  stroke: #59922b;
}
.ct-series-f .ct-area,
.ct-series-f .ct-slice-pie {
  fill: #59922b;
}
.ct-series-g .ct-bar,
.ct-series-g .ct-line,
.ct-series-g .ct-point,
.ct-series-g .ct-slice-donut {
  stroke: #0544d3;
}
.ct-series-g .ct-area,
.ct-series-g .ct-slice-pie {
  fill: #0544d3;
}
.ct-series-h .ct-bar,
.ct-series-h .ct-line,
.ct-series-h .ct-point,
.ct-series-h .ct-slice-donut {
  stroke: #6b0392;
}
.ct-series-h .ct-area,
.ct-series-h .ct-slice-pie {
  fill: #6b0392;
}
.ct-series-i .ct-bar,
.ct-series-i .ct-line,
.ct-series-i .ct-point,
.ct-series-i .ct-slice-donut {
  stroke: #FFD260;
}
.ct-series-i .ct-area,
.ct-series-i .ct-slice-pie {
  fill: #FFD260;
}
.ct-series-j .ct-bar,
.ct-series-j .ct-line,
.ct-series-j .ct-point,
.ct-series-j .ct-slice-donut {
  stroke: #dda458;
}
.ct-series-j .ct-area,
.ct-series-j .ct-slice-pie {
  fill: #dda458;
}
.ct-series-k .ct-bar,
.ct-series-k .ct-line,
.ct-series-k .ct-point,
.ct-series-k .ct-slice-donut {
  stroke: #eacf7d;
}
.ct-series-k .ct-area,
.ct-series-k .ct-slice-pie {
  fill: #eacf7d;
}
.ct-series-l .ct-bar,
.ct-series-l .ct-line,
.ct-series-l .ct-point,
.ct-series-l .ct-slice-donut {
  stroke: #86797d;
}
.ct-series-l .ct-area,
.ct-series-l .ct-slice-pie {
  fill: #86797d;
}
.ct-series-m .ct-bar,
.ct-series-m .ct-line,
.ct-series-m .ct-point,
.ct-series-m .ct-slice-donut {
  stroke: #b2c326;
}
.ct-series-m .ct-area,
.ct-series-m .ct-slice-pie {
  fill: #b2c326;
}
.ct-series-n .ct-bar,
.ct-series-n .ct-line,
.ct-series-n .ct-point,
.ct-series-n .ct-slice-donut {
  stroke: #6188e2;
}
.ct-series-n .ct-area,
.ct-series-n .ct-slice-pie {
  fill: #6188e2;
}
.ct-series-o .ct-bar,
.ct-series-o .ct-line,
.ct-series-o .ct-point,
.ct-series-o .ct-slice-donut {
  stroke: #a748ca;
}
.ct-series-o .ct-area,
.ct-series-o .ct-slice-pie {
  fill: #a748ca;
}
.ct-square {
  display: block;
  position: relative;
  width: 100%;
}
.ct-square:before {
  display: block;
  float: left;
  width: 0;
  height: 0;
  padding-bottom: 100%;
}
.ct-square:after {
  display: table;
}
.ct-square > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-minor-second {
  display: block;
  position: relative;
  width: 100%;
}
.ct-minor-second:before {
  display: block;
  float: left;
  width: 0;
  height: 0;
  padding-bottom: 93.75%;
}
.ct-minor-second:after {
  display: table;
}
.ct-minor-second > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-major-second {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-second:before {
  display: block;
  float: left;
  width: 0;
  height: 0;
  padding-bottom: 88.88888889%;
}
.ct-major-second:after {
  display: table;
}
.ct-major-second > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-minor-third {
  display: block;
  position: relative;
  width: 100%;
}
.ct-minor-third:before {
  display: block;
  float: left;
  width: 0;
  height: 0;
  padding-bottom: 83.33333333%;
}
.ct-minor-third:after {
  display: table;
}
.ct-minor-third > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-major-third {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-third:before {
  display: block;
  float: left;
  width: 0;
  height: 0;
  padding-bottom: 80%;
}
.ct-major-third:after {
  display: table;
}
.ct-major-third > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-perfect-fourth {
  display: block;
  position: relative;
  width: 100%;
}
.ct-perfect-fourth:before {
  display: block;
  float: left;
  width: 0;
  height: 0;
  padding-bottom: 75%;
}
.ct-perfect-fourth:after {
  display: table;
}
.ct-perfect-fourth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-perfect-fifth {
  display: block;
  position: relative;
  width: 100%;
}
.ct-perfect-fifth:before {
  display: block;
  float: left;
  width: 0;
  height: 0;
  padding-bottom: 66.66666667%;
}
.ct-perfect-fifth:after {
  display: table;
}
.ct-perfect-fifth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-minor-sixth {
  display: block;
  position: relative;
  width: 100%;
}
.ct-minor-sixth:before {
  display: block;
  float: left;
  width: 0;
  height: 0;
  padding-bottom: 62.5%;
}
.ct-minor-sixth:after {
  display: table;
}
.ct-minor-sixth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-golden-section {
  display: block;
  position: relative;
  width: 100%;
}
.ct-golden-section:before {
  display: block;
  float: left;
  content: '';
  width: 0;
  height: 0;
  padding-bottom: 61.80469716%;
}
.ct-golden-section:after {
  display: table;
  clear: both;
}
.ct-golden-section > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-major-sixth {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-sixth:before {
  display: block;
  float: left;
  width: 0;
  height: 0;
  padding-bottom: 60%;
}
.ct-major-sixth:after {
  display: table;
}
.ct-major-sixth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-minor-seventh {
  display: block;
  position: relative;
  width: 100%;
}
.ct-minor-seventh:before {
  display: block;
  float: left;
  width: 0;
  height: 0;
  padding-bottom: 56.25%;
}
.ct-minor-seventh:after {
  display: table;
}
.ct-minor-seventh > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-major-seventh {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-seventh:before {
  display: block;
  float: left;
  width: 0;
  height: 0;
  padding-bottom: 53.33333333%;
}
.ct-major-seventh:after {
  display: table;
}
.ct-major-seventh > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-octave {
  display: block;
  position: relative;
  width: 100%;
}
.ct-octave:before {
  display: block;
  float: left;
  width: 0;
  height: 0;
  padding-bottom: 50%;
}
.ct-octave:after {
  display: table;
}
.ct-octave > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-major-tenth {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-tenth:before {
  display: block;
  float: left;
  width: 0;
  height: 0;
  padding-bottom: 40%;
}
.ct-major-tenth:after {
  display: table;
}
.ct-major-tenth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-major-eleventh {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-eleventh:before {
  display: block;
  float: left;
  width: 0;
  height: 0;
  padding-bottom: 37.5%;
}
.ct-major-eleventh:after {
  display: table;
}
.ct-major-eleventh > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-major-twelfth {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-twelfth:before {
  display: block;
  float: left;
  width: 0;
  height: 0;
  padding-bottom: 33.33333333%;
}
.ct-major-twelfth:after {
  display: table;
}
.ct-major-twelfth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ct-double-octave {
  display: block;
  position: relative;
  width: 100%;
}
.ct-double-octave:before {
  display: block;
  float: left;
  width: 0;
  height: 0;
  padding-bottom: 25%;
}
.ct-double-octave:after {
  display: table;
}
.ct-double-octave > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
/* perfect-scrollbar v0.6.7 */
.ps-container {
  -ms-touch-action: none;
  overflow: hidden !important;
}
.ps-container.ps-active-x > .ps-scrollbar-x-rail,
.ps-container.ps-active-y > .ps-scrollbar-y-rail {
  display: block;
}
.ps-container.ps-in-scrolling {
  pointer-events: none;
}
.ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
  background-color: #eee;
  opacity: 0.9;
}
.ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
  background-color: #999;
}
.ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
  background-color: #eee;
  opacity: 0.9;
}
.ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  background-color: #999;
}
.ps-container > .ps-scrollbar-x-rail {
  display: none;
  position: absolute;
  /* please don't change 'position' */
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  opacity: 0;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  -moz-transition: background-color 0.2s linear, opacity 0.2s linear;
  -o-transition: background-color 0.2s linear, opacity 0.2s linear;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  bottom: 3px;
  /* there must be 'bottom' for ps-scrollbar-x-rail */
  height: 8px;
}
.ps-container > .ps-scrollbar-x-rail > .ps-scrollbar-x {
  position: absolute;
  /* please don't change 'position' */
  background-color: #aaa;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  bottom: 0;
  /* there must be 'bottom' for ps-scrollbar-x */
  height: 8px;
}
.ps-container > .ps-scrollbar-y-rail {
  display: none;
  position: absolute;
  /* please don't change 'position' */
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  opacity: 0;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  -moz-transition: background-color 0.2s linear, opacity 0.2s linear;
  -o-transition: background-color 0.2s linear, opacity 0.2s linear;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  right: 3px;
  /* there must be 'right' for ps-scrollbar-y-rail */
  width: 8px;
}
.ps-container > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  position: absolute;
  /* please don't change 'position' */
  background-color: #aaa;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  right: 0;
  /* there must be 'right' for ps-scrollbar-y */
  width: 8px;
}
.ps-container:hover.ps-in-scrolling {
  pointer-events: none;
}
.ps-container:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
  background-color: #eee;
  opacity: 0.9;
}
.ps-container:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
  background-color: #999;
}
.ps-container:hover.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
  background-color: #eee;
  opacity: 0.9;
}
.ps-container:hover.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  background-color: #999;
}
.ps-container:hover > .ps-scrollbar-x-rail,
.ps-container:hover > .ps-scrollbar-y-rail {
  opacity: 0.6;
}
.ps-container:hover > .ps-scrollbar-x-rail:hover {
  background-color: #eee;
  opacity: 0.9;
}
.ps-container:hover > .ps-scrollbar-x-rail:hover > .ps-scrollbar-x {
  background-color: #999;
}
.ps-container:hover > .ps-scrollbar-y-rail:hover {
  background-color: #eee;
  opacity: 0.9;
}
.ps-container:hover > .ps-scrollbar-y-rail:hover > .ps-scrollbar-y {
  background-color: #999;
}
.slider {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.slider.slider-horizontal {
  width: 100%;
  height: 20px;
}
.slider.slider-horizontal .slider-track {
  height: 2px;
  width: 100%;
  margin-top: -5px;
  top: 50%;
  left: 0;
}
.slider.slider-horizontal .slider-selection,
.slider.slider-horizontal .slider-track-low,
.slider.slider-horizontal .slider-track-high {
  height: 2px;
  top: 0;
  bottom: 0;
}
.slider.slider-horizontal .slider-tick,
.slider.slider-horizontal .slider-handle {
  margin-left: -10px;
  margin-top: -9px;
}
.slider.slider-horizontal .slider-tick.triangle,
.slider.slider-horizontal .slider-handle.triangle {
  border-width: 0 10px 10px 10px;
  width: 0;
  height: 0;
  border-bottom-color: #0480be;
  margin-top: 0;
}
.slider.slider-horizontal .slider-tick-label-container {
  white-space: nowrap;
  margin-top: 20px;
}
.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
  padding-top: 4px;
  display: inline-block;
  text-align: center;
}
.slider.slider-vertical {
  height: 210px;
  width: 20px;
}
.slider.slider-vertical .slider-track {
  width: 10px;
  height: 100%;
  margin-left: -5px;
  left: 50%;
  top: 0;
}
.slider.slider-vertical .slider-selection {
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
}
.slider.slider-vertical .slider-track-low,
.slider.slider-vertical .slider-track-high {
  width: 100%;
  left: 0;
  right: 0;
}
.slider.slider-vertical .slider-tick,
.slider.slider-vertical .slider-handle {
  margin-left: -5px;
  margin-top: -10px;
}
.slider.slider-vertical .slider-tick.triangle,
.slider.slider-vertical .slider-handle.triangle {
  border-width: 10px 0 10px 10px;
  width: 1px;
  height: 1px;
  border-left-color: #0480be;
  margin-left: 0;
}
.slider.slider-vertical .slider-tick-label-container {
  white-space: nowrap;
}
.slider.slider-vertical .slider-tick-label-container .slider-tick-label {
  padding-left: 4px;
}
.slider.slider-disabled .slider-handle {
  background-image: -webkit-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
  background-image: -o-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
  background-image: linear-gradient(to bottom, #dfdfdf 0%, #bebebe 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdfdfdf', endColorstr='#ffbebebe', GradientType=0);
  background-repeat: repeat-x;
}
.slider.slider-disabled .slider-track {
  background-image: -webkit-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
  background-image: -o-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
  background-image: linear-gradient(to bottom, #e5e5e5 0%, #e9e9e9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe5e5e5', endColorstr='#ffe9e9e9', GradientType=0);
  background-repeat: repeat-x;
  cursor: not-allowed;
}
.slider input {
  display: none;
}
.slider .tooltip.top {
  margin-top: -60px;
}
.slider .tooltip-inner {
  white-space: nowrap;
}
.slider .hide {
  display: none;
}
.slider-track {
  position: absolute;
  cursor: pointer;
  height: 2px;
  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
  background-image: -o-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
  background-image: linear-gradient(to bottom, #f5f5f5 0%, #f9f9f9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
  background-repeat: repeat-x;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.slider-selection {
  position: absolute;
  background-image: -webkit-linear-gradient(top, #bfeefc 0%, #8ee1fa 100%);
  background-image: -o-linear-gradient(top, #bfeefc 0%, #8ee1fa 100%);
  background-image: linear-gradient(to bottom, #bfeefc 0%, #8ee1fa 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbfeefc', endColorstr='#ff8ee1fa', GradientType=0);
  background-repeat: repeat-x;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
}
.slider-track-low,
.slider-track-high {
  position: absolute;
  background: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
}
.slider-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #0AB3E5;
  filter: none;
  border: 0px solid transparent;
}
.slider-handle.round {
  border-radius: 50%;
}
.slider-handle.triangle {
  background: transparent none;
}
.slider-handle.custom {
  background: transparent none;
}
.slider-handle.custom::before {
  line-height: 20px;
  font-size: 20px;
  content: '\2605';
  color: #726204;
}
.slider-tick {
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
  background-repeat: repeat-x;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  filter: none;
  opacity: 0.8;
  border: 0px solid transparent;
}
.slider-tick.round {
  border-radius: 50%;
}
.slider-tick.triangle {
  background: transparent none;
}
.slider-tick.custom {
  background: transparent none;
}
.slider-tick.custom::before {
  line-height: 20px;
  font-size: 20px;
  content: '\2605';
  color: #726204;
}
.slider-tick.in-selection {
  background-image: -webkit-linear-gradient(top, #89cdef 0%, #81bfde 100%);
  background-image: -o-linear-gradient(top, #89cdef 0%, #81bfde 100%);
  background-image: linear-gradient(to bottom, #89cdef 0%, #81bfde 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff89cdef', endColorstr='#ff81bfde', GradientType=0);
  background-repeat: repeat-x;
  opacity: 1;
}
/**
 *
 * All animations must live in their own file
 * in the animations directory and be included
 * here.
 *
 */
/**
 * Styles shared by multiple animations
 */
/**
 * Dots
 */
.loader {
  width: 36px;
  margin-right: auto;
  margin-left: auto;
}
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.ball-pulse > div:nth-child(0) {
  -webkit-animation: scale 0.75s -0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s -0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.ball-pulse > div:nth-child(1) {
  -webkit-animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.ball-pulse > div:nth-child(2) {
  -webkit-animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.ball-pulse > div:nth-child(3) {
  -webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.ball-pulse > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
}
@-webkit-keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.ball-pulse-sync > div:nth-child(0) {
  -webkit-animation: ball-pulse-sync 0.6s -0.21s infinite ease-in-out;
  animation: ball-pulse-sync 0.6s -0.21s infinite ease-in-out;
}
.ball-pulse-sync > div:nth-child(1) {
  -webkit-animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
  animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
}
.ball-pulse-sync > div:nth-child(2) {
  -webkit-animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out;
  animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out;
}
.ball-pulse-sync > div:nth-child(3) {
  -webkit-animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
  animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
}
.ball-pulse-sync > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
}
@-webkit-keyframes ball-scale {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes ball-scale {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
.ball-scale > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  height: 60px;
  width: 60px;
  -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
  animation: ball-scale 1s 0s ease-in-out infinite;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.ball-rotate {
  position: relative;
}
.ball-rotate > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: relative;
}
.ball-rotate > div:first-child {
  -webkit-animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
  animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
}
.ball-rotate > div:before,
.ball-rotate > div:after {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  content: '';
  position: absolute;
  opacity: 0.8;
}
.ball-rotate > div:before {
  top: 0px;
  left: -28px;
}
.ball-rotate > div:after {
  top: 0px;
  left: 25px;
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(180deg) scale(0.6);
    transform: rotate(180deg) scale(0.6);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
  }
}
.ball-clip-rotate > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid #fff;
  border-bottom-color: transparent;
  height: 25px;
  width: 25px;
  background: transparent !important;
  display: inline-block;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite;
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(180deg) scale(0.6);
    transform: rotate(180deg) scale(0.6);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
  }
}
@keyframes scale {
  30% {
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.ball-clip-rotate-pulse {
  position: relative;
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px);
}
.ball-clip-rotate-pulse > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 100%;
}
.ball-clip-rotate-pulse > div:first-child {
  background: #fff;
  height: 16px;
  width: 16px;
  top: 7px;
  left: -7px;
  -webkit-animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}
.ball-clip-rotate-pulse > div:last-child {
  position: absolute;
  border: 2px solid #fff;
  width: 30px;
  height: 30px;
  left: -16px;
  top: -2px;
  background: transparent;
  border: 2px solid;
  border-color: #fff transparent #fff transparent;
  -webkit-animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(180deg) scale(0.6);
    transform: rotate(180deg) scale(0.6);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
  }
}
.ball-clip-rotate-multiple {
  position: relative;
}
.ball-clip-rotate-multiple > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  left: -20px;
  top: -20px;
  border: 2px solid #fff;
  border-bottom-color: transparent;
  border-top-color: transparent;
  border-radius: 100%;
  height: 35px;
  width: 35px;
  -webkit-animation: rotate 1s 0s ease-in-out infinite;
  animation: rotate 1s 0s ease-in-out infinite;
}
.ball-clip-rotate-multiple > div:last-child {
  display: inline-block;
  top: -10px;
  left: -10px;
  width: 15px;
  height: 15px;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  border-color: #fff transparent #fff transparent;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
@-webkit-keyframes ball-scale-ripple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ball-scale-ripple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}
.ball-scale-ripple > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  border: 2px solid #fff;
  -webkit-animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
  animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
}
@-webkit-keyframes ball-scale-ripple-multiple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ball-scale-ripple-multiple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}
.ball-scale-ripple-multiple {
  position: relative;
  -webkit-transform: translateY(-25px);
  -ms-transform: translateY(-25px);
  transform: translateY(-25px);
}
.ball-scale-ripple-multiple > div:nth-child(0) {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.ball-scale-ripple-multiple > div:nth-child(1) {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.ball-scale-ripple-multiple > div:nth-child(2) {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.ball-scale-ripple-multiple > div:nth-child(3) {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.ball-scale-ripple-multiple > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  top: -2px;
  left: -26px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 2px solid #fff;
  -webkit-animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
  animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
}
@-webkit-keyframes ball-beat {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ball-beat {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.ball-beat > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation: ball-beat 0.7s 0s infinite linear;
  animation: ball-beat 0.7s 0s infinite linear;
}
.ball-beat > div:nth-child(2n-1) {
  -webkit-animation-delay: -0.35s !important;
  animation-delay: -0.35s !important;
}
@-webkit-keyframes ball-scale-multiple {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes ball-scale-multiple {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
.ball-scale-multiple {
  position: relative;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
}
.ball-scale-multiple > div:nth-child(2) {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.ball-scale-multiple > div:nth-child(3) {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.ball-scale-multiple > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  left: -30px;
  top: 0px;
  opacity: 0;
  margin: 0;
  width: 60px;
  height: 60px;
  -webkit-animation: ball-scale-multiple 1s 0s linear infinite;
  animation: ball-scale-multiple 1s 0s linear infinite;
}
@-webkit-keyframes ball-triangle-path-1 {
  33% {
    -webkit-transform: translate(25px, -50px);
    transform: translate(25px, -50px);
  }
  66% {
    -webkit-transform: translate(50px, 0px);
    transform: translate(50px, 0px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
@keyframes ball-triangle-path-1 {
  33% {
    -webkit-transform: translate(25px, -50px);
    transform: translate(25px, -50px);
  }
  66% {
    -webkit-transform: translate(50px, 0px);
    transform: translate(50px, 0px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
@-webkit-keyframes ball-triangle-path-2 {
  33% {
    -webkit-transform: translate(25px, 50px);
    transform: translate(25px, 50px);
  }
  66% {
    -webkit-transform: translate(-25px, 50px);
    transform: translate(-25px, 50px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
@keyframes ball-triangle-path-2 {
  33% {
    -webkit-transform: translate(25px, 50px);
    transform: translate(25px, 50px);
  }
  66% {
    -webkit-transform: translate(-25px, 50px);
    transform: translate(-25px, 50px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
@-webkit-keyframes ball-triangle-path-3 {
  33% {
    -webkit-transform: translate(-50px, 0px);
    transform: translate(-50px, 0px);
  }
  66% {
    -webkit-transform: translate(-25px, -50px);
    transform: translate(-25px, -50px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
@keyframes ball-triangle-path-3 {
  33% {
    -webkit-transform: translate(-50px, 0px);
    transform: translate(-50px, 0px);
  }
  66% {
    -webkit-transform: translate(-25px, -50px);
    transform: translate(-25px, -50px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
.ball-triangle-path {
  position: relative;
  -webkit-transform: translate(-29.994px, -37.50938px);
  -ms-transform: translate(-29.994px, -37.50938px);
  transform: translate(-29.994px, -37.50938px);
}
.ball-triangle-path > div:nth-child(1) {
  -webkit-animation-name: ball-triangle-path-1;
  animation-name: ball-triangle-path-1;
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.ball-triangle-path > div:nth-child(2) {
  -webkit-animation-name: ball-triangle-path-2;
  animation-name: ball-triangle-path-2;
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.ball-triangle-path > div:nth-child(3) {
  -webkit-animation-name: ball-triangle-path-3;
  animation-name: ball-triangle-path-3;
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.ball-triangle-path > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 1px solid #fff;
}
.ball-triangle-path > div:nth-of-type(1) {
  top: 50px;
}
.ball-triangle-path > div:nth-of-type(2) {
  left: 25px;
}
.ball-triangle-path > div:nth-of-type(3) {
  top: 50px;
  left: 50px;
}
@-webkit-keyframes ball-pulse-rise-even {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  25% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  75% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ball-pulse-rise-even {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  25% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  75% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes ball-pulse-rise-odd {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  25% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}
@keyframes ball-pulse-rise-odd {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  25% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}
.ball-pulse-rise > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
  animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}
.ball-pulse-rise > div:nth-child(2n) {
  -webkit-animation-name: ball-pulse-rise-even;
  animation-name: ball-pulse-rise-even;
}
.ball-pulse-rise > div:nth-child(2n-1) {
  -webkit-animation-name: ball-pulse-rise-odd;
  animation-name: ball-pulse-rise-odd;
}
@-webkit-keyframes ball-grid-beat {
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ball-grid-beat {
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
.ball-grid-beat {
  width: 57px;
}
.ball-grid-beat > div:nth-child(1) {
  -webkit-animation-delay: -0.07s;
  animation-delay: -0.07s;
  -webkit-animation-duration: 1.53s;
  animation-duration: 1.53s;
}
.ball-grid-beat > div:nth-child(2) {
  -webkit-animation-delay: 0.72s;
  animation-delay: 0.72s;
  -webkit-animation-duration: 0.94s;
  animation-duration: 0.94s;
}
.ball-grid-beat > div:nth-child(3) {
  -webkit-animation-delay: 0.11s;
  animation-delay: 0.11s;
  -webkit-animation-duration: 1.25s;
  animation-duration: 1.25s;
}
.ball-grid-beat > div:nth-child(4) {
  -webkit-animation-delay: 0.13s;
  animation-delay: 0.13s;
  -webkit-animation-duration: 1.01s;
  animation-duration: 1.01s;
}
.ball-grid-beat > div:nth-child(5) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
}
.ball-grid-beat > div:nth-child(6) {
  -webkit-animation-delay: 0.18s;
  animation-delay: 0.18s;
  -webkit-animation-duration: 0.97s;
  animation-duration: 0.97s;
}
.ball-grid-beat > div:nth-child(7) {
  -webkit-animation-delay: -0.09s;
  animation-delay: -0.09s;
  -webkit-animation-duration: 0.67s;
  animation-duration: 0.67s;
}
.ball-grid-beat > div:nth-child(8) {
  -webkit-animation-delay: 0.42s;
  animation-delay: 0.42s;
  -webkit-animation-duration: 0.92s;
  animation-duration: 0.92s;
}
.ball-grid-beat > div:nth-child(9) {
  -webkit-animation-delay: 0.52s;
  animation-delay: 0.52s;
  -webkit-animation-duration: 1.43s;
  animation-duration: 1.43s;
}
.ball-grid-beat > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  float: left;
  -webkit-animation-name: ball-grid-beat;
  animation-name: ball-grid-beat;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}
@-webkit-keyframes ball-grid-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes ball-grid-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.ball-grid-pulse {
  width: 57px;
}
.ball-grid-pulse > div:nth-child(1) {
  -webkit-animation-delay: 0.73s;
  animation-delay: 0.73s;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
}
.ball-grid-pulse > div:nth-child(2) {
  -webkit-animation-delay: 0.32s;
  animation-delay: 0.32s;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
}
.ball-grid-pulse > div:nth-child(3) {
  -webkit-animation-delay: 0.71s;
  animation-delay: 0.71s;
  -webkit-animation-duration: 0.88s;
  animation-duration: 0.88s;
}
.ball-grid-pulse > div:nth-child(4) {
  -webkit-animation-delay: 0.62s;
  animation-delay: 0.62s;
  -webkit-animation-duration: 1.06s;
  animation-duration: 1.06s;
}
.ball-grid-pulse > div:nth-child(5) {
  -webkit-animation-delay: 0.31s;
  animation-delay: 0.31s;
  -webkit-animation-duration: 0.62s;
  animation-duration: 0.62s;
}
.ball-grid-pulse > div:nth-child(6) {
  -webkit-animation-delay: -0.14s;
  animation-delay: -0.14s;
  -webkit-animation-duration: 1.48s;
  animation-duration: 1.48s;
}
.ball-grid-pulse > div:nth-child(7) {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
  -webkit-animation-duration: 1.47s;
  animation-duration: 1.47s;
}
.ball-grid-pulse > div:nth-child(8) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-duration: 1.49s;
  animation-duration: 1.49s;
}
.ball-grid-pulse > div:nth-child(9) {
  -webkit-animation-delay: 0.73s;
  animation-delay: 0.73s;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
}
.ball-grid-pulse > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  float: left;
  -webkit-animation-name: ball-grid-pulse;
  animation-name: ball-grid-pulse;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}
@-webkit-keyframes ball-spin-fade-loader {
  50% {
    opacity: 0.3;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ball-spin-fade-loader {
  50% {
    opacity: 0.3;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.ball-spin-fade-loader {
  position: relative;
  top: -10px;
  left: -10px;
}
.ball-spin-fade-loader > div:nth-child(1) {
  top: 25px;
  left: 0;
  -webkit-animation: ball-spin-fade-loader 1s -0.96s infinite linear;
  animation: ball-spin-fade-loader 1s -0.96s infinite linear;
}
.ball-spin-fade-loader > div:nth-child(2) {
  top: 17.04545px;
  left: 17.04545px;
  -webkit-animation: ball-spin-fade-loader 1s -0.84s infinite linear;
  animation: ball-spin-fade-loader 1s -0.84s infinite linear;
}
.ball-spin-fade-loader > div:nth-child(3) {
  top: 0;
  left: 25px;
  -webkit-animation: ball-spin-fade-loader 1s -0.72s infinite linear;
  animation: ball-spin-fade-loader 1s -0.72s infinite linear;
}
.ball-spin-fade-loader > div:nth-child(4) {
  top: -17.04545px;
  left: 17.04545px;
  -webkit-animation: ball-spin-fade-loader 1s -0.6s infinite linear;
  animation: ball-spin-fade-loader 1s -0.6s infinite linear;
}
.ball-spin-fade-loader > div:nth-child(5) {
  top: -25px;
  left: 0;
  -webkit-animation: ball-spin-fade-loader 1s -0.48s infinite linear;
  animation: ball-spin-fade-loader 1s -0.48s infinite linear;
}
.ball-spin-fade-loader > div:nth-child(6) {
  top: -17.04545px;
  left: -17.04545px;
  -webkit-animation: ball-spin-fade-loader 1s -0.36s infinite linear;
  animation: ball-spin-fade-loader 1s -0.36s infinite linear;
}
.ball-spin-fade-loader > div:nth-child(7) {
  top: 0;
  left: -25px;
  -webkit-animation: ball-spin-fade-loader 1s -0.24s infinite linear;
  animation: ball-spin-fade-loader 1s -0.24s infinite linear;
}
.ball-spin-fade-loader > div:nth-child(8) {
  top: 17.04545px;
  left: -17.04545px;
  -webkit-animation: ball-spin-fade-loader 1s -0.12s infinite linear;
  animation: ball-spin-fade-loader 1s -0.12s infinite linear;
}
.ball-spin-fade-loader > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
}
@-webkit-keyframes ball-spin-loader {
  75% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ball-spin-loader {
  75% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
.ball-spin-loader {
  position: relative;
}
.ball-spin-loader > span:nth-child(1) {
  top: 45px;
  left: 0;
  -webkit-animation: ball-spin-loader 2s 0.9s infinite linear;
  animation: ball-spin-loader 2s 0.9s infinite linear;
}
.ball-spin-loader > span:nth-child(2) {
  top: 30.68182px;
  left: 30.68182px;
  -webkit-animation: ball-spin-loader 2s 1.8s infinite linear;
  animation: ball-spin-loader 2s 1.8s infinite linear;
}
.ball-spin-loader > span:nth-child(3) {
  top: 0;
  left: 45px;
  -webkit-animation: ball-spin-loader 2s 2.7s infinite linear;
  animation: ball-spin-loader 2s 2.7s infinite linear;
}
.ball-spin-loader > span:nth-child(4) {
  top: -30.68182px;
  left: 30.68182px;
  -webkit-animation: ball-spin-loader 2s 3.6s infinite linear;
  animation: ball-spin-loader 2s 3.6s infinite linear;
}
.ball-spin-loader > span:nth-child(5) {
  top: -45px;
  left: 0;
  -webkit-animation: ball-spin-loader 2s 4.5s infinite linear;
  animation: ball-spin-loader 2s 4.5s infinite linear;
}
.ball-spin-loader > span:nth-child(6) {
  top: -30.68182px;
  left: -30.68182px;
  -webkit-animation: ball-spin-loader 2s 5.4s infinite linear;
  animation: ball-spin-loader 2s 5.4s infinite linear;
}
.ball-spin-loader > span:nth-child(7) {
  top: 0;
  left: -45px;
  -webkit-animation: ball-spin-loader 2s 6.3s infinite linear;
  animation: ball-spin-loader 2s 6.3s infinite linear;
}
.ball-spin-loader > span:nth-child(8) {
  top: 30.68182px;
  left: -30.68182px;
  -webkit-animation: ball-spin-loader 2s 7.2s infinite linear;
  animation: ball-spin-loader 2s 7.2s infinite linear;
}
.ball-spin-loader > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background: green;
}
@-webkit-keyframes ball-zig {
  33% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  66% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes ball-zig {
  33% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  66% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@-webkit-keyframes ball-zag {
  33% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  66% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes ball-zag {
  33% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  66% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.ball-zig-zag {
  position: relative;
  -webkit-transform: translate(-15px, -15px);
  -ms-transform: translate(-15px, -15px);
  transform: translate(-15px, -15px);
}
.ball-zig-zag > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  margin-left: 15px;
  top: 4px;
  left: -7px;
}
.ball-zig-zag > div:first-child {
  -webkit-animation: ball-zig 0.7s 0s infinite linear;
  animation: ball-zig 0.7s 0s infinite linear;
}
.ball-zig-zag > div:last-child {
  -webkit-animation: ball-zag 0.7s 0s infinite linear;
  animation: ball-zag 0.7s 0s infinite linear;
}
@-webkit-keyframes ball-zig-deflect {
  17% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  34% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  67% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  84% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes ball-zig-deflect {
  17% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  34% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  67% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  84% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@-webkit-keyframes ball-zag-deflect {
  17% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  34% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  67% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  84% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes ball-zag-deflect {
  17% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  34% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  67% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  84% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.ball-zig-zag-deflect {
  position: relative;
  -webkit-transform: translate(-15px, -15px);
  -ms-transform: translate(-15px, -15px);
  transform: translate(-15px, -15px);
}
.ball-zig-zag-deflect > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  margin-left: 15px;
  top: 4px;
  left: -7px;
}
.ball-zig-zag-deflect > div:first-child {
  -webkit-animation: ball-zig-deflect 1.5s 0s infinite linear;
  animation: ball-zig-deflect 1.5s 0s infinite linear;
}
.ball-zig-zag-deflect > div:last-child {
  -webkit-animation: ball-zag-deflect 1.5s 0s infinite linear;
  animation: ball-zag-deflect 1.5s 0s infinite linear;
}
/**
 * Lines
 */
@-webkit-keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }
  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}
@keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }
  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}
.line-scale > div:nth-child(1) {
  -webkit-animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.line-scale > div:nth-child(2) {
  -webkit-animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.line-scale > div:nth-child(3) {
  -webkit-animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.line-scale > div:nth-child(4) {
  -webkit-animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.line-scale > div:nth-child(5) {
  -webkit-animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.line-scale > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
}
@-webkit-keyframes line-scale-party {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes line-scale-party {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.line-scale-party > div:nth-child(1) {
  -webkit-animation-delay: 0.23s;
  animation-delay: 0.23s;
  -webkit-animation-duration: 1.1s;
  animation-duration: 1.1s;
}
.line-scale-party > div:nth-child(2) {
  -webkit-animation-delay: 0.09s;
  animation-delay: 0.09s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.line-scale-party > div:nth-child(3) {
  -webkit-animation-delay: 0.44s;
  animation-delay: 0.44s;
  -webkit-animation-duration: 0.65s;
  animation-duration: 0.65s;
}
.line-scale-party > div:nth-child(4) {
  -webkit-animation-delay: -0.12s;
  animation-delay: -0.12s;
  -webkit-animation-duration: 1.01s;
  animation-duration: 1.01s;
}
.line-scale-party > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation-name: line-scale-party;
  animation-name: line-scale-party;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}
@-webkit-keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }
  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}
@keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }
  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}
.line-scale-pulse-out {
  display: flex;
}
.line-scale-pulse-out > div {
  background-color: #CCCCCC;
  width: 3px;
  height: 35px;
  border-radius: 1.5px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
  animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
}
.line-scale-pulse-out > div:nth-child(2),
.line-scale-pulse-out > div:nth-child(4) {
  -webkit-animation-delay: -0.4s !important;
  animation-delay: -0.4s !important;
}
.line-scale-pulse-out > div:nth-child(1),
.line-scale-pulse-out > div:nth-child(5) {
  -webkit-animation-delay: -0.2s !important;
  animation-delay: -0.2s !important;
}
@-webkit-keyframes line-scale-pulse-out-rapid {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
  80% {
    -webkit-transform: scaley(0.3);
    transform: scaley(0.3);
  }
  90% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}
@keyframes line-scale-pulse-out-rapid {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
  80% {
    -webkit-transform: scaley(0.3);
    transform: scaley(0.3);
  }
  90% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}
.line-scale-pulse-out-rapid > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
  animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
}
.line-scale-pulse-out-rapid > div:nth-child(2),
.line-scale-pulse-out-rapid > div:nth-child(4) {
  -webkit-animation-delay: -0.25s !important;
  animation-delay: -0.25s !important;
}
.line-scale-pulse-out-rapid > div:nth-child(1),
.line-scale-pulse-out-rapid > div:nth-child(5) {
  -webkit-animation-delay: 0s !important;
  animation-delay: 0s !important;
}
@-webkit-keyframes line-spin-fade-loader {
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@keyframes line-spin-fade-loader {
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
.line-spin-fade-loader {
  position: relative;
  top: -10px;
  left: -4px;
}
.line-spin-fade-loader > div:nth-child(1) {
  top: 20px;
  left: 0;
  -webkit-animation: line-spin-fade-loader 1.2s -0.84s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.84s infinite ease-in-out;
}
.line-spin-fade-loader > div:nth-child(2) {
  top: 13.63636px;
  left: 13.63636px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: line-spin-fade-loader 1.2s -0.72s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.72s infinite ease-in-out;
}
.line-spin-fade-loader > div:nth-child(3) {
  top: 0;
  left: 20px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-animation: line-spin-fade-loader 1.2s -0.6s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.6s infinite ease-in-out;
}
.line-spin-fade-loader > div:nth-child(4) {
  top: -13.63636px;
  left: 13.63636px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: line-spin-fade-loader 1.2s -0.48s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.48s infinite ease-in-out;
}
.line-spin-fade-loader > div:nth-child(5) {
  top: -20px;
  left: 0;
  -webkit-animation: line-spin-fade-loader 1.2s -0.36s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.36s infinite ease-in-out;
}
.line-spin-fade-loader > div:nth-child(6) {
  top: -13.63636px;
  left: -13.63636px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: line-spin-fade-loader 1.2s -0.24s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.24s infinite ease-in-out;
}
.line-spin-fade-loader > div:nth-child(7) {
  top: 0;
  left: -20px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-animation: line-spin-fade-loader 1.2s -0.12s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.12s infinite ease-in-out;
}
.line-spin-fade-loader > div:nth-child(8) {
  top: 13.63636px;
  left: -13.63636px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out;
}
.line-spin-fade-loader > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  width: 5px;
  height: 15px;
}
/**
 * Misc
 */
@-webkit-keyframes triangle-skew-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
}
@keyframes triangle-skew-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
}
.triangle-skew-spin > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #fff;
  -webkit-animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}
@-webkit-keyframes square-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
}
@keyframes square-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
}
.square-spin > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  width: 50px;
  height: 50px;
  background: #fff;
  border: 1px solid red;
  -webkit-animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}
@-webkit-keyframes rotate_pacman_half_up {
  0% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@keyframes rotate_pacman_half_up {
  0% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@-webkit-keyframes rotate_pacman_half_down {
  0% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes rotate_pacman_half_down {
  0% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@-webkit-keyframes pacman-balls {
  75% {
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate(-100px, -6.25px);
    transform: translate(-100px, -6.25px);
  }
}
@keyframes pacman-balls {
  75% {
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate(-100px, -6.25px);
    transform: translate(-100px, -6.25px);
  }
}
.pacman {
  position: relative;
}
.pacman > div:nth-child(2) {
  -webkit-animation: pacman-balls 1s -0.99s infinite linear;
  animation: pacman-balls 1s -0.99s infinite linear;
}
.pacman > div:nth-child(3) {
  -webkit-animation: pacman-balls 1s -0.66s infinite linear;
  animation: pacman-balls 1s -0.66s infinite linear;
}
.pacman > div:nth-child(4) {
  -webkit-animation: pacman-balls 1s -0.33s infinite linear;
  animation: pacman-balls 1s -0.33s infinite linear;
}
.pacman > div:nth-child(5) {
  -webkit-animation: pacman-balls 1s 0s infinite linear;
  animation: pacman-balls 1s 0s infinite linear;
}
.pacman > div:first-of-type {
  width: 0px;
  height: 0px;
  border-right: 25px solid transparent;
  border-top: 25px solid #fff;
  border-left: 25px solid #fff;
  border-bottom: 25px solid #fff;
  border-radius: 25px;
  -webkit-animation: rotate_pacman_half_up 0.5s 0s infinite;
  animation: rotate_pacman_half_up 0.5s 0s infinite;
  position: relative;
  left: -30px;
}
.pacman > div:nth-child(2) {
  width: 0px;
  height: 0px;
  border-right: 25px solid transparent;
  border-top: 25px solid #fff;
  border-left: 25px solid #fff;
  border-bottom: 25px solid #fff;
  border-radius: 25px;
  -webkit-animation: rotate_pacman_half_down 0.5s 0s infinite;
  animation: rotate_pacman_half_down 0.5s 0s infinite;
  margin-top: -50px;
  position: relative;
  left: -30px;
}
.pacman > div:nth-child(3),
.pacman > div:nth-child(4),
.pacman > div:nth-child(5),
.pacman > div:nth-child(6) {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  width: 10px;
  height: 10px;
  position: absolute;
  -webkit-transform: translate(0, -6.25px);
  -ms-transform: translate(0, -6.25px);
  transform: translate(0, -6.25px);
  top: 25px;
  left: 70px;
}
@-webkit-keyframes cube-transition {
  25% {
    -webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
    transform: translateX(50px) scale(0.5) rotate(-90deg);
  }
  50% {
    -webkit-transform: translate(50px, 50px) rotate(-180deg);
    transform: translate(50px, 50px) rotate(-180deg);
  }
  75% {
    -webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
    transform: translateY(50px) scale(0.5) rotate(-270deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes cube-transition {
  25% {
    -webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
    transform: translateX(50px) scale(0.5) rotate(-90deg);
  }
  50% {
    -webkit-transform: translate(50px, 50px) rotate(-180deg);
    transform: translate(50px, 50px) rotate(-180deg);
  }
  75% {
    -webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
    transform: translateY(50px) scale(0.5) rotate(-270deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
.cube-transition {
  position: relative;
  -webkit-transform: translate(-25px, -25px);
  -ms-transform: translate(-25px, -25px);
  transform: translate(-25px, -25px);
}
.cube-transition > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  width: 10px;
  height: 10px;
  position: absolute;
  top: -5px;
  left: -5px;
  background-color: #fff;
  -webkit-animation: cube-transition 1.6s 0s infinite ease-in-out;
  animation: cube-transition 1.6s 0s infinite ease-in-out;
}
.cube-transition > div:last-child {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
@-webkit-keyframes spin-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.semi-circle-spin {
  position: relative;
  width: 35px;
  height: 35px;
  overflow: hidden;
}
.semi-circle-spin > div {
  position: absolute;
  border-width: 0px;
  border-radius: 100%;
  -webkit-animation: spin-rotate 0.6s 0s infinite linear;
  animation: spin-rotate 0.6s 0s infinite linear;
  background-image: -webkit-linear-gradient(transparent 0%, transparent 70%, #fff 30%, #fff 100%);
  background-image: linear-gradient(transparent 0%, transparent 70%, #fff 30%, #fff 100%);
  width: 100%;
  height: 100%;
}
.bootstrap-datetimepicker-widget {
  list-style: none;
}
.bootstrap-datetimepicker-widget.dropdown-menu {
  margin: 2px 0;
  padding: 4px;
  width: 19em;
}
@media (min-width: 1200px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 1200px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 1200px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
.bootstrap-datetimepicker-widget.dropdown-menu:before,
.bootstrap-datetimepicker-widget.dropdown-menu:after {
  content: '';
  display: inline-block;
  position: absolute;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  top: -7px;
  left: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  top: -6px;
  left: 8px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  bottom: -7px;
  left: 6px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
  bottom: -6px;
  left: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
  left: auto;
  right: 6px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
  left: auto;
  right: 7px;
}
.bootstrap-datetimepicker-widget .list-unstyled {
  margin: 0;
}
.bootstrap-datetimepicker-widget a[data-action] {
  padding: 6px 0;
}
.bootstrap-datetimepicker-widget a[data-action]:active {
  box-shadow: none;
}
.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
  width: 54px;
  font-weight: bold;
  font-size: 1em;
  margin: 0;
}
.bootstrap-datetimepicker-widget button[data-action] {
  padding: 6px;
}
.bootstrap-datetimepicker-widget .btn[data-action='incrementHours']::after {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: 'Increment Hours';
}
.bootstrap-datetimepicker-widget .btn[data-action='incrementMinutes']::after {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: 'Increment Minutes';
}
.bootstrap-datetimepicker-widget .btn[data-action='decrementHours']::after {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: 'Decrement Hours';
}
.bootstrap-datetimepicker-widget .btn[data-action='decrementMinutes']::after {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: 'Decrement Minutes';
}
.bootstrap-datetimepicker-widget .btn[data-action='showHours']::after {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: 'Show Hours';
}
.bootstrap-datetimepicker-widget .btn[data-action='showMinutes']::after {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: 'Show Minutes';
}
.bootstrap-datetimepicker-widget .btn[data-action='togglePeriod']::after {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: 'Toggle AM/PM';
}
.bootstrap-datetimepicker-widget .btn[data-action='clear']::after {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: 'Clear the picker';
}
.bootstrap-datetimepicker-widget .btn[data-action='today']::after {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: 'Set the date to today';
}
.bootstrap-datetimepicker-widget .picker-switch {
  text-align: center;
}
.bootstrap-datetimepicker-widget .picker-switch::after {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: 'Toggle Date and Time Screens';
}
.bootstrap-datetimepicker-widget .picker-switch td {
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
  line-height: inherit;
}
.bootstrap-datetimepicker-widget .picker-switch td span {
  line-height: 2.5;
  height: 2.5em;
  width: 100%;
}
.bootstrap-datetimepicker-widget table {
  width: 100%;
  margin: 0;
}
.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
  text-align: center;
  border-radius: 0px;
}
.bootstrap-datetimepicker-widget table th {
  height: 20px;
  line-height: 20px;
  width: 20px;
}
.bootstrap-datetimepicker-widget table th.picker-switch {
  width: 145px;
}
.bootstrap-datetimepicker-widget table th.disabled,
.bootstrap-datetimepicker-widget table th.disabled:hover {
  background: none;
  color: #CCCCCC;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table th.prev::after {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: 'Previous Month';
}
.bootstrap-datetimepicker-widget table th.next::after {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: 'Next Month';
}
.bootstrap-datetimepicker-widget table thead tr:first-child th {
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
  background: #EEE;
}
.bootstrap-datetimepicker-widget table td {
  height: 54px;
  line-height: 54px;
  width: 54px;
}
.bootstrap-datetimepicker-widget table td.cw {
  font-size: 0.8em;
  height: 20px;
  line-height: 20px;
  color: #CCCCCC;
}
.bootstrap-datetimepicker-widget table td.day {
  height: 20px;
  line-height: 20px;
  width: 20px;
}
.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover {
  background: #EEE;
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table td.old,
.bootstrap-datetimepicker-widget table td.new {
  color: #CCCCCC;
}
.bootstrap-datetimepicker-widget table td.today {
  position: relative;
}
.bootstrap-datetimepicker-widget table td.today:before {
  content: '';
  display: inline-block;
  border: solid transparent;
  border-width: 0 0 7px 7px;
  border-bottom-color: #0AB3E5;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}
.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #0AB3E5;
  color: #FFF;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
}
.bootstrap-datetimepicker-widget table td.active.today:before {
  border-bottom-color: #fff;
}
.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:hover {
  background: none;
  color: #CCCCCC;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table td span {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  margin: 2px 1.5px;
  cursor: pointer;
  border-radius: 0px;
}
.bootstrap-datetimepicker-widget table td span:hover {
  background: #EEE;
}
.bootstrap-datetimepicker-widget table td span.active {
  background-color: #0AB3E5;
  color: #FFF;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
}
.bootstrap-datetimepicker-widget table td span.old {
  color: #CCCCCC;
}
.bootstrap-datetimepicker-widget table td span.disabled,
.bootstrap-datetimepicker-widget table td span.disabled:hover {
  background: none;
  color: #CCCCCC;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
  height: 27px;
  line-height: 27px;
}
.bootstrap-datetimepicker-widget.wider {
  width: 21em;
}
.bootstrap-datetimepicker-widget .datepicker-decades .decade {
  line-height: 1.8em !important;
}
.input-group.date .input-group-addon {
  cursor: pointer;
}
/*! ========================================================================
 * Bootstrap Toggle: bootstrap-toggle.css v2.2.0
 * http://www.bootstraptoggle.com
 * ========================================================================
 * Copyright 2014 Min Hur, The New York Times Company
 * Licensed under MIT
 * ======================================================================== */
.checkbox label .toggle,
.checkbox-inline .toggle {
  margin-left: -20px;
  margin-right: 5px;
}
.toggle {
  position: relative;
  overflow: hidden;
}
.toggle input[type='checkbox'] {
  display: none;
}
.toggle-group {
  position: absolute;
  width: 200%;
  top: 0;
  bottom: 0;
  left: 0;
  transition: left 0.35s;
  -webkit-transition: left 0.35s;
  -moz-user-select: none;
  -webkit-user-select: none;
}
.toggle.off .toggle-group {
  left: -100%;
}
.toggle-on {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 50%;
  margin: 0;
  border: 0;
  border-radius: 0;
}
.toggle-off {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
}
.toggle-handle {
  position: relative;
  margin: 0 auto;
  padding-top: 0px;
  padding-bottom: 0px;
  height: 100%;
  width: 0px;
  border-width: 0 1px;
}
.toggle.btn {
  min-width: 59px;
  min-height: 34px;
}
.toggle-on.btn {
  padding-right: 24px;
}
.toggle-off.btn {
  padding-left: 24px;
}
.toggle.btn-lg {
  min-width: 79px;
  min-height: 45px;
}
.toggle-on.btn-lg {
  padding-right: 31px;
}
.toggle-off.btn-lg {
  padding-left: 31px;
}
.toggle-handle.btn-lg {
  width: 40px;
}
.toggle.btn-sm {
  min-width: 50px;
  min-height: 30px;
}
.toggle-on.btn-sm {
  padding-right: 20px;
}
.toggle-off.btn-sm {
  padding-left: 20px;
}
.toggle.btn-xs {
  min-width: 35px;
  min-height: 22px;
}
.toggle-on.btn-xs {
  padding-right: 12px;
}
.toggle-off.btn-xs {
  padding-left: 12px;
}
/*!
 * ui-grid - v3.0.7 - 2015-10-06
 * Copyright (c) 2015 ; License: MIT 
 */
#ui-grid-twbs #ui-grid-twbs .form-horizontal .form-group:before,
#ui-grid-twbs #ui-grid-twbs .form-horizontal .form-group:after,
#ui-grid-twbs #ui-grid-twbs .btn-toolbar:before,
#ui-grid-twbs #ui-grid-twbs .btn-toolbar:after,
#ui-grid-twbs #ui-grid-twbs .btn-group-vertical > .btn-group:before,
#ui-grid-twbs #ui-grid-twbs .btn-group-vertical > .btn-group:after {
  content: ' ';
  display: table;
}
#ui-grid-twbs #ui-grid-twbs .form-horizontal .form-group:after,
#ui-grid-twbs #ui-grid-twbs .btn-toolbar:after,
#ui-grid-twbs #ui-grid-twbs .btn-group-vertical > .btn-group:after {
  clear: both;
}
.ui-grid {
  border: 1px solid #d4d4d4;
  box-sizing: content-box;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -o-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.ui-grid-vertical-bar {
  position: absolute;
  right: 0;
  width: 0;
}
.ui-grid-header-cell:not(:last-child) .ui-grid-vertical-bar,
.ui-grid-cell:not(:last-child) .ui-grid-vertical-bar {
  width: 1px;
}
.ui-grid-scrollbar-placeholder {
  background-color: transparent;
}
.ui-grid-header-cell:not(:last-child) .ui-grid-vertical-bar {
  background-color: #d4d4d4;
}
.ui-grid-cell:not(:last-child) .ui-grid-vertical-bar {
  background-color: #d4d4d4;
}
.ui-grid-header-cell:last-child .ui-grid-vertical-bar {
  right: -1px;
  width: 1px;
  background-color: #d4d4d4;
}
.ui-grid-clearfix:before,
.ui-grid-clearfix:after {
  content: '';
  display: table;
}
.ui-grid-clearfix:after {
  clear: both;
}
.ui-grid-invisible {
  visibility: hidden;
}
.ui-grid-contents-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}
.ui-grid-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.ui-grid-top-panel-background {
  background: #f3f3f3;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(1, #ffffff));
  background: -ms-linear-gradient(bottom, #eeeeee, #ffffff);
  background: -moz-linear-gradient(center bottom, #eeeeee 0%, #ffffff 100%);
  background: -o-linear-gradient(#ffffff, #eeeeee);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
}
.ui-grid-header {
  border-bottom: 1px solid #d4d4d4;
  box-sizing: border-box;
}
.ui-grid-top-panel {
  position: relative;
  overflow: hidden;
  font-weight: bold;
  background: #f3f3f3;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(1, #ffffff));
  background: -ms-linear-gradient(bottom, #eeeeee, #ffffff);
  background: -moz-linear-gradient(center bottom, #eeeeee 0%, #ffffff 100%);
  background: -o-linear-gradient(#ffffff, #eeeeee);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  -webkit-border-top-right-radius: -1px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: -1px;
  -moz-border-radius-topright: -1px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: -1px;
  border-top-right-radius: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: -1px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.ui-grid-header-viewport {
  overflow: hidden;
}
.ui-grid-header-canvas:before,
.ui-grid-header-canvas:after {
  content: '';
  display: table;
  line-height: 0;
}
.ui-grid-header-canvas:after {
  clear: both;
}
.ui-grid-header-cell-wrapper {
  position: relative;
  display: table;
  box-sizing: border-box;
  height: 100%;
}
.ui-grid-header-cell-row {
  display: table-row;
  position: relative;
}
.ui-grid-header-cell {
  position: relative;
  box-sizing: border-box;
  background-color: inherit;
  border-right: 1px solid;
  border-color: #d4d4d4;
  display: table-cell;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 0;
}
.ui-grid-header-cell:last-child {
  border-right: 0;
}
.ui-grid-header-cell .sortable {
  cursor: pointer;
}
.ui-grid-header-cell .ui-grid-sort-priority-number {
  margin-left: -8px;
}
.ui-grid-header .ui-grid-vertical-bar {
  top: 0;
  bottom: 0;
}
.ui-grid-column-menu-button {
  position: absolute;
  right: 1px;
  top: 0;
}
.ui-grid-column-menu-button .ui-grid-icon-angle-down {
  vertical-align: sub;
}
.ui-grid-column-menu-button-last-col {
  margin-right: 25px;
}
.ui-grid-column-menu {
  position: absolute;
}
/* Slide up/down animations */
.ui-grid-column-menu .ui-grid-menu .ui-grid-menu-mid.ng-hide-add,
.ui-grid-column-menu .ui-grid-menu .ui-grid-menu-mid.ng-hide-remove {
  -webkit-transition: all 0.05s linear;
  -moz-transition: all 0.05s linear;
  -o-transition: all 0.05s linear;
  transition: all 0.05s linear;
  display: block !important;
}
.ui-grid-column-menu .ui-grid-menu .ui-grid-menu-mid.ng-hide-add.ng-hide-add-active,
.ui-grid-column-menu .ui-grid-menu .ui-grid-menu-mid.ng-hide-remove {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
.ui-grid-column-menu .ui-grid-menu .ui-grid-menu-mid.ng-hide-add,
.ui-grid-column-menu .ui-grid-menu .ui-grid-menu-mid.ng-hide-remove.ng-hide-remove-active {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
/* Slide up/down animations */
.ui-grid-menu-button .ui-grid-menu .ui-grid-menu-mid.ng-hide-add,
.ui-grid-menu-button .ui-grid-menu .ui-grid-menu-mid.ng-hide-remove {
  -webkit-transition: all 0.05s linear;
  -moz-transition: all 0.05s linear;
  -o-transition: all 0.05s linear;
  transition: all 0.05s linear;
  display: block !important;
}
.ui-grid-menu-button .ui-grid-menu .ui-grid-menu-mid.ng-hide-add.ng-hide-add-active,
.ui-grid-menu-button .ui-grid-menu .ui-grid-menu-mid.ng-hide-remove {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
.ui-grid-menu-button .ui-grid-menu .ui-grid-menu-mid.ng-hide-add,
.ui-grid-menu-button .ui-grid-menu .ui-grid-menu-mid.ng-hide-remove.ng-hide-remove-active {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.ui-grid-filter-container {
  padding: 4px 10px;
  position: relative;
}
.ui-grid-filter-container .ui-grid-filter-button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.ui-grid-filter-container .ui-grid-filter-button [class^='ui-grid-icon'] {
  position: absolute;
  top: 50%;
  line-height: 32px;
  margin-top: -16px;
  right: 10px;
  opacity: 0.66;
}
.ui-grid-filter-container .ui-grid-filter-button [class^='ui-grid-icon']:hover {
  opacity: 1;
}
.ui-grid-filter-container .ui-grid-filter-button-select {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.ui-grid-filter-container .ui-grid-filter-button-select [class^='ui-grid-icon'] {
  position: absolute;
  top: 50%;
  line-height: 32px;
  margin-top: -16px;
  right: 0px;
  opacity: 0.66;
}
.ui-grid-filter-container .ui-grid-filter-button-select [class^='ui-grid-icon']:hover {
  opacity: 1;
}
input[type='text'].ui-grid-filter-input {
  padding: 0;
  margin: 0;
  border: 0;
  width: 100%;
  border: 1px solid #d4d4d4;
  -webkit-border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
input[type='text'].ui-grid-filter-input:hover {
  border: 1px solid #d4d4d4;
}
select.ui-grid-filter-select {
  padding: 0;
  margin: 0;
  border: 0;
  width: 90%;
  border: 1px solid #d4d4d4;
  -webkit-border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
select.ui-grid-filter-select:hover {
  border: 1px solid #d4d4d4;
}
.ui-grid-filter-cancel-button-hidden select.ui-grid-filter-select {
  width: 100%;
}
.ui-grid-render-container {
  position: inherit;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 0px;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.ui-grid-render-container:focus {
  outline: none;
}
.ui-grid-viewport {
  min-height: 20px;
  position: relative;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.ui-grid-viewport:focus {
  outline: none !important;
}
.ui-grid-canvas {
  position: relative;
  padding-top: 1px;
}
.ui-grid-row:nth-child(odd) .ui-grid-cell {
  background-color: #fdfdfd;
}
.ui-grid-row:nth-child(even) .ui-grid-cell {
  background-color: #f3f3f3;
}
.ui-grid-row:last-child .ui-grid-cell {
  border-bottom-color: #d4d4d4;
  border-bottom-style: solid;
}
.ui-grid-no-row-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 10%;
  background: #f3f3f3;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(1, #ffffff));
  background: -ms-linear-gradient(bottom, #eeeeee, #ffffff);
  background: -moz-linear-gradient(center bottom, #eeeeee 0%, #ffffff 100%);
  background: -o-linear-gradient(#ffffff, #eeeeee);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  -webkit-border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #d4d4d4;
  font-size: 2em;
  text-align: center;
}
.ui-grid-no-row-overlay > * {
  position: absolute;
  display: table;
  margin: auto 0;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.66;
}
.ui-grid-cell {
  overflow: hidden;
  float: left;
  background-color: inherit;
  border-right: 1px solid;
  border-color: #d4d4d4;
  box-sizing: border-box;
}
.ui-grid-cell:last-child {
  border-right: 0;
}
.ui-grid-cell-contents {
  padding: 5px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 100%;
}
.ui-grid-cell-contents-hidden {
  visibility: hidden;
  width: 0;
  height: 0;
  display: none;
}
.ui-grid-row .ui-grid-cell.ui-grid-row-header-cell {
  background-color: #f0f0ee;
  border-bottom: solid 1px #d4d4d4;
}
.ui-grid-footer-panel-background {
  background: #f3f3f3;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(1, #ffffff));
  background: -ms-linear-gradient(bottom, #eeeeee, #ffffff);
  background: -moz-linear-gradient(center bottom, #eeeeee 0%, #ffffff 100%);
  background: -o-linear-gradient(#ffffff, #eeeeee);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
}
.ui-grid-footer-panel {
  position: relative;
  border-bottom: 1px solid #d4d4d4;
  border-top: 1px solid #d4d4d4;
  overflow: hidden;
  font-weight: bold;
  background: #f3f3f3;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(1, #ffffff));
  background: -ms-linear-gradient(bottom, #eeeeee, #ffffff);
  background: -moz-linear-gradient(center bottom, #eeeeee 0%, #ffffff 100%);
  background: -o-linear-gradient(#ffffff, #eeeeee);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  -webkit-border-top-right-radius: -1px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: -1px;
  -moz-border-radius-topright: -1px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: -1px;
  border-top-right-radius: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: -1px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.ui-grid-grid-footer {
  float: left;
  width: 100%;
}
.ui-grid-footer-viewport {
  overflow: hidden;
}
.ui-grid-footer-canvas {
  position: relative;
}
.ui-grid-footer-canvas:before,
.ui-grid-footer-canvas:after {
  content: '';
  display: table;
  line-height: 0;
}
.ui-grid-footer-canvas:after {
  clear: both;
}
.ui-grid-footer-cell-wrapper {
  position: relative;
  display: table;
  box-sizing: border-box;
  height: 100%;
}
.ui-grid-footer-cell-row {
  display: table-row;
}
.ui-grid-footer-cell {
  overflow: hidden;
  background-color: inherit;
  border-right: 1px solid;
  border-color: #d4d4d4;
  box-sizing: border-box;
  display: table-cell;
}
.ui-grid-footer-cell:last-child {
  border-right: 0;
}
input[type='text'].ui-grid-filter-input {
  padding: 0;
  margin: 0;
  border: 0;
  width: 100%;
  border: 1px solid #d4d4d4;
  -webkit-border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
input[type='text'].ui-grid-filter-input:hover {
  border: 1px solid #d4d4d4;
}
.ui-grid-menu-button {
  z-index: 2;
  position: absolute;
  right: 0;
  top: 0;
  background: #f3f3f3;
  border: 1px solid #d4d4d4;
  cursor: pointer;
  height: 31px;
  font-weight: normal;
}
.ui-grid-menu-button .ui-grid-icon-container {
  margin-top: 3px;
}
.ui-grid-menu-button .ui-grid-menu {
  right: 0;
}
.ui-grid-menu-button .ui-grid-menu .ui-grid-menu-mid {
  overflow: scroll;
  max-height: 300px;
  border: 1px solid #d4d4d4;
}
.ui-grid-menu {
  z-index: 2;
  position: absolute;
  padding: 0 10px 20px 10px;
  cursor: pointer;
  box-sizing: border-box;
}
.ui-grid-menu .ui-grid-menu-inner {
  background: #f3f3f3;
  border: 1px solid #d4d4d4;
  position: relative;
  white-space: nowrap;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), inset 0 12px 12px -14px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), inset 0 12px 12px -14px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), inset 0 12px 12px -14px rgba(0, 0, 0, 0.2);
}
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button {
  position: absolute;
  right: 0px;
  top: 0px;
  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.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 1px 1px;
  font-size: 10px;
  line-height: 1;
  border-radius: 2px;
  color: transparent;
  background-color: transparent;
  border-color: transparent;
}
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:active:focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.active:focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:active.focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:hover,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.focus {
  color: #333333;
  text-decoration: none;
}
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:active,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.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);
}
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.disabled,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button[disabled],
fieldset[disabled] .ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}
a.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.disabled,
fieldset[disabled] a.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button {
  pointer-events: none;
}
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.focus {
  color: transparent;
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
}
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:hover {
  color: transparent;
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
}
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:active,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.active,
.open > .dropdown-toggle.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button {
  color: transparent;
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
}
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:active:hover,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.active:hover,
.open > .dropdown-toggle.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:hover,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:active:focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.active:focus,
.open > .dropdown-toggle.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:active.focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.active.focus,
.open > .dropdown-toggle.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.focus {
  color: transparent;
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
}
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:active,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.active,
.open > .dropdown-toggle.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button {
  background-image: none;
}
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.disabled,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button[disabled],
fieldset[disabled] .ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.disabled:hover,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button[disabled]:hover,
fieldset[disabled] .ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:hover,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.disabled:focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button[disabled]:focus,
fieldset[disabled] .ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.disabled.focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button[disabled].focus,
fieldset[disabled] .ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.focus,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.disabled:active,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button[disabled]:active,
fieldset[disabled] .ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button:active,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.disabled.active,
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button[disabled].active,
fieldset[disabled] .ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button.active {
  background-color: transparent;
  border-color: transparent;
}
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button .badge {
  color: transparent;
  background-color: transparent;
}
.ui-grid-menu .ui-grid-menu-inner .ui-grid-menu-close-button > i {
  opacity: 0.75;
  color: black;
}
.ui-grid-menu .ui-grid-menu-inner ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.ui-grid-menu .ui-grid-menu-inner ul li {
  padding: 0px;
}
.ui-grid-menu .ui-grid-menu-inner ul li button {
  min-width: 100%;
  padding: 8px;
  text-align: left;
  background: transparent;
  border: none;
}
.ui-grid-menu .ui-grid-menu-inner ul li button:hover,
.ui-grid-menu .ui-grid-menu-inner ul li button:focus {
  -webkit-box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
}
.ui-grid-menu .ui-grid-menu-inner ul li button.ui-grid-menu-item-active {
  -webkit-box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
  background-color: #cecece;
}
.ui-grid-menu .ui-grid-menu-inner ul li:not(:last-child) > button {
  border-bottom: 1px solid #d4d4d4;
}
.ui-grid-sortarrow {
  right: 5px;
  position: absolute;
  width: 20px;
  top: 0;
  bottom: 0;
  background-position: center;
}
.ui-grid-sortarrow.down {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
@font-face {
  font-family: 'ui-grid';
  src: url(https://assets.xplenty.com/61fe7c98cf912764a069635a93067843.eot);
  src: url(https://assets.xplenty.com/61fe7c98cf912764a069635a93067843.eot#iefix) format('embedded-opentype'), url(https://assets.xplenty.com/ede02af27d6dfe5d4269fb78114316c9.woff) format('woff'), url(https://assets.xplenty.com/ae20d04f334c90a08bc5af5bc80f53d0.ttf) format('truetype'), url(https://assets.xplenty.com/5c0165f3874dd796e630412947c971ee.svg?#ui-grid) format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'ui-grid';
    src: url('../../fonts/../font/ui-grid.svg?12312827#ui-grid') format('svg');
  }
}
*/
[class^='ui-grid-icon']:before,
[class*=' ui-grid-icon']:before {
  font-family: 'ui-grid';
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.ui-grid-icon-blank::before {
  width: 1em;
  content: ' ';
}
/*
* RTL Styles
*/
.ui-grid[dir='rtl'] .ui-grid-header-cell,
.ui-grid[dir='rtl'] .ui-grid-footer-cell,
.ui-grid[dir='rtl'] .ui-grid-cell {
  float: right !important;
}
.ui-grid[dir='rtl'] .ui-grid-column-menu-button {
  position: absolute;
  left: 1px;
  top: 0;
  right: inherit;
}
.ui-grid[dir='rtl'] .ui-grid-cell:first-child,
.ui-grid[dir='rtl'] .ui-grid-header-cell:first-child,
.ui-grid[dir='rtl'] .ui-grid-footer-cell:first-child {
  border-right: 0;
}
.ui-grid[dir='rtl'] .ui-grid-cell:last-child,
.ui-grid[dir='rtl'] .ui-grid-header-cell:last-child {
  border-right: 1px solid #d4d4d4;
  border-left: 0;
}
.ui-grid[dir='rtl'] .ui-grid-header-cell:first-child .ui-grid-vertical-bar,
.ui-grid[dir='rtl'] .ui-grid-footer-cell:first-child .ui-grid-vertical-bar,
.ui-grid[dir='rtl'] .ui-grid-cell:first-child .ui-grid-vertical-bar {
  width: 0;
}
.ui-grid[dir='rtl'] .ui-grid-menu-button {
  z-index: 2;
  position: absolute;
  left: 0;
  right: auto;
  background: #f3f3f3;
  border: 1px solid #d4d4d4;
  cursor: pointer;
  min-height: 27px;
  font-weight: normal;
}
.ui-grid[dir='rtl'] .ui-grid-menu-button .ui-grid-menu {
  left: 0;
  right: auto;
}
.ui-grid[dir='rtl'] .ui-grid-filter-container .ui-grid-filter-button {
  right: initial;
  left: 0;
}
.ui-grid[dir='rtl'] .ui-grid-filter-container .ui-grid-filter-button [class^='ui-grid-icon'] {
  right: initial;
  left: 10px;
}
/*
   Animation example, for spinners
*/
.ui-grid-animate-spin {
  -moz-animation: ui-grid-spin 2s infinite linear;
  -o-animation: ui-grid-spin 2s infinite linear;
  -webkit-animation: ui-grid-spin 2s infinite linear;
  animation: ui-grid-spin 2s infinite linear;
  display: inline-block;
}
@-moz-keyframes ui-grid-spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-webkit-keyframes ui-grid-spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-o-keyframes ui-grid-spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-ms-keyframes ui-grid-spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes ui-grid-spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
/* This file contains variable declarations (do not remove this line) */
/*-- VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
/**
* @section Grid styles
*/
/**
* @section Header styles
*/
/** @description Colors for header gradient */
/**
* @section Grid body styles
*/
/** @description Colors used for row alternation */
/**
* @section Sort arrow colors
*/
/**
* @section Scrollbar styles
*/
/**
* @section font library path
*/
/*-- END VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
/* This file contains variable declarations (do not remove this line) */
/*-- VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
/**
* @section Grid styles
*/
/**
* @section Header styles
*/
/** @description Colors for header gradient */
/**
* @section Grid body styles
*/
/** @description Colors used for row alternation */
/**
* @section Sort arrow colors
*/
/**
* @section Scrollbar styles
*/
/**
* @section font library path
*/
/*-- END VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
#ui-grid-twbs #ui-grid-twbs .form-horizontal .form-group:before,
#ui-grid-twbs #ui-grid-twbs .form-horizontal .form-group:after,
#ui-grid-twbs #ui-grid-twbs .btn-toolbar:before,
#ui-grid-twbs #ui-grid-twbs .btn-toolbar:after,
#ui-grid-twbs #ui-grid-twbs .btn-group-vertical > .btn-group:before,
#ui-grid-twbs #ui-grid-twbs .btn-group-vertical > .btn-group:after {
  content: ' ';
  display: table;
}
#ui-grid-twbs #ui-grid-twbs .form-horizontal .form-group:after,
#ui-grid-twbs #ui-grid-twbs .btn-toolbar:after,
#ui-grid-twbs #ui-grid-twbs .btn-group-vertical > .btn-group:after {
  clear: both;
}
.ui-grid-cell-focus {
  outline: 0;
  background-color: #b3c4c7;
}
.ui-grid-focuser {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.ui-grid-focuser:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.ui-grid-offscreen {
  display: block;
  position: absolute;
  left: -10000px;
  top: -10000px;
  clip: rect(0px, 0px, 0px, 0px);
}
/* This file contains variable declarations (do not remove this line) */
/*-- VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
/**
* @section Grid styles
*/
/**
* @section Header styles
*/
/** @description Colors for header gradient */
/**
* @section Grid body styles
*/
/** @description Colors used for row alternation */
/**
* @section Sort arrow colors
*/
/**
* @section Scrollbar styles
*/
/**
* @section font library path
*/
/*-- END VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
div.ui-grid-cell input {
  border-radius: inherit;
  padding: 0;
  width: 100%;
  color: inherit;
  height: auto;
  font: inherit;
  outline: none;
}
div.ui-grid-cell input:focus {
  color: inherit;
  outline: none;
}
div.ui-grid-cell input[type='checkbox'] {
  margin: 9px 0 0 6px;
  width: auto;
}
div.ui-grid-cell input.ng-invalid {
  border: 1px solid #fc8f8f;
}
div.ui-grid-cell input.ng-valid {
  border: 1px solid #d4d4d4;
}
/* This file contains variable declarations (do not remove this line) */
/*-- VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
/**
* @section Grid styles
*/
/**
* @section Header styles
*/
/** @description Colors for header gradient */
/**
* @section Grid body styles
*/
/** @description Colors used for row alternation */
/**
* @section Sort arrow colors
*/
/**
* @section Scrollbar styles
*/
/**
* @section font library path
*/
/*-- END VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
.expandableRow .ui-grid-row:nth-child(odd) .ui-grid-cell {
  background-color: #fdfdfd;
}
.expandableRow .ui-grid-row:nth-child(even) .ui-grid-cell {
  background-color: #f3f3f3;
}
.ui-grid-cell.ui-grid-disable-selection.ui-grid-row-header-cell {
  pointer-events: none;
}
.ui-grid-expandable-buttons-cell i {
  pointer-events: all;
}
.scrollFiller {
  float: left;
  border: 1px solid #d4d4d4;
}
/* This file contains variable declarations (do not remove this line) */
/*-- VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
/**
* @section Grid styles
*/
/**
* @section Header styles
*/
/** @description Colors for header gradient */
/**
* @section Grid body styles
*/
/** @description Colors used for row alternation */
/**
* @section Sort arrow colors
*/
/**
* @section Scrollbar styles
*/
/**
* @section font library path
*/
/*-- END VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
/* This file contains variable declarations (do not remove this line) */
/*-- VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
/**
* @section Grid styles
*/
/**
* @section Header styles
*/
/** @description Colors for header gradient */
/**
* @section Grid body styles
*/
/** @description Colors used for row alternation */
/**
* @section Sort arrow colors
*/
/**
* @section Scrollbar styles
*/
/**
* @section font library path
*/
/*-- END VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
.ui-grid-tree-header-row {
  font-weight: bold !important;
}
/* This file contains variable declarations (do not remove this line) */
/*-- VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
/**
* @section Grid styles
*/
/**
* @section Header styles
*/
/** @description Colors for header gradient */
/**
* @section Grid body styles
*/
/** @description Colors used for row alternation */
/**
* @section Sort arrow colors
*/
/**
* @section Scrollbar styles
*/
/**
* @section font library path
*/
/*-- END VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
/* This file contains variable declarations (do not remove this line) */
/*-- VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
/**
* @section Grid styles
*/
/**
* @section Header styles
*/
/** @description Colors for header gradient */
/**
* @section Grid body styles
*/
/** @description Colors used for row alternation */
/**
* @section Sort arrow colors
*/
/**
* @section Scrollbar styles
*/
/**
* @section font library path
*/
/*-- END VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
.movingColumn {
  position: absolute;
  top: 0;
  border: 1px solid #d4d4d4;
  box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
}
.movingColumn .ui-grid-icon-angle-down {
  display: none;
}
/* This file contains variable declarations (do not remove this line) */
/*-- VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
/**
* @section Grid styles
*/
/**
* @section Header styles
*/
/** @description Colors for header gradient */
/**
* @section Grid body styles
*/
/** @description Colors used for row alternation */
/**
* @section Sort arrow colors
*/
/**
* @section Scrollbar styles
*/
/**
* @section font library path
*/
/*-- END VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
#ui-grid-twbs #ui-grid-twbs .form-horizontal .form-group:before,
#ui-grid-twbs #ui-grid-twbs .form-horizontal .form-group:after,
#ui-grid-twbs #ui-grid-twbs .btn-toolbar:before,
#ui-grid-twbs #ui-grid-twbs .btn-toolbar:after,
#ui-grid-twbs #ui-grid-twbs .btn-group-vertical > .btn-group:before,
#ui-grid-twbs #ui-grid-twbs .btn-group-vertical > .btn-group:after {
  content: ' ';
  display: table;
}
#ui-grid-twbs #ui-grid-twbs .form-horizontal .form-group:after,
#ui-grid-twbs #ui-grid-twbs .btn-toolbar:after,
#ui-grid-twbs #ui-grid-twbs .btn-group-vertical > .btn-group:after {
  clear: both;
}
.ui-grid-pager-panel {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-top: 3px;
  padding-bottom: 3px;
}
.ui-grid-pager-container {
  float: left;
}
.ui-grid-pager-control {
  margin-right: 10px;
  margin-left: 10px;
  min-width: 135px;
  float: left;
}
.ui-grid-pager-control button {
  height: 25px;
  min-width: 26px;
  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.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #eeeeee;
  background-color: #f3f3f3;
  border-color: #cccccc;
}
.ui-grid-pager-control button:focus,
.ui-grid-pager-control button:active:focus,
.ui-grid-pager-control button.active:focus,
.ui-grid-pager-control button.focus,
.ui-grid-pager-control button:active.focus,
.ui-grid-pager-control button.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.ui-grid-pager-control button:hover,
.ui-grid-pager-control button:focus,
.ui-grid-pager-control button.focus {
  color: #333333;
  text-decoration: none;
}
.ui-grid-pager-control button:active,
.ui-grid-pager-control button.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);
}
.ui-grid-pager-control button.disabled,
.ui-grid-pager-control button[disabled],
fieldset[disabled] .ui-grid-pager-control button {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}
a.ui-grid-pager-control button.disabled,
fieldset[disabled] a.ui-grid-pager-control button {
  pointer-events: none;
}
.ui-grid-pager-control button:focus,
.ui-grid-pager-control button.focus {
  color: #eeeeee;
  background-color: #dadada;
  border-color: #8c8c8c;
}
.ui-grid-pager-control button:hover {
  color: #eeeeee;
  background-color: #dadada;
  border-color: #adadad;
}
.ui-grid-pager-control button:active,
.ui-grid-pager-control button.active,
.open > .dropdown-toggle.ui-grid-pager-control button {
  color: #eeeeee;
  background-color: #dadada;
  border-color: #adadad;
}
.ui-grid-pager-control button:active:hover,
.ui-grid-pager-control button.active:hover,
.open > .dropdown-toggle.ui-grid-pager-control button:hover,
.ui-grid-pager-control button:active:focus,
.ui-grid-pager-control button.active:focus,
.open > .dropdown-toggle.ui-grid-pager-control button:focus,
.ui-grid-pager-control button:active.focus,
.ui-grid-pager-control button.active.focus,
.open > .dropdown-toggle.ui-grid-pager-control button.focus {
  color: #eeeeee;
  background-color: #c8c8c8;
  border-color: #8c8c8c;
}
.ui-grid-pager-control button:active,
.ui-grid-pager-control button.active,
.open > .dropdown-toggle.ui-grid-pager-control button {
  background-image: none;
}
.ui-grid-pager-control button.disabled,
.ui-grid-pager-control button[disabled],
fieldset[disabled] .ui-grid-pager-control button,
.ui-grid-pager-control button.disabled:hover,
.ui-grid-pager-control button[disabled]:hover,
fieldset[disabled] .ui-grid-pager-control button:hover,
.ui-grid-pager-control button.disabled:focus,
.ui-grid-pager-control button[disabled]:focus,
fieldset[disabled] .ui-grid-pager-control button:focus,
.ui-grid-pager-control button.disabled.focus,
.ui-grid-pager-control button[disabled].focus,
fieldset[disabled] .ui-grid-pager-control button.focus,
.ui-grid-pager-control button.disabled:active,
.ui-grid-pager-control button[disabled]:active,
fieldset[disabled] .ui-grid-pager-control button:active,
.ui-grid-pager-control button.disabled.active,
.ui-grid-pager-control button[disabled].active,
fieldset[disabled] .ui-grid-pager-control button.active {
  background-color: #f3f3f3;
  border-color: #cccccc;
}
.ui-grid-pager-control button .badge {
  color: #f3f3f3;
  background-color: #eeeeee;
}
.ui-grid-pager-control input {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
  display: inline;
  height: 26px;
  width: 50px;
  vertical-align: top;
}
.ui-grid-pager-control input:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.ui-grid-pager-control input::-moz-placeholder {
  color: #999999;
  opacity: 1;
}
.ui-grid-pager-control input:-ms-input-placeholder {
  color: #999999;
}
.ui-grid-pager-control input::-webkit-input-placeholder {
  color: #999999;
}
.ui-grid-pager-control input[disabled],
.ui-grid-pager-control input[readonly],
fieldset[disabled] .ui-grid-pager-control input {
  background-color: #eeeeee;
  opacity: 1;
}
.ui-grid-pager-control input[disabled],
fieldset[disabled] .ui-grid-pager-control input {
  cursor: not-allowed;
}
textarea.ui-grid-pager-control input {
  height: auto;
}
select.ui-grid-pager-control input {
  height: 30px;
  line-height: 30px;
}
textarea.ui-grid-pager-control input,
select[multiple].ui-grid-pager-control input {
  height: auto;
}
.ui-grid-pager-control .ui-grid-pager-max-pages-number {
  vertical-align: bottom;
}
.ui-grid-pager-control .ui-grid-pager-max-pages-number > * {
  vertical-align: middle;
}
.ui-grid-pager-control .first-bar {
  width: 10px;
  border-left: 2px solid #4d4d4d;
  margin-top: -6px;
  height: 12px;
  margin-left: -3px;
}
.ui-grid-pager-control .first-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 8.7px 5px 0;
  border-color: transparent #4d4d4d transparent transparent;
  margin-left: 2px;
}
.ui-grid-pager-control .next-triangle {
  margin-left: 1px;
}
.ui-grid-pager-control .prev-triangle {
  margin-left: 0;
}
.ui-grid-pager-control .last-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8.7px;
  border-color: transparent transparent transparent #4d4d4d;
  margin-left: -1px;
}
.ui-grid-pager-control .last-bar {
  width: 10px;
  border-left: 2px solid #4d4d4d;
  margin-top: -6px;
  height: 12px;
  margin-left: 1px;
}
.ui-grid-pager-row-count-picker {
  float: left;
}
.ui-grid-pager-row-count-picker select {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
  height: 26px;
  width: 67px;
  display: inline;
}
.ui-grid-pager-row-count-picker select:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.ui-grid-pager-row-count-picker select::-moz-placeholder {
  color: #999999;
  opacity: 1;
}
.ui-grid-pager-row-count-picker select:-ms-input-placeholder {
  color: #999999;
}
.ui-grid-pager-row-count-picker select::-webkit-input-placeholder {
  color: #999999;
}
.ui-grid-pager-row-count-picker select[disabled],
.ui-grid-pager-row-count-picker select[readonly],
fieldset[disabled] .ui-grid-pager-row-count-picker select {
  background-color: #eeeeee;
  opacity: 1;
}
.ui-grid-pager-row-count-picker select[disabled],
fieldset[disabled] .ui-grid-pager-row-count-picker select {
  cursor: not-allowed;
}
textarea.ui-grid-pager-row-count-picker select {
  height: auto;
}
select.ui-grid-pager-row-count-picker select {
  height: 30px;
  line-height: 30px;
}
textarea.ui-grid-pager-row-count-picker select,
select[multiple].ui-grid-pager-row-count-picker select {
  height: auto;
}
.ui-grid-pager-row-count-picker .ui-grid-pager-row-count-label {
  margin-top: 3px;
}
.ui-grid-pager-count-container {
  float: right;
  margin-top: 4px;
  min-width: 50px;
}
.ui-grid-pager-count-container .ui-grid-pager-count {
  margin-right: 10px;
  margin-left: 10px;
  float: right;
}
/* This file contains variable declarations (do not remove this line) */
/*-- VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
/**
* @section Grid styles
*/
/**
* @section Header styles
*/
/** @description Colors for header gradient */
/**
* @section Grid body styles
*/
/** @description Colors used for row alternation */
/**
* @section Sort arrow colors
*/
/**
* @section Scrollbar styles
*/
/**
* @section font library path
*/
/*-- END VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
.ui-grid-pinned-container {
  position: absolute;
  display: inline;
  top: 0;
}
.ui-grid-pinned-container.ui-grid-pinned-container-left {
  float: left;
  left: 0;
}
.ui-grid-pinned-container.ui-grid-pinned-container-right {
  float: right;
  right: 0;
}
.ui-grid-pinned-container.ui-grid-pinned-container-left .ui-grid-header-cell:last-child {
  box-sizing: border-box;
  border-right: 1px solid;
  border-width: 1px;
  border-right-color: #aeaeae;
}
.ui-grid-pinned-container.ui-grid-pinned-container-left .ui-grid-cell:last-child {
  box-sizing: border-box;
  border-right: 1px solid;
  border-width: 1px;
  border-right-color: #aeaeae;
}
.ui-grid-pinned-container.ui-grid-pinned-container-left .ui-grid-header-cell:not(:last-child) .ui-grid-vertical-bar,
.ui-grid-pinned-container .ui-grid-cell:not(:last-child) .ui-grid-vertical-bar {
  width: 1px;
}
.ui-grid-pinned-container.ui-grid-pinned-container-left .ui-grid-header-cell:not(:last-child) .ui-grid-vertical-bar {
  background-color: #d4d4d4;
}
.ui-grid-pinned-container.ui-grid-pinned-container-left .ui-grid-cell:not(:last-child) .ui-grid-vertical-bar {
  background-color: #aeaeae;
}
.ui-grid-pinned-container.ui-grid-pinned-container-left .ui-grid-header-cell:last-child .ui-grid-vertical-bar {
  right: -1px;
  width: 1px;
  background-color: #aeaeae;
}
.ui-grid-pinned-container.ui-grid-pinned-container-right .ui-grid-header-cell:first-child {
  box-sizing: border-box;
  border-left: 1px solid;
  border-width: 1px;
  border-left-color: #aeaeae;
}
.ui-grid-pinned-container.ui-grid-pinned-container-right .ui-grid-cell:first-child {
  box-sizing: border-box;
  border-left: 1px solid;
  border-width: 1px;
  border-left-color: #aeaeae;
}
.ui-grid-pinned-container.ui-grid-pinned-container-right .ui-grid-header-cell:not(:first-child) .ui-grid-vertical-bar,
.ui-grid-pinned-container .ui-grid-cell:not(:first-child) .ui-grid-vertical-bar {
  width: 1px;
}
.ui-grid-pinned-container.ui-grid-pinned-container-right .ui-grid-header-cell:not(:first-child) .ui-grid-vertical-bar {
  background-color: #d4d4d4;
}
.ui-grid-pinned-container.ui-grid-pinned-container-right .ui-grid-cell:not(:last-child) .ui-grid-vertical-bar {
  background-color: #aeaeae;
}
.ui-grid-pinned-container.ui-grid-pinned-container-first .ui-grid-header-cell:first-child .ui-grid-vertical-bar {
  left: -1px;
  width: 1px;
  background-color: #aeaeae;
}
/* This file contains variable declarations (do not remove this line) */
/*-- VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
/**
* @section Grid styles
*/
/**
* @section Header styles
*/
/** @description Colors for header gradient */
/**
* @section Grid body styles
*/
/** @description Colors used for row alternation */
/**
* @section Sort arrow colors
*/
/**
* @section Scrollbar styles
*/
/**
* @section font library path
*/
/*-- END VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
.ui-grid-column-resizer {
  top: 0;
  bottom: 0;
  width: 5px;
  position: absolute;
  cursor: col-resize;
}
.ui-grid-column-resizer.left {
  left: 0;
}
.ui-grid-column-resizer.right {
  right: 0;
}
.ui-grid-header-cell:last-child .ui-grid-column-resizer.right {
  border-right: 1px solid #d4d4d4;
}
.ui-grid[dir='rtl'] .ui-grid-header-cell:last-child .ui-grid-column-resizer.right {
  border-right: 0;
}
.ui-grid[dir='rtl'] .ui-grid-header-cell:last-child .ui-grid-column-resizer.left {
  border-left: 1px solid #d4d4d4;
}
.ui-grid.column-resizing {
  cursor: col-resize;
}
.ui-grid.column-resizing .ui-grid-resize-overlay {
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #aeaeae;
}
/* This file contains variable declarations (do not remove this line) */
/*-- VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
/**
* @section Grid styles
*/
/**
* @section Header styles
*/
/** @description Colors for header gradient */
/**
* @section Grid body styles
*/
/** @description Colors used for row alternation */
/**
* @section Sort arrow colors
*/
/**
* @section Scrollbar styles
*/
/**
* @section font library path
*/
/*-- END VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
.ui-grid-row-saving .ui-grid-cell {
  color: #848484 !important;
}
.ui-grid-row-dirty .ui-grid-cell {
  color: #610b38;
}
.ui-grid-row-error .ui-grid-cell {
  color: #ff0000 !important;
}
/* This file contains variable declarations (do not remove this line) */
/*-- VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
/**
* @section Grid styles
*/
/**
* @section Header styles
*/
/** @description Colors for header gradient */
/**
* @section Grid body styles
*/
/** @description Colors used for row alternation */
/**
* @section Sort arrow colors
*/
/**
* @section Scrollbar styles
*/
/**
* @section font library path
*/
/*-- END VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
.ui-grid-row.ui-grid-row-selected > [ui-grid-row] > .ui-grid-cell {
  background-color: #c9dde1;
}
.ui-grid-disable-selection {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
.ui-grid-selection-row-header-buttons {
  cursor: pointer;
  opacity: 0.1;
}
.ui-grid-selection-row-header-buttons.ui-grid-row-selected {
  opacity: 1;
}
.ui-grid-selection-row-header-buttons.ui-grid-all-selected {
  opacity: 1;
}
/* This file contains variable declarations (do not remove this line) */
/*-- VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
/**
* @section Grid styles
*/
/**
* @section Header styles
*/
/** @description Colors for header gradient */
/**
* @section Grid body styles
*/
/** @description Colors used for row alternation */
/**
* @section Sort arrow colors
*/
/**
* @section Scrollbar styles
*/
/**
* @section font library path
*/
/*-- END VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
.ui-grid-tree-row-header-buttons.ui-grid-tree-header {
  cursor: pointer;
  opacity: 1;
}
/* This file contains variable declarations (do not remove this line) */
/*-- VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
/**
* @section Grid styles
*/
/**
* @section Header styles
*/
/** @description Colors for header gradient */
/**
* @section Grid body styles
*/
/** @description Colors used for row alternation */
/**
* @section Sort arrow colors
*/
/**
* @section Scrollbar styles
*/
/**
* @section font library path
*/
/*-- END VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
.ui-grid-tree-header-row {
  font-weight: bold !important;
}
.ui-grid-icon-plus-squared:before {
  content: '\c350';
}
/* '썐' */
.ui-grid-icon-minus-squared:before {
  content: '\c351';
}
/* '썑' */
.ui-grid-icon-search:before {
  content: '\c352';
}
/* '썒' */
.ui-grid-icon-cancel:before {
  content: '\c353';
}
/* '썓' */
.ui-grid-icon-info-circled:before {
  content: '\c354';
}
/* '썔' */
.ui-grid-icon-lock:before {
  content: '\c355';
}
/* '썕' */
.ui-grid-icon-lock-open:before {
  content: '\c356';
}
/* '썖' */
.ui-grid-icon-pencil:before {
  content: '\c357';
}
/* '썗' */
.ui-grid-icon-down-dir:before {
  content: '\c358';
}
/* '썘' */
.ui-grid-icon-up-dir:before {
  content: '\c359';
}
/* '썙' */
.ui-grid-icon-left-dir:before {
  content: '\c35a';
}
/* '썚' */
.ui-grid-icon-right-dir:before {
  content: '\c35b';
}
/* '썛' */
.ui-grid-icon-left-open:before {
  content: '\c35c';
}
/* '썜' */
.ui-grid-icon-right-open:before {
  content: '\c35d';
}
/* '썝' */
.ui-grid-icon-angle-down:before {
  content: '\c35e';
}
/* '썞' */
.ui-grid-icon-filter:before {
  content: '\c35f';
}
/* '썟' */
.ui-grid-icon-sort-alt-up:before {
  content: '\c360';
}
/* '썠' */
.ui-grid-icon-sort-alt-down:before {
  content: '\c361';
}
/* '썡' */
.ui-grid-icon-ok:before {
  content: '\c362';
}
/* '썢' */
.ui-grid-icon-menu:before {
  content: '\c363';
}
/* '썣' */
.ui-grid-icon-indent-left:before {
  content: '\e800';
}
/* '' */
.ui-grid-icon-indent-right:before {
  content: '\e801';
}
/* '' */
.ui-grid-icon-spin5:before {
  content: '\ea61';
}
/* '' */
/*
 *       __ _____                     ________                              __
 *      / // _  /__ __ _____ ___ __ _/__  ___/__ ___ ______ __ __  __ ___  / /
 *  __ / // // // // // _  // _// // / / // _  // _//     // //  \/ // _ \/ /
 * /  / // // // // // ___// / / // / / // ___// / / / / // // /\  // // / /__
 * \___//____ \\___//____//_/ _\_  / /_//____//_/ /_/ /_//_//_/ /_/ \__\_\___/
 *           \/              /____/                              version 0.9.3
 * http://terminal.jcubic.pl
 *
 * Copyright (c) 2011-2014 Jakub Jankiewicz <http://jcubic.pl>
 *
 * This file is part of jQuery Terminal.
 *
 * jQuery Terminal is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * Date: Thu, 24 Dec 2015 20:12:53 +0000
 */
.terminal .terminal-output .format,
.cmd .format,
.cmd .prompt,
.cmd .prompt div,
.terminal .terminal-output div div {
  display: inline-block;
}
.cmd .mask,
.cmd .clipboard {
  position: absolute;
  display: block;
  bottom: 0;
  height: 16px;
  left: -10px;
}
.terminal h1,
.terminal h2,
.terminal h3,
.terminal h4,
.terminal h5,
.terminal h6,
.terminal pre,
.cmd {
  margin: 0;
}
.terminal h1,
.terminal h2,
.terminal h3,
.terminal h4,
.terminal h5,
.terminal h6 {
  line-height: 1.2em;
}
.wrap {
  word-wrap: break-word;
  overflow: initial;
}
/*
.cmd .mask {
    width: 10px;
    height: 11px;
    background: black;
    z-index: 100;
}
*/
.cmd .clipboard {
  /* this seems to work after all on Android */
  left: -99999px;
  clip: rect(1px, 1px, 1px, 1px);
  /* on desktop textarea appear when paste */
  /*
    opacity: 0.01;
    filter: alpha(opacity = 0.01);
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.01);
    */
  width: 10px;
  /* textarea need to have width or it will not work on Android */
  height: 10px;
  padding: 0;
  resize: none;
  border: none;
  z-index: 0;
  overflow: hidden;
  outline: none;
}
.terminal .error {
  color: #f00;
}
.terminal {
  padding: 10px;
  position: relative;
  /*overflow: hidden;*/
  overflow: auto;
}
.cmd {
  padding: 0;
  height: 1.3em;
  position: relative;
  /*margin-top: 3px; */
}
.terminal .inverted,
.cmd .inverted,
.cmd .cursor.blink {
  background-color: #aaa;
  color: #000;
}
.cmd .cursor.blink {
  -webkit-animation: terminal-blink 1s infinite steps(1, start);
  -moz-animation: terminal-blink 1s infinite steps(1, start);
  -ms-animation: terminal-blink 1s infinite steps(1, start);
  animation: terminal-blink 1s infinite steps(1, start);
}
@-webkit-keyframes terminal-blink {
  0%,
  100% {
    background-color: #000;
    color: #aaa;
  }
  50% {
    background-color: #bbb;
    color: #000;
  }
}
@-ms-keyframes terminal-blink {
  0%,
  100% {
    background-color: #000;
    color: #aaa;
  }
  50% {
    background-color: #bbb;
    color: #000;
  }
}
@-moz-keyframes terminal-blink {
  0%,
  100% {
    background-color: #000;
    color: #aaa;
  }
  50% {
    background-color: #bbb;
    color: #000;
  }
}
@keyframes terminal-blink {
  0%,
  100% {
    background-color: #000;
    color: #aaa;
  }
  50% {
    background-color: #bbb;
    /* not #aaa because it's seems there is Google Chrome bug */
    color: #000;
  }
}
.terminal .terminal-output div div,
.cmd .prompt {
  display: block;
  line-height: 14px;
  height: auto;
}
.cmd .prompt {
  float: left;
}
.terminal,
.cmd {
  font-family: monospace;
  /*font-family: FreeMono, monospace; this don't work on Android */
  color: rgba(170, 170, 170, 0.99);
  background-color: #000;
  font-size: 12px;
  line-height: 14px;
}
.terminal-output > div {
  /*padding-top: 3px;*/
  min-height: 14px;
}
.terminal .terminal-output div span {
  display: inline-block;
}
.cmd span {
  float: left;
  /*display: inline-block; */
}
/* fix double style of selecting text in terminal */
.terminal-output span,
.terminal-output a,
.cmd div,
.cmd span,
.terminal td,
.terminal pre,
.terminal h1,
.terminal h2,
.terminal h3,
.terminal h4,
.terminal h5,
.terminal h6 {
  -webkit-touch-callout: initial;
  -webkit-user-select: initial;
  -khtml-user-select: initial;
  -moz-user-select: initial;
  -ms-user-select: initial;
  user-select: initial;
}
.terminal,
.terminal-output,
.terminal-output div {
  -webkit-touch-callout: initial;
  -webkit-user-select: initial;
  -khtml-user-select: initial;
  -moz-user-select: initial;
  -ms-user-select: initial;
  user-select: initial;
}
/* firefox hack */
@-moz-document url-prefix() {
  .terminal,
  .terminal-output,
  .terminal-output div {
    -webkit-touch-callout: initial;
    -webkit-user-select: initial;
    -khtml-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial;
  }
}
.terminal table {
  border-collapse: collapse;
}
.terminal td {
  border: 1px solid #aaa;
}
.terminal h1::-moz-selection,
.terminal h2::-moz-selection,
.terminal h3::-moz-selection,
.terminal h4::-moz-selection,
.terminal h5::-moz-selection,
.terminal h6::-moz-selection,
.terminal pre::-moz-selection,
.terminal td::-moz-selection,
.terminal .terminal-output div div::-moz-selection,
.terminal .terminal-output div span::-moz-selection,
.terminal .terminal-output div div a::-moz-selection,
.terminal .terminal-output .raw div::-moz-selection,
.cmd div::-moz-selection,
.cmd > span::-moz-selection,
.cmd > span span::-moz-selection,
.cmd > div::-moz-selection,
.cmd > div span::-moz-selection,
.cmd .prompt span::-moz-selection {
  background-color: #aaa;
  color: #000;
}
/* this don't work in Chrome
.terminal tr td::-moz-selection {
    border-color: #000;
}
.terminal tr td::selection {
    border-color: #000;
}
*/
.terminal h1::selection,
.terminal h2::selection,
.terminal h3::selection,
.terminal h4::selection,
.terminal h5::selection,
.terminal h6::selection,
.terminal pre::selection,
.terminal td::selection,
.terminal .terminal-output div div::selection,
.terminal .terminal-output div div a::selection,
.terminal .terminal-output div span::selection,
.terminal .terminal-output .raw div::selection,
.cmd div::selection,
.cmd > span::selection,
.cmd > span span::selection,
.cmd > div::selection,
.cmd > div span::selection,
.cmd .prompt span::selection {
  /*
     * use rgba to fix transparent selection in chrome
     * http://stackoverflow.com/questions/7224445/css3-selection-behaves-differently-in-ff-chrome
     */
  background-color: rgba(170, 170, 170, 0.99);
  color: #000;
}
.terminal .terminal-output div.error,
.terminal .terminal-output div.error div {
  color: red;
}
.tilda {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
}
.clear {
  clear: both;
}
.terminal a {
  color: #0f60ff;
}
.terminal a:hover {
  color: red;
}
/**
 * selectize.bootstrap3.css (v0.12.1) - Bootstrap 3 Theme
 * Copyright (c) 2013–2015 Brian Reavis & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 */
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  -webkit-box-shadow: inset 0 0 12px 4px #fff;
  box-shadow: inset 0 0 12px 4px #fff;
}
.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: '!';
  visibility: hidden;
}
.selectize-control.plugin-drag_drop .ui-sortable-helper {
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.selectize-dropdown-header {
  position: relative;
  padding: 3px 12px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.selectize-dropdown-header-close {
  position: absolute;
  right: 12px;
  top: 50%;
  color: #3F3F3F;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}
.selectize-dropdown-header-close:hover {
  color: #000000;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}
.selectize-control.plugin-remove_button [data-value] {
  position: relative;
  padding-right: 24px !important;
}
.selectize-control.plugin-remove_button [data-value] .remove {
  z-index: 1;
  /* fixes ie bug (see #392) */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 17px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 1px 0 0 0;
  border-left: 1px solid rgba(0, 0, 0, 0);
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.selectize-control.plugin-remove_button [data-value] .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}
.selectize-control.plugin-remove_button [data-value].active .remove {
  border-left-color: rgba(0, 0, 0, 0);
}
.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
  background: none;
}
.selectize-control.plugin-remove_button .disabled [data-value] .remove {
  border-left-color: rgba(77, 77, 77, 0);
}
.selectize-control {
  position: relative;
}
.selectize-control.unauthorized {
  filter: alpha(opacity=100);
  opacity: 1;
}
.selectize-control.unauthorized .selectize-input {
  background-color: #CCCCCC !important;
}
.selectize-control.unauthorized .selectize-input .item {
  color: #808080 !important;
}
.selectize-dropdown,
.selectize-input,
.selectize-input input {
  color: #3F3F3F;
  font-family: inherit;
  font-size: inherit;
  line-height: 20px;
  -webkit-font-smoothing: inherit;
}
.selectize-input,
.selectize-control.single .selectize-input.input-active {
  background: #fff;
  cursor: text;
  display: inline-block;
}
.selectize-input {
  border: 1px solid #CCCCCC;
  padding: 6px 12px;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.selectize-control.multi .selectize-input.has-items {
  padding: 5px 12px 2px;
}
.selectize-input.full {
  background-color: #fff;
}
.selectize-input.disabled,
.selectize-input.disabled * {
  cursor: default !important;
}
.selectize-input.focus {
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}
.selectize-input.dropdown-active {
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.selectize-input > * {
  vertical-align: baseline;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.selectize-control.multi .selectize-input > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 1px 3px;
  background: #efefef;
  color: #3F3F3F;
  border: 0 solid rgba(0, 0, 0, 0);
}
.selectize-control.multi .selectize-input > div.active {
  background: #0AB3E5;
  color: #fff;
  border: 0 solid rgba(0, 0, 0, 0);
}
.selectize-control.multi .selectize-input.disabled > div,
.selectize-control.multi .selectize-input.disabled > div.active {
  color: #8c8c8c;
  background: #ffffff;
  border: 0 solid rgba(77, 77, 77, 0);
}
.selectize-input > input {
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.selectize-input > input::-ms-clear {
  display: none;
}
.selectize-input > input:focus {
  outline: none !important;
}
.selectize-input::after {
  content: ' ';
  display: block;
  clear: left;
}
.selectize-input.dropdown-active::before {
  content: ' ';
  display: block;
  position: absolute;
  background: #ffffff;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}
.selectize-dropdown {
  position: absolute;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #FFF;
  margin: -1px 0 0 0;
  border-top: 0 none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
.selectize-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}
.selectize-dropdown [data-selectable] .highlight {
  background: rgba(255, 237, 40, 0.4);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.selectize-dropdown [data-selectable],
.selectize-dropdown .optgroup-header {
  padding: 3px 12px;
}
.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}
.selectize-dropdown .optgroup-header {
  color: #999999;
  background: #FFF;
  cursor: default;
}
.selectize-dropdown .active {
  background-color: #EEE;
  color: #3F3F3F;
}
.selectize-dropdown .active.create {
  color: #3F3F3F;
}
.selectize-dropdown .create {
  color: rgba(63, 63, 63, 0.5);
}
.selectize-dropdown.direction-up {
  border-radius: 4px 4px 0 0 !important;
  border-top: 0 none;
  border-bottom: 1px solid #eee !important;
  box-shadow: 0 -6px 12px rgba(0, 0, 0, 0.175) !important;
}
.selectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
}
.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input {
  cursor: pointer;
}
.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active input {
  cursor: text;
  display: inline-block !important;
}
.selectize-control.single .selectize-input:after {
  content: ' ';
  display: block;
  position: absolute;
  top: 50%;
  right: 17px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #3F3F3F transparent transparent transparent;
}
.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -4px;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #3F3F3F transparent;
}
.selectize-control.rtl.single .selectize-input:after {
  left: 17px;
  right: auto;
}
.selectize-control.rtl .selectize-input > input {
  margin: 0 4px 0 -2px !important;
}
.selectize-control .selectize-input.disabled {
  opacity: 0.5;
  background-color: #fff;
}
.selectize-dropdown,
.selectize-dropdown.form-control {
  height: auto;
  padding: 0;
  margin: 2px 0 0 0;
  z-index: 1000;
  background: #FFF;
  border: 1px solid #ccc;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.selectize-dropdown .optgroup-header {
  font-size: 12px;
  line-height: 1.42857143;
}
.selectize-dropdown .optgroup:first-child:before {
  display: none;
}
.selectize-dropdown .optgroup:before {
  content: ' ';
  display: block;
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
  margin-left: -12px;
  margin-right: -12px;
}
.selectize-dropdown-content {
  padding: 5px 0;
}
.selectize-dropdown-header {
  padding: 6px 12px;
}
.selectize-input {
  min-height: 41px;
}
.selectize-input.dropdown-active {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.selectize-input.dropdown-active::before {
  display: none;
}
.selectize-input.focus {
  border-color: #0AB3E5;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(10, 179, 229, 0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(10, 179, 229, 0.6);
}
.selectize-input .item {
  line-height: 27px;
}
.selectize-input input {
  min-width: 150px;
  line-height: 27px !important;
}
.has-error .selectize-input {
  border-color: #de2c1e;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .selectize-input:focus {
  border-color: #b12318;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ec7e76;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ec7e76;
}
.selectize-control.multi .selectize-input.has-items {
  padding-left: 9px;
  padding-right: 9px;
}
.selectize-control.multi .selectize-input > div {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.form-control.selectize-control {
  padding: 0;
  height: auto;
  border: none;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
@-webkit-keyframes ngdialog-fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ngdialog-fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes ngdialog-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ngdialog-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.ngdialog {
  box-sizing: border-box;
}
.ngdialog *,
.ngdialog *:before,
.ngdialog *:after {
  box-sizing: inherit;
}
.ngdialog {
  position: fixed;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.ngdialog.ngdialog-disabled-animation,
.ngdialog.ngdialog-disabled-animation .ngdialog-overlay,
.ngdialog.ngdialog-disabled-animation .ngdialog-content {
  -webkit-animation: none !important;
  animation: none !important;
}
.ngdialog-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadein 0.5s;
  animation: ngdialog-fadein 0.5s;
}
.ngdialog-no-overlay {
  pointer-events: none;
}
.ngdialog.ngdialog-closing .ngdialog-overlay {
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadeout 0.5s;
  animation: ngdialog-fadeout 0.5s;
}
.ngdialog-content {
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadein 0.5s;
  animation: ngdialog-fadein 0.5s;
  pointer-events: all;
}
.ngdialog.ngdialog-closing .ngdialog-content {
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadeout 0.5s;
  animation: ngdialog-fadeout 0.5s;
}
.ngdialog-close:before {
  font-family: 'Helvetica', Arial, sans-serif;
  content: '\00D7';
  cursor: pointer;
}
html.ngdialog-open,
body.ngdialog-open {
  overflow: hidden;
}
@-webkit-keyframes ngdialog-flyin {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes ngdialog-flyin {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes ngdialog-flyout {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@keyframes ngdialog-flyout {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
.ngdialog.ngdialog-theme-default {
  padding-bottom: 160px;
  padding-top: 160px;
}
.ngdialog.ngdialog-theme-default.ngdialog-closing .ngdialog-content {
  -webkit-animation: ngdialog-flyout 150ms;
  animation: ngdialog-flyout 150ms;
}
.ngdialog.ngdialog-theme-default .ngdialog-content {
  -webkit-animation: ngdialog-flyin 150ms;
  animation: ngdialog-flyin 150ms;
  background: #fff;
  border-radius: 5px;
  color: #444;
  font-family: 'Helvetica', sans-serif;
  font-size: 1.1em;
  line-height: 1.5em;
  margin: 0 auto;
  max-width: 100%;
  padding: 1em;
  position: relative;
  width: 500px;
}
.ngdialog.ngdialog-theme-default .ngdialog-close {
  border-radius: 5px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
}
.ngdialog.ngdialog-theme-default .ngdialog-close:before {
  background: transparent;
  border-radius: 3px;
  color: #bbb;
  content: '\00D7';
  font-size: 26px;
  font-weight: 400;
  height: 30px;
  line-height: 26px;
  position: absolute;
  right: 3px;
  text-align: center;
  top: 3px;
  width: 30px;
}
.ngdialog.ngdialog-theme-default .ngdialog-close:hover:before,
.ngdialog.ngdialog-theme-default .ngdialog-close:active:before {
  color: #777;
}
.ngdialog.ngdialog-theme-default .ngdialog-message {
  margin-bottom: 0.5em;
}
.ngdialog.ngdialog-theme-default .ngdialog-input {
  margin-bottom: 1em;
}
.ngdialog.ngdialog-theme-default .ngdialog-input textarea,
.ngdialog.ngdialog-theme-default .ngdialog-input input[type='text'],
.ngdialog.ngdialog-theme-default .ngdialog-input input[type='password'],
.ngdialog.ngdialog-theme-default .ngdialog-input input[type='email'],
.ngdialog.ngdialog-theme-default .ngdialog-input input[type='url'] {
  background: #fff;
  border: 0;
  border-radius: 3px;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  margin: 0 0 0.25em;
  min-height: 2.5em;
  padding: 0.25em 0.67em;
  width: 100%;
}
.ngdialog.ngdialog-theme-default .ngdialog-input textarea:focus,
.ngdialog.ngdialog-theme-default .ngdialog-input input[type='text']:focus,
.ngdialog.ngdialog-theme-default .ngdialog-input input[type='password']:focus,
.ngdialog.ngdialog-theme-default .ngdialog-input input[type='email']:focus,
.ngdialog.ngdialog-theme-default .ngdialog-input input[type='url']:focus {
  box-shadow: inset 0 0 0 2px #8dbdf1;
  outline: none;
}
.ngdialog.ngdialog-theme-default .ngdialog-buttons {
  *zoom: 1;
}
.ngdialog.ngdialog-theme-default .ngdialog-buttons:after {
  content: '';
  display: table;
  clear: both;
}
.ngdialog.ngdialog-theme-default .ngdialog-button {
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  float: right;
  font-family: inherit;
  font-size: 0.8em;
  letter-spacing: 0.1em;
  line-height: 1em;
  margin: 0 0 0 0.5em;
  padding: 0.75em 2em;
  text-transform: uppercase;
}
.ngdialog.ngdialog-theme-default .ngdialog-button:focus {
  -webkit-animation: ngdialog-pulse 1.1s infinite;
  animation: ngdialog-pulse 1.1s infinite;
  outline: none;
}
@media (max-width: 568px) {
  .ngdialog.ngdialog-theme-default .ngdialog-button:focus {
    -webkit-animation: none;
    animation: none;
  }
}
.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-primary {
  background: #3288e6;
  color: #fff;
}
.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-secondary {
  background: #e0e0e0;
  color: #777;
}
.split-panes {
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  position: absolute;
}
.split-panes > .split-handler {
  background: transparent;
  position: absolute;
  z-index: 999;
}
/* Horizontal */
.split-panes.horizontal > .split-handler {
  width: 4px;
  top: 0px;
  left: 50%;
  bottom: 0px;
  cursor: ew-resize;
}
.split-panes.horizontal > .split-pane1,
.split-panes.horizontal > .split-pane2 {
  position: absolute;
  height: 100%;
}
.split-panes.horizontal > .split-pane1 {
  width: 50%;
}
.split-panes.horizontal > .split-pane2 {
  left: 50%;
  right: 0px;
  border-left: 1px solid #CCCCCC;
}
/* Vertical */
.split-panes.vertical > .split-handler {
  height: 4px;
  top: 50%;
  left: 0px;
  right: 0px;
  cursor: ns-resize;
}
.split-panes.vertical > .split-pane1,
.split-panes.vertical > .split-pane2 {
  position: absolute;
  width: 100%;
}
.split-panes.vertical > .split-pane1 {
  height: 50%;
}
.split-panes.vertical > .split-pane2 {
  top: 50%;
  bottom: 0px;
  border-top: 1px solid #CCCCCC;
}
.rc-handle-container {
  position: relative;
}
.rc-handle {
  position: absolute;
  width: 7px;
  cursor: ew-resize;
  margin-left: -3px;
  z-index: 2;
}
table.rc-table-resizing {
  cursor: ew-resize;
}
table.rc-table-resizing thead,
table.rc-table-resizing thead > th,
table.rc-table-resizing thead > th > a {
  cursor: ew-resize;
}
/*!
 * jQuery UI Resizable 1.11.4
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 */
.ui-resizable {
  position: relative;
}
.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  -ms-touch-action: none;
  touch-action: none;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none;
}
.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}
.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}
.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}
.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}
.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}
.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}
.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}
.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}
.ui-autocomplete {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1051;
  float: left;
  display: none;
  min-width: 160px;
  _width: 160px;
  padding: 4px 0;
  margin: 2px 0 0 0;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #CCCCCC;
  border-top: 0 none;
  border-radius: 0 0 5px 5px;
  margin-top: -1px;
  margin-left: -1px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.ui-autocomplete .ui-menu-item {
  padding: 5px 10px;
  font-size: 16px;
}
.ui-autocomplete .ui-menu-item.ui-state-focus {
  background-color: #E6E6E6;
}
.ui-autocomplete .ui-menu-item .ui-state-highlight {
  background-color: #ffe093;
}
.checkbox {
  padding-left: 20px;
}
.checkbox label {
  display: inline-block;
  position: relative;
  padding-left: 5px;
}
.checkbox label::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
.checkbox label::after {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 0;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 1px;
  font-size: 11px;
  color: #555555;
}
.checkbox input[type='checkbox'] {
  opacity: 0;
}
.checkbox input[type='checkbox']:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.checkbox input[type='checkbox']:checked + label::after {
  font-family: 'FontAwesome';
  content: '\f00c';
}
.checkbox input[type='checkbox']:disabled + label {
  opacity: 0.65;
}
.checkbox input[type='checkbox']:disabled + label::before {
  background-color: #eeeeee;
  cursor: not-allowed;
}
.checkbox.checkbox-circle label::before {
  border-radius: 50%;
}
.checkbox.checkbox-inline {
  margin-top: 0;
}
.checkbox-primary input[type='checkbox']:checked + label::before {
  background-color: #0AB3E5;
  border-color: #0AB3E5;
}
.checkbox-primary input[type='checkbox']:checked + label::after {
  color: #fff;
}
.checkbox-danger input[type='checkbox']:checked + label::before {
  background-color: #d9534f;
  border-color: #d9534f;
}
.checkbox-danger input[type='checkbox']:checked + label::after {
  color: #fff;
}
.checkbox-info input[type='checkbox']:checked + label::before {
  background-color: #5bc0de;
  border-color: #5bc0de;
}
.checkbox-info input[type='checkbox']:checked + label::after {
  color: #fff;
}
.checkbox-warning input[type='checkbox']:checked + label::before {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}
.checkbox-warning input[type='checkbox']:checked + label::after {
  color: #fff;
}
.checkbox-success input[type='checkbox']:checked + label::before {
  background-color: #5cb85c;
  border-color: #5cb85c;
}
.checkbox-success input[type='checkbox']:checked + label::after {
  color: #fff;
}
.radio {
  padding-left: 20px;
}
.radio label {
  display: inline-block;
  position: relative;
  padding-left: 5px;
}
.radio label::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out;
  transition: border 0.15s ease-in-out;
}
.radio label::after {
  display: inline-block;
  position: absolute;
  content: ' ';
  width: 11px;
  height: 11px;
  left: 3px;
  top: 3px;
  margin-left: -20px;
  border-radius: 50%;
  background-color: #555555;
  -webkit-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}
.radio input[type='radio'] {
  opacity: 0;
}
.radio input[type='radio']:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.radio input[type='radio']:checked + label::after {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}
.radio input[type='radio']:disabled + label {
  opacity: 0.65;
}
.radio input[type='radio']:disabled + label::before {
  cursor: not-allowed;
}
.radio.radio-inline {
  margin-top: 0;
}
.radio-primary input[type='radio'] + label::after {
  background-color: #0AB3E5;
}
.radio-primary input[type='radio']:checked + label::before {
  border-color: #0AB3E5;
}
.radio-primary input[type='radio']:checked + label::after {
  background-color: #0AB3E5;
}
.radio-danger input[type='radio'] + label::after {
  background-color: #d9534f;
}
.radio-danger input[type='radio']:checked + label::before {
  border-color: #d9534f;
}
.radio-danger input[type='radio']:checked + label::after {
  background-color: #d9534f;
}
.radio-info input[type='radio'] + label::after {
  background-color: #5bc0de;
}
.radio-info input[type='radio']:checked + label::before {
  border-color: #5bc0de;
}
.radio-info input[type='radio']:checked + label::after {
  background-color: #5bc0de;
}
.radio-warning input[type='radio'] + label::after {
  background-color: #f0ad4e;
}
.radio-warning input[type='radio']:checked + label::before {
  border-color: #f0ad4e;
}
.radio-warning input[type='radio']:checked + label::after {
  background-color: #f0ad4e;
}
.radio-success input[type='radio'] + label::after {
  background-color: #5cb85c;
}
.radio-success input[type='radio']:checked + label::before {
  border-color: #5cb85c;
}
.radio-success input[type='radio']:checked + label::after {
  background-color: #5cb85c;
}
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
.daterangepicker {
  position: absolute;
  color: inherit;
  background-color: #fff;
  border-radius: 4px;
  width: 278px;
  padding: 4px;
  margin-top: 1px;
  top: 100px;
  left: 20px;
  /* Calendars */
}
.daterangepicker:before,
.daterangepicker:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}
.daterangepicker:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #CCCCCC;
}
.daterangepicker:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
}
.daterangepicker.opensleft:before {
  right: 9px;
}
.daterangepicker.opensleft:after {
  right: 10px;
}
.daterangepicker.openscenter:before {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}
.daterangepicker.openscenter:after {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}
.daterangepicker.opensright:before {
  left: 9px;
}
.daterangepicker.opensright:after {
  left: 10px;
}
.daterangepicker.dropup {
  margin-top: -5px;
}
.daterangepicker.dropup:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid #CCCCCC;
}
.daterangepicker.dropup:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff;
}
.daterangepicker.dropdown-menu {
  max-width: none;
  z-index: 3001;
}
.daterangepicker.single .ranges,
.daterangepicker.single .calendar {
  float: none;
}
.daterangepicker.show-calendar .calendar {
  display: block;
}
.daterangepicker .calendar {
  display: none;
  max-width: 270px;
  margin: 4px;
}
.daterangepicker .calendar.single .calendar-table {
  border: none;
}
.daterangepicker .calendar th,
.daterangepicker .calendar td {
  white-space: nowrap;
  text-align: center;
  min-width: 32px;
}
.daterangepicker .calendar-table {
  border: 1px solid #fff;
  padding: 4px;
  border-radius: 4px;
  background-color: #fff;
}
.daterangepicker table {
  width: 100%;
  margin: 0;
}
.daterangepicker td,
.daterangepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
  background-color: #eee;
  border-color: transparent;
  color: inherit;
}
.daterangepicker td.week,
.daterangepicker th.week {
  font-size: 80%;
  color: #CCCCCC;
}
.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
  background-color: #fff;
  border-color: transparent;
  color: #999;
}
.daterangepicker td.in-range {
  background-color: #bfeefc;
  border-color: transparent;
  color: #000;
  border-radius: 0;
}
.daterangepicker td.start-date {
  border-radius: 4px 0 0 4px;
}
.daterangepicker td.end-date {
  border-radius: 0 4px 4px 0;
}
.daterangepicker td.start-date.end-date {
  border-radius: 4px;
}
.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: #0AB3E5;
  border-color: transparent;
  color: #fff;
}
.daterangepicker th.month {
  width: auto;
}
.daterangepicker td.disabled,
.daterangepicker option.disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: line-through;
}
.daterangepicker select.monthselect,
.daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default;
}
.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%;
}
.daterangepicker select.yearselect {
  width: 40%;
}
.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.secondselect,
.daterangepicker select.ampmselect {
  width: 50px;
  margin-bottom: 0;
}
.daterangepicker .input-mini {
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  color: #555;
  height: 30px;
  line-height: 30px;
  display: block;
  vertical-align: middle;
  margin: 0 0 5px 0;
  padding: 0 6px 0 28px;
  width: 100%;
}
.daterangepicker .input-mini.active {
  border: 1px solid #08c;
  border-radius: 4px;
}
.daterangepicker .daterangepicker_input {
  position: relative;
}
.daterangepicker .daterangepicker_input i {
  position: absolute;
  left: 8px;
  top: 8px;
}
.daterangepicker.rtl .input-mini {
  padding-right: 28px;
  padding-left: 6px;
}
.daterangepicker.rtl .daterangepicker_input i {
  left: auto;
  right: 8px;
}
.daterangepicker .calendar-time {
  text-align: center;
  margin: 5px auto;
  line-height: 30px;
  position: relative;
  padding-left: 28px;
}
.daterangepicker .calendar-time select.disabled {
  color: #CCCCCC;
  cursor: not-allowed;
}
.ranges {
  font-size: 11px;
  float: none;
  margin: 4px;
  text-align: left;
}
.ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.ranges li {
  font-size: 13px;
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-radius: 4px;
  color: #08c;
  padding: 3px 12px;
  margin-bottom: 8px;
  cursor: pointer;
}
.ranges li:hover {
  background-color: #08c;
  border: 1px solid #08c;
  color: #fff;
}
.ranges li.active {
  background-color: #08c;
  border: 1px solid #08c;
  color: #fff;
}
/*  Larger Screen Styling */
@media (min-width: 564px) {
  .daterangepicker {
    width: auto;
  }
  .daterangepicker .ranges ul {
    width: 160px;
  }
  .daterangepicker.single .ranges ul {
    width: 100%;
  }
  .daterangepicker.single .calendar.left {
    clear: none;
  }
  .daterangepicker.single.ltr .ranges,
  .daterangepicker.single.ltr .calendar {
    float: left;
  }
  .daterangepicker.single.rtl .ranges,
  .daterangepicker.single.rtl .calendar {
    float: right;
  }
  .daterangepicker.ltr {
    direction: ltr;
    text-align: left;
  }
  .daterangepicker.ltr .calendar.left {
    clear: left;
    margin-right: 0;
  }
  .daterangepicker.ltr .calendar.left .calendar-table {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .daterangepicker.ltr .calendar.right {
    margin-left: 0;
  }
  .daterangepicker.ltr .calendar.right .calendar-table {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .daterangepicker.ltr .left .daterangepicker_input {
    padding-right: 12px;
  }
  .daterangepicker.ltr .calendar.left .calendar-table {
    padding-right: 12px;
  }
  .daterangepicker.ltr .ranges,
  .daterangepicker.ltr .calendar {
    float: left;
  }
  .daterangepicker.rtl {
    direction: rtl;
    text-align: right;
  }
  .daterangepicker.rtl .calendar.left {
    clear: right;
    margin-left: 0;
  }
  .daterangepicker.rtl .calendar.left .calendar-table {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .daterangepicker.rtl .calendar.right {
    margin-right: 0;
  }
  .daterangepicker.rtl .calendar.right .calendar-table {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .daterangepicker.rtl .left .daterangepicker_input {
    padding-left: 12px;
  }
  .daterangepicker.rtl .calendar.left .calendar-table {
    padding-left: 12px;
  }
  .daterangepicker.rtl .ranges,
  .daterangepicker.rtl .calendar {
    text-align: right;
    float: right;
  }
}
@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto;
  }
  .daterangepicker.ltr .ranges {
    float: left;
  }
  .daterangepicker.rtl .ranges {
    float: right;
  }
  .daterangepicker .calendar.left {
    clear: none !important;
  }
}
svg.icon {
  width: 20px;
  height: 24px;
  color: #CCCCCC;
  fill: #8c8c8c;
}
svg.icon.icons-master-expanded_icon-navmain-connections {
  width: 25px;
  height: 25px;
}
svg.icon.icons-master-expanded_icon-navmain-job {
  width: 22px;
  margin-right: -3px;
}
svg.icon.icons-master-expanded_icon-navmain-clusters {
  width: 21px;
  color: #3f3f3f;
}
svg.icon.icons-master-expanded_icon-navmain-schedules {
  width: 24px;
  height: 24px;
  color: #737373;
  margin-left: -3px;
}
svg.icon.icons-master-expanded_icon-help-book {
  width: 14px;
  color: #0AB3E5;
  fill: #3F3F3F;
}
svg.icon.icons-master-expanded_icon-help-chat {
  width: 16px;
  fill: #3F3F3F;
}
svg.icon.icons-master-expanded_icon-help-video {
  width: 18px;
  fill: #3F3F3F;
  color: #0AB3E5;
}
svg.empty-list-icon {
  color: #CCCCCC;
  fill: #a6a6a6;
}
svg.empty-list-icon use.icons-master-expanded_icon-navmain-job {
  color: #5b5b5b;
  fill: #CCCCCC;
}
svg.empty-list-icon use.icons-master-expanded_icon-navmain-clusters {
  color: white;
}
svg.empty-list-icon use.icons-master-expanded_icon-navmain-schedules {
  color: #5b5b5b;
}
.sidebar .active svg {
  color: #FFD260;
  fill: #0AB3E5;
}
.sidebar .active svg.clusters {
  color: #fff;
}
.sidebar .active svg.icons-master-expanded_icon-navmain-schedules {
  color: #FFD260 !important;
}
@font-face {
  font-family: 'xplenty';
  src: url(https://assets.xplenty.com/4c243c2ae59e70f743c9ec12c58570a9.eot);
  src: url(https://assets.xplenty.com/4c243c2ae59e70f743c9ec12c58570a9.eot?#iefix) format('embedded-opentype'), url(https://assets.xplenty.com/6ec1905c3713b6111d07defe6c2b9895.woff) format('woff'), url(https://assets.xplenty.com/58d997eb5a3d16372e090214111c4b19.ttf) format('truetype'), url(https://assets.xplenty.com/eeb2233db3592f3762ceffe67a05bf10.svg#xplenty) format('svg');
  font-weight: normal;
  font-style: normal;
}
[data-icon]:before {
  font-family: 'xplenty' !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[class^='xplenty-']:before,
[class*=' xplenty-']:before {
  font-family: 'xplenty' !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.xplenty-package:before {
  content: 'd';
}
.xplenty-add-cluster:before {
  content: 'u';
}
.xplenty-box-view:before {
  content: 'h';
}
.xplenty-search:before {
  content: 'j';
}
.xplenty-run-a-job:before {
  content: 'm';
}
.xplenty-calendar:before {
  content: 'n';
}
.xplenty-dashboard:before {
  content: 'p';
}
.xplenty-add-package:before {
  content: 'q';
}
.xplenty-add-user:before {
  content: 'r';
}
.xplenty-edit:before {
  content: 's';
}
.xplenty-arrow-down:before {
  content: 't';
}
.xplenty-list-view:before {
  content: 'v';
}
.xplenty-time:before {
  content: 'x';
}
.xplenty-clusters:before {
  content: 'y';
}
.xplenty-scroll:before {
  content: 'A';
}
.xplenty-users:before {
  content: 'B';
}
.xplenty-all-icons-400px-25:before {
  content: 'D';
}
.xplenty-help:before {
  content: 'F';
}
.xplenty-play:before {
  content: 'G';
}
.xplenty-add:before {
  content: 'H';
}
.xplenty-connection:before {
  content: 'I';
}
.xplenty-redo:before {
  content: 'J';
}
.xplenty-cluster-add:before {
  content: 'M';
}
.xplenty-nav:before {
  content: 'N';
}
.xplenty-undo:before {
  content: 'Q';
}
.xplenty-check:before {
  content: 'T';
}
.xplenty-icon-11:before {
  content: 'U';
}
.xplenty-more:before {
  content: 'X';
}
.xplenty-icon-21:before {
  content: 'Y';
}
.xplenty-icon-22:before {
  content: 'Z';
}
.xplenty-calc:before {
  content: '2';
}
.xplenty-icon-29:before {
  content: '3';
}
.xplenty-icon-31:before {
  content: '4';
}
.xplenty-icon-33:before {
  content: '6';
}
.xplenty-all-icons-400px:before {
  content: '9';
}
.xplenty-settings:before {
  content: 'b';
}
.xplenty-lock-locker-streamline:before {
  content: '"';
}
.xplenty-comment:before {
  content: '#';
}
.xplenty-tag:before {
  content: 'i';
}
.xplenty-cloud-storage-source:before {
  content: 'k';
}
.xplenty-cloud-storage-destination:before {
  content: 'l';
}
.xplenty-join:before {
  content: 'w';
}
.xplenty-clone:before {
  content: 'E';
}
.xplenty-select:before {
  content: 'W';
}
.xplenty-filter:before {
  content: '$';
}
.xplenty-limit:before {
  content: '%';
}
.xplenty-sample:before {
  content: '&';
}
.xplenty-agregate:before {
  content: "'";
}
.xplenty-distinct:before {
  content: '(';
}
.xplenty-sort:before {
  content: ')';
}
.xplenty-rank:before {
  content: '*';
}
.xplenty-database-source:before {
  content: '+';
}
.xplenty-adwords-source:before {
  content: ',';
}
.xplenty-cross-join:before {
  content: '-';
}
.xplenty-assert:before {
  content: '.';
}
.xplenty-cube:before {
  content: '/';
}
.xplenty-big-query-destination:before {
  content: ':';
}
.xplenty-union:before {
  content: ';';
}
.xplenty-mongo-source:before {
  content: '<';
}
.xplenty-mongo-destination:before {
  content: '=';
}
.xplenty-redshift-destination:before {
  content: '>';
}
.xplenty-redshift-source:before {
  content: '?';
}
.xplenty-database-destination:before {
  content: '@';
}
.xplenty-delete:before {
  content: 'a';
}
xp-designer-package-item {
  z-index: 2;
}
xp-designer-edge {
  z-index: 1;
}
xp-designer-package-item,
xp-designer-edge {
  position: absolute;
  top: 0;
  left: 0;
}
xp-designer-package-item svg,
xp-designer-edge svg {
  overflow: visible !important;
}
.mat-menu-item.failure span {
  color: #E54C40;
}
.mat-menu-item.completion span {
  color: #0AB3E5;
}
.mat-menu-item.success span {
  color: #39E98D;
}
.mat-menu-item.remove span {
  color: #3F3F3F;
}
.dropdown-menu-new .mat-menu-item {
  height: 30px;
  display: flex;
  padding: 5px 0;
  align-items: center;
}
.dropdown-menu-new li a {
  cursor: pointer;
}
.dropdown-menu-new li.failure a {
  color: #E54C40;
}
.dropdown-menu-new li.completion a {
  color: #0AB3E5;
}
.dropdown-menu-new li.success a {
  color: #39E98D;
}
.dropdown-menu-new li.remove a {
  color: #3F3F3F;
}
.designer {
  font-family: "proxima-nova", sans-serif;
  position: fixed;
  width: calc(100% - 50px);
  height: 100%;
  min-width: 540px;
  float: right;
}
.designer .designer-scroll {
  overflow: scroll;
  position: relative;
  width: 100%;
  height: 100%;
}
.designer .designer-scroll .designer-context-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transform: translate(-45px, 32px);
}
.designer .designer-scroll .designer-context-menu .dropdown-menu {
  display: block !important;
  min-width: auto;
}
.designer .designer-scroll .designer-context-menu .dropdown-menu li a {
  cursor: pointer;
}
.designer .designer-scroll .designer-context-menu .dropdown-menu li.failure a {
  color: #E54C40;
}
.designer .designer-scroll .designer-context-menu .dropdown-menu li.completion a {
  color: #0AB3E5;
}
.designer .designer-scroll .designer-context-menu .dropdown-menu li.success a {
  color: #39E98D;
}
.designer .designer-scroll .designer-context-menu .dropdown-menu li.remove a {
  color: #3F3F3F;
}
.designer .designer-controls {
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  pointer-events: none;
  padding: 5px 31px 17px 17px;
  z-index: 99999998;
}
.designer .designer-controls .fa-pencil,
.designer .designer-controls .fa-undo {
  color: #CCCCCC;
}
.designer .designer-controls button {
  margin-top: 12px;
}
.designer .designer-controls .designer-controls-main button {
  margin-right: 15px;
}
.designer .designer-controls .btn-group {
  margin-left: 0;
}
.designer .designer-controls button {
  font-weight: 300;
  font-size: 15px;
  border-radius: 3px;
  padding: 11px 20px;
  pointer-events: auto;
  border: 0 none !important;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
}
.designer .designer-controls button svg {
  -webkit-transform: translate(3px, 3px);
  -ms-transform: translate(3px, 3px);
  -o-transform: translate(3px, 3px);
  transform: translate(3px, 3px);
}
.designer .designer-controls .tooltip {
  white-space: nowrap;
}
.designer .designer-controls .btn-run-job {
  position: relative;
  padding-right: 36px;
}
.designer .designer-controls .btn-run-job:after {
  font-family: 'FontAwesome';
  content: '\f0da';
  font-size: 20px;
  top: 11px;
  right: 16px;
  position: absolute;
  line-height: 100%;
}
.designer .designer-controls .btn-comment {
  padding: 8px 12px 6px 6px;
}
.designer .designer-controls .btn-add-component {
  padding-left: 15px;
}
.designer .designer-controls .btn-add-component svg {
  margin-right: 7px;
}
.designer .designer-controls .btn-success {
  font-weight: 600;
}
.designer .designer-controls .btn-undo,
.designer .designer-controls .btn-redo {
  padding: 10px;
  padding-right: 15px;
}
.designer .designer-controls .btn-settings {
  padding: 6px 16px 16px 10px;
}
.designer .designer-controls .link-save.disabled,
.designer .designer-controls .link-version-validate.disabled {
  opacity: 0.65;
}
.designer .designer-controls .dropdown button {
  position: relative;
  padding-right: 32px;
}
.designer .designer-controls .dropdown button span {
  font-weight: 400;
  background-color: #808080;
}
.designer .designer-controls .dropdown button:after {
  position: absolute;
  top: 13px;
  right: 16px;
  color: #CCCCCC;
  font-family: 'FontAwesome';
  content: '\f0d7';
  font-size: 14px;
  line-height: 100%;
}
.designer .designer-controls .dropdown button.btn-success:after {
  color: #3f3f3f;
}
.designer .designer-controls .dropdown .dropdown-menu {
  background-color: #fff;
  border: 0 none;
  pointer-events: auto;
  width: 86px;
  top: 58px;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
}
.designer .designer-controls .dropdown .dropdown-menu li a {
  color: #3F3F3F;
  padding: 5px 10px;
  line-height: 16px;
  cursor: pointer;
}
.designer .designer-controls .dropdown .dropdown-menu li a:hover {
  background-color: #EEE;
}
.designer .designer-controls .dropdown .dropdown-menu li a svg {
  margin-right: 5px;
  -webkit-transform: translate(0, 2px);
  -ms-transform: translate(0, 2px);
  -o-transform: translate(0, 2px);
  transform: translate(0, 2px);
}
.designer .designer-controls .dropdown.open button:after {
  color: #3F3F3F;
  content: '\f0d8';
}
.designer .designer-controls .dropdown.open .dropdown-menu.wide-elements {
  display: inline-table;
}
.designer .margin-right {
  margin-right: 10px;
}
.designer .btn {
  border: 0 none;
}
.designer a {
  cursor: pointer;
}
.designer .designer-stage {
  width: 100%;
  height: 100%;
  position: relative;
}
.designer .designer-stage .designer-grid-rect {
  width: 100%;
  height: 100%;
  background: url(https://assets.xplenty.com/e9fb5661136e1ca44aac748da75c8b78.svg);
  background-size: 28px;
}
.designer .designer-stage .designer-selector {
  fill: rgba(10, 179, 229, 0.2);
  stroke: #0AB3E5;
  stroke-width: 0.5;
  pointer-events: none;
}
.designer .designer-stage .designer-selector-new {
  background: rgba(10, 179, 229, 0.2);
  border: 1px solid #0AB3E5;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999998;
}
.designer .designer-stage .designer-note text,
.designer .designer-stage .designer-note p,
.designer .designer-stage .designer-note textarea {
  background-color: transparent;
  border: 1px solid transparent;
  resize: none;
  overflow: hidden;
  width: auto;
  min-height: 100px;
  font-size: 14px;
  line-height: 22px;
  color: #808080 !important;
  font-family: 'tekton-pro-extended', sans-serif;
  font-style: italic;
  font-weight: 400;
  pointer-events: none;
}
.designer .designer-stage .designer-note foreignObject {
  pointer-events: none;
}
.designer .designer-stage .designer-note p,
.designer .designer-stage .designer-note text {
  white-space: pre-wrap;
  position: absolute;
}
.designer .designer-stage .designer-note .designer-note-body {
  opacity: 0.75;
  cursor: pointer;
}
.designer .designer-stage .designer-note .designer-note-header {
  fill: #FFD260;
  cursor: move;
}
.designer .designer-stage .designer-note .designer-note-resize {
  opacity: 0;
  cursor: se-resize;
}
.designer .designer-stage .designer-note .designer-note-duplicate {
  opacity: 0.5;
  -webkit-transform: translate(12px, 12px);
  -ms-transform: translate(12px, 12px);
  -o-transform: translate(12px, 12px);
  transform: translate(12px, 12px);
  cursor: pointer;
}
.designer .designer-stage .designer-note .designer-note-duplicate polygon,
.designer .designer-stage .designer-note .designer-note-duplicate rect {
  fill: #3f3f3f;
}
.designer .designer-stage .designer-note .designer-note-duplicate .designer-note-bg {
  fill: transparent;
}
.designer .designer-stage .designer-note .designer-note-duplicate:hover {
  opacity: 1;
}
.designer .designer-stage .designer-note .designer-note-remove {
  opacity: 0.5;
  -webkit-transform: translate(184px, 14px);
  -ms-transform: translate(184px, 14px);
  -o-transform: translate(184px, 14px);
  transform: translate(184px, 14px);
  cursor: pointer;
}
.designer .designer-stage .designer-note .designer-note-remove line {
  stroke: #3f3f3f;
  stroke-width: 3;
  stroke-miterlimit: 10;
}
.designer .designer-stage .designer-note .designer-note-remove .designer-note-bg {
  fill: transparent;
}
.designer .designer-stage .designer-note .designer-note-remove:hover {
  opacity: 1;
}
.designer .designer-stage .designer-note .designer-note-title {
  pointer-events: none;
  -webkit-transform: translate(104px, 24px);
  -ms-transform: translate(104px, 24px);
  -o-transform: translate(104px, 24px);
  transform: translate(104px, 24px);
}
.designer .designer-stage .designer-note .designer-note-title text {
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.designer .designer-stage .designer-note .designer-note-text {
  -webkit-transform: translate(10px, 61px);
  -ms-transform: translate(10px, 61px);
  -o-transform: translate(10px, 61px);
  transform: translate(10px, 61px);
  pointer-events: none;
}
.designer .designer-stage .designer-note .designer-note-text text {
  font-size: 14px;
  fill: #808080;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.designer .designer-stage .designer-note.selected .designer-note-header {
  fill: #f9b300;
}
.designer .designer-stage .designer-edge .designer-edge-path {
  stroke: #CCCCCC;
  stroke-width: 3;
  fill: none;
  opacity: 0.2;
}
.designer .designer-stage .designer-edge .designer-edge-path.designer-edge-path-dashed {
  stroke: #CCCCCC;
  stroke-dasharray: 3, 3;
  opacity: 1;
}
.designer .designer-stage .designer-edge .designer-edge-path.designer-edge-path-dashed.hover {
  stroke: #999999;
}
.designer .designer-stage .designer-edge .designer-edge-connector {
  width: 4px;
  height: 6px;
  fill: #999999;
}
.designer .designer-stage .designer-edge .designer-edge-toggle {
  cursor: pointer;
  z-index: 999999999999999;
  display: block;
  position: absolute;
}
.designer .designer-stage .designer-edge .designer-edge-toggle circle {
  fill: #CCCCCC;
}
.designer .designer-stage .designer-edge .designer-edge-toggle path {
  fill: #3F3F3F;
}
.designer .designer-stage .designer-edge .designer-edge-toggle:hover circle {
  fill: #999999;
}
.designer .designer-stage .designer-edge .designer-edge-toggle:hover path {
  fill: #E6E6E6;
}
.designer .designer-stage .designer-edge .designer-edge-port {
  width: 10px;
  height: 8px;
  fill: #999999;
}
.designer .designer-stage .designer-edge .designer-edge-port.designer-edge-port-source {
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  transform: translate(-5px, -8px) rotate(0deg);
}
.designer .designer-stage .designer-edge .designer-edge-port.designer-edge-port-target {
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  transform: translate(-5px, 0px) rotate(0deg);
  display: none !important;
}
.designer .designer-stage .designer-edge.connector .designer-edge-connector {
  fill: #0AB3E5;
}
.designer .designer-stage .designer-edge.failure .designer-edge-path {
  stroke: #E54C40;
}
.designer .designer-stage .designer-edge.failure .designer-edge-toggle circle {
  fill: #E54C40;
}
.designer .designer-stage .designer-edge.completion .designer-edge-path {
  stroke: #0AB3E5;
}
.designer .designer-stage .designer-edge.completion .designer-edge-toggle circle {
  fill: #0AB3E5;
}
.designer .designer-stage .designer-edge.success .designer-edge-path {
  stroke: #39E98D;
}
.designer .designer-stage .designer-edge.success .designer-edge-toggle circle {
  fill: #39E98D;
}
.designer .designer-stage .designer-component .designer-component-edit .designer-component-edit-hit-area {
  width: 50px;
  height: 30px;
  pointer-events: none;
  fill: transparent;
}
.designer .designer-stage .designer-component .designer-component-edit .designer-component-edit-text {
  -webkit-transform: translate(10px, 20px);
  -ms-transform: translate(10px, 20px);
  -o-transform: translate(10px, 20px);
  transform: translate(10px, 20px);
  font-size: 9px;
  pointer-events: none;
  fill: #CCCCCC;
  letter-spacing: 1px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.designer .designer-stage .designer-component .designer-component-bg {
  fill: #fff;
  cursor: grab;
  width: 140px;
  height: 84px;
}
.designer .designer-stage .designer-component .designer-component-bg-new {
  cursor: grab;
  width: 140px;
  height: 84px;
}
.designer .designer-stage .designer-component .designer-component-border {
  fill: #a5a5a5;
  pointer-events: none;
}
.designer .designer-stage .designer-component .designer-component-name {
  font-size: 13px;
  font-weight: 400;
  fill: #808080;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
.designer .designer-stage .designer-component .designer-component-add {
  -webkit-transform: translate(0, 81px);
  -ms-transform: translate(0, 81px);
  -o-transform: translate(0, 81px);
  transform: translate(0, 81px);
  cursor: pointer;
  opacity: 1;
}
.designer .designer-stage .designer-component .designer-component-add.invisible {
  opacity: 0;
}
.designer .designer-stage .designer-component .designer-component-add rect {
  fill: #0ab3e5;
  width: 140px;
  height: 0px;
  rx: 0;
  ry: 0;
}
.designer .designer-stage .designer-component .designer-component-add path {
  -webkit-transform: translate(0, 0px);
  -ms-transform: translate(0, 0px);
  -o-transform: translate(0, 0px);
  transform: translate(0, 0px);
  fill: #0ab3e5;
}
.designer .designer-stage .designer-component .designer-component-add polygon {
  -webkit-transform: translate(63px, 9px);
  -ms-transform: translate(63px, 9px);
  -o-transform: translate(63px, 9px);
  transform: translate(63px, 9px);
  fill: #3F3F3F;
  opacity: 0;
  pointer-events: none;
}
.designer .designer-stage .designer-component .designer-component-add.ui-draggable-dragging {
  cursor: move;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.designer .designer-stage .designer-component .designer-component-add.ui-draggable-dragging rect {
  fill: #0ab3e5;
  width: 28px;
  height: 28px;
  rx: 14px;
  ry: 14px;
  display: none !important;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.designer .designer-stage .designer-component .designer-component-icon {
  transform: translate(53px, 16px);
  opacity: 0.8;
  pointer-events: none;
}
.designer .designer-stage .designer-component .designer-component-remove,
.designer .designer-stage .designer-component .designer-component-duplicate {
  cursor: pointer;
  opacity: 0;
  transition: opacity 150ms;
  display: none;
}
.designer .designer-stage .designer-component .designer-component-remove .designer-component-circle-bg,
.designer .designer-stage .designer-component .designer-component-duplicate .designer-component-circle-bg {
  fill: #ffffff;
}
.designer .designer-stage .designer-component .designer-component-remove .designer-component-circle-border,
.designer .designer-stage .designer-component .designer-component-duplicate .designer-component-circle-border {
  fill: none;
  stroke: #a5a5a5;
  stroke-width: 3;
  stroke-miterlimit: 10;
  pointer-events: none;
}
.designer .designer-stage .designer-component .designer-component-remove:hover .designer-component-circle-border,
.designer .designer-stage .designer-component .designer-component-duplicate:hover .designer-component-circle-border {
  stroke: #808080;
}
.designer .designer-stage .designer-component .designer-component-hover {
  fill: transparent;
  -webkit-transform: translate(0, -44px);
  -ms-transform: translate(0, -44px);
  -o-transform: translate(0, -44px);
  transform: translate(0, -44px);
}
.designer .designer-stage .designer-component .designer-component-remove {
  transform: translate(140px, -8px);
}
.designer .designer-stage .designer-component .designer-component-remove .designer-component-circle-icon {
  fill: #E54C40;
  pointer-events: none;
}
.designer .designer-stage .designer-component .designer-component-duplicate {
  transform: translate(108px, -46px);
}
.designer .designer-stage .designer-component .designer-component-duplicate .designer-component-circle-icon {
  fill: #3F3F3F;
  pointer-events: none;
}
.designer .designer-stage .designer-component .designer-component-port-target {
  -webkit-transform: translate(65px, -8px);
  -ms-transform: translate(65px, -8px);
  -o-transform: translate(65px, -8px);
  transform: translate(65px, -8px);
}
.designer .designer-stage .designer-component .designer-component-port-target polygon {
  pointer-events: none;
  fill: #999999;
}
.designer .designer-stage .designer-component .designer-component-port-source {
  -webkit-transform: translate(65px, 84px);
  -ms-transform: translate(65px, 84px);
  -o-transform: translate(65px, 84px);
  transform: translate(65px, 84px);
}
.designer .designer-stage .designer-component .designer-component-port-source rect {
  pointer-events: none;
  fill: #999999;
  width: 10px;
  height: 8px;
}
.designer .designer-stage .designer-component.hover .designer-component-border {
  fill: #7f7f7f;
}
.designer .designer-stage .designer-component.hover .designer-component-edit-text {
  fill: #0AB3E5;
}
.designer .designer-stage .designer-component:active .designer-component-bg {
  cursor: grabbing;
}
.designer .designer-stage .designer-component.invalid .designer-component-bg {
  opacity: 0.75;
  fill: url('#component-invalid');
}
.designer .designer-stage .designer-component.target .designer-component-port-target polygon {
  fill: #0AB3E5;
}
.designer .designer-stage .designer-component.hover:not(.connecting) .designer-component-remove,
.designer .designer-stage .designer-component.hover:not(.connecting) .designer-component-duplicate {
  opacity: 1;
  display: block;
}
.designer .designer-stage .designer-component.hover:not(.connecting) .designer-component-add rect {
  height: 28px;
}
.designer .designer-stage .designer-component.hover:not(.connecting) .designer-component-add path {
  -webkit-transform: translate(0, 27px);
  -ms-transform: translate(0, 27px);
  -o-transform: translate(0, 27px);
  transform: translate(0, 27px);
}
.designer .designer-stage .designer-component.hover:not(.connecting) .designer-component-add polygon {
  opacity: 1;
}
.designer .designer-stage .designer-component.hover:not(.connecting) .designer-component-bg {
  opacity: 1;
}
.designer .designer-stage .designer-component.selected .designer-component-border {
  fill: #808080;
}
.designer .designer-stage .designer-component.selected .designer-component-icon {
  opacity: 1;
}
.designer .designer-stage .designer-component.selected .designer-component-name {
  fill: #3F3F3F;
}
.designer .designer-stage .designer-component.selected .designer-component-border,
.designer .designer-stage .designer-component.connectable .designer-component-border {
  fill: #0AB3E5;
}
.designer .designer-stage .designer-component.selected .designer-component-name,
.designer .designer-stage .designer-component.connectable .designer-component-name {
  fill: #0AB3E5;
}
.designer .designer-stage.selecting {
  cursor: default;
}
.designer .designer-stage.selecting .designer-component {
  pointer-events: none;
}
.designer .designer-stage.selecting .designer-note {
  pointer-events: none;
}
.designer .designer-stage.selecting .designer-edge {
  pointer-events: none;
}
.designer .designer-map-new {
  bottom: 94px;
  right: 14px;
}
.designer .designer-map {
  bottom: 14px;
  right: 14px;
}
.designer .designer-map,
.designer .designer-map-new {
  position: absolute;
  border-top-left-radius: 5px;
  padding: 2px 0 0 32px;
  background-color: #5d5d5d;
  z-index: 99999;
  -webkit-transform: translate(13px, 13px);
  -ms-transform: translate(13px, 13px);
  -o-transform: translate(13px, 13px);
  transform: translate(13px, 13px);
}
.designer .designer-map .designer-map-wrapper,
.designer .designer-map-new .designer-map-wrapper {
  background-color: #fff;
  position: relative;
}
.designer .designer-map .designer-map-wrapper .designer-map-viewport-new,
.designer .designer-map-new .designer-map-wrapper .designer-map-viewport-new {
  cursor: move;
  background: transparent;
  border: 1px dashed #808080;
  position: absolute;
}
.designer .designer-map .designer-map-wrapper .designer-map-svg,
.designer .designer-map-new .designer-map-wrapper .designer-map-svg {
  z-index: 0;
}
.designer .designer-map .designer-map-wrapper .designer-map-svg .designer-map-viewport,
.designer .designer-map-new .designer-map-wrapper .designer-map-svg .designer-map-viewport {
  cursor: move;
  fill: transparent;
  stroke-width: 1;
  stroke: #808080;
}
@media (min-width: 1200px) {
  .designer .designer-map .designer-map-wrapper .designer-map-svg .designer-map-viewport,
  .designer .designer-map-new .designer-map-wrapper .designer-map-svg .designer-map-viewport {
    stroke-dasharray: 3, 1;
  }
}
@media (min-width: 1200px) {
  .designer .designer-map .designer-map-wrapper .designer-map-svg .designer-map-viewport,
  .designer .designer-map-new .designer-map-wrapper .designer-map-svg .designer-map-viewport {
    stroke-dasharray: 4, 2;
  }
}
@media (min-width: 1200px) {
  .designer .designer-map .designer-map-wrapper .designer-map-svg .designer-map-viewport,
  .designer .designer-map-new .designer-map-wrapper .designer-map-svg .designer-map-viewport {
    stroke-dasharray: 5, 3;
  }
}
.designer .designer-map .designer-map-wrapper .designer-map-svg .designer-map-overlay,
.designer .designer-map-new .designer-map-wrapper .designer-map-svg .designer-map-overlay {
  fill: rgba(230, 230, 230, 0.8);
}
.designer .designer-map .designer-map-wrapper .designer-map-svg .designer-map-edge,
.designer .designer-map-new .designer-map-wrapper .designer-map-svg .designer-map-edge {
  stroke-width: 0.5;
  stroke: #AFAFAF;
  pointer-events: none;
}
.designer .designer-map .designer-map-wrapper .designer-map-svg .designer-map-component,
.designer .designer-map-new .designer-map-wrapper .designer-map-svg .designer-map-component {
  fill: #5d5d5d;
  pointer-events: none;
}
.designer .designer-map .designer-map-wrapper .designer-map-svg .designer-map-component.selected,
.designer .designer-map-new .designer-map-wrapper .designer-map-svg .designer-map-component.selected {
  fill: #0AB3E5;
}
.designer .designer-map .designer-map-wrapper .designer-map-svg .designer-map-note,
.designer .designer-map-new .designer-map-wrapper .designer-map-svg .designer-map-note {
  fill: #FFD260;
}
.designer .designer-map .designer-map-wrapper .designer-map-svg .designer-map-note.selected,
.designer .designer-map-new .designer-map-wrapper .designer-map-svg .designer-map-note.selected {
  fill: #f9b300;
}
.designer .designer-map .designer-map-wrapper .designer-map-buttons,
.designer .designer-map-new .designer-map-wrapper .designer-map-buttons {
  position: absolute;
  bottom: 4px;
  left: -29px;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.designer .designer-map .designer-map-wrapper .designer-map-buttons button,
.designer .designer-map-new .designer-map-wrapper .designer-map-buttons button {
  width: 25px;
  height: 25px;
  border: 0 none;
  background-color: transparent;
  padding: 0;
  margin-top: 4px;
  outline: none !important;
}
.designer .designer-map .designer-map-wrapper .designer-map-buttons .tooltip-inner,
.designer .designer-map-new .designer-map-wrapper .designer-map-buttons .tooltip-inner {
  white-space: nowrap;
}
.designer .designer-debug {
  position: fixed;
  top: 100px;
  right: 20px;
  width: 300px;
}
.designer .designer-debug .panel {
  margin-bottom: 5px;
}
.designer .designer-debug .panel .panel-heading,
.designer .designer-debug .panel .panel-body {
  padding: 5px;
}
.designer .designer-debug .panel .panel-heading .label {
  font-size: 12px;
  font-weight: 300;
}
.designer .designer-debug .panel .panel-body .panel-row {
  display: flex;
}
.designer .designer-debug .panel .panel-body .panel-row .panel-cell {
  flex: 1;
}
@keyframes dash {
  to {
    stroke-dashoffset: -6;
  }
}
.designer-package-view {
  position: absolute;
  top: 80px;
  left: 18px;
  z-index: 10;
}
.designer-package-view .designer-package-view-wrapper {
  position: relative;
  overflow: scroll;
  max-height: 800px;
  max-width: 520px;
  overflow-y: auto;
  border-radius: 5px;
}
.designer-package-view .designer-package-view-wrapper .angular-json-explorer {
  background-color: rgba(255, 255, 255, 0.2);
}
.designer-package-view .designer-package-view-wrapper .angular-json-explorer:hover {
  background-color: #ffffff;
}
.dropdown-menu-new li.disabled {
  opacity: 0.65;
  pointer-events: none;
  cursor: not-allowed;
  background-color: #ffffff;
}
.dropdown-menu-new li a {
  color: #3F3F3F;
  padding: 5px 10px;
  line-height: 16px;
  cursor: pointer;
  width: 100%;
}
.dropdown-menu-new li a:hover {
  background-color: #EEE;
}
.dropdown-menu-new li a svg {
  margin-right: 5px;
  -webkit-transform: translate(0, 2px);
  -ms-transform: translate(0, 2px);
  -o-transform: translate(0, 2px);
  transform: translate(0, 2px);
}
.selected .designer-note-header {
  fill: #f9b300 !important;
}
.component-previewer {
  display: flex;
  flex-flow: column;
}
.component-previewer .btn {
  margin: 10px 0;
  width: 180px;
  align-self: flex-end;
  padding: 10px 25px;
}
.component-previewer .btn .badge {
  text-transform: uppercase;
  font-size: 9px;
  border-radius: 5px;
}
.component-previewer .progress-bar-container {
  width: 100%;
}
.component-previewer .payload-container {
  width: 100%;
  overflow: auto;
  display: flex;
  flex-flow: column;
}
.component-previewer .payload-container .failed {
  color: red;
}
.nav-stacked li {
  z-index: 1;
}
.nav-stacked li i,
.nav-stacked li span {
  color: #fff;
  float: left;
}
.nav-stacked li i {
  text-align: center;
}
.nav-stacked li span {
  display: inline-block;
}
.nav-stacked.moving-selector .selector {
  top: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.2);
  border-left: 3px solid #0AB3E5;
  -webkit-transition: top 250ms cubic-bezier(0.18, 1, 0.87, 0.98);
  -moz-transition: top 250ms cubic-bezier(0.18, 1, 0.87, 0.98);
  -o-transition: top 250ms cubic-bezier(0.18, 1, 0.87, 0.98);
  transition: top 250ms cubic-bezier(0.18, 1, 0.87, 0.98);
}
.navbar .flex {
  display: flex;
  justify-content: space-between;
  padding: 6px 10px 0 5px;
}
.navbar .flex .flex-box {
  flex: 0 auto;
}
.navbar .flex .flex-box.navbar-sidebar-toggle {
  width: 60px;
}
.navbar .flex .flex-box.navbar-search {
  flex: 1 auto;
  width: 100%;
}
.navbar .flex .flex-box.navbar-new-btn {
  width: 90px;
}
.navbar .flex .flex-box.navbar-new-btn button {
  float: right;
}
.sidebar {
  height: 100%;
}
.sidebar-main {
  height: 100%;
  position: relative;
  float: left;
  background-color: #3F3F3F;
  width: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.sidebar-main .menu-top {
  width: 50px;
  display: flex;
  flex-direction: column;
}
.sidebar-main .menu-top li {
  margin-top: 20px;
  height: 30px;
  align-self: center;
}
.sidebar-main .menu-top li a {
  display: flex;
  padding-left: 11px;
  padding-right: 13px;
  width: 50px;
}
.sidebar-main .menu-top li a[disabled='disabled'] {
  cursor: not-allowed !important;
  filter: alpha(opacity=65);
  opacity: 0.65;
}
.sidebar-main .menu-top li svg.icons-master-expanded_icon-navmain-schedules,
.sidebar-main .menu-top li i.icons-master-expanded_icon-navmain-schedules {
  color: #d8d8d8;
}
.sidebar-main .menu-top li svg.icon,
.sidebar-main .menu-top li i.icon {
  margin-left: auto;
  margin-right: auto;
}
.sidebar-main .menu-center {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.sidebar-main .menu-center .title {
  transform: rotate(-90deg);
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  height: 50px;
  white-space: nowrap;
  line-height: 50px;
  text-shadow: 1px 1px #929292;
}
.sidebar-main .menu-bottom {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.sidebar-main .item-desc {
  display: none;
}
.sidebar-main .user-name {
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
  text-transform: capitalize;
  line-height: 50px;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  padding-top: 20px;
}
.sidebar-main .user-name .user-account-name {
  color: #b3b3b3;
}
.sidebar-main .user-avatar {
  min-width: 40px;
  min-height: 40px;
  height: 40px;
  margin-bottom: 50px;
  max-width: 100%;
  cursor: pointer;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  opacity: 0.7;
}
.sidebar-main .user-avatar:hover {
  opacity: 1;
}
.sidebar-main .user-logo {
  width: 40px;
}
.sidebar-main .popover {
  overflow-y: auto;
  height: 50%;
  white-space: nowrap;
}
.sidebar-main .dropup {
  position: absolute;
  bottom: 0;
  left: 0;
}
.sidebar-main .dropup svg,
.sidebar-main .dropup i {
  position: absolute;
  left: 20px;
}
.sidebar-main .dropup svg.fa,
.sidebar-main .dropup i.fa {
  font-size: 18px;
}
.sidebar-main .dropup span {
  padding-left: 25px;
}
.sidebar-sub {
  z-index: 1;
  border-right: 1px solid #CCCCCC;
  display: flex;
  background-color: #fff;
}
.sidebar-sub .sub-menu {
  padding-top: 20px;
  padding-left: 15px;
}
.sidebar-sub .sub-menu-header {
  text-decoration: underline;
}
.sidebar-sub ul {
  margin-bottom: 30px;
}
.sidebar-sub li {
  text-decoration: none;
  margin-top: 10px;
}
.sidebar-sub li a {
  color: #999999;
}
.sidebar-sub li a:hover,
.sidebar-sub li a:visited {
  text-decoration: none;
}
.sidebar-sub li.active a {
  color: #0AB3E5;
}
.sidebar-sub li.active a:after {
  font-family: 'FontAwesome';
  content: '\f0da';
  margin-left: 7px;
  font-size: 14px;
  vertical-align: top;
}
.sidebar-sub li[disabled] a {
  pointer-events: none;
}
.sidebar-accounts-menu {
  height: auto !important;
  border: 0;
  padding: 0;
}
.sidebar-accounts-menu .popover-content {
  overflow-x: hidden;
  border: 0;
  padding: 0;
}
.sidebar-accounts-menu .popover-content .list-group {
  margin: 0;
}
.sidebar-accounts-menu .popover-content .list-group-item {
  cursor: pointer !important;
  white-space: nowrap;
  min-width: 200px;
  padding: 5px 10px;
}
.sidebar-accounts-menu .popover-content .list-group-item:hover {
  background-color: #E6E6E6;
}
.sidebar-accounts-menu .popover-title {
  padding: 12px 14px 10px;
}
.sidebar-accounts-menu .popover-footer .btn {
  color: #3F3F3F;
  margin: 7px;
}
.sidebar-accounts-menu .popover-footer .btn::after {
  font-family: 'FontAwesome';
  content: '\f08b';
  margin-left: 8px;
  color: #808080;
  vertical-align: top;
}
.sidebar-accounts-menu .popover-footer .btn:hover {
  background-color: #fff;
}
.user-menu {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 60px;
  padding: 8px;
  cursor: pointer;
  text-align: center;
}
.user-menu .user-menu-notifications {
  position: absolute;
  top: 70px;
  left: 75px;
  font-size: 12px;
  font-weight: 700;
  background-color: #FFD260;
  display: block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
}
.user-menu svg {
  width: 100px;
  height: 100px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.accounts-menu-item {
  height: auto !important;
  padding: 0 !important;
  overflow: visible !important;
  cursor: default !important;
}
.accounts-menu-panel {
  margin-left: 50px;
  margin-bottom: -43px;
  overflow: visible !important;
  cursor: default !important;
}
.accounts-menu {
  position: relative;
  flex: 0 auto;
  text-align: left;
}
.accounts-menu .accounts-menu-wrapper .accounts-menu-header {
  background-color: #E6E6E6;
  border-radius: 5px 5px 0 0;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 15px;
}
.accounts-menu .accounts-menu-wrapper .accounts-menu-body {
  background-color: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.accounts-menu .accounts-menu-wrapper .accounts-menu-body .accounts-menu-list {
  max-height: calc(100vh - 200px);
  background-color: #fff;
  text-align: left;
  padding: 0;
  margin: 0;
}
.accounts-menu .accounts-menu-wrapper .accounts-menu-body .accounts-menu-list .accounts-menu-list-item {
  height: 35px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 15px;
  border-top: 1px solid #E6E6E6;
  overflow: hidden;
  width: 162px;
  cursor: pointer;
}
.accounts-menu .accounts-menu-wrapper .accounts-menu-body .accounts-menu-list .accounts-menu-list-item .accounts-menu-link {
  color: #3F3F3F;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 15px;
}
.accounts-menu .accounts-menu-wrapper .accounts-menu-body .accounts-menu-list .accounts-menu-list-item.active {
  cursor: default;
  background-color: #0AB3E5;
}
.accounts-menu .accounts-menu-wrapper .accounts-menu-body .accounts-menu-list .accounts-menu-list-item.active .accounts-menu-link {
  color: #fff;
}
.accounts-menu .accounts-menu-wrapper .accounts-menu-body .accounts-menu-list .accounts-menu-list-item:hover {
  color: #3F3F3F;
  background-color: #f5f5f5;
}
.accounts-menu .accounts-menu-wrapper .accounts-menu-footer {
  position: relative;
  padding: 4px;
  border-radius: 0 0 5px 5px;
  background-color: #E6E6E6;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.accounts-menu .accounts-menu-wrapper .accounts-menu-footer:before,
.accounts-menu .accounts-menu-wrapper .accounts-menu-footer:after {
  display: table;
  content: " ";
}
.accounts-menu .accounts-menu-wrapper .accounts-menu-footer:after {
  clear: both;
}
.accounts-menu .accounts-menu-wrapper .accounts-menu-footer:before,
.accounts-menu .accounts-menu-wrapper .accounts-menu-footer:after {
  display: table;
  content: " ";
}
.accounts-menu .accounts-menu-wrapper .accounts-menu-footer:after {
  clear: both;
}
.accounts-menu .accounts-menu-wrapper .accounts-menu-footer a::after {
  font-family: 'FontAwesome';
  content: '\f08b';
  margin-left: 8px;
  color: #808080;
  vertical-align: top;
}
.accounts-menu .accounts-menu-wrapper .accounts-menu-footer .accounts-menu-arrow {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 10px;
  top: 18px;
  left: -10px;
  margin-top: -10px;
  border-left-width: 0;
  border-right-color: #E6E6E6;
}
@media (max-width: 1199px) {
  .modal {
    top: 0;
    right: 0;
    left: auto;
    overflow: visible !important;
    min-width: 1100px;
    opacity: 1 !important;
  }
  .modal .modal-btn-close {
    position: absolute;
    top: 0px;
    left: -44px;
    border-right: 1px solid #CCCCCC;
    z-index: 2000;
    cursor: pointer;
    width: 45px;
    height: 100%;
    background-color: #f3f3f3;
    display: none;
  }
  .modal .modal-btn-close:hover {
    background-color: #E6E6E6;
  }
  .modal .modal-btn-close:hover span {
    color: #3F3F3F;
  }
  .modal .modal-btn-close:hover:after {
    color: #3F3F3F;
  }
  .modal .modal-btn-close span {
    position: absolute;
    display: block;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    color: #bfbfbf;
    width: 100%;
    white-space: nowrap;
    top: 50%;
  }
  .modal .modal-btn-close:after {
    font-family: 'FontAwesome';
    background: transparent;
    content: '\00D7';
    font-size: 26px;
    font-weight: 400;
    color: #CCCCCC;
    display: block;
    margin: 0;
    width: 100%;
    height: 52px;
    text-align: center;
    line-height: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .modal .modal-btn-back {
    position: absolute;
    top: 0px;
    left: -44px;
    border-right: 1px solid #CCCCCC;
    z-index: 2000;
    cursor: pointer;
    width: 45px;
    height: 100%;
    background-color: #676767;
    display: none;
  }
  .modal .modal-btn-back.new {
    display: block;
  }
  .modal .modal-btn-back.active {
    display: block;
  }
  .modal .modal-btn-back:hover {
    background-color: #737373;
  }
  .modal .modal-btn-back:hover span {
    color: #fff;
  }
  .modal .modal-btn-back:hover:after {
    color: #fff;
  }
  .modal .modal-btn-back span {
    position: absolute;
    display: block;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    color: #bfbfbf;
    width: 100%;
    white-space: nowrap;
    top: 50%;
  }
  .modal .modal-btn-back:after {
    font-family: 'FontAwesome';
    background: transparent;
    content: '\f104';
    font-size: 26px;
    font-weight: 400;
    color: #CCCCCC;
    display: block;
    margin: 0;
    width: 100%;
    height: 52px;
    text-align: center;
    line-height: 52px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .modal.in .modal-btn-close {
    display: block;
  }
  .modal .modal-dialog {
    margin: 0 auto;
    background-color: #E6E6E6;
    height: 100%;
    -webkit-transition-duration: 150ms !important;
    transition-duration: 150ms !important;
  }
  .modal .modal-dialog .modal-body {
    position: relative;
    overflow: hidden;
    padding-bottom: 120px !important;
    background-color: #E6E6E6;
    height: 100%;
    z-index: 0;
  }
  .modal .modal-dialog .modal-body.no-padding {
    padding: 0 !important;
    background-color: #fff;
  }
  .modal .modal-dialog .modal-body .generic-list {
    padding-right: 20px;
  }
  .modal .modal-dialog .modal-footer {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 100%;
    bottom: 0;
    display: flex;
    background-color: #fff;
    text-align: left;
    z-index: 1;
    height: 80px;
  }
  .modal .modal-dialog .modal-footer.has-description.has-icon .modal-icon {
    transform: translate(-50%, -50%);
    left: 40px;
    top: 50%;
  }
  .modal .modal-dialog .modal-footer.has-description.has-icon .modal-title {
    font-size: 18px;
    font-weight: 300;
    margin-top: 5px;
  }
  .modal .modal-dialog .modal-footer.has-description.has-icon .modal-title::after {
    font-family: 'FontAwesome';
    content: '\f040';
    color: #CCCCCC;
    display: block;
    font-size: 18px;
    position: absolute;
    right: 0;
    top: 0px;
  }
  .modal .modal-dialog .modal-footer .modal-icon {
    position: absolute;
    top: 30px;
    left: 30px;
  }
  .modal .modal-dialog .modal-footer .modal-title-container {
    margin-left: 10px;
    white-space: nowrap;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .modal .modal-dialog .modal-footer .modal-title {
    font-weight: 700;
    margin: 0;
    padding: 0;
    color: #0AB3E5;
    width: 50%;
  }
  .modal .modal-dialog .modal-footer .modal-description {
    font-size: 12px;
    font-weight: 300;
    margin: 0;
    color: #a6a6a6;
  }
  .modal .modal-dialog .modal-footer .btn.modal-btn-extra {
    margin-right: 20px;
  }
  .modal .modal-dialog .modal-footer .btn.modal-btn-extra i {
    margin-right: 10px;
  }
  .modal .modal-dialog .modal-footer.has-icon .modal-title {
    -webkit-transform: translate(54px, -4px);
    -ms-transform: translate(54px, -4px);
    -o-transform: translate(54px, -4px);
    transform: translate(54px, -4px);
    border-bottom: 1px solid #CCCCCC;
    width: 50%;
    outline: none;
  }
  .modal .modal-dialog .modal-footer.has-icon .modal-description {
    -webkit-transform: translate(54px, -4px);
    -ms-transform: translate(54px, -4px);
    -o-transform: translate(54px, -4px);
    transform: translate(54px, -4px);
  }
  .modal.fade .modal-dialog {
    opacity: 1 !important;
    -webkit-transition: -webkit-transform 150ms cubic-bezier(0, 0, 1, 0);
    -moz-transition: -moz-transform 150ms cubic-bezier(0, 0, 1, 0);
    -o-transition: -o-transform 150ms cubic-bezier(0, 0, 1, 0);
    transition: transform 150ms cubic-bezier(0, 0, 1, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  .modal.in .modal-dialog {
    opacity: 1 !important;
    -webkit-transition: -webkit-transform 2s cubic-bezier(0.19, 0.77, 0.43, 0.98);
    -moz-transition: -moz-transform 2s cubic-bezier(0.19, 0.77, 0.43, 0.98);
    -o-transition: -o-transform 2s cubic-bezier(0.19, 0.77, 0.43, 0.98);
    transition: transform 2s cubic-bezier(0.19, 0.77, 0.43, 0.98);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .modal.thin {
    min-width: 720px;
  }
  .modal.thin .modal-dialog {
    width: 720px;
  }
  .modal {
    width: 100%;
  }
}
@media (min-width: 1200px) and (max-width: 1199px) {
  .modal {
    top: 0;
    right: 0;
    left: auto;
    overflow: visible !important;
    min-width: 1100px;
    opacity: 1 !important;
  }
  .modal .modal-btn-close {
    position: absolute;
    top: 0px;
    left: -44px;
    border-right: 1px solid #CCCCCC;
    z-index: 2000;
    cursor: pointer;
    width: 45px;
    height: 100%;
    background-color: #f3f3f3;
    display: none;
  }
  .modal .modal-btn-close:hover {
    background-color: #E6E6E6;
  }
  .modal .modal-btn-close:hover span {
    color: #3F3F3F;
  }
  .modal .modal-btn-close:hover:after {
    color: #3F3F3F;
  }
  .modal .modal-btn-close span {
    position: absolute;
    display: block;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    color: #bfbfbf;
    width: 100%;
    white-space: nowrap;
    top: 50%;
  }
  .modal .modal-btn-close:after {
    font-family: 'FontAwesome';
    background: transparent;
    content: '\00D7';
    font-size: 26px;
    font-weight: 400;
    color: #CCCCCC;
    display: block;
    margin: 0;
    width: 100%;
    height: 52px;
    text-align: center;
    line-height: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .modal .modal-btn-back {
    position: absolute;
    top: 0px;
    left: -44px;
    border-right: 1px solid #CCCCCC;
    z-index: 2000;
    cursor: pointer;
    width: 45px;
    height: 100%;
    background-color: #676767;
    display: none;
  }
  .modal .modal-btn-back.new {
    display: block;
  }
  .modal .modal-btn-back.active {
    display: block;
  }
  .modal .modal-btn-back:hover {
    background-color: #737373;
  }
  .modal .modal-btn-back:hover span {
    color: #fff;
  }
  .modal .modal-btn-back:hover:after {
    color: #fff;
  }
  .modal .modal-btn-back span {
    position: absolute;
    display: block;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    color: #bfbfbf;
    width: 100%;
    white-space: nowrap;
    top: 50%;
  }
  .modal .modal-btn-back:after {
    font-family: 'FontAwesome';
    background: transparent;
    content: '\f104';
    font-size: 26px;
    font-weight: 400;
    color: #CCCCCC;
    display: block;
    margin: 0;
    width: 100%;
    height: 52px;
    text-align: center;
    line-height: 52px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .modal.in .modal-btn-close {
    display: block;
  }
  .modal .modal-dialog {
    margin: 0 auto;
    background-color: #E6E6E6;
    height: 100%;
    -webkit-transition-duration: 150ms !important;
    transition-duration: 150ms !important;
  }
  .modal .modal-dialog .modal-body {
    position: relative;
    overflow: hidden;
    padding-bottom: 120px !important;
    background-color: #E6E6E6;
    height: 100%;
    z-index: 0;
  }
  .modal .modal-dialog .modal-body.no-padding {
    padding: 0 !important;
    background-color: #fff;
  }
  .modal .modal-dialog .modal-body .generic-list {
    padding-right: 20px;
  }
  .modal .modal-dialog .modal-footer {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 100%;
    bottom: 0;
    display: flex;
    background-color: #fff;
    text-align: left;
    z-index: 1;
    height: 80px;
  }
  .modal .modal-dialog .modal-footer.has-description.has-icon .modal-icon {
    transform: translate(-50%, -50%);
    left: 40px;
    top: 50%;
  }
  .modal .modal-dialog .modal-footer.has-description.has-icon .modal-title {
    font-size: 18px;
    font-weight: 300;
    margin-top: 5px;
  }
  .modal .modal-dialog .modal-footer.has-description.has-icon .modal-title::after {
    font-family: 'FontAwesome';
    content: '\f040';
    color: #CCCCCC;
    display: block;
    font-size: 18px;
    position: absolute;
    right: 0;
    top: 0px;
  }
  .modal .modal-dialog .modal-footer .modal-icon {
    position: absolute;
    top: 30px;
    left: 30px;
  }
  .modal .modal-dialog .modal-footer .modal-title-container {
    margin-left: 10px;
    white-space: nowrap;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .modal .modal-dialog .modal-footer .modal-title {
    font-weight: 700;
    margin: 0;
    padding: 0;
    color: #0AB3E5;
    width: 50%;
  }
  .modal .modal-dialog .modal-footer .modal-description {
    font-size: 12px;
    font-weight: 300;
    margin: 0;
    color: #a6a6a6;
  }
  .modal .modal-dialog .modal-footer .btn.modal-btn-extra {
    margin-right: 20px;
  }
  .modal .modal-dialog .modal-footer .btn.modal-btn-extra i {
    margin-right: 10px;
  }
  .modal .modal-dialog .modal-footer.has-icon .modal-title {
    -webkit-transform: translate(54px, -4px);
    -ms-transform: translate(54px, -4px);
    -o-transform: translate(54px, -4px);
    transform: translate(54px, -4px);
    border-bottom: 1px solid #CCCCCC;
    width: 50%;
    outline: none;
  }
  .modal .modal-dialog .modal-footer.has-icon .modal-description {
    -webkit-transform: translate(54px, -4px);
    -ms-transform: translate(54px, -4px);
    -o-transform: translate(54px, -4px);
    transform: translate(54px, -4px);
  }
  .modal.fade .modal-dialog {
    opacity: 1 !important;
    -webkit-transition: -webkit-transform 150ms cubic-bezier(0, 0, 1, 0);
    -moz-transition: -moz-transform 150ms cubic-bezier(0, 0, 1, 0);
    -o-transition: -o-transform 150ms cubic-bezier(0, 0, 1, 0);
    transition: transform 150ms cubic-bezier(0, 0, 1, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  .modal.in .modal-dialog {
    opacity: 1 !important;
    -webkit-transition: -webkit-transform 2s cubic-bezier(0.19, 0.77, 0.43, 0.98);
    -moz-transition: -moz-transform 2s cubic-bezier(0.19, 0.77, 0.43, 0.98);
    -o-transition: -o-transform 2s cubic-bezier(0.19, 0.77, 0.43, 0.98);
    transition: transform 2s cubic-bezier(0.19, 0.77, 0.43, 0.98);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .modal.thin {
    min-width: 720px;
  }
  .modal.thin .modal-dialog {
    width: 720px;
  }
}
@media (min-width: 1200px) and (max-width: 1199px) {
  .modal {
    top: 0;
    right: 0;
    left: auto;
    overflow: visible !important;
    min-width: 1100px;
    opacity: 1 !important;
  }
  .modal .modal-btn-close {
    position: absolute;
    top: 0px;
    left: -44px;
    border-right: 1px solid #CCCCCC;
    z-index: 2000;
    cursor: pointer;
    width: 45px;
    height: 100%;
    background-color: #f3f3f3;
    display: none;
  }
  .modal .modal-btn-close:hover {
    background-color: #E6E6E6;
  }
  .modal .modal-btn-close:hover span {
    color: #3F3F3F;
  }
  .modal .modal-btn-close:hover:after {
    color: #3F3F3F;
  }
  .modal .modal-btn-close span {
    position: absolute;
    display: block;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    color: #bfbfbf;
    width: 100%;
    white-space: nowrap;
    top: 50%;
  }
  .modal .modal-btn-close:after {
    font-family: 'FontAwesome';
    background: transparent;
    content: '\00D7';
    font-size: 26px;
    font-weight: 400;
    color: #CCCCCC;
    display: block;
    margin: 0;
    width: 100%;
    height: 52px;
    text-align: center;
    line-height: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .modal .modal-btn-back {
    position: absolute;
    top: 0px;
    left: -44px;
    border-right: 1px solid #CCCCCC;
    z-index: 2000;
    cursor: pointer;
    width: 45px;
    height: 100%;
    background-color: #676767;
    display: none;
  }
  .modal .modal-btn-back.new {
    display: block;
  }
  .modal .modal-btn-back.active {
    display: block;
  }
  .modal .modal-btn-back:hover {
    background-color: #737373;
  }
  .modal .modal-btn-back:hover span {
    color: #fff;
  }
  .modal .modal-btn-back:hover:after {
    color: #fff;
  }
  .modal .modal-btn-back span {
    position: absolute;
    display: block;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    color: #bfbfbf;
    width: 100%;
    white-space: nowrap;
    top: 50%;
  }
  .modal .modal-btn-back:after {
    font-family: 'FontAwesome';
    background: transparent;
    content: '\f104';
    font-size: 26px;
    font-weight: 400;
    color: #CCCCCC;
    display: block;
    margin: 0;
    width: 100%;
    height: 52px;
    text-align: center;
    line-height: 52px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .modal.in .modal-btn-close {
    display: block;
  }
  .modal .modal-dialog {
    margin: 0 auto;
    background-color: #E6E6E6;
    height: 100%;
    -webkit-transition-duration: 150ms !important;
    transition-duration: 150ms !important;
  }
  .modal .modal-dialog .modal-body {
    position: relative;
    overflow: hidden;
    padding-bottom: 120px !important;
    background-color: #E6E6E6;
    height: 100%;
    z-index: 0;
  }
  .modal .modal-dialog .modal-body.no-padding {
    padding: 0 !important;
    background-color: #fff;
  }
  .modal .modal-dialog .modal-body .generic-list {
    padding-right: 20px;
  }
  .modal .modal-dialog .modal-footer {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 100%;
    bottom: 0;
    display: flex;
    background-color: #fff;
    text-align: left;
    z-index: 1;
    height: 80px;
  }
  .modal .modal-dialog .modal-footer.has-description.has-icon .modal-icon {
    transform: translate(-50%, -50%);
    left: 40px;
    top: 50%;
  }
  .modal .modal-dialog .modal-footer.has-description.has-icon .modal-title {
    font-size: 18px;
    font-weight: 300;
    margin-top: 5px;
  }
  .modal .modal-dialog .modal-footer.has-description.has-icon .modal-title::after {
    font-family: 'FontAwesome';
    content: '\f040';
    color: #CCCCCC;
    display: block;
    font-size: 18px;
    position: absolute;
    right: 0;
    top: 0px;
  }
  .modal .modal-dialog .modal-footer .modal-icon {
    position: absolute;
    top: 30px;
    left: 30px;
  }
  .modal .modal-dialog .modal-footer .modal-title-container {
    margin-left: 10px;
    white-space: nowrap;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .modal .modal-dialog .modal-footer .modal-title {
    font-weight: 700;
    margin: 0;
    padding: 0;
    color: #0AB3E5;
    width: 50%;
  }
  .modal .modal-dialog .modal-footer .modal-description {
    font-size: 12px;
    font-weight: 300;
    margin: 0;
    color: #a6a6a6;
  }
  .modal .modal-dialog .modal-footer .btn.modal-btn-extra {
    margin-right: 20px;
  }
  .modal .modal-dialog .modal-footer .btn.modal-btn-extra i {
    margin-right: 10px;
  }
  .modal .modal-dialog .modal-footer.has-icon .modal-title {
    -webkit-transform: translate(54px, -4px);
    -ms-transform: translate(54px, -4px);
    -o-transform: translate(54px, -4px);
    transform: translate(54px, -4px);
    border-bottom: 1px solid #CCCCCC;
    width: 50%;
    outline: none;
  }
  .modal .modal-dialog .modal-footer.has-icon .modal-description {
    -webkit-transform: translate(54px, -4px);
    -ms-transform: translate(54px, -4px);
    -o-transform: translate(54px, -4px);
    transform: translate(54px, -4px);
  }
  .modal.fade .modal-dialog {
    opacity: 1 !important;
    -webkit-transition: -webkit-transform 150ms cubic-bezier(0, 0, 1, 0);
    -moz-transition: -moz-transform 150ms cubic-bezier(0, 0, 1, 0);
    -o-transition: -o-transform 150ms cubic-bezier(0, 0, 1, 0);
    transition: transform 150ms cubic-bezier(0, 0, 1, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  .modal.in .modal-dialog {
    opacity: 1 !important;
    -webkit-transition: -webkit-transform 2s cubic-bezier(0.19, 0.77, 0.43, 0.98);
    -moz-transition: -moz-transform 2s cubic-bezier(0.19, 0.77, 0.43, 0.98);
    -o-transition: -o-transform 2s cubic-bezier(0.19, 0.77, 0.43, 0.98);
    transition: transform 2s cubic-bezier(0.19, 0.77, 0.43, 0.98);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .modal.thin {
    min-width: 720px;
  }
  .modal.thin .modal-dialog {
    width: 720px;
  }
}
@media (min-width: 1200px) {
  .modal {
    top: 0;
    right: 0;
    left: auto;
    overflow: visible !important;
    min-width: 1100px;
    opacity: 1 !important;
  }
  .modal .modal-btn-close {
    position: absolute;
    top: 0px;
    left: -44px;
    border-right: 1px solid #CCCCCC;
    z-index: 2000;
    cursor: pointer;
    width: 45px;
    height: 100%;
    background-color: #f3f3f3;
    display: none;
  }
  .modal .modal-btn-close:hover {
    background-color: #E6E6E6;
  }
  .modal .modal-btn-close:hover span {
    color: #3F3F3F;
  }
  .modal .modal-btn-close:hover:after {
    color: #3F3F3F;
  }
  .modal .modal-btn-close span {
    position: absolute;
    display: block;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    color: #bfbfbf;
    width: 100%;
    white-space: nowrap;
    top: 50%;
  }
  .modal .modal-btn-close:after {
    font-family: 'FontAwesome';
    background: transparent;
    content: '\00D7';
    font-size: 26px;
    font-weight: 400;
    color: #CCCCCC;
    display: block;
    margin: 0;
    width: 100%;
    height: 52px;
    text-align: center;
    line-height: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .modal .modal-btn-back {
    position: absolute;
    top: 0px;
    left: -44px;
    border-right: 1px solid #CCCCCC;
    z-index: 2000;
    cursor: pointer;
    width: 45px;
    height: 100%;
    background-color: #676767;
    display: none;
  }
  .modal .modal-btn-back.new {
    display: block;
  }
  .modal .modal-btn-back.active {
    display: block;
  }
  .modal .modal-btn-back:hover {
    background-color: #737373;
  }
  .modal .modal-btn-back:hover span {
    color: #fff;
  }
  .modal .modal-btn-back:hover:after {
    color: #fff;
  }
  .modal .modal-btn-back span {
    position: absolute;
    display: block;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    color: #bfbfbf;
    width: 100%;
    white-space: nowrap;
    top: 50%;
  }
  .modal .modal-btn-back:after {
    font-family: 'FontAwesome';
    background: transparent;
    content: '\f104';
    font-size: 26px;
    font-weight: 400;
    color: #CCCCCC;
    display: block;
    margin: 0;
    width: 100%;
    height: 52px;
    text-align: center;
    line-height: 52px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .modal.in .modal-btn-close {
    display: block;
  }
  .modal .modal-dialog {
    margin: 0 auto;
    background-color: #E6E6E6;
    height: 100%;
    -webkit-transition-duration: 150ms !important;
    transition-duration: 150ms !important;
  }
  .modal .modal-dialog .modal-body {
    position: relative;
    overflow: hidden;
    padding-bottom: 120px !important;
    background-color: #E6E6E6;
    height: 100%;
    z-index: 0;
  }
  .modal .modal-dialog .modal-body.no-padding {
    padding: 0 !important;
    background-color: #fff;
  }
  .modal .modal-dialog .modal-body .generic-list {
    padding-right: 20px;
  }
  .modal .modal-dialog .modal-footer {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 100%;
    bottom: 0;
    display: flex;
    background-color: #fff;
    text-align: left;
    z-index: 1;
    height: 80px;
  }
  .modal .modal-dialog .modal-footer.has-description.has-icon .modal-icon {
    transform: translate(-50%, -50%);
    left: 40px;
    top: 50%;
  }
  .modal .modal-dialog .modal-footer.has-description.has-icon .modal-title {
    font-size: 18px;
    font-weight: 300;
    margin-top: 5px;
  }
  .modal .modal-dialog .modal-footer.has-description.has-icon .modal-title::after {
    font-family: 'FontAwesome';
    content: '\f040';
    color: #CCCCCC;
    display: block;
    font-size: 18px;
    position: absolute;
    right: 0;
    top: 0px;
  }
  .modal .modal-dialog .modal-footer .modal-icon {
    position: absolute;
    top: 30px;
    left: 30px;
  }
  .modal .modal-dialog .modal-footer .modal-title-container {
    margin-left: 10px;
    white-space: nowrap;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .modal .modal-dialog .modal-footer .modal-title {
    font-weight: 700;
    margin: 0;
    padding: 0;
    color: #0AB3E5;
    width: 50%;
  }
  .modal .modal-dialog .modal-footer .modal-description {
    font-size: 12px;
    font-weight: 300;
    margin: 0;
    color: #a6a6a6;
  }
  .modal .modal-dialog .modal-footer .btn.modal-btn-extra {
    margin-right: 20px;
  }
  .modal .modal-dialog .modal-footer .btn.modal-btn-extra i {
    margin-right: 10px;
  }
  .modal .modal-dialog .modal-footer.has-icon .modal-title {
    -webkit-transform: translate(54px, -4px);
    -ms-transform: translate(54px, -4px);
    -o-transform: translate(54px, -4px);
    transform: translate(54px, -4px);
    border-bottom: 1px solid #CCCCCC;
    width: 50%;
    outline: none;
  }
  .modal .modal-dialog .modal-footer.has-icon .modal-description {
    -webkit-transform: translate(54px, -4px);
    -ms-transform: translate(54px, -4px);
    -o-transform: translate(54px, -4px);
    transform: translate(54px, -4px);
  }
  .modal.fade .modal-dialog {
    opacity: 1 !important;
    -webkit-transition: -webkit-transform 150ms cubic-bezier(0, 0, 1, 0);
    -moz-transition: -moz-transform 150ms cubic-bezier(0, 0, 1, 0);
    -o-transition: -o-transform 150ms cubic-bezier(0, 0, 1, 0);
    transition: transform 150ms cubic-bezier(0, 0, 1, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  .modal.in .modal-dialog {
    opacity: 1 !important;
    -webkit-transition: -webkit-transform 2s cubic-bezier(0.19, 0.77, 0.43, 0.98);
    -moz-transition: -moz-transform 2s cubic-bezier(0.19, 0.77, 0.43, 0.98);
    -o-transition: -o-transform 2s cubic-bezier(0.19, 0.77, 0.43, 0.98);
    transition: transform 2s cubic-bezier(0.19, 0.77, 0.43, 0.98);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .modal.thin {
    min-width: 720px;
  }
  .modal.thin .modal-dialog {
    width: 720px;
  }
}
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 150ms;
  -o-transition: all 150ms;
  transition: all 150ms;
}
.modal-backdrop.absolute {
  position: absolute;
}
.modal-backdrop.animate {
  opacity: 1 !important;
}
.modal-panel {
  position: absolute;
  z-index: 1071;
  width: 100%;
  left: 0;
  background-color: #fff;
}
.modal-panel .modal-panel-wpapper {
  position: relative;
}
.modal-panel .modal-panel-wpapper .modal-panel-close {
  position: absolute;
  top: 42px;
  right: 42px;
  z-index: 1;
  font-size: 40px;
  color: #CCCCCC;
  cursor: pointer;
}
.modal-panel .modal-panel-wpapper .modal-panel-close:hover {
  color: #808080;
}
.modal-panel .modal-panel-wpapper .modal-panel-body {
  position: relative;
  z-index: 0;
}
.modal-panel.animate {
  -webkit-transition: top 150ms;
  -o-transition: top 150ms;
  transition: top 150ms;
}
.account-picker {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  width: 150px;
  min-width: 150px;
  height: 48px;
  background-color: #0AB3E5;
  -webkit-transition: opacity 150ms ease-in;
  -moz-transition: opacity 150ms ease-in;
  -o-transition: opacity 150ms ease-in;
  transition: opacity 150ms ease-in;
}
.account-picker img {
  display: none;
  width: 18px;
  height: 18px;
  margin: 0 10px 0 2px;
}
.account-picker .picker {
  cursor: pointer;
  padding: 13px 12px;
  width: 150px;
}
.account-picker .picker span {
  color: #fff;
  display: block;
  width: 110px;
  overflow: hidden;
  float: left;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.account-picker .picker i {
  color: #3F3F3F;
  float: right;
  line-height: 20px;
}
.account-picker .dropdown-toggle {
  height: 48px;
}
.account-picker .dropdown-menu {
  border: 0 none;
  opacity: 0;
  top: 56px !important;
  opacity: 1;
  left: 10px;
  background-color: #fff;
  -webkit-transition: opacity 150ms ease-in;
  -moz-transition: opacity 150ms ease-in;
  -o-transition: opacity 150ms ease-in;
  transition: opacity 150ms ease-in;
}
.account-picker .dropdown-menu .header {
  padding: 5px;
  background-color: #AFAFAF;
  position: relative;
}
.account-picker .dropdown-menu .header .btn {
  text-align: left;
  border: 0 none;
}
.account-picker .dropdown-menu .header .btn i {
  float: right;
  line-height: 22px;
}
.account-picker .dropdown-menu .header .arrow-up {
  position: absolute;
  top: -5px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #AFAFAF;
}
.account-picker .dropdown-menu li.dropdown-header {
  border-bottom: 1px solid #ffffff;
  padding: 10px 15px;
}
.account-picker .dropdown-menu li a {
  padding: 10px 15px;
  cursor: pointer;
  color: #3F3F3F;
  background-color: transparent;
}
.account-picker .dropdown-menu li:hover a {
  color: #0AB3E5;
}
.account-picker .dropdown-menu li.active a {
  background-color: #ffffff;
  cursor: default;
}
.account-picker.open .dropdown-menu {
  top: 46px;
  opacity: 1;
}
.account-list img {
  margin-right: 10px;
  width: 48px;
  height: auto;
}
.account-list .btn-group {
  margin-top: 8px;
}
.account-list .btn-group button {
  color: #808080;
}
.page-header {
  background-color: #bfeefc;
  padding: 0;
  margin: 0;
  border-bottom: 0 none;
  max-height: 49px;
  display: table;
  width: 100%;
  -webkit-box-shadow: inset 0 1px 0 #000000, 0 1px 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 0 #000000, 0 1px 0 rgba(0, 0, 0, 0.1);
}
.page-header .page-header-col {
  display: table-cell;
  height: 49px;
  vertical-align: middle;
}
.page-header .comment-btn {
  background-color: #FFA654;
}
.page-header .add-btn .bottom-border {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
}
.page-header .add-btn .btn {
  background-color: #808080;
}
.page-header .add-btn.open .btn {
  background-color: #AFAFAF;
}
.page-header .add-btn .dropdown-menu {
  background-color: #0AB3E5;
  padding: 0;
}
.page-header .add-btn .dropdown-menu .new-source {
  padding: 0 10px;
  font-style: italic;
}
.page-header .add-btn .dropdown-menu a {
  padding: 10px !important;
}
.page-header .add-btn .dropdown-menu a:hover {
  background-color: #808080;
  color: #fff;
}
.page-header .add-btn .dropdown-menu i {
  width: 22px;
}
.page-header .page-header-back {
  max-width: 52px;
  min-width: 52px;
  background-color: #0AB3E5;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
.page-header .page-header-back:hover {
  background-color: #077a9c;
}
.page-header .page-header-title {
  position: relative;
  width: 50%;
}
.page-header .page-header-title i {
  color: #0AB3E5;
  position: absolute;
  top: 10px;
  left: 15px;
  display: block;
  font-size: 24px;
}
.page-header .page-header-title h1 {
  color: #0AB3E5;
  display: inline-block;
  font-weight: 400;
  position: relative;
  padding-left: 26px;
}
.page-header .page-header-title h1 span {
  font-size: 20px;
  outline: none !important;
  display: inline-block;
  padding: 0 4px;
}
.page-header .page-header-title h1.has-back,
.page-header .page-header-title p.has-back {
  margin: 0 0 0 20px;
}
.page-header .page-header-title p {
  padding-left: 26px;
}
.page-header .page-header-title p span {
  display: inline-block;
  padding: 0 4px;
}
.page-header .page-header-title p.has-back {
  color: #808080;
}
.page-header .page-header-title.editable h1 span,
.page-header .page-header-title.editable p span {
  cursor: pointer;
}
.page-header .page-header-title.editable h1 span:hover,
.page-header .page-header-title.editable p span:hover {
  background-color: rgba(10, 179, 229, 0.2);
}
.page-header .page-header-injector {
  padding: 2px 15px 0;
  width: 70%;
}
.page-header .page-header-injector .nav-tabs {
  height: 49px;
  border: 0 none;
}
.page-header .page-header-injector .nav-tabs li a {
  line-height: 22px;
  display: inline-block;
  vertical-align: middle;
  padding: 13.5px;
  border: 0 none;
  background-color: transparent;
  font-weight: 300;
  color: #CCCCCC;
}
.page-header .page-header-injector .nav-tabs li a:hover {
  border: 0 none;
  background-color: transparent;
}
.page-header .page-header-injector .nav-tabs li a i {
  margin-right: 10px;
}
.page-header .page-header-injector .nav-tabs li.active a {
  border: 0 none;
  color: #0AB3E5;
  border-bottom: 3px solid #0AB3E5;
}
.page-header .page-header-injector .nav-tabs li.active a:hover {
  color: #0AB3E5;
}
.page-header .page-header-injector .btn-group .dropdown-menu {
  top: 90%;
}
.page-header .page-header-injector .btn-group .dropdown-menu a {
  padding: 3px 10px;
}
.cluster {
  border: 1px solid transparent;
}
.cluster .primary {
  color: #0AB3E5;
}
.cluster .cluster-type {
  padding: 2px 5px;
  display: inline-block;
  width: 90px;
  text-align: center;
}
.cluster .cluster-type.production {
  background-color: #E6E6E6;
}
.cluster .cluster-type.sandbox {
  background-color: #CCCCCC;
  color: #fff;
}
.cluster .status.terminated {
  color: #CCCCCC;
}
.cluster .status.runing {
  color: #39E98D;
}
.cluster *[contenteditable] {
  cursor: default;
}
.cluster *[contenteditable='true'] {
  border: 1px dashed #CCCCCC;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 5px 7px;
  display: inline-block;
  width: 100%;
  cursor: default;
}
.cluster a {
  cursor: pointer;
  text-decoration: none;
}
.cluster.list-group-item {
  display: table;
  width: 100%;
  margin-bottom: 1px;
  border-left: 9px solid #FFA654;
  padding: 0;
}
.cluster.list-group-item .list-group-item-heading,
.cluster.list-group-item .list-group-item-body,
.cluster.list-group-item .list-group-item-footer {
  padding: 10px 15px;
  display: table-cell;
  vertical-align: middle;
}
.cluster.list-group-item .list-group-item-heading span,
.cluster.list-group-item .list-group-item-body span,
.cluster.list-group-item .list-group-item-footer span {
  margin-right: 10px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}
.cluster.list-group-item .list-group-item-heading {
  width: 20%;
  cursor: pointer;
}
.cluster.list-group-item .list-group-item-body {
  width: 33%;
  cursor: pointer;
}
.cluster.list-group-item .list-group-item-footer {
  width: 34%;
}
.cluster.panel .panel-heading {
  background-color: #FFA654;
  position: relative;
}
.cluster.panel .panel-heading .cluster-type {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cluster.panel .panel-body span {
  display: block;
}
.cluster .btn-group-default .btn {
  text-align: center;
}
.variables-editor {
  background-color: #f3f3f3;
  border-radius: 10px;
}
.variables-editor .variables-editor-wrapper {
  border-radius: 5px;
}
.variables-editor .variables-editor-headers {
  display: flex;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 12px;
}
.variables-editor .variables-editor-headers .variables-variable {
  flex: 1 !important;
  padding-left: 65px;
}
.variables-editor .variables-editor-headers .variables-expression {
  flex: 1 !important;
  padding-right: 0px;
  padding-left: 15px;
}
.variables-editor .variables-editor-headers .variables-alias {
  flex: 1 !important;
  padding-right: 0px;
  padding-left: 25px;
}
.variables-editor .variables-editor-headers .sort-by {
  flex: 0 0 435px !important;
  padding-left: 65px;
}
.variables-editor .variables-editor-headers .partition-by {
  flex: 0 0 435px !important;
  padding-left: 65px;
}
.variables-editor .variables-editor-headers .sort-direction {
  flex: 0 auto !important;
  padding-left: 25px;
}
.variables-editor .variables-editor-headers .cube-type {
  flex: 0 0 165px !important;
  padding-left: 65px;
}
.variables-editor .variables-editor-headers .cube-fields {
  flex: 0 0 !important;
}
.variables-editor .variables-editor-headers .union-field-1 {
  flex: 0 0 280px !important;
  padding-left: 45px;
}
.variables-editor .variables-editor-headers .union-field-2 {
  flex: 0 0 145px !important;
}
.variables-editor .variables-editor-headers.variables-editor-headers-schema {
  padding-left: 60px;
}
.variables-editor .variables-editor-headers.variables-editor-headers-schema .schema-name {
  flex: 1 0 !important;
}
.variables-editor .variables-editor-headers.variables-editor-headers-schema .schema-alias {
  padding-left: 75px;
  flex: 1 0 !important;
}
.variables-editor .variables-editor-headers.variables-editor-headers-schema .schema-datatype {
  padding-left: 70px;
  flex: 1 0 !important;
}
.variables-editor.editable .variables-editor-headers .variables-expression {
  flex: 1 !important;
  padding-right: 15px;
  padding-left: 0;
}
.variables-editor .bootstrap-select {
  height: 42px;
}
.variables-editor .bootstrap-select button span {
  color: #3F3F3F;
  font-size: 16px;
  line-height: 22px;
}
.variables-editor.package-variables-editor .tabs li {
  border: 0 none !important;
}
.variables-editor.package-variables-editor .tabs li a {
  border: 0 none !important;
  text-decoration: none;
}
.variables-editor.package-variables-editor .tabs li:hover a {
  color: #088db4;
}
.variables-editor.package-variables-editor .tab-content {
  background-color: #fff;
  padding: 15px;
}
.variables-editor.package-variables-editor .tab-content .tab-pane {
  background-color: #E6E6E6;
  border-radius: 5px;
  padding: 5px;
}
.variables-editor h4 {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}
.variables-editor .variables-editor-highlight {
  height: 58px;
  border-radius: 5px;
  background-color: #E6E6E6;
}
.variables-editor .variables-editor-sortable {
  padding: 5px;
}
.variables-editor .variables-editor-empty-text {
  text-align: center;
  padding: 20px 20px;
}
.variables-editor .variables-editor-empty-text h4 {
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: #808080;
}
.variables-editor .variables-editor-add {
  padding-right: 35px;
  padding-left: 28px;
  margin-bottom: 5px;
}
.variables-editor .variables-editor-add button {
  text-align: left;
  background-color: #CCCCCC;
  font-size: 13px;
  padding: 12px 0 12px 12px;
  -webkit-transition: background-color 150ms;
  -o-transition: background-color 150ms;
  transition: background-color 150ms;
}
.variables-editor .variables-editor-add button svg {
  -webkit-transform: translate(0, -1px);
  -ms-transform: translate(0, -1px);
  -o-transform: translate(0, -1px);
  transform: translate(0, -1px);
}
.variables-editor .variables-editor-add button span {
  display: inline-block;
  padding-left: 10px;
  line-height: 18px;
}
.variables-editor .variables-editor-add button:hover {
  background-color: #CCCCCC;
}
.variables-editor .variables-editor-add.filter-add {
  padding-right: 20px;
}
.variables-editor .variables-editor-add.filter-add button {
  position: relative;
  flex: 1 auto;
  margin-right: 15px;
}
.variables-editor .variables-editor-add.filter-add button .arrow {
  position: absolute;
  top: 0;
  right: 0;
}
.variables-editor .cube-type {
  flex: 0 auto !important;
  width: 100px;
}
.variables-editor-row {
  display: flex;
  padding: 7.5px 0 7.5px 7.5px;
  border-radius: 5px;
  width: 100%;
  z-index: 999999 !important;
  -webkit-transition: background-color 150ms;
  -o-transition: background-color 150ms;
  transition: background-color 150ms;
}
.variables-editor-row .variables-editor-row-number {
  flex: 0 0 20px;
  font-size: 11px;
  opacity: 0.5;
  line-height: 43px;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: opacity 150ms;
  -o-transition: opacity 150ms;
  transition: opacity 150ms;
}
.variables-editor-row .variables-editor-cell {
  flex: 0 auto;
}
.variables-editor-row .variables-editor-cell.variables-editor-button button {
  padding: 10px 12px;
}
.variables-editor-row .variables-editor-cell.variables-editor-move button {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 8px 12px 3px 12px;
  min-height: 43px;
  background-color: #CCCCCC;
}
.variables-editor-row .variables-editor-cell.variables-editor-move.locked button {
  padding: 8px 8px 3px 9px;
}
.variables-editor-row .variables-editor-cell.variables-editor-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.variables-editor-row .variables-editor-cell.variables-editor-remove button,
.variables-editor-row .variables-editor-cell.variables-editor-undo button {
  height: 42px;
  padding: 2px 10px 0;
}
.variables-editor-row .variables-editor-cell.variables-editor-remove button i,
.variables-editor-row .variables-editor-cell.variables-editor-undo button i {
  color: #808080;
}
.variables-editor-row .variables-editor-cell.variables-editor-remove button[disabled] i,
.variables-editor-row .variables-editor-cell.variables-editor-undo button[disabled] i {
  color: #CCCCCC;
}
.variables-editor-row .variables-editor-cell.variables-editor-remove button[disabled]:hover i,
.variables-editor-row .variables-editor-cell.variables-editor-undo button[disabled]:hover i {
  color: #E6E6E6;
}
.variables-editor-row .variables-editor-cell.variables-editor-remove button:hover i,
.variables-editor-row .variables-editor-cell.variables-editor-undo button:hover i {
  color: #3F3F3F;
}
.variables-editor-row .variables-editor-cell-input,
.variables-editor-row .variables-editor-cell-range,
.variables-editor-row .variables-editor-cell-offset,
.variables-editor-row .variables-editor-cell-ntiles,
.variables-editor-row .variables-editor-cell-default-value {
  flex: 1 auto;
}
.variables-editor-row .variables-editor-cell-input .selectize-input,
.variables-editor-row .variables-editor-cell-range .selectize-input,
.variables-editor-row .variables-editor-cell-offset .selectize-input,
.variables-editor-row .variables-editor-cell-ntiles .selectize-input,
.variables-editor-row .variables-editor-cell-default-value .selectize-input,
.variables-editor-row .variables-editor-cell-input select,
.variables-editor-row .variables-editor-cell-range select,
.variables-editor-row .variables-editor-cell-offset select,
.variables-editor-row .variables-editor-cell-ntiles select,
.variables-editor-row .variables-editor-cell-default-value select,
.variables-editor-row .variables-editor-cell-input option,
.variables-editor-row .variables-editor-cell-range option,
.variables-editor-row .variables-editor-cell-offset option,
.variables-editor-row .variables-editor-cell-ntiles option,
.variables-editor-row .variables-editor-cell-default-value option,
.variables-editor-row .variables-editor-cell-input input,
.variables-editor-row .variables-editor-cell-range input,
.variables-editor-row .variables-editor-cell-offset input,
.variables-editor-row .variables-editor-cell-ntiles input,
.variables-editor-row .variables-editor-cell-default-value input {
  font-size: 15px;
  height: 43px;
  line-height: 43px;
  padding: 0 10px;
}
.variables-editor-row .variables-editor-cell-input.variables-editor-key input,
.variables-editor-row .variables-editor-cell-range.variables-editor-key input,
.variables-editor-row .variables-editor-cell-offset.variables-editor-key input,
.variables-editor-row .variables-editor-cell-ntiles.variables-editor-key input,
.variables-editor-row .variables-editor-cell-default-value.variables-editor-key input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0 none;
  -webkit-text-fill-color: #3F3F3F;
}
.variables-editor-row .variables-editor-cell-input.variables-editor-key select,
.variables-editor-row .variables-editor-cell-range.variables-editor-key select,
.variables-editor-row .variables-editor-cell-offset.variables-editor-key select,
.variables-editor-row .variables-editor-cell-ntiles.variables-editor-key select,
.variables-editor-row .variables-editor-cell-default-value.variables-editor-key select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0 none;
}
.variables-editor-row .variables-editor-cell-input.variables-editor-key .selectize-control,
.variables-editor-row .variables-editor-cell-range.variables-editor-key .selectize-control,
.variables-editor-row .variables-editor-cell-offset.variables-editor-key .selectize-control,
.variables-editor-row .variables-editor-cell-ntiles.variables-editor-key .selectize-control,
.variables-editor-row .variables-editor-cell-default-value.variables-editor-key .selectize-control {
  width: 168px;
}
.variables-editor-row .variables-editor-cell-input.variables-editor-key .selectize-control .selectize-input,
.variables-editor-row .variables-editor-cell-range.variables-editor-key .selectize-control .selectize-input,
.variables-editor-row .variables-editor-cell-offset.variables-editor-key .selectize-control .selectize-input,
.variables-editor-row .variables-editor-cell-ntiles.variables-editor-key .selectize-control .selectize-input,
.variables-editor-row .variables-editor-cell-default-value.variables-editor-key .selectize-control .selectize-input {
  width: 340px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0 none;
}
.variables-editor-row .variables-editor-cell-input.variables-editor-key .selectize-control .selectize-input.dropdown-active,
.variables-editor-row .variables-editor-cell-range.variables-editor-key .selectize-control .selectize-input.dropdown-active,
.variables-editor-row .variables-editor-cell-offset.variables-editor-key .selectize-control .selectize-input.dropdown-active,
.variables-editor-row .variables-editor-cell-ntiles.variables-editor-key .selectize-control .selectize-input.dropdown-active,
.variables-editor-row .variables-editor-cell-default-value.variables-editor-key .selectize-control .selectize-input.dropdown-active {
  border-bottom-right-radius: 0;
}
.variables-editor-row .variables-editor-cell-input.variables-editor-key .selectize-control .selectize-dropdown-content,
.variables-editor-row .variables-editor-cell-range.variables-editor-key .selectize-control .selectize-dropdown-content,
.variables-editor-row .variables-editor-cell-offset.variables-editor-key .selectize-control .selectize-dropdown-content,
.variables-editor-row .variables-editor-cell-ntiles.variables-editor-key .selectize-control .selectize-dropdown-content,
.variables-editor-row .variables-editor-cell-default-value.variables-editor-key .selectize-control .selectize-dropdown-content {
  font-size: 15px;
}
.variables-editor-row .variables-editor-cell-input.variables-editor-key .selectize-control .selectize-dropdown,
.variables-editor-row .variables-editor-cell-range.variables-editor-key .selectize-control .selectize-dropdown,
.variables-editor-row .variables-editor-cell-offset.variables-editor-key .selectize-control .selectize-dropdown,
.variables-editor-row .variables-editor-cell-ntiles.variables-editor-key .selectize-control .selectize-dropdown,
.variables-editor-row .variables-editor-cell-default-value.variables-editor-key .selectize-control .selectize-dropdown {
  border-radius: 0 0 5px 5px;
  top: 42px !important;
}
.variables-editor-row .variables-editor-cell-checkbox {
  flex: 0 auto;
  width: 30px;
}
.variables-editor-row .variables-editor-cell-range,
.variables-editor-row .variables-editor-cell-offset,
.variables-editor-row .variables-editor-cell-ntiles,
.variables-editor-row .variables-editor-cell-default-value {
  flex: 0 auto;
}
.variables-editor-row .variables-editor-cell-range input,
.variables-editor-row .variables-editor-cell-offset input,
.variables-editor-row .variables-editor-cell-ntiles input,
.variables-editor-row .variables-editor-cell-default-value input {
  text-align: center;
  width: 50px;
  padding-right: 0;
  padding-left: 0;
}
.variables-editor-row .variables-editor-cell-range input.input-range-before,
.variables-editor-row .variables-editor-cell-offset input.input-range-before,
.variables-editor-row .variables-editor-cell-ntiles input.input-range-before,
.variables-editor-row .variables-editor-cell-default-value input.input-range-before {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0 none;
}
.variables-editor-row .variables-editor-cell-range input.input-range-after,
.variables-editor-row .variables-editor-cell-offset input.input-range-after,
.variables-editor-row .variables-editor-cell-ntiles input.input-range-after,
.variables-editor-row .variables-editor-cell-default-value input.input-range-after {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.variables-editor-row input {
  -webkit-box-shadow: 0px 0px;
  box-shadow: 0px 0px;
  background-color: rgba(255, 255, 255, 0.75);
}
.variables-editor-row input.invalid {
  background-color: #ffe8d4;
}
.variables-editor-row input:focus {
  background-color: #ffffff;
  border-color: #CCCCCC;
}
.variables-editor-row input:hover {
  background-color: #ffffff;
  border-color: #CCCCCC;
}
.variables-editor-row input.invalid:hover {
  background-color: #ffe8d4;
}
.variables-editor-row input[disabled] {
  color: #CCCCCC !important;
  -webkit-text-fill-color: #CCCCCC !important;
}
.variables-editor-row .select-box {
  position: relative;
}
.variables-editor-row .select-box select {
  -webkit-appearance: none;
  appearance: none;
  border-color: #CCCCCC;
  -webkit-box-shadow: 0px 0 0 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0 0 0px rgba(0, 0, 0, 0.3);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.variables-editor-row .select-box select:focus {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#1a000000', GradientType=1);
  background-repeat: repeat-x;
}
.variables-editor-row .select-box svg {
  position: absolute;
  top: 19px;
  right: 12px;
  pointer-events: none;
}
.variables-editor-row .select-box .expression-editor-icon {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 10px;
  cursor: pointer;
  color: #CCCCCC;
  z-index: 1;
}
.variables-editor-row .select-box .expression-editor-icon:hover {
  color: #808080;
}
.variables-editor-row .variables-editor-cell-padding div.cell-container {
  padding-right: 15px;
}
.variables-editor-row .variables-editor-cell-padding svg {
  right: 27px;
}
.variables-editor-row.danger {
  background-color: #f7cac7;
}
.variables-editor-row.move {
  background-color: #d9d9d9;
}
.variables-editor-row.ui-sortable-helper {
  background-color: rgba(128, 128, 128, 0.2);
}
.package-variables-editor {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background-color: #fff !important;
}
.package-variables-editor.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}
.package-variables-editor .variables-editor-wrapper {
  padding-top: 15px;
}
.package-variables-editor .package-variables-editor-body {
  flex: 1 auto;
  overflow-y: auto;
}
.package-variables-editor .package-variables-editor-body .package-variables-editor-tabs-box {
  display: flex;
  flex-direction: row;
}
.package-variables-editor .package-variables-editor-body .package-variables-editor-tabs-box .package-variables-editor-tabs {
  flex: 0 auto;
  padding-top: 48px;
}
.package-variables-editor .package-variables-editor-body .package-variables-editor-tabs-box .package-variables-editor-tabs div {
  padding: 15px;
  cursor: pointer;
  border-radius: 10px 0 0 10px;
  margin-bottom: 10px;
}
.package-variables-editor .package-variables-editor-body .package-variables-editor-tabs-box .package-variables-editor-tabs div.active {
  cursor: default;
  background-color: #f3f3f3;
}
.package-variables-editor .package-variables-editor-body .package-variables-editor-tabs-box .package-variables-editor-tabs div:hover:not(.active) {
  text-decoration: underline;
}
.package-variables-editor .package-variables-editor-body .package-variables-editor-tabs-box .package-variables-editor-content {
  flex: 1 auto;
  border-radius: 10px;
  background-color: #f3f3f3;
  padding: 5px 20px 20px 10px;
  height: auto;
}
.package-variables-editor .package-variables-editor-footer {
  flex: 0 auto;
  height: 80px;
  min-height: 80px;
  position: relative !important;
  bottom: inherit;
}
.package-variables-editor-wrapper .package-variables-editor-body {
  padding: 50px 70px;
}
.variable-form-control {
  height: 34px;
}
.variable-form-control .col-sm-1 .btn:not(.btn-link),
.variable-form-control .col-sm-2 .btn:not(.btn-link),
.variable-form-control .col-sm-3 .btn:not(.btn-link),
.variable-form-control .col-sm-4 .btn:not(.btn-link),
.variable-form-control .col-sm-5 .btn:not(.btn-link),
.variable-form-control .col-sm-6 .btn:not(.btn-link) {
  -webkit-transition: opacity 250ms;
  -o-transition: opacity 250ms;
  transition: opacity 250ms;
  width: 45%;
  margin-left: 5%;
  display: block;
  opacity: 0.5;
  float: left;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}
.variable-form-control .col-sm-1 .btn:not(.btn-link):hover,
.variable-form-control .col-sm-2 .btn:not(.btn-link):hover,
.variable-form-control .col-sm-3 .btn:not(.btn-link):hover,
.variable-form-control .col-sm-4 .btn:not(.btn-link):hover,
.variable-form-control .col-sm-5 .btn:not(.btn-link):hover,
.variable-form-control .col-sm-6 .btn:not(.btn-link):hover {
  opacity: 1;
}
.variable-form-control .col-sm-1 .btn-link,
.variable-form-control .col-sm-2 .btn-link,
.variable-form-control .col-sm-3 .btn-link,
.variable-form-control .col-sm-4 .btn-link,
.variable-form-control .col-sm-5 .btn-link,
.variable-form-control .col-sm-6 .btn-link {
  margin-left: -20px;
}
.variable-form-control .col-sm-1 .btn-link:disabled,
.variable-form-control .col-sm-2 .btn-link:disabled,
.variable-form-control .col-sm-3 .btn-link:disabled,
.variable-form-control .col-sm-4 .btn-link:disabled,
.variable-form-control .col-sm-5 .btn-link:disabled,
.variable-form-control .col-sm-6 .btn-link:disabled {
  color: #CCCCCC;
  font-style: italic;
}
.variable-form-control .col-sm-1 .variable-equal,
.variable-form-control .col-sm-2 .variable-equal,
.variable-form-control .col-sm-3 .variable-equal,
.variable-form-control .col-sm-4 .variable-equal,
.variable-form-control .col-sm-5 .variable-equal,
.variable-form-control .col-sm-6 .variable-equal {
  position: absolute;
  top: 0;
  right: -2%;
  font-size: 24px;
  text-decoration: none;
  border-bottom: 0 none;
}
.variable-form-control:hover .btn {
  opacity: 0.8;
}
.name-description-editor button {
  padding: 0;
  border: 0;
  text-decoration: none;
}
.name-description-editor button:focus,
.name-description-editor button:active,
.name-description-editor button:hover {
  text-decoration: none;
}
.name-description-editor button span {
  text-decoration: none;
}
.name-description-editor .description-toggle div {
  cursor: pointer;
}
.name-description-editor .description-toggle div span {
  position: relative;
  color: #3F3F3F;
}
.name-description-editor .description-toggle div span:after {
  font-family: 'FontAwesome';
  right: -15px;
  position: absolute;
  top: -1px;
}
.name-description-editor .description-toggle div span.add:after {
  content: '\f0d7';
}
.name-description-editor .description-toggle div span.remove:after {
  content: '\f0d8';
}
.name-description-editor textarea {
  min-width: 100%;
  max-width: 100%;
}
.name-description-editor .form-group {
  overflow: hidden;
}
.package-name-editor,
.package-workspace-editor,
.workspace-edit,
.workspace-form {
  margin: 0 !important;
  width: 100% !important;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.package-name-editor .package-name-editor-body,
.package-workspace-editor .package-name-editor-body,
.workspace-edit .package-name-editor-body,
.workspace-form .package-name-editor-body,
.package-name-editor .package-workspace-editor-body,
.package-workspace-editor .package-workspace-editor-body,
.workspace-edit .package-workspace-editor-body,
.workspace-form .package-workspace-editor-body,
.package-name-editor .workspace-edit-body,
.package-workspace-editor .workspace-edit-body,
.workspace-edit .workspace-edit-body,
.workspace-form .workspace-edit-body,
.package-name-editor .workspace-form-body,
.package-workspace-editor .workspace-form-body,
.workspace-edit .workspace-form-body,
.workspace-form .workspace-form-body {
  flex: 1 auto;
  overflow-y: auto;
}
.package-name-editor .package-name-editor-body .form,
.package-workspace-editor .package-name-editor-body .form,
.workspace-edit .package-name-editor-body .form,
.workspace-form .package-name-editor-body .form,
.package-name-editor .package-workspace-editor-body .form,
.package-workspace-editor .package-workspace-editor-body .form,
.workspace-edit .package-workspace-editor-body .form,
.workspace-form .package-workspace-editor-body .form,
.package-name-editor .workspace-edit-body .form,
.package-workspace-editor .workspace-edit-body .form,
.workspace-edit .workspace-edit-body .form,
.workspace-form .workspace-edit-body .form,
.package-name-editor .workspace-form-body .form,
.package-workspace-editor .workspace-form-body .form,
.workspace-edit .workspace-form-body .form,
.workspace-form .workspace-form-body .form {
  padding: 50px 70px;
  width: 100% !important;
  height: 100%;
  margin: 0 !important;
}
.package-name-editor .package-name-editor-footer,
.package-workspace-editor .package-name-editor-footer,
.workspace-edit .package-name-editor-footer,
.workspace-form .package-name-editor-footer,
.package-name-editor .package-workspace-editor-footer,
.package-workspace-editor .package-workspace-editor-footer,
.workspace-edit .package-workspace-editor-footer,
.workspace-form .package-workspace-editor-footer,
.package-name-editor .workspace-form-footer,
.package-workspace-editor .workspace-form-footer,
.workspace-edit .workspace-form-footer,
.workspace-form .workspace-form-footer {
  position: relative !important;
  flex: 0 auto;
  height: 80px;
  min-height: 80px;
}
.modal-error {
  pointer-events: none;
}
.modal-error * {
  pointer-events: all;
}
.expressions {
  background-color: #E6E6E6;
  padding: 0;
}
.expressions li a {
  color: #3F3F3F;
  padding: 4px 7px;
}
.expression-editor-overlay {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999998;
}
.expression-editor {
  border: 7px solid rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 50px;
  left: 350px;
  min-width: 760px;
  min-height: 420px;
  z-index: 999999;
}
.expression-editor.closed {
  display: none !important;
}
.expression-editor .ui-resizable-e {
  width: 12px !important;
  right: -10px !important;
}
.expression-editor .ui-resizable-s {
  height: 12px !important;
  bottom: -10px !important;
}
.expression-editor .ui-resizable-se {
  cursor: se-resize;
  width: 24px !important;
  height: 24px !important;
  right: -12px !important;
  bottom: -12px !important;
}
.expression-editor .expression-editor-wrapper {
  height: 100%;
}
.expression-editor .expression-editor-wrapper .expression-editor-header {
  cursor: move;
  background-color: #fff;
  flex: 0 auto;
  height: 30px;
  min-height: 30px;
  max-height: 30px;
}
.expression-editor .expression-editor-wrapper .expression-editor-header strong {
  font-size: 18px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 400;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.expression-editor .expression-editor-wrapper .expression-editor-body {
  display: flex;
  flex-direction: row;
  height: 515px;
  width: 100%;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu {
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  flex: 0 auto;
  width: 240px;
  min-width: 240px;
  margin-right: 10px;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper .expression-editor-menu-search {
  position: relative;
  flex: 0 auto;
  height: 30px;
  min-height: 30px;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper .expression-editor-menu-search .expression-editor-menu-search-wrapper {
  border-radius: 5px;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper .expression-editor-menu-search .expression-editor-menu-search-wrapper:after {
  font-family: 'FontAwesome';
  content: '\f002';
  font-size: 12px;
  color: #CCCCCC;
  position: absolute;
  top: 7px;
  left: 10px;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper .expression-editor-menu-search .expression-editor-menu-search-wrapper input {
  border-radius: 5px 5px 0 0;
  width: 100%;
  line-height: 30px;
  height: 30px;
  border: 0 none;
  border-bottom: 1px solid #CCCCCC;
  padding-left: 28px;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper .expression-editor-menu-search .expression-editor-menu-search-wrapper input::-webkit-input-placeholder {
  color: #CCCCCC;
  font-weight: 300;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper .expression-editor-menu-search .expression-editor-menu-search-wrapper input::-moz-placeholder {
  color: #CCCCCC;
  font-weight: 300;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper .expression-editor-menu-search .expression-editor-menu-search-wrapper input:-moz-placeholder {
  color: #CCCCCC;
  font-weight: 300;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper .expression-editor-menu-tabs {
  flex: 0 auto;
  height: 25px;
  min-height: 25px;
  display: flex;
  border-bottom: 1px solid #CCCCCC;
  background-color: #f8f8f8;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper .expression-editor-menu-tabs .expression-editor-menu-tab span {
  font-size: 11px;
  font-weight: 300;
  display: inline-block;
  padding: 0 9px;
  line-height: 24px;
  color: #CCCCCC;
  cursor: pointer;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper .expression-editor-menu-tabs .expression-editor-menu-tab span:hover {
  color: #0AB3E5;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper .expression-editor-menu-tabs .expression-editor-menu-tab.active span {
  border-left: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  border-bottom: 1px solid #fff;
  cursor: default;
  background-color: #fff;
  font-weight: 400;
  min-height: 24px;
  color: #808080;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper .expression-editor-menu-tabs .expression-editor-menu-tab:first-child.active span {
  border-left: 1px solid #fff;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper .expression-editor-categories {
  flex: 1 auto;
  overflow-y: auto;
  overflow-x: visible;
  padding-top: 10px;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper .expression-editor-categories .expression-editor-category {
  padding-left: 10px;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper .expression-editor-categories .expression-editor-category strong {
  font-weight: 600 !important;
  cursor: pointer;
  display: block;
  font-size: 14px;
  color: #808080;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper .expression-editor-categories .expression-editor-category strong.expanded {
  color: #3F3F3F;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper .expression-editor-categories .expression-editor-category strong:hover {
  color: #0AB3E5;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper .expression-editor-categories .expression-editor-category .expression-editor-category-items {
  padding: 0 0 5px 15px;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper .expression-editor-categories .expression-editor-category .expression-editor-category-items .expression-editor-category-item {
  position: relative;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper .expression-editor-categories .expression-editor-category .expression-editor-category-items .expression-editor-category-item small {
  font-weight: 300;
  font-size: 13px;
  color: #808080;
  display: block;
  padding: 2px 5px;
  cursor: pointer;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper .expression-editor-categories .expression-editor-category .expression-editor-category-items .expression-editor-category-item small:hover {
  color: #3F3F3F;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper .expression-editor-categories .expression-editor-category .expression-editor-category-items .expression-editor-category-item small .highlighted {
  background-color: #ffe093;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper .expression-editor-categories .expression-editor-category .expression-editor-category-items .expression-editor-category-item .expression-editor-completion-info {
  position: absolute;
  top: 0 !important;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-menu .expression-editor-menu-wrapper .expression-editor-categories .expression-editor-category .expression-editor-category-items .expression-editor-category-item:hover {
  background-color: #E6E6E6;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-code {
  flex: 1 auto;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  overflow-y: auto;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-code textarea {
  height: 100%;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-code .CodeMirror-sizer {
  min-height: 240px !important;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-code .expression-editor-textarea {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-code .expression-editor-textarea .CodeMirror {
  border: 0 none;
  height: 100%;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-code .expression-editor-textarea .CodeMirror .CodeMirror-line {
  padding-left: 7px;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-code .expression-editor-textarea .CodeMirror .CodeMirror-linewidget {
  width: 100% !important;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-code .expression-editor-textarea .CodeMirror .lint-error {
  background-color: #fffdf9;
  color: #E54C40;
  border: 1px solid #eb766d;
  padding: 10px;
  margin: 7px;
  overflow: auto;
}
.expression-editor .expression-editor-wrapper .expression-editor-body .expression-editor-code .expression-editor-textarea .CodeMirror .lint-error span.fa {
  margin-right: 10px;
}
.expression-editor .expression-editor-wrapper .expression-editor-footer {
  height: 62px;
  min-height: 62px;
}
.expression-editor .expression-editor-wrapper .expression-editor-footer .btn.pull-right {
  margin-left: 15px;
}
.expression-editor .expression-editor-wrapper .expression-editor-footer .btn.btn-success {
  padding-right: 20px;
  padding-left: 20px;
  font-weight: 600;
}
.expression-editor .expression-editor-wrapper .expression-editor-footer .btn.btn-default {
  font-weight: 400;
  border: 1px solid #ddd;
}
.expression-editor .expression-editor-wrapper .expression-editor-footer .btn.btn-terminal {
  background-color: #808080;
  color: #fff;
  padding: 5px;
  border: 0 none;
  font-weight: 300;
}
.expression-editor-completion-info {
  position: absolute;
  z-index: 1000001;
  max-width: 460px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #E6E6E6;
  pointer-events: none;
}
.expression-editor-completion-info .expression-editor-completion-info-header h3 {
  margin: 0;
  padding: 0;
  font-family: monospace;
  font-size: 24px;
  font-weight: 300;
  white-space: -moz-pre-wrap !important;
  white-space: -webkit-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  white-space: pre-wrap;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal;
}
.expression-editor-completion-info .expression-editor-completion-info-body {
  padding: 10px 0;
}
.expression-editor-completion-info .expression-editor-completion-info-body p {
  margin: 0;
  font-size: 13px;
}
.expression-editor-completion-info .expression-editor-completion-info-example {
  max-width: 500px;
  background-color: #E6E6E6;
  padding: 10px;
  min-width: 100%;
  font-size: 13px;
  border-radius: 5px;
  white-space: -moz-pre-wrap !important;
  white-space: -webkit-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  white-space: pre-wrap;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal;
}
.CodeMirror-hints .CodeMirror-hint {
  font-family: monospace;
  font-size: 14px;
}
.plans {
  display: flex;
  justify-content: space-between;
  width: 100%;
  min-height: 684px;
  padding: 42px 0;
}
.plans .plan-detail {
  font-size: 14px;
  white-space: normal;
  margin-bottom: 20px;
}
.plans .loader {
  padding-top: 200px;
}
.plans .plan {
  align-self: stretch;
  margin-bottom: 30px;
  border-radius: 4px !important;
  border: 0;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  padding: 0;
  width: 31.5%;
}
.plans .plan:hover {
  transform: scale(1.05);
  transition: all 0.2s;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  z-index: 1;
}
.plans .plan .plan-dev-enviorment {
  margin-top: 10px;
  display: block;
  white-space: normal;
  color: #0AB3E5;
}
.plans .plan .plan-dev-enviorment em {
  font-style: normal;
  font-size: 16px;
  font-weight: 700;
}
.plans .plan .plan-dev-enviorment span {
  font-size: 12px;
  font-style: italic;
  color: #727272;
}
.plans .plan .plan-wrapper .plan-container {
  padding: 25px;
}
.plans .plan .plan-heading,
.plans .plan .plan-body,
.plans .plan .plan-footer {
  text-align: left !important;
}
.plans .plan .plan-heading .plan-price {
  font-size: 32px;
  color: #0AB3E5;
}
.plans .plan .plan-heading .plan-price span {
  font-size: 14px;
}
.plans .plan .plan-heading .plan-title strong {
  text-transform: uppercase;
  font-size: 14px;
}
.plans .plan .plan-body .plan-nodes strong {
  font-size: 30px;
  display: block;
}
.plans .plan .plan-body .plan-nodes small {
  font-size: 16px;
}
.plans .plan .btn-plan {
  clear: both;
  border: 0 none;
  border-radius: 0;
  padding: 20px 0;
  font-weight: 700;
  color: #3F3F3F;
  font-size: 13px;
  text-transform: uppercase;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.plans .plan.active {
  background-color: #fff;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.plans .plan.active .btn-plan {
  background-color: #0AB3E5;
  color: #fff;
}
.plans .plan.active:hover {
  transform: scale(1);
  background-color: #fff;
}
.plans .plan.recommended svg {
  position: absolute;
  width: 80px;
  top: -75px;
  right: 15px;
}
.qa-container {
  background-color: #f5f5f5;
  padding: 1px 40px;
  border-radius: 5px;
}
.qa-container h3 {
  margin-bottom: 30px;
  margin-top: 30px;
  font-weight: 900;
}
.qa-container ul {
  padding: 0;
  list-style: none;
}
.qa-container li {
  margin-bottom: 40px;
}
.qa-container .question {
  color: #727272;
  font-weight: bold;
  text-transform: inherit;
  letter-spacing: inherit;
  font-size: 16px;
  border-bottom: 3px solid #E6E6E6;
  margin-bottom: 10px;
  display: inline-block;
}
.checkbox {
  font-size: 16px;
  cursor: pointer;
  display: flex;
}
.checkbox i {
  width: 18px;
  text-align: center;
  color: #3F3F3F;
  font-size: 15px;
  transform: translateY(2px);
  margin-right: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox label {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox span {
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox input {
  display: none;
}
.checkbox:hover {
  color: #000;
}
.input-checkbox {
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
}
.input-checkbox i {
  width: 18px;
  text-align: center;
  color: #3F3F3F;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.input-checkbox label {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.input-checkbox span {
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.input-checkbox input {
  display: none;
}
.input-checkbox:hover {
  color: #000;
}
.input-checkbox.disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.3;
}
#account-usage .loader {
  margin-top: 100px;
}
#account-usage fieldset {
  padding: 0 20px;
}
#account-usage .current-usage {
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 18px;
  margin-bottom: 18px;
}
#total-usage-text {
  padding: 0px 20px 20px 0px;
  line-height: 150%;
}
#total-usage-text .total-box {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
}
#total-usage-text .total-box.distributed-box {
  background-color: #0ab3e5;
}
#total-usage-text .total-box.sandbox-box {
  background-color: #ffd260;
}
.ct-horizontal {
  white-space: nowrap;
}
#chart-stacked-bar {
  position: relative;
}
#chart-tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 3px 5px;
  border-radius: 3px;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  pointer-events: none;
  z-index: 100;
}
#chart-tooltip .chartjs-tooltip-title {
  color: white;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 3px;
  margin-bottom: 3px;
}
#chart-tooltip .chartjs-tooltip-key {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
}
#chart-tooltip .chartjs-tooltip-key.sandbox {
  background-color: #ffd260;
}
#chart-tooltip .chartjs-tooltip-key.distributed {
  background-color: #0ab3e5;
}
.cluster-icon {
  width: 3em;
  height: 3em;
  color: #0AB3E5;
  border-radius: 0.2em;
  border: 0.2em solid #0AB3E5;
  text-align: center;
  background-color: #d7f5fd;
}
.cluster-icon span {
  font-size: 1em;
  line-height: 2.7em;
  font-weight: 700;
}
.cluster-icon span.sandbox {
  display: none;
}
.cluster-icon.sandbox {
  border-color: #FFD260;
  background-color: #fff6e0;
}
.cluster-icon.sandbox span {
  color: #FFD260;
}
.cluster-icon.sandbox span.sandbox {
  display: inline-block;
  font-size: 1.2em;
  line-height: 2.3em;
  font-weight: 700;
}
.cluster-icon.sandbox span.production {
  display: none;
}
.components-list strong {
  font-weight: 300;
  display: block;
  margin-bottom: 20px;
  padding-left: 15px;
}
.components-list .list-group .list-group-item {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  border-bottom: 1px solid transparent;
}
.components-list .list-group .list-group-item svg {
  flex: 0 auto;
}
.components-list .list-group .list-group-item span {
  flex: 1 auto;
  padding-left: 10px;
  line-height: 34px;
}
.components-list .list-group .list-group-item:hover {
  background-color: #fff;
}
components-list .modal-body {
  overflow: auto !important;
}
.cluster-form {
  background-color: #fff;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cluster-form .cluster-form-body {
  padding: 40px 70px;
  flex: 1 auto;
  overflow-y: auto;
}
.cluster-form .cluster-form-footer {
  position: relative !important;
  flex: 0 auto;
  height: 80px;
  min-height: 80px;
}
.cluster-form .cluster-form-footer .modal-title-container {
  display: flex !important;
  flex-direction: row !important;
  justify-content: left !important;
  transform: translateY(8px) !important;
}
.cluster-form .cluster-form-footer .modal-title-container svg {
  width: 34px !important;
  height: 34px !important;
  flex: 0 auto !important;
  margin-right: 10px;
}
.cluster-form .cluster-form-footer .modal-title-container h1 {
  flex: 1 auto !important;
}
.cluster-form .cluster-form-slider {
  text-align: center;
  padding: 0 30px;
}
.cluster-form .cluster-form-slider strong {
  font-size: 15px;
  display: block;
  padding-bottom: 5px;
}
.cluster-form .cluster-form-slider small {
  font-size: 13px;
  display: block;
  padding-bottom: 20px;
}
.cluster-form .cluster-form-cat {
  min-height: 120px;
  text-align: center;
  position: relative;
}
.cluster-form .cluster-form-cat span {
  display: block;
  font-size: 14px;
  color: #0AB3E5;
  font-weight: 600;
}
.cluster-form .cluster-form-cat .cluster-form-cat-nodes {
  position: absolute;
  top: 45px;
  left: 50%;
  font-size: 35px;
  font-weight: 300;
  -webkit-transform: translate(90px, 0);
  -ms-transform: translate(90px, 0);
  -o-transform: translate(90px, 0);
  transform: translate(90px, 0);
}
.cluster-form .form-group.cluster-form-terminate {
  display: flex;
  flex-direction: column;
  padding: 15px 20% 0;
}
.cluster-form .form-group.cluster-form-terminate div.cluster-form-terminate-checkbox input {
  margin-right: 7px;
}
.cluster-form .form-group.cluster-form-terminate div.cluster-form-terminate-checkbox label {
  text-transform: none;
}
.cluster-form .form-group.cluster-form-terminate div.cluster-form-terminate-select {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.cluster-form .form-group.cluster-form-terminate div.cluster-form-terminate-select .cluster-form-terminate-select-label {
  display: block;
  flex: 0 auto;
  width: 40px;
  line-height: 40px;
}
.cluster-form .form-group.cluster-form-terminate div.cluster-form-terminate-select .cluster-form-terminate-select-control {
  display: block;
  flex: 1 auto;
}
.cluster-form .form-group.re-use {
  display: flex;
}
.cluster-form .form-group.re-use label {
  flex: 0 auto;
  width: 90px;
  min-width: 90px;
  max-width: 90px;
  text-align: right;
  padding-right: 10px;
  line-height: 40px;
}
.cluster-form .form-group.re-use div {
  flex: 1 auto;
}
.cluster-form .form-group.re-use div small {
  padding: 5px 10px;
  display: block;
  height: 36px;
  min-height: 36px;
}
.schedule-form {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.schedule-form .schedule-form-body {
  flex: 1 auto;
  overflow-y: auto;
}
.schedule-form .schedule-form-footer {
  position: relative !important;
  flex: 0 auto;
  height: 80px;
  min-height: 80px;
}
.schedule-form .schedule-form-footer .modal-title-container {
  display: flex !important;
  flex-direction: row !important;
  justify-content: left !important;
  transform: translateY(8px) !important;
}
.schedule-form .schedule-form-footer .modal-title-container svg {
  width: 34px !important;
  height: 34px !important;
  flex: 0 auto !important;
  margin-right: 10px;
}
.schedule-form .schedule-form-footer .modal-title-container h1 {
  flex: 1 auto !important;
}
.schedule-form .schedule-form-toggle {
  padding-top: 25px;
}
.schedule-form .schedule-form-toggle .schedule-form-toggle-label {
  margin-right: 5px;
}
.schedule-form .schedule-form-toggle .toggle-group label {
  line-height: 25px !important;
}
.schedule-form .name-description-editor {
  padding: 0 10px;
}
.schedule-form .tab-content {
  padding: 50px 70px;
}
.schedule-form .input-group {
  min-width: 180px;
}
.schedule-form .input-group button {
  padding: 9px 10px 10px;
}
.schedule-form .schedule-form-steps {
  padding: 50px 70px;
}
.schedule-form .schedule-form-content {
  max-width: 630px;
  padding: 0 0;
}
.schedule-form .schedule-form-content .row {
  margin-bottom: 10px;
}
.schedule-form .schedule-form-content .form-group input[type='checkbox'] {
  margin-right: 7px;
}
.schedule-form .cluster-form {
  max-width: 630px;
  padding: 0 0 !important;
  margin: 0 0 !important;
}
.schedule-form .cluster-form form {
  padding: 0 0 !important;
}
.schedule-form .cluster-form .cluster-form-body {
  padding: 0 0 !important;
}
.schedule-form .invalid-cron {
  color: #ffa654;
}
.schedule-form .valid-cron {
  color: #808080;
}
.schedule-form #datetimepicker3 #datetimepicker3-input {
  border-radius: 4px 0 0 4px;
}
.schedule-form #datetimepicker3 > .input-group-addon:first-child {
  border: 0;
}
.schedule-form #datetimepicker3 > .input-group-addon:first-child:hover {
  background-color: white;
  cursor: auto;
}
.schedule-form #datetimepicker3 .disabled {
  cursor: not-allowed;
  opacity: 0.65;
}
.schedule-form #datetimepicker3 .input-group-addon {
  cursor: default;
}
.schedule-form #datetimepicker3 .input-group-addon:hover {
  background-color: #fff;
  border-color: #ccc;
}
.modal .modal-dialog .workspace-form .step,
.modal .modal-dialog .package-workspace-editor .step {
  margin-bottom: 60px;
}
.modal .modal-dialog .workspace-form .packages-picker-list,
.modal .modal-dialog .package-workspace-editor .packages-picker-list {
  padding-top: 0;
}
.modal .modal-dialog .workspace-form .modal-footer .modal-title-container,
.modal .modal-dialog .package-workspace-editor .modal-footer .modal-title-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.modal .modal-dialog .workspace-form .modal-footer .modal-title-container svg,
.modal .modal-dialog .package-workspace-editor .modal-footer .modal-title-container svg {
  width: 34px;
  height: 34px;
  flex: 0 auto;
  margin-right: 10px;
}
.schema-editor {
  position: relative;
  min-width: 580px;
}
.schema-editor .schema-field-header {
  line-height: 150%;
  color: #808080;
}
.schema-editor .schema-field-header div {
  padding: 0 5px;
}
.schema-editor .schema-field-header,
.schema-editor .schema-field-editor {
  position: relative;
  display: flex;
  padding-bottom: 5px;
}
.schema-editor .schema-field-header .schema-field-editor-handle,
.schema-editor .schema-field-editor .schema-field-editor-handle {
  width: 34px;
}
.schema-editor .schema-field-header .schema-field-editor-handle button,
.schema-editor .schema-field-editor .schema-field-editor-handle button {
  color: #808080;
  cursor: ns-resize;
}
.schema-editor .schema-field-header .schema-field-editor-name,
.schema-editor .schema-field-editor .schema-field-editor-name {
  flex: 1 auto;
  padding-right: 5px;
}
.schema-editor .schema-field-header .schema-field-editor-alias,
.schema-editor .schema-field-editor .schema-field-editor-alias {
  flex: 1 auto;
  padding-right: 5px;
}
.schema-editor .schema-field-header .schema-field-editor-type,
.schema-editor .schema-field-editor .schema-field-editor-type {
  width: 120px;
  padding-right: 5px;
}
.schema-editor .schema-field-header .schema-field-editor-buttons,
.schema-editor .schema-field-editor .schema-field-editor-buttons {
  min-width: 78px;
}
.schema-editor .schema-field-header select,
.schema-editor .schema-field-editor select,
.schema-editor .schema-field-header button,
.schema-editor .schema-field-editor button {
  height: 40px;
}
.schema-editor .schema-field-header select,
.schema-editor .schema-field-editor select,
.schema-editor .schema-field-header option,
.schema-editor .schema-field-editor option,
.schema-editor .schema-field-header input,
.schema-editor .schema-field-editor input {
  width: 100%;
  padding: 20px 10px;
  border: 0 none;
}
.schema-editor .schema-field-header.ui-sortable-helper button:not(.btn-link),
.schema-editor .schema-field-editor.ui-sortable-helper button:not(.btn-link),
.schema-editor .schema-field-header.ui-sortable-helper select,
.schema-editor .schema-field-editor.ui-sortable-helper select,
.schema-editor .schema-field-header.ui-sortable-helper input,
.schema-editor .schema-field-editor.ui-sortable-helper input {
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
}
.schema-editor .schema-field-header.ui-sortable-helper .schema-field-editor-handle button,
.schema-editor .schema-field-editor.ui-sortable-helper .schema-field-editor-handle button {
  color: #0AB3E5;
}
.wizard {
  overflow: hidden;
  width: 100%;
}
.wizard .wizard-tabs {
  display: flex;
  height: 40px;
  overflow: hidden;
  margin-bottom: 15px;
}
.wizard .wizard-tabs .wizard-tab {
  position: relative;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  border: 0 none;
  padding: 0 10px 0 45px;
  border-radius: 0;
}
.wizard .wizard-tabs .wizard-tab .wizard-tab-number {
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  top: 10px;
  left: 18px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50%;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.05);
}
.wizard .wizard-tabs .wizard-tab:first-child {
  padding: 0 10px 0 35px;
  border-radius: 4px 0 0 4px;
}
.wizard .wizard-tabs .wizard-tab:first-child .wizard-tab-number {
  left: 10px;
}
.wizard .wizard-tabs .wizard-tab:last-child {
  padding: 0 10px 0 45px;
  border-radius: 0 4px 4px 0;
}
.wizard .wizard-tabs .wizard-tab:after {
  border-left-color: #fff !important;
}
.wizard .wizard-tabs .wizard-tab:before {
  border-left-color: #CCCCCC !important;
}
.wizard .wizard-tabs .wizard-tab:hover {
  background-color: #f2f2f2;
}
.wizard .wizard-tabs .wizard-tab:hover:after {
  border-left-color: #f2f2f2 !important;
}
.wizard .wizard-tabs .wizard-tab.active {
  background-color: #0AB3E5;
  cursor: default;
  color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.wizard .wizard-tabs .wizard-tab.active .wizard-tab-number {
  background-color: #fff;
  color: #0AB3E5;
}
.wizard .wizard-tabs .wizard-tab.active:after,
.wizard .wizard-tabs .wizard-tab.active:before {
  border-left-color: #0AB3E5 !important;
}
.wizard .wizard-wrapper {
  -webkit-transition: all 250ms ease-out;
  -o-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
}
.wizard .wizard-wrapper .wizard-step {
  float: left;
}
/** The Magic **/
.btn-breadcrumb .btn:not(:last-child):after {
  content: ' ';
  display: block;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 10px solid white;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  right: -9px;
  z-index: 3;
}
.btn-breadcrumb .btn:not(:last-child):before {
  content: ' ';
  display: block;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 12px solid #adadad;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  margin-left: 1px;
  right: -9px;
  z-index: 3;
}
/** Default button **/
.btn-breadcrumb .btn.btn-default:not(:last-child):after {
  border-left: 10px solid #fff;
}
.btn-breadcrumb .btn.btn-default:not(:last-child):before {
  border-left: 10px solid #ccc;
}
.btn-breadcrumb .btn.btn-default:hover:not(:last-child):after {
  border-left: 10px solid #CCCCCC;
}
.btn-breadcrumb .btn.btn-default:hover:not(:last-child):before {
  border-left: 10px solid #CCCCCC;
}
/** Primary button **/
.btn-breadcrumb .btn.btn-primary:not(:last-child):after {
  border-left: 10px solid #428bca;
}
.btn-breadcrumb .btn.btn-primary:not(:last-child):before {
  border-left: 10px solid #357ebd;
}
.btn-breadcrumb .btn.btn-primary:hover:not(:last-child):after {
  border-left: 10px solid #3276b1;
}
.btn-breadcrumb .btn.btn-primary:hover:not(:last-child):before {
  border-left: 10px solid #285e8e;
}
/** Success button **/
.btn-breadcrumb .btn.btn-success:not(:last-child):after {
  border-left: 10px solid #5cb85c;
}
.btn-breadcrumb .btn.btn-success:not(:last-child):before {
  border-left: 10px solid #4cae4c;
}
.btn-breadcrumb .btn.btn-success:hover:not(:last-child):after {
  border-left: 10px solid #47a447;
}
.btn-breadcrumb .btn.btn-success:hover:not(:last-child):before {
  border-left: 10px solid #398439;
}
/** Danger button **/
.btn-breadcrumb .btn.btn-danger:not(:last-child):after {
  border-left: 10px solid #d9534f;
}
.btn-breadcrumb .btn.btn-danger:not(:last-child):before {
  border-left: 10px solid #d43f3a;
}
.btn-breadcrumb .btn.btn-danger:hover:not(:last-child):after {
  border-left: 10px solid #d2322d;
}
.btn-breadcrumb .btn.btn-danger:hover:not(:last-child):before {
  border-left: 10px solid #ac2925;
}
/** Warning button **/
.btn-breadcrumb .btn.btn-warning:not(:last-child):after {
  border-left: 10px solid #f0ad4e;
}
.btn-breadcrumb .btn.btn-warning:not(:last-child):before {
  border-left: 10px solid #eea236;
}
.btn-breadcrumb .btn.btn-warning:hover:not(:last-child):after {
  border-left: 10px solid #ed9c28;
}
.btn-breadcrumb .btn.btn-warning:hover:not(:last-child):before {
  border-left: 10px solid #d58512;
}
/** Info button **/
.btn-breadcrumb .btn.btn-info:not(:last-child):after {
  border-left: 10px solid #5bc0de;
}
.btn-breadcrumb .btn.btn-info:not(:last-child):before {
  border-left: 10px solid #46b8da;
}
.btn-breadcrumb .btn.btn-info:hover:not(:last-child):after {
  border-left: 10px solid #39b3d7;
}
.btn-breadcrumb .btn.btn-info:hover:not(:last-child):before {
  border-left: 10px solid #269abc;
}
.terminal-component {
  height: 100%;
  top: auto !important;
  bottom: 0 !important;
  right: 0;
  z-index: 1;
  background-color: #000;
  min-height: 200px;
}
.terminal-component .btn-link {
  color: #999999;
}
.terminal-component .toggle {
  display: none;
}
.terminal-component .fa-terminal {
  color: #fff;
  background-color: #333;
  padding: 3px;
  border-radius: 3px;
}
.terminal-component .terminal-header {
  display: none;
  background-color: #fff;
  border-top: 1px solid #999999;
}
.terminal-component .terminal-header span {
  padding: 5px;
  display: inline-block;
}
.terminal-component .terminal-body {
  background-color: #000;
  height: 100% !important;
  width: 100% !important;
}
.connections.generic-list-body {
  border-bottom: 1px solid #cccccc;
}
.connections .connections-form {
  display: none;
}
.connections .connections-form h3 img {
  width: 32px;
  margin: -5px 5px 0 0;
}
.connections .connections-form h3 span {
  line-height: 32px;
}
.connections .connections-form .checkbox label {
  padding-left: 0;
}
.connections .loader {
  margin: 20px auto;
}
.connection-form-shopify .form-control-feedback {
  width: 125px;
  pointer-events: none;
  color: #CCCCCC;
}
.date-range-container {
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}
.date-range-container .fa {
  margin-top: -15px;
  margin-left: 10px;
}
.date-range {
  position: relative;
  display: flex;
  align-items: center;
}
.date-range .btn-group {
  margin-bottom: 20px;
}
.date-range .fa {
  margin-top: 35px;
}
.date-range xp-select {
  margin-top: 7px;
}
.date-range .date-range-buttons-container {
  display: flex;
  flex-flow: column;
  width: 260px;
  min-width: 260px;
  padding-right: 20px;
  height: 120px;
}
.date-range .mat-form-field {
  margin-right: 20px;
}
.date-range .daterangepicker .daterangepicker_input {
  display: none !important;
}
.date-range .daterangepicker.dropdown-menu {
  top: 107% !important;
  padding: 10px;
  min-width: 506px !important;
}
.date-range .date-range-form-control {
  color: #3F3F3F;
  display: flex;
  padding-top: 25px;
}
.date-range .date-range-form-control .date-control {
  flex: 1 auto;
  position: relative;
}
.date-range .date-range-form-control .date-control label {
  position: absolute;
  top: -26px;
}
.date-range .date-range-form-control .date-control i {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
}
.date-range .date-range-form-control .date-control input {
  z-index: 0;
  padding-left: 32px;
}
.date-range .date-symbol {
  width: 39px;
  text-align: center;
  line-height: 39px;
  margin-right: 30px;
  margin-top: 35px;
}
.headers-editor {
  padding: 10px 0;
}
.headers-editor .header-row {
  display: flex;
  padding: 0 0 3px 0;
}
.headers-editor .header-row .header-cell {
  flex: 0 auto;
}
.headers-editor .header-row .header-cell.header-cell-input {
  margin-right: 3px;
  flex: 1 auto;
}
.headers-editor .header-row .header-cell button i {
  color: #CCCCCC;
}
.headers-editor .header-row .header-cell button:hover i {
  color: #808080;
}
.headers-editor .header-row .header-cell button:active i {
  color: #999999;
}
.headers-editor .header-row.header-empty {
  opacity: 0.5;
}
.headers-editor .header-row.header-empty button {
  pointer-events: none;
}
.select-editor {
  width: 100%;
}
.select-editor .select-variables-editor {
  padding-top: 20px;
  padding-bottom: 10px;
}
.select-editor .fields-rows {
  display: flex;
  padding: 0 0 3px 0;
}
.select-editor .fields-rows .fields-cell.fields-cell-input {
  margin-right: 3px;
  flex: 1 auto;
}
.select-editor .fields-rows .fields-cell button i {
  color: #CCCCCC;
}
.select-editor .fields-rows .fields-cell button:hover i {
  color: #808080;
}
.select-editor .fields-rows .fields-cell button:active i {
  color: #999999;
}
.select-editor .fields-rows .fields-cell.fields-cell-add,
.select-editor .fields-rows .fields-cell.fields-cell-remove,
.select-editor .fields-rows .fields-cell.fields-cell-move {
  flex: 0 auto;
}
.select-editor .expression-editor-icon {
  right: 18px !important;
  background-color: transparent !important;
}
.select-editor .btn-auto-fill {
  margin-right: 20px;
}
.select-editor-preview {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #EEE;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.select-editor-preview blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
.select-editor-preview .table {
  margin-bottom: 0 !important;
  background-color: #fff;
}
.select-editor-preview .table thead tr th {
  border-bottom-width: 0px;
}
.sort-editor-component {
  width: 100%;
}
.sort-editor-component .sort-variables-editor {
  padding-top: 20px;
  padding-bottom: 20px;
}
.url-editor .input-group-btn {
  vertical-align: top;
}
.url-editor .btn {
  background-color: #CCCCCC;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 15px 11px;
}
.url-editor .btn .caret {
  margin-left: 7px;
  color: #808080;
}
.url-editor .form-control {
  border-left: 0 none;
}
.job-error pre {
  border-radius: 0;
}
.job-error .loader {
  padding: 100px 0;
}
.packages-selector .packages-selector-item {
  border-bottom: 1px solid #E6E6E6;
}
.packages-selector .packages-selector-item:last-child {
  border-bottom: 0 none;
  border-radius: 0 0 5px 5px;
}
.packages-selector .packages-selector-item .packages-selector-item-variables-wrapper {
  display: none;
  background-color: #fff;
  padding: 20px;
}
.packages-selector .packages-selector-item .packages-selector-item-variables-wrapper .variables-editor-headers .variables-expression {
  padding-right: 0px !important;
  padding-left: 15px !important;
}
.packages-selector .packages-selector-item .packages-selector-item-variables-wrapper .variables-editor-remove {
  display: none !important;
}
.packages-selector .packages-selector-item .packages-selector-item-variables {
  border-left: 1px solid transparent !important;
  border-right: 1px solid transparent !important;
}
.packages-selector .packages-selector-item.open {
  background-color: #f3f3f3;
}
.packages-selector .packages-selector-item.open .packages-selector-item-variables {
  background-color: #fff;
  border-left: 1px solid #E6E6E6;
  border-right: 1px solid #E6E6E6;
}
.packages-selector .packages-selector-item.open .packages-selector-item-name,
.packages-selector .packages-selector-item.open .packages-selector-item-date,
.packages-selector .packages-selector-item.open .packages-selector-item-remove {
  border-bottom: 1px solid #E6E6E6;
}
.packages-selector .packages-selector-list {
  border: 1px solid #CCCCCC;
  border-top: 0 none;
  border-radius: 0 0 5px 5px;
}
.packages-selector .packages-selector-list .packages-selector-item .packages-selector-item-variables,
.packages-selector .packages-selector-list .packages-selector-item .packages-selector-item-remove,
.packages-selector .packages-selector-list .packages-selector-item .packages-selector-item-icon,
.packages-selector .packages-selector-list .packages-selector-item .packages-selector-item-name,
.packages-selector .packages-selector-list .packages-selector-item .packages-selector-item-date {
  padding: 0 12px;
}
.packages-selector .packages-selector-list .packages-selector-item .packages-selector-item-variables,
.packages-selector .packages-selector-list .packages-selector-item .packages-selector-item-remove {
  display: block;
  padding: 0 10px;
}
.packages-selector .packages-selector-list .packages-selector-item .packages-selector-item-variables i,
.packages-selector .packages-selector-list .packages-selector-item .packages-selector-item-remove i {
  color: #CCCCCC;
}
.packages-selector .packages-selector-list .packages-selector-item .packages-selector-item-remove {
  margin-right: 6px;
}
.packages-selector .packages-selector-list .packages-selector-item .packages-selector-item-remove i {
  color: #E54C40;
}
.packages-selector .packages-selector-list .packages-selector-item .packages-selector-item-icon {
  width: 24px;
  height: 30px;
  padding: 7px !important;
}
.packages-selector .packages-selector-list .packages-selector-item-variables-wrapper {
  display: block;
}
.packages-selector .packages-selector-list .packages-selector-item-variables-wrapper .modal-footer {
  border-radius: 0 0 5px 5px;
}
.packages-selector .selectize-input {
  width: 100% !important;
  border-radius: 5px 5px 0 0;
  border-color: #CCCCCC;
  position: relative;
  height: 46px;
  line-height: 32px;
}
.packages-selector .selectize-input.focus {
  border-color: #CCCCCC;
  outline: 0;
  -webkit-box-shadow: 0 0;
  box-shadow: 0 0;
}
.packages-selector .selectize-input:after {
  display: none !important;
}
.packages-selector .selectize-control {
  max-height: 47px;
  position: relative;
}
.packages-selector .selectize-control:after {
  font-family: 'FontAwesome';
  content: '\f067';
  font-size: 14px;
  color: #808080;
  position: absolute;
  top: 14px;
  right: 15px;
  z-index: 1;
  pointer-events: none;
}
.packages-selector .selectize-control:hover:after {
  color: #0AB3E5;
}
.packages-selector .selectize-dropdown-content {
  min-height: 420px;
  padding: 0 !important;
}
.packages-selector .selectize-dropdown {
  top: 43px !important;
  left: 4px !important;
  border-color: #CCCCCC;
  border-radius: 0 0 5px 5px;
  width: calc(107% - 8px) !important;
}
.packages-selector .selectize-dropdown:hover {
  border-color: #CCCCCC;
}
.packages-selector .alert {
  margin-top: 20px;
}
.packages-selector.packages-selector-empty .selectize-input {
  border-bottom: 1px solid #CCCCCC;
  border-radius: 5px;
}
.packages-selector.packages-selector-empty .packages-selector-list {
  border: 0 none;
}
.packages-selector.packages-selector-full .selectize-input {
  display: none;
}
.packages-selector.packages-selector-full .packages-selector-list {
  border-radius: 5px;
  border: 1px solid #CCCCCC;
}
.packages-selector svg {
  color: #cccccc !important;
  fill: #8c8c8c !important;
}
.packages-selector-item-wrapper {
  display: flex;
  flex-direction: row;
}
.packages-selector-item-wrapper .packages-selector-item-icon,
.packages-selector-item-wrapper .packages-selector-item-name,
.packages-selector-item-wrapper .packages-selector-item-date,
.packages-selector-item-wrapper .packages-selector-item-variables,
.packages-selector-item-wrapper .packages-selector-item-remove {
  line-height: 42px;
  cursor: pointer;
}
.packages-selector-item-wrapper .packages-selector-item-variables,
.packages-selector-item-wrapper .packages-selector-item-remove {
  display: none;
  cursor: pointer;
}
.packages-selector-item-wrapper .packages-selector-item-variables:hover i,
.packages-selector-item-wrapper .packages-selector-item-remove:hover i {
  color: #3F3F3F;
}
.packages-selector-item-wrapper .packages-selector-item-icon {
  flex: 0 auto;
  width: 30px;
  height: 30px;
  padding: 6px 0 0 0 !important;
}
.packages-selector-item-wrapper .packages-selector-item-icon svg {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.packages-selector-item-wrapper .packages-selector-item-name {
  flex: 1 auto;
  font-weight: 600;
}
.packages-selector-item-wrapper .packages-selector-item-date,
.packages-selector-item-wrapper .packages-selector-item-variables,
.packages-selector-item-wrapper .packages-selector-item-remove {
  flex: 0 auto;
}
.packages-selector-generic-list .generic-list-item {
  cursor: pointer;
}
.packages-selector-generic-list .package-list-item {
  pointer-events: none;
}
.packages-selector-generic-list .package-run-job,
.packages-selector-generic-list .package-menu {
  display: none !important;
}
.errors-viewer {
  position: absolute !important;
  z-index: 99999999;
  top: 90px;
  left: 68px;
  width: 460px;
  border: 10px solid rgba(0, 0, 0, 0.5);
  max-height: calc(100vh - 300px);
  overflow: auto;
}
.errors-viewer.errors-viewer-new {
  top: 5px;
  left: 15px;
}
.errors-viewer .errors-viewer-header {
  cursor: move;
}
.errors-viewer .errors-viewer-header strong {
  color: #3F3F3F;
  font-size: 16px;
}
.errors-viewer .errors-viewer-body {
  overflow-y: auto;
}
.errors-viewer .panel .panel-body {
  padding: 0;
  overflow-y: auto;
}
.errors-viewer .panel .panel-body .list-group {
  margin-bottom: 0;
}
.errors-viewer .panel .panel-body .list-group li:last-child {
  border-bottom: 0 none;
}
.errors-viewer .panel .panel-body i {
  margin-right: 5px;
}
.errors-viewer .panel-clickable {
  cursor: pointer;
}
.data-preview .well {
  display: flex;
  justify-content: center;
}
.data-preview .data-preview-header {
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.data-preview .data-preview-header .btn {
  width: auto;
  padding: 1px 10px;
}
.data-preview .data-preview-header .btn-group {
  margin-left: 10px;
}
.data-preview .data-preview-table .data-preview-table-wrapper {
  width: 100%;
  max-height: 360px;
  border-radius: 5px;
  padding-bottom: 10px;
  overflow: hidden !important;
  overflow: auto !important;
}
.data-preview .data-preview-table .data-preview-table-wrapper .data-preview-table-index {
  text-align: center;
  font-weight: 400;
}
.data-preview .data-preview-table .data-preview-table-wrapper .schema-importer-table-search {
  position: relative;
  height: 32px;
}
.data-preview .data-preview-table .data-preview-table-wrapper .schema-importer-table-search .schema-importer-table-search-input {
  padding-top: 5px;
  border: 0 none;
  width: 100%;
  height: 32px;
  max-height: 32px;
  line-height: 32px;
  padding-left: 28px;
  padding-right: 28px;
  line-height: 40px;
  z-index: 0;
}
.data-preview .data-preview-table .data-preview-table-wrapper .schema-importer-table-search .schema-importer-table-search-input::-webkit-input-placeholder {
  font-weight: 300;
  font-size: 13px;
  color: #CCCCCC;
}
.data-preview .data-preview-table .data-preview-table-wrapper .schema-importer-table-search .schema-importer-table-search-input::-webkit-input-placeholder::-moz-placeholder {
  color: #CCCCCC;
  opacity: 1;
}
.data-preview .data-preview-table .data-preview-table-wrapper .schema-importer-table-search .schema-importer-table-search-input::-webkit-input-placeholder:-ms-input-placeholder {
  color: #CCCCCC;
}
.data-preview .data-preview-table .data-preview-table-wrapper .schema-importer-table-search .schema-importer-table-search-input::-webkit-input-placeholder::-webkit-input-placeholder {
  color: #CCCCCC;
}
.data-preview .data-preview-table .data-preview-table-wrapper .schema-importer-table-search .schema-importer-table-search-input::-moz-placeholder {
  font-weight: 300;
  font-size: 13px;
  color: #CCCCCC;
}
.data-preview .data-preview-table .data-preview-table-wrapper .schema-importer-table-search .schema-importer-table-search-input::-moz-placeholder::-moz-placeholder {
  color: #CCCCCC;
  opacity: 1;
}
.data-preview .data-preview-table .data-preview-table-wrapper .schema-importer-table-search .schema-importer-table-search-input::-moz-placeholder:-ms-input-placeholder {
  color: #CCCCCC;
}
.data-preview .data-preview-table .data-preview-table-wrapper .schema-importer-table-search .schema-importer-table-search-input::-moz-placeholder::-webkit-input-placeholder {
  color: #CCCCCC;
}
.data-preview .data-preview-table .data-preview-table-wrapper .schema-importer-table-search .schema-importer-table-search-input:-ms-input-placeholder {
  font-weight: 300;
  font-size: 13px;
  color: #CCCCCC;
}
.data-preview .data-preview-table .data-preview-table-wrapper .schema-importer-table-search .schema-importer-table-search-input:-ms-input-placeholder::-moz-placeholder {
  color: #CCCCCC;
  opacity: 1;
}
.data-preview .data-preview-table .data-preview-table-wrapper .schema-importer-table-search .schema-importer-table-search-input:-ms-input-placeholder:-ms-input-placeholder {
  color: #CCCCCC;
}
.data-preview .data-preview-table .data-preview-table-wrapper .schema-importer-table-search .schema-importer-table-search-input:-ms-input-placeholder::-webkit-input-placeholder {
  color: #CCCCCC;
}
.data-preview .data-preview-table .data-preview-table-wrapper .schema-importer-table-search .schema-importer-table-search-input:-moz-placeholder {
  font-weight: 300;
  font-size: 13px;
  color: #CCCCCC;
}
.data-preview .data-preview-table .data-preview-table-wrapper .schema-importer-table-search .schema-importer-table-search-input:-moz-placeholder::-moz-placeholder {
  color: #CCCCCC;
  opacity: 1;
}
.data-preview .data-preview-table .data-preview-table-wrapper .schema-importer-table-search .schema-importer-table-search-input:-moz-placeholder:-ms-input-placeholder {
  color: #CCCCCC;
}
.data-preview .data-preview-table .data-preview-table-wrapper .schema-importer-table-search .schema-importer-table-search-input:-moz-placeholder::-webkit-input-placeholder {
  color: #CCCCCC;
}
.data-preview .data-preview-table .data-preview-table-wrapper .schema-importer-table-search .schema-importer-table-search-icon {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 7px;
  color: #CCCCCC;
  pointer-events: none;
}
.data-preview .data-preview-table .data-preview-table-wrapper .schema-importer-table-search .schema-importer-table-cancel-icon {
  position: absolute;
  z-index: 1;
  top: 7px;
  right: 7px;
  color: #CCCCCC;
  cursor: pointer;
}
.data-preview .data-preview-table .data-preview-table-wrapper table {
  margin-bottom: 0;
  max-width: 100%;
}
.data-preview .data-preview-table .data-preview-table-wrapper table thead tr th {
  border-bottom-width: 1px;
  border-left: 1px solid #E6E6E6;
  background-color: #eee;
  text-align: center;
  padding: 6px 4px;
  font-size: 13px;
}
.data-preview .data-preview-table .data-preview-table-wrapper table thead tr th.header-field-index {
  width: 32px;
  max-width: 32px;
  min-width: 32px;
}
.data-preview .data-preview-table .data-preview-table-wrapper table thead tr th.header-field-move {
  width: 25px;
  min-width: 25px;
  max-width: 25px;
}
.data-preview .data-preview-table .data-preview-table-wrapper table thead tr th.header-field-data-type {
  width: 85px !important;
  min-width: 85px !important;
  max-width: 85px !important;
}
.data-preview .data-preview-table .data-preview-table-wrapper table thead tr th.header-field-add-between,
.data-preview .data-preview-table .data-preview-table-wrapper table thead tr th.header-field-remove,
.data-preview .data-preview-table .data-preview-table-wrapper table thead tr th.header-field-add {
  width: 25px !important;
  min-width: 25px !important;
  max-width: 25px !important;
}
.data-preview .data-preview-table .data-preview-table-wrapper table thead tr td {
  color: #808080;
  font-weight: 300;
  font-size: 12px;
  padding: 1px 3px;
}
.data-preview .data-preview-table .data-preview-table-wrapper table thead tr.table-headers th {
  border-top: 1px solid #E6E6E6;
  background-color: #fff;
  color: #808080;
  text-align: center;
  padding: 4px;
  font-size: 11px !important;
}
.data-preview .data-preview-table .data-preview-table-wrapper table thead tr.table-headers th:first-child {
  border-left: 0 none;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr {
  height: 28px;
  max-height: 28px;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr th,
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr td {
  position: relative;
  height: 28px;
  max-height: 28px;
  line-height: 28px;
  padding: 0 4px;
  border-right: 1px solid #E6E6E6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr th input,
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr td input {
  padding-left: 3px;
  border: 0 none;
  height: 28px;
  max-height: 28px;
  line-height: 28px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  background-color: transparent;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr th select,
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr td select {
  width: 105%;
  background-color: transparent;
  border: 0 none;
  border-radius: 0;
  padding: 0;
  color: #808080;
  text-transform: uppercase;
  margin: 0 -4px;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr th select option,
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr td select option {
  padding: 0;
  color: #808080;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr th.field-name,
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr td.field-name {
  min-width: 160px;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr th.field-name .field-name-text,
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr td.field-name .field-name-text {
  position: absolute;
  width: calc(100% - 3px);
  top: 0;
  right: 0;
  bottom: 0;
  left: 5px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr th.invalid,
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr td.invalid {
  background-color: #ffdbba;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr th.field-btn-sm,
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr td.field-btn-sm {
  text-align: center;
  width: 25px !important;
  min-width: 25px !important;
  max-width: 25px !important;
  padding: 0 !important;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr th.field-btn-sm i,
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr td.field-btn-sm i {
  cursor: pointer !important;
  width: 23px !important;
  height: 23px !important;
  line-height: 23px !important;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr th.field-btn-sm:hover i,
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr td.field-btn-sm:hover i {
  color: #E54C40 !important;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr th:last-child,
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr td:last-child {
  border-right: 0;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr th.field-index,
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr td.field-index {
  text-align: center;
  font-weight: 400;
  min-width: 32px;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr th.field-add-between i,
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr td.field-add-between i {
  transform: translateY(2px);
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr th.field-add-between:hover i,
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr td.field-add-between:hover i {
  color: #13a95b !important;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr th.field-move,
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr td.field-move {
  cursor: move;
  min-width: 32px;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr th.field-move.field-move-disable,
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr td.field-move.field-move-disable {
  cursor: default;
  pointer-events: none;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr th.field-move.field-move-disable i,
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr td.field-move.field-move-disable i {
  display: none;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr th.field-data-type,
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr td.field-data-type {
  font-size: 12px;
  text-transform: uppercase;
  width: 85px !important;
  min-width: 85px !important;
  max-width: 85px !important;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr th.field-data-type span,
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr td.field-data-type span {
  display: inline-block;
  padding: 0 3px;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr th.field-data-type select option,
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr td.field-data-type select option {
  text-transform: uppercase;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr th.field-data-type .mat-select-value,
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr td.field-data-type .mat-select-value {
  font-size: 12px;
  text-transform: uppercase;
  width: 60px !important;
  margin-left: -3px;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr th.field-data-type .mat-select,
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr td.field-data-type .mat-select {
  min-height: 28px;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr th .highlighted,
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr td .highlighted {
  background-color: #ffe093;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr th {
  background-color: rgba(0, 0, 0, 0.05);
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr:first-child th,
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr:first-child td {
  border-top: 0;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr.added {
  opacity: 0.2;
  pointer-events: none;
  cursor: pointer;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr.selected-list-item-highlight td {
  background-color: #ffefc6;
}
.data-preview .data-preview-table .data-preview-table-wrapper table tbody tr.ui-sortable-helper {
  background-color: #fff;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
}
.data-preview .data-preview-table .data-preview-table-wrapper .data-preview-table-index {
  width: 30px;
}
.data-preview .data-preview-json {
  border: 1px solid #E6E6E6;
  border-radius: 5px;
}
.help {
  z-index: 10;
  position: inherit;
  align-items: center;
}
.main-wrapper help-menu > .help {
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 1090;
  text-align: center;
}
.help .dropdown-toggle {
  cursor: pointer;
  height: 38px;
  text-decoration: none;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  width: 50px;
  letter-spacing: 1px;
  line-height: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #0AB3E5;
  color: #05546b;
}
.help .dropdown-toggle:hover {
  background-color: #FFD260;
  color: #7a5700;
}
.auth-container .help .dropdown-toggle {
  background-color: #FFD260;
  color: #7a5700;
}
.auth-container .help .dropdown-toggle:hover {
  background-color: #0AB3E5;
  color: #05546b;
}
.app help-menu > .help,
.auth-container .help {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 1090;
}
.app help-menu > .help > .dropdown-toggle,
.auth-container .help > .dropdown-toggle {
  display: flex;
  justify-content: center;
  text-align: center;
  border-radius: 100%;
  height: 50px;
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.175);
}
.help-menu li a {
  display: flex;
  align-items: center;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #3f3f3f;
  white-space: nowrap;
  height: 100%;
}
.help-menu li a svg,
.help-menu li a i {
  position: absolute;
  left: 20px;
  height: 20px;
}
.help-menu li a svg.fa,
.help-menu li a i.fa {
  font-size: 18px;
}
.help-menu li a span {
  padding-left: 25px;
}
.table-view {
  width: 100%;
  overflow: auto;
}
.job-preview {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.job-preview .job-preview-loader {
  margin-top: 50px;
}
job-view {
  height: 100%;
  overflow: auto;
  margin: 55px 0 130px 0;
}
job-view .mat-tab-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  width: 100%;
}
.job-view {
  display: flex;
  flex-direction: column;
}
.job-view .job-view-back {
  flex: 0;
  min-height: 46px;
  background-color: #3F3F3F;
  cursor: pointer;
  line-height: 46px;
  color: #CCCCCC;
  padding-left: 15px;
  font-size: 14px;
  font-weight: 300;
}
.job-view .job-view-back i {
  font-size: 12px;
  margin-right: 2px;
  -webkit-transform: translate(0, -1px);
  -ms-transform: translate(0, -1px);
  -o-transform: translate(0, -1px);
  transform: translate(0, -1px);
}
.job-view .job-view-back:hover {
  color: #fff;
}
.job-view .job-view-body {
  flex: 1 auto;
  overflow-y: auto;
}
.job-view .job-view-body .loader {
  padding: 15px 0 10px;
}
.job-view .job-view-body .tab-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  background-color: #fff;
}
.job-view .job-view-body .tab-content .job-content {
  padding: 20px 50px;
}
.job-view .job-view-body .tab-content .job-content .package-variables-editor {
  padding: 30px 50px;
}
.job-view .job-view-body .tab-content .job-empty {
  padding: 50px;
  text-align: center;
  border: 1px solid #cccccc;
  border-radius: 5px;
  margin: 30px;
}
.job-view .job-view-footer {
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  flex: 0 auto;
  height: 50px;
  min-height: 120px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background: #fff;
}
.job-view .job-view-footer .job-list {
  padding-left: 40px;
  display: flex;
  width: 1100px;
}
.job-view .job-view-footer .job-list.item .job,
.job-view .job-view-footer .job-list.item .package,
.job-view .job-view-footer .job-list.item .cluster,
.job-view .job-view-footer .job-list.item .runtime,
.job-view .job-view-footer .job-list.item .status {
  flex: 1;
  border: none;
}
.job-view .job-view-footer .job-list.item .job .clickable,
.job-view .job-view-footer .job-list.item .package .clickable,
.job-view .job-view-footer .job-list.item .cluster .clickable,
.job-view .job-view-footer .job-list.item .runtime .clickable,
.job-view .job-view-footer .job-list.item .status .clickable {
  display: inline-block;
}
.job-view .job-view-footer .job-list.header {
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 10px;
  text-transform: uppercase;
  font-size: 12px;
}
.job-view .job-view-footer .job-list.item {
  border-bottom: 2px solid #ddd;
  height: 127px;
  position: relative;
}
.job-view .job-view-footer .job-list.item div.job {
  padding-top: 30px;
}
.job-view .job-view-footer .job-list.item div.job svg {
  fill: #808080;
  float: left;
  margin: 0 15px 50px 0;
  width: 23px;
  height: 23px;
}
.job-view .job-view-footer .job-list.item div.job span {
  color: #808080;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
}
.job-view .job-view-footer .job-list.item div.job span.job-date {
  font-size: 13px;
}
.job-view .job-view-footer .job-list.item div.job span.job-date a {
  color: #808080;
}
.job-view .job-view-footer .job-list.item div.job span.job-date a:hover {
  text-decoration: underline;
}
.job-view .job-view-footer .job-list.item div.job span.job-date span {
  font-size: 12px;
}
.job-view .job-view-footer .job-list.item div.job span.job-item {
  display: block;
}
.job-view .job-view-footer .job-list.item div.job span.job-item a {
  color: #3F3F3F;
  font-size: 16px;
  font-weight: 600;
}
.job-view .job-view-footer .job-list.item div.job span.job-item a:hover {
  text-decoration: underline;
}
.job-view .job-view-footer .job-list.item div.package {
  padding-top: 30px;
  max-width: 235px;
  max-height: 120px;
  overflow: hidden;
  display: flex;
}
.job-view .job-view-footer .job-list.item div.package .package-icon {
  width: 30px;
  min-width: 30px;
  flex: 0 auto;
}
.job-view .job-view-footer .job-list.item div.package .package-icon svg {
  fill: #808080;
  float: left;
  margin: 0 15px 50px 0;
  width: 23px;
  height: 23px;
}
.job-view .job-view-footer .job-list.item div.package .package-name {
  flex: 1 auto;
  width: 165px;
  max-width: 165px;
}
.job-view .job-view-footer .job-list.item div.package .package-name a {
  color: #3F3F3F;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 5px;
  padding-right: 15px;
  word-wrap: break-word;
}
.job-view .job-view-footer .job-list.item div.package .package-name a:hover {
  text-decoration: underline;
}
.job-view .job-view-footer .job-list.item div.cluster {
  padding-top: 30px;
}
.job-view .job-view-footer .job-list.item div.cluster strong {
  display: block;
  padding-right: 15px;
  color: #3F3F3F;
  font-size: 16px;
  font-weight: 600;
  word-break: break-all;
  word-wrap: break-word;
}
.job-view .job-view-footer .job-list.item div.cluster strong a {
  color: #3F3F3F;
}
.job-view .job-view-footer .job-list.item div.cluster strong a:hover {
  text-decoration: underline;
}
.job-view .job-view-footer .job-list.item div.cluster p {
  color: #808080;
  font-weight: 300;
  font-size: 12px;
  line-height: 20px;
}
.job-view .job-view-footer .job-list.item div.runtime {
  padding-top: 30px;
}
.job-view .job-view-footer .job-list.item div.runtime p {
  font-size: 16px;
  margin-bottom: 0;
  word-break: break-all;
  word-wrap: break-word;
}
.job-view .job-view-footer .job-list.item div.runtime p.small {
  color: #808080;
  font-weight: 300;
  font-size: 12px;
  line-height: 20px;
}
.job-view .job-view-footer .job-list.item div.status {
  position: relative;
  padding-top: 30px;
}
.job-view .job-view-footer .job-list.item div.status .status-box,
.job-view .job-view-footer .job-list.item div.status .status-label {
  margin-left: 30px;
}
.job-view .job-view-footer .job-list.item div.status .status-box .job-status-percent,
.job-view .job-view-footer .job-list.item div.status .status-box .job-status-name {
  display: block;
  text-align: left;
  color: #808080;
}
.job-view .job-view-footer .job-list.item div.status .status-box .job-status-percent {
  font-size: 22px;
  font-weight: 400;
  line-height: 40px;
  text-align: left;
  border: 1px solid #808080;
  width: 75px;
  text-align: center;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  border-bottom: 0 none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
.job-view .job-view-footer .job-list.item div.status .status-box .job-status-name {
  width: 75px;
  font-size: 10px;
  text-align: center;
  line-height: 20px;
  font-weight: 300;
  text-transform: uppercase;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  background-color: #808080;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
.job-view .job-view-footer .job-list.item div.status .status-box.clickable {
  font-weight: 600;
  cursor: pointer;
}
.job-view .job-view-footer .job-list.item div.status .status-box.clickable:hover {
  text-decoration: underline;
}
.job-view .job-view-footer .job-list.item div.status .status-box.failed .job-status-percent,
.job-view .job-view-footer .job-list.item div.status .status-box.failed .job-status-name {
  color: #E54C40;
}
.job-view .job-view-footer .job-list.item div.status .status-box.failed .job-status-name {
  color: #fff;
  background-color: #E54C40;
}
.job-view .job-view-footer .job-list.item div.status .status-box.failed .job-status-percent {
  border-color: #E54C40;
}
.job-view .job-view-footer .job-list.item div.status .status-box.completed .job-status-percent,
.job-view .job-view-footer .job-list.item div.status .status-box.completed .job-status-name {
  color: #13a95b;
}
.job-view .job-view-footer .job-list.item div.status .status-box.completed .job-status-name {
  color: #fff;
  background-color: #13a95b;
}
.job-view .job-view-footer .job-list.item div.status .status-box.completed .job-status-percent {
  border-color: #13a95b;
}
.job-view .job-view-footer .job-list.item div.status .status-box.stopping .job-status-percent,
.job-view .job-view-footer .job-list.item div.status .status-box.pending_stoppage .job-status-percent,
.job-view .job-view-footer .job-list.item div.status .status-box.stopped .job-status-percent,
.job-view .job-view-footer .job-list.item div.status .status-box.stopping .job-status-name,
.job-view .job-view-footer .job-list.item div.status .status-box.pending_stoppage .job-status-name,
.job-view .job-view-footer .job-list.item div.status .status-box.stopped .job-status-name {
  color: #ed7200;
}
.job-view .job-view-footer .job-list.item div.status .status-box.stopping .job-status-name,
.job-view .job-view-footer .job-list.item div.status .status-box.pending_stoppage .job-status-name,
.job-view .job-view-footer .job-list.item div.status .status-box.stopped .job-status-name {
  color: #fff;
  background-color: #ed7200;
}
.job-view .job-view-footer .job-list.item div.status .status-box.stopping .job-status-percent,
.job-view .job-view-footer .job-list.item div.status .status-box.pending_stoppage .job-status-percent,
.job-view .job-view-footer .job-list.item div.status .status-box.stopped .job-status-percent {
  border-color: #ed7200;
}
.job-view .job-view-footer .job-list.item div.status .status-box.running .job-status-percent,
.job-view .job-view-footer .job-list.item div.status .status-box.running .job-status-name {
  color: #0AB3E5;
}
.job-view .job-view-footer .job-list.item div.status .status-box.running .job-status-name {
  color: #fff;
  background-color: #0AB3E5;
}
.job-view .job-view-footer .job-list.item div.status .status-box.running .job-status-percent {
  border-color: #0AB3E5;
}
.job-view .job-view-footer .job-list.item div.status .status-button {
  position: absolute;
  bottom: 0;
  left: 100%;
  background-color: transparent;
  border: 0 none;
  font-size: 13px;
  color: #808080;
  width: 125px;
  line-height: 22px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
  transform-origin: left bottom;
  border-bottom: 1px solid transparent;
  border-top: 1px solid #E6E6E6;
}
.job-view .job-view-footer .job-list.item div.status .status-button:hover {
  border-bottom: 1px solid #E6E6E6;
  background-color: #eee;
}
.job-view .job-view-footer .job-list.item div.status .status-button.failed {
  color: #E54C40;
}
.job-view .job-view-footer .job-list.item div.status .status-button.completed {
  color: #13a95b;
}
.job-view .job-view-footer .job-list.item div.status .status-button.stopping,
.job-view .job-view-footer .job-list.item div.status .status-button.pending_stoppage,
.job-view .job-view-footer .job-list.item div.status .status-button.stopped {
  color: #ed7200;
}
.job-view .job-view-footer .job-list.item div.status .status-button.running {
  color: #0AB3E5;
}
.job-view .job-view-footer .job-list.item div.status .status-label {
  margin-top: 15px;
  width: 78px;
  font-size: 11px;
  font-weight: 300;
  background-color: #808080;
  color: #fff;
  border-radius: 4px;
  line-height: 31px;
  text-align: center;
  text-transform: uppercase;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.job-view .job-view-footer .job-list.item div.status .status-label.failed {
  background-color: #E54C40;
}
.job-view .job-view-footer .job-list.item div.status .status-label.completed {
  background-color: #13a95b;
}
.job-view .job-view-footer .job-list.item div.status .status-label.stopping,
.job-view .job-view-footer .job-list.item div.status .status-label.pending_stoppage,
.job-view .job-view-footer .job-list.item div.status .status-label.stopped {
  background-color: #ed7200;
}
.job-view .job-view-footer .job-list.item div.status .status-label.running {
  background-color: #0AB3E5;
}
.job-view .job-view-footer .job-list.item div.status.workflow-status strong {
  display: block;
  padding-top: 22px;
  color: #808080;
}
.job-view .job-view-footer .job-list.item div.status.workflow-status.failed strong {
  color: #E54C40;
}
.job-view .job-view-footer .job-list.item div.status.workflow-status.completed strong {
  color: #13a95b;
}
.job-view .job-view-footer .job-list.item div.status.workflow-status.stopping strong,
.job-view .job-view-footer .job-list.item div.status.workflow-status.pending_stoppage strong,
.job-view .job-view-footer .job-list.item div.status.workflow-status.stopped strong {
  color: #ed7200;
}
.job-view .job-view-footer .job-list.item div.status.workflow-status.running strong {
  color: #0AB3E5;
}
.job-view .job-view-footer .job-list.item div.bar {
  position: absolute;
  right: 0;
  cursor: pointer;
}
.job-view .job-view-footer .job-list.item div.bar .dropdown-menu {
  -webkit-transform: translate(-130px, -40px);
  -ms-transform: translate(-130px, -40px);
  -o-transform: translate(-130px, -40px);
  transform: translate(-130px, -40px);
}
.job-view .job-view-footer .job-list.item div.bar .dropdown-menu li {
  width: 100% !important;
}
.job-view .job-view-footer .job-list.item div.bar .dropdown-menu li a {
  line-height: 25px;
  padding: 10px 15px;
}
.job-view .job-view-footer .job-list.item div.bar .dropdown-menu li a svg {
  display: block;
  margin-right: 5px;
  float: left;
}
.job-view .job-view-footer .job-list.item div.bar .dropdown-menu li a svg rect,
.job-view .job-view-footer .job-list.item div.bar .dropdown-menu li a svg circle,
.job-view .job-view-footer .job-list.item div.bar .dropdown-menu li a svg polygon,
.job-view .job-view-footer .job-list.item div.bar .dropdown-menu li a svg path {
  fill: #808080;
}
.job-view .job-view-footer .job-list.item div.bar .dropdown-menu li a span {
  display: inline-block;
  color: #c1c1c1;
  font-size: 16px;
}
.job-view .job-view-footer .job-list .status-progress-bar {
  position: absolute;
  bottom: -2px;
  width: 0%;
  left: 0;
  height: 2px;
  -webkit-transition: width 750ms;
  -o-transition: width 750ms;
  transition: width 750ms;
}
.job-view .job-view-footer .job-list .status-progress-bar.progress-bar-primary {
  background-color: #0AB3E5;
}
.job-view .job-view-footer .job-list .status-progress-bar.progress-bar-success {
  background-color: #13a95b;
}
.job-view .job-view-footer .job-list .status-progress-bar.progress-bar-info {
  background-color: #FFD260;
}
.job-view .job-view-footer .job-list .status-progress-bar.progress-bar-warning {
  background-color: #ed7200;
}
.job-view .job-view-footer .job-list.failed:before,
.job-view .job-view-footer .job-list.completed:before,
.job-view .job-view-footer .job-list.running:before,
.job-view .job-view-footer .job-list.stopping:before,
.job-view .job-view-footer .job-list.pending_stoppage:before,
.job-view .job-view-footer .job-list.stopped:before {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  border-right: 10px solid transparent;
}
.job-view .job-view-footer .job-list.failed:before {
  border-bottom: 10px solid #E54C40;
}
.job-view .job-view-footer .job-list.completed:before {
  border-bottom: 10px solid #13a95b;
}
.job-view .job-view-footer .job-list.stopping:before,
.job-view .job-view-footer .job-list.pending_stoppage:before,
.job-view .job-view-footer .job-list.stopped:before {
  border-bottom: 10px solid #ed7200;
}
.job-view .job-view-footer .job-list.running:before {
  border-bottom: 10px solid #0AB3E5;
}
.job-view .job-view-footer .status-progress-bar {
  bottom: -3px !important;
  height: 3px !important;
}
.job-view .job-view-footer .status-button {
  display: none;
}
.job-view .job-view-footer .job-list.item {
  height: 110px;
  position: absolute;
  top: 10px;
  left: 0;
}
.job-view .job-view-footer .job-list-item-job {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  padding-left: 40px;
  text-transform: uppercase;
  font-size: 12px;
  border-bottom: 1px solid #E6E6E6;
  line-height: 22px;
}
.job-view .job-view-footer .job-list-item-job .job,
.job-view .job-view-footer .job-list-item-job .package,
.job-view .job-view-footer .job-list-item-job .cluster,
.job-view .job-view-footer .job-list-item-job .runtime,
.job-view .job-view-footer .job-list-item-job .status {
  flex: 1;
  border: none;
}
.job-view .job-view-footer .job-list-item-job :last-child:not(.fa) {
  position: relative;
  right: -30px;
}
.job-view .job-view-footer .job-list-item-job .package,
.job-view .job-view-footer .job-list-item-job .cluster {
  padding: 0 !important;
}
.job-view .job-view-footer .job-list-item-job .package strong,
.job-view .job-view-footer .job-list-item-job .cluster strong {
  padding-right: 15px;
}
.job-errors {
  padding: 20px 30px;
  flex: 1 auto;
}
.job-errors pre {
  margin: 0 !important;
  border-radius: 0 !important;
  display: flex !important;
  min-height: 100%;
  flex-direction: column;
}
.job-general {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.job-general .job-item-container {
  flex: 20%;
  position: relative;
  border-radius: 5px;
  margin: 10px;
  padding: 40px;
  border: 1px solid #E6E6E6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.job-general .job-item-container.runtime {
  flex-direction: row;
  justify-content: space-between;
}
.job-general .job-item-container.runtime p {
  margin-left: 30px;
}
.job-general .job-item-title {
  position: absolute;
  bottom: -10px;
  left: 0;
  background-color: #f0f0f0;
  border-top: 1px solid #E6E6E6;
  width: 100%;
  font-size: 10px;
  text-transform: uppercase;
  padding: 10px 15px;
  color: #8c8c8c;
}
.job-general .job-data.job-id {
  font-size: 40px;
}
.job-general .job-status-percent {
  font-size: 50px;
  font-weight: 100;
}
.job-outputs {
  padding: 30px 0 0 0 !important;
}
.job-outputs .job-outputs-header {
  display: flex;
  border-bottom: 1px solid #CCCCCC;
}
.job-outputs .job-outputs-header .job-outputs-header-toggle {
  flex: 0 auto;
  width: 22.5px;
}
.job-outputs .job-outputs-header .job-outputs-header-id {
  flex: 0 auto;
  width: 90px;
  text-align: center;
}
.job-outputs .job-outputs-header .job-outputs-header-name {
  flex: 1 auto;
  padding-left: 20px;
}
.job-outputs .job-outputs-header .job-outputs-header-records {
  text-align: center;
  flex: 0 auto;
  width: 90px;
}
.job-outputs .job-outputs-header .job-outputs-header-id span,
.job-outputs .job-outputs-header .job-outputs-header-name span,
.job-outputs .job-outputs-header .job-outputs-header-records span {
  display: inline-block;
  padding: 6px;
  text-transform: uppercase;
  font-size: 12px;
}
.job-outputs .job-output-item {
  border-bottom: 1px solid #CCCCCC;
}
.job-outputs .job-output-item:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.job-outputs .job-output-item .job-output-item-grid {
  display: flex;
  pointer-events: none;
}
.job-outputs .job-output-item .job-output-item-grid .job-outputs-header-toggle {
  flex: 0 auto;
  width: 22.5px;
  text-align: right;
}
.job-outputs .job-output-item .job-output-item-grid .job-outputs-header-toggle i {
  line-height: 62px;
}
.job-outputs .job-output-item .job-output-item-grid .job-output-item-id {
  flex: 0 auto;
  width: 90px;
  text-align: center;
}
.job-outputs .job-output-item .job-output-item-grid .job-output-item-name {
  flex: 1 auto;
  font-size: 16px;
  padding-left: 20px;
}
.job-outputs .job-output-item .job-output-item-grid .job-output-item-records {
  flex: 0 auto;
  width: 90px;
  text-align: center;
}
.job-outputs .job-output-item .job-output-item-grid .job-output-item-id span,
.job-outputs .job-output-item .job-output-item-grid .job-output-item-records span {
  display: inline-block;
  padding: 20px 6px;
}
.job-outputs .job-output-item .job-output-item-grid .job-output-item-name {
  display: flex;
}
.job-outputs .job-output-item .job-output-item-grid .job-output-item-name svg {
  margin-top: 15px;
  margin-left: 6px;
  flex: 0 auto;
}
.job-outputs .job-output-item .job-output-item-grid .job-output-item-name div {
  flex: 1 auto;
  display: flex;
  flex-direction: column;
  -webkit-transform: translate(15px, 10px);
  -ms-transform: translate(15px, 10px);
  -o-transform: translate(15px, 10px);
  transform: translate(15px, 10px);
}
.job-outputs .job-output-item .job-output-item-grid .job-output-item-name div span {
  display: inline-block;
  font-weight: 600;
  width: 900px;
  max-width: 900px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.job-outputs .job-output-item .job-output-item-grid .job-output-item-name div small {
  font-weight: 400;
  font-size: 12px;
}
.job-outputs .job-output-item.can-preview .job-output-item-grid {
  cursor: pointer;
  pointer-events: auto;
}
.job-outputs .job-output-item.can-preview .job-output-item-grid:hover {
  background-color: #f3f3f3;
}
.job-outputs .job-output-item .job-output-item-preview {
  border-top: 1px solid #E6E6E6;
  background-color: #f3f3f3;
}
.job-outputs .job-output-item .job-output-item-preview .data-preview-header {
  height: 50px;
  padding: 10px;
}
.job-outputs .job-output-item .job-output-item-preview .data-preview-header strong {
  display: inline-block;
  line-height: 30px;
}
.job-outputs .job-output-item .job-output-item-preview pre {
  border-radius: 0;
  margin-bottom: 0 !important;
  min-height: 260px;
}
.job-outputs .job-output-item .job-output-item-preview .alert {
  margin-bottom: 0 !important;
  border-radius: 0;
}
.job-outputs .job-output-item .job-output-item-preview .btn-group {
  float: right !important;
  float: right;
}
.job-outputs .job-output-item .job-output-item-preview .btn-group:before,
.job-outputs .job-output-item .job-output-item-preview .btn-group:after {
  display: table;
  content: " ";
}
.job-outputs .job-output-item .job-output-item-preview .btn-group:after {
  clear: both;
}
.job-outputs .job-output-item .job-output-item-preview .btn-group:before,
.job-outputs .job-output-item .job-output-item-preview .btn-group:after {
  display: table;
  content: " ";
}
.job-outputs .job-output-item .job-output-item-preview .btn-group:after {
  clear: both;
}
.job-progress {
  padding: 0 0 0 0 !important;
  position: relative;
}
.job-progress .job-empty {
  text-align: center;
  font-size: 16px;
  margin: 20px 30px;
}
.job-progress .job-progress-task {
  position: relative;
  border-bottom: 1px solid #CCCCCC;
  background-color: #fff;
}
.job-progress .job-progress-task .job-progress-task-grid {
  min-height: 120px;
  display: flex;
  cursor: pointer;
}
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-id,
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-input,
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-output,
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-runtime {
  flex: 1 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-id strong,
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-input strong,
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-output strong,
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-runtime strong {
  display: flex;
}
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-id span.name,
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-input span.name,
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-output span.name,
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-runtime span.name {
  flex: 1 auto;
  font-size: 18px;
  font-weight: 600;
  display: block;
  color: #3F3F3F;
  word-break: break-all;
  word-wrap: break-word;
  padding-right: 40px;
}
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-id span.id,
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-input span.id,
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-output span.id,
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-runtime span.id {
  color: #808080;
  font-size: 12px;
  font-weight: 300;
}
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-id span.id i,
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-input span.id i,
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-output span.id i,
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-runtime span.id i {
  background-color: #ffdbba;
}
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-id {
  margin-left: 50px;
  width: 55%;
}
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-id svg {
  -webkit-transform: translate(0, 4px);
  -ms-transform: translate(0, 4px);
  -o-transform: translate(0, 4px);
  transform: translate(0, 4px);
  margin-right: 10px;
}
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-id span.id {
  color: #808080;
  margin-left: 44px;
  display: block;
}
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-input,
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-output,
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-runtime {
  width: 15%;
}
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-input .loader,
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-output .loader,
.job-progress .job-progress-task .job-progress-task-grid .job-progress-task-runtime .loader {
  padding: 0 !important;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
  height: 16px;
}
.job-progress .job-progress-task.failed:before,
.job-progress .job-progress-task.completed:before,
.job-progress .job-progress-task.running:before,
.job-progress .job-progress-task.stopped:before {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  border-right: 10px solid transparent;
}
.job-progress .job-progress-task.failed {
  border-bottom: 1px solid #E54C40;
}
.job-progress .job-progress-task.failed:before {
  border-bottom: 10px solid #E54C40;
}
.job-progress .job-progress-task.completed {
  border-bottom: 1px solid #13a95b;
}
.job-progress .job-progress-task.completed:before {
  border-bottom: 10px solid #13a95b;
}
.job-progress .job-progress-task.stopping,
.job-progress .job-progress-task.pending_stoppage,
.job-progress .job-progress-task.stopped {
  border-bottom: 1px solid #ed7200;
}
.job-progress .job-progress-task.stopping:before,
.job-progress .job-progress-task.pending_stoppage:before,
.job-progress .job-progress-task.stopped:before {
  border-bottom: 10px solid #ed7200;
}
.job-progress .job-progress-task.running {
  border-bottom: 1px solid #0AB3E5;
}
.job-progress .job-progress-task.running:before {
  border-bottom: 10px solid #0AB3E5;
}
.job-progress .job-progress-task.open {
  background-image: linear-gradient(0deg, #f3f3f3, #f3f3f3);
}
.job-progress .job-progress-task.open:after {
  display: block;
}
.job-variables {
  padding: 20px 30px;
}
.job-variables .loader {
  padding-top: 80px !important;
}
.alert-box {
  max-width: 1200px;
}
.alert-box .alert-box-container {
  background-color: inherit;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  padding: 45px 80px 45px 80px;
  margin: 30px 0px 30px 30px;
  text-align: center;
}
.alert-box .alert-box-container .alert-box-icon {
  margin-bottom: 10px;
}
.alert-box .alert-box-container h3.lead {
  margin: 10px 0px 10px 0px;
  font-weight: 700;
}
.alert-box.welcome .alert-box-container {
  border: none;
  padding-top: 90px;
}
.alert-box.welcome .alert-box-container .lead {
  margin-bottom: 30px;
}
.errors-box.in-modal {
  position: absolute;
  bottom: 90px;
  left: 0;
}
.visible .schema-importer {
  margin-left: -90px;
  margin-right: -60px;
}
.schema-importer {
  background-color: #fff;
  border: 1px solid #E6E6E6;
  padding: 12px;
  margin-left: 0;
  margin-right: 0;
  border-radius: 4px;
  position: relative;
  -webkit-transition: all 500ms;
  -o-transition: all 500ms;
  transition: all 500ms;
}
.schema-importer .well {
  margin-top: 7px;
  background-color: #fff;
  text-align: center;
}
.schema-importer .loader {
  padding: 35px 0;
}
.schema-importer .schema-importer-table {
  margin-top: 7px;
  border: 1px solid #E6E6E6;
  border-radius: 5px;
  padding: 1px;
  overflow: visible;
  overflow: hidden !important;
}
.schema-importer .schema-importer-table .schema-importer-table-search {
  position: relative;
  height: 32px;
}
.schema-importer .schema-importer-table .schema-importer-table-search .schema-importer-table-search-input {
  padding-top: 5px;
  border: 0 none;
  width: 100%;
  height: 32px;
  max-height: 32px;
  line-height: 32px;
  padding-left: 28px;
  padding-right: 28px;
  line-height: 40px;
  z-index: 0;
}
.schema-importer .schema-importer-table .schema-importer-table-search .schema-importer-table-search-input::-webkit-input-placeholder {
  font-weight: 300;
  font-size: 13px;
  color: #CCCCCC;
}
.schema-importer .schema-importer-table .schema-importer-table-search .schema-importer-table-search-input::-webkit-input-placeholder::-moz-placeholder {
  color: #CCCCCC;
  opacity: 1;
}
.schema-importer .schema-importer-table .schema-importer-table-search .schema-importer-table-search-input::-webkit-input-placeholder:-ms-input-placeholder {
  color: #CCCCCC;
}
.schema-importer .schema-importer-table .schema-importer-table-search .schema-importer-table-search-input::-webkit-input-placeholder::-webkit-input-placeholder {
  color: #CCCCCC;
}
.schema-importer .schema-importer-table .schema-importer-table-search .schema-importer-table-search-input::-moz-placeholder {
  font-weight: 300;
  font-size: 13px;
  color: #CCCCCC;
}
.schema-importer .schema-importer-table .schema-importer-table-search .schema-importer-table-search-input::-moz-placeholder::-moz-placeholder {
  color: #CCCCCC;
  opacity: 1;
}
.schema-importer .schema-importer-table .schema-importer-table-search .schema-importer-table-search-input::-moz-placeholder:-ms-input-placeholder {
  color: #CCCCCC;
}
.schema-importer .schema-importer-table .schema-importer-table-search .schema-importer-table-search-input::-moz-placeholder::-webkit-input-placeholder {
  color: #CCCCCC;
}
.schema-importer .schema-importer-table .schema-importer-table-search .schema-importer-table-search-input:-ms-input-placeholder {
  font-weight: 300;
  font-size: 13px;
  color: #CCCCCC;
}
.schema-importer .schema-importer-table .schema-importer-table-search .schema-importer-table-search-input:-ms-input-placeholder::-moz-placeholder {
  color: #CCCCCC;
  opacity: 1;
}
.schema-importer .schema-importer-table .schema-importer-table-search .schema-importer-table-search-input:-ms-input-placeholder:-ms-input-placeholder {
  color: #CCCCCC;
}
.schema-importer .schema-importer-table .schema-importer-table-search .schema-importer-table-search-input:-ms-input-placeholder::-webkit-input-placeholder {
  color: #CCCCCC;
}
.schema-importer .schema-importer-table .schema-importer-table-search .schema-importer-table-search-input:-moz-placeholder {
  font-weight: 300;
  font-size: 13px;
  color: #CCCCCC;
}
.schema-importer .schema-importer-table .schema-importer-table-search .schema-importer-table-search-input:-moz-placeholder::-moz-placeholder {
  color: #CCCCCC;
  opacity: 1;
}
.schema-importer .schema-importer-table .schema-importer-table-search .schema-importer-table-search-input:-moz-placeholder:-ms-input-placeholder {
  color: #CCCCCC;
}
.schema-importer .schema-importer-table .schema-importer-table-search .schema-importer-table-search-input:-moz-placeholder::-webkit-input-placeholder {
  color: #CCCCCC;
}
.schema-importer .schema-importer-table .schema-importer-table-search .schema-importer-table-search-icon {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 7px;
  color: #CCCCCC;
  pointer-events: none;
}
.schema-importer .schema-importer-table .schema-importer-table-search .schema-importer-table-cancel-icon {
  position: absolute;
  z-index: 1;
  top: 7px;
  right: 7px;
  color: #CCCCCC;
  cursor: pointer;
}
.schema-importer .schema-importer-table table {
  margin-bottom: 0;
  max-width: 100%;
}
.schema-importer .schema-importer-table table thead tr th {
  border-bottom-width: 1px;
  border-left: 1px solid #E6E6E6;
  background-color: #eee;
  text-align: center;
  padding: 6px 4px;
  font-size: 13px;
}
.schema-importer .schema-importer-table table thead tr th.header-field-index {
  width: 32px;
  max-width: 32px;
  min-width: 32px;
}
.schema-importer .schema-importer-table table thead tr th.header-field-move {
  width: 25px;
  min-width: 25px;
  max-width: 25px;
}
.schema-importer .schema-importer-table table thead tr th.header-field-data-type {
  width: 85px !important;
  min-width: 85px !important;
  max-width: 85px !important;
}
.schema-importer .schema-importer-table table thead tr th.header-field-add-between,
.schema-importer .schema-importer-table table thead tr th.header-field-remove,
.schema-importer .schema-importer-table table thead tr th.header-field-add {
  width: 25px !important;
  min-width: 25px !important;
  max-width: 25px !important;
}
.schema-importer .schema-importer-table table thead tr td {
  color: #808080;
  font-weight: 300;
  font-size: 12px;
  padding: 1px 3px;
}
.schema-importer .schema-importer-table table thead tr.table-headers th {
  border-top: 1px solid #E6E6E6;
  background-color: #fff;
  color: #808080;
  text-align: center;
  padding: 4px;
  font-size: 11px !important;
}
.schema-importer .schema-importer-table table thead tr.table-headers th:first-child {
  border-left: 0 none;
}
.schema-importer .schema-importer-table table tbody tr {
  height: 28px;
  max-height: 28px;
}
.schema-importer .schema-importer-table table tbody tr th,
.schema-importer .schema-importer-table table tbody tr td {
  position: relative;
  height: 28px;
  max-height: 28px;
  line-height: 28px;
  padding: 0 4px;
  border-right: 1px solid #E6E6E6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
}
.schema-importer .schema-importer-table table tbody tr th input,
.schema-importer .schema-importer-table table tbody tr td input {
  padding-left: 3px;
  border: 0 none;
  height: 28px;
  max-height: 28px;
  line-height: 28px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  background-color: transparent;
}
.schema-importer .schema-importer-table table tbody tr th select,
.schema-importer .schema-importer-table table tbody tr td select {
  width: 105%;
  background-color: transparent;
  border: 0 none;
  border-radius: 0;
  padding: 0;
  color: #808080;
  text-transform: uppercase;
  margin: 0 -4px;
}
.schema-importer .schema-importer-table table tbody tr th select option,
.schema-importer .schema-importer-table table tbody tr td select option {
  padding: 0;
  color: #808080;
}
.schema-importer .schema-importer-table table tbody tr th.field-name,
.schema-importer .schema-importer-table table tbody tr td.field-name {
  min-width: 160px;
}
.schema-importer .schema-importer-table table tbody tr th.field-name .field-name-text,
.schema-importer .schema-importer-table table tbody tr td.field-name .field-name-text {
  position: absolute;
  width: calc(100% - 3px);
  top: 0;
  right: 0;
  bottom: 0;
  left: 5px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.schema-importer .schema-importer-table table tbody tr th.invalid,
.schema-importer .schema-importer-table table tbody tr td.invalid {
  background-color: #ffdbba;
}
.schema-importer .schema-importer-table table tbody tr th.field-btn-sm,
.schema-importer .schema-importer-table table tbody tr td.field-btn-sm {
  text-align: center;
  width: 25px !important;
  min-width: 25px !important;
  max-width: 25px !important;
  padding: 0 !important;
}
.schema-importer .schema-importer-table table tbody tr th.field-btn-sm i,
.schema-importer .schema-importer-table table tbody tr td.field-btn-sm i {
  cursor: pointer !important;
  width: 23px !important;
  height: 23px !important;
  line-height: 23px !important;
}
.schema-importer .schema-importer-table table tbody tr th.field-btn-sm:hover i,
.schema-importer .schema-importer-table table tbody tr td.field-btn-sm:hover i {
  color: #E54C40 !important;
}
.schema-importer .schema-importer-table table tbody tr th:last-child,
.schema-importer .schema-importer-table table tbody tr td:last-child {
  border-right: 0;
}
.schema-importer .schema-importer-table table tbody tr th.field-index,
.schema-importer .schema-importer-table table tbody tr td.field-index {
  text-align: center;
  font-weight: 400;
  min-width: 32px;
}
.schema-importer .schema-importer-table table tbody tr th.field-add-between i,
.schema-importer .schema-importer-table table tbody tr td.field-add-between i {
  transform: translateY(2px);
}
.schema-importer .schema-importer-table table tbody tr th.field-add-between:hover i,
.schema-importer .schema-importer-table table tbody tr td.field-add-between:hover i {
  color: #13a95b !important;
}
.schema-importer .schema-importer-table table tbody tr th.field-move,
.schema-importer .schema-importer-table table tbody tr td.field-move {
  cursor: move;
  min-width: 32px;
}
.schema-importer .schema-importer-table table tbody tr th.field-move.field-move-disable,
.schema-importer .schema-importer-table table tbody tr td.field-move.field-move-disable {
  cursor: default;
  pointer-events: none;
}
.schema-importer .schema-importer-table table tbody tr th.field-move.field-move-disable i,
.schema-importer .schema-importer-table table tbody tr td.field-move.field-move-disable i {
  display: none;
}
.schema-importer .schema-importer-table table tbody tr th.field-data-type,
.schema-importer .schema-importer-table table tbody tr td.field-data-type {
  font-size: 12px;
  text-transform: uppercase;
  width: 85px !important;
  min-width: 85px !important;
  max-width: 85px !important;
}
.schema-importer .schema-importer-table table tbody tr th.field-data-type span,
.schema-importer .schema-importer-table table tbody tr td.field-data-type span {
  display: inline-block;
  padding: 0 3px;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.schema-importer .schema-importer-table table tbody tr th.field-data-type select option,
.schema-importer .schema-importer-table table tbody tr td.field-data-type select option {
  text-transform: uppercase;
}
.schema-importer .schema-importer-table table tbody tr th.field-data-type .mat-select-value,
.schema-importer .schema-importer-table table tbody tr td.field-data-type .mat-select-value {
  font-size: 12px;
  text-transform: uppercase;
  width: 60px !important;
  margin-left: -3px;
}
.schema-importer .schema-importer-table table tbody tr th.field-data-type .mat-select,
.schema-importer .schema-importer-table table tbody tr td.field-data-type .mat-select {
  min-height: 28px;
}
.schema-importer .schema-importer-table table tbody tr th .highlighted,
.schema-importer .schema-importer-table table tbody tr td .highlighted {
  background-color: #ffe093;
}
.schema-importer .schema-importer-table table tbody tr th {
  background-color: rgba(0, 0, 0, 0.05);
}
.schema-importer .schema-importer-table table tbody tr:first-child th,
.schema-importer .schema-importer-table table tbody tr:first-child td {
  border-top: 0;
}
.schema-importer .schema-importer-table table tbody tr.added {
  opacity: 0.2;
  pointer-events: none;
  cursor: pointer;
}
.schema-importer .schema-importer-table table tbody tr.selected-list-item-highlight td {
  background-color: #ffefc6;
}
.schema-importer .schema-importer-table table tbody tr.ui-sortable-helper {
  background-color: #fff;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
}
.schema-importer .schema-importer-table .schema-importer-table-empty {
  padding: 20px;
}
.schema-importer .schema-importer-table .schema-importer-not-found {
  padding: 20px;
  text-align: center;
}
.schema-importer .schema-importer-table .schema-importer-not-found p {
  margin: 0;
  line-height: 18px;
}
.schema-importer .schema-importer-table .schema-importer-not-found p strong {
  display: inline-block;
  max-width: 300px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transform: translateY(5px);
}
.schema-importer .schema-importer-fields-list {
  overflow: hidden;
  padding-bottom: 1px;
  max-width: 100%;
}
.schema-importer .schema-importer-splitter {
  position: relative;
  min-height: 230px;
  overflow: visible;
}
.schema-importer .schema-importer-splitter .schema-importer-available-fields {
  padding-right: 10px;
}
.schema-importer .schema-importer-splitter .schema-importer-selected-fields {
  padding-left: 10px;
}
.schema-importer .split-pane2 {
  border-left: 1px solid #E6E6E6 !important;
}
.schema-importer .data-preview-raw pre {
  min-height: 220px;
  width: 100%;
}
.schema-importer .pagination li a {
  padding: 3px 8px 2px;
  font-size: 12px;
}
.schema-importer .add-to-index-button {
  width: 100%;
  border-bottom: 0 none;
  height: 0 !important;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.schema-importer .add-to-index-button td {
  position: absolute;
  height: 0 !important;
  overflow: visible !important;
  border-bottom: 1px solid #808080;
  width: 100%;
  min-width: 100%;
  margin-top: -1px;
}
.schema-importer .add-to-index-button td i {
  font-size: 12px;
  width: 25px;
  height: 20px;
  line-height: 22px;
  background-color: #808080;
  color: #fff;
  border-radius: 50% 50% 0 0;
  position: absolute;
  top: -20px;
  left: 0;
  text-align: center;
  cursor: pointer;
  z-index: 2;
}
.schema-importer .add-to-index-button td:hover {
  border-bottom: 1px solid #0AB3E5;
}
.schema-importer .add-to-index-button td:hover i {
  background-color: #0AB3E5;
}
.schema-importer .tooltip .tooltip-arrow {
  border-top-color: #808080;
}
.schema-importer .tooltip .tooltip-inner {
  border-color: #808080;
  background-color: #808080;
  color: #fff;
}
.schema-importer-table-tabs {
  display: flex;
  flex-direction: row;
  background-color: #eee;
  padding: 2px 0 0 3px;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  height: 28px;
}
.schema-importer-table-tabs .schema-importer-table-tab {
  height: 32px;
  flex: 0 auto;
  padding: 4px 15px 7px;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  cursor: pointer;
  color: #808080;
  margin-right: 3px;
  -webkit-transform: translate(0px, 1px);
  -ms-transform: translate(0px, 1px);
  -o-transform: translate(0px, 1px);
  transform: translate(0px, 1px);
  background-color: rgba(255, 255, 255, 0.5);
}
.schema-importer-table-tabs .schema-importer-table-tab span {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  font-size: 13px;
  font-weight: 300;
  color: #808080;
}
.schema-importer-table-tabs .schema-importer-table-tab:hover {
  background-color: rgba(255, 255, 255, 0.75);
}
.schema-importer-table-tabs .schema-importer-table-tab:hover span {
  color: #999999;
}
.schema-importer-table-tabs .schema-importer-table-tab.active {
  cursor: default;
  pointer-events: none;
  background-color: #fff;
  -webkit-transform: translate(0px, 1px);
  -ms-transform: translate(0px, 1px);
  -o-transform: translate(0px, 1px);
  transform: translate(0px, 1px);
}
.schema-importer-table-tabs .schema-importer-table-tab.active span {
  color: #0AB3E5;
  font-weight: 600;
}
.columns-schema-container {
  display: flex;
  width: 100%;
  flex-flow: column;
}
.columns-schema-container.disabled {
  opacity: 0.2;
  pointer-events: none;
  cursor: not-allowed;
}
.columns-schema-container .errors-notify {
  position: inherit !important;
  width: 100% !important;
  margin: 0 0 30px !important;
}
.columns-schema {
  display: flex;
  width: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 5px;
}
.columns-schema .columns-schema-items-container {
  display: flex;
  width: 100%;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
}
.columns-schema .data-preview {
  width: 100%;
  height: 480px;
  overflow: auto;
}
.columns-schema .data-preview.schema-importer {
  height: 430px;
}
.columns-schema .split-handler {
  width: 1px;
  background-color: rgba(0, 0, 0, 0.05);
  height: 90%;
}
.columns-schema .connection-columns-search {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: none;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.columns-schema .connection-columns-search .form-control {
  border: none;
  width: calc(100% - 20px);
}
.columns-schema .connection-columns-search .fa {
  color: #cccccc;
  pointer-events: none;
  margin-left: 5px;
}
.columns-schema .columns-schema-item {
  width: 50%;
  display: flex;
  align-items: flex-start;
  flex-flow: column;
  margin: 0 10px;
}
.columns-schema .columns-schema-item connection-schema {
  width: 100%;
}
.columns-schema .columns-schema-item .columns-schema-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding: 10px;
  height: 54px;
}
.columns-schema .columns-schema-item .field-btn-sm {
  cursor: pointer;
  width: 25px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.columns-schema .columns-schema-item .field-type {
  width: 80px !important;
}
.columns-schema .columns-schema-item .field-name {
  background-color: rgba(0, 0, 0, 0.05);
  font-weight: 600;
  min-width: 140px;
  max-width: 140px;
}
.columns-schema .columns-schema-item .field-alias {
  min-width: 150px;
}
.columns-schema .columns-schema-item .field-sort {
  cursor: pointer;
  color: #CCCCCC;
  font-size: 12px;
}
.columns-schema .columns-schema-item .field-sort:hover {
  color: #808080;
}
.columns-schema .columns-schema-item .empty-list {
  width: 100%;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  text-align: center;
  border-top: none;
}
.mat-elevation-z8 {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.mat-paginator {
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.mat-row {
  height: 28px !important;
}
.mat-row.selected,
.mat-row.disabled {
  opacity: 0.2;
  pointer-events: none;
  cursor: not-allowed;
}
.mat-row.error {
  background-color: #fff6ed !important;
}
.mat-row.error .field-alias {
  background-color: #ffe8d4 !important;
}
.mat-header-row {
  height: 28px !important;
}
.mat-header-cell {
  text-align: center !important;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #cccccc;
  border-radius: 10px;
}
.btn-add-to-end {
  padding: 3px 10px;
  margin: 24px 20px 20px 0;
}
.btn-add-to-end i {
  margin-right: 2px;
  font-size: 10px;
  cursor: pointer;
}
.mat-paginator-container {
  justify-content: flex-start !important;
}
@keyframes icon-animation {
  0% {
    background-color: red;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.step-index {
  position: relative;
  flex: 1 auto;
  width: 60px;
  min-width: 60px;
  max-width: 60px;
  height: 60px;
  text-align: center;
}
.step-index span {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  font-size: 22px;
  font-weight: 300;
  background-color: #fff;
  color: #E6E6E6;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.step-index:not(.loading) svg {
  top: 8px;
  left: 8px;
  position: absolute;
  width: 44px;
  height: 44px;
}
.step-index:not(.loading) svg.circleFill {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1s;
  transform: rotate(-90deg);
  stroke: #E6E6E6;
  z-index: 1;
  stroke-width: 3px;
}
.step-index:not(.loading) svg.filled {
  stroke-dashoffset: 30px;
}
.step-index:not(.loading) svg.circleTrack {
  stroke: #E6E6E6;
  z-index: 0;
  stroke-width: 2px;
}
.step-index i {
  line-height: 16px;
  text-align: center;
  position: absolute;
  font-size: 9px;
  top: 8px;
  right: 8px;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  z-index: 2;
  color: #fff;
  background-color: #E6E6E6;
}
.step-index.valid span {
  color: #0AB3E5;
}
.step-index.valid i {
  background-color: #0AB3E5;
}
.step-index.valid svg.circleFill {
  stroke: #0AB3E5;
}
.step-index.valid svg.circleTrack {
  stroke: #0AB3E5;
}
.step-index.active span {
  color: #3F3F3F;
  font-weight: 900;
}
.step-index.error span {
  color: #FFA654;
}
.step-index.error svg.circleFill {
  stroke: #FFA654;
}
.step-index.error svg.circleTrack {
  stroke: #FFA654;
}
.step-index.error i {
  background-color: #FFA654;
}
.step-index.loading svg.filled {
  top: 8px;
  left: 8px;
  width: 44px;
  height: 44px;
  position: absolute;
  animation: rotate 2s linear infinite;
  transform-origin: center center;
  stroke: #0AB3E5;
  stroke-width: 3px;
  z-index: 1;
}
.step-index.loading svg.filled .path {
  animation: step-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
}
.step-index.loading svg.circleTrack {
  stroke: #E6E6E6;
  z-index: 0;
  stroke-width: 2px;
  top: 8px;
  left: 8px;
  width: 44px;
  height: 44px;
  position: absolute;
}
@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes step-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -123;
  }
}
.steps {
  display: flex;
  flex-direction: column;
}
.steps .step {
  position: relative;
  z-index: 0;
}
.steps .step .step-header {
  height: 60px;
  display: flex;
  flex-direction: raw;
  cursor: pointer;
  border: 1px solid transparent;
  background-color: #fff;
  border-radius: 4px;
}
.steps .step .step-header .step-header-index {
  position: relative;
  flex: 1 auto;
  width: 60px;
  min-width: 60px;
  max-width: 60px;
  height: 60px;
  text-align: center;
}
.steps .step .step-header .step-header-index span {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  font-size: 22px;
  font-weight: 300;
  background-color: #fff;
  color: #E6E6E6;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.steps .step .step-header .step-header-index:not(.loading) svg {
  top: 8px;
  left: 8px;
  position: absolute;
  width: 44px;
  height: 44px;
}
.steps .step .step-header .step-header-index:not(.loading) svg.circleFill {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1s;
  transform: rotate(-90deg);
  stroke: #E6E6E6;
  z-index: 1;
  stroke-width: 3px;
}
.steps .step .step-header .step-header-index:not(.loading) svg.filled {
  stroke-dashoffset: 30px;
}
.steps .step .step-header .step-header-index:not(.loading) svg.circleTrack {
  stroke: #E6E6E6;
  z-index: 0;
  stroke-width: 2px;
}
.steps .step .step-header .step-header-index i {
  line-height: 16px;
  text-align: center;
  position: absolute;
  font-size: 9px;
  top: 8px;
  right: 8px;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  z-index: 2;
  color: #fff;
  background-color: #E6E6E6;
}
.steps .step .step-header .step-header-index.valid span {
  color: #0AB3E5;
}
.steps .step .step-header .step-header-index.valid i {
  background-color: #0AB3E5;
}
.steps .step .step-header .step-header-index.valid svg.circleFill {
  stroke: #0AB3E5;
}
.steps .step .step-header .step-header-index.valid svg.circleTrack {
  stroke: #0AB3E5;
}
.steps .step .step-header .step-header-index.active span {
  color: #3F3F3F;
  font-weight: 900;
}
.steps .step .step-header .step-header-index.error span {
  color: #FFA654;
}
.steps .step .step-header .step-header-index.error svg.circleFill {
  stroke: #FFA654;
}
.steps .step .step-header .step-header-index.error svg.circleTrack {
  stroke: #FFA654;
}
.steps .step .step-header .step-header-index.error i {
  background-color: #FFA654;
}
.steps .step .step-header .step-header-index.loading svg.filled {
  top: 8px;
  left: 8px;
  width: 44px;
  height: 44px;
  position: absolute;
  animation: rotate 2s linear infinite;
  transform-origin: center center;
  stroke: #0AB3E5;
  stroke-width: 3px;
  z-index: 1;
}
.steps .step .step-header .step-header-index.loading svg.filled .path {
  animation: step-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
}
.steps .step .step-header .step-header-index.loading svg.circleTrack {
  stroke: #E6E6E6;
  z-index: 0;
  stroke-width: 2px;
  top: 8px;
  left: 8px;
  width: 44px;
  height: 44px;
  position: absolute;
}
.steps .step .step-header .step-header-title {
  flex: 0 auto;
  line-height: 60px;
  font-size: 18px;
  white-space: nowrap;
  padding-left: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.steps .step .step-header .step-header-tags {
  flex: 1 auto;
  font-size: 13px;
  font-weight: 300;
  margin: 8px 10px;
  padding-left: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  border-left: 1px solid #E6E6E6;
  overflow: hidden;
}
.steps .step .step-header .step-header-tags .step-header-tag {
  background-color: #f3f3f3;
  margin: 1px 2px 2px 1px;
  padding: 0 5px;
  flex: 0 auto;
  border-radius: 3px;
  color: #808080;
}
.steps .step .step-header .step-header-tags .step-header-tag .tag-icon {
  width: 14px;
  height: 14px;
  margin: -1px 5px 0 0;
}
.steps .step .step-header .step-header-tags .step-header-tag svg {
  padding: 2px 0;
  height: 18px !important;
  width: 12px !important;
  float: left;
  margin: 0 5px 0 1px;
}
.steps .step .step-header .step-header-tags .step-header-tag span,
.steps .step .step-header .step-header-tags .step-header-tag b {
  -webkit-transform: translate(0, 2px);
  -ms-transform: translate(0, 2px);
  -o-transform: translate(0, 2px);
  transform: translate(0, 2px);
  display: inline-block;
  font-weight: 900;
  color: #3F3F3F;
  max-width: 280px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 12px;
  height: 12px;
}
.steps .step .step-header .step-header-tags .step-header-tag span {
  color: #808080;
  font-weight: 300;
}
.steps .step .step-header:hover {
  border-color: #E6E6E6;
}
.steps .step .step-body {
  overflow: hidden;
  margin-left: 30px;
  border-left: 1px solid #E6E6E6;
}
.steps .step .step-body.xp-step-body {
  max-height: 0;
  transition: max-height 0.7s ease-out;
  overflow: auto;
}
.steps .step .step-body.xp-step-body.expand {
  max-height: 2800px;
  transition: max-height 0.7s ease-in;
  overflow: auto;
}
.steps .step .step-body .step-body-container {
  padding: 20px 60px;
}
.steps .step .step-body .step-body-container.wider {
  padding: 20px 0;
}
.steps .step .step-body .step-buttons {
  padding: 0 60px 20px;
}
.steps .step .step-body .step-buttons .btn-link {
  color: #808080;
  border-radius: 4px;
  border: 1px solid #CCCCCC;
  margin-right: 5px;
}
.steps .step .step-body .step-buttons .btn-link:hover {
  color: #3F3F3F;
  background-color: #E6E6E6;
}
.steps .step .step-body.visible {
  overflow: visible;
  height: auto !important;
}
.steps .step .step-body .version {
  color: #0ab3e5;
  font-weight: 600;
}
.steps .step.active {
  z-index: 1;
}
.steps .step.active .step-header-title {
  font-weight: 900;
}
.steps .step.lock {
  cursor: not-allowed;
}
.steps .step.lock * {
  pointer-events: none;
}
.steps .step.error .step-header .step-header-title {
  color: #FFA654;
  font-weight: 900;
}
.steps .step:last-child .step-body {
  border-left: 1px solid transparent;
}
.select-picker-editable {
  display: flex;
  flex-direction: row;
}
.select-picker-editable.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}
.select-picker-editable .select-picker,
.select-picker-editable .select-picker-selected-item-wrapper {
  flex: 1 auto;
  position: relative;
  cursor: pointer;
}
.select-picker-editable .select-picker:after,
.select-picker-editable .select-picker-selected-item-wrapper:after {
  content: ' ';
  display: block;
  position: absolute;
  right: 17px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #3f3f3f transparent transparent transparent;
  margin-top: auto;
  margin-bottom: auto;
  top: 0;
  bottom: 0;
}
.select-picker-editable .select-picker.has-right-margin,
.select-picker-editable .select-picker-selected-item-wrapper.has-right-margin {
  margin-right: 10px;
}
.select-picker-editable .select-picker.unauthorized,
.select-picker-editable .select-picker-selected-item-wrapper.unauthorized {
  cursor: pointer !important;
  opacity: 1 !important;
}
.select-picker-editable .select-picker.unauthorized .select-picker-buttons button .btn-create-new,
.select-picker-editable .select-picker-selected-item-wrapper.unauthorized .select-picker-buttons button .btn-create-new {
  display: none;
}
.select-picker-editable .select-picker-selected-item {
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  min-height: 70px;
  padding: 0 35px 5px 7px;
}
.select-picker-editable .select-picker-editable-buttons {
  position: relative;
  flex: 0 auto;
}
.select-picker-editable .select-picker-editable-buttons button {
  max-height: 41px;
  min-height: 41px;
}
.select-picker-editable .select-picker-editable-buttons button i {
  font-size: 10px;
  margin-right: 3px;
}
.select-picker-editable .select-picker-editable-buttons .dropdown-menu {
  top: 50px !important;
  left: auto !important;
  right: 0 !important;
  padding: 10px !important;
}
.select-picker-editable .select-picker-editable-buttons .dropdown-menu li a {
  display: flex;
  padding: 5px !important;
}
.select-picker-editable .select-picker-editable-buttons .dropdown-menu li a img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}
.select-picker-editable .select-picker-editable-buttons .dropdown-menu li a span {
  font-weight: 400;
  padding: 2px 0;
}
.select-picker-editable .select-picker-buttons {
  flex: 0 auto;
  min-width: 100px;
}
.select-picker-editable .select-picker-buttons i {
  margin-left: 3px;
  font-size: 11px;
}
.select-picker-editable svg {
  color: #cccccc !important;
  fill: #8c8c8c !important;
}
.select-picker-editable .select-picker-container {
  flex: 1 auto;
}
.selectize-control .selectize-input.focus {
  box-shadow: none !important;
}
.selectize-control .selectize-input.dropdown-active {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.selectize-control .selectize-dropdown {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-top: 0 none;
  margin-top: -1px;
  border-color: #0AB3E5;
  border-top: 1px solid #E6E6E6;
}
.selectize-control .selectize-dropdown .selectize-dropdown-content {
  padding: 0 !important;
}
.selectize-control .selectize-dropdown .highlight {
  background-color: #ffe093;
}
.selectize-control .selectize-dropdown.hide-highlight .highlight {
  background-color: transparent !important;
}
select-picker-connection,
.select-picker-package,
.select-picker-cluster,
.select-picker-workspace,
.select-picker-component {
  min-height: 70px;
  display: flex;
  align-items: center;
}
.selectize-dropdown-content {
  max-height: 420px;
}
.selectize-dropdown-content .select-picker-connection,
.selectize-dropdown-content .select-picker-package,
.selectize-dropdown-content .select-picker-cluster,
.selectize-dropdown-content .select-picker-workspace,
.selectize-dropdown-content .select-picker-component {
  min-height: 70px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E6E6E6;
}
.selectize-dropdown-content .select-picker-connection .select-picker-buttons,
.selectize-dropdown-content .select-picker-package .select-picker-buttons,
.selectize-dropdown-content .select-picker-cluster .select-picker-buttons,
.selectize-dropdown-content .select-picker-workspace .select-picker-buttons,
.selectize-dropdown-content .select-picker-component .select-picker-buttons {
  display: none;
}
.selectize-dropdown-content .select-picker-connection .select-picker-name-title .btn,
.selectize-dropdown-content .select-picker-package .select-picker-name-title .btn,
.selectize-dropdown-content .select-picker-cluster .select-picker-name-title .btn,
.selectize-dropdown-content .select-picker-workspace .select-picker-name-title .btn,
.selectize-dropdown-content .select-picker-component .select-picker-name-title .btn {
  display: none;
}
.select-picker {
  position: relative;
}
.select-picker .loader {
  z-index: 2;
  background-color: #fff;
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  transform: scale(0.6);
}
.select-picker-item-container {
  padding: 10px 0 0 10px;
}
.select-picker-connection .select-picker-item,
.select-picker-package .select-picker-item,
.select-picker-cluster .select-picker-item,
.select-picker-workspace .select-picker-item,
.select-picker-component .select-picker-item {
  padding-bottom: 10px;
}
.select-picker-connection .select-picker-item .select-picker-header,
.select-picker-package .select-picker-item .select-picker-header,
.select-picker-cluster .select-picker-item .select-picker-header,
.select-picker-workspace .select-picker-item .select-picker-header,
.select-picker-component .select-picker-item .select-picker-header {
  display: flex;
}
.select-picker-connection .select-picker-item .select-picker-header .select-picker-icon,
.select-picker-package .select-picker-item .select-picker-header .select-picker-icon,
.select-picker-cluster .select-picker-item .select-picker-header .select-picker-icon,
.select-picker-workspace .select-picker-item .select-picker-header .select-picker-icon,
.select-picker-component .select-picker-item .select-picker-header .select-picker-icon {
  flex: 0 auto;
  width: 22px;
  height: 22px;
  padding: 3px 0;
}
.select-picker-connection .select-picker-item .select-picker-header .select-picker-icon img,
.select-picker-package .select-picker-item .select-picker-header .select-picker-icon img,
.select-picker-cluster .select-picker-item .select-picker-header .select-picker-icon img,
.select-picker-workspace .select-picker-item .select-picker-header .select-picker-icon img,
.select-picker-component .select-picker-item .select-picker-header .select-picker-icon img {
  width: 100%;
  width: 22px;
  height: 22px;
  opacity: 1;
}
.select-picker-connection .select-picker-item .select-picker-header .select-picker-icon svg,
.select-picker-package .select-picker-item .select-picker-header .select-picker-icon svg,
.select-picker-cluster .select-picker-item .select-picker-header .select-picker-icon svg,
.select-picker-workspace .select-picker-item .select-picker-header .select-picker-icon svg,
.select-picker-component .select-picker-item .select-picker-header .select-picker-icon svg {
  width: 22px;
  height: 22px;
}
.select-picker-connection .select-picker-item .select-picker-header .select-picker-name,
.select-picker-package .select-picker-item .select-picker-header .select-picker-name,
.select-picker-cluster .select-picker-item .select-picker-header .select-picker-name,
.select-picker-workspace .select-picker-item .select-picker-header .select-picker-name,
.select-picker-component .select-picker-item .select-picker-header .select-picker-name {
  padding: 4px 0 4px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 900;
  font-size: 16px;
  max-width: 500px;
  line-height: 24px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
}
.select-picker-connection .select-picker-item .select-picker-header .select-picker-name span.select-picker-name-title,
.select-picker-package .select-picker-item .select-picker-header .select-picker-name span.select-picker-name-title,
.select-picker-cluster .select-picker-item .select-picker-header .select-picker-name span.select-picker-name-title,
.select-picker-workspace .select-picker-item .select-picker-header .select-picker-name span.select-picker-name-title,
.select-picker-component .select-picker-item .select-picker-header .select-picker-name span.select-picker-name-title,
.select-picker-connection .select-picker-item .select-picker-header .select-picker-name div.select-picker-name-title,
.select-picker-package .select-picker-item .select-picker-header .select-picker-name div.select-picker-name-title,
.select-picker-cluster .select-picker-item .select-picker-header .select-picker-name div.select-picker-name-title,
.select-picker-workspace .select-picker-item .select-picker-header .select-picker-name div.select-picker-name-title,
.select-picker-component .select-picker-item .select-picker-header .select-picker-name div.select-picker-name-title {
  display: flex;
  height: auto;
  align-items: center;
  line-height: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #3F3F3F;
  margin-bottom: 5px;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.select-picker-connection .select-picker-item .select-picker-header .select-picker-name span.select-picker-name-title .label-default,
.select-picker-package .select-picker-item .select-picker-header .select-picker-name span.select-picker-name-title .label-default,
.select-picker-cluster .select-picker-item .select-picker-header .select-picker-name span.select-picker-name-title .label-default,
.select-picker-workspace .select-picker-item .select-picker-header .select-picker-name span.select-picker-name-title .label-default,
.select-picker-component .select-picker-item .select-picker-header .select-picker-name span.select-picker-name-title .label-default,
.select-picker-connection .select-picker-item .select-picker-header .select-picker-name div.select-picker-name-title .label-default,
.select-picker-package .select-picker-item .select-picker-header .select-picker-name div.select-picker-name-title .label-default,
.select-picker-cluster .select-picker-item .select-picker-header .select-picker-name div.select-picker-name-title .label-default,
.select-picker-workspace .select-picker-item .select-picker-header .select-picker-name div.select-picker-name-title .label-default,
.select-picker-component .select-picker-item .select-picker-header .select-picker-name div.select-picker-name-title .label-default {
  background-color: #fff;
  border: 1px solid #E6E6E6;
  color: #808080;
  font-weight: 300;
  display: inline-block;
  -webkit-transform: translate(0px, -3px);
  -ms-transform: translate(0px, -3px);
  -o-transform: translate(0px, -3px);
  transform: translate(0px, -3px);
}
.select-picker-connection .select-picker-item .select-picker-header .select-picker-name span.select-picker-name-title .btn,
.select-picker-package .select-picker-item .select-picker-header .select-picker-name span.select-picker-name-title .btn,
.select-picker-cluster .select-picker-item .select-picker-header .select-picker-name span.select-picker-name-title .btn,
.select-picker-workspace .select-picker-item .select-picker-header .select-picker-name span.select-picker-name-title .btn,
.select-picker-component .select-picker-item .select-picker-header .select-picker-name span.select-picker-name-title .btn,
.select-picker-connection .select-picker-item .select-picker-header .select-picker-name div.select-picker-name-title .btn,
.select-picker-package .select-picker-item .select-picker-header .select-picker-name div.select-picker-name-title .btn,
.select-picker-cluster .select-picker-item .select-picker-header .select-picker-name div.select-picker-name-title .btn,
.select-picker-workspace .select-picker-item .select-picker-header .select-picker-name div.select-picker-name-title .btn,
.select-picker-component .select-picker-item .select-picker-header .select-picker-name div.select-picker-name-title .btn {
  margin-left: 5px;
  padding: 3px 10px;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
}
.select-picker-connection .select-picker-item .select-picker-header .select-picker-name span.select-picker-name-description,
.select-picker-package .select-picker-item .select-picker-header .select-picker-name span.select-picker-name-description,
.select-picker-cluster .select-picker-item .select-picker-header .select-picker-name span.select-picker-name-description,
.select-picker-workspace .select-picker-item .select-picker-header .select-picker-name span.select-picker-name-description,
.select-picker-component .select-picker-item .select-picker-header .select-picker-name span.select-picker-name-description,
.select-picker-connection .select-picker-item .select-picker-header .select-picker-name div.select-picker-name-description,
.select-picker-package .select-picker-item .select-picker-header .select-picker-name div.select-picker-name-description,
.select-picker-cluster .select-picker-item .select-picker-header .select-picker-name div.select-picker-name-description,
.select-picker-workspace .select-picker-item .select-picker-header .select-picker-name div.select-picker-name-description,
.select-picker-component .select-picker-item .select-picker-header .select-picker-name div.select-picker-name-description {
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  color: #808080;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
}
.select-picker-connection .select-picker-item .select-picker-header .select-picker-buttons,
.select-picker-package .select-picker-item .select-picker-header .select-picker-buttons,
.select-picker-cluster .select-picker-item .select-picker-header .select-picker-buttons,
.select-picker-workspace .select-picker-item .select-picker-header .select-picker-buttons,
.select-picker-component .select-picker-item .select-picker-header .select-picker-buttons {
  padding-top: 1px;
  margin-left: 10px;
}
.select-picker-connection .select-picker-item .select-picker-header .select-picker-buttons .btn,
.select-picker-package .select-picker-item .select-picker-header .select-picker-buttons .btn,
.select-picker-cluster .select-picker-item .select-picker-header .select-picker-buttons .btn,
.select-picker-workspace .select-picker-item .select-picker-header .select-picker-buttons .btn,
.select-picker-component .select-picker-item .select-picker-header .select-picker-buttons .btn {
  padding: 3px 10px;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
}
.select-picker-connection .select-picker-item .select-picker-body,
.select-picker-package .select-picker-item .select-picker-body,
.select-picker-cluster .select-picker-item .select-picker-body,
.select-picker-workspace .select-picker-item .select-picker-body,
.select-picker-component .select-picker-item .select-picker-body {
  padding-left: 32px;
  padding-top: 5px;
}
.select-picker-connection .select-picker-item .select-picker-body span,
.select-picker-package .select-picker-item .select-picker-body span,
.select-picker-cluster .select-picker-item .select-picker-body span,
.select-picker-workspace .select-picker-item .select-picker-body span,
.select-picker-component .select-picker-item .select-picker-body span {
  color: #808080;
  font-size: 13px;
  font-weight: 300;
  line-height: 15px;
}
.select-picker-connection .select-picker-item .select-picker-body span.small,
.select-picker-package .select-picker-item .select-picker-body span.small,
.select-picker-cluster .select-picker-item .select-picker-body span.small,
.select-picker-workspace .select-picker-item .select-picker-body span.small,
.select-picker-component .select-picker-item .select-picker-body span.small {
  display: block;
}
.select-picker-connection:last-child,
.select-picker-package:last-child,
.select-picker-cluster:last-child,
.select-picker-workspace:last-child,
.select-picker-component:last-child {
  border-bottom: 0 none;
}
.select-picker-connection.active svg,
.select-picker-package.active svg,
.select-picker-cluster.active svg,
.select-picker-workspace.active svg,
.select-picker-component.active svg {
  color: #cccccc !important;
  fill: #8c8c8c !important;
}
.note-editor {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
}
.note-editor .note-editor-body {
  padding: 30px 40px;
  flex: 1 auto;
  overflow-y: auto;
}
.note-editor .note-editor-body textarea {
  min-height: 420px;
  min-width: 100%;
}
.note-editor .note-editor-footer {
  flex: 0 auto;
  height: 80px;
  min-height: 80px;
  max-height: 80px;
  position: relative !important;
}
.accounts-campaigns-selector {
  padding-bottom: 30px;
}
.accounts-campaigns-selector .accounts-campaigns-selector-label {
  line-height: 18px;
  padding-left: 5px;
  color: #808080;
  font-weight: 300;
}
.accounts-campaigns-selector .accounts-campaigns-selector-list {
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  margin-top: 5px;
}
.accounts-campaigns-selector .accounts-campaigns-selector-list .accounts-campaigns-selector-list-header {
  border-radius: 7px 7px 0 0;
  height: 32px;
  border-bottom: 1px solid #CCCCCC;
  background-color: #f9f9f9;
  position: relative;
}
.accounts-campaigns-selector .accounts-campaigns-selector-list .accounts-campaigns-selector-list-header .search-btn {
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 1;
}
.accounts-campaigns-selector .accounts-campaigns-selector-list .accounts-campaigns-selector-list-header .search-btn button {
  background-color: transparent;
  border: 0 none;
}
.accounts-campaigns-selector .accounts-campaigns-selector-list .accounts-campaigns-selector-list-header input {
  top: 4px;
  left: 4px;
  padding-left: 22px;
  position: absolute;
  border: 1px solid #CCCCCC;
  width: 50%;
  line-height: 19px;
  z-index: 0;
  border-radius: 4px 0 0 0;
}
.accounts-campaigns-selector .accounts-campaigns-selector-list .accounts-campaigns-selector-list-header .btn-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 22px;
  line-height: 16px;
  padding: 0 7px;
  color: #808080;
}
.accounts-campaigns-selector .accounts-campaigns-selector-list .accounts-campaigns-selector-list-header .btn-remove i {
  font-size: 10px;
}
.accounts-campaigns-selector .accounts-campaigns-selector-list .accounts-campaigns-selector-list-scroll {
  padding: 10px;
  overflow-y: scroll;
  height: 400px;
  border-radius: 0 0 7px 7px;
}
.accounts-campaigns-selector .accounts-campaigns-selector-list .loader {
  margin-top: 70px;
}
.accounts-campaigns-selector .accounts-campaigns-selector-list .accounts-campaigns-selector-list-item .highlighted {
  background-color: #ffe8ad;
}
.accounts-campaigns-selector .accounts-campaigns-selector-list .accounts-campaigns-selector-list-item i {
  cursor: pointer;
  width: 12px;
  text-align: center;
  margin-right: 5px;
}
.accounts-campaigns-selector .accounts-campaigns-selector-list .accounts-campaigns-selector-list-item i.fa-refresh {
  font-size: 12px;
  font-weight: 400;
}
.accounts-campaigns-selector .accounts-campaigns-selector-list .accounts-campaigns-selector-list-item a {
  display: none;
}
.accounts-campaigns-selector .accounts-campaigns-selector-list .accounts-campaigns-selector-list-item.loaded strong {
  color: #3F3F3F;
  font-weight: 600;
}
.accounts-campaigns-selector .accounts-campaigns-selector-list .accounts-campaigns-selector-list-item strong {
  display: inline-block;
  font-weight: 700;
}
.accounts-campaigns-selector .accounts-campaigns-selector-list .accounts-campaigns-selector-list-item div.collapse-wrapper {
  padding: 2px 0 2px 33px;
}
.accounts-campaigns-selector .accounts-campaigns-selector-list .accounts-campaigns-selector-list-item div.collapse-wrapper div.selected span {
  color: #0AB3E5;
}
.accounts-campaigns-selector .accounts-campaigns-selector-list .accounts-campaigns-selector-list-item div.collapse-wrapper small {
  display: inline-block;
  margin-bottom: 7px;
}
.accounts-campaigns-selector .accounts-campaigns-selector-list .accounts-campaigns-selector-list-item:hover a {
  display: inline-block;
}
.input-checkbox {
  padding: 0 !important;
}
.input-checkbox .input-checkbox-hint {
  color: #E6E6E6;
}
assisted-search {
  width: 100%;
  margin: 0 30px;
}
assisted-search .assisted-search {
  margin: 0;
}
.assisted-search {
  border: 1px solid #CCCCCC;
  border-radius: 50px;
  position: relative;
  flex: 1;
  margin: 0 30px;
  display: flex;
  align-items: center;
  flex-direction: inherit;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  z-index: 500;
}
.assisted-search:hover,
.assisted-search.search-focused {
  border: 1px solid #0AB3E5;
}
.assisted-search:hover .submit.btn,
.assisted-search.search-focused .submit.btn {
  border-left: 1px solid #0AB3E5;
}
.assisted-search svg {
  width: 26px;
  height: 100%;
  margin-left: 10px;
  position: absolute;
  top: 0;
}
.assisted-search svg .clear-query-button {
  cursor: pointer;
}
.assisted-search .submit.btn {
  border-left: 1px solid #CCCCCC;
  line-height: 50px;
  border-right: 0;
  border-top: 0;
  border-bottom: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  height: 100%;
  padding: 0 28px;
}
.assisted-search .submit.btn:hover {
  background-color: #0AB3E5;
  border-left: 1px solid #0AB3E5;
  color: #fff !important;
}
.assisted-search input.main-input {
  height: 30px;
  width: 100%;
  font-size: 18px;
  border: none;
  overflow: hidden;
  background: transparent;
  margin: 0 0 0 45px;
  padding: 0;
  outline: 0;
  z-index: 2;
  letter-spacing: 0px;
  word-spacing: 0px;
  position: relative;
  font-family: "proxima-nova", sans-serif;
  direction: ltr;
}
.assisted-search .background-container {
  color: transparent;
  position: absolute;
  left: 45px;
  right: 105px;
  top: 13px;
  z-index: 1;
  outline: #555459 none 0px;
  font-size: 18px;
  font-family: "proxima-nova", sans-serif;
  letter-spacing: 0px;
  word-spacing: 0px;
  margin: 0;
  white-space: pre;
  overflow: hidden;
}
.assisted-search .background-container .hint-value {
  color: #CCCCCC;
}
.assisted-search .hint-menu-container {
  position: absolute;
  left: 40px;
  top: 33px;
}
.assisted-search .hint-menu-container .arrow {
  position: absolute;
  top: 7px;
  left: 20px;
  z-index: 40;
}
.assisted-search .hint-menu-container .arrow::after {
  content: '';
  display: block;
  width: 11px;
  height: 11px;
  background-clip: padding-box;
  background-color: #FFF;
  transform: rotate(45deg);
}
.assisted-search .hint-menu-container .arrow-border {
  position: absolute;
  top: 6px;
  left: 20px;
}
.assisted-search .hint-menu-container .arrow-border::after {
  content: '';
  display: block;
  width: 12px;
  height: 11px;
  background-clip: padding-box;
  transform: rotate(45deg);
}
.assisted-search .hint-menu-container .hint-menu {
  -webkit-box-shadow: 0 0px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.175);
  position: absolute;
  background-color: #FFF;
  top: 12px;
  left: 0px;
  min-width: 400px;
  padding: 0px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.assisted-search .hint-menu-container .hint-menu.with-help {
  width: 360px;
  padding: 10px 20px;
}
.assisted-search .hint-menu-container .hint-menu.with-help .help-title {
  font-weight: 600;
  margin: 5px 0 6px 0;
}
.assisted-search .hint-menu-container .hint-menu.with-help .help-text {
  font-size: 14px;
  margin: 5px 0 6px 0;
}
.assisted-search .hint-menu-container .hint-menu .section-header {
  position: relative;
  margin: 10px 20px;
  font-size: 14px;
}
.assisted-search .hint-menu-container .hint-menu .section-header hr {
  width: 100%;
  top: 10px;
  margin: 0 !important;
  position: absolute;
}
.assisted-search .hint-menu-container .hint-menu .section-header .header-label {
  text-transform: capitalize;
  color: #999999;
  background: #FFF;
  z-index: 20;
  position: relative;
  padding: 2px 10px 0 0px;
  margin: 0px;
  font-size: 14px;
}
.assisted-search .background-container .modifier,
.assisted-search .hint-menu.with-help .modifier {
  position: relative;
  z-index: 10;
  display: inline-block;
  box-sizing: border-box;
  border-radius: 4px;
  border: none;
  background: #d7f5fd;
}
.assisted-search .background-container .modifier.incomplete,
.assisted-search .hint-menu.with-help .modifier.incomplete {
  background: #ffe8d4;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.assisted-search .hint-menu.with-help .modifier {
  cursor: pointer;
  font-size: 13.3px;
}
.assisted-search ul.search-input-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  overflow-y: scroll;
  position: relative;
  max-height: 240px;
  box-sizing: border-box;
}
.assisted-search ul.search-input-list li {
  color: #999999;
  margin: 0;
  padding: 10px 20px;
  cursor: pointer;
}
.assisted-search ul.search-input-list li img {
  max-height: 20px;
  max-width: 20px;
  border-radius: 4px;
  margin-right: 4px;
  margin-top: -4px;
}
.assisted-search ul.search-input-list li .modifier-option {
  color: #3F3F3F;
  font-weight: 600;
}
.assisted-search ul.search-input-list li .modifier-value {
  color: #999999;
  margin-left: 3px;
}
.assisted-search ul.search-input-list li:hover {
  background-color: #EEE;
}
.assisted-search ul.search-input-list li:hover .modifier-value {
  color: #999999;
}
.assisted-search ul.search-input-list li:hover .modifier-option {
  color: #3F3F3F;
}
.assisted-search ul.search-input-list li.current {
  background-color: #0AB3E5;
}
.assisted-search ul.search-input-list li.current .modifier-value {
  color: #CCCCCC;
}
.assisted-search ul.search-input-list li.current .modifier-option {
  color: #FFF;
}
.package {
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  padding: 5px;
}
.package .package-header {
  display: flex;
}
.package .package-header-icon {
  flex: 0 auto;
  width: 30px;
  padding: 7px 0 0 7px;
}
.package .package-header-icon svg {
  color: #CCCCCC !important;
  fill: #808080 !important;
}
.package .package-header .package-header-info {
  display: flex;
  flex: auto;
  flex-flow: column;
}
.package .package-header .package-header-info .package-header-name {
  font-weight: 900;
  font-size: 16px;
  line-height: 40px;
  padding: 0 7px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: -3px;
}
.package .package-header .package-header-info .package-header-workspace {
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  color: #808080;
  margin: 0 0 5px 8px;
}
.package .package-header .package-header-info .package-header-version {
  font-size: 14px;
  margin-left: 8px;
  margin-top: 0;
}
.package .package-header .package-header-info .package-header-version .version {
  font-weight: 400;
}
.package .package-header-buttons {
  flex: 0 auto;
  padding: 5px;
}
.package .package-header-buttons .btn {
  border-color: transparent;
}
.package .package-header-buttons .btn-group {
  margin-right: 10px;
}
.packages-picker-list {
  padding: 20px 0;
}
.packages-picker-list xp-package {
  display: block;
  border-radius: 0;
  border-bottom: 0 none;
}
.packages-picker-list xp-package:first-child {
  border-radius: 4px 4px 0 0;
}
.packages-picker-list xp-package:last-child {
  border-radius: 0 0 4px 4px;
  border-bottom: 1px solid #CCCCCC;
}
.packages-picker-list xp-package:only-child {
  border-radius: 4px;
}
.packages-picker small {
  font-size: 13px;
  font-weight: 300;
  color: #808080;
}
.component {
  border: 1px solid #CCCCCC;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  width: 240px;
  min-height: 48px;
}
.component-icon {
  flex: 0 auto;
  width: 26px;
  height: 26px;
  max-width: 26px;
}
.component-icon svg {
  width: 26px;
  height: 26px;
}
.component-title {
  flex: 1 auto;
  line-height: 26px;
  padding: 0 10px;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.component-empty {
  width: 100%;
  text-align: center;
  height: 26px;
  line-height: 26px;
}
.component.empty {
  background-color: #E6E6E6;
}
.components-order-editor {
  display: flex;
  flex-direction: row;
}
.components-order-editor .btn,
.components-order-editor .component {
  margin-right: 10px;
}
.components-order-editor .btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #CCCCCC;
  cursor: pointer !important;
}
.components-order-editor .btn.disable {
  pointer-events: none;
}
members-invitation,
members-confirmation,
reset-password {
  z-index: 2;
}
.members-invitation .checkbox {
  padding-left: 0 !important;
}
.members-invitation small {
  font-weight: 300;
  display: block;
  padding: 10px 5px 0;
  color: #808080;
}
.email-confirmation small {
  margin-bottom: 20px;
  margin-top: -20px;
}
.package-json-import-form {
  margin-top: 5%;
}
.package-json-import-form textarea {
  min-height: 420px;
  min-width: 100%;
}
#functions-modal,
#shortcuts-modal {
  max-height: calc(100vh - 180px);
  overflow: scroll;
}
.console-container {
  padding: 20px 10px;
  position: relative;
  height: calc(100vh - 100px);
  width: calc(100vw - 50px);
}
.console-container #terminal {
  height: 100%;
}
.console-container .btn {
  top: 70px;
  position: absolute;
  background-color: white;
  padding: 4px;
  height: 35px;
  width: 35px;
  border-radius: 0;
  border: 1px solid grey;
  color: #3f3f3f;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.console-container .shortcuts-btn {
  right: 64px;
}
.console-container .functions-btn {
  right: 30px;
}
#help-shortcuts-content .shortcut {
  width: 6em;
  text-align: right;
  display: inline-block;
  line-height: 40px;
  margin-right: 5px;
}
#help-shortcuts-content kbd {
  padding: 3px 5px;
  background: #333;
  border: 1px transparent solid;
  color: #eee;
  font-size: 11px;
  font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace;
  border-radius: 2px;
}
#help-shortcuts-content kbd em {
  color: #bbb;
  padding: 0 3px;
}
.function .description {
  display: block;
  margin-top: 3px;
  color: #808080;
  font-size: 13px;
}
.ngdialog-theme-default.xplenty-console-shortcuts,
.ngdialog-theme-default.xplenty-console-functions {
  padding-top: 100px;
}
.ngdialog-theme-default.xplenty-console-shortcuts .title,
.ngdialog-theme-default.xplenty-console-functions .title {
  margin: 0;
}
.ngdialog-theme-default.xplenty-console-shortcuts .modal-footer,
.ngdialog-theme-default.xplenty-console-functions .modal-footer {
  padding-bottom: 0;
}
.ngdialog-theme-default.xplenty-console-functions .ng-dialog-content {
  padding: 0;
}
.search-query {
  width: 100%;
  height: 30px;
  background-color: #f7f7f7;
  border: 1px solid #c3c3c3;
  padding: 5px;
}
.search-query:focus {
  border-color: #0AB3E5;
}
.functions-list {
  max-height: 300px;
  overflow: auto;
}
.functions-list .function {
  border: 1px solid lightgrey;
  display: flex;
  width: 100%;
  margin: 0;
}
.functions-list .function:not(:first-child) {
  border-top: 0;
}
.functions-list .function .function-container {
  padding: 5px;
  width: 100%;
}
.functions-list .function .title {
  color: #0AB3E5;
}
.functions-list .function .description {
  margin-top: 30px;
}
.browser-bar {
  width: 100%;
  height: 34px;
  position: relative;
  background-color: #eff1f4;
  border-radius: 5px 5px 0 0;
}
.browser-bar .actions {
  margin-left: 5px;
  height: 100%;
  display: flex;
  align-items: center;
}
.browser-bar .actions .dot {
  border-radius: 100%;
  height: 13px;
  width: 13px;
  margin-left: 10px;
}
.browser-bar .actions .dot.red {
  background-color: #fc605b;
}
.browser-bar .actions .dot.yellow {
  background-color: #fdbd41;
}
.browser-bar .actions .dot.green {
  background-color: #33c748;
}
.generic-list {
  width: 100%;
  height: 100%;
  max-width: 1200px;
}
.generic-list .generic-list-header {
  margin: 30px 0px;
  overflow: visible;
  height: 52px;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.generic-list .generic-list-header .generic-list-sortby {
  float: right;
  margin-right: 15px;
  padding: 0;
}
.generic-list .generic-list-header .generic-list-sortby label {
  margin-right: 15px;
}
.generic-list .generic-list-header .generic-list-new-button {
  float: right;
  font-size: 16px;
  font-weight: bold;
}
.generic-list .generic-list-sortby {
  padding: 5px 0;
}
.generic-list .generic-list-sortby .generic-list-sortby-select {
  width: 160px !important;
}
.generic-list .generic-list-sortby .generic-list-sortby-select .btn {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
  background-image: -o-linear-gradient(top, #ffffff 0%, #ffffff 100%);
  background-image: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffffffff', GradientType=0);
  background-repeat: repeat-x;
  text-decoration: none;
  border: 1px solid #E6E6E6;
  border-radius: 5px;
}
.generic-list .generic-list-sortby .generic-list-sortby-select .btn:focus {
  outline: none !important;
}
.generic-list .generic-list-sortby .generic-list-sortby-select:focus {
  outline: none !important;
}
.generic-list .generic-list-headers {
  text-transform: uppercase;
  font-size: 12px;
}
.generic-list .generic-list-headers i.active {
  color: #0AB3E5 !important;
}
.generic-list .generic-list-headers .sorting {
  cursor: pointer;
  margin-right: 5px;
}
.generic-list .generic-list-headers .sorting:hover {
  text-decoration: underline;
}
.generic-list .generic-list-headers.packages {
  padding-left: 40px;
  padding-bottom: 5px;
  display: flex;
}
.generic-list .generic-list-headers.packages div {
  text-transform: uppercase;
  font-size: 12px;
}
.generic-list .generic-list-headers.packages div.owner {
  flex: 1;
  margin-right: 20px;
}
.generic-list .generic-list-headers.packages div.name {
  flex: 2;
}
.generic-list .generic-list-headers.packages div.date {
  flex: 1;
}
.generic-list .generic-list-headers.packages div.run-job {
  width: 120px;
}
.generic-list .generic-list-headers.workspaces {
  display: none;
}
.generic-list .generic-list-headers.workspaces .id {
  width: 140px;
}
.generic-list .generic-list-headers.workspaces .status {
  width: 250px;
}
.generic-list .generic-list-headers.connections {
  display: flex;
  padding-left: 40px;
  padding-bottom: 5px;
}
.generic-list .generic-list-headers.connections div {
  text-transform: uppercase;
  font-size: 12px;
}
.generic-list .generic-list-headers.connections div.name {
  flex: 2;
}
.generic-list .generic-list-headers.connections div.type {
  flex: 1;
}
.generic-list .generic-list-headers.connections div.date {
  flex: 1;
}
.generic-list .generic-list-headers.connections div.owner {
  flex: 1;
  margin-right: 20px;
}
.generic-list .generic-list-headers.schedules {
  display: flex;
  padding-left: 40px;
  padding-bottom: 5px;
}
.generic-list .generic-list-headers.schedules div {
  text-transform: uppercase;
  font-size: 12px;
}
.generic-list .generic-list-headers.schedules div.owner,
.generic-list .generic-list-headers.schedules div.repeat,
.generic-list .generic-list-headers.schedules div.last-run,
.generic-list .generic-list-headers.schedules div.next-run {
  flex: 1;
}
.generic-list .generic-list-headers.schedules div.owner {
  flex: 1;
}
.generic-list .generic-list-headers.schedules div.name {
  flex: 2;
}
.generic-list .generic-list-headers.jobs {
  display: flex;
  padding-left: 40px;
  padding-bottom: 5px;
}
.generic-list .generic-list-headers.jobs .job,
.generic-list .generic-list-headers.jobs .package,
.generic-list .generic-list-headers.jobs .cluster,
.generic-list .generic-list-headers.jobs .runtime,
.generic-list .generic-list-headers.jobs .status {
  flex: 1;
  border: none;
}
.generic-list .generic-list-headers.jobs :last-child:not(.fa) {
  position: relative;
  right: -30px;
}
.generic-list .generic-list-headers.jobs .package strong,
.generic-list .generic-list-headers.jobs .cluster strong {
  padding-right: 15px;
}
.generic-list .generic-list-headers .package {
  padding: 0 !important;
}
.generic-list .generic-list-body.schedules {
  border-bottom: 1px solid #cccccc;
}
.generic-list .generic-list-empty {
  border-radius: 5px;
  padding: 5px;
  margin: auto 0px 30px 30px;
  background-color: inherit;
  border: 1px solid #dedede;
  -webkit-box-shadow: 0 0 1px 1px #E6E6E6;
  box-shadow: 0 0 1px 1px #E6E6E6;
  background-image: -webkit-linear-gradient(-28deg, #fff 50%, #f0fbfe 50%);
}
.generic-list .generic-list-empty .lead {
  margin: 10px 0px 5px 0px;
  font-weight: 700;
}
.generic-list .generic-list-empty .empty-list-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.generic-list .generic-list-empty .generic-list-empty-search {
  margin-top: 20px;
  padding: 30px 80px 45px 80px;
}
.generic-list .generic-list-empty .about-box {
  margin-top: 0px;
  padding: 30px 40px 30px 40px;
}
.generic-list .generic-list-empty .about-box h4 {
  text-transform: uppercase;
  line-height: 44px;
  font-weight: 800;
}
.generic-list .generic-list-empty .about-box .row {
  display: flex;
}
.generic-list .generic-list-empty .about-box .left-pane {
  padding-right: 45px;
}
.generic-list .generic-list-empty .about-box .left-pane hr {
  border-color: #CCCCCC;
  margin-bottom: 30px;
}
.generic-list .generic-list-empty .about-box .left-pane dl {
  font-size: 16px;
}
.generic-list .generic-list-empty .about-box .left-pane dd {
  margin-bottom: 15px;
}
.generic-list .generic-list-empty .about-box .left-pane dd {
  opacity: 0.75;
}
.generic-list .generic-list-empty .about-box .right-pane {
  display: flex;
  justify-content: center;
  align-items: center;
}
.generic-list .generic-list-empty .about-box .right-pane.connections img {
  max-width: 498px;
}
.generic-list .generic-list-empty .about-box .right-pane.packages img {
  max-width: 648px;
}
.generic-list .generic-list-empty .about-box .right-pane.jobs img {
  max-width: 605px;
}
.generic-list .generic-list-empty .about-box .right-pane.clusters img {
  max-width: 439px;
}
.generic-list .generic-list-empty .about-box .right-pane.schedules img {
  max-width: 471px;
}
.generic-list .generic-list-empty .about-box .right-pane.workspaces img {
  max-width: 471px;
}
.generic-list .generic-list-empty .about-box .icon-container {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #dedede;
  -webkit-box-shadow: 0 0 1px 1px #E6E6E6;
  box-shadow: 0 0 1px 1px #E6E6E6;
  margin-right: 18px;
}
.generic-list .generic-list-empty .about-box .icon-container .icon {
  width: 22px;
  height: 22px;
  margin-bottom: 0px;
}
.generic-list .generic-list-item {
  position: relative;
}
.generic-list .generic-list-item.clusters {
  display: inline-block;
}
.generic-list .generic-list-item:first-child {
  border-top: 1px solid #CCCCCC;
}
.generic-list .generic-list-item:first-child.workspaces,
.generic-list .generic-list-item:first-child.clusters {
  border-top: none;
}
.generic-list .generic-list-item .dropdown {
  height: 100%;
}
.generic-list .generic-list-item .dropdown.xp-dropdown {
  font-size: 30px;
  cursor: pointer;
  opacity: 0.5;
  margin-top: 6px;
}
.generic-list .generic-list-item .dropdown.xp-dropdown:hover,
.generic-list .generic-list-item .dropdown.xp-dropdown[aria-expanded] {
  opacity: 0.8;
}
.generic-list .generic-list-item .dropdown.xp-dropdown-full {
  font-size: 30px;
  margin-top: 0;
  cursor: pointer;
  height: 100%;
  width: 18px;
  background: #cccccc;
  opacity: 0.4;
  display: flex;
  justify-content: center;
  align-items: center;
}
.generic-list .generic-list-item .dropdown.xp-dropdown-full:hover {
  opacity: 1;
}
.generic-list .generic-list-item .dropdown.xp-dropdown-full.dropdown-disable {
  pointer-events: none;
  cursor: pointer;
}
.generic-list .generic-list-item .dropdown.xp-dropdown-full.dropdown-disable .fa {
  display: none;
}
.generic-list .generic-list-item .dropdown.open div {
  opacity: 1;
}
.generic-list .generic-list-item .dropdown.open div:hover {
  opacity: 1;
}
.generic-list .generic-list-item .dropdown div {
  cursor: pointer;
  height: 100%;
  width: 18px;
  background: #CCCCCC;
  opacity: 0.4;
  display: flex;
  justify-content: center;
  align-items: center;
}
.generic-list .generic-list-item .dropdown div:hover {
  opacity: 1;
}
.generic-list .generic-list-item .dropdown div i {
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
  background: #3F3F3F;
  box-shadow: 0 10px #3F3F3F, 0 -10px #3F3F3F;
}
.generic-list .generic-list-item .dropdown div:hover {
  -webkit-box-shadow: 0;
  box-shadow: 0;
}
.generic-list .generic-list-item .dropdown-menu {
  position: absolute;
  transform: translateX(-95%);
  top: 80%;
  overflow: hidden;
}
.generic-list .generic-list-item .dropdown-menu.connection-dropdown {
  transform: translateX(-5%);
}
.generic-list .generic-list-item .dropdown-menu.top-position {
  top: auto !important;
  bottom: 80% !important;
}
.generic-list .generic-list-item li {
  cursor: pointer;
}
.generic-list .generic-list-item li.divider {
  padding: 0;
}
.generic-list .generic-list-item li:hover {
  background-color: #f3f3f3;
}
.generic-list .generic-list-item li .icons-master-expanded_icon-list-delete + span {
  color: #E54C40;
}
.generic-list .generic-list-item li .icons-master-expanded_icon-list-archive + span {
  color: #FFA654;
}
.generic-list .generic-list-item li:hover .icons-master-expanded_icon-list-delete + span {
  color: #E54C40;
}
.generic-list .generic-list-item li:hover .icons-master-expanded_icon-list-archive + span {
  color: #FFA654;
}
.generic-list .generic-list-item li a {
  vertical-align: middle;
  color: #3F3F3F;
  display: inline-flex;
}
.generic-list .generic-list-item li a .icons-master-expanded_icon-list-delete + span {
  color: #E54C40;
}
.generic-list .generic-list-item li a .icons-master-expanded_icon-list-archive + span {
  color: #FFA654;
}
.generic-list .generic-list-item li a:hover {
  background-color: inherit;
}
.generic-list .generic-list-item li a:hover .icons-master-expanded_icon-list-delete + span {
  color: #E54C40;
}
.generic-list .generic-list-item li a:hover .icons-master-expanded_icon-list-archive + span {
  color: #FFA654;
}
.generic-list .generic-list-item li svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  fill: #999999;
}
.generic-list .generic-list-item li svg.icons-master-expanded_icon-list-delete {
  color: #E54C40;
  fill: #E54C40;
}
.generic-list .generic-list-item li svg.icons-master-expanded_icon-list-archive {
  fill: #FFA654;
  color: #FFA654;
}
.generic-list .generic-list-item div {
  box-sizing: border-box;
}
.generic-list .generic-list-item.clusters {
  float: left;
}
.generic-list .generic-list-item.clusters .cluster-list-square {
  width: 240px;
}
.generic-list .generic-list-item *[class*='-item'] {
  display: flex;
  flex-direction: row;
}
.generic-list .generic-list-item *[class*='-item'] *[class*='-checkbox'] {
  flex: 0 auto;
  width: 50px;
  height: 70px;
  text-align: center;
  cursor: pointer;
}
.generic-list .generic-list-item *[class*='-item'] *[class*='-checkbox'] i {
  color: #808080;
  line-height: 70px;
}
.generic-list .generic-list-item *[class*='-item'] *[class*='-checkbox']:hover i {
  color: #3F3F3F;
}
.generic-list .generic-list-item *[class*='-item'] *[class*='-img'] {
  flex: 0 auto;
  width: 70px;
  height: 50px;
}
.generic-list .generic-list-item *[class*='-item'] *[class*='-img'] img {
  width: 50px;
  height: 50px;
}
.generic-list .generic-list-item *[class*='-item'] *[class*='-body'] {
  flex: 1 auto;
}
.generic-list .generic-list-item *[class*='-item'] *[class*='-body'] strong {
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
}
.generic-list .generic-list-item *[class*='-item'] *[class*='-actions'] {
  flex: 0 auto;
}
.generic-list .generic-list-item *[class*='-item'] *[class*='-actions'] .btn {
  color: #3F3F3F;
  text-decoration: none;
}
.generic-list .generic-list-item *[class*='-item'] *[class*='-actions'] .btn i {
  margin-right: 5px;
}
.generic-list .generic-list-item *[class*='-item'] *[class*='-actions'] .btn:hover {
  background-color: #f5f5f5;
}
.generic-list .generic-list-item *[class*='-item'] *[class*='-actions'] .fa-play {
  color: #39E98D;
}
.generic-list .generic-list-item *[class*='-item'] *[class*='-actions'] .btn-danger,
.generic-list .generic-list-item *[class*='-item'] *[class*='-actions'] .fa-power-off {
  color: #E54C40;
}
.generic-list .generic-list-item *[class*='-item'] *[class*='-actions'] .fa {
  font-size: 16px;
}
.generic-list .generic-list-item:not(.clusters) > div.inactive {
  background-color: #ffffff;
  background-image: -webkit-linear-gradient(-45deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.02) 50%, rgba(0, 0, 0, 0.02) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(-45deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.02) 50%, rgba(0, 0, 0, 0.02) 75%, transparent 75%, transparent);
  background-image: linear-gradient(-45deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.02) 50%, rgba(0, 0, 0, 0.02) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
  background-size: 40px 40px;
}
.generic-list .generic-list-item:not(.clusters) > div.pending-removal {
  background-color: #fceceb;
}
.generic-list .generic-list-item:not(.clusters) > div.pending-removal.package-list-item {
  background-color: #ffe8d4;
}
.generic-list .generic-list-item:not(.clusters) > div.pending-removal.account-list-item {
  background-color: #ffe8d4;
}
.generic-list .generic-list-item:not(.clusters) > div.selected {
  background-color: #ffe8d4;
}
.generic-list .generic-list-item:not(.clusters) > div.selected.package-list-item {
  background-color: #ffe8d4;
}
.generic-list .generic-list-item:not(.clusters) > div.selected.account-list-item {
  background-color: #ffe8d4;
}
.generic-list .generic-list-item.clusters > div.pending-removal {
  border-color: #de2c1e;
}
.generic-list .generic-list-item.clusters > div.pending-removal .cluster-list-item-body {
  background-color: #fceceb;
}
.generic-list .generic-list-item.clusters > div.pending-removal .cluster-list-item-header,
.generic-list .generic-list-item.clusters > div.pending-removal .cluster-list-item-footer {
  background-color: #fceceb;
  border-color: #de2c1e;
}
.generic-list .generic-list-item.clusters > div.pending-removal .cluster-list-item-header button,
.generic-list .generic-list-item.clusters > div.pending-removal .cluster-list-item-footer button {
  border-top: 1px solid #de2c1e;
  background-color: #fceceb;
}
.generic-list .generic-list-item.clusters > div.pending-removal .cluster-list-item-header button.cluster-list-item-run,
.generic-list .generic-list-item.clusters > div.pending-removal .cluster-list-item-footer button.cluster-list-item-run {
  border-left: 1px solid #de2c1e;
}
.generic-list.package {
  padding-bottom: 140px;
}
.generic-list .package-list-item {
  border-bottom: 1px solid #CCCCCC;
  height: 120px;
  padding-left: 40px;
}
.generic-list .package-list-item .package-name {
  flex: 2;
  padding-top: 30px;
}
.generic-list .package-list-item .package-name .icon {
  width: 23px;
  height: 23px;
  float: left;
  margin-right: 15px;
  color: #999;
}
.generic-list .package-list-item .package-name .icon.icon-workflow {
  height: 32px;
}
.generic-list .package-list-item .package-name div {
  padding-right: 50px;
  display: flex;
  flex-direction: column;
  word-break: break-all;
  word-wrap: break-word;
}
.generic-list .package-list-item .package-name div.tooltip-inner {
  padding-right: 10px;
  max-width: 80vw;
}
.generic-list .package-list-item .package-name div.tooltip-arrow {
  display: none;
}
.generic-list .package-list-item .package-name div strong {
  padding-bottom: 3px;
}
.generic-list .package-list-item .package-name div strong a {
  color: #3F3F3F;
  font-size: 16px;
  font-weight: 600;
}
.generic-list .package-list-item .package-name div strong a:hover {
  text-decoration: underline;
}
.generic-list .package-list-item .package-name div strong .inactive {
  color: #808080;
  font-weight: 300;
  font-size: 12px;
  line-height: 20px;
  margin-left: 3px;
}
.generic-list .package-list-item .package-name div p {
  color: #808080;
  font-weight: 300;
  font-size: 13px;
  margin: 0 0 3px;
}
.generic-list .package-list-item .package-owner,
.generic-list .package-list-item .package-workspace {
  padding-top: 30px;
  padding-right: 20px;
  flex: 1;
}
.generic-list .package-list-item .package-owner span,
.generic-list .package-list-item .package-workspace span {
  display: block;
  color: #808080;
  font-weight: 300;
  font-size: 14px;
  padding-bottom: 3px;
}
.generic-list .package-list-item .package-owner a,
.generic-list .package-list-item .package-workspace a {
  color: #3F3F3F;
}
.generic-list .package-list-item .package-owner a:hover,
.generic-list .package-list-item .package-workspace a:hover {
  text-decoration: underline;
}
.generic-list .package-list-item .version-message {
  color: #808080;
}
.generic-list .package-list-item .package-version {
  font-size: 13px;
}
.generic-list .package-list-item .package-version.disabled {
  pointer-events: none;
}
.generic-list .package-list-item .package-date {
  padding-top: 30px;
  flex: 1;
  color: #808080;
  font-weight: 300;
  font-size: 13px;
}
.generic-list .package-list-item .package-run-job {
  padding-top: 30px;
  width: 120px;
  position: relative;
  text-align: left;
}
.generic-list .package-list-item .package-run-job .icon {
  cursor: pointer;
  width: 42px;
  height: 42px;
  padding: 11px;
  fill: #3F3F3F;
  border-radius: 5px;
  background-color: #FFD260;
}
.generic-list .package-list-item .package-run-job .icon:hover {
  background-color: #ffc42d;
  fill: #0c0c0c;
}
.generic-list .package-list-item .package-run-job strong {
  display: block;
  left: -2%;
  position: absolute;
}
.generic-list.workspace {
  padding-bottom: 140px;
}
.generic-list .workspace-list-item {
  height: 80px;
  padding-left: 40px;
  border-radius: 20px;
  border: 1px solid #c2c2c2;
  margin-left: 35px;
  margin-bottom: 15px;
  background-color: #f6f6f6;
}
.generic-list .workspace-list-item .workspace-background {
  display: none;
}
.generic-list .workspace-list-item .workspace-name {
  flex: 2;
  align-items: center;
  display: flex;
}
.generic-list .workspace-list-item .workspace-name .icon {
  width: 23px;
  height: 23px;
  float: left;
  margin-right: 15px;
  color: #999;
}
.generic-list .workspace-list-item .workspace-name .icon.icon-workflow {
  height: 32px;
}
.generic-list .workspace-list-item .workspace-name .name-description-container {
  display: flex;
  flex-direction: column;
  word-break: break-all;
  word-wrap: break-word;
}
.generic-list .workspace-list-item .workspace-name .name-description-container .name-container {
  padding-bottom: 3px;
  height: 26px;
  overflow: hidden;
}
.generic-list .workspace-list-item .workspace-name .name-description-container .name-container .workspace-title {
  color: #3F3F3F;
  font-size: 16px;
  font-weight: 600;
}
.generic-list .workspace-list-item .workspace-name .name-description-container .name-container .workspace-title:hover {
  text-decoration: underline;
}
.generic-list .workspace-list-item .workspace-name .name-description-container .name-container .inactive {
  color: #808080;
  font-weight: 300;
  font-size: 12px;
  line-height: 20px;
  margin-left: 3px;
}
.generic-list .workspace-list-item .workspace-name .name-description-container .workspace-description {
  color: #808080;
  font-weight: 300;
  font-size: 13px;
  margin: 0 0 3px;
  height: 37px;
  overflow: hidden;
}
.generic-list .workspace-list-item .workspace-owner {
  align-items: center;
  display: flex;
  padding-right: 20px;
  flex: 1;
}
.generic-list .workspace-list-item .workspace-owner span {
  display: block;
  color: #808080;
  font-weight: 300;
  font-size: 14px;
  padding-bottom: 3px;
}
.generic-list .workspace-list-item .workspace-owner a {
  color: #3F3F3F;
}
.generic-list .workspace-list-item .workspace-owner a:hover {
  text-decoration: underline;
}
.generic-list .workspace-list-item .workspace-date {
  align-items: center;
  display: flex;
  flex: 1;
  color: #808080;
  font-weight: 300;
  font-size: 13px;
}
.generic-list .workspace-list-item .packages-statuses {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-end;
  margin-right: 20px;
  width: 140px;
}
.generic-list .workspace-list-item .packages-statuses-container {
  border-radius: 8px;
  padding: 5px;
  background-color: #fff;
  height: 30px;
}
.generic-list .workspace-list-item .packages-statuses .packages-status {
  font-size: 15px;
  color: grey;
  padding: 5px;
}
.generic-list .workspace-list-item .packages-statuses .packages-status.total {
  border-right: 1px solid #e4e4e4;
  padding-right: 10px;
}
.generic-list .workspace-list-item .packages-statuses .packages-status.total:before {
  content: none;
}
.generic-list .workspace-list-item .packages-statuses .packages-status.failed:before {
  background-color: #f00;
}
.generic-list .workspace-list-item .packages-statuses .packages-status.pending:before {
  background-color: #636363;
}
.generic-list .workspace-list-item .packages-statuses .packages-status.success:before {
  background-color: #0f0;
}
.generic-list .workspace-list-item .packages-statuses .packages-status:before {
  margin-bottom: 2px;
  content: '';
  height: 5px;
  width: 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}
.generic-list .workspace-list-item .workspace-icon {
  display: flex;
  flex-flow: row;
  align-items: center;
  width: 100px;
}
.generic-list .workspace-list-item .workspace-icon-container {
  border-radius: 14px;
  border: 1px solid #a0a0a0;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.generic-list .workspace-list-item .workspace-icon-container img {
  width: 20px;
  height: 20px;
}
.generic-list .workspace-list-item .workspace-description {
  display: none;
}
.generic-list .workspace-list-item .dropdown div {
  background: none;
}
.generic-list .workspace-list-item .dropdown div i {
  background: #232323;
  box-shadow: 0 10px #232323, 0 -10px #232323;
}
.generic-list .workspace-list-item.folders {
  width: 280px;
  height: 170px;
  margin-left: 15px;
  flex-direction: column;
  padding: 15px;
  position: relative;
  justify-content: flex-end;
  border: none;
  background-color: transparent;
}
.generic-list .workspace-list-item.folders .workspace-background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: 0;
}
.generic-list .workspace-list-item.folders .workspace-icon {
  position: absolute;
  top: 30px;
  left: 15px;
}
.generic-list .workspace-list-item.folders .workspace-icon-container img {
  width: 15px;
  height: 15px;
}
.generic-list .workspace-list-item.folders .dropdown {
  position: absolute;
  height: 30px;
  padding: 5px;
  top: 20px;
  right: 10px;
}
.generic-list .workspace-list-item.folders .packages-statuses {
  position: absolute;
  right: 25px;
  top: 35px;
}
.generic-list .workspace-list-item.folders .packages-statuses .packages-statuses-container {
  padding: 6px;
}
.generic-list .workspace-list-item.folders .packages-statuses .packages-status {
  padding: 3px;
  font-size: 13px;
  margin: 0 2px;
}
.generic-list .workspace-list-item.folders .packages-statuses .packages-status.total {
  padding-right: 10px;
}
.generic-list .workspace-list-item.folders:hover .workspace-name .workspace-title {
  text-decoration: underline;
}
.generic-list .workspace-list-item.folders .workspace-name {
  flex: inherit;
  z-index: 1;
}
.generic-list .workspace-list-item.folders .workspace-date {
  display: none;
}
.generic-list .workspace-list-item.folders .workspace-owner {
  display: none;
}
.generic-list .workspace-list-item.folders .workspace-description {
  display: block;
  z-index: 1;
  font-size: 12px;
}
.generic-list .workspace-list-item.folders .workspace-description .workspace-owner-description {
  color: #000000;
}
.generic-list.connection {
  padding-bottom: 140px;
}
.generic-list .connection-list-item {
  height: 120px;
  padding-left: 40px;
}
.generic-list .connection-list-item .dropdown.xp-dropdown {
  cursor: pointer;
  height: 100%;
  width: 18px;
  background: #cccccc;
  opacity: 0.4;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}
.generic-list .connection-list-item .connection-name {
  flex: 2;
  padding-top: 30px;
  line-height: 23px;
  display: flex;
  flex-direction: row;
}
.generic-list .connection-list-item .connection-name .icon {
  width: 23px;
  height: 23px;
  min-width: 23px;
  margin-bottom: 40px;
  margin-right: 15px;
  color: #999;
  flex: 0 auto;
}
.generic-list .connection-list-item .connection-name .icon.icon-workflow {
  height: 60px;
}
.generic-list .connection-list-item .connection-name div {
  padding-right: 50px;
  word-break: break-all;
  word-wrap: break-word;
  flex: 1 auto;
}
.generic-list .connection-list-item .connection-name div strong {
  padding-bottom: 4px;
  display: block;
}
.generic-list .connection-list-item .connection-name div strong a {
  color: #3F3F3F;
  font-size: 16px;
  font-weight: 600;
}
.generic-list .connection-list-item .connection-name div strong a:hover {
  text-decoration: underline;
}
.generic-list .connection-list-item .connection-name div strong .inactive {
  color: #808080;
  font-weight: 300;
  font-size: 12px;
  line-height: 20px;
  margin-left: 3px;
}
.generic-list .connection-list-item .connection-name div .connection-key {
  color: #808080;
  font-weight: 300;
  font-size: 13px;
  cursor: pointer;
}
.generic-list .connection-list-item .connection-name div .connection-key i {
  display: none;
  margin-left: 5px;
}
.generic-list .connection-list-item .connection-name div .connection-key:hover {
  text-decoration: underline;
}
.generic-list .connection-list-item .connection-type {
  padding-top: 30px;
  flex: 1;
}
.generic-list .connection-list-item .connection-owner {
  padding-top: 30px;
  padding-right: 20px;
  flex: 1;
}
.generic-list .connection-list-item .connection-owner span {
  display: block;
  color: #808080;
  font-weight: 300;
  font-size: 14px;
  padding-bottom: 3px;
}
.generic-list .connection-list-item .connection-owner a {
  color: #3F3F3F;
}
.generic-list .connection-list-item .connection-owner a:hover {
  text-decoration: underline;
}
.generic-list .connection-list-item .connection-date {
  padding-top: 30px;
  flex: 1;
  color: #808080;
  font-weight: 300;
  font-size: 13px;
}
.generic-list.clusters {
  margin: 0 0 80px 20px;
  width: 245px;
  height: 212px;
  float: left;
}
.generic-list.clusters:first-child {
  border-top: 0;
}
.generic-list .cluster-list-square {
  width: 240px;
  float: left;
  margin-left: 41px;
  margin-bottom: 85px;
  position: relative;
  border-radius: 5px;
  border: 1px solid #CCCCCC;
  background-color: #fff;
}
.generic-list .cluster-list-square.selected {
  border: 1px solid #0AB3E5;
}
.generic-list .cluster-list-square.selected .cluster-list-item-header {
  border-bottom: 1px solid #0AB3E5;
}
.generic-list .cluster-list-square.selected .cluster-list-item-body {
  background-color: #0AB3E5;
}
.generic-list .cluster-list-square.selected .cluster-list-item-body strong,
.generic-list .cluster-list-square.selected .cluster-list-item-body small {
  color: #fff !important;
}
.generic-list .cluster-list-square .cluster-list-item-header {
  position: relative;
  padding: 8px 14px;
  height: 70px;
  width: 100%;
  flex-direction: column;
  border-bottom: 1px solid #CCCCCC;
  border-radius: 5px 5px 0 0;
}
.generic-list .cluster-list-square .cluster-list-item-header strong {
  display: block;
  width: 90%;
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.generic-list .cluster-list-square .cluster-list-item-header small {
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 300;
  color: #808080;
}
.generic-list .cluster-list-square .cluster-list-item-header i {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 14px;
  height: 14px;
  display: block;
  border: 2px solid #3F3F3F;
  border-radius: 50%;
}
.generic-list .cluster-list-square .cluster-list-item-header i.pending_terminate,
.generic-list .cluster-list-square .cluster-list-item-header i.terminating,
.generic-list .cluster-list-square .cluster-list-item-header i.terminated {
  background-color: #FFA654;
}
.generic-list .cluster-list-square .cluster-list-item-header i.creating,
.generic-list .cluster-list-square .cluster-list-item-header i.pending {
  -webkit-animation: cluster-creation-animation 700ms infinite;
  -o-animation: cluster-creation-animation 700ms infinite;
  animation: cluster-creation-animation 700ms infinite;
}
.generic-list .cluster-list-square .cluster-list-item-header i.available {
  background-color: #39E98D;
}
.generic-list .cluster-list-square .cluster-list-item-header i.idle {
  background-color: #0AB3E5;
}
.generic-list .cluster-list-square .cluster-list-item-header i.error {
  background-color: #E54C40;
}
.generic-list .cluster-list-square .cluster-list-item-body {
  min-height: 100px;
  position: relative;
}
.generic-list .cluster-list-square .cluster-list-item-body button {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 3px;
  font-size: 14px;
  background-color: transparent;
  border: 0 none;
  font-weight: 600;
  color: #999999;
  z-index: 3;
}
.generic-list .cluster-list-square .cluster-list-item-body strong {
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  right: 14px;
  width: 100%;
  font-size: 60px;
  line-height: 100%;
  font-weight: 300;
  text-align: center;
  z-index: 2;
}
.generic-list .cluster-list-square .cluster-list-item-body strong:not(.production) {
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  font-size: 20px;
  font-weight: 600;
}
.generic-list .cluster-list-square .cluster-list-item-body small {
  display: block;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  color: #0AB3E5;
  text-align: center;
  z-index: 1;
}
.generic-list .cluster-list-square .cluster-list-item-body small:not(.production) {
  color: #ffc42d;
}
.generic-list .cluster-list-square .cluster-list-item-footer {
  display: flex;
  flex-direction: row;
  border-radius: 0 0 5px 5px;
}
.generic-list .cluster-list-square .cluster-list-item-footer button {
  width: 100%;
  border: 0 none;
  height: 42px;
  padding: 10px 0;
  background-color: #fff;
  border-top: 1px solid #CCCCCC;
}
.generic-list .cluster-list-square .cluster-list-item-footer button svg {
  margin: 0 auto;
}
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-terminate {
  border-bottom-left-radius: 5px;
}
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-terminate.creating,
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-terminate.pending,
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-terminate.pending_terminate,
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-terminate.terminating,
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-terminate.terminated {
  cursor: default;
}
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-terminate.creating path,
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-terminate.pending path,
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-terminate.pending_terminate path,
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-terminate.terminating path,
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-terminate.terminated path {
  stroke: #CCCCCC !important;
}
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-terminate.creating path.toggle,
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-terminate.pending path.toggle,
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-terminate.pending_terminate path.toggle,
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-terminate.terminating path.toggle,
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-terminate.terminated path.toggle {
  stroke: none !important;
  fill: #CCCCCC !important;
}
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-terminate:hover:not(.creating):not(.pending):not(.pending_terminate):not(.terminated):not(.error):not(.terminating) {
  background-color: #fceceb;
}
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-run {
  border-left: 1px solid #CCCCCC;
  border-bottom-right-radius: 5px;
}
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-run.error,
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-run.pending_terminate,
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-run.terminating,
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-run.terminated {
  pointer-events: none;
  cursor: default;
}
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-run.error path,
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-run.pending_terminate path,
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-run.terminating path,
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-run.terminated path {
  fill: #CCCCCC !important;
}
.generic-list .cluster-list-square .cluster-list-item-footer button.cluster-list-item-run:hover:not(.terminated):not(.error):not(.pending_terminate):not(.terminating) {
  background-color: #e7fcf1;
}
.generic-list .cluster-list-square .cluster-list-item-info {
  position: absolute;
  margin-top: 12px;
  left: 5px;
  right: 5px;
}
.generic-list .cluster-list-square .cluster-list-item-info small {
  color: #808080;
  font-size: 13px;
  font-weight: 300;
}
.generic-list .cluster-list-square .cluster-list-item-info a {
  color: #808080;
}
.generic-list .cluster-list-square .cluster-list-item-info a:hover {
  text-decoration: underline;
}
.generic-list .job-list {
  padding-left: 40px;
  display: flex;
  width: 100%;
}
.generic-list .job-list.item .job,
.generic-list .job-list.item .package,
.generic-list .job-list.item .cluster,
.generic-list .job-list.item .runtime,
.generic-list .job-list.item .status {
  flex: 1;
  border: none;
}
.generic-list .job-list.item .job .clickable,
.generic-list .job-list.item .package .clickable,
.generic-list .job-list.item .cluster .clickable,
.generic-list .job-list.item .runtime .clickable,
.generic-list .job-list.item .status .clickable {
  display: inline-block;
}
.generic-list .job-list.header {
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 10px;
  text-transform: uppercase;
  font-size: 12px;
}
.generic-list .job-list.item {
  border-bottom: 2px solid #ddd;
  height: 127px;
  position: relative;
}
.generic-list .job-list.item div.job {
  padding-top: 30px;
}
.generic-list .job-list.item div.job svg {
  fill: #808080;
  float: left;
  margin: 0 15px 50px 0;
  width: 23px;
  height: 23px;
}
.generic-list .job-list.item div.job span {
  color: #808080;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
}
.generic-list .job-list.item div.job span.job-date {
  font-size: 13px;
}
.generic-list .job-list.item div.job span.job-date a {
  color: #808080;
}
.generic-list .job-list.item div.job span.job-date a:hover {
  text-decoration: underline;
}
.generic-list .job-list.item div.job span.job-date span {
  font-size: 12px;
}
.generic-list .job-list.item div.job span.job-item {
  display: block;
}
.generic-list .job-list.item div.job span.job-item a {
  color: #3F3F3F;
  font-size: 16px;
  font-weight: 600;
}
.generic-list .job-list.item div.job span.job-item a:hover {
  text-decoration: underline;
}
.generic-list .job-list.item div.package {
  padding-top: 30px;
  max-width: 235px;
  max-height: 120px;
  overflow: hidden;
  display: flex;
}
.generic-list .job-list.item div.package .package-icon {
  width: 30px;
  min-width: 30px;
  flex: 0 auto;
}
.generic-list .job-list.item div.package .package-icon svg {
  fill: #808080;
  float: left;
  margin: 0 15px 50px 0;
  width: 23px;
  height: 23px;
}
.generic-list .job-list.item div.package .package-name {
  flex: 1 auto;
  width: 165px;
  max-width: 165px;
}
.generic-list .job-list.item div.package .package-name a {
  color: #3F3F3F;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 5px;
  padding-right: 15px;
  word-wrap: break-word;
}
.generic-list .job-list.item div.package .package-name a:hover {
  text-decoration: underline;
}
.generic-list .job-list.item div.cluster {
  padding-top: 30px;
}
.generic-list .job-list.item div.cluster strong {
  display: block;
  padding-right: 15px;
  color: #3F3F3F;
  font-size: 16px;
  font-weight: 600;
  word-break: break-all;
  word-wrap: break-word;
}
.generic-list .job-list.item div.cluster strong a {
  color: #3F3F3F;
}
.generic-list .job-list.item div.cluster strong a:hover {
  text-decoration: underline;
}
.generic-list .job-list.item div.cluster p {
  color: #808080;
  font-weight: 300;
  font-size: 12px;
  line-height: 20px;
}
.generic-list .job-list.item div.runtime {
  padding-top: 30px;
}
.generic-list .job-list.item div.runtime p {
  font-size: 16px;
  margin-bottom: 0;
  word-break: break-all;
  word-wrap: break-word;
}
.generic-list .job-list.item div.runtime p.small {
  color: #808080;
  font-weight: 300;
  font-size: 12px;
  line-height: 20px;
}
.generic-list .job-list.item div.status {
  position: relative;
  padding-top: 30px;
}
.generic-list .job-list.item div.status .status-box,
.generic-list .job-list.item div.status .status-label {
  margin-left: 30px;
}
.generic-list .job-list.item div.status .status-box .job-status-percent,
.generic-list .job-list.item div.status .status-box .job-status-name {
  display: block;
  text-align: left;
  color: #808080;
}
.generic-list .job-list.item div.status .status-box .job-status-percent {
  font-size: 22px;
  font-weight: 400;
  line-height: 40px;
  text-align: left;
  border: 1px solid #808080;
  width: 75px;
  text-align: center;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  border-bottom: 0 none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
.generic-list .job-list.item div.status .status-box .job-status-name {
  width: 75px;
  font-size: 10px;
  text-align: center;
  line-height: 20px;
  font-weight: 300;
  text-transform: uppercase;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  background-color: #808080;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
.generic-list .job-list.item div.status .status-box.clickable {
  font-weight: 600;
  cursor: pointer;
}
.generic-list .job-list.item div.status .status-box.clickable:hover {
  text-decoration: underline;
}
.generic-list .job-list.item div.status .status-box.failed .job-status-percent,
.generic-list .job-list.item div.status .status-box.failed .job-status-name {
  color: #E54C40;
}
.generic-list .job-list.item div.status .status-box.failed .job-status-name {
  color: #fff;
  background-color: #E54C40;
}
.generic-list .job-list.item div.status .status-box.failed .job-status-percent {
  border-color: #E54C40;
}
.generic-list .job-list.item div.status .status-box.completed .job-status-percent,
.generic-list .job-list.item div.status .status-box.completed .job-status-name {
  color: #13a95b;
}
.generic-list .job-list.item div.status .status-box.completed .job-status-name {
  color: #fff;
  background-color: #13a95b;
}
.generic-list .job-list.item div.status .status-box.completed .job-status-percent {
  border-color: #13a95b;
}
.generic-list .job-list.item div.status .status-box.stopping .job-status-percent,
.generic-list .job-list.item div.status .status-box.pending_stoppage .job-status-percent,
.generic-list .job-list.item div.status .status-box.stopped .job-status-percent,
.generic-list .job-list.item div.status .status-box.stopping .job-status-name,
.generic-list .job-list.item div.status .status-box.pending_stoppage .job-status-name,
.generic-list .job-list.item div.status .status-box.stopped .job-status-name {
  color: #ed7200;
}
.generic-list .job-list.item div.status .status-box.stopping .job-status-name,
.generic-list .job-list.item div.status .status-box.pending_stoppage .job-status-name,
.generic-list .job-list.item div.status .status-box.stopped .job-status-name {
  color: #fff;
  background-color: #ed7200;
}
.generic-list .job-list.item div.status .status-box.stopping .job-status-percent,
.generic-list .job-list.item div.status .status-box.pending_stoppage .job-status-percent,
.generic-list .job-list.item div.status .status-box.stopped .job-status-percent {
  border-color: #ed7200;
}
.generic-list .job-list.item div.status .status-box.running .job-status-percent,
.generic-list .job-list.item div.status .status-box.running .job-status-name {
  color: #0AB3E5;
}
.generic-list .job-list.item div.status .status-box.running .job-status-name {
  color: #fff;
  background-color: #0AB3E5;
}
.generic-list .job-list.item div.status .status-box.running .job-status-percent {
  border-color: #0AB3E5;
}
.generic-list .job-list.item div.status .status-button {
  position: absolute;
  bottom: 0;
  left: 100%;
  background-color: transparent;
  border: 0 none;
  font-size: 13px;
  color: #808080;
  width: 125px;
  line-height: 22px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
  transform-origin: left bottom;
  border-bottom: 1px solid transparent;
  border-top: 1px solid #E6E6E6;
}
.generic-list .job-list.item div.status .status-button:hover {
  border-bottom: 1px solid #E6E6E6;
  background-color: #eee;
}
.generic-list .job-list.item div.status .status-button.failed {
  color: #E54C40;
}
.generic-list .job-list.item div.status .status-button.completed {
  color: #13a95b;
}
.generic-list .job-list.item div.status .status-button.stopping,
.generic-list .job-list.item div.status .status-button.pending_stoppage,
.generic-list .job-list.item div.status .status-button.stopped {
  color: #ed7200;
}
.generic-list .job-list.item div.status .status-button.running {
  color: #0AB3E5;
}
.generic-list .job-list.item div.status .status-label {
  margin-top: 15px;
  width: 78px;
  font-size: 11px;
  font-weight: 300;
  background-color: #808080;
  color: #fff;
  border-radius: 4px;
  line-height: 31px;
  text-align: center;
  text-transform: uppercase;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.generic-list .job-list.item div.status .status-label.failed {
  background-color: #E54C40;
}
.generic-list .job-list.item div.status .status-label.completed {
  background-color: #13a95b;
}
.generic-list .job-list.item div.status .status-label.stopping,
.generic-list .job-list.item div.status .status-label.pending_stoppage,
.generic-list .job-list.item div.status .status-label.stopped {
  background-color: #ed7200;
}
.generic-list .job-list.item div.status .status-label.running {
  background-color: #0AB3E5;
}
.generic-list .job-list.item div.status.workflow-status strong {
  display: block;
  padding-top: 22px;
  color: #808080;
}
.generic-list .job-list.item div.status.workflow-status.failed strong {
  color: #E54C40;
}
.generic-list .job-list.item div.status.workflow-status.completed strong {
  color: #13a95b;
}
.generic-list .job-list.item div.status.workflow-status.stopping strong,
.generic-list .job-list.item div.status.workflow-status.pending_stoppage strong,
.generic-list .job-list.item div.status.workflow-status.stopped strong {
  color: #ed7200;
}
.generic-list .job-list.item div.status.workflow-status.running strong {
  color: #0AB3E5;
}
.generic-list .job-list.item div.bar {
  position: absolute;
  right: 0;
  cursor: pointer;
}
.generic-list .job-list.item div.bar .dropdown-menu {
  -webkit-transform: translate(-130px, -40px);
  -ms-transform: translate(-130px, -40px);
  -o-transform: translate(-130px, -40px);
  transform: translate(-130px, -40px);
}
.generic-list .job-list.item div.bar .dropdown-menu li {
  width: 100% !important;
}
.generic-list .job-list.item div.bar .dropdown-menu li a {
  line-height: 25px;
  padding: 10px 15px;
}
.generic-list .job-list.item div.bar .dropdown-menu li a svg {
  display: block;
  margin-right: 5px;
  float: left;
}
.generic-list .job-list.item div.bar .dropdown-menu li a svg rect,
.generic-list .job-list.item div.bar .dropdown-menu li a svg circle,
.generic-list .job-list.item div.bar .dropdown-menu li a svg polygon,
.generic-list .job-list.item div.bar .dropdown-menu li a svg path {
  fill: #808080;
}
.generic-list .job-list.item div.bar .dropdown-menu li a span {
  display: inline-block;
  color: #c1c1c1;
  font-size: 16px;
}
.generic-list .job-list .status-progress-bar {
  position: absolute;
  bottom: -2px;
  width: 0%;
  left: 0;
  height: 2px;
  -webkit-transition: width 750ms;
  -o-transition: width 750ms;
  transition: width 750ms;
}
.generic-list .job-list .status-progress-bar.progress-bar-primary {
  background-color: #0AB3E5;
}
.generic-list .job-list .status-progress-bar.progress-bar-success {
  background-color: #13a95b;
}
.generic-list .job-list .status-progress-bar.progress-bar-info {
  background-color: #FFD260;
}
.generic-list .job-list .status-progress-bar.progress-bar-warning {
  background-color: #ed7200;
}
.generic-list .job-list.failed:before,
.generic-list .job-list.completed:before,
.generic-list .job-list.running:before,
.generic-list .job-list.stopping:before,
.generic-list .job-list.pending_stoppage:before,
.generic-list .job-list.stopped:before {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  border-right: 10px solid transparent;
}
.generic-list .job-list.failed:before {
  border-bottom: 10px solid #E54C40;
}
.generic-list .job-list.completed:before {
  border-bottom: 10px solid #13a95b;
}
.generic-list .job-list.stopping:before,
.generic-list .job-list.pending_stoppage:before,
.generic-list .job-list.stopped:before {
  border-bottom: 10px solid #ed7200;
}
.generic-list .job-list.running:before {
  border-bottom: 10px solid #0AB3E5;
}
.generic-list .schedule-list-item {
  height: 126px;
  display: flex;
  position: relative;
  padding-left: 40px;
}
.generic-list .schedule-list-item .schedule-name {
  flex: 2;
  padding-top: 30px;
}
.generic-list .schedule-list-item .schedule-name .icon {
  width: 23px;
  height: 23px;
  margin-right: 15px;
  float: left;
}
.generic-list .schedule-list-item .schedule-name div {
  display: flex;
  flex-direction: column;
}
.generic-list .schedule-list-item .schedule-name .schedule-description {
  padding-right: 30px;
  max-height: 55px;
  overflow: hidden;
  display: block;
  position: relative;
  word-break: break-all;
  word-wrap: break-word;
}
.generic-list .schedule-list-item .schedule-name strong {
  padding-bottom: 3px;
  padding-right: 15px;
}
.generic-list .schedule-list-item .schedule-name strong a {
  color: #3F3F3F;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 3px;
  word-break: break-all;
  word-wrap: break-word;
  display: inline-block;
}
.generic-list .schedule-list-item .schedule-name strong a:hover {
  text-decoration: underline;
}
.generic-list .schedule-list-item .schedule-name p {
  display: block;
  color: #808080;
  font-weight: 300;
  font-size: 13px;
}
.generic-list .schedule-list-item .schedule-name .inactive {
  color: #808080;
  font-weight: 300;
  font-size: 12px;
  line-height: 20px;
  margin-left: 3px;
}
.generic-list .schedule-list-item .schedule-owner {
  flex: 1;
  padding-top: 30px;
}
.generic-list .schedule-list-item .schedule-owner a {
  color: #3F3F3F;
}
.generic-list .schedule-list-item .schedule-owner a:hover {
  text-decoration: underline;
}
.generic-list .schedule-list-item .schedule-repeat {
  flex: 1;
  padding-top: 30px;
  color: #808080;
  font-weight: 300;
  font-size: 13px;
  position: relative;
  padding-right: 10px;
}
.generic-list .schedule-list-item .schedule-repeat strong {
  font-size: 13px;
  font-weight: 600;
}
.generic-list .schedule-list-item .schedule-repeat span {
  display: block;
  color: #808080;
  font-weight: 300;
  font-size: 13px;
}
.generic-list .schedule-list-item .schedule-last-run,
.generic-list .schedule-list-item .schedule-next-run {
  flex: 1;
  padding-top: 30px;
  color: #808080;
  font-weight: 300;
  font-size: 13px;
}
.generic-list .schedule-list-item .schedule-last-run strong,
.generic-list .schedule-list-item .schedule-next-run strong {
  font-size: 13px;
  font-weight: 600;
}
.generic-list .schedule-list-item .schedule-menu {
  flex: 1;
  cursor: pointer;
  position: absolute;
  right: 0;
}
.generic-list .schedule-list-item .schedule-menu svg .bg {
  fill: #e6e6e6;
}
.generic-list .schedule-list-item .schedule-menu svg circle {
  fill: #808080;
}
.generic-list .schedule-list-item .schedule-menu:hover svg .bg {
  fill: #d9d9d9;
}
.generic-list .schedule-list-item .schedule-menu:hover circle {
  fill: #3F3F3F;
}
.generic-list .member-list-item {
  display: flex;
  height: 120px;
  position: relative;
}
.generic-list .member-list-item a {
  color: #3F3F3F;
  font-size: 16px;
  font-weight: 600;
}
.generic-list .member-list-item a:hover {
  text-decoration: underline;
}
.generic-list .member-list-item .icons-master-expanded_icon-list-delete {
  width: 16px;
  height: 16px;
  cursor: pointer;
  color: #CCCCCC;
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
  right: 20px;
}
.generic-list .member-list-item .icons-master-expanded_icon-list-delete:hover {
  color: #E54C40;
}
.generic-list .member-list-item .member-img {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}
.generic-list .member-list-item .member-img img {
  width: 50px;
}
.generic-list .member-list-item .member-body {
  display: flex;
  height: 100%;
  left: 100px;
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
}
.generic-list .member-list-item .list-member-email {
  color: #999999;
  line-height: 1;
  margin: 0;
  font-weight: 300;
}
.generic-list .member-list-item .list-member-name {
  line-height: 1;
}
.generic-list .member-list-item .list-member-name {
  margin-bottom: 8px;
  font-size: 16px;
}
.generic-list .member-list-item .member-list-details-container {
  float: left;
  margin: auto;
}
.generic-list .member-list-item .role-picker {
  margin: auto;
  float: left;
  margin-left: 20px;
}
.generic-list .member-list-item .role-picker .xp-select {
  width: 120px;
}
.generic-list .account-list-item {
  position: relative;
  padding: 35px;
}
.generic-list .account-list-item .account-body {
  margin: auto;
}
.generic-list .account-list-item .account-item-name {
  margin-bottom: 5px;
}
.generic-list .account-list-item .account-item-name a {
  color: #3F3F3F;
  font-size: 16px;
  font-weight: 600;
  word-wrap: break-word;
  word-break: break-all;
}
.generic-list .account-list-item .account-item-name a:hover {
  text-decoration: underline;
}
.generic-list .account-list-item .account-item-info {
  color: #999999;
  line-height: 1;
  margin: 0;
  font-weight: 300;
}
.generic-list .hook-list-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 35px;
  justify-content: space-between;
}
.generic-list .hook-list-item .hook-container {
  display: flex;
  flex-flow: row;
}
.generic-list .hook-list-item .hook-body .hook-body-container {
  margin-bottom: 5px;
  word-break: break-all;
  word-wrap: break-word;
}
.generic-list .hook-list-item .hook-body .hook-name {
  cursor: pointer;
}
.generic-list .hook-list-item .hook-body .hook-name:hover {
  text-decoration: underline;
}
.generic-list .hook-list-item .hook-body .inactive {
  color: #808080;
  font-weight: 300;
  font-size: 12px;
  line-height: 20px;
  margin-left: 3px;
}
.generic-list .hook-list-item .hook-body .hook-type {
  color: #999999;
  line-height: 1;
  margin: 0;
  font-weight: 300;
}
.generic-list .hook-list-item .hook-img img {
  width: 50px;
  margin-right: 20px;
}
.generic-list .hook-list-item .loader {
  margin-right: 20px;
  margin-top: 5px;
}
.generic-list .hook-list-item .alert {
  margin: 0 15px;
}
.generic-list .generic-list-loader {
  width: 100%;
  text-align: center;
  padding: 30px 0;
}
.generic-list .col-sm-6,
.generic-list .col-sm-4,
.generic-list .col-sm-2 {
  padding: 0;
}
.workspaces-header {
  display: flex;
  flex-flow: row;
  width: max-content;
  background-color: #f6f6f6;
  border-radius: 10px;
  color: #808080;
  margin-left: 25px;
  margin-top: 20px;
  align-items: center;
  position: relative;
  padding-left: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.workspaces-header .workspaces-back {
  margin-left: 10px;
  cursor: pointer;
  color: #808080;
}
.workspaces-header .workspace-name {
  margin-left: 20px;
  font-size: 16px;
  color: #3f3f3f;
  background-color: white;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 10px;
  font-weight: 600;
}
.generic-list-error {
  padding: 50px;
  display: flex;
  justify-content: center;
  font-size: 22px;
  text-align: center;
}
.generic-list-item-menu.bar {
  cursor: pointer;
  height: 100%;
}
.generic-list-item-menu svg .bg {
  fill: #CCCCCC;
  opacity: 0.6;
}
.generic-list-item-menu svg circle {
  fill: #808080;
}
.generic-list-item-menu:hover svg .bg {
  fill: #d9d9d9;
}
.generic-list-item-menu:hover circle {
  fill: #3F3F3F;
}
.generic-list-modal {
  overflow: auto;
  padding-right: 50px !important;
  padding: 10px 50px;
}
.generic-list-modal .generic-list-search {
  margin: 0px !important;
}
.generic-list-modal .package-list-item {
  height: 110px;
}
.generic-list-modal.package .generic-list-headers {
  display: none !important;
}
.generic-list-modal.package .generic-list-item.packages {
  flex: 1;
  margin: 0px 30px;
  margin: 0 auto;
  transform: scale(1);
  cursor: pointer;
  margin: 8px auto 25px auto;
  transition: all 0.2s ease;
}
.generic-list-modal.package .generic-list-item.packages:first-child {
  border-top: 0;
}
.generic-list-modal.package .generic-list-item.packages:hover {
  background: #fff !important;
}
.generic-list-modal.package .generic-list-item.packages .dropdown {
  display: none;
}
.generic-list-modal.package .generic-list-item.packages .package-list-item {
  border-bottom: 0;
}
.generic-list-modal.package .generic-list-item.packages .package-list-item .package-name strong:hover {
  text-decoration: none;
}
.generic-list-modal.package .generic-list-item.packages .package-list-item .package-name strong a {
  pointer-events: none;
}
.generic-list-modal.package .generic-list-item.packages .package-list-item:not(.selected),
.generic-list-modal.package .generic-list-item.packages .package-list-item.selected {
  transition: all 0.2s ease;
  border: 1px solid #CCCCCC;
  border-radius: 15px;
  overflow: hidden;
}
.generic-list-modal.package .generic-list-item.packages .package-list-item:not(.selected):hover,
.generic-list-modal.package .generic-list-item.packages .package-list-item.selected:hover {
  transform: scale(1.02);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.generic-list-modal.package .generic-list-item.packages .package-list-item:not(.selected) svg,
.generic-list-modal.package .generic-list-item.packages .package-list-item.selected svg {
  color: #999;
}
.generic-list-modal.package .generic-list-item.packages .package-list-item.selected {
  border: 1px solid #0AB3E5;
}
.generic-list-modal.package .generic-list-item.packages .package-list-item.selected svg {
  color: #0AB3E5;
}
.generic-list-modal.generic-list-connections {
  padding-right: 10px !important;
  padding: 0 30px;
}
.generic-list-modal.generic-list-connections .generic-list-body {
  padding: 20px 0 !important;
}
.generic-list-modal.generic-list-connections .generic-list-search {
  margin-right: 30px !important;
}
.generic-list-item-snippet {
  display: flex;
  align-items: center;
  text-align: left;
  justify-content: space-between;
  color: #3F3F3F;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  margin-bottom: 40px;
}
.generic-list-item-snippet .item-snippet-wrapper {
  min-width: 0;
  display: flex;
  flex: 3;
}
.generic-list-item-snippet .item-snippet-wrapper.inactive {
  background-color: #ffffff;
  background-image: -webkit-linear-gradient(-45deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.02) 50%, rgba(0, 0, 0, 0.02) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(-45deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.02) 50%, rgba(0, 0, 0, 0.02) 75%, transparent 75%, transparent);
  background-image: linear-gradient(-45deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.02) 50%, rgba(0, 0, 0, 0.02) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
  background-size: 40px 40px;
}
.generic-list-item-snippet .item-snippet-container {
  display: flex;
  align-items: center;
  width: 100%;
}
.generic-list-item-snippet .item-snippet-icon {
  max-width: 70px;
  padding: 15px 0px 15px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.generic-list-item-snippet .item-snippet-icon img {
  max-width: 32px;
}
.generic-list-item-snippet.package-snippet .item-snippet-icon svg.icon {
  color: #999;
}
.generic-list-item-snippet.member-snippet .item-snippet-icon img {
  max-width: 48px;
}
.generic-list-item-snippet.account-snippet .item-snippet-icon img {
  max-width: 48px;
}
.generic-list-item-snippet.hook-snippet .item-snippet-icon img {
  max-width: 48px;
}
.generic-list-item-snippet.connection-snippet .item-snippet-icon img {
  max-width: 48px;
}
.generic-list-item-snippet .item-snippet-name {
  font-weight: 600;
  padding: 15px;
  flex: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.generic-list-item-snippet .item-snippet-name .item-snippet-description {
  margin: 0;
  color: #808080;
  font-weight: 300;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.generic-list-item-snippet .item-snippet-name .inactive {
  color: #808080;
  font-weight: 300;
  font-size: 12px;
  line-height: 20px;
  margin-left: 3px;
}
.generic-list-item-snippet .item-snippet-name code {
  padding: 0;
  background-color: transparent;
}
.generic-list-item-snippet .item-snippet-owner {
  padding: 15px;
}
.generic-list-body.workspaces.folders {
  display: flex;
  max-width: 100%;
  flex-wrap: wrap;
  margin-left: 20px;
  justify-content: flex-start;
}
.generic-list-body.workspaces.folders workspace-list-item .generic-list-item {
  border-top: none;
}
.clusters:first-child {
  border-top: 0 !important;
}
@-webkit-keyframes cluster-creation-animation {
  0% {
    background-color: #0AB3E5;
    border-color: #3F3F3F;
  }
  50% {
    background-color: #fff;
    border-color: #000;
  }
  100% {
    background-color: #0AB3E5;
    border-color: #3F3F3F;
  }
}
@-moz-keyframes cluster-creation-animation {
  0% {
    background-color: #0AB3E5;
    border-color: #3F3F3F;
  }
  50% {
    background-color: #fff;
    border-color: #000;
  }
  100% {
    background-color: #0AB3E5;
    border-color: #3F3F3F;
  }
}
@-o-keyframes cluster-creation-animation {
  0% {
    background-color: #0AB3E5;
    border-color: #3F3F3F;
  }
  50% {
    background-color: #fff;
    border-color: #000;
  }
  100% {
    background-color: #0AB3E5;
    border-color: #3F3F3F;
  }
}
@keyframes cluster-creation-animation {
  0% {
    background-color: #0AB3E5;
    border-color: #3F3F3F;
  }
  50% {
    background-color: #fff;
    border-color: #000;
  }
  100% {
    background-color: #0AB3E5;
    border-color: #3F3F3F;
  }
}
.dropdown-menu.open {
  z-index: 9999 !important;
}
.key-list-item {
  border-bottom: 1px solid #CCCCCC;
  padding: 30px;
}
.key-list-item .icons-master-expanded_icon-list-delete {
  width: 16px;
  height: 16px;
  cursor: pointer;
  color: #CCCCCC;
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
  right: 20px;
}
.key-list-item .icons-master-expanded_icon-list-delete:hover {
  color: #E54C40;
}
.base-input {
  width: 100%;
}
.placeholder {
  color: #CCCCCC;
}
.base-input-control {
  width: 100%;
  border: 0 none;
  font-size: 14px;
  line-height: 26px;
  background-color: transparent;
  padding: 3px 15px 3px 10px;
}
.base-input-control.editable {
  border-color: #CCCCCC !important;
  color: #3F3F3F !important;
}
.base-input-control.textview {
  border-color: #CCCCCC !important;
  color: #3F3F3F !important;
}
.base-input-control.button {
  border-color: #CCCCCC !important;
  color: #3F3F3F !important;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.base-input-control.readonly {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}
.base-input-control::-webkit-input-placeholder {
  font-weight: 300;
  font-size: 13px;
  color: #CCCCCC;
}
.base-input-control::-webkit-input-placeholder::-moz-placeholder {
  color: #CCCCCC;
  opacity: 1;
}
.base-input-control::-webkit-input-placeholder:-ms-input-placeholder {
  color: #CCCCCC;
}
.base-input-control::-webkit-input-placeholder::-webkit-input-placeholder {
  color: #CCCCCC;
}
.base-input-control:-moz-placeholder {
  font-weight: 300;
  font-size: 13px;
  color: #CCCCCC;
}
.base-input-control:-moz-placeholder::-moz-placeholder {
  color: #CCCCCC;
  opacity: 1;
}
.base-input-control:-moz-placeholder:-ms-input-placeholder {
  color: #CCCCCC;
}
.base-input-control:-moz-placeholder::-webkit-input-placeholder {
  color: #CCCCCC;
}
.base-input-control::-moz-placeholder {
  font-weight: 300;
  font-size: 13px;
  color: #CCCCCC;
}
.base-input-control::-moz-placeholder::-moz-placeholder {
  color: #CCCCCC;
  opacity: 1;
}
.base-input-control::-moz-placeholder:-ms-input-placeholder {
  color: #CCCCCC;
}
.base-input-control::-moz-placeholder::-webkit-input-placeholder {
  color: #CCCCCC;
}
.base-input-control:-ms-input-placeholder {
  font-weight: 300;
  font-size: 13px;
  color: #CCCCCC;
}
.base-input-control:-ms-input-placeholder::-moz-placeholder {
  color: #CCCCCC;
  opacity: 1;
}
.base-input-control:-ms-input-placeholder:-ms-input-placeholder {
  color: #CCCCCC;
}
.base-input-control:-ms-input-placeholder::-webkit-input-placeholder {
  color: #CCCCCC;
}
.base-input-control::-ms-input-placeholder {
  font-weight: 300;
  font-size: 13px;
  color: #CCCCCC;
}
.base-input-control::-ms-input-placeholder::-moz-placeholder {
  color: #CCCCCC;
  opacity: 1;
}
.base-input-control::-ms-input-placeholder:-ms-input-placeholder {
  color: #CCCCCC;
}
.base-input-control::-ms-input-placeholder::-webkit-input-placeholder {
  color: #CCCCCC;
}
.base-input-control::placeholder {
  font-weight: 300;
  font-size: 13px;
  color: #CCCCCC;
}
.base-input-control::placeholder::-moz-placeholder {
  color: #CCCCCC;
  opacity: 1;
}
.base-input-control::placeholder:-ms-input-placeholder {
  color: #CCCCCC;
}
.base-input-control::placeholder::-webkit-input-placeholder {
  color: #CCCCCC;
}
.editor-button {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  position: relative;
}
.editor-button.disabled {
  pointer-events: none;
  opacity: 0.3;
}
.editor-button .base-icon {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.03);
}
.editor-button i {
  color: #808080;
  font-size: 10px;
  width: 26px;
  height: 26px;
}
.editor-button:hover i {
  color: #3F3F3F;
}
.editor-button:hover .base-icon {
  background-color: rgba(0, 0, 0, 0.5);
}
.editor-button:hover .base-icon i {
  color: #fff;
}
.editor-button:active .base-icon {
  background-color: rgba(0, 0, 0, 0.7);
}
.checkbox-editor {
  padding: 0 10px;
  line-height: 32px;
  max-width: 32px;
  cursor: pointer;
  margin: 0 auto;
}
.alias-editor.error,
.rest-api-headers-key.error,
.rest-api-headers-value.error {
  background-color: #ffe8d4;
}
.alias-editor.error .tooltip-inner,
.rest-api-headers-key.error .tooltip-inner,
.rest-api-headers-value.error .tooltip-inner {
  background-color: #ffe8d4;
  border-color: #ffe8d4;
  color: #ff8b21;
  font-weight: 400;
  padding: 5px 10px;
}
.alias-editor.error .tooltip-arrow,
.rest-api-headers-key.error .tooltip-arrow,
.rest-api-headers-value.error .tooltip-arrow {
  border-bottom-color: #ffe8d4;
  border-top-color: #ffe8d4;
}
.alias-editor {
  width: 100%;
  display: flex;
}
.alias-editor .editor-button {
  flex: 0 auto;
  min-width: 32px;
  max-width: 32px;
}
.alias-editor base-input {
  flex: 1 auto;
}
.alias-editor .base-input-control {
  padding: 3px 10px 3px 0 !important;
}
xp-alias-editor-title {
  width: 100%;
  display: block;
}
xp-alias-editor-title .alias-editor-title {
  display: flex;
  flex-direction: row;
  width: 100%;
}
xp-alias-editor-title .alias-editor-title .editor-button {
  flex: 0 auto;
  display: block;
}
xp-alias-editor-title .alias-editor-title span {
  display: block;
  flex: 1 auto;
  line-height: 32px;
}
.field-picker {
  display: flex;
  z-index: 11111;
}
.field-picker .editor-button-open,
.field-picker .editor-button-close {
  flex: 0 auto;
  width: 32px;
  max-width: 32px;
  min-width: 32px;
}
.field-picker .editor-picker {
  flex: 1 auto;
  position: relative;
}
.field-picker .editor-picker .selectize-input.not-full:not(.disabled) input {
  min-width: 230px !important;
}
.field-picker .editor-picker .auto-complete-results {
  position: absolute;
  background-color: #fff;
  width: 100%;
}
.field-picker .editor-expression {
  flex: 1 auto;
  line-height: 31px;
  padding: 0 10px;
  font-family: monospace;
  font-size: 13px;
}
.field-picker .editor-picker-dropdown {
  z-index: 11111;
  transform: translateY(2px);
}
.field-picker .editor-picker-dropdown.open .auto-complete-results {
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  border-radius: 0 0 5px 5px;
}
.field-picker .editor-picker-dropdown.direction-up.open .auto-complete-results {
  -webkit-box-shadow: 0 -6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 -6px 12px rgba(0, 0, 0, 0.175);
  border-radius: 5px 5px 0 0;
}
.field-picker.error {
  background-color: #ffe8d4;
}
.field-picker.error .tooltip-inner {
  background-color: #ffe8d4;
  border-color: #ffe8d4;
  color: #ff8b21;
  font-weight: 400;
  padding: 5px 10px;
}
.field-picker.error .tooltip-arrow {
  border-bottom-color: #ffe8d4;
  border-top-color: #ffe8d4;
}
.field-picker.readonly {
  pointer-events: none;
}
.ordered-fields-picker {
  min-height: 32px;
}
.ordered-fields-picker .selectize-control {
  min-height: inherit !important;
  max-height: inherit !important;
}
.ordered-fields-picker .selectize-control .selectize-input {
  min-height: inherit !important;
  max-height: inherit !important;
  display: block !important;
}
.ordered-fields-picker .selectize-control .selectize-input .item {
  padding: 0 30px 0 10px !important;
  border-radius: 0 !important;
  border: 1px solid #E6E6E6 !important;
  min-height: 12px !important;
  margin: 0 1px 1px 0 !important;
  background-color: #fff !important;
  white-space: nowrap;
  line-height: 28px;
}
.ordered-fields-picker .selectize-control .selectize-input .item.active {
  border-color: #808080 !important;
  background-color: #808080 !important;
}
.ordered-fields-picker .selectize-control .selectize-input .item.active .remove {
  color: #fff !important;
}
.ordered-fields-picker .selectize-control .selectize-input .item .remove {
  width: 20px;
  max-width: 20px;
  color: #E6E6E6 !important;
  border-left: 1px solid #E6E6E6 !important;
}
.ordered-fields-picker .selectize-control .selectize-input .item .remove:hover {
  background-color: #fff !important;
  color: #808080 !important;
}
.ordered-fields-picker .selectize-control .selectize-input .item .remove:active {
  background-color: #808080 !important;
}
.ordered-fields-picker .selectize-control .selectize-input .item.not-exist {
  background-color: #ffb36e !important;
  border-color: #FFA654 !important;
  color: #fff !important;
}
.ordered-fields-picker .selectize-control .selectize-input .item.not-exist .remove {
  color: #fff !important;
}
.ordered-fields-picker .selectize-control .selectize-input .item.not-exist .remove:hover {
  background-color: #ffb36e !important;
}
.ordered-fields-picker .selectize-control .selectize-input input {
  height: 29px;
  max-width: inherit !important;
  min-height: 29px;
}
.ordered-fields-picker .selectize-control .selectize-input.not-full input {
  min-width: 160px !important;
}
.ordered-fields-picker .selectize-control .selectize-input.has-items {
  padding: 2px !important;
}
.ordered-fields-picker .selectize-control .selectize-input.has-items input {
  min-width: auto !important;
}
.ordered-fields-picker .selectize-control .selectize-input.input-active .item:not(.not-exist).active {
  border-color: #808080 !important;
  background-color: #808080 !important;
}
.ordered-fields-picker .selectize-control .selectize-input.input-active .item:not(.not-exist).active .remove {
  color: #fff !important;
}
.ordered-fields-picker .selectize-control .selectize-dropdown .option.not-exist {
  color: #CCCCCC;
  font-weight: 300;
  pointer-events: none;
}
.ordered-fields-picker .selectize-control.multi .item-multi {
  min-width: auto !important;
}
.ordered-fields-picker .selectize-control.multi .item-multi span {
  position: static !important;
  width: 100%;
  display: block;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ordered-fields-picker .selectize-control.multi .selectize-input input {
  width: 180px !important;
  top: 0px !important;
}
.ordered-fields-picker .selectize-control.multi .selectize-input.has-items input {
  width: 80px !important;
  top: -9px !important;
}
.ordered-fields-picker.error {
  background-color: #ffe8d4;
}
.ordered-fields-picker.error .tooltip-inner {
  background-color: #ffe8d4;
  border-color: #ffe8d4;
  color: #ff8b21;
  font-weight: 400;
  padding: 5px 10px;
}
.ordered-fields-picker.error .tooltip-arrow {
  border-bottom-color: #ffe8d4;
  border-top-color: #ffe8d4;
}
.fields-collection-row.error .multi .item {
  background-color: #fff6ed !important;
  border-color: #fff6ed !important;
  color: #3F3F3F !important;
}
.mat-cell.no-items-found-text {
  text-align: center;
  padding: 20px !important;
  margin: 10px;
  width: 100%;
}
.fields-collection-wrapper {
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  overflow-x: visible !important;
  margin-bottom: 20px;
}
.fields-collection-wrapper .fa-exclamation-circle {
  margin-left: 5px;
}
.fields-collection-wrapper .group_type-cell {
  width: 200px;
}
.fields-collection-wrapper .is_bson-cell {
  width: 70px;
}
.fields-collection-wrapper .function_name-cell,
.fields-collection-wrapper .field_name-cell,
.fields-collection-wrapper .column_name-cell {
  width: 150px;
}
.fields-collection-wrapper .is_merge_key-cell,
.fields-collection-wrapper .bson-cell {
  width: 32px;
}
group-by-collection .fields-collection-wrapper .field_name-cell {
  width: auto;
}
schema-mapping-database-collection .fields-collection-wrapper .field_name-cell,
schema-mapping-database-collection .fields-collection-wrapper .column_name-cell {
  width: auto;
}
.fields-collection-header {
  padding: 32px 32px 0 32px;
  display: flex;
}
.fields-collection-header .fields-collection-search {
  width: 50%;
  flex: 1 auto;
  position: relative;
  min-height: 40px;
}
.fields-collection-header .fields-collection-search .fields-collection-search-input {
  border: 1px solid #CCCCCC;
  padding-right: 24px;
}
.fields-collection-header .fields-collection-search .fields-collection-search-info {
  font-size: 12px;
  padding: 5px;
  text-align: right;
}
.fields-collection-header .fields-collection-search .fields-collection-search-info span {
  display: inline-block;
  padding-right: 10px;
}
.fields-collection-header .fields-collection-search .fields-collection-search-info .btn-link {
  padding: 4px 2px;
}
.fields-collection-header .fields-collection-search .fields-collection-search-info .btn-link i {
  color: #808080;
}
.fields-collection-header .fields-collection-search .fields-collection-search-info .btn-link i.fa-dot-circle-o {
  color: #0AB3E5;
}
.fields-collection-header .fields-collection-search .fields-collection-search-hint {
  position: absolute;
  top: 8px;
  right: -18px;
  color: #CCCCCC;
}
.fields-collection-header .fields-collection-search .fields-collection-search-clear {
  position: absolute;
  z-index: 1;
  top: 8px;
  right: 8px;
  color: #CCCCCC;
  cursor: pointer;
}
.fields-collection-header .fields-collection-autofill {
  width: 50%;
  flex: 1 auto;
}
.fields-collection-header .fields-collection-autofill .btn-group {
  float: right;
}
.fields-collection-header .tooltip .tooltip-inner {
  min-width: 280px;
  text-align: left;
}
.fields-collection-table {
  display: table;
  width: 100%;
}
.fields-collection-table-group {
  border-top: 1px solid #E6E6E6;
  display: table-row-group;
}
.fields-collection-table-group .ui-sortable-placeholder {
  width: 100%;
  height: 32px;
  background-color: black;
  background-color: #999 !important;
  visibility: visible !important;
}
.fields-collection-table-empty {
  text-align: center;
  display: table-cell;
  padding: 40px 0;
}
.fields-collection-table-header-group {
  display: table-header-group;
}
.fields-collection-table-header-group .resizeable-header {
  height: 32px;
  max-height: 32px;
  position: relative;
}
.fields-collection-table-header-group .resizeable-header span {
  line-height: 32px;
  max-height: 32px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}
.fields-collection-table-header-group .resizeable-header .alias-editor-title span {
  left: 32px;
}
.fields-collection-table-header-group div:not(.handle):not(.editor-button):not(.base-icon):not(.alias-editor-title) {
  display: table-cell;
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  padding: 7px 10px !important;
  margin: 0;
  position: relative;
  white-space: nowrap;
  height: 32px;
  max-height: 32px;
}
.fields-collection-table-header-group .handle {
  width: 5px;
  border-right: 1px solid #d9d9d9;
  position: absolute;
  bottom: 0;
  right: 0px;
  cursor: ew-resize !important;
  height: 27px;
  opacity: 0;
}
.fields-collection-table-header-group .handle::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 1px;
  background-color: #E6E6E6;
  width: 1px;
  height: 18px;
}
.fields-collection-table-header-group .handle::after {
  content: '';
  position: absolute;
  top: 2px;
  right: -4px;
  background-color: #E6E6E6;
  width: 1px;
  height: 18px;
}
.fields-collection-table-header-group .handle:hover {
  border-right: 1px solid #c0c0c0;
}
.fields-collection-table-header-group .handle:hover::before,
.fields-collection-table-header-group .handle:hover::after {
  background-color: #cdcdcd;
}
.fields-collection-table-header-group .handle.active {
  border-right: 1px solid #9a9a9a;
  opacity: 1;
}
.fields-collection-table-header-group .handle.active::before,
.fields-collection-table-header-group .handle.active::after {
  background-color: #b3b3b3;
}
.fields-collection-table-header-group .resizeable-header {
  height: 32px;
  min-height: 32px;
  max-height: 32px;
}
.fields-collection-table-header-group .resizeable-header.resize-disabled span {
  transform: translateX(-4px);
  width: 32px;
  overflow: auto;
  text-overflow: clip;
}
.fields-collection-table-header-group:hover .handle {
  opacity: 1;
}
.fields-collection-row .fields-collection-editor.active {
  background-color: #fff;
}
.fields-collection-row .fields-collection-editor.readonly {
  position: relative;
  pointer-events: none;
}
.fields-collection-row .fields-collection-editor.readonly .mat-select {
  opacity: 0.7;
  background-color: #E6E6E6;
}
.fields-collection-row .fields-collection-editor.readonly .mat-select::after {
  display: none;
}
.fields-collection-row .fields-collection-editor.readonly .mat-select-arrow-wrapper {
  display: none;
}
.fields-collection-row .fields-collection-editor .tooltip .tooltip-inner {
  max-width: 320px;
}
.fields-collection-row .fields-collection-row-index,
.fields-collection-row .fields-collection-row-sort,
.fields-collection-row .fields-collection-row-add,
.fields-collection-row .fields-collection-row-checkbox,
.fields-collection-row .fields-collection-row-remove {
  width: 32px;
  display: table-cell;
  border-top: 1px solid #E6E6E6;
  transition: background-color 0.5s ease;
}
.fields-collection-row .fields-collection-row-index {
  border-right: 1px solid #E6E6E6;
  border-top: 1px solid #E6E6E6;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.fields-collection-row .fields-collection-row-add,
.fields-collection-row .fields-collection-row-sort {
  border-right: 1px solid #E6E6E6;
}
.fields-collection-row .fields-collection-row-add,
.fields-collection-row .fields-collection-row-sort,
.fields-collection-row .fields-collection-row-remove {
  display: table-cell;
  height: 32px;
}
.fields-collection-row .fields-collection-row-sort {
  cursor: pointer;
  color: #CCCCCC;
  font-size: 12px;
}
.fields-collection-row .fields-collection-row-sort:hover {
  color: #808080;
}
.fields-collection-row .fields-collection-editors {
  flex: 1 auto;
  width: 100%;
}
.fields-collection-row .fields-collection-editors .fields-collection-editors-transclude {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.fields-collection-row .fields-collection-editors .fields-collection-editors-transclude alias-editor,
.fields-collection-row .fields-collection-editors .fields-collection-editors-transclude sort-direction-picker {
  flex: 1 auto;
}
.fields-collection-row.ui-sortable-helper {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.175);
}
.fields-collection-row.ui-sortable-helper .fields-collection-row-index,
.fields-collection-row.ui-sortable-helper .fields-collection-row-sort,
.fields-collection-row.ui-sortable-helper .fields-collection-row-add,
.fields-collection-row.ui-sortable-helper .fields-collection-row-remove,
.fields-collection-row.ui-sortable-helper .fields-collection-editor {
  border-bottom: 1px solid #E6E6E6;
}
.fields-collection-row.active {
  background-color: #f2f2f2;
  z-index: 1;
}
.fields-collection-row.active .fields-collection-row-index {
  background-color: #808080;
  color: #fff;
}
.fields-collection-row.error {
  background-color: #fff6ed !important;
}
.fields-collection-row.error .fields-collection-row-index {
  background-color: #FFA654;
  color: #fff;
}
.fields-collection-row:hover {
  background-color: #f2f2f2;
}
.fields-collection-row.search {
  background-color: #f0fbfe;
}
.fields-collection-row.search .fields-collection-row-index {
  background-color: #8ee1fa;
  color: #fff;
}
.fields-collection-row.search.active {
  background-color: #bfeefc !important;
}
.fields-collection-row.search.active .fields-collection-row-index {
  background-color: #5dd5f8 !important;
  color: #fff;
}
.fields-collection-footer {
  padding: 20px 0 0;
  display: flex;
}
.fields-collection-footer .fields-collection-pagination,
.fields-collection-footer .fields-collection-errors {
  flex: 1;
  width: 50%;
}
.fields-collection-footer .pagination {
  margin: 0 0;
}
.fields-collection-footer .pagination li a {
  font-size: 12px;
}
.fields-collection-errors {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.fields-collection-errors-box {
  margin-bottom: 40px;
  position: relative;
  width: 50%;
  margin-top: 20px;
}
.fields-collection-errors-box-list {
  height: 88px;
  min-height: 0;
  overflow: auto;
  background-color: #fff6ed;
  display: flex;
  flex-direction: column;
  padding: 10px;
  flex: 1 auto;
  border-radius: 4px;
}
.fields-collection-errors-box-list-item {
  display: block;
  color: #FFA654;
  padding: 2px 2px;
  border-radius: 4px;
}
.fields-collection-errors-box-list-item-index {
  display: inline-block;
  min-width: 18px;
  text-align: center;
}
.fields-collection-errors-box-list-item:hover {
  background-color: #FFA654;
  color: #fff;
}
.fields-collection-errors-box-total {
  position: absolute;
  top: 35px;
  left: -60px;
  height: 20px;
  width: 88px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  background-color: #FFA654;
  border-radius: 4px;
  color: #fff;
  text-align: center;
}
.fields-collection-errors-box.empty {
  display: none;
  pointer-events: none;
}
.window-arguments-wrapper {
  display: flex;
}
.window-arguments-wrapper .window-argument {
  position: relative;
  flex: 1 auto;
}
.window-arguments-wrapper .window-argument label {
  position: absolute;
  display: block;
  z-index: 1;
  font-weight: 300;
  font-size: 11px;
  top: -1px;
  left: -1px;
  right: -1px;
  width: 100%;
  text-align: center;
  pointer-events: none;
  color: #808080;
  transition: all 100ms;
  border-top: 1px solid transparent;
  -webkit-font-smoothing: antialiased;
}
.window-arguments-wrapper .window-argument label:before {
  position: absolute;
  left: -1px;
  top: -1px;
  content: '';
  height: 100%;
  border-left: 1px solid #E6E6E6;
}
.window-arguments-wrapper .window-argument label:after {
  position: absolute;
  right: -2px;
  top: -1px;
  content: '';
  height: 100%;
  border-left: 1px solid #E6E6E6;
}
.window-arguments-wrapper .window-argument input {
  z-index: 0;
  border: 0 none;
  border-right: 1px solid #E6E6E6;
  padding-top: 14px;
  line-height: 16px;
  text-align: center;
  width: 100%;
  transition: all 100ms;
  background-color: transparent;
  min-width: 90px;
}
.window-arguments-wrapper .window-argument input::-webkit-input-placeholder {
  color: #CCCCCC !important;
  -webkit-font-smoothing: antialiased;
}
.window-arguments-wrapper .window-argument input:-moz-placeholder {
  color: #CCCCCC !important;
  -webkit-font-smoothing: antialiased;
}
.window-arguments-wrapper .window-argument input::-moz-placeholder {
  color: #CCCCCC !important;
  -webkit-font-smoothing: antialiased;
}
.window-arguments-wrapper .window-argument input:-ms-input-placeholder {
  color: #CCCCCC !important;
  -webkit-font-smoothing: antialiased;
}
.window-arguments-wrapper .window-argument.focus {
  background-color: #fff;
}
.window-arguments-wrapper .window-argument.focus label {
  top: -14px;
  background-color: #fff;
  border-top-color: #E6E6E6;
}
.window-arguments-wrapper .window-argument.focus input {
  padding-top: 0px;
  line-height: 30px;
}
.window-arguments-wrapper .window-argument:not(.hide):last-child input {
  border-right: 0 none;
}
.window-arguments-wrapper .window-argument:not(.hide):last-child label:after {
  right: -1px;
}
.window-arguments.error {
  background-color: #ffe8d4;
}
.window-arguments.error .tooltip-inner {
  background-color: #ffe8d4;
  border-color: #ffe8d4;
  color: #ff8b21;
  font-weight: 400;
  padding: 5px 10px;
}
.window-arguments.error .tooltip-arrow {
  border-bottom-color: #ffe8d4;
  border-top-color: #ffe8d4;
}
.onboarding-toolbar {
  background-color: #fff;
  height: 80px;
  padding: 20px 30px;
}
.onboarding-toolbar .btn-group {
  margin-right: 20px;
  border-radius: 5px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.onboarding-toolbar .btn-group .btn {
  border: 0 none;
  padding: 10px 20px !important;
  z-index: 1 !important;
}
.onboarding-toolbar .btn-group .btn-gray-light {
  pointer-events: none;
  color: #3f3f3f;
  background-color: #f6f6f6;
}
.onboarding-toolbar .btn-group .btn-success {
  color: #fff !important;
  background-color: #13a95b !important;
  -webkit-font-smoothing: antialiased;
  font-weight: 900;
  position: relative;
  padding-left: 30px !important;
  padding-right: 40px !important;
}
.onboarding-toolbar .btn-group .btn-success:after {
  color: #fff !important;
  content: '\f0d7';
  font-family: FontAwesome;
  font-style: normal;
  color: #000;
  position: absolute;
  top: 10px;
  right: 30px;
}
.onboarding-toolbar .btn-group.open .btn-default {
  border-bottom-left-radius: 0;
}
.onboarding-toolbar .btn-group.open .btn-success {
  border-bottom-right-radius: 0;
}
.onboarding-toolbar .btn-group.open .btn-success:after {
  content: '\f0d8';
}
.onboarding-toolbar .btn-group .btn-upgrade {
  color: #13a95b;
}
.onboarding-toolbar .confetti {
  display: none;
}
.apps-toolbar .apps-button {
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0px 0px 0px 40px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  background-image: linear-gradient(0deg, #ebebeb 0%, #ffffff 100%);
  background-position: center center;
  background-size: cover;
  font-size: 14px;
  color: #3f3f3f;
  text-decoration: none solid #3f3f3f;
  cursor: pointer;
  pointer-events: all !important;
  height: 40px;
}
.apps-toolbar .apps-button.active {
  background-image: linear-gradient(0deg, #ffffff 0%, #ebebeb 100%);
}
.apps-toolbar .apps-button .icon {
  background-image: url(https://assets.xplenty.com/038636f761bb99ded61fd6412bce0994.svg);
  width: 24px;
  height: 20px;
  margin-right: 10px;
}
.apps-toolbar .apps-button .fa {
  margin-left: 10px;
}
.mat-dropdown-menu-item.app-item {
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  height: 59px;
  padding: 10px 20px;
  border-radius: 4px;
  background-color: #ffffff;
  background-size: cover;
  font-size: 14px;
  color: #3f3f3f;
  text-decoration: none solid #3f3f3f;
  line-height: 35px;
  font-weight: 400;
  width: 220px;
}
.mat-dropdown-menu-item.app-item .icon {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  display: inline-block;
}
.mat-dropdown-menu-item.app-item.elt_cdc .icon {
  background-image: url(https://assets.xplenty.com/cb34c3761f453b26fff6e1540fd6157f.svg);
}
.mat-dropdown-menu-item.app-item.api-generation .icon {
  background-image: url(https://assets.xplenty.com/7bf9c9d6083f467e596a78a4de795400.svg);
}
.mat-dropdown-menu-item.app-item.dwh-insights .icon {
  background-image: url(https://assets.xplenty.com/e412e67042c83589028e15ed1c8516f4.svg);
}
.mat-menu-panel.apps-dropdown-menu {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #f4f4f4;
  background-size: cover;
  margin-top: 10px;
}
.integrateio-notification {
  width: 450px;
  height: 400px;
  background: #ffffff;
  box-shadow: 0px 8px 8px -4px rgba(0, 0, 0, 0.03), 0px 20px 24px -4px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.integrateio-notification .dialog-close {
  top: 30px !important;
}
.integrateio-notification .title {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #2d3e4a;
  width: 180px;
  margin-top: 0;
}
.integrateio-notification .title .link {
  color: #187af0;
  cursor: pointer;
}
.integrateio-notification .description {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #2d3e4a;
  margin-top: 10px;
  width: 370px;
}
.integrateio-notification .description strong {
  font-weight: 600;
}
.integrateio-notification .image {
  height: 150px;
}
.integrateio-notification .migrate-button {
  margin-top: 20px;
  width: 220px;
  height: 45px;
  background: linear-gradient(264.29deg, #177af0 0%, #4a98f4 100%);
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 300;
}
.integrateio-notification .migrate-button .icon {
  position: absolute;
  right: 20px;
  height: 25px;
}
@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.integrateio-notification .ticker-wrap {
  position: absolute;
  top: 0;
  width: 100%;
  overflow: hidden;
  height: 26px;
  padding-left: 100%;
  box-sizing: content-box;
  background: #081d34;
}
.integrateio-notification .ticker-wrap .ticker {
  display: inline-block;
  height: 26px;
  line-height: 26px;
  white-space: nowrap;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker;
  animation-duration: 30s;
  width: 100%;
  margin-left: -380px;
}
.integrateio-notification .ticker-wrap .ticker__item {
  padding: 0 2rem;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  color: #ffffff;
  opacity: 0.4;
  line-height: 26px;
  display: inline-block;
}
.hook-form {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.hook-form .form-group .form-group {
  margin-bottom: 0;
}
.hook-form .hook-form-body {
  flex: 1 auto;
  overflow-x: hidden;
  overflow-y: auto;
}
.hook-form .hook-form-body .mat-slide-toggle {
  margin-top: 8px;
}
.hook-form .hook-form-footer {
  position: static !important;
  flex: 0 auto;
  height: 80px;
  min-height: 80px;
}
.hook-form h2 {
  margin: 10px 0 30px 0;
}
.hook-form .hook-groups-list,
.hook-form .hook-form-wrapper {
  padding: 50px 70px;
}
.hook-form .hook-type-header {
  display: flex;
  padding-bottom: 30px;
}
.hook-form .hook-type-header .hook-logo {
  float: left;
  margin-right: 20px;
  width: 50px;
  height: auto;
  align-self: flex-start;
}
.hook-form .hook-type-header strong {
  font-size: 18px;
  display: block;
  padding: 0 0 5px;
}
.hook-form .hook-groups-list {
  display: flex;
  flex-wrap: wrap;
}
.hook-form .hook-groups-list .hooks-group-item {
  flex: 1 auto;
  width: 32%;
  margin-right: 1%;
  margin-bottom: 30px;
}
.hook-form .hook-groups-list .hooks-group-item strong {
  font-size: 21px;
  font-weight: 300;
  display: block;
  margin-bottom: 20px;
}
.hook-form .hook-groups-list .hooks-group-item .hook-item {
  cursor: pointer;
  margin: 10px 0;
  padding: 10px;
  border-radius: 3px;
}
.hook-form .hook-groups-list .hooks-group-item .hook-item img {
  width: 32px;
  margin-right: 5px;
}
.hook-form .hook-groups-list .hooks-group-item .hook-item span {
  font-size: 14px;
}
.hook-form .hook-groups-list .hooks-group-item .hook-item:hover {
  background-color: #EEE;
}
.hook-form .hook-groups-list .hooks-group-item .hook-item:hover img {
  filter: none;
}
.hook-form .loader {
  margin: 50px;
}
.hook-form .hook-events-editor {
  margin: 20px 0 10px;
}
.hook-form .hook-events-editor h4 {
  padding: 0;
  margin: 20px 0;
}
.hook-form .hook-events-editor .hook-events {
  padding: 10px 0;
}
.hook-form .hook-events-editor .hook-events input[type='checkbox'] {
  margin-right: 4px;
}
.hook-form .hook-events-editor .hook-events .hook-events-children {
  padding-left: 18px;
}
.hook-form .hook-events-editor .hook-events .hook-events-children .checkbox {
  font-weight: 400;
}
.job-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.job-form .job-form-body {
  flex: 1 auto;
  overflow-y: auto;
}
.job-form .job-form-body .job-form-body-content {
  padding: 50px 70px;
}
.job-form .job-form-body .job-form-body-content .variables-editor-remove {
  display: none !important;
}
.job-form .job-form-body .job-form-body-content .job-form-variables-validator {
  display: none !important;
}
.job-form .job-form-footer {
  position: relative !important;
  flex: 0 auto !important;
  height: 80px !important;
  min-height: 80px !important;
}
.job-form .job-form-footer .modal-title-container {
  display: flex !important;
  flex-direction: row !important;
  justify-content: left !important;
  transform: translateY(8px) !important;
}
.job-form .job-form-footer .modal-title-container svg {
  width: 34px !important;
  height: 34px !important;
  flex: 0 auto !important;
  margin-right: 10px;
}
.job-form .job-form-footer .modal-title-container h1 {
  flex: 1 auto !important;
}
.job-form .tabs {
  flex: 0 auto;
  height: 48px;
  min-height: 48px;
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.job-form .tabs li {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
  line-height: 24px;
  border: 1px solid transparent;
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  background-color: #E6E6E6;
}
.job-form .tabs li strong {
  font-weight: 700;
  margin-right: 5px;
}
.job-form .tabs li span {
  font-weight: 400 !important;
}
.job-form .tabs li svg {
  -webkit-transform: translate(-2px, 4px);
  -ms-transform: translate(-2px, 4px);
  -o-transform: translate(-2px, 4px);
  transform: translate(-2px, 4px);
}
.job-form .tabs li.active {
  background-color: #fff;
  border-right: 1px solid #CCCCCC;
  border-bottom: 0 none;
}
.job-form .tabs li.disable {
  cursor: default;
}
.job-form .tabs li.disable strong,
.job-form .tabs li.disable span {
  color: #CCCCCC;
}
.job-form .tabs li:first-child {
  border-left: 0 none !important;
}
.package-version-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.package-version-form .package-version-form-body {
  flex: 1 auto;
  overflow-y: auto;
  padding: 50px 70px;
}
.package-version-form .package-version-form-body .package-version-form-body-content .variables-editor-remove {
  display: none !important;
}
.package-version-form .package-version-form-body .package-version-form-body-content .package-version-form-variables-validator {
  display: none !important;
}
.package-version-form .package-version-form-footer {
  position: relative !important;
  flex: 0 auto !important;
  height: 80px !important;
  min-height: 80px !important;
}
.package-version-form .package-version-form-footer .modal-title-container {
  display: flex !important;
  flex-direction: row !important;
  justify-content: left !important;
  transform: translateY(8px) !important;
}
.package-version-form .package-version-form-footer .modal-title-container svg {
  width: 34px !important;
  height: 34px !important;
  flex: 0 auto !important;
  margin-right: 10px;
}
.package-version-form .package-version-form-footer .modal-title-container h1 {
  flex: 1 auto !important;
}
.package-version-form .tabs {
  flex: 0 auto;
  height: 48px;
  min-height: 48px;
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.package-version-form .tabs li {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
  line-height: 24px;
  border: 1px solid transparent;
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  background-color: #E6E6E6;
}
.package-version-form .tabs li strong {
  font-weight: 700;
  margin-right: 5px;
}
.package-version-form .tabs li span {
  font-weight: 400 !important;
}
.package-version-form .tabs li svg {
  -webkit-transform: translate(-2px, 4px);
  -ms-transform: translate(-2px, 4px);
  -o-transform: translate(-2px, 4px);
  transform: translate(-2px, 4px);
}
.package-version-form .tabs li.active {
  background-color: #fff;
  border-right: 1px solid #CCCCCC;
  border-bottom: 0 none;
}
.package-version-form .tabs li.disable {
  cursor: default;
}
.package-version-form .tabs li.disable strong,
.package-version-form .tabs li.disable span {
  color: #CCCCCC;
}
.package-version-form .tabs li:first-child {
  border-left: 0 none !important;
}
.package-form {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  mix-height: 100%;
}
.package-form .package-form-body {
  flex: 1 auto;
  overflow-y: scroll;
  z-index: 0;
}
.package-form .package-form-body form {
  padding: 50px 70px;
}
.package-form .package-form-body .package-type .package-type-wrapper {
  border: 1px solid #CCCCCC;
  border-radius: 6px;
  text-align: center;
  padding-bottom: 30px;
}
.package-form .package-form-body .package-type .package-type-wrapper .lead {
  font-size: 14px;
  padding: 40px 0 30px;
}
.package-form .package-form-body .package-type .package-type-wrapper .package-type-dataflow {
  padding-top: 20px;
}
.package-form .package-form-body .package-type .package-type-wrapper p {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 0;
}
.package-form .package-form-body .package-type .package-type-wrapper svg {
  cursor: pointer;
}
.package-form .package-form-body .package-type .package-type-wrapper svg path.bg {
  fill: #fff;
}
.package-form .package-form-body .package-type .package-type-wrapper svg.active path.bg {
  fill: #0ab3e5;
}
.package-form .package-form-body .package-type p.description {
  padding: 20px 0;
  font-size: 16px;
  font-weight: 300;
}
.package-form .package-form-footer {
  position: static !important;
  flex: 0 auto;
  height: 80px;
  min-height: 80px;
  z-index: 1;
}
.package-form .package-form-footer .modal-title-container {
  display: flex !important;
  flex-direction: row !important;
  justify-content: left !important;
  transform: translateY(8px) !important;
}
.package-form .package-form-footer .modal-title-container svg {
  width: 34px !important;
  height: 34px !important;
  flex: 0 auto !important;
  margin-right: 10px;
}
.package-form .package-form-footer .modal-title-container h1 {
  flex: 1 auto !important;
}
.connection-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.connection-form .connection-form-body {
  flex: 1 auto;
  overflow-y: auto;
}
.connection-form .connection-form-body textarea {
  min-height: 120px;
}
.connection-form .connection-form-body .connection-type-header {
  display: flex;
  padding-bottom: 30px;
}
.connection-form .connection-form-body .connection-type-header .connection-logo {
  float: left;
  margin-right: 20px;
  width: 50px;
  height: auto;
  align-self: flex-start;
}
.connection-form .connection-form-body .connection-type-header strong {
  font-size: 18px;
  display: block;
  padding: 0 0 5px;
}
.connection-form .connection-form-body .connection-groups-list,
.connection-form .connection-form-body .connection-form-wrapper {
  padding: 50px 70px;
}
.connection-form .connection-form-body .connection-groups-list {
  display: flex;
  flex-wrap: wrap;
}
.connection-form .connection-form-body .connection-groups-list .connections-group-item {
  flex: 1 auto;
  width: 32%;
  margin-right: 1%;
  margin-bottom: 30px;
}
.connection-form .connection-form-body .connection-groups-list .connections-group-item strong {
  font-size: 21px;
  font-weight: 300;
  display: block;
  margin-bottom: 20px;
}
.connection-form .connection-form-body .connection-groups-list .connections-group-item .connection-item {
  cursor: pointer;
  margin: 10px 0;
  padding: 10px;
  border-radius: 3px;
}
.connection-form .connection-form-body .connection-groups-list .connections-group-item .connection-item img {
  width: 32px;
  margin-right: 5px;
}
.connection-form .connection-form-body .connection-groups-list .connections-group-item .connection-item span {
  font-size: 14px;
}
.connection-form .connection-form-body .connection-groups-list .connections-group-item .connection-item:hover {
  background-color: #EEE;
}
.connection-form .connection-form-body .connection-groups-list .connections-group-item .connection-item:hover img {
  filter: none;
}
.connection-form .connection-form-body .loader {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-20px, 0);
  -ms-transform: translate(-20px, 0);
  -o-transform: translate(-20px, 0);
  transform: translate(-20px, 0);
}
.connection-form .connection-form-body .connection-form-container.loading {
  opacity: 0.1;
  pointer-events: none;
}
.connection-form .connection-form-body .connection-form-facebookadsinsights .lead,
.connection-form .connection-form-body .connection-form-intercom .lead,
.connection-form .connection-form-body .connection-form-bingads .lead,
.connection-form .connection-form-body .connection-form-adwords .lead,
.connection-form .connection-form-body .connection-form-analytics .lead {
  padding: 30px 0;
}
.connection-form .connection-form-footer {
  position: relative !important;
  flex: 0 auto !important;
  height: 80px !important;
  min-height: 80px !important;
  width: 100%;
}
.connection-form .connection-form-footer xp-submit-button {
  margin-left: 5px;
}
.connection-form .connection-form-footer .modal-title-container {
  display: flex !important;
  flex-direction: row !important;
  justify-content: left !important;
  transform: translateY(8px) !important;
}
.connection-form .connection-form-footer .modal-title-container svg {
  width: 34px !important;
  height: 34px !important;
  flex: 0 auto !important;
  margin-right: 10px;
}
.connection-form .connection-form-footer .modal-title-container h1 {
  flex: 1 auto !important;
}
.connection-form .connection-form-mongo .replica-row {
  margin-bottom: 5px;
}
.connection-form .connection-form-mongo .replica-row .replica-input {
  display: flex;
  align-items: center;
}
.connection-form .connection-form-mongo .replica-row .replica-input .replica-xp-input {
  width: 80%;
}
.connection-form .copy-public-key-container {
  display: flex;
  margin-bottom: 10px;
}
.connection-form .copy-public-key-container .copy-public-key-button {
  width: 40px;
  margin-left: 10px;
  border: 1px solid #cccccc;
}
.member-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.member-form .member-form-body {
  padding: 50px;
}
.key-form {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}
.key-form .key-form-body {
  flex: 1 auto;
  overflow-x: auto;
}
.key-form .key-form-body form {
  padding: 50px;
}
.account-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.account-form .account-form-body {
  padding: 50px;
  flex: 1 auto;
  overflow-y: auto;
}
.account-form .account-form-footer {
  position: relative !important;
  flex: 0 auto !important;
  height: 80px !important;
  min-height: 80px !important;
  width: 100%;
}
.packages-picker-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.packages-picker-form .packages-picker-form-body {
  flex: 1 auto;
  overflow-y: auto;
}
.packages-picker-form .packages-picker-form-body .packages-picker-form-body-content {
  padding: 50px 70px;
}
.packages-picker-form .packages-picker-form-body .packages-picker-form-body-content .variables-editor-remove {
  display: none !important;
}
.packages-picker-form .packages-picker-form-body .packages-picker-form-body-content .packages-picker-form-variables-validator {
  display: none !important;
}
.packages-picker-form .variables-override-container .fa {
  margin-left: 5px;
}
.packages-picker-form .packages-picker-form-footer {
  position: relative !important;
  flex: 0 auto !important;
  height: 80px !important;
  min-height: 80px !important;
}
.packages-picker-form .packages-picker-form-footer .btn {
  margin-left: 20px;
}
.packages-picker-form .tabs {
  flex: 0 auto;
  height: 48px;
  min-height: 48px;
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.packages-picker-form .tabs li {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
  line-height: 24px;
  border: 1px solid transparent;
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  background-color: #E6E6E6;
}
.packages-picker-form .tabs li strong {
  font-weight: 700;
  margin-right: 5px;
}
.packages-picker-form .tabs li span {
  font-weight: 400 !important;
}
.packages-picker-form .tabs li svg {
  -webkit-transform: translate(-2px, 4px);
  -ms-transform: translate(-2px, 4px);
  -o-transform: translate(-2px, 4px);
  transform: translate(-2px, 4px);
}
.packages-picker-form .tabs li.active {
  background-color: #fff;
  border-right: 1px solid #CCCCCC;
  border-bottom: 0 none;
}
.packages-picker-form .tabs li.disable {
  cursor: default;
}
.packages-picker-form .tabs li.disable strong,
.packages-picker-form .tabs li.disable span {
  color: #CCCCCC;
}
.packages-picker-form .tabs li:first-child {
  border-left: 0 none !important;
}
.packages-picker-form .input-checkbox {
  margin-bottom: 20px;
}
.ngdialog.ngdialog-theme-default .ngdialog-content {
  z-index: 1 !important;
  font-family: "proxima-nova", sans-serif;
}
.dialog {
  display: flex;
  flex-flow: column;
  padding: 0;
  margin-bottom: 0;
}
.dialog .dialog-btn-container {
  display: flex;
  flex-flow: row;
}
.dialog .clustercat-holding .clustercat-holding-hand {
  position: absolute;
  animation: handsMove 1s linear infinite alternate;
}
.dialog .clustercat-holding .clustercat-holding-hand.right {
  top: -23px;
  right: -40px;
}
.dialog .clustercat-holding .clustercat-holding-hand.left {
  top: -23px;
  left: 60px;
}
.dialog .clustercat-holding .clustercat-holding-head {
  position: absolute;
  top: -131px;
  left: 50%;
  transform: translatex(-50%);
}
.dialog .dialog-text {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 0 20px;
}
.dialog.confirm {
  background-color: #fff;
}
.dialog.confirm h3 {
  color: #3F3F3F;
}
.dialog.confirm p {
  color: #808080;
  margin-bottom: 30px;
}
.dialog.confirm .dialog-button {
  font-size: 14px;
  font-weight: 600;
  padding: 20px;
  border-top: 1px solid #CCCCCC !important;
  width: 300px;
}
.dialog.confirm .dialog-button:not(.btn-default) {
  border-radius: 0px 0px 5px 0px;
  box-shadow: -1px 0px 0px 0px #CCCCCC;
  background-color: #fff;
}
.dialog.confirm .dialog-button.btn-default {
  border-radius: 0px 0px 0px 5px;
  border: 1px solid #fff;
  background-color: #fff;
}
.dialog.confirm .dialog-button.btn-danger {
  background-color: #fff;
  color: #E54C40;
}
.dialog.confirm .dialog-button.btn-warning {
  background-color: #fff;
  color: #FFA654;
}
.dialog.confirm .dialog-button.btn-info {
  background-color: #fff;
  color: #FFD260;
}
.dialog.confirm .dialog-button.btn-success {
  background-color: #fff;
  color: #39E98D;
}
.dialog.confirm .dialog-button:hover {
  background-color: #f3f3f3;
  border-color: #E6E6E6;
}
@keyframes handsMove {
  0% {
    transform: translate(3px, 0);
  }
  100% {
    transform: translate(-3px, 0);
  }
}
.ngdialog.ngdialog-theme-default .ngdialog-content {
  padding: 0;
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 600;
  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.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  outline: 0;
}
.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;
  background-color: #CCCCCC;
  pointer-events: none;
  filter: alpha(opacity=65);
  opacity: 0.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;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].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: #0AB3E5;
  border-color: transparent;
}
.btn-primary:focus,
.btn-primary.focus {
  color: #FFF;
  background-color: #088db4;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:hover {
  color: #FFF;
  background-color: #088db4;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #FFF;
  background-color: #088db4;
  background-image: none;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #FFF;
  background-color: #067292;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #0AB3E5;
  border-color: transparent;
}
.btn-primary .badge {
  color: #0AB3E5;
  background-color: #FFF;
}
.btn-success {
  color: #3F3F3F;
  background-color: #39E98D;
  border-color: transparent;
}
.btn-success:focus,
.btn-success.focus {
  color: #3F3F3F;
  background-color: #18d773;
  border-color: rgba(0, 0, 0, 0);
}
.btn-success:hover {
  color: #3F3F3F;
  background-color: #18d773;
  border-color: rgba(0, 0, 0, 0);
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #3F3F3F;
  background-color: #18d773;
  background-image: none;
  border-color: rgba(0, 0, 0, 0);
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #3F3F3F;
  background-color: #14b762;
  border-color: rgba(0, 0, 0, 0);
}
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
  background-color: #39E98D;
  border-color: transparent;
}
.btn-success .badge {
  color: #39E98D;
  background-color: #3F3F3F;
}
.btn-info {
  color: #3F3F3F;
  background-color: #FFD260;
  border-color: transparent;
}
.btn-info:focus,
.btn-info.focus {
  color: #3F3F3F;
  background-color: #ffc42d;
  border-color: rgba(0, 0, 0, 0);
}
.btn-info:hover {
  color: #3F3F3F;
  background-color: #ffc42d;
  border-color: rgba(0, 0, 0, 0);
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #3F3F3F;
  background-color: #ffc42d;
  background-image: none;
  border-color: rgba(0, 0, 0, 0);
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #3F3F3F;
  background-color: #ffb909;
  border-color: rgba(0, 0, 0, 0);
}
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
  background-color: #FFD260;
  border-color: transparent;
}
.btn-info .badge {
  color: #FFD260;
  background-color: #3F3F3F;
}
.btn-warning {
  color: #3F3F3F;
  background-color: #FFA654;
  border-color: transparent;
}
.btn-warning:focus,
.btn-warning.focus {
  color: #3F3F3F;
  background-color: #ff8b21;
  border-color: rgba(0, 0, 0, 0);
}
.btn-warning:hover {
  color: #3F3F3F;
  background-color: #ff8b21;
  border-color: rgba(0, 0, 0, 0);
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #3F3F3F;
  background-color: #ff8b21;
  background-image: none;
  border-color: rgba(0, 0, 0, 0);
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #3F3F3F;
  background-color: #fc7900;
  border-color: rgba(0, 0, 0, 0);
}
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
  background-color: #FFA654;
  border-color: transparent;
}
.btn-warning .badge {
  color: #FFA654;
  background-color: #3F3F3F;
}
.btn-danger {
  color: #fff;
  background-color: #E54C40;
  border-color: transparent;
}
.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #d52a1d;
  border-color: rgba(0, 0, 0, 0);
}
.btn-danger:hover {
  color: #fff;
  background-color: #d52a1d;
  border-color: rgba(0, 0, 0, 0);
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #d52a1d;
  background-image: none;
  border-color: rgba(0, 0, 0, 0);
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #fff;
  background-color: #b62419;
  border-color: rgba(0, 0, 0, 0);
}
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
  background-color: #E54C40;
  border-color: transparent;
}
.btn-danger .badge {
  color: #E54C40;
  background-color: #fff;
}
.btn-link {
  color: #0AB3E5;
  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: #077a9c;
  text-decoration: none;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #CCCCCC;
  text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 14px 22px;
  font-size: 16px;
  line-height: 1.33;
  border-radius: 5px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xlg {
  padding: 18px 28px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 5px;
}
.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-xplenty {
  padding: 14px 18px !important;
  font-size: 16px;
}
.toggle-group .active {
  box-shadow: inherit;
  border-color: #E6E6E6;
}
.toggle-group .active:hover {
  border-color: #CCCCCC;
}
.form-control {
  font-weight: 400 !important;
  font-size: 14px;
}
.form-control .base-input-control {
  padding: 0;
}
.form-control.xp-select {
  padding: 0 5px;
}
.form-control.xp-select .mat-select-arrow {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid;
  margin: 0 4px;
}
.form-control.btn-default {
  width: 50%;
  display: block;
}
.form-group {
  position: relative;
}
.form-group label .fa-exclamation-circle {
  margin-left: 5px;
}
.form-group .gray-text {
  color: #767676;
}
.form-group .file-name {
  margin-left: 60%;
  display: block;
  position: absolute;
  top: 35px;
}
.form-group .form-control-info {
  position: absolute;
  top: 38px;
  right: -20px;
  font-size: 16px;
  color: #E6E6E6;
}
.form-group .form-control-info:hover {
  color: #CCCCCC;
}
.form-group .tooltip {
  max-width: 200px !important;
}
.form-group .tooltip .tooltip-inner {
  width: 200px !important;
  max-width: 200px !important;
  font-size: 13px !important;
  font-style: italic;
  text-align: left;
}
.bootstrap-select > .dropdown-toggle {
  line-height: 2;
}
.bootstrap-select > .dropdown-toggle.btn-lg {
  line-height: 2.8;
}
.bootstrap-select > .dropdown-toggle.btn-sm {
  line-height: 1.5;
}
.bootstrap-select.open > .dropdown-toggle.btn-default {
  color: #3F3F3F;
  background-color: #fff;
  border-color: #CCCCCC;
}
.label {
  font-weight: 400;
}
textarea {
  max-width: 100%;
}
textarea.textarea-lg {
  font-size: 18px;
}
textarea,
select,
input {
  color: #3F3F3F !important;
}
.input-group-addon {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
  cursor: pointer;
}
.input-group-addon:focus,
.input-group-addon.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.input-group-addon:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.input-group-addon:active,
.input-group-addon.active,
.open > .dropdown-toggle.input-group-addon {
  color: #333;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
}
.input-group-addon:active:hover,
.input-group-addon.active:hover,
.open > .dropdown-toggle.input-group-addon:hover,
.input-group-addon:active:focus,
.input-group-addon.active:focus,
.open > .dropdown-toggle.input-group-addon:focus,
.input-group-addon:active.focus,
.input-group-addon.active.focus,
.open > .dropdown-toggle.input-group-addon.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.input-group-addon.disabled:hover,
.input-group-addon[disabled]:hover,
fieldset[disabled] .input-group-addon:hover,
.input-group-addon.disabled:focus,
.input-group-addon[disabled]:focus,
fieldset[disabled] .input-group-addon:focus,
.input-group-addon.disabled.focus,
.input-group-addon[disabled].focus,
fieldset[disabled] .input-group-addon.focus {
  background-color: #fff;
  border-color: #ccc;
}
.input-group-addon .badge {
  color: #fff;
  background-color: #333;
}
.input-group-addon:focus,
.input-group-addon.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.input-group-addon:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.input-group-addon:active,
.input-group-addon.active,
.open > .dropdown-toggle.input-group-addon {
  color: #333;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
}
.input-group-addon:active:hover,
.input-group-addon.active:hover,
.open > .dropdown-toggle.input-group-addon:hover,
.input-group-addon:active:focus,
.input-group-addon.active:focus,
.open > .dropdown-toggle.input-group-addon:focus,
.input-group-addon:active.focus,
.input-group-addon.active.focus,
.open > .dropdown-toggle.input-group-addon.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.input-group-addon.disabled:hover,
.input-group-addon[disabled]:hover,
fieldset[disabled] .input-group-addon:hover,
.input-group-addon.disabled:focus,
.input-group-addon[disabled]:focus,
fieldset[disabled] .input-group-addon:focus,
.input-group-addon.disabled.focus,
.input-group-addon[disabled].focus,
fieldset[disabled] .input-group-addon.focus {
  background-color: #fff;
  border-color: #ccc;
}
.input-group-addon .badge {
  color: #fff;
  background-color: #333;
}
.input-group-addon[data-action='submit'].loading::after {
  border-top-color: #333;
  border-left-color: #333;
}
label {
  font-weight: 400;
  color: #3F3F3F;
}
.form-group small {
  padding: 5px 0;
  display: inline-block;
  font-size: 13px !important;
  color: #808080;
  font-weight: 300;
}
.input-danger {
  border-color: #E54C40;
  background-color: #fadfdd;
}
textarea:hover,
input:hover,
textarea:active,
input:active,
textarea:focus,
input:focus,
button:focus,
button:active,
button:hover {
  outline: 0px !important;
  -webkit-appearance: none;
}
.alert {
  border-right: none;
  border-top: none;
  border-bottom: none;
  border-left: 2px solid;
}
.alert.dialog {
  border: 1px solid transparent;
}
.alert .fa-stack {
  margin-right: 0.25rem;
  font-size: 75%;
  margin-top: -0.25rem;
}
pre.input {
  color: #3F3F3F;
  background-color: #E6E6E6;
  border-color: #CCCCCC;
}
pre.input:hover {
  border-color: #0AB3E5;
}
input[readonly] {
  cursor: not-allowed;
  background-color: #e6e6e6;
  opacity: 1;
}
xp-input[readonly='true'] {
  cursor: not-allowed;
  background-color: #e6e6e6;
  opacity: 1;
}
.form-control[disabled='false'] {
  cursor: default !important;
  background-color: #fff !important;
  opacity: 1;
}
.dropdown-menu {
  -webkit-box-shadow: 0 0px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.175);
  padding: 0;
  margin: 0;
  min-width: 100%;
}
.dropdown-menu li span.text-warning {
  color: #FFA654;
}
.dropdown-menu li span.text-danger {
  color: #E54C40;
}
.dropdown-menu li span.text-success {
  color: #39E98D;
}
.dropdown-menu li span.text-primary {
  color: #0AB3E5;
}
.dropdown-menu li a {
  padding: 10px 20px;
}
.dropdown-menu .dropdown-header {
  padding: 10px 20px 5px 20px;
}
.dropdown-menu .dropdown-header span {
  font-size: 14px;
}
.dropdown-menu .divider {
  margin: 0px;
}
.dropdown-toggle:hover,
.dropdown-toggle:focus,
.dropdown-toggle:active {
  outline: 0 !important;
  border-color: #0AB3E5;
  background-color: #ffffff;
}
/* line 21, ../sass/offline-theme-default.sass */
.offline-ui {
  font-family: "proxima-nova", sans-serif;
  padding: 1em;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  top: 20px;
}
.offline-ui.offline-ui-up {
  background: #c3f8dc;
  color: #0e7b42;
  border-left: 2px solid #0e7b42;
}
.offline-ui.offline-ui-down {
  background: #fceceb;
  color: #de2c1e;
  border-left: 2px solid #de2c1e;
}
.offline-ui.offline-ui-down.offline-ui-connecting,
.offline-ui.offline-ui-down.offline-ui-waiting {
  background: #ffe8d4;
  color: #d36500;
  border-left: 2px solid #d36500;
}
.offline-ui.offline-ui-down.offline-ui-connecting:after,
.offline-ui.offline-ui-down.offline-ui-waiting:after {
  border-top-color: #d36500;
  border-left-color: #d36500;
  opacity: 1;
}
.offline-ui .offline-ui-retry {
  background: #ffc996;
  color: inherit;
  line-height: 3.5em;
  height: 3.5em;
}
.offline-ui .offline-ui-retry:hover {
  background: #ffbe82;
}
.offline-ui .offline-ui-retry:before {
  content: 'Try now';
}
.offline-ui.offline-ui-up .offline-ui-content:before {
  content: 'Your computer is back online.';
}
@media (max-width: 1024px) {
  .offline-ui.offline-ui-up .offline-ui-content:before {
    content: 'Your computer is back online.';
  }
}
@media (max-width: 568px) {
  .offline-ui.offline-ui-up .offline-ui-content:before {
    content: 'Your computer is back online.';
  }
}
.offline-ui.offline-ui-down .offline-ui-content:before {
  content: 'Your computer seems to be offline.';
}
@media (max-width: 1024px) {
  .offline-ui.offline-ui-down .offline-ui-content:before {
    content: 'Your computer seems to be offline.';
  }
}
@media (max-width: 568px) {
  .offline-ui.offline-ui-down .offline-ui-content:before {
    content: 'Your computer seems to be offline.';
  }
}
.offline-ui.offline-ui-down.offline-ui-connecting .offline-ui-content:before,
.offline-ui.offline-ui-down.offline-ui-connecting-2s .offline-ui-content:before {
  content: 'Reconnecting...';
}
.offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit='second']:before {
  content: 'Reconnecting in ' attr(data-retry-in-value) ' seconds...';
}
@media (max-width: 568px) {
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit='second']:before {
    content: 'Reconnecting in ' attr(data-retry-in-value) 's...';
  }
}
.offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit='second'][data-retry-in-value='1']:before {
  content: 'Reconnecting in ' attr(data-retry-in-value) ' second...';
}
@media (max-width: 568px) {
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit='second'][data-retry-in-value='1']:before {
    content: 'Reconnecting in ' attr(data-retry-in-value) 's...';
  }
}
.offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit='minute']:before {
  content: 'Reconnecting in ' attr(data-retry-in-value) ' minutes...';
}
@media (max-width: 568px) {
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit='minute']:before {
    content: 'Reconnecting in ' attr(data-retry-in-value) 'm...';
  }
}
.offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit='minute'][data-retry-in-value='1']:before {
  content: 'Reconnecting in ' attr(data-retry-in-value) ' minute...';
}
@media (max-width: 568px) {
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit='minute'][data-retry-in-value='1']:before {
    content: 'Reconnecting in ' attr(data-retry-in-value) 'm...';
  }
}
.offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit='hour']:before {
  content: 'Reconnecting in ' attr(data-retry-in-value) ' hours...';
}
@media (max-width: 568px) {
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit='hour']:before {
    content: 'Reconnecting in ' attr(data-retry-in-value) 'h...';
  }
}
.offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit='hour'][data-retry-in-value='1']:before {
  content: 'Reconnecting in ' attr(data-retry-in-value) ' hour...';
}
@media (max-width: 568px) {
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit='hour'][data-retry-in-value='1']:before {
    content: 'Reconnecting in ' attr(data-retry-in-value) 'h...';
  }
}
.offline-ui.offline-ui-down.offline-ui-reconnect-failed-2s.offline-ui-waiting .offline-ui-retry {
  display: none;
}
.offline-ui.offline-ui-down.offline-ui-reconnect-failed-2s .offline-ui-content:before {
  content: 'Reconnecting...';
}
.base-editor {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.base-editor .base-editor-tabs {
  flex: 0 auto;
  height: 50px;
}
.base-editor .base-editor-body {
  overflow-y: scroll;
  flex: 1 auto;
  position: relative;
}
.base-editor .base-editor-body .base-editor-connections {
  padding: 30px 80px;
}
.base-editor .base-editor-body .base-editor-connections .generic-list-modal {
  padding: 0 !important;
}
.base-editor .base-editor-body .base-editor-connections .generic-list-modal .generic-list-body .connection-list-item {
  margin-left: 25px;
  margin-bottom: 25px;
}
.base-editor .base-editor-footer {
  flex: 0 auto;
  height: 80px;
  min-height: 80px;
}
.base-editor h4 {
  margin: 20px 5px 10px;
  font-size: 18px;
}
.base-editor .explanation {
  display: inline-block;
  padding: 0 5px 10px;
}
.base-editor .bootstrap-select button {
  padding: 12px 12px;
  font-size: 15px;
  line-height: 15px;
  color: #3F3F3F;
}
.base-editor .tab-content {
  position: relative;
  padding-bottom: 50px;
  overflow-y: scroll;
}
.base-editor .tab-content-shadow {
  position: absolute;
  margin-top: -30px;
  height: 30px;
  width: 100%;
  -webkit-box-shadow: inset 0 -30px 30px -30px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 -30px 30px -30px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
.base-editor .base-editor-body form {
  padding: 60px 120px;
}
.base-editor .base-editor-column-mappings {
  padding: 60px 120px;
}
.base-editor .base-editor-body-transformation {
  background-color: #fff;
}
.base-editor .form-group label:not(.checkbox) {
  line-height: 18px;
  padding-left: 5px;
  color: #808080;
  font-weight: 300;
}
.base-editor .margin-bottom:before,
.base-editor .margin-bottom:after {
  display: table;
  content: " ";
}
.base-editor .margin-bottom:after {
  clear: both;
}
.base-editor .margin-bottom:before,
.base-editor .margin-bottom:after {
  display: table;
  content: " ";
}
.base-editor .margin-bottom:after {
  clear: both;
}
.base-editor .CodeMirror {
  height: auto;
  padding: 0;
  min-height: 96px;
  -webkit-box-shadow: 0px 0px;
  box-shadow: 0px 0px;
}
.base-editor .CodeMirror .CodeMirror-scroll {
  min-height: 98px;
}
.base-editor .CodeMirror .CodeMirror-code {
  min-height: 82px;
  font-family: 'Menlo';
  color: #3F3F3F;
}
.base-editor .CodeMirror .CodeMirror-gutters {
  min-height: 98px;
  min-width: 29px;
}
.base-editor .CodeMirror .CodeMirror-placeholder {
  color: #ccc;
}
.base-editor .component-wrapper {
  padding: 8px 8px 0 8px;
}
.base-editor .tab-content {
  background-color: #fff;
}
.base-editor .tab-content .tab-pane {
  padding: 20px;
}
.base-editor .step-1,
.base-editor .step-2,
.base-editor .step-3,
.base-editor .step-4,
.base-editor .step-5 {
  padding: 20px 80px 40px;
  margin: 0 -20px;
}
.base-editor .step-1 {
  background-color: #fff;
}
.base-editor .step-2 {
  background-color: #f7f7f7;
}
.base-editor .step-3 {
  background-color: #f2f2f2;
}
.base-editor .step-4 {
  background-color: #ededed;
}
.base-editor .step-5 {
  background-color: #e8e8e8;
}
.base-editor .generic-list.generic-list-connections .generic-list-body {
  padding: 20px 55px;
}
.base-editor .generic-list.generic-list-connections .generic-list-body .generic-list-item.connections {
  cursor: pointer;
}
.base-editor .generic-list.generic-list-connections .generic-list-body .generic-list-item.connections span {
  cursor: pointer;
}
.base-editor .generic-list.generic-list-connections .generic-list-body .generic-list-item.connections .connection-bar {
  display: none;
}
.base-editor .generic-list.generic-list-connections .generic-list-body .generic-list-item.connections .connection-logo {
  pointer-events: none;
}
.base-editor .generic-list.generic-list-connections .generic-list-body .generic-list-item.connections:hover .connection-logo {
  border-bottom-color: #808080;
}
.base-editor .generic-list.generic-list-connections .generic-list-body .generic-list-item.connections:hover .connection-border {
  fill: #808080;
}
.base-editor .generic-list.generic-list-connections .generic-list-body .generic-list-item.connections:hover .connection-border.connection-border-putzka {
  stroke: #808080;
  fill: transparent;
}
.base-editor .generic-list.generic-list-connections .generic-list-body .generic-list-item.connections.selected .connection-logo {
  border-bottom-color: #0AB3E5;
}
.base-editor .generic-list.generic-list-connections .generic-list-body .generic-list-item.connections.selected .connection-border {
  fill: #0AB3E5;
}
.base-editor .generic-list.generic-list-connections .generic-list-body .generic-list-item.connections.selected .connection-border.connection-border-putzka {
  stroke: #0AB3E5;
  fill: #0AB3E5;
}
.base-editor .modal-footer .component-name {
  transform: translate(52px, -5px);
  width: 55%;
  margin-top: 24px;
  position: relative;
}
.base-editor .modal-footer .component-name input {
  border: 0 none;
  border-bottom: 1px solid #E6E6E6;
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  width: 100%;
}
.base-editor .modal-footer .component-name.invalid input {
  border-bottom: 1px solid #E54C40;
  background-color: rgba(255, 166, 84, 0.1);
}
.base-editor .modal-footer .component-name:after {
  font-family: 'FontAwesome';
  content: '\f040';
  color: #808080;
  display: block;
  font-size: 16px;
  position: absolute;
  right: 6px;
  top: 6px;
}
.base-editor .modal-footer .component-name .tooltip {
  background-color: rgba(255, 166, 84, 0.1);
  white-space: nowrap;
}
.base-editor .modal-footer .component-name .tooltip .tooltip-arrow {
  border-right-color: #E54C40;
}
.base-editor .modal-footer .component-name .tooltip .tooltip-inner {
  background-color: rgba(255, 166, 84, 0.1);
  border-color: #E54C40;
  color: #E54C40;
}
.component-editor {
  display: flex;
  flex-direction: column;
  max-height: 100%;
  height: 100%;
}
.component-editor label:not(.list-group-item) {
  display: inline-block;
  padding-left: 5px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding-right: 3px;
}
.component-editor label:not(.list-group-item) input[type='checkbox'] {
  margin-right: 3px;
}
.component-editor label:not(.list-group-item).focus {
  border-color: #0AB3E5;
}
.component-editor .dynamic-connection .dynamic-connection-checkbox {
  margin-left: 13px;
  margin-top: 20px;
  margin-bottom: 10px;
  display: block;
}
.component-editor .component-editor-footer {
  background-color: #fff;
  position: relative !important;
  padding: 0 40px;
  flex: 0 auto;
  height: 80px;
  min-height: 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.component-editor .component-editor-footer .component-editor-footer-icon svg {
  -webkit-transform: translate(0, 5px);
  -ms-transform: translate(0, 5px);
  -o-transform: translate(0, 5px);
  transform: translate(0, 5px);
}
.component-editor .component-editor-footer .component-editor-footer-title {
  flex: 1 auto;
  padding: 0 20px;
}
.component-editor .component-editor-body {
  padding: 30px 40px;
  flex: 1 auto;
  overflow-y: auto;
}
.component-editor .component-editor-body .form-group small {
  padding: 5px !important;
}
.component-editor .component-editor-body .form-group small.hint {
  margin: 0 5px !important;
  font-weight: 300;
}
.component-editor .component-editor-body .form-group-checkbox .input-checkbox-wrapper {
  padding: 0 10px;
}
.component-editor .refresh-button {
  padding-top: 27px;
}
.component-editor .refresh-button button {
  line-height: 25px;
}
.component-editor-workflow .variables-editor-remove {
  display: none !important;
}
.component-editor-transformation {
  padding: 30px;
}
.component-editor-destination {
  position: relative;
  z-index: 1;
}
.connection-picker .selectize-dropdown-content {
  max-height: 384px !important;
}
.connection-picker .dropdown-menu {
  top: 110%;
}
.connection-picker .connection-picker-item {
  display: flex;
  flex-direction: row;
  padding: 5px;
}
.connection-picker .connection-picker-item .connection-picker-item-image {
  width: 32px;
  margin-right: 10px;
}
.connection-picker .connection-picker-item .connection-picker-item-image img {
  width: 100%;
}
.connection-picker .connection-picker-item .connection-picker-item-name {
  height: 32px;
  line-height: 32px;
  font-weight: 600;
}
.connection-picker .connection-picker-container {
  border: 1px solid #E6E6E6;
  background-color: #E6E6E6;
  border-radius: 4px;
  padding: 3px 10px 5px;
  margin: 10px 0 5px;
}
.connection-picker .connection-picker-buttons {
  position: relative;
  padding-top: 10px;
}
.adwords-source-editor .report-type {
  white-space: nowrap;
}
.component-form .list-group li {
  border: 0 none;
  cursor: pointer;
  background-color: #FFF;
}
.component-form .list-group li.active {
  color: #0AB3E5;
}
.component-form .list-group li.active:hover {
  background-color: transparent;
}
.filter-variables-editor .filter-section {
  position: relative;
  padding-left: 20px;
}
.filter-variables-editor .filter-section .filter-section-connector {
  position: absolute;
  z-index: 1;
  top: 33px;
  left: 0;
  width: 100px;
  border-left: 1px solid #CCCCCC;
  pointer-events: none;
}
.filter-variables-editor .filter-section .filter-section-connector .filter-section-connector-label {
  position: absolute;
  right: 90px;
  background-color: #CCCCCC;
  padding: 1px 5px;
  border-radius: 2px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 13px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  pointer-events: auto;
}
.filter-variables-editor .filter-section .filter-section-connector .filter-section-connector-label span {
  position: relative;
  display: inline-block;
  padding-right: 12px;
}
.filter-variables-editor .filter-section .filter-section-connector .filter-section-connector-label span:after {
  font-family: 'FontAwesome';
  content: '\f0d7';
  right: 1px;
  position: absolute;
  top: 1px;
}
.filter-variables-editor .filter-section .filter-section-connector .filter-section-connector-line {
  border-top: 1px solid #CCCCCC;
  width: 20px;
  height: 58px;
}
.filter-variables-editor .filter-section .filter-section-connector .filter-section-connector-line:last-child {
  height: 0;
}
.filter-variables-editor .filter-section .filter-sections-connector-container {
  z-index: 0;
  width: 50px;
  border-left: 1px solid #CCCCCC;
  position: absolute;
  top: 0;
  left: 0;
}
.filter-variables-editor .filter-section .filter-sections-connector-container .filter-sections-connector-line {
  width: 6 0px;
  border-bottom: 1px solid #CCCCCC;
}
.filter-variables-editor .filter-section .filter-section {
  margin-left: 50px;
}
.notify-editor {
  padding: 50px 100px;
}
.notify-editor textarea {
  height: auto !important;
}
.cross-join-editor .cross-join-editor-texts {
  padding-bottom: 10px;
}
.cross-join-editor .cross-join-editor-schemas {
  display: flex;
  flex-direction: column;
}
.cross-join-editor .cross-join-editor-schemas .cross-join-editor-schema h1 {
  font-size: 18px;
  font-weight: 300;
}
.form-group-options {
  padding-left: 5px;
}
.form-group-options .radio {
  padding-bottom: 5px;
}
.bing-ads-accounts {
  padding-bottom: 30px;
}
.bing-ads-accounts .bing-ads-label {
  line-height: 18px;
  padding-left: 5px;
  color: #808080;
  font-weight: 300;
}
.bing-ads-accounts .bing-ads-list {
  border: 1px solid #CCCCCC;
  border-radius: 5px;
}
.bing-ads-accounts .bing-ads-list .bing-ads-list-header {
  border-radius: 7px 7px 0 0;
  height: 32px;
  border-bottom: 1px solid #CCCCCC;
  background-color: #f9f9f9;
  position: relative;
}
.bing-ads-accounts .bing-ads-list .bing-ads-list-header .search-btn {
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 1;
}
.bing-ads-accounts .bing-ads-list .bing-ads-list-header .search-btn button {
  background-color: transparent;
  border: 0 none;
}
.bing-ads-accounts .bing-ads-list .bing-ads-list-header input {
  top: 4px;
  left: 4px;
  padding-left: 22px;
  position: absolute;
  border: 1px solid #CCCCCC;
  width: 50%;
  line-height: 19px;
  z-index: 0;
  border-radius: 4px 0 0 0;
}
.bing-ads-accounts .bing-ads-list .bing-ads-list-header .btn-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 22px;
  line-height: 16px;
  padding: 0 7px;
  color: #808080;
}
.bing-ads-accounts .bing-ads-list .bing-ads-list-header .btn-remove i {
  font-size: 10px;
}
.bing-ads-accounts .bing-ads-list .bing-ads-list-scroll {
  padding: 10px;
  overflow-y: scroll;
  height: 400px;
  border-radius: 0 0 7px 7px;
}
.bing-ads-accounts .bing-ads-list .loader {
  margin-top: 70px;
}
.bing-ads-accounts .bing-ads-list .bing-ads-list-item .highlighted {
  background-color: #ffe8ad;
}
.bing-ads-accounts .bing-ads-list .bing-ads-list-item i {
  cursor: pointer;
  width: 12px;
  text-align: center;
}
.bing-ads-accounts .bing-ads-list .bing-ads-list-item i.fa-refresh {
  font-size: 12px;
  font-weight: 400;
}
.bing-ads-accounts .bing-ads-list .bing-ads-list-item a {
  display: none;
}
.bing-ads-accounts .bing-ads-list .bing-ads-list-item.loaded strong {
  color: #3F3F3F;
  font-weight: 600;
}
.bing-ads-accounts .bing-ads-list .bing-ads-list-item strong {
  display: inline-block;
  padding-left: 3px;
  color: #808080;
  font-weight: 400;
}
.bing-ads-accounts .bing-ads-list .bing-ads-list-item div.collapse-wrapper {
  padding: 2px 0 2px 33px;
}
.bing-ads-accounts .bing-ads-list .bing-ads-list-item div.collapse-wrapper div.selected span {
  color: #0AB3E5;
}
.bing-ads-accounts .bing-ads-list .bing-ads-list-item div.collapse-wrapper small {
  display: inline-block;
  margin-bottom: 7px;
}
.bing-ads-accounts .bing-ads-list .bing-ads-list-item:hover a {
  display: inline-block;
}
.limit-editor .input-text {
  padding-top: 35px;
  transform: translateX(-10px);
}
.sample-editor .input-text {
  padding-top: 35px;
  transform: translateX(-10px);
}
.window-editor .partition-variables-editor,
.window-editor .sort-variables-editor {
  margin-bottom: 30px;
}
.window-editor .variables-editor {
  padding-top: 10px;
  padding-bottom: 10px;
}
.join-editor .selectize-control .selectize-dropdown .description {
  font-size: 13px;
  display: block;
  opacity: 0.5;
  width: 100%;
  text-overflow: initial;
  overflow: hidden;
}
.union-editor .union-variables-editor {
  padding: 10px 0;
}
.filter-editor {
  width: 100%;
}
.filter-editor .filter-variables-editor {
  padding: 10px 0 10px 20px;
}
.assert-editor .filter-variables-editor {
  padding: 10px 0 10px 20px;
}
.aggregate-editor .variables-editor {
  padding-top: 10px;
  padding-bottom: 10px;
}
.aggregate-editor .partition-variables-editor {
  margin-bottom: 20px;
}
.cube-editor .variables-editor {
  padding-top: 10px;
  padding-bottom: 10px;
}
.cube-editor .cube-variables-editor {
  margin-bottom: 20px;
}
.facebook-editor .facebook-fields {
  position: relative;
  border-radius: 5px;
  border: 1px solid #CCCCCC;
  padding-top: 40px;
  overflow: hidden;
}
.facebook-editor .facebook-fields .facebook-fields-search {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #CCCCCC;
  z-index: 1;
}
.facebook-editor .facebook-fields .facebook-fields-search i {
  position: absolute;
  top: 12px;
  left: 11px;
  color: #CCCCCC;
}
.facebook-editor .facebook-fields .facebook-fields-search input {
  width: 100%;
  border: 0 none;
  padding: 10px 10px 10px 32px;
}
.facebook-editor .facebook-fields .facebook-fields-list {
  max-height: 240px;
  min-height: 240px;
  overflow-y: auto;
}
.facebook-editor .facebook-fields .facebook-fields-list .list-group-item {
  padding-left: 10px !important;
  padding-right: 10px !important;
  cursor: pointer;
}
.facebook-editor .facebook-fields .facebook-fields-list .list-group-item input {
  margin-right: 6px;
}
.facebook-editor .facebook-fields .facebook-fields-list .list-group-item:hover {
  background-color: #f3f3f3;
}
.facebook-editor .facebook-fields .facebook-fields-list .list-group-item .highlighted {
  background-color: #ffe093;
}
.facebook-editor .facebook-fields .facebook-fields-list .list-group-item span {
  font-weight: 400;
  color: #3F3F3F;
}
.facebook-editor .facebook-fields .facebook-fields-list .list-group-item .label {
  font-weight: 300;
  color: #808080;
  font-size: 12px;
  background-color: #eee;
}
.facebook-editor .facebook-fields .facebook-fields-list .list-group-item.selected {
  background-color: #d7f5fd;
}
.file-names-pattern .file-name {
  margin-bottom: 10px;
  width: 380px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.file-names-pattern .file-name:last-child {
  margin-bottom: 0;
}
.file-names-pattern .file-name .fa {
  margin-right: 5px;
}
.execute-sql-editor .loader {
  border: 1px solid #E6E6E6;
  width: 100%;
  padding: 20px 0;
  border-radius: 5px;
}
.execute-sql-editor .loader .loader-inner {
  text-align: center;
}
.execute-sql-editor .well {
  text-align: center;
}
.execute-sql-editor a.disabled {
  color: #CCCCCC;
  pointer-events: none;
}
.component-name-editor-new {
  position: relative;
  padding: 10px 35px 15px;
  margin-left: 30px;
  border-left: 1px solid #E6E6E6;
  z-index: 1000;
  width: 50%;
  z-index: 0;
}
.component-name-editor-new input {
  width: 100%;
  border: 1px solid transparent;
  border-bottom: 1px dashed #CCCCCC;
  font-size: 24px;
  font-weight: 600;
}
.component-name-editor-new input.ng-invalid {
  border-bottom-color: #FFA654 !important;
}
.component-name-editor-new input:focus {
  border-bottom-color: #0AB3E5;
}
.component-name-editor-new input::-webkit-input-placeholder {
  color: #CCCCCC;
}
.component-name-editor-new input::-moz-placeholder {
  color: #CCCCCC;
}
.component-name-editor-new input:-ms-input-placeholder {
  color: #CCCCCC;
}
.component-name-editor-new input:-moz-placeholder {
  color: #CCCCCC;
}
.component-name-editor-new .component-name-editor-icon-info {
  position: absolute;
  bottom: 24px;
  right: 16px;
  color: #E6E6E6;
  font-size: 16px;
}
.component-name-editor-new .component-name-editor-icon-edit {
  display: none;
  position: absolute;
  top: 20px;
  left: -30px;
  color: #E6E6E6;
  font-size: 24px;
}
.component-name-editor-new:hover .component-name-editor-icon-edit {
  display: block;
}
.component-name-editor-new .form-group {
  margin-bottom: 0 !important;
}
.component-name-editor-new .form-group.ng-invalid .input-error-message {
  display: block !important;
}
.component-name-editor-new .input-error-message {
  position: absolute;
  bottom: -20px;
  font-size: 12px;
}
.component-name-editor-new .tooltip {
  max-width: 400px !important;
}
.component-name-editor-new .tooltip .tooltip-inner {
  width: 400px !important;
  max-width: 400px !important;
  font-size: 13px !important;
  font-style: italic;
  text-align: left;
}
.input-text-style {
  font-size: 24px;
  font-weight: 600;
}
.bing-ads-source-editor .refresh-button {
  padding-top: 27px;
}
.bing-ads-source-editor .refresh-button button {
  line-height: 25px;
}
.salesforce-source-editor .refresh-button {
  padding-top: 27px;
}
.salesforce-source-editor .refresh-button button {
  line-height: 25px;
}
.salesforce-source-editor .chunk-size {
  margin-bottom: 10px;
}
.database-source-editor .parallel .input-error-message {
  display: block !important;
}
.rest-api-authentication .btn-group-select {
  margin-bottom: 20px;
}
.rest-api-authentication .form-control-feedback {
  pointer-events: auto !important;
}
.rest-api-authentication .form-control-feedback .fa-eye-slash {
  color: #808080;
}
.rest-api-source-editor .CodeMirror-gutters {
  width: 29px !important;
}
.schema-mapping-salesforce-delete .fields-collection-autofill button {
  display: none;
}
.schema-mapping-salesforce-delete .fields-collection-row-add .editor-button {
  pointer-events: none;
  opacity: 0.3;
}
.destination-editor .dead {
  color: lightgrey;
  text-decoration: line-through;
}
.database-advanced-options-destination small.input-checkbox {
  display: block;
  transform: translate(18px, -10px);
  pointer-events: none;
}
.database-advanced-options-destination .form-group-checkbox {
  margin-bottom: 0px;
}
.database-advanced-options-destination .well {
  background-color: #eee;
  box-shadow: none;
}
.main-wrapper {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}
.main-wrapper .sidebar-wrapper {
  height: 100vh;
  width: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  -webkit-transition: left 250ms ease-out;
  -o-transition: left 250ms ease-out;
  transition: left 250ms ease-out;
}
.main-wrapper .app-container-welcome {
  margin-left: 50px;
}
.main-wrapper .page-content-wrapper {
  position: absolute;
  top: 0;
  z-index: 0;
  width: 100%;
  -webkit-transition: left 250ms ease-out;
  -o-transition: left 250ms ease-out;
  transition: left 250ms ease-out;
}
.main-wrapper .page-content-wrapper .page-scroll-wrapper {
  position: relative;
  z-index: 0;
}
.main-wrapper .sidebar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.75);
}
.main-wrapper .page-top-header {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #CCCCCC;
}
.main-wrapper .sidebar-toggle {
  position: absolute;
  top: 10px;
  font-size: 22px;
  z-index: 2;
  cursor: pointer;
  -webkit-transition: left 250ms ease-out;
  -o-transition: left 250ms ease-out;
  transition: left 250ms ease-out;
}
.main-wrapper .sidebar-toggle.open i {
  color: #fff;
}
body {
  overflow: hidden;
  overflow-x: auto;
  overflow-anchor: none;
}
.app {
  padding-top: 50px;
  min-height: 100vh;
  background-image: -webkit-linear-gradient(top, #FFF 0%, #E6E6E6 100%);
  background-image: -o-linear-gradient(top, #FFF 0%, #E6E6E6 100%);
  background-image: linear-gradient(to bottom, #FFF 0%, #E6E6E6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
  background-repeat: repeat-x;
}
.app p.lead {
  font-size: 35px;
  padding-bottom: 50px;
}
.app .panel {
  border: 0 none;
  margin: 0 auto 70px;
  width: 369px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 0 2px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0 2px 1px rgba(0, 0, 0, 0.1);
}
.app .panel .loader {
  padding: 50px 0;
}
.app .panel .panel-heading {
  padding: 30px 0px 10px 0px;
}
.app .panel .panel-heading .user-logo {
  margin: 0 auto;
}
.app .panel .panel-body {
  padding: 0;
}
.app .panel .panel-body .list-group {
  padding: 0;
  margin: 0;
}
.app .panel .panel-body .list-group .list-group-item {
  border-top: 1px solid #E6E6E6;
  border-bottom: none 0;
  padding: 20px;
  cursor: pointer;
}
.app .panel .panel-body .list-group .list-group-item .media .media-left {
  padding-right: 15px;
}
.app .panel .panel-body .list-group .list-group-item .media .media-left .media-object {
  width: 44px;
}
.app .panel .panel-body .list-group .list-group-item .media .media-heading {
  padding: 0;
  margin: 0;
}
.app .panel .panel-body .list-group .list-group-item .media .media-heading.title-only {
  line-height: 44px;
  font-weight: 400;
}
.app .panel .panel-body .list-group .list-group-item:hover {
  background-color: #E6E6E6;
}
.app .panel .panel-body .list-group.accounts-list .list-group-item {
  border: none;
  padding: 0px;
  margin: 0;
  cursor: pointer;
}
.app .panel .panel-body .list-group.accounts-list .list-group-item a {
  display: block;
  border-top: 1px solid #E6E6E6;
  border-bottom: none 0;
  padding: 20px;
  cursor: pointer;
}
.app .panel .panel-footer {
  background-color: #3F3F3F;
  border-radius: 0 0 8px 8px;
  padding: 0;
  display: flex;
}
.app .panel .panel-footer button {
  color: #CCCCCC;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  padding: 15px;
  text-align: center;
  margin-top: 0 !important;
}
.app .panel .panel-footer button i {
  color: #FFD260;
}
.app .panel .panel-footer button:hover {
  color: #fff;
  text-decoration: none;
}
.app .panel .panel-footer button:active {
  color: #808080;
  text-decoration: none;
}
.app .panel .panel-footer button svg {
  margin-right: 20px;
}
.app .panel .panel-footer button.new-account {
  border-left: 1px solid #595959;
}
.account {
  margin: 37px;
}
.account .gavatar {
  text-align: center;
}
.account .gavatar img {
  background-color: #fff;
  padding: 5px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}
.account .invite-email {
  width: 320px;
}
.account th {
  text-align: center;
  background-color: #bfeefc;
  border-bottom-width: 0 !important;
}
.account td {
  vertical-align: middle !important;
}
.account td:not(:first-child) {
  text-align: center;
}
.account td.user {
  padding: 10px;
}
.account td.user img {
  float: left;
  width: 42px;
  height: 42px;
  margin-right: 10px;
}
.account-settings .members-list li img {
  width: 42px;
  height: 42px;
  margin-right: 10px;
}
.billing .update-credit-card-btn {
  margin-bottom: 20px;
  color: #fff;
}
.billing .invoices-btn {
  margin-bottom: 20px;
  margin-left: 10px;
}
.settings {
  max-width: calc(100% - 100px);
}
.settings .form-group {
  max-width: 600px;
}
.settings.container {
  margin: 0;
}
.settings .settings-header {
  padding: 10px 20px;
  display: none;
}
.settings .settings-body {
  padding: 20px 20px 0 20px;
}
.settings .settings-body.billing {
  padding: 40px 20px 0 20px;
  margin-bottom: 20px;
}
.settings .account-actions .btn-group button:last-child {
  padding-right: 0px;
}
.settings h2 {
  border-bottom: 1px solid #d9d9d9;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 14px;
  padding: 0 0 7px;
  margin: 7px 0 20px;
  color: #0AB3E5;
}
.settings .delete {
  width: 600px;
}
.settings .delete .btn:not(:nth-child(2)) {
  margin-left: 20px;
}
.settings hr {
  border-top-color: #d9d9d9;
}
.settings .small {
  color: #808080;
}
.settings .small .text-danger {
  color: #ed1c24;
}
.settings .table thead tr th {
  font-weight: 400;
}
.settings .table tbody tr td {
  vertical-align: middle;
}
.settings .nav-stacked li {
  margin: 0;
  border-top: 1px solid #eee;
}
.settings .nav-stacked li:first-child {
  border-top: 0 none;
}
.settings .nav-stacked li:focus {
  border-top: 1px solid #eee;
}
.settings .nav-stacked li a {
  border-radius: 0;
  margin-top: -1px;
  background-color: transparent;
  color: #808080;
  border-left: 3px solid #fff;
  font-size: 14px;
  font-weight: 300;
  padding: 16px 18px;
  -webkit-transition: border-color 50ms;
  -o-transition: border-color 50ms;
  transition: border-color 50ms;
}
.settings .nav-stacked li a:active,
.settings .nav-stacked li a:focus {
  background-color: transparent;
  color: #AFAFAF;
}
.settings .nav-stacked li a:hover {
  border-left-color: #CCCCCC;
}
.settings .nav-stacked li a .badge {
  float: right;
  color: #fff;
  background-color: #CCCCCC;
}
.settings .nav-stacked li.active a {
  border-left-color: #0AB3E5;
}
.settings .list-webhooks {
  list-style-type: none;
  padding-left: 20px;
}
.settings .media {
  overflow: visible;
}
.settings .media .media-body {
  overflow: visible;
}
.settings .members-add {
  padding-bottom: 20px;
}
.settings .members-item {
  padding: 40px;
}
.settings .members-item img {
  float: left;
  margin-right: 40px;
  max-width: 140px;
}
.settings .members-item h1 {
  padding: 20px 0 0;
}
.settings .form-control-feedback {
  top: 38px !important;
  position: absolute;
  right: 0;
  cursor: pointer;
  z-index: 1;
  pointer-events: all;
}
.clusters .btn-sm {
  margin-top: 5px;
}
.clusters .form-inline {
  padding: 5px 15px;
}
.auth-container {
  display: flex;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background: #0AB3E5;
}
.auth-container .container {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.auth-container .panels-container {
  display: flex;
  flex-flow: row;
  background-color: #fff;
  border-radius: 6px;
  z-index: 2;
  -webkit-box-shadow: 0 0px 15px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0px 15px 4px rgba(0, 0, 0, 0.1);
}
.auth-container .panel {
  display: flex;
  flex-flow: column;
  z-index: 2;
  width: 530px;
  padding: 20px 30px 30px 30px;
  margin-bottom: 0;
  box-shadow: none;
  border: none;
}
.auth-container .panel.referral {
  padding: 0;
  border-right: 1px solid #e6e6e6;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.auth-container .panel.referral .integrateio-notification {
  width: 100%;
  height: 487px;
}
.auth-container .panel.referral .integrateio-notification .ticker-wrap {
  display: none;
}
.auth-container .panel .form-group {
  margin: 15px 0px;
}
.auth-container .panel .alert-danger {
  border: 0 none;
  background-color: #FFA654;
  color: #fff;
}
.auth-container .panel input {
  border: 1px solid #E6E6E6;
  font-size: 14px;
  font-weight: 300;
  border-radius: 8px;
  padding: 16px;
  height: 100%;
}
.auth-container .panel input:focus,
.auth-container .panel input:active {
  box-shadow: none;
  outline: none;
  border: 1px solid #0AB3E5;
}
.auth-container .panel input:hover {
  border-color: #0AB3E5;
}
.auth-container .panel button.btn {
  text-transform: uppercase;
  letter-spacing: 1px;
}
.auth-container .panel button.btn-primary[disabled] {
  background-color: #0ab3e5;
  border-color: transparent;
}
.auth-container .panel .panel-links {
  font-size: 15px;
  line-height: 17px;
  text-align: center;
}
.auth-container .panel .panel-links span {
  color: #8c8c8c;
}
.auth-container .panel .panel-links a {
  color: #595959;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(63, 63, 63, 0.2);
}
.auth-container .panel .panel-links a:hover {
  border-bottom: 1px solid #3F3F3F;
}
.auth-container .panel .panel-header {
  margin-top: 15px;
  min-height: 50px;
  padding: 0px 10px;
  position: relative;
}
.auth-container .panel .panel-header .panel-title {
  font-size: 22px;
  line-height: 1.33;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 80px;
  width: 350px;
}
.auth-container .panel .panel-header .panel-logo {
  float: left;
  margin-right: 20px;
  width: 50px;
}
.auth-container .panel .panel-footer {
  border-radius: 5px;
  margin: 0px 15px 5px 15px;
  padding: 17px 22px;
}
.auth-container .referral-image {
  background-image: url(https://assets.xplenty.com/801da49ff1053bfd04511b65ad83ae7f.png);
  background-size: cover;
  background-position: 100%;
  background-repeat: no-repeat;
  height: 260px;
}
.auth-container .referral-title {
  text-align: center;
  margin-bottom: 20px;
}
.auth-container .referral-text {
  text-align: center;
  font-size: 16px;
}
.auth-container .referral-text-container {
  padding: 10px;
}
.auth-container .referral-link {
  display: flex;
  justify-content: center;
}
.auth-container .referral-link .referral-button {
  background-color: #f1315b;
  border: none;
  padding: 15px 70px;
  color: #fff;
  margin-top: 20px;
  font-size: 18px;
  margin-bottom: 20px;
}
sign-up,
confirmation,
members-invitation,
forgot-password,
reset-password {
  z-index: 2;
}
.page.thank-you {
  height: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  resize: vertical;
  overflow: auto;
  z-index: 3;
  position: relative;
}
.page.thank-you .container {
  flex-flow: column;
  max-width: 800px;
}
.page.thank-you h1 {
  color: #fff;
  font-size: 35px;
}
.page.thank-you h3 {
  color: #fff;
  font-size: 25px;
  font-weight: 300;
  margin-top: 0px;
}
.designer-controls {
  min-width: 540px;
  float: right;
}
.designer-controls .margin-right {
  margin-right: 10px;
}
.designer-controls .btn {
  border: 0 none;
}
.designer-controls a {
  cursor: pointer;
}
.packages-list .packages-list-heading {
  padding-bottom: 20px;
}
.packages-list .packages-list-heading .packages-list-search-icon {
  position: absolute;
  top: 10px;
  left: 30px;
  font-size: 26px;
  opacity: 0.1;
}
a {
  cursor: pointer;
}
a:focus,
a:active,
button::-moz-focus-inner,
input[type='reset']::-moz-focus-inner,
input[type='button']::-moz-focus-inner,
input[type='submit']::-moz-focus-inner,
select::-moz-focus-inner,
input[type='file'] > input[type='button']::-moz-focus-inner {
  border: 0;
  outline: 0;
}
.alert {
  word-wrap: break-word !important;
}
.alert i.fa {
  margin-right: 7px;
}
.btn-group-select {
  width: 100%;
}
.btn-group-select .btn {
  color: #808080;
  font-weight: 400;
  font-size: 13px;
  padding: 6px 12px 6px;
  background-color: #fff;
}
.btn-group-select .btn.active {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #eee;
  color: #0AB3E5;
  border-color: #CCCCCC;
  font-weight: 600;
}
.label-with-hint {
  display: inline-block;
  position: relative;
}
.label-with-hint .label-with-hint-icon {
  position: absolute;
  top: 2px;
  right: -17px;
  color: #E6E6E6;
  font-size: 15px;
}
.unauthorized {
  cursor: not-allowed !important;
  filter: alpha(opacity=65);
  opacity: 0.65;
}
.unauthorizeda,
.unauthorized a {
  pointer-events: none;
  cursor: not-allowed !important;
}
.unauthorized[ng-click] {
  cursor: not-allowed !important;
}
.btn.btn-md {
  height: 41px;
  padding: 10px 16px;
}
.btn.unauthorized {
  position: relative;
  cursor: not-allowed;
  color: #333;
  background-color: #fff;
  border-color: #ccc;
  filter: alpha(opacity=65);
  opacity: 0.65;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #CCCCCC !important;
}
.btn.unauthorized:focus,
.btn.unauthorized.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn.unauthorized:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn.unauthorized:active,
.btn.unauthorized.active,
.open > .dropdown-toggle.btn.unauthorized {
  color: #333;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
}
.btn.unauthorized:active:hover,
.btn.unauthorized.active:hover,
.open > .dropdown-toggle.btn.unauthorized:hover,
.btn.unauthorized:active:focus,
.btn.unauthorized.active:focus,
.open > .dropdown-toggle.btn.unauthorized:focus,
.btn.unauthorized:active.focus,
.btn.unauthorized.active.focus,
.open > .dropdown-toggle.btn.unauthorized.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn.unauthorized.disabled:hover,
.btn.unauthorized[disabled]:hover,
fieldset[disabled] .btn.unauthorized:hover,
.btn.unauthorized.disabled:focus,
.btn.unauthorized[disabled]:focus,
fieldset[disabled] .btn.unauthorized:focus,
.btn.unauthorized.disabled.focus,
.btn.unauthorized[disabled].focus,
fieldset[disabled] .btn.unauthorized.focus {
  background-color: #fff;
  border-color: #ccc;
}
.btn.unauthorized .badge {
  color: #fff;
  background-color: #333;
}
.btn.unauthorized:focus,
.btn.unauthorized.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn.unauthorized:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn.unauthorized:active,
.btn.unauthorized.active,
.open > .dropdown-toggle.btn.unauthorized {
  color: #333;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
}
.btn.unauthorized:active:hover,
.btn.unauthorized.active:hover,
.open > .dropdown-toggle.btn.unauthorized:hover,
.btn.unauthorized:active:focus,
.btn.unauthorized.active:focus,
.open > .dropdown-toggle.btn.unauthorized:focus,
.btn.unauthorized:active.focus,
.btn.unauthorized.active.focus,
.open > .dropdown-toggle.btn.unauthorized.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn.unauthorized.disabled:hover,
.btn.unauthorized[disabled]:hover,
fieldset[disabled] .btn.unauthorized:hover,
.btn.unauthorized.disabled:focus,
.btn.unauthorized[disabled]:focus,
fieldset[disabled] .btn.unauthorized:focus,
.btn.unauthorized.disabled.focus,
.btn.unauthorized[disabled].focus,
fieldset[disabled] .btn.unauthorized.focus {
  background-color: #fff;
  border-color: #ccc;
}
.btn.unauthorized .badge {
  color: #fff;
  background-color: #333;
}
.btn.unauthorized[data-action='submit'].loading::after {
  border-top-color: #333;
  border-left-color: #333;
}
.btn[data-action='submit'] {
  -webkit-transition: 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) padding !important;
  -moz-transition: 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) padding !important;
  -ms-transition: 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) padding !important;
  -o-transition: 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) padding !important;
  transition: 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) padding !important;
  padding-right: 12px;
}
.btn[data-action='submit'].loading {
  position: relative;
  padding-right: 36px;
}
.btn[data-action='submit'].loading::after {
  -webkit-animation: offline-rotation 0.7s linear infinite;
  animation: offline-rotation 0.7s linear infinite;
  -webkit-backface-visibility: hidden;
  border-radius: 50%;
  content: ' ';
  display: block;
  position: absolute;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 1em;
  width: 1em;
  border: 2px solid rgba(0, 0, 0, 0);
  border-top-color: #3F3F3F;
  border-left-color: #3F3F3F;
  opacity: 1;
}
.btn-md[data-action='submit'] {
  padding-right: 16px;
}
.btn-md[data-action='submit'].loading {
  padding-right: 38.4px;
}
.btn-lg[data-action='submit'] {
  padding-right: 22px;
}
.btn-lg[data-action='submit'].loading {
  padding-right: 44px;
}
.btn-sm[data-action='submit'] {
  padding-right: 10px;
}
.btn-sm[data-action='submit'].loading {
  padding-right: 30px;
}
.btn-xs[data-action='submit'] {
  padding-right: 5px;
}
.btn-xs[data-action='submit'].loading {
  padding-right: 30px;
}
.btn-default[data-action='submit'].loading::after {
  border-top-color: #333;
  border-left-color: #333;
}
.btn-primary[data-action='submit'].loading::after {
  border-top-color: #FFF;
  border-left-color: #FFF;
}
.btn-success[data-action='submit'].loading::after {
  border-top-color: #3F3F3F;
  border-left-color: #3F3F3F;
}
.btn-info[data-action='submit'].loading::after {
  border-top-color: #3F3F3F;
  border-left-color: #3F3F3F;
}
.btn-warning[data-action='submit'].loading::after {
  border-top-color: #3F3F3F;
  border-left-color: #3F3F3F;
}
.btn-danger[data-action='submit'].loading::after {
  border-top-color: #fff;
  border-left-color: #fff;
}
input[type='checkbox'] {
  -webkit-appearance: checkbox !important;
  -moz-appearance: checkbox !important;
  appearance: checkbox !important;
}
input[type='checkbox']:hover {
  -webkit-appearance: checkbox !important;
  -moz-appearance: checkbox !important;
  appearance: checkbox !important;
}
input:focus {
  outline: none !important;
}
div[data-notify='container'],
.errors-notify,
.success-notify {
  font-size: 14px;
  font-family: "proxima-nova", sans-serif;
  padding: 1em;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
}
div[data-notify='container'].alert-dismissible,
.errors-notify.alert-dismissible,
.success-notify.alert-dismissible {
  padding-right: 2.5em;
}
div[data-notify='container'] [data-notify='title']:empty,
.errors-notify [data-notify='title']:empty,
.success-notify [data-notify='title']:empty {
  display: none;
}
div[data-notify='container'] samp,
.errors-notify samp,
.success-notify samp,
div[data-notify='container'] code,
.errors-notify code,
.success-notify code {
  font-size: 0.9em;
  padding: 0.3em;
}
.modal-body div[data-notify='container'] {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.xplenty-icons {
  display: none;
  width: 0;
  height: 0;
}
.tooltip .tooltip-arrow {
  border: 1px solid transparent;
  background-color: transparent;
}
.tooltip .tooltip-inner {
  border: 1px solid #fff;
  font-size: 14px;
  font-weight: 400;
  padding: 7px 12px;
  -webkit-box-shadow: 0 0px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.175);
}
.tooltip.tooltip-error .tooltip-arrow {
  border-top-color: #ffe8d4;
}
.tooltip.tooltip-error .tooltip-inner {
  background-color: #ffe8d4;
  border-color: #ffe8d4;
  color: #ff8b21;
  font-weight: 400;
  padding: 5px 10px;
}
.dashboard {
  width: 1496px;
  height: 1070px;
  background-image: url(https://assets.xplenty.com/fe75616ab2c92448d4c54f5838355b8d.png);
  background-repeat: no-repeat;
  background-position: 20px 20px;
}
div[ui-sref] {
  cursor: pointer;
}
.app-container-fluid {
  width: 100%;
}
.media-xplenty .media .media-left {
  padding-right: 15px;
}
.media-xplenty .media .media-left .media-object {
  width: 44px;
}
.media-xplenty .media .media-heading {
  padding: 0;
  margin: 0;
}
.media-xplenty .media .media-heading.title-only {
  line-height: 44px;
  font-weight: 400;
}
.container-max {
  margin: 0;
}
.highlighted-text {
  background: #FFA654;
}
[data-notify='container'] {
  padding: 2px 5px;
  font-size: 12px;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 150ms linear;
  -moz-transition: opacity 150ms linear;
  -o-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}
.fade.in {
  opacity: 1 !important;
}
.btn-group-default .btn {
  color: #3F3F3F;
}
.btn-group-default .btn:active,
.btn-group-default .btn.active {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #0AB3E5;
}
.page-container {
  padding: 50px;
}
.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.form-control-search input {
  padding-left: 30px;
}
.form-control-search .form-control-feedback {
  top: 0;
  left: 0;
}
.nav-tabs li a {
  cursor: pointer;
  border: 1px solid transparent;
  border-bottom: 3px solid transparent;
  color: #CCCCCC;
}
.nav-tabs li.active > a,
.nav-tabs li.active > a:hover,
.nav-tabs li.active > a:focus {
  border: 1px solid transparent;
  color: #0AB3E5;
  border-bottom: 3px solid #0AB3E5;
  cursor: default;
}
.panel .panel-heading,
.panel .panel-body,
.panel .panel-footer {
  border: 0 none;
}
/*
    MIXINS
*/
.ssh-key-fingerprint {
  display: block;
  font-weight: normal;
  color: #999;
  border: none;
  background-color: transparent;
  padding: 3px 0px 0px 0px;
  margin-bottom: 3px;
}
.date-tooltip {
  border-bottom: 1px dashed #999999;
}
.offline-ui {
  bottom: initial !important;
}
.offline-ui.offline-ui-up {
  display: none;
}
a[target='_blank'].new-window:after {
  color: #3f3f3f;
  font: normal normal normal 12px/1 FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
  display: inline-block;
  content: '\f08e';
  margin: 0px 2px 0px 5px;
  vertical-align: text-top;
}
.notify.animated {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}
span.left-separator:before {
  color: #CCCCCC;
  padding-left: 4px;
  margin-right: 4px;
  content: '•';
}
/* This style is used by HTML declared in en.json, 
 rendered via translate={} of some elements. */
.linkOpensNewTab {
  cursor: alias;
}
.horizontal-line {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #E6E6E6;
}
xp-input {
  width: 100%;
}
xp-input.input-sm {
  padding: 1px 10px;
}
xp-input.disabled {
  background-color: #E6E6E6;
  cursor: not-allowed;
  pointer-events: none;
}
xp-input input[disabled] {
  background-color: #E6E6E6;
  cursor: not-allowed;
  pointer-events: none;
}
xp-form-validation .errors-notify,
.connection-form .errors-notify,
xp-form-validation .success-notify,
.connection-form .success-notify {
  display: inline-block;
  position: absolute;
  transition: all 0.5s ease-in-out 0s;
  z-index: 5000;
  bottom: 100px;
  left: 0;
  right: 0;
  margin: 0 50px;
  height: 0;
  padding: 0;
}
xp-form-validation .errors-notify.show-notify,
.connection-form .errors-notify.show-notify,
xp-form-validation .success-notify.show-notify,
.connection-form .success-notify.show-notify {
  height: auto;
  padding: 1em;
}
.launchpad .list-group {
  max-height: calc(100vh - 500px);
  overflow: scroll;
}
.list-group .list-group-item {
  border-bottom: 1px solid #E6E6E6;
}
.input-error-message {
  display: block;
}
textarea.ng-invalid.ng-touched.ng-dirty,
select.ng-invalid.ng-touched.ng-dirty,
input[type='text'].ng-invalid.ng-touched.ng-dirty,
input[type='email'].ng-invalid.ng-touched.ng-dirty,
input[type='password'].ng-invalid.ng-touched.ng-dirty,
input[type='number'].ng-invalid.ng-touched.ng-dirty,
.form-control.ng-invalid.ng-invalid.ng-touched.ng-dirty {
  color: #FFA654 !important;
  background-color: #fff6ed;
  border-color: #FFA654;
}
.error-message,
.input-error-message {
  color: #FFA654;
  font-style: italic;
  padding: 5px 0 0 0;
}
.form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form-control:hover {
  border-color: #0AB3E5;
}
.bootstrap-select:focus,
.bootstrap-select:hover {
  outline: none;
}
.bootstrap-select:focus > button.dropdown-toggle,
.bootstrap-select:hover > button.dropdown-toggle {
  border-color: #0AB3E5;
}
.bootstrap-select > button.dropdown-toggle:focus {
  outline: none !important;
  border-color: #0AB3E5;
}
.bootstrap-select > button {
  font-size: 14px !important;
}
.pwd-strength {
  font-size: 0px;
  margin-top: 10px;
}
.pwd-strength .pwd-description {
  display: none;
  font-size: 12px;
  text-align: right;
  margin-top: 5px;
}
.pwd-strength.pwd-very-weak .pwd-description,
.pwd-strength.pwd-weak .pwd-description,
.pwd-strength.pwd-better .pwd-description,
.pwd-strength.pwd-good .pwd-description,
.pwd-strength.pwd-strong .pwd-description {
  display: block;
}
.pwd-mark-weak,
.pwd-mark-better,
.pwd-mark-good,
.pwd-mark-strong {
  background-color: #CCCCCC;
  color: #CCCCCC;
  display: inline-block;
  height: 2px;
  margin: 0px 2px;
  width: calc(25% - 4px);
}
.pwd-empty {
  color: #CCCCCC;
}
.pwd-empty .pwd-mark-weak,
.pwd-empty .pwd-mark-better,
.pwd-empty .pwd-mark-good,
.pwd-empty .pwd-mark-strong {
  background-color: #CCCCCC;
}
.pwd-very-weak {
  color: #CCCCCC;
}
.pwd-very-weak .pwd-mark-weak,
.pwd-very-weak .pwd-mark-better,
.pwd-very-weak .pwd-mark-good,
.pwd-very-weak .pwd-mark-strong {
  background-color: #CCCCCC;
}
.pwd-weak {
  color: #e74b3a;
}
.pwd-weak .pwd-mark-weak {
  background-color: #e74b3a;
}
.pwd-weak .pwd-mark-better,
.pwd-weak .pwd-mark-good,
.pwd-weak .pwd-mark-strong {
  background-color: #CCCCCC;
}
.pwd-better {
  color: #FFA654;
}
.pwd-better .pwd-mark-weak,
.pwd-better .pwd-mark-better {
  background-color: #FFA654;
}
.pwd-better .pwd-mark-good,
.pwd-better .pwd-mark-strong {
  background-color: #CCCCCC;
}
.pwd-good {
  color: #18d773;
}
.pwd-good .pwd-mark-weak,
.pwd-good .pwd-mark-better,
.pwd-good .pwd-mark-good {
  background-color: #18d773;
}
.pwd-good .pwd-mark-strong {
  background-color: #CCCCCC;
}
.pwd-strong {
  color: #16986d;
}
.pwd-strong .pwd-mark-weak,
.pwd-strong .pwd-mark-better,
.pwd-strong .pwd-mark-good,
.pwd-strong .pwd-mark-strong {
  background-color: #16986d;
}
.shortcut-list {
  padding: 30px;
}
.shortcut-list .shortcut-group {
  margin-bottom: 20px;
}
.shortcut-list .shortcut-group h3 {
  paddind: 0;
  margin: 0 0 20px;
}
.shortcut-list .shortcut-group .shortcut-item {
  display: flex;
  border-bottom: 1px solid #E6E6E6;
  line-height: 2;
}
.shortcut-list .shortcut-group .shortcut-item.header {
  margin-bottom: 0px;
}
.shortcut-list .shortcut-group .shortcut-item .shortcuts-commands {
  flex: 1 auto;
  min-width: 200px;
  text-align: right;
  font-size: 15.4px;
  padding: 7px 5px 8px 5px;
}
.shortcut-list .shortcut-group .shortcut-item .shortcuts-description,
.shortcut-list .shortcut-group .shortcut-item .shortcuts-header {
  flex: 0 auto;
  text-align: left;
  padding: 9px 5px 8px 5px;
  font-size: 15.4px;
  flex-shrink: 0;
}
.shortcut-list .shortcut-group .shortcut-item .shortcut-symbol {
  background: #E6E6E6;
  padding: 0px 9px;
  font-size: 14px;
  font-weight: normal;
  min-width: 24px;
  height: 28px;
  margin: 0 2px;
  border-radius: 3px;
  color: #3F3F3F;
  border: 1px solid #CCCCCC;
  box-shadow: 0 1px 0 #CCCCCC;
  text-shadow: none;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  line-height: 2;
}
.cdk-overlay-container {
  z-index: 99999 !important;
}
.cdk-overlay-container .mat-tooltip {
  position: relative;
  border: 1px solid #fff;
  font-size: 14px;
  font-weight: 400;
  padding: 7px 12px;
  -webkit-box-shadow: 0 0px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.175);
  overflow: visible;
  font-family: proxima-nova, sans-serif;
}
.cdk-overlay-container .mat-tooltip.wide {
  max-width: 80vw;
}
.cdk-overlay-container .mat-tooltip::before {
  position: absolute;
  content: '';
  display: inline-block;
  background: rgba(97, 97, 97, 0.9);
  clip-path: polygon(50% 0, 0 50%, 50% 100%);
  width: 15px;
  height: 15px;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(-90deg);
}
.cdk-overlay-container .mat-tooltip.after::before,
.cdk-overlay-container .mat-tooltip.right::before {
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
}
.cdk-overlay-container .mat-tooltip.before::before,
.cdk-overlay-container .mat-tooltip.left::before {
  top: calc(50% - 6px);
  left: calc(100% - 8px);
  transform: rotate(-180deg);
}
.cdk-overlay-container .mat-tooltip.below::before {
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}
.cdk-overlay-container .mat-tooltip.hide-arrow::before {
  content: none;
}
.mat-tooltip.error {
  background-color: #ffe8d4;
  border-color: #ffe8d4;
  color: #ff8b21;
  font-weight: 400;
  padding: 5px 10px;
  font-family: proxima-nova, sans-serif;
}
.mat-tooltip.error::before {
  background-color: #ffe8d4;
  border-bottom-color: #ffe8d4;
  border-top-color: #ffe8d4;
}
.mat-option {
  font-size: 14px;
  height: auto;
  line-height: 20px;
  padding: 5px 10px;
  color: #3f3f3f;
  font-family: proxima-nova, sans-serif;
}
.mat-select {
  height: 100%;
  min-height: 32px;
  display: flex !important;
  align-items: center;
}
.mat-select .mat-select-trigger {
  width: 100%;
}
.mat-select.dead .mat-select-value {
  color: lightgrey;
  text-decoration: line-through;
}
.mat-select-disabled {
  opacity: 0.4;
}
.mat-select-value {
  padding: 0 10px;
  color: #3f3f3f;
  font-size: 14px;
  font-family: proxima-nova, sans-serif;
}
.small-field .mat-select-value {
  padding: 0;
  display: flex;
  flex-flow: row;
  max-width: initial;
}
.mat-select-arrow-wrapper {
  padding-right: 7px;
}
.small-field .mat-select-arrow-wrapper {
  padding: 0;
}
.mat-select-arrow-wrapper .mat-select-arrow {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid;
  margin: 0 4px;
}
.mat-select-option {
  padding: 0 10px;
  color: #3f3f3f;
  font-size: 14px;
  font-family: proxima-nova, sans-serif;
}
.mat-select-panel-wrap {
  position: relative;
}
.mat-select-panel-wrap .mat-select-search-input {
  border: none;
}
.mat-select-panel-wrap .mat-select-search-clear {
  display: none;
}
.mat-option.contains-mat-select-search {
  position: sticky !important;
  top: 0;
  width: 100%;
  z-index: 10;
}
.mat-option.dead {
  color: lightgrey;
  text-decoration: line-through;
}
.mat-option.deprecated {
  color: lightgrey;
}
.mat-chip-input {
  border: none;
  height: 38px;
}
.mat-chip-remove {
  display: flex;
  align-items: center;
  width: 12px !important;
}
xp-chips .mat-chip-list .mat-chip {
  border-radius: 4px;
  padding: 5px;
}
.mat-select-panel {
  max-height: 500px !important;
}
@media (max-height: 960px) {
  .mat-select-panel {
    max-height: 400px !important;
  }
}
@media (max-height: 600px) {
  .mat-select-panel {
    max-height: 300px !important;
  }
}
.connection-select-box {
  height: 700px !important;
  max-height: 700px !important;
}
.mat-pseudo-checkbox-checked {
  background: #3F3F3F;
}
.mat-snack-bar-container {
  border-left: 2px solid;
  font-size: 14px;
  max-width: 90vw !important;
  min-height: 0 !important;
}
.mat-snack-bar-container.no-shadow {
  box-shadow: none;
}
.mat-snack-bar-container.success {
  color: #0e7b42;
  border-color: #0e7b42;
  background-color: #c3f8dc;
}
.mat-snack-bar-container.info {
  color: #066783;
  border-color: #066783;
  background-color: #d7f5fd;
}
.mat-snack-bar-container.warning {
  color: #d36500;
  border-color: #d36500;
  background-color: #ffe8d4;
}
.mat-snack-bar-container.danger {
  color: #de2c1e;
  border-color: #de2c1e;
  background-color: #fceceb;
}
.mat-snack-bar-container .notify-template {
  white-space: nowrap;
}
.mat-snack-bar-container .notify-template .message-container {
  margin-right: 20px;
}
.mat-snack-bar-container .notify-template .fa-stack {
  margin-right: 10px;
}
.mat-snack-bar-container .message {
  margin: 0;
}
.mat-dialog-container {
  padding: 0 !important;
  position: relative;
  overflow: hidden !important;
}
.mat-dialog-container .dialog-close {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 7px;
}
.mat-dialog-container .dialog-close:before {
  background: transparent;
  border-radius: 3px;
  color: #bbb;
  content: '\00D7';
  font-size: 26px;
  font-weight: 400;
  height: 30px;
  line-height: 26px;
  position: absolute;
  right: 3px;
  text-align: center;
  top: 3px;
  width: 30px;
}
.mat-dialog-container .dialog-close:hover:before {
  color: #777;
}
.new-dialog .modal-dialog {
  margin-right: 0;
}
.mat-menu-content {
  padding: 0 !important;
}
.mat-menu-content .mat-menu-item.top-separator {
  border-top: 1px solid #e5e5e5;
}
.mat-menu-content .mat-menu-item.bottom-separator {
  border-bottom: 1px solid #e5e5e5;
}
.mat-menu-panel {
  min-height: 48px !important;
  overflow: visible !important;
}
mat-menu {
  display: none;
}
mat-slide-toggle.mat-slide-toggle.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(10, 179, 229, 0.5);
}
mat-slide-toggle.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb-container .mat-slide-toggle-thumb {
  background-color: #0ab3e5;
}
.select-picker.mat-select-panel .mat-option {
  height: auto !important;
  border-top: 1px solid #00000036;
  padding: 10px 20px;
}
.select-picker.mat-select-panel .mat-option:nth-child(2) {
  border-top: none;
}
.select-picker-mat {
  border: 1px solid #cccccc;
  border-radius: 4px;
  margin-right: 10px;
  width: auto !important;
}
.select-picker-mat .mat-select-arrow-wrapper .mat-select-arrow {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid;
  margin: 0 5px;
}
.mat-dropdown-menu-item {
  display: flex !important;
  align-items: center;
  font-size: 13px;
}
.mat-dropdown-menu-item img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}
.mat-dropdown-menu-item span {
  font-weight: 400;
  padding: 2px 0;
}
.mat-select-panel.select-picker {
  max-width: 400px;
}
.assisted-search-date-input {
  display: block;
  visibility: hidden;
}
.shortcuts-dialog {
  width: 500px;
}
.mat-slider {
  width: 100%;
}
.mat-accent .mat-slider-thumb,
.mat-accent .mat-slider-track-fill,
.mat-accent .mat-slider-thumb-label {
  background-color: #0ab3e5 !important;
}
.mat-accent .mat-slider-focus-ring {
  background-color: #0ab3e5 !important;
  opacity: 0.2 !important;
}
.cdk-drag {
  z-index: 99999999 !important;
}
.cdk-drag-preview {
  box-sizing: border-box;
  border-radius: 4px;
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.cdk-drop-list-dragging .mat-row:not(.cdk-drag-placeholder) {
  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}
.cdk-drag-placeholder {
  opacity: 0;
}
.cdk-drag-animating {
  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}
.variables-editor-sortable.cdk-drop-list-dragging variables-editor-row:not(.cdk-drag-placeholder) {
  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}
.full-dropdown-menu {
  margin-top: -40px;
  margin-left: 5px;
}
xp-chips {
  height: auto !important;
  padding: 10px !important;
}
.mat-table {
  width: 100%;
}
.mat-table.resizing {
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: col-resize;
}
.mat-table thead .mat-header-cell {
  border-right: none;
}
.mat-cell {
  padding: 0 5px !important;
}
.mat-cell span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mat-cell.small-field {
  width: 30px;
  text-align: center;
}
.mat-cell.small-field.gray {
  background-color: rgba(0, 0, 0, 0.05);
}
.mat-header-cell {
  position: relative;
  padding: 0 5px !important;
  font-size: 11px !important;
  font-weight: bold !important;
}
.mat-header-cell:not(:last-child) .resize-holder {
  cursor: col-resize;
  height: 100%;
  position: absolute;
  right: -1px;
  top: 0;
  z-index: 1;
  width: 5px;
  border-right: 1px solid #E6E6E6;
  opacity: 1;
}
.mat-header-cell:not(:last-child) .resize-holder:before,
.mat-header-cell:not(:last-child) .resize-holder:after {
  content: '';
  position: absolute;
  top: 2px;
  background-color: #E6E6E6;
  width: 1px;
  height: 28px;
}
.mat-header-cell:not(:last-child) .resize-holder:before {
  left: 1px;
}
.mat-header-cell:not(:last-child) .resize-holder:after {
  right: -4px;
}
.mat-cell,
.mat-header-cell {
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}
.mat-cell:last-child,
.mat-header-cell:last-child {
  border-right: none;
}
.mat-cell:not(:nth-child(1)),
.mat-header-cell:not(:nth-child(1)) {
  padding: 0 10px;
}
.mat-row {
  height: 33px !important;
}
.mat-header-row {
  height: 28px !important;
}
.constant-width {
  width: 32px;
  padding: 0 !important;
  text-align: center;
}
.mat-paginator-page-size-select {
  width: 66px !important;
}
.mat-paginator[hidden] {
  display: none;
}
.cdk-drag-preview.mat-row {
  display: table !important;
}
.cdk-drag-preview.mat-row .editor-button {
  height: 20px;
}
.mat-tab-label {
  width: 100% !important;
}
.mat-tab-group.mat-primary .mat-ink-bar,
.mat-tab-nav-bar.mat-primary .mat-ink-bar {
  background-color: #0AB3E5 !important;
}
.slider-animation {
  max-height: 1000px;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}
.slider-animation.closed-animation {
  max-height: 0;
  transition: max-height 0.7s cubic-bezier(0, 1, 0, 1);
  padding: 0;
  border: none;
}


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