.wishlisted {
    background-color: var(--fc-primary) !important;
    color: var(--fc-white) !important;
}

.custom-alert {
    position: fixed;
    top: 15px;
    left: 35%;
    text-align: center;
    z-index: 9999;
    animation: mymove 1s ease-out forwards;
}

@keyframes mymove
{
  from { top: -50px;}
  to { top: 15px;}
}

.custom-inner-alert {
    margin: 0 auto;
}