.container {
    font-family: "Public sans", sans-serif;
    position: fixed;
    background: #fefefe;
    color: #000;
    right: -100%;
    top: 20px;
    z-index: 55;
    padding: 10px 80px 10px 10px;
    display: flex;
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-shadow: rgb(0 0 0 / 16%) 0px 3px 20px 0px;
}

.container.display {
    animation: display-message 0.35s ease-out forwards;
}
.container.hide {
    animation: hide-message 0.35s ease-in forwards;
}

@keyframes display-message {
    0% {
        right: -100%;
    }
    100% {
        right: 2%;
    }
}

@keyframes hide-message {
    100% {
        right: -100%;
    }
}

.status_container {
    /* background: #2a4634; */
    background: #fefefe;
    height: 38px;
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.close_container {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: none;
    width: 20px;
    height: 20px;
    padding: 0px;
    outline: none;
    border: none;
    color: #000;
}

.message {
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
}
