.swiper.categories .swiper-wrapper {
    display: flex;
    justify-content: center;
}

.categories .swiper-slide .title-outside {
    display: block;
}

.categories .swiper-slide .title-inside {
    display: none;
}

.categories .swiper-slide .card {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.categories .swiper-slide .card .card-body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories .swiper-slide .card img {
    width: 80%;
    height: 80%;
}


@media screen and (max-width: 479px) {
    .categories .swiper-slide .title-outside {
        display: none;
    }

    .categories .swiper-slide .title-inside {
        display: block;
        white-space: pre;
        overflow: hidden;
    }

    .categories .swiper-slide .card {
        border-radius: 5px;
    }

    .categories .swiper-slide .card .card-body {
        flex-direction: column;
    }
}

.custom-incrementor {
    border: none;
    overflow: hidden;
    border-radius: 5px;
    height: 30px;
    padding: 0;
    line-height: 0;
}

.custom-incrementor .input-group .input-group-text {
    cursor: pointer;
    border: none;
    padding: 2px 5px;
    background-color: #f7f7f7;
}


.custom-incrementor .input-group input {
    border: none;
    outline: none;
    box-shadow: none;
    -webkit-appearance: textfield !important;
    text-align: center;
    max-width: 40px;
}

.cart-delete-btn{
    width: 25px;
    height: 25px;
    background-color: rgb(255, 0, 0);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    line-height: 23px;
    box-shadow: 0 0 0px 3px #fff;
    position: absolute;
    top: -5px;
    right: -5px;
}