.toast_msg {
    display: none;
    align-items: center;
    gap: var(--space-16);
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-24);
    background-color: var(--primary-100);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.toast_msg.show {
    display: flex;
}
.toast_icon {
    width: 24px;
}
.toast_msg_text {
    display: flex;
    flex-direction: column;
    align-items: baseline;
}
.toast_msg_text h6 {
    font-size: var(--font-size-body-md);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-4);
    color: var(--gray-800);
}
.toast_msg_text span {
    font-size: var(--font-size-caption);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-3);
    color: var(--gray-500);
}
.btn_toast_view {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 48px;
    text-decoration: none;
    font-size: var(--font-size-caption);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-3);
    color: #fff;
    letter-spacing: normal;
    background-color: var(--accent-500);
    border-radius: var(--space-8);
}
.btn_toast_close {
    width: 24px;
    cursor: pointer;
}
.btn_toast_close img {
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .toast_msg {
        justify-content: space-between;
        gap: var(--space-0);
        padding: var(--space-16);
        width: calc(100dvw - 20px);
        max-width: 380px;
        box-sizing: border-box;
    }
}