/* @import 'https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap';
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: poppins, sans-serif;
} */
.notifications {
  --dark: #34495E;
  --light: #ffffff;
  --success: #0ABF30;
  --error: #E24D4C;
  --warning: #E9BD0C;
  --info: #3498DB;
}

.notifications {
  position: fixed;
  top: 30px;
  right: 20px;
  z-index: 100;
}

.notifications :where(.bell, .column) {
  display: flex;
  align-items: center;
}

.notifications .bell {
  width: 400px;
  list-style: none;
  overflow: hidden;
  border-radius: 4px;
  padding: 16px 17px;
  margin-bottom: 10px;
  position: relative;
  background: var(--light);
  justify-content: space-between;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.05);
  animation: show_bell 0.3s ease forwards;
}

@keyframes show_bell {
  0% {
    transform: translateX(100%);
  }
  40% {
    transform: translateX(-5%);
  }
  80% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-10px);
  }
}
.notifications .bell.hide {
  animation: hide_bell 0.3s ease forwards;
}

@keyframes hide_bell {
  0% {
    transform: translateX(-10px);
  }
  40% {
    transform: translateX(0%);
  }
  80% {
    transform: translateX(-5%);
  }
  100% {
    transform: translateX(calc(100% + 20px));
  }
}
.bell::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 100%;
  bottom: 0;
  left: 0;
  animation: progress 5s linear forwards;
}

@keyframes progress {
  100% {
    width: 0%;
  }
}
.bell.success::before {
  background: var(--success);
}

.bell.error::before {
  background: var(--error);
}

.bell.warning::before {
  background: var(--warning);
}

.bell.info::before {
  background: var(--info);
}

.bell .column i {
  font-size: 1.75rem;
}

.bell.success .column i {
  color: var(--success);
}

.bell.error .column i {
  color: var(--error);
}

.bell.warning .column i {
  color: var(--warning);
}

.bell.info .column i {
  color: var(--info);
}

.bell .column span {
  font-size: 1.07rem;
  margin-left: 12px;
  word-wrap: break-word;
  display: block;
  padding-right: 20px;
}

.bell i:last-child {
  color: #aeb0d7;
  cursor: pointer;
  transition: 0.2s ease;
  position: absolute;
  right: 10px;
}

.bell i:last-child:hover {
  color: var(--dark);
}

.btn {
  border: none;
  outline: none;
  color: var(--light);
  margin: 0 5px;
  cursor: pointer;
  padding: 10px 20px;
  font-size: 1.2rem;
  border-radius: 4px;
  transition: 0.2s ease;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.05);
}

.btn#success:hover {
  background: #089125;
}

.btn#error:hover {
  background: #c52020;
}

.btn#warning:hover {
  background: #c29d0a;
}

.btn#info:hover {
  background: #2283c3;
}

@media screen and (max-width: 530px) {
  .notifications {
    width: 95%;
  }
  .notifications .bell {
    width: 100%;
    font-size: 1rem;
    margin-left: 20px;
  }
  .buttons .btn {
    margin: 0 1px;
    font-size: 1.1rem;
    padding: 8px 15px;
  }
}/*# sourceMappingURL=toast.css.map */