﻿.notify-bubble {
    background: #fff;
    line-height: inherit;
    border-radius: 0.75rem;
    display: none;
    bottom: 6.5rem;
    padding: 2.5rem 3.125rem;
    position: fixed;
    right: 2.25rem;
    text-align: center;
    z-index: 9801;
    box-shadow: 0 0 6.25rem 0 rgba(0, 0, 0, 0.2);
    animation: fadeInFromBottom 1s ease-out forwards;
}
.notify-bubble::after {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    position: absolute;
    bottom: -0.4375rem;
    right: 1.4375rem;
    background: #fff;
    transform: rotate(45deg);
    border-radius: 0.0625rem;
    box-shadow: 0.4375rem 0.4375rem 6.25rem -0.3125rem rgba(0, 0, 0, 0.2);
}


.close {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    cursor: pointer;
}

.close i {
    font-size: 1rem;
}

.notify-bubble h3, .notify-bubble p {
    color: #24242a;
    margin: 0;
}

.notify-bubble h3 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.notify-bubble p {
    font-size: 1rem;
    font-weight: 400;
}

@media (max-width: 767.98px) {
    .notify-bubble {
        display: none !important;
    }
}

@keyframes fadeInFromBottom {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-from-bottom {
    animation: fadeInFromBottom 1s ease-out forwards;
}
