
/* Base styling*/
.popover__title {
  /*
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 24px;
  line-height: 36px;
  text-decoration: none;
  color: rgb(228, 68, 68);
  text-align: center;
  padding: 15px 0;
  */
}

.popover__wrapper {
    position: relative;
    display: inline-block;
}
.popover__content {
    margin-top:25px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transform: translate(0,10px);
    background-color: #fff;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    width: max-content;
    height:max-content;
}
.popover__content:before {
    position: absolute;
    z-index: -1;
    content: '';
    right: calc(50% - 10px);
    top: -8px;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #BFBFBF transparent;
    transition-duration: 0.3s;
    transition-property: transform;
    display:none;
}
.popover__wrapper:hover .popover__content {
    z-index: 10;
    left:-100px;
    opacity: 1;
    visibility: visible;
    transform: translate(0,-20px);
    transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);
}
.popover__message {
  text-align: center;
}
.popover__message span{
  padding:3px;
  margin:2px;
}
.popover_title
{
  padding:5px;
  background: #e8e8e8;
  text-align:center;
  min-width:120px;
}