.toast-message {
    display: flex;
    padding: 6px 12px;
    justify-content: space-between;
    align-items: center;
    background: #027A48;
    color: #fff;
    margin-bottom: 6px;
    gap: 5px;
}

.toast-message.float-top-right {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border-radius: 3px;
    background: #027A48;
    box-shadow: 0 4px 8px -2px rgba(16, 24, 40, 0.10), 0 2px 4px -2px rgba(16, 24, 40, 0.06);
    z-index: 99;
}

.toast-message.error {
    background: #CC0F2F;
}

.toast-message.delete {
    background: #475467;
}

.toast-message--close {
    display: flex;
    justify-content: center;
    align-items: center;
}

.toast-message--wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1 0 0;
}

.toast-message--label {
    color: #FFF;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.toast-message--description {
    color: #FFF;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.toast-message--icon-success {
    color: #039754;
    font-family: "Font Awesome 6 Pro", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 18px;
    font-variant: small-caps;
}

.toast-message button {
    border: none;
    background: none;
    color: inherit;
    padding: 0;
    text-align: left;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        visibility: hidden;
    }
    to {
        opacity: 1;
        visibility: visible;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        visibility: visible;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.fade-in {
    opacity: 0;
    visibility: hidden;
    animation: fadeIn 0.3s ease-out forwards;
}

.fade-out {
    opacity: 1;
    visibility: visible;
    animation: fadeOut 0.3s ease-out forwards;
}

