html {
  --card-border-color: rgba(230, 230, 230, 1);
}

.notifications-button {
  --size: 40px;
  align-items: center;
  background-color: rgb(102, 148, 202);
  border: 1px solid rgb(255, 255, 255);
  border-radius: 50%;
  bottom: 30px;
  left: 30px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  position: fixed;
  object-fit: cover;
  width: var(--size);
  height: var(--size);
  z-index: 1000;
}
.notifications-button--active .notifications-button__icon {
  animation: shake-pulse 1s ease-in-out infinite;
  animation-duration: 3s;
}
@keyframes shake-pulse {
  0%, 90%, 100% {
    transform: rotate(0deg);
  }
  92% {
    transform: rotate(-15deg);
  }
  94% {
    transform: rotate(15deg);
  }
  96% {
    transform: rotate(-10deg);
  }
  98% {
    transform: rotate(10deg);
  }
}
.notifications-button:hover {
  filter: brightness(95%);
}
.notifications-button__icon {
  width: 30px;
}
.notifications-button--badge {
  position: absolute;
  top: -7px;
  right: -7px;
  z-index: 1001;
}
.notifications-button:not(.notifications-button--active) .notifications-button--badge {
  display: none;
}
@media (max-width: 575px) {
  .notifications-button {
    bottom: 20px;
    left: 10px;
  }
}

.notification-window {
  background-color: rgb(255, 255, 255);
  border: 1px solid var(--card-border-color);
  border-radius: 12px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  display: none;
  overflow: hidden;
  position: fixed;
  bottom: 90px;
  left: 30px;
  width: 80%;
  max-width: 350px;
  z-index: 101;
}
.notification-window__header {
  background-color: rgb(244, 244, 244);
  border-bottom: 1px solid var(--card-border-color);
  display: flex;
  flex-direction: row;
  font-size: 16px;
  font-weight: 600;
  justify-content: space-between;
  padding: 5px 12px;
}
.notification-window__go-to-settings {
  color: rgb(110, 110, 110);
}
.notification-window__notifications-container {
  max-height: 300px;
  min-height: 50px;
  padding: 10px 10px 20px 10px;
  overflow-y: auto;
}
.notification-window__toast {
  --bs-toast-box-shadow: none;
  margin-bottom: 15px;
  transition: transform 0.3s;
}
.notification-window__toast--old {
  opacity: 50% !important;
}
.notification-window__show-old-notifications {
  padding: 0;
  border: none;
  font: inherit;
  color: var(--blue-primary-color);
  background-color: transparent;
  cursor: pointer;
  width: 100%;
}

/*# sourceMappingURL=style.css.map */