.acr-toast-wrap{
  position: sticky;
  top: 72px; /* adjust to navbar height */
  z-index: 1050;
  padding: 12px 16px;
  display: grid;
  gap: 10px;
}

.acr-toast{
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  gap: 12px;
  align-items: start;

  padding: 14px 14px;
  border-radius: 16px;

  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.10);
}

.acr-toast__icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
  background: rgba(2, 132, 199, 0.10);
  color: rgb(2, 132, 199);
}

.acr-toast__title{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2px;
  color: rgba(2, 6, 23, .85);
  margin-top: 1px;
}

.acr-toast__msg{
  font-size: 14px;
  line-height: 1.45;
  color: rgba(15, 23, 42, .70);
}

.acr-toast__close{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 0;
  background: transparent;
  color: rgba(15, 23, 42, .55);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.acr-toast__close:hover{
  background: rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, .75);
}

/* Variants */
.acr-toast--success{ border-left: 4px solid rgba(16, 185, 129, .85); }
.acr-toast--success .acr-toast__icon{ background: rgba(16, 185, 129, .12); color: rgb(16, 185, 129); }

.acr-toast--error,
.acr-toast--danger{ border-left: 4px solid rgba(239, 68, 68, .85); }
.acr-toast--error .acr-toast__icon,
.acr-toast--danger .acr-toast__icon{ background: rgba(239, 68, 68, .12); color: rgb(239, 68, 68); }

.acr-toast--warning{ border-left: 4px solid rgba(245, 158, 11, .90); }
.acr-toast--warning .acr-toast__icon{ background: rgba(245, 158, 11, .14); color: rgb(245, 158, 11); }

@media (max-width: 576px){
  .acr-toast-wrap{ top: 64px; padding: 10px 10px; }
  .acr-toast{ border-radius: 14px; }
}
