.popup {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: white;
  color: #282E3A;
  padding: 15px;
  text-align: center;
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  min-width: 200px;
}

.popup div {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 12pt;
}

.popup button {
  margin: 3px 5px;
  background-color: #F5F8FA;
  color: #282E3A;
  text-transform: uppercase;
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  padding: 6px 12px;
  cursor: pointer;
  font-weight: bold;
  font-size: 10pt;
}

.popup button:hover {
  background-color: #3d49578b;
}