.green_toast_msg {
    background: var(--bg-toast-green);
}

.orange_toast_msg {
    background: var(--bg-toast_orange);
}

.toast_contain_mess {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%) translateY(-200%);
    border-radius: 6px;
    padding: 10px 14px;
    box-shadow: var(--bg-shadow-toast-msg);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.25, 1.35);
    z-index: 9999;
    max-width: 436px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.toast_contain_mess.toast_act {
    transform: translateX(-50%) translateY(65px);
}
.toater_mess_con {
    font-family: "Noto Sans", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--bg-white-clr);
}

.toast_close_btn {
    cursor: pointer;
    opacity: 0.7;
}
.toast_close_btn:hover {
    opacity: 1;
}
