.popupError{
    position: absolute;

    top: 100%;
    left: 50%;
    transform: translate(-50%, 0px);

    background: var(--cherry-dark);
    color: #fff;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.4;
    width: max-content;
    max-width: 80dvw;
    text-align: center;
    box-shadow: 0 8px 28px rgba(92, 15, 26, 0.35);
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), transform .22s cubic-bezier(0.34, 1.56, 0.64, 1);

    &::before {
        content: '';
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 7px solid transparent;
        border-bottom-color: var(--cherry-dark);
    }
}

.popupError--show{
    opacity: 1;
    transform: translate(-50%, 20px);
    pointer-events: auto;
}