#overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 600;
}

#notification-close, #modal-close {
  background: url('../images/close.png') 25px 25px;
  background-position: center center;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  opacity: 0.5;
  background-size: 80%;
}
  #notification-close:hover, #modal-close:hover {
    opacity: 1;
  }

#notification {
  font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  display: none;
  background-color: #fff;
  color: #666;
  font-weight: 200;
  font-size: 18px;
  padding: 15px;
  border-radius: 0 0 3px 3px;
  text-align: center;
  height: auto;
  position: fixed;
  top: 0;
  right: 25%;
  left: 25%;
  z-index: 1000;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

@media screen and (max-width: 599px) {
  #notification {
    right: 5%;
    left: 5%;
  }
}

#notification.notification-success {
  background-color: #E1F9EC;
  color: #64A983;
}
#notification.notification-warning {
  background-color: #ff5c57;
  color: #fff;
}

#notification-custom-modal,
#notification-modal {
  border-radius: 5px;
  width: 400px;
  position: fixed;
  display: none;
  height: auto;
  top: 40%;
  left: calc(50% - 200px);
  z-index: 1000;
  background-color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
  #notification-modal #modal-text {
    text-align: center;
    padding: 35px 15px 35px 15px;
    font-size: 1.1em;
  }
  #notification-modal #modal-buttons {
    margin: auto;
    text-align: center;
  }
  #notification-modal button {
    padding: 20px 0;
    border: none;
    background: #888;
    color: #FFF;
    font-weight: 400;
    font-size: 1em;
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    text-transform: uppercase;
    cursor: pointer;
    width: 50%;
  }
    #notification-modal button.modal-delete {
      background-color: #f66956;
    }
    #notification-modal button.modal-confirm {
      background-color: #2eafc2;
    }
    #notification-modal button:hover {
      opacity: 0.8;
    }
    #notification-modal button:active {
      box-shadow: inset 0 0 5px #666;
    }
