* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  line-height: 1.4;
}
.alti-notify__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.096);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  transition: 0.3s;
  animation: fall 0.3s ease-in-out forwards;
  opacity: 0;
}

.alti-notify {
  background: white;
  padding: 10px;
  box-shadow: 11px 12px 15px #3a3a3b24;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
  animation: come-in alternate forwards 0.3s;
  position: relative;
}

.notify-small {
  width: 400px;
}
.notify-medium {
  width: 600px;
}
.notify-large {
  width: 90%;
}
.notify-content {
  padding: 5px;
}

.notify-content__para {
  font-size: 14px;
}

.notify-buttons {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 0.7rem;
}
.notify-buttons button {
  display: block;
  outline: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.cancel button {
  color: #fff;
  background: #ff4b4b;
}
.ok button {
  background: transparent;
  box-shadow: 6px -1px 16px rgb(0 0 0 / 13%);
}
.notify-small .notify-buttons button {
  padding: 0.4rem 2rem;
}
.notify-medium .notify-buttons button {
  padding: 0.7rem 3rem;
}
.notify-large .notify-buttons button {
  padding: 1rem 4rem;
}

@keyframes come-in {
  from {
    top: -30px;
  }
  to {
    top: 0;
  }
}

@keyframes fall {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
