/* Copyright 2016, University of Colorado */

/* toast/popup box */
div.popup-message {
  position: fixed;
  top: 35%;
  left: 51%;
  background: cornflowerblue;
  color: white;
  padding: 40px;
  margin-left: 0px;
  z-index: 9999;
  border-radius: 10px;
}

div.popup-message button {
  margin: auto;
  display: block;
}

div.popup-message  p {
  text-align: center;
  max-width: 230px;
}