/* Loader with 3 spinners;
 * Error and Success modal style.
 *
 */


/* From Material Kit */
.alert {
    border: 0;
    border-radius: 0;
    padding: 20px 15px;
    line-height: 20px;
}
.alert b {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px; 
}
.alert, .alert.alert-default {
    background-color: white;
    color: #555555; 
}
.alert a, .alert .alert-link, .alert.alert-default a, .alert.alert-default .alert-link {
    color: #555555; 
}
.alert.alert-inverse {
    background-color: #292929;
    color: #fff; 
}
.alert.alert-inverse a, .alert.alert-inverse .alert-link {
    color: #fff; 
}
.alert.alert-primary {
    background-color: #309df4;
    color: #ffffff; 
}
.alert.alert-primary a, .alert.alert-primary .alert-link {
    color: #ffffff; 
}
.alert.alert-success {
    background-color: #55b559;
    color: #ffffff; 
}
.alert.alert-success a, .alert.alert-success .alert-link {
    color: #ffffff; 
}
.alert.alert-info {
    background-color: #00cae3;
    color: #ffffff; 
}
.alert.alert-info a, .alert.alert-info .alert-link {
    color: #ffffff; 
}
.alert.alert-warning {
    background-color: #ff9e0f;
    color: #ffffff; 
}
.alert.alert-warning a, .alert.alert-warning .alert-link {
    color: #ffffff; 
}
.alert.alert-danger {
    background-color: #f55145;
    color: #ffffff; 
}
.alert.alert-danger a, .alert.alert-danger .alert-link {
    color: #ffffff; 
}
.alert.alert-rose {
    background-color: #ea2c6d;
    color: #ffffff; 
}
.alert.alert-rose a, .alert.alert-rose .alert-link {
    color: #ffffff; 
}
.alert-info, .alert-danger, .alert-warning, .alert-success {
    color: #ffffff; 
}
.alert-default a, .alert-default .alert-link {
    color: rgba(0,0,0, 0.87); 
}


/* ZC custom */

.alert-info p, .alert-danger p, .alert-warning p, .alert-success p {
    color: #ffffff; 
    font-size:14px;
}
.modal .alert {
    border:none;
    border-radius:5px;
}
.modal.alert-modal .modal-dialog {
    margin-top:20px;
    box-shadow: 0 1px 30px rgba(0,0,0,.5);
}
.modal.alert-modal {
    z-index: 100000;
}
.modal-full .modal-dialog {
  width: 90%;
}
.modal-full .modal-content {
  height: 80vh;
}
.modal-full .modal-content .modal-body {
  height:100%;
}
.modal-full iframe {
  width:100%;
  height:100%;
}
.alert p {
    text-align: center;
}
.alert .alert-icon {
    display: none;
}

.error * {color: red!important}

.loading-overlay {
    display:none;
    position: fixed;
    z-index: 99999;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0,0,0,0.8);
}
.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 70px;
}
.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #fff;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  /* prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0.0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes bouncedelay {
  0%, 80%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 40% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}
