@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap);

.btn-primary {
    background-color: #ffe500;
    border-color: #ffe500;
    color: #152d34
}

.btn-primary:hover {
    border-color: #ffe500
}

.btn-primary:hover,
.btn-secondary {
    background-color: #152d34;
    color: #ffe500
}

.btn-secondary:hover {
    background-color: rgba(21, 45, 52, .92)
}

.notifications-wrapper {
    inset: 0;
    padding: 3rem;
    pointer-events: none;
    position: fixed;
    z-index: 10050
}

.notifications-wrapper .notification-items {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    width: 100%
}

.notifications-wrapper .notification-items .notification-item {
    background-color: #f2f2f2;
    color: #000;
    padding: 2rem;
    width: -moz-max-content;
    width: max-content;
    width: 100%
}

@media(min-width:576px) {
    .notifications-wrapper .notification-items .notification-item {
        max-width: 40rem;
        min-width: 40rem
    }
}

.notifications-wrapper .notification-items .notification-item+.notification-item {
    margin-top: 1rem
}

@media(max-width:991.98px) {
    .notifications-wrapper .notification-items .notification-item .notification-item {
        max-width: 100%;
        min-width: 100%;
        padding: 2rem 1.5rem;
        width: 100%
    }
}

.notifications-wrapper .notification-items .notification-item p {
    color: inherit;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2.5rem;
    text-align: center;
    color:#fff;
}

@media(max-width:991.98px) {
    .notifications-wrapper .notification-items .notification-item p {
        text-align: center
    }
}

.notifications-wrapper .notification-items .notification-item.notify-success {
    background-color: #198754
}

.notifications-wrapper .notification-items .notification-item.notify-error {
    background-color: #d44e4e
}

.notifications-wrapper .notification-items .notification-item.notify-info {
    background-color: #0dcaf0
}

.notifications-wrapper .notification-items .notification-item.notify-warning {
    background-color: #ffc107
}