.notification {
  margin: 160px auto -80px;
  display: none;
  max-width: 550px;
  width: calc(100% - 40px);
}

@media (max-width: 700px) {
  .notification {
    width: calc(100% - 20px);
    margin: 125px auto -80px;
  }
}

.notification-promo {
  display: flex;
  margin: 0;
}

@media (max-width: 700px) {
  .notification-promo {
    max-width: initial;
    width: initial;
  }
}

@media (max-width: 550px) {
  .notification {
    flex-direction: column;
  }
}

.notification-title {
  width: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  margin-top: 0 !important;
}

@media (max-width: 550px) {
  .notification-title {
    width: 100%;
    font-size: 14px;
    padding: 5px;
    box-sizing: border-box;
  }
}

.notification.notification-warning .notification-title {
  background-color: #f49a5e;
  color: #ffffff;
}

.notification.notification-alert .notification-title {
  background-color: #f45e5e;
  color: #ffffff;
}

.notification-description {
  width: calc(100% - 170px);
  padding: 15px 20px;
}

@media (max-width: 550px) {
  .notification-description {
    width: 100%;
    box-sizing: border-box;
  }
}

.notification.notification-warning .notification-description {
  background-color: #f6e9d8;
  color: #273e39;
}

.notification.notification-alert .notification-description {
  background-color: #f6d8d8;
  color: #273e39;
}

.notification.notification-alert .button {
  background: #f45e5e;
  border-color: #f45e5e;
}

.notification.notification-alert .button:hover {
  border-color: #f45e5e;
  color: #f45e5e;
}

.notification.notification-success .notification-title {
  color: #ffffff;
  background-color: #27ae60;
}

.notification.notification-success .notification-description {
  background-color: #6fcf97;
  color: #ffffff;
}
