.bubble-popup {
  position: relative;
}
.bubble-popup .trigger {
  cursor: pointer;
  display: inline-block;
}
.bubble-popup:hover .bubble {
  opacity: 1;
  pointer-events: all;
}
    .bubble-popup .bubble {
        opacity: 0;
    }

.bubble {
    display: table;
    font-size: 11px;
    position: absolute;
    padding: 8px 13px;
    color: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    z-index: 9999;
}

    .bubble * {
        font-family: Source Sans Pro !important;
        font-size: 12px;
    }

.bubble-actions {
    pointer-events: auto;
    line-height: 32px;
    display: inline-flex !important;
}
.bubble-actions a {
    text-decoration: none;
    color: #fff;
    font-size: 32px;
}
.bubble-actions span {
    height: 32px;
}
.bubble-actions a:first-child {
    margin-left: 5px;
}
.bubble::after {
    content: "";
    position: absolute;
}
.bubble::before {
    content: "";
    position: absolute;
}
.bubble.bubble-left {
  right: 0;
}
.bubble.bubble-left::after {
  right: 12px;
  border-right: 20px solid;
}
.bubble.bubble-left::before {
  right: 11px;
  border-right: 21px solid #c5c5c5;
}
.bubble.bubble-right {
  left: 0;
}
.bubble.bubble-right::after {
  left: 12px;
  border-left: 20px solid;
}
.bubble.bubble-right::before {
  left: 11px;
  border-left: 21px solid #c5c5c5;
}
/*.bubble.bubble-top {
  bottom: calc(100% +  16px);
}*/
.bubble.bubble-top::after {
  border-bottom: 16px solid transparent;
  bottom: -15px;
}
.bubble.bubble-top::before {
  border-bottom: 17px solid transparent;
  bottom: -17px;
}
.bubble.bubble-bottom {
  top: calc(100% +  16px);
}
.bubble.bubble-bottom::after {
  border-top: 16px solid transparent;
  top: -15px;
}
.bubble.bubble-bottom::before {
  border-top: 17px solid transparent;
  top: -17px;
}
.bubble.bubble-blue {
  background-color: #0090ca;
}
.bubble.bubble-blue.bubble-left::after {
  border-right-color: #0090ca;
}
.bubble.bubble-blue.bubble-right::after {
  border-left-color: #0090ca;
}
.bubble.bubble-red {
  background-color: #c20e1a;
}
.bubble.bubble-red.bubble-left::after {
  border-right-color: #c20e1a;
}
.bubble.bubble-red.bubble-right::after {
  border-left-color: #c20e1a;
}
.bubble.bubble-green {
  background-color: #59942c;
}
.bubble.bubble-green.bubble-left::after {
  border-right-color: #59942c;
}
.bubble.bubble-green.bubble-right::after {
  border-left-color: #59942c;
}
.bubble.bubble-white {
  color: #555555;
}
.bubble.bubble-white.bubble-left::after {
    border-right-color: #fff;
}
.bubble.bubble-white.bubble-right::after {
    border-left-color: #fff;
}
.bubble.bubble-gray {
    color: #EDF0F1;
}
    .bubble.bubble-gray.bubble-left::after {
        border-right-color: #EDF0F1;
    }
    .bubble.bubble-gray.bubble-right::after {
        border-left-color: #EDF0F1;
    }
    .bubble.bubble-gray.bubble-right::before {
        border-left-color: #EDF0F1;
    }
.bubble-title {
    font-size: 12px;
    line-height: 17px;
}

@media (max-width: 640px) {
    .bubble {
        max-width: 250px;
    }
}
