﻿/**
 * Default Look and Feel
 */
.alertify,
.alertify-log {
  font-family: sans-serif;
}

.alertify {
  background: #fff;
  /*border: 1px solid #ddd;*/ /* browsers that don't support rgba */
  border-radius: 5px;
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.1);
  -webkit-background-clip: padding; /* Safari 4? Chrome 6? */
  -moz-background-clip: padding; /* Firefox 3.6 */
  background-clip: padding-box; /* Firefox 4, Safari 5, Opera 10, IE 9 */
}

.alertify-message {
  color: #727e8c;
  font-size: 15px;
  color: inherit;
}

.alertify-text {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 4px;
}
.alertify-buttons {
  text-align: center;
}
.alertify-button {
  min-width: 100px;
  color: white;
  border-radius: 4px;
  /* font-weight: bold; */
  padding: 6px 15px;
  text-decoration: none;
}

.alertify-button:hover,
.alertify-button:focus {
  outline: none;
}

.alertify-button:focus {
  box-shadow: none;
}

.alertify-button:active {
  position: relative;
  /* box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); */
}

.alertify-button-cancel,
.alertify-button-cancel:hover,
.alertify-button-cancel:focus {
  color: #ff6000;
  background-color: white;
  border: 1px solid #ff6000;
}

.alertify-button-ok,
.alertify-button-ok:hover,
.alertify-button-ok:focus {
  background-color: #ff6000;
  border: 1px solid #ff6000;
}

.alertify-log {
  background: #1f1f1f;
  background: rgba(0, 0, 0, 0.9);
  padding: 15px;
  border-radius: 4px;
  color: #fff;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5);
}

.alertify-log-error {
  background: #fe1a00;
  background: rgba(254, 26, 0, 0.9);
}

.alertify-log-success {
  background: rgba(50, 100, 250, 0.9);
}

.alertify-log-custom {
  background: #ff7f00;
}
