.center-a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.mx-sc-post-c {
    max-width: 300px;
    min-width: 200px;
}
.notificat-1 {
    animation: notificat-1 250ms;
}
.bg-error-noti {
    background-image: linear-gradient(to bottom right,#f44336 40%, #c11454 100%);
}
.box-s {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    transition: all 200ms;
}
.bg-dark-animation {
    animation: bg-dark-animation 800ms;
    backdrop-filter: blur(2px);
    -webkti-backdrop-filter: blur(2px);
    background-color: #18181861;
}
.bg-dark-animation-2 {
    animation: bg-dark-animation-2 800ms;
}
.radius{
    border-radius: 20px;
}
.notificat-1{
    animation:  notificat-1 250ms;
  }
  .notificat-2{
    animation:  notificat-2 250ms;
    transform:  scale(0);
  }




@keyframes notificat-1 {
    0%{
        transform:  scale(0);
    }
    70%{
        transform:  scale(1.05);
    }
    100%{
        transform:  scale(1);
    }
}
@keyframes notificat-2 {
    100%{
        transform:  scale(0);
    }
    70%{
        transform:  scale(1.05);
    }
    0%{
        transform:  scale(1);
    }
}
@keyframes bg-animation-blur {
    0% {
        backdrop-filter: blur(2px);
        -webkti-backdrop-filter: blur(2px);
        background-color: rgba(82, 82, 82, 0.6);
    }

    100% {
        backdrop-filter: blur(0px);
        -webkti-backdrop-filter: blur(0px);
        background-color: rgba(255, 255, 255, 0);
    }
}
@keyframes bg-dark-animation {
    0%{
       background-color: rgba(255, 255, 255, 0);
       backdrop-filter: blur(0px);
       -webkti-backdrop-filter: blur(0px);
   }
   100%{
       backdrop-filter: blur(2px);
       -webkti-backdrop-filter: blur(2px);
       background-color: #18181861;
   }
}
@keyframes bg-dark-animation-2 {
   0%{
       backdrop-filter: blur(2px);
       -webkti-backdrop-filter: blur(2px);
       background-color: #18181861;
   }
   100%{
      background-color: rgba(255, 255, 255, 0);
      backdrop-filter: blur(0px);
      -webkti-backdrop-filter: blur(0px);
  }
  
}