.message {
    position: fixed !important;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 30vw !important;
    z-index: 500 !important;
    bottom: 0 !important;
    left: 0 !important;
    margin: 40px;
    padding: 24px;
    border-radius: 6px;
    border: 1px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 6px 24px 0px rgba(21, 59, 58, 0.27);
    animation-name: slideInLeft;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
}

.message-close {
    animation-name: slideOutLeft;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
}



.message .message-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

}

.message .message-title {
    padding: 8px 16px;
    margin-top: -60px;
    border-radius: 12px;
    color: #F8F7F4;
    box-shadow: 4px 12px 30px 0px rgba(21, 59, 58, 0.12);
}

.message.success .message-title {
    background-color: #153B3A;
}

.message.error .message-title {
    background-color: #AC5140;
}

.message.info .message-title {
    background-color: #A2A799;
}

.message h5 {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 24px;
}


.message .close-btn {
    display: inherit;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #153B3A;
    text-transform: uppercase !important;
    border-radius: 50px;
    border: 2px solid #153B3A;
    transition: all 0.3s ease-in-out;
}

.message .text {
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    padding: 0;
    color: #153B3A;
}



@keyframes slideInLeft {
    from { transform: translateX(-120%); }
    to { transform: translateX(0); }
}

@keyframes slideOutLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-120%); }
}





