﻿.btnM {
    color: #fff;
    font-size: 17px;
    padding: 4px 20px;
    text-decoration: none;
    display: none;
}

.btnP {
    color: #fff;
    font-size: 17px;
    padding: 4px 20px;
    text-decoration: none;
    display: none;
}


.InputQtycls {
    width: 69px;
    text-align: center;
    display: none;
}

.FPrice {
    color: orangered;
    font-size: 18px;
    vertical-align: middle;
    font-family: sans-serif;
}


.RPrice {
    text-decoration: line-through;
    font-family: sans-serif;
}


/*Slider*/

.charity-slider-container {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    position: relative;
    /*height: 350px;*/
    margin-top: 0px;
    margin-bottom: 20px;
}

.charity-slider {
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.charity-slides {
    display: flex;
    transition: transform 1s ease-in-out;
}

.charity-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.charity-slide-img {
    width: 100%;
    display: block;
}

.charity-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}

.charity-button-container {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.charity-button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

    .charity-button:hover {
        background-color: rgba(0, 0, 0, 0.7);
    }

.charity-nav-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.charity-nav-dot {
    width: 15px;
    height: 15px;
    margin: 0 5px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

    .charity-nav-dot.active {
        background-color: rgba(0, 0, 0, 0.9);
    }



/*---------------Slider End--------------------*/



/*----------------Start of Category Slider-----------------*/


.category-container {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 15px;
    background-color: #f4f4f4;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 15px;
}

.category-wrapper {
    display: flex;
    transition: transform 0.3s ease-in-out;
    width: max-content;
}

.category-item {
    min-width: 200px;
    margin-right: 10px;
    background-color: white;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 20px;
}

    .category-item img {
        width: 100%;
        height: auto;
        border-radius: 5px;
    }

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 1;
}

    .nav-button:hover {
        background-color: rgba(0, 0, 0, 0.7);
    }

#prevBtn {
    left: 0;
}

#nextBtn {
    right: 0;
}



/*  End Category Slide */




/* Start Footer*/


.footer {
    background-color: white; /* Green background */
    color: #8abb13;
    padding: 25px 20px;
    box-shadow: 0px 0px 15px 0px #cfd3cb;
    margin-top: 50px;
}

    .footer .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        font-size: 12px;
    }

    .footer .footer-section {
        flex: 1;
        min-width: 250px;
        margin: 10px 20px;
    }

        .footer .footer-section h3 {
            /*margin-bottom: 20px;*/
            font-size: 18px;
            /*border-bottom: 2px solid #B2FF59;*/
            /*padding-bottom: 10px;*/
            color: green;
        }

        .footer .footer-section ul {
            list-style-type: none;
            padding: 0;
        }

            .footer .footer-section ul li {
                margin: 10px 0;
            }

                .footer .footer-section ul li a {
                    color: olivedrab;
                    text-decoration: none;
                    transition: color 0.3s;
                }

                    .footer .footer-section ul li a:hover {
                        color: #B2FF59;
                    }

    .footer .social-media a {
        margin-right: 15px;
        color: forestgreen;
        text-decoration: none;
        font-size: 24px;
    }

    .footer .newsletter input[type="email"] {
        padding: 10px;
        margin-right: 10px;
        border: none;
        border-radius: 5px;
        outline: none;
    }

    .footer .newsletter input[type="submit"] {
        padding: 10px 20px;
        background-color: #B2FF59;
        color: #2E7D32;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        outline: none;
        transition: background-color 0.3s;
    }

        .footer .newsletter input[type="submit"]:hover {
            background-color: #81C784;
        }

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #B2FF59;
    margin-top: 40px;
}


/* Modal Styles */
.modalUnity {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 99999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100vw; /* Full width */
    height: 150vw;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    width: 80%; /* Could be more or less, depending on screen size */
}



/* Loader Styles */
.loaderUnity {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin: 20px auto; /* Center the loader */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.dvDIV {
    top: 82px;
    position: absolute;
    overflow-y: scroll;
    width: 250px;
    z-index: 99;
}

.dvUL {
    padding-top: 9px;
    background-color: white;
}

.dvLI {
    height: 45px;
    border-bottom: 1px solid #cbc9c9;
    align-items: center;
    display: flex;
    cursor: pointer;
}

    .dvLI:hover {
        background-color: forestgreen;
    }

.dvA {
    color: darkgrey;
    font-size: 17px;
    margin-left: 20px;
}

/*Whatsapp*/

.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

    .whatsapp-chat a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        background-color: #25d366;
        border-radius: 50%;
        color: white;
        font-size: 30px;
        text-decoration: none;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

        .whatsapp-chat a:hover {
            background-color: #20b858;
        }

/*End Whatsapp*/

.Coupon-textbox {
    border: 1px solid #ccc;
    padding: 2px;
    padding-left: 6px;
    margin-bottom: 8px;
    outline: none;
    width: 102px;
}


.Coupon-button {
    width: 100px;
    margin-bottom: 8px;
}