
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@-webkit-keyframes pulse7132 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}
@keyframes pulse7132 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}


.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    border-bottom: 2px solid #121212;
}

.basket-box{
    background: #1e1e1e;
    z-index: 9999;
}

/*dot*/
.ping {
    position: relative;
    height: 30px;
    width: 30px;
}
.ping::before,
.ping::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: #eee;
    -webkit-animation: pulse7132 2s linear infinite;
    animation: pulse7132 2s linear infinite;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
}
.ping::after {
    -webkit-animation-delay: calc(2s / -2);
    animation-delay: calc(2s / -2);
}
/*dot*/
/*arrow-up*/
body{
    background-image:url("../../Images/Food/pattern_menu.jpg");
    background-repeat: repeat;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff4a73', endColorstr='#ff1144',GradientType=1 );
    background-blend-mode: lighten;
    background-color: transparent;

}



.bg_design_dark::after{
    display: block;
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    /* z-index: -1; */
}