@-webkit-keyframes ngdialog-fadeout {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes ngdialog-fadeout {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes ngdialog-fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes ngdialog-fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.ngdialog {
  box-sizing: border-box;
}

.ngdialog *,
.ngdialog *:before,
.ngdialog *:after {
  box-sizing: inherit;
}

.ngdialog {
  position: fixed;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.ngdialog.ngdialog-disabled-animation,
.ngdialog.ngdialog-disabled-animation .ngdialog-overlay,
.ngdialog.ngdialog-disabled-animation .ngdialog-content {
  -webkit-animation: none!important;
  animation: none!important;
}

.ngdialog-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadein 0.5s;
  animation: ngdialog-fadein 0.5s;
}

.ngdialog-no-overlay {
  pointer-events: none;
}

.ngdialog.ngdialog-closing .ngdialog-overlay {
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadeout 0.5s;
  animation: ngdialog-fadeout 0.5s;
}

.ngdialog-content {
  background: white;
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadein 0.5s;
  animation: ngdialog-fadein 0.5s;
  pointer-events: all;
}

.ngdialog.ngdialog-closing .ngdialog-content {
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadeout 0.5s;
  animation: ngdialog-fadeout 0.5s;
}

.ngdialog-close:before {
  font-family: 'Helvetica', Arial, sans-serif;
  content: '\00D7';
  cursor: pointer;
}

html.ngdialog-open,
body.ngdialog-open {
  overflow: hidden;
}

/* PPWEB-5 */
.ngdialog.ngdialog-theme-custom {
  font-size: 1.5em;
  padding-bottom: 100px;
  padding-top: 100px;
  /* padding-top: 20%; */
  -webkit-perspective: 1300px;
  -ms-perspective: 1300px;
  perspective: 1300px;
  -webkit-perspective-origin: 50% 150px;
  -ms-perspective-origin: 50% 150px;
  perspective-origin: 50% 150px;
}

.ngdialog.ngdialog-theme-custom .ngdialog-overlay {
  /* background: rgba(255, 255, 255, 0.2); */
  background: rgba(255, 255, 255, 0);
}

.ngdialog.ngdialog-theme-custom.ngdialog-closing .ngdialog-content {
  -webkit-animation: ngdialog-flipout-horizontal .5s;
  animation: ngdialog-flipout-horizontal .5s;
}

.ngdialog.ngdialog-theme-custom .ngdialog-content {
  -webkit-animation: ngdialog-flipin-horizontal .5s;
  animation: ngdialog-flipin-horizontal .5s;
  background: #222;
  color: #444;
  border: 2px solid #000;
  font-family: "Helvetica Neue",sans-serif;
  line-height: 1.5em;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
  /* padding: 2em 2em 3em; */
  position: relative;
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  /* width: 600px; */
  /*box-sizing: 'content-box';*/
  display: table; /*table-like styles for vertical centering*/
    /* width: 100% !important; */
    /* height:100%; */
}

.ngdialog.ngdialog-theme-custom .ngdialog-close {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
}

.ngdialog.ngdialog-theme-custom .ngdialog-close:before {
  background: #555;
  color: #fff;
  display: block;
  font-family: "Helvetica Neue",sans-serif;
  font-size: 1em;
  font-weight: 100;
  height: 1.25em;
  line-height: 1px;
  overflow: hidden;
  padding-top: .5em;
  right: 0;
  text-align: center;
  text-indent: 1px;
  top: 0;
  width: 1.25em;
}

.ngdialog.ngdialog-theme-custom .ngdialog-message {
  /* margin-bottom: .5em; */
}

.ngdialog.ngdialog-theme-custom .ngdialog-input {
  margin-bottom: .5em;
}

.ngdialog.ngdialog-theme-custom .ngdialog-input textarea,
.ngdialog.ngdialog-theme-custom .ngdialog-input input[type="text"],
.ngdialog.ngdialog-theme-custom .ngdialog-input input[type="password"],
.ngdialog.ngdialog-theme-custom .ngdialog-input input[type="email"],
.ngdialog.ngdialog-theme-custom .ngdialog-input input[type="url"] {
  background: #f0f0f0;
  border: 0;
  border-radius: 3px;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  margin: 0 0 .25em;
  min-height: 2.5em;
  padding: .25em .67em;
  width: 100%;
}

.ngdialog.ngdialog-theme-custom .ngdialog-input textarea:focus,
.ngdialog.ngdialog-theme-custom .ngdialog-input input[type="text"]:focus,
.ngdialog.ngdialog-theme-custom .ngdialog-input input[type="password"]:focus,
.ngdialog.ngdialog-theme-custom .ngdialog-input input[type="email"]:focus,
.ngdialog.ngdialog-theme-custom .ngdialog-input input[type="url"]:focus {
  -webkit-box-shadow: inset 0 0 0 2px #666;
  box-shadow: inset 0 0 0 2px #666;
  outline: none;
}

.ngdialog.ngdialog-theme-custom .ngdialog-buttons {
  margin-bottom: -3em;
  margin-left: -2em;
  margin-right: -2em;
  padding-top: 1em;
}

.ngdialog.ngdialog-theme-custom .ngdialog-buttons:after {
  clear: both;
  content: '';
  display: table;
}

.ngdialog.ngdialog-theme-custom .ngdialog-button {
  border: 0;
  float: right;
  font-family: inherit;
  font-size: 1em;
  letter-spacing: .1em;
  line-height: 1em;
  margin: 0;
  padding: .5em 1em;
  text-transform: uppercase;
  cursor: pointer;
}

.ngdialog.ngdialog-theme-custom .ngdialog-button:focus {
  outline: none;
}

.ngdialog.ngdialog-theme-custom .ngdialog-button.ngdialog-button-primary {
  background: #27ae60;
  color: #fff;
}

.ngdialog.ngdialog-theme-custom .ngdialog-button.ngdialog-button-primary:focus {
  -webkit-box-shadow: inset 0 3px rgba(0,0,0,0.2);
  box-shadow: inset 0 3px rgba(0,0,0,0.2);
}

.ngdialog.ngdialog-theme-custom .ngdialog-button.ngdialog-button-secondary {
  background: #fff;
  color: #ccc;
}

.ngdialog.ngdialog-theme-custom .ngdialog-button.ngdialog-button-secondary:focus {
  background: #eee;
  -webkit-box-shadow: inset 0 3px #aaa;
  box-shadow: inset 0 3px #aaa;
  color: #777;
}

.ngdialog.ngdialog-theme-custom .ngdialog-button.ngdialog-button-secondary:hover,
.ngdialog.ngdialog-theme-custom .ngdialog-button.ngdialog-button-secondary:active {
  color: #777;
}