/* Callout box - fixed position at the bottom of the page */
.callout {
  position: fixed;
  bottom: 35px;
  right: 20px;
  margin-left: 20px;
  max-width: 350px;
  min-width: 300px;
  border-style: solid;
  border-color: #7a0030;
  border-width: 1px;
  z-index: 999; /* show the call out always on top of all other page elements */
}

/* Callout header */
.callout-header {
  padding: 15px 15px;
  background: #7a0030;
  font-size: 20px;
  color: white;
}

/* Callout container/body */
.callout-container {
  padding: 15px;
  background-color: white;
  color: black
}

.callout-container-text {
    font-size: 14px;
}

/* Close button */
.closebtn {
  position: absolute;
  top: 5px;
  right: 15px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

/* Change color on mouse-over */
.closebtn:hover {
  color: lightgrey;
}