/* The popup bubble styling. */
.popup-bubble {
  /* Position the bubble centred-above its parent. */
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  /* Style the bubble. */
  background-color: white;
  border-radius: 5px;
  font-family: sans-serif;
  overflow-y: auto;
  max-height: 300px;
  max-width: 400px;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.5);
}

.popup-bubble .card-image {
  max-height: 55%;
}

.popup-bubble .card-top-info {
  margin: 10px 10px 0 !important;
}

.popup-bubble .card-bottom-info {
  padding: 6px 10px !important;
}

.popup-bubble.type-1 {
  border-bottom: 6px solid #B2271A;
}

.popup-bubble.type-1 .card-top-info .title {
  color: #B2271A;
}

.popup-bubble.type-2 {
  border-bottom: 6px solid #7C98A9;
}

.popup-bubble.type-2 .card-top-info .title {
  color: #7C98A9;
}

.popup-bubble.type-3 {
  border-bottom: 6px solid #AA9C8F;
}

.popup-bubble.type-3 .card-top-info .title {
  color: #AA9C8F;
}

/* The parent of the bubble. A zero-height div at the top of the tip. */
.popup-bubble-anchor {
  /* Position the div a fixed distance above the tip. */
  position: absolute;
  width: 100%;
  bottom: 8px;
  left: 0;
}

.popup-bubble-anchor.type-1::after {
  border-top-color: #B2271A;
}

/* This element draws the tip. */
.popup-bubble-anchor::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  /* Center the tip horizontally. */
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  /* The tip is a https://css-tricks.com/snippets/css/css-triangle/ */
  width: 0;
  height: 0;
  /* The tip is 8px high, and 12px wide. */
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid white;
}

/* JavaScript will position this div at the bottom of the popup tip. */
.popup-container {
  cursor: auto;
  height: 0;
  position: absolute;
  /* The max width of the info window. */
  width: 200px;
}

.popup-close-btn {
  position: absolute;
  top: -307px;
  z-index: 999999;
  right: 19px;
  width: 30px;
  height: 30px;
  font-size: 16px;
  cursor: pointer;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
/*# sourceMappingURL=popup.css.map */