/* The Modal (background) */
.webkit_popup_background {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.3); /* Black w/ opacity */
}

/* Modal Content/Box */
.webkit_popup {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: auto;
  margin-right: auto;
  z-index: 1001;
  background-color: #fff;
  border-radius: 5px;
  width: fit-content;
  width: -moz-fit-content;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

/* The Close Button */
.webkit_popup_close {
  cursor:pointer;
  align-self:flex-end;
  margin-bottom:5px;
  z-index: 1015;
}

/* The Title */
.webkit_popup_title {
  color: black;
  background-color: #efefef;
  font-size: 1.5em;
  font-weight: bold;
  width: 90%;
  align-self:flex-end;
  padding: 20px;
  margin: auto;
}

.webkit_popup_content{
  width: 90%;
  margin: 10px;
}

/* The Button */
.webkit_popup_button {
  background-color: #dedede;
  padding: 20px;
  color: #aaa;
}

.webkit_popup_button:hover,
.webkit_popup_button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
} 