/*!************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./styles/opt-tooltip.scss ***!
  \************************************************************************************************************************************************************************************************************************************************************/
/** Colors */
/* prettier-ignore */
/** Box Model  */
/** Breakpoints  */
/** Fonts  */
/** Delay **/
/* Other */
.tooltip {
  width: 16px;
  height: 16px;
  background: #c5ced9;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
.tooltip:hover {
  background: #333;
}
.tooltip::before, .tooltip::after {
  content: "";
  position: absolute;
  display: none;
}
.tooltip::before {
  width: 16px;
  height: 16px;
  background: #f2f2f2;
  z-index: 10;
}
.tooltip::after {
  content: attr(data-tooltip);
  padding: 8px;
  width: max-content;
  max-width: 200px;
  font: 400 12px/16px "DIN Pro", "Open Sans", "Arial", sans-serif;
  color: #222;
  background: #f2f2f2;
  border-radius: 4px;
  z-index: 15;
}
.tooltip.top:hover::after {
  display: block;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.top:hover::before {
  display: block;
  bottom: calc(100% + 6px);
  left: 0;
  transform: rotate(-45deg);
}
.tooltip.right:hover::after {
  display: block;
  top: 50%;
  left: calc(100% + 10px);
  transform: translateY(-50%);
}
.tooltip.right:hover::before {
  display: block;
  top: 50%;
  left: calc(100% + 12px);
  transform: rotate(-45deg) translateY(-50%);
}
.tooltip.left:hover::after {
  display: block;
  top: 50%;
  right: calc(100% + 10px);
  transform: translateY(-50%);
}
.tooltip.left:hover::before {
  display: block;
  top: 50%;
  left: -16px;
  transform: rotate(-45deg) translateY(-50%);
}
.tooltip.bottom:hover::after {
  display: block;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.bottom:hover::before {
  display: block;
  top: calc(100% + 6px);
  left: 0;
  transform: rotate(-45deg);
}
.tooltip span {
  font: 400 14px/20px "DIN Pro", "Open Sans", "Arial", sans-serif;
  line-height: 15px;
  color: #fff;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
