/* Modal */
.alertable {
  position: fixed;
  z-index: 9999;
  top: 38vh;
  left: calc(50% - 150px);
  width: 300px;
  background-color: #222224;
  border-radius: 10px;
  padding-top: 15px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 10px;
  margin: 0 auto;
  border: 1px solid #565557;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* Overlay */
.alertable-overlay {
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .1);
}
/* Message */
.alertable-message {
  color: #FFFFFF;
}
/* Prompt */
.alertable-prompt {
  margin-bottom: 20px;
}
.alertable-input {
  width: 100%;
  border-radius: 4px;
  box-shadow: none;
  border: solid 1px #ccc;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  padding: 6px 12px;
  display: block;
  box-sizing: border-box;
  margin-bottom: 10px;
}
/* Button group */
.alertable-buttons {
  text-align: right;
}
/* OK button */
.alertable-ok {
  font-family: inherit;
  font-size: inherit;
  color: #4891FF;
  padding: 5px;
  margin-left: 4px;
  cursor: pointer;
  background-color: #222224;
  border-style: none;
}
.alertable-ok:hover, .alertable-ok:focus, .alertable-ok:active {}
/* Cancel button */
.alertable-cancel {
  font-family: inherit;
  font-size: inherit;
  color: #4891FF;
  padding: 5px;
  margin-left: 4px;
  cursor: pointer;
  background-color: #222224;
  border-style: none;
}
.alertable-cancel:hover, .alertable-cancel:focus, .alertable-cancel:active {
  background-color: #f2f2f2;
}