@charset "UTF-8";
/* Base File that contains all dependencies (mixins, vars etc.)*/
/**
* Base Settings
*/
/**
* Utility mixins
*/
/**
* Creates an icon, by default uses fontello
* Nested spans are no icons anymore
*/
/**
* A Mixin that creates a bottom border for a specific element and animates it on hover
* On active state this border is always active
* Don't forget to set position:relative to element
*/
/**
* Mixin to clear floats
*/
/**
* Mixin to support a specific retina display
*/
/**
* Mixin to support retina displays on a specific size
*/
/**
* Mixin that generates a simple grid
*/
/**
 * Mixin that creates a colored section that may include links
 */
/* Form Mixins */
/**
* Inputs
*/
/**
* Base Input Style
*/
/**
* Input style when focused
*/
/**
* Mixin to create a button style
*/
/**
* Mixin to create a multine ellipsis
*/
/**
* Tooltips
*/
/**
* Global Animations
*/

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes backgroundFadeIn {
  from {
    background: transparent;
  }
  to {
    background: rgba(0, 0, 0, 0.35);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/**
* Creates a small bounce effect
*/

@keyframes bounceIn {
  0%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.9, 0.9, 0.9);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

/**
* FadeIn Effect
*/

@keyframes fadeIn {
  0%, 100% {
    animation-timing-function: ease;
  }
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes darkenerFadeIn {
  0%, 100% {
    animation-timing-function: ease;
  }
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.35;
  }
}

@keyframes darkenerFadeOut {
  0%, 100% {
    animation-timing-function: ease;
  }
  0% {
    opacity: 0.35;
  }
  100% {
    opacity: 0;
  }
}

/**
* Endless spinner, used for loaders
*/

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/**
* used by alert modals
*/

@keyframes fromBottom {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes tabWobbleLine {
  0% {
    opacity: 0;
    left: calc(50% - (10px));
    width: 0%;
  }
  100% {
    opacity: 1;
    left: 0;
    width: calc(100% - (20px));
  }
}

@keyframes tabWobbleLineSmall {
  0% {
    opacity: 0;
    left: calc(50% - (10px));
    width: 0%;
  }
  100% {
    opacity: 1;
    left: 0;
    width: calc(100% - (10px));
  }
}

.animate-bounceIn {
  animation-name: bounceIn;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-direction: normal;
}

.animate-fadeIn {
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-direction: normal;
}

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

@font-face {
  font-family: 'fontello';
  src: url(../img/df911611bc6f6420a06037ac6127253e.woff) format("woff");
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  margin-right: .01em;
  margin-left: 0.1rem;
  text-align: center;
  /* 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;
}

[class^="icon-"]:before.left-align, [class*=" icon-"]:before.left-align {
  margin-left: 0;
}

.button [class^="icon-"]:before, .button [class*=" icon-"]:before, .dropdown [class^="icon-"]:before, .dropdown [class*=" icon-"]:before {
  margin-right: 0.3rem;
  margin-left: 0.3rem;
}

.icon-up-dir:before {
  content: '\25B4';
}

/* '▴' */
.icon-down-dir:before {
  content: '\25BE';
}

/* '▾' */
.icon-star:before {
  content: '\2605';
}

/* '★' */
.icon-star-empty:before {
  content: '\2606';
}

/* '☆' */
.icon-check:before {
  content: '\2611';
}

/* '☑' */
.icon-reorder:before {
  content: '\2630';
}

/* '☰' */
.icon-attention:before {
  content: '\26A0';
}

/* '⚠' */
.icon-pencil:before {
  content: '\270E';
}

/* '✎' */
.icon-ok-circle:before {
  content: '\2714';
}

/* '✔' */
.icon-cancel-circle:before {
  content: '\2716';
}

/* '✖' */
.icon-attention-circle:before {
  content: '\2757';
}

/* '❗' */
.icon-plus-circle:before {
  content: '\2795';
}

/* '➕' */
.icon-minus-circle:before {
  content: '\2796';
}

/* '➖' */
.icon-cancel-circle2:before {
  content: '\E703';
}

/* '' */
.icon-info-circle:before {
  content: '\E705';
}

/* '' */
.icon-comment:before {
  content: '\E718';
}

/* '' */
.icon-chat:before {
  content: '\E720';
}

/* '' */
.icon-location:before {
  content: '\E724';
}

/* '' */
.icon-trash:before {
  content: '\E729';
}

/* '' */
.icon-bold:before {
  content: '\E77A';
}

/* '' */
.icon-italic:before {
  content: '\E77B';
}

/* '' */
.icon-mail:before {
  content: '\E800';
}

/* '' */
.icon-user:before {
  content: '\E801';
}

/* '' */
.icon-th-large:before {
  content: '\E802';
}

/* '' */
.icon-th-list:before {
  content: '\E803';
}

/* '' */
.icon-ok:before {
  content: '\E804';
}

/* '' */
.icon-cancel:before {
  content: '\E805';
}

/* '' */
.icon-plus:before {
  content: '\E806';
}

/* '' */
.icon-minus:before {
  content: '\E807';
}

/* '' */
.icon-help:before {
  content: '\E808';
}

/* '' */
.icon-help-circled:before {
  content: '\E809';
}

/* '' */
.icon-info:before {
  content: '\E80A';
}

/* '' */
.icon-home:before {
  content: '\E80B';
}

/* '' */
.icon-link:before {
  content: '\E80C';
}

/* '' */
.icon-unlink:before {
  content: '\E80D';
}

/* '' */
.icon-attach:before {
  content: '\E80E';
}

/* '' */
.icon-pin:before {
  content: '\E80F';
}

/* '' */
.icon-eye:before {
  content: '\E810';
}

/* '' */
.icon-tag:before {
  content: '\E811';
}

/* '' */
.icon-flag:before {
  content: '\E812';
}

/* '' */
.icon-forward:before {
  content: '\E813';
}

/* '' */
.icon-attention-alt:before {
  content: '\E814';
}

/* '' */
.icon-rss:before {
  content: '\E815';
}

/* '' */
.icon-cog:before {
  content: '\E816';
}

/* '' */
.icon-right-dir:before {
  content: '\E817';
}

/* '' */
.icon-left-dir:before {
  content: '\E818';
}

/* '' */
.icon-down-open:before {
  content: '\E819';
}

/* '' */
.icon-up-open:before {
  content: '\E81A';
}

/* '' */
.icon-right-open:before {
  content: '\E81B';
}

/* '' */
.icon-arrows-cw:before {
  content: '\E81C';
}

/* '' */
.icon-circle:before {
  content: '\E81D';
}

/* '' */
.icon-asterisk:before {
  content: '\E81E';
}

/* '' */
.icon-twitter-squared:before {
  content: '\E81F';
}

/* '' */
.icon-twitter:before {
  content: '\E820';
}

/* '' */
.icon-facebook-squared:before {
  content: '\E821';
}

/* '' */
.icon-facebook:before {
  content: '\E822';
}

/* '' */
.icon-linkedin-squared:before {
  content: '\E823';
}

/* '' */
.icon-linkedin:before {
  content: '\E824';
}

/* '' */
.icon-gplus-squared:before {
  content: '\E825';
}

/* '' */
.icon-gplus:before {
  content: '\E826';
}

/* '' */
.icon-headphones:before {
  content: '\E827';
}

/* '' */
.icon-picture:before {
  content: '\E828';
}

/* '' */
.icon-link-ext-alt:before {
  content: '\E829';
}

/* '' */
.icon-bell:before {
  content: '\E82A';
}

/* '' */
.icon-left-open:before {
  content: '\E82B';
}

/* '' */
.icon-filter:before {
  content: '\E82C';
}

/* '' */
.icon-cog-alt:before {
  content: '\E82D';
}

/* '' */
.icon-reply:before {
  content: '\E82E';
}

/* '' */
.icon-cw:before {
  content: '\E82F';
}

/* '' */
.icon-ccw:before {
  content: '\E830';
}

/* '' */
.icon-spin2:before {
  content: '\E831';
}

/* '' */
.icon-bell-alt:before {
  content: '\E832';
}

/* '' */
.icon-right-circled:before {
  content: '\E833';
}

/* '' */
.icon-left-circled:before {
  content: '\E834';
}

/* '' */
.icon-move:before {
  content: '\E835';
}

/* '' */
.icon-xing:before {
  content: '\E836';
}

/* '' */
.icon-xing-squared:before {
  content: '\E837';
}

/* '' */
.icon-thumbs-up-alt:before {
  content: '\E838';
}

/* '' */
.icon-thumbs-down-alt:before {
  content: '\E839';
}

/* '' */
.icon-resize-full:before {
  content: '\E83A';
}

/* '' */
.icon-ellipsis-vert:before {
  content: '\E83B';
}

/* '' */
.icon-ellipsis:before {
  content: '\E83C';
}

/* '' */
.icon-off:before {
  content: '\E83D';
}

/* '' */
.icon-cancel-1:before {
  content: '\E83E';
}

/* '' */
.icon-upload-cloud:before {
  content: '\E83F';
}

/* '' */
.icon-share:before {
  content: '\E840';
}

/* '' */
.icon-resize-full-alt:before {
  content: '\E841';
}

/* '' */
.icon-resize-small:before {
  content: '\E842';
}

/* '' */
.icon-sliders:before {
  content: '\E843';
}

/* '' */
.icon-smile:before {
  content: '\E844';
}

/* '' */
.icon-search-1:before {
  content: '\E845';
}

/* '' */
.icon-github-circled:before {
  content: '\E846';
}

/* '' */
.icon-lock-open-alt:before {
  content: '\E85A';
}

/* '' */
.icon-link-ext:before {
  content: '\F08E';
}

/* '' */
.icon-check-empty:before {
  content: '\F096';
}

/* '' */
.icon-bookmark-empty:before {
  content: '\F097';
}

/* '' */
.icon-blank:before {
  content: '\F0C8';
}

/* '' */
.icon-menu:before {
  content: '\F0C9';
}

/* '' */
.icon-list-bullet:before {
  content: '\F0CA';
}

/* '' */
.icon-mail-alt:before {
  content: '\F0E0';
}

/* '' */
.icon-comment-empty:before {
  content: '\F0E5';
}

/* '' */
.icon-chat-empty:before {
  content: '\F0E6';
}

/* '' */
.icon-quote-right:before {
  content: '\F10E';
}

/* '' */
.icon-globe:before {
  content: '\1F32E';
}

/* '\1f32e' */
.icon-thumbs-up:before {
  content: '\1F48D';
}

/* '\1f48d' */
.icon-thumbs-down:before {
  content: '\1F48E';
}

/* '\1f48e' */
.icon-volume-off:before {
  content: '\1F507';
}

/* '\1f507' */
.icon-volume-up:before {
  content: '\1F50A';
}

/* '\1f50a' */
.icon-lock:before {
  content: '\1F512';
}

/* '\1f512' */
.icon-bookmark:before {
  content: '\1F516';
}

/* '\1f516' */
.icon-search:before {
  content: '\1F55D';
}

/* '\1f55d' */
.icon-block:before {
  content: '\1F6AB';
}

/* '\1f6ab' */
.icon-download-cloud:before {
  content: '\E847';
}

/* '' */
.icon-angle-right:before {
  content: '\E848';
}

/* '' */
.icon-angle-left:before {
  content: '\E849';
}

/* '' */
.icon-angle-up:before {
  content: '\E84A';
}

/* '' */
.icon-angle-down:before {
  content: '\E84B';
}

/* '' */
.icon-file-pdf:before {
  content: '\E84C';
}

/* '' */
.icon-list-alt:before {
  content: '\E84D';
}

/* '' */
.icon-calendar:before {
  content: '\E84E';
}

/* '' */
.icon-whatsapp:before {
  content: '\E84F';
}

/* '' */
.icon-right-big:before {
  content: '\E850';
}

/* '' */
.icon-fire:before {
  content: '\E851';
}

/* '' */
.tooltip-container {
  z-index: 31;
  pointer-events: none;
  display: inline-block;
  opacity: 0;
  position: absolute;
  color: #fff;
  border-radius: 3px;
  padding: 7px 10px 7px;
  will-change: transform, opacity;
  transition: opacity 0.35s ease, transform 0.35s ease;
  font-size: 12px;
  font-weight: 600;
  transform: translate3d(0, -6px, 0);
  background: #333;
  word-wrap: break-word;
  max-width: 250px;
  text-align: center;
}

.tooltip-container.error-tooltip {
  word-break: normal;
  background: #333;
}

.tooltip-container.open {
  opacity: 1;
}

.tooltip-container.is-collision-bottom:not(.is-collision-left).open {
  transform: translate3d(0, -3px, 0);
}

.tooltip-container.is-collision-bottom:not(.is-collision-left):after {
  top: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tooltip-container.is-collision-bottom:not(.is-collision-left):after {
  border-color: transparent;
  border-top-color: #333;
  border-width: 5px;
  left: 50%;
  margin-left: -5px;
}

.tooltip-container:not(.is-collision-bottom):not(.is-collision-left).open {
  transform: translate3d(0, 6px, 0);
}

.tooltip-container:not(.is-collision-bottom):not(.is-collision-left):after, .tooltip-container:not(.is-collision-bottom):not(.is-collision-left):before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tooltip-container:not(.is-collision-bottom):not(.is-collision-left):after {
  border-color: transparent;
  border-bottom-color: #333;
  border-width: 5px;
  margin-left: -5px;
}

.tooltip-container.is-collision-left.is-collision-bottom.open {
  transform: translate3d(0, -3px, 0);
}

.tooltip-container.is-collision-left.is-collision-bottom:after {
  top: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tooltip-container.is-collision-left.is-collision-bottom:after {
  border-color: transparent;
  border-top-color: #333;
  border-width: 5px;
  left: 15px;
  margin-left: -5px;
}

.tooltip-container.is-collision-left:not(.is-collision-bottom).open {
  transform: translate3d(0, 6px, 0);
}

.tooltip-container.is-collision-left:not(.is-collision-bottom):after, .tooltip-container.is-collision-left:not(.is-collision-bottom):before {
  bottom: 100%;
  left: 15px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tooltip-container.is-collision-left:not(.is-collision-bottom):after {
  border-color: transparent;
  border-bottom-color: #333;
  border-width: 5px;
  margin-left: -5px;
}

.tooltip-container.is-collision-right:not(.is-collision-bottom).open {
  transform: translate3d(0, 6px, 0);
}

.tooltip-container.is-collision-right:not(.is-collision-bottom):after, .tooltip-container.is-collision-right:not(.is-collision-bottom):before {
  bottom: 100%;
  left: calc(100% - 15px);
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tooltip-container.is-collision-right:not(.is-collision-bottom):after {
  border-color: transparent;
  border-bottom-color: #333;
  border-width: 5px;
  margin-left: -5px;
}

.tooltip-container.is-collision-right.is-collision-bottom.open {
  transform: translate3d(0, -3px, 0);
}

.tooltip-container.is-collision-right.is-collision-bottom:after {
  top: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tooltip-container.is-collision-right.is-collision-bottom:after {
  border-color: transparent;
  border-top-color: #333;
  border-width: 5px;
  left: calc(100% - 15px);
  margin-left: -5px;
}

.tooltip-container.error-tooltip.is-collision-bottom:not(.is-collision-left).open {
  transform: translate3d(0, -3px, 0);
}

.tooltip-container.error-tooltip.is-collision-bottom:not(.is-collision-left):after {
  top: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tooltip-container.error-tooltip.is-collision-bottom:not(.is-collision-left):after {
  border-color: transparent;
  border-top-color: #333;
  border-width: 5px;
  left: 50%;
  margin-left: -5px;
}

.tooltip-container.error-tooltip:not(.is-collision-bottom):not(.is-collision-left).open {
  transform: translate3d(0, 6px, 0);
}

.tooltip-container.error-tooltip:not(.is-collision-bottom):not(.is-collision-left):after, .tooltip-container.error-tooltip:not(.is-collision-bottom):not(.is-collision-left):before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tooltip-container.error-tooltip:not(.is-collision-bottom):not(.is-collision-left):after {
  border-color: transparent;
  border-bottom-color: #333;
  border-width: 5px;
  margin-left: -5px;
}

.tooltip-container.error-tooltip.is-collision-left.is-collision-bottom.open {
  transform: translate3d(0, -3px, 0);
}

.tooltip-container.error-tooltip.is-collision-left.is-collision-bottom:after {
  top: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tooltip-container.error-tooltip.is-collision-left.is-collision-bottom:after {
  border-color: transparent;
  border-top-color: #333;
  border-width: 5px;
  left: 15px;
  margin-left: -5px;
}

.tooltip-container.error-tooltip.is-collision-left:not(.is-collision-bottom).open {
  transform: translate3d(0, 6px, 0);
}

.tooltip-container.error-tooltip.is-collision-left:not(.is-collision-bottom):after, .tooltip-container.error-tooltip.is-collision-left:not(.is-collision-bottom):before {
  bottom: 100%;
  left: 15px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tooltip-container.error-tooltip.is-collision-left:not(.is-collision-bottom):after {
  border-color: transparent;
  border-bottom-color: #333;
  border-width: 5px;
  margin-left: -5px;
}

.tooltip-container.error-tooltip.is-collision-right:not(.is-collision-bottom).open {
  transform: translate3d(0, 6px, 0);
}

.tooltip-container.error-tooltip.is-collision-right:not(.is-collision-bottom):after, .tooltip-container.error-tooltip.is-collision-right:not(.is-collision-bottom):before {
  bottom: 100%;
  left: calc(100% - 15px);
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tooltip-container.error-tooltip.is-collision-right:not(.is-collision-bottom):after {
  border-color: transparent;
  border-bottom-color: #333;
  border-width: 5px;
  margin-left: -5px;
}

.tooltip-container.error-tooltip.is-collision-right.is-collision-bottom.open {
  transform: translate3d(0, -3px, 0);
}

.tooltip-container.error-tooltip.is-collision-right.is-collision-bottom:after {
  top: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.tooltip-container.error-tooltip.is-collision-right.is-collision-bottom:after {
  border-color: transparent;
  border-top-color: #333;
  border-width: 5px;
  left: calc(100% - 15px);
  margin-left: -5px;
}

/*# sourceMappingURL=../maps/tooltip.map*/