.modal-header-dialog {
  border-bottom: 3px solid #1C89D6;
}

#confirm-dialog .btn-primary {
    background-color: #1C89D6;
    border-color: #1C89D6;
}

.height-modal-body-210 {
  height: 245px !important;
}

.height-modal-body-success {
  height: 100%;
}

#confirm-dialog-error .modal-header, #confirm-dialog-success .modal-header {
  border-bottom: 0px !important;
}

.width-button-dialog {
  width: 20%;
}

@media (max-width: 1119px){
	.width-button-dialog {
    width: 20%;
  }
}

@media (max-width: 767px) {
  .width-button-dialog {
    width: 30%;
  }
}

.btn-primary-none-padding {
	padding: 0px !important;
}

.modal-footer-dialog {
  border-top: 0px;
}

.close {
    z-index: 1;
    position: relative;
}

.modalbox.success,
.modalbox.error,
.modalbox.warning {
  position: relative;
  top: -45px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background: #fff;
  padding: 25px 25px 15px;
  text-align: center;
}
.modalbox.success.animate .icon,
.modalbox.error.animate .icon,
.modalbox.warning.animate .icon {
  -webkit-animation: fall-in 0.75s;
  -moz-animation: fall-in 0.75s;
  -o-animation: fall-in 0.75s;
  animation: fall-in 0.75s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.modalbox.success h4,
.modalbox.warning h4,
.modalbox.error h4 {
    margin-top: 15px;
}

.modalbox.success button,
.modalbox.warning button,
.modalbox.error button,
.modalbox.success button:active,
.modalbox.warning button:active,
.modalbox.error button:active,
.modalbox.success button:focus,
.modalbox.warning button:focus,
.modalbox.error button:focus {
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  margin-top: 15px;
  width: 40%;
  background: transparent;
  color: #00A273;
  border-color: #00A273;
  outline: none;
}
.modalbox.success button:hover,
.modalbox.warning button:hover,
.modalbox.error button:hover,
.modalbox.success button:active:hover,
.modalbox.warning button:active:hover,
.modalbox.error button:active:hover,
.modalbox.success button:focus:hover,
.modalbox.warning button:focus:hover,
.modalbox.error button:focus:hover {
  color: #fff;
  background: #00A273;
  border-color: transparent;
}
.modalbox.success .icon,
.modalbox.warning .icon,
.modalbox.error .icon {
  position: relative;
  margin: 0 auto;
  margin-top: -95px;
  left: -3px;
  background: #00A273;
  height: 100px;
  width: 100px;
  border-radius: 50%;
}
.modalbox.success .icon img,
.modalbox.warning .icon img,
.modalbox.error .icon img{
  position: absolute;
  font-size: 4em;
  width: 70px;
  height: 80px;
  color: #fff;
  text-align: center;
  padding-top: 19px;
  left: 15px;
}
.modalbox.error button,
.modalbox.error button:active,
.modalbox.error button:focus {
  color: #DB092F;
  border-color: #DB092F;
}
.modalbox.error button:hover,
.modalbox.error button:active:hover,
.modalbox.error button:focus:hover {
  color: #fff;
  background: #DB092F;
}
.modalbox.error .icon {
  background: #DB092F;
}
.modalbox.error .icon i {
  left: 28px;
}

.modalbox.warning button,
.modalbox.warning button:active,
.modalbox.warning button:focus {
  color: #f4c842;
  border-color: #f4c842;
}
.modalbox.warning button:hover,
.modalbox.warning button:active:hover,
.modalbox.warning button:focus:hover {
  color: #fff;
  background: #f4c842;
}
.modalbox.warning .icon {
  background: #f4c842;
}
.modalbox.warning .icon i {
  left: 37px;
}


.center {
  float: none;
  margin-left: auto;
  margin-right: auto;
/* stupid browser compat. smh */
}
.center .change {
  clear: both;
  display: block;
  font-size: 10px;
  color: #ccc;
  margin-top: 10px;
}

.content-dialog {
  opacity: 0.95;
  margin-top: 0;
  letter-spacing: normal;
  color: #666;
  line-height: 1.5;
}
@-webkit-keyframes fall-in {
  0% {
    -ms-transform: scale(3, 3);
    -webkit-transform: scale(3, 3);
    transform: scale(3, 3);
    opacity: 0;
  }
  50% {
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  60% {
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
  100% {
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@-moz-keyframes fall-in {
  0% {
    -ms-transform: scale(3, 3);
    -webkit-transform: scale(3, 3);
    transform: scale(3, 3);
    opacity: 0;
  }
  50% {
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  60% {
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
  100% {
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@-o-keyframes fall-in {
  0% {
    -ms-transform: scale(3, 3);
    -webkit-transform: scale(3, 3);
    transform: scale(3, 3);
    opacity: 0;
  }
  50% {
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  60% {
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
  100% {
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@-webkit-keyframes plunge {
  0% {
    margin-top: -100%;
  }
  100% {
    margin-top: 25%;
  }
}
@-moz-keyframes plunge {
  0% {
    margin-top: -100%;
  }
  100% {
    margin-top: 25%;
  }
}
@-o-keyframes plunge {
  0% {
    margin-top: -100%;
  }
  100% {
    margin-top: 25%;
  }
}
@-moz-keyframes fall-in {
  0% {
    -ms-transform: scale(3, 3);
    -webkit-transform: scale(3, 3);
    transform: scale(3, 3);
    opacity: 0;
  }
  50% {
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  60% {
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
  100% {
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@-webkit-keyframes fall-in {
  0% {
    -ms-transform: scale(3, 3);
    -webkit-transform: scale(3, 3);
    transform: scale(3, 3);
    opacity: 0;
  }
  50% {
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  60% {
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
  100% {
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@-o-keyframes fall-in {
  0% {
    -ms-transform: scale(3, 3);
    -webkit-transform: scale(3, 3);
    transform: scale(3, 3);
    opacity: 0;
  }
  50% {
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  60% {
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
  100% {
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes fall-in {
  0% {
    -ms-transform: scale(3, 3);
    -webkit-transform: scale(3, 3);
    transform: scale(3, 3);
    opacity: 0;
  }
  50% {
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  60% {
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
  100% {
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@-moz-keyframes plunge {
  0% {
    margin-top: -100%;
  }
  100% {
    margin-top: 15%;
  }
}
@-webkit-keyframes plunge {
  0% {
    margin-top: -100%;
  }
  100% {
    margin-top: 15%;
  }
}
@-o-keyframes plunge {
  0% {
    margin-top: -100%;
  }
  100% {
    margin-top: 15%;
  }
}
@keyframes plunge {
  0% {
    margin-top: -100%;
  }
  100% {
    margin-top: 15%;
  }
}
