.fake-order-toast {
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid rgba(21, 94, 239, .14);
    border-radius: 8px;
    bottom: 22px;
    box-shadow: 0 18px 45px rgba(16, 24, 40, .16);
    color: #101828;
    display: grid;
    gap: 12px;
    grid-template-columns: 52px minmax(0, 1fr) 28px;
    left: 22px;
    max-width: min(390px, calc(100vw - 28px));
    opacity: 0;
    padding: 14px;
    pointer-events: none;
    position: fixed;
    transform: translateY(14px);
    transition: opacity .22s ease, transform .22s ease;
    width: 390px;
    z-index: 1050;
}

.fake-order-toast.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.fake-order-toast__media {
    align-items: center;
    background: linear-gradient(135deg, #155eef, #16b364);
    border-radius: 8px;
    color: #ffffff;
    display: inline-flex;
    font-size: 17px;
    height: 52px;
    justify-content: center;
    overflow: hidden;
    width: 52px;
}

.fake-order-toast__image {
    display: none;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.fake-order-toast.has-image .fake-order-toast__image {
    display: block;
}

.fake-order-toast.has-image .fake-order-toast__media i {
    display: none;
}

.fake-order-toast__content {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.fake-order-toast__eyebrow {
    color: #155eef;
    font-size: 11px;
    font-weight: 850;
    line-height: 1.2;
    text-transform: uppercase;
}

.fake-order-toast__title {
    color: #101828;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.35;
    margin: 0;
}

.fake-order-toast__meta {
    color: #667085;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.4;
}

.fake-order-toast__close {
    align-items: center;
    background: #f2f4f7;
    border: 0;
    border-radius: 8px;
    color: #667085;
    cursor: pointer;
    display: inline-flex;
    height: 28px;
    justify-content: center;
    padding: 0;
    width: 28px;
}

.fake-order-toast__close:hover {
    background: #e4e7ec;
    color: #344054;
}

@media (max-width: 767px) {
    .fake-order-toast {
        bottom: 76px;
        left: 14px;
        right: 14px;
        width: auto;
    }
}
