/*
 * Copyright © 2019 Wyomind. All rights reserved.
 * See LICENSE.txt for license details.
 */
@font-face {
  font-family: 'EE-Icons';
  src: url(EE-Icons.ttf);
}
.msiss-tooltip {
  font-size: 1.5em;
}
.msiss-tooltip:after {
  margin-right: 10px;
  content: '\e623';
  font-family: EE-Icons;
  float: right;
}
.lite-tooltip {
  opacity: 0;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 9999;
  background-color: #ffffff;
  padding: 1.4rem 2rem;
  border-radius: 3px;
  border: 1px solid #bbbbbb;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  -webkit-box-shadow: 0 0 5px #aaa;
  box-shadow: 0 0 5px #aaa;
}
.lite-tooltip:before {
  content: '';
  position: absolute;
  bottom: auto;
  left: auto;
  right: -6px;
  top: 60%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: transparent transparent transparent;
  display: inline-block;
}
