.ec-days .daywithevent {
  position: relative;
  color: #fff;
  font-weight: 500;
}
 
.ec-days .daywithevent:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  background-color: #89328f;
  content: ""; 
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}

.ec-days .daywithevent.past:before {
  display: none;
}

.ec-days .current.daywithevent:before {
  top: 0;
}


/*Tooltip*/

.tooltip,
.pop_up {
    position: relative;
    display: inline-block;
}

.tooltip {
    display: none;
    width: 200px;
    background-color: #fff;
    text-align: center;
    padding: 0 0px 5px 0px;
    position: absolute;
    z-index: 1;
    top: 135%;
    left: 0;
    margin-left: -60px;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    font-size: 0.9em;
    box-shadow: 0px 2px 8px #0000003b;
}

.tooltip a {
    display: block;
    color: #89328f; /*#8f1d30;*/
    padding: 0 3px;
    text-align: center;
    font-size: 0.9em;
    line-height: 1.5;
}

.tooltip h4 {
    background-color: #fff;
}

.tooltip::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}

.tooltip.active,
.daywithevent:hover>.tooltip {
    display: block;
    top: 100%;
    left: 12px;
    opacity: 1;
}

.tooltip-bottom {
  padding: 5px;
}
.tooltip-bottom-item {
  font-size: 16px;
  padding: 5px;
}