/* Functions */
/*notifications*/
.db_notification {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 120;
  /*background: rgba(35,31,32,0.8);*/
}

.db_notification.show_notification {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.notification_wrapper {
  width: 90%;
  max-width: 500px;
  background: #b09fa3;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2.25em;
  -webkit-box-shadow: 2px 2px 9px -6px #231441;
          box-shadow: 2px 2px 9px -6px #231441;
}

.notification_wrapper h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 0.61em;
  font-weight: 500;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  color: #231f20;
}

.notification_wrapper h1 p {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 0em;
  color: inherit;
}

.notification_wrapper p {
  font-size: 1.6rem;
  line-height: 1.45;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  color: #fff;
  margin-bottom: 1em;
}

.notification_wrapper small {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  font-size: 1.12rem;
  margin-bottom: 2em;
}

.notification_wrapper small a {
  color: #231f20;
}

.notification_wrapper small p {
  font-size: 1.12rem;
  margin-bottom: 0em;
}

.notification_wrapper a.btn {
  display: block;
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
  background: #231f20;
  padding: 0.35em 1.45em;
  font-size: 1.36rem;
  cursor: pointer;
  color: #dac5ca;
  -webkit-transition: background 0.71s;
  transition: background 0.71s;
  margin-right: auto;
}

.notification_wrapper a.btn:hover {
  background: #665e60;
}

.notification_wrapper a.btn p {
  margin: 0;
  font-size: 1.36rem;
  padding: 0;
}

.notification_wrapper .notification_top {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1.3em;
}

.notification_wrapper .notification_top .notification_logo {
  width: 1.25rem;
}

.notification_wrapper .close_db_notification {
  cursor: pointer;
  -webkit-transition: border 0.5s;
  transition: border 0.5s;
  padding-bottom: 0.25em;
  border-bottom: solid 3px     transparent;
  color: #f1f1f1;
}

.notification_wrapper .close_db_notification:hover {
  border-bottom: solid 3px #dac5ca;
}
/*# sourceMappingURL=notifications.css.map */