/* Elementor mini-cart empty state. */

@keyframes cf-mini-cart-empty-in{
    0%{
        opacity:0;
        transform:translateY(18px);
    }

    100%{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes cf-mini-cart-empty-icon-float{
    0%,
    100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-6px);
    }
}

.elementor-menu-cart__container .woocommerce-mini-cart__empty-message{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:14px;
    min-height:260px;
    margin:0;
    padding:56px 24px;
    color:rgb(42 42 42 / .64);
    font-size:17px;
    font-weight:500;
    line-height:1.35;
    text-align:center;
    letter-spacing:0;
}

.elementor-menu-cart__container .woocommerce-mini-cart__empty-message::before{
    content:"";
    display:block;
    width:76px;
    height:76px;
    border-radius:22px;
    background-color:rgb(121 182 45 / .13);
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cpath fill='%2379B62D' d='M104 365H208L279 168C288 137 320 115 355 115H646C681 115 713 137 723 170L793 365H958C975 365 990 379 990 396S975 427 958 427H923L862 801C848 851 803 885 752 885H249C198 885 152 851 138 798L78 427H42C25 427 10 413 10 396S25 365 42 365H104ZM141 427L199 785C205 807 225 823 249 823H752C775 823 796 807 801 788L860 427H141ZM726 365L663 189C660 182 654 177 645 177H355C346 177 340 182 338 187L274 365H726ZM469 521C469 504 483 490 500 490S531 504 531 521V729C531 746 517 760 500 760S469 746 469 729V521ZM677 734C674 751 658 762 641 760 624 758 613 742 615 725L644 519C647 502 663 490 680 492S708 510 706 527L677 734ZM385 725C388 742 375 757 358 760 341 762 325 750 323 733L293 527C291 510 303 494 320 492 337 489 353 501 355 518L385 725Z'/%3E%3C/svg%3E");
    background-size:46px 46px;
    background-repeat:no-repeat;
    background-position:center;
    box-shadow:0 14px 34px rgb(42 42 42 / .07);
    opacity:.95;
    animation:cf-mini-cart-empty-icon-float 3.4s ease-in-out infinite;
}

.elementor-menu-cart__container[aria-hidden="true"] .woocommerce-mini-cart__empty-message{
    opacity:1;
    animation:none;
}

.elementor-menu-cart__container[aria-hidden="false"] .woocommerce-mini-cart__empty-message{
    animation:cf-mini-cart-empty-in .5s cubic-bezier(.22,.78,.22,1) both;
}

@media (max-width:767px){
    .elementor-menu-cart__container .woocommerce-mini-cart__empty-message{
        min-height:220px;
        padding:42px 18px;
        font-size:16px;
    }

    .elementor-menu-cart__container .woocommerce-mini-cart__empty-message::before{
        width:68px;
        height:68px;
        border-radius:20px;
        background-size:42px 42px;
    }
}

@media (prefers-reduced-motion:reduce){
    .elementor-menu-cart__container .woocommerce-mini-cart__empty-message,
    .elementor-menu-cart__container .woocommerce-mini-cart__empty-message::before{
        animation:none !important;
        transform:none !important;
    }
}
