@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }

  50% {
    opacity: 1;
  }
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
    top: 30%;
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
    top: 30%;
  }

  100% {
    opacity: 0;
  }
}

.ngdialog .ngdialog-content > .card {
  -webkit-box-shadow: 5px 5px 50px 14px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 50px 14px rgba(0, 0, 0, 0.3);
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-duration: 0.25s;
  animation-duration: 0.25s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border-radius: 5px;
}

.ngdialog.ngdialog-closing .ngdialog-content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.ngdialog {
  background: rgba(0, 0, 0, 0);
  z-index: 1000002;
  user-select: text !important;
}

.ngdialog.ngdialog-theme-none .ngdialog-content {
  background: transparent;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.ngdialog-content .card-content {
  padding: 0 15px 0 15px;
}

.ngdialog.ngdialog-theme-none .ngdialog-close {
  border: none;
  background: transparent;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
}

.ngdialog.ngdialog-theme-none .ngdialog-close:before {
  background: transparent;
  color: #bbb;
  content: "\00D7";
  font-size: 26px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
}

.ngdialog.ngdialog-theme-none .ngdialog-close:hover:before,
.ngdialog.ngdialog-theme-none .ngdialog-close:active:before {
  color: #777;
}

.ngdialog.ngdialog-theme-none .ngdialog-message {
  margin-bottom: 0.5em;
}

.ngdialog.ngdialog-theme-none .ngdialog-input {
  margin-bottom: 1em;
}

@media (max-width: 568px) {
  .ngdialog.ngdialog-theme-none .ngdialog-button:focus {
    -webkit-animation: none;
    animation: none;
  }
}

@media (max-width: 768px) {
  .ngdialog.ngdialog-theme-none .ngdialog-button:focus {
    -webkit-animation: none;
    animation: none;
  }

  .ngdialog.ngdialog-theme-none .ngdialog-content {
    background: transparent;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    transform: translateY(1%);
  }
}
