/*
//
// Tip: to integrate this plugin seamlessly into your application, use these styles as a starting
// point to build your own stylish alerts and confirmations!
//
*/
/* Nightmode */
.nightmode-theme .alertable {
  background: #21232f;
  box-shadow:0 0 90px rgba(255, 255, 255, 0.25)
}
.nightmode-theme .alertable-message {
  color:#fff
}
.nightmode-theme .alertable-overlay {
  background: rgba(255, 255, 255, 0.4)
}

/* Modal */
.alertable {
  position: fixed;
  z-index: 9999;
  top: 38vh;
  left: calc(50% - 150px);
  background: white;
  border-radius: 20px;
  margin: 0 auto;
  width:300px;
  height:auto;
  box-shadow:0 0 90px rgba(0, 0, 0, 0.25);
  padding:30px
}

/* Overlay */
.alertable-overlay {
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6)
}

/* Message */
.alertable-message {
  text-align:center;
  font-size:20px;
  font-weight:600;
  line-height:32px;
  padding:10px 0 25px
}

/* 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 {
  background: #1db3eb;
  font-family: 14px;
  font-size: inherit;
  color: #fff;
  border:none;
  padding: 15px 25px;
  border-radius:50px;
  margin:0 auto;
  display:block;
  outline: none;
  cursor: pointer
}

.alertable-ok:hover {
  background-color: #1199cc;
}

/* Cancel button */
.alertable-cancel {
  border: solid 1px #ddd;
  background: white;
  font-family: inherit;
  font-size: inherit;
  color: #888;
  border-radius: 4px;
  padding: 6px 12px;
  margin-left: 4px;
  cursor: pointer;
}

.alertable-cancel:hover,
.alertable-cancel:focus,
.alertable-cancel:active {
  background-color: #f2f2f2;
}