.transition {
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.background-success {
  background-color: #57bf57;
}

.background-warning {
  background-color: #d6a14d;
}

.background-error {
  background-color: #e1715b;
}

.background-info {
  background-color: #4d82d6;
}

#notie-alert-outer,
#notie-confirm-outer,
#notie-input-outer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999;
  height: auto;
  width: 100%;
  display: none;
  text-align: center;
  cursor: pointer;
  font-size: 24px;
}
@media (max-width: 600px) {
  #notie-alert-outer,
  #notie-confirm-outer,
  #notie-input-outer {
    font-size: 18px;
  }
}

#notie-alert-inner {
  padding: 20px;
  display: table-cell;
}

#notie-alert-content {
  max-width: 900px;
  margin: 0 auto;
}

#notie-alert-text {
  color: #ffffff;
}

#notie-confirm-outer {
  cursor: default;
}

#notie-confirm-inner,
#notie-input-inner {
  box-sizing: border-box;
  width: 100%;
  padding: 20px;
  display: block;
  cursor: default;
  background-color: #4d82d6;
}

#notie-confirm-text {
  color: #ffffff;
}

#notie-confirm-text-yes {
  color: #ffffff;
}

#notie-confirm-text-no {
  color: #ffffff;
}

#notie-confirm-yes,
#notie-confirm-no,
#notie-input-no,
#notie-input-yes {
  float: left;
  height: 50px;
  line-height: 50px;
  width: 50%;
  cursor: pointer;
  background-color: #57bf57;
}

#notie-confirm-no,
#notie-input-no {
  float: right;
  background-color: #e1715b;
}

#notie-confirm-background,
#notie-input-background {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999980;
  height: 100%;
  width: 100%;
  display: none;
  background-color: #ffffff;
  opacity: 0;
}

/* INPUT */
#notie-input-outer {
  cursor: default;
}

#notie-input-field {
  display: block;
  box-sizing: border-box;
  height: 55px;
  width: 100%;
  text-align: center;
  outline: 0;
  border: 0;
  background-color: #ffffff;
  font-family: inherit;
  font-size: 24px;
}
@media (max-width: 600px) {
  #notie-input-field {
    font-size: 18px;
  }
}

#notie-input-text {
  color: #ffffff;
}

#notie-input-text-yes {
  color: #ffffff;
}

#notie-input-text-no {
  color: #ffffff;
}
