/*
Theme Name: Flatsome Child - MFood
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

.box-image {
    min-height: 260px;
    max-height: 260px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.retailer-container {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.retailer-item {
    display: block;
    flex: 1 1 0px;
/*     text-align: center; */
    padding: 0 12px;
}

.retailer-item ul {
    margin-left: 0;
}

.retailer-item-img {
    max-height: 120px;
    height: 120px;
}

.store-title {
	display: block;
}

.retailer-item-img img {
    max-height: 90%;
    max-width: 90%;
}

.badge-circle .badge-inner, .badge-circle-inside .badge-inner {
    border-radius: 999px;
    padding: 10px;
    filter: drop-shadow(5px 5px 4px hsla(0, 0%, 4%, 0.243));
}

.payment-info {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.entry-logo {
	max-height: 100px;
	max-width: 200px;
	aspect-ratio: auto;
}

/* .store-radio-buttons {
    display: flex;
    flex-direction: column;
    gap: 1px; 
}

.store-label {
    display: flex;
    align-items: center;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.store-label input[type="radio"] {
    display: none; 
}

.store-label span {
    font-size: 16px;
    font-weight: 500;
	padding: 10px 15px;
}

.store-label span:hover {
    background-color: #33bfb4;
	color:white;
	border-radius: 5px;
}

.store-label input[type="radio"]:checked + span {
    background-color: #00a89d; 
    color: white; 
    padding: 10px 15px;
    border-radius: 5px;
}

.store-label input[type="radio"]:checked + span {
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2); 
    background-color: #00a89d; 
    color: white; 
} */

.loader {
    display: inline-block;
    vertical-align: middle;
}

.loader span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #00a89d; 
    border-radius: 50%;
    margin: 0 2px;
    opacity: 0;
    animation: loaderAnimation 1.4s infinite ease-in-out both;
}

.loader span:nth-child(1) {
    animation-delay: -0.32s;
}

.loader span:nth-child(2) {
    animation-delay: -0.16s;
}

.loader span:nth-child(3) {
    animation-delay: 0s;
}

@keyframes loaderAnimation {
    0%, 20%, 100% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}

#wishlist-quantity-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

#wishlist-quantity-popup h2 {
    margin-bottom: 10px;
}

#wishlist-quantity-popup button {
    margin-top: 10px;
    margin-right: 10px;
}


/* Custom Registration Page Styles */
.custom-registration-page {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.custom-registration-page h1 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.custom-registration-page form {
    display: flex;
    flex-direction: column;
}

.custom-registration-page .form-row {
    margin-bottom: 20px;
}

.custom-registration-page label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.custom-registration-page input[type="text"],
.custom-registration-page input[type="email"],
.custom-registration-page input[type="tel"],
.custom-registration-page input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #fff;
    color: #333;
    font-size: 16px;
}

.custom-registration-page input[type="text"]:focus,
.custom-registration-page input[type="email"]:focus,
.custom-registration-page input[type="tel"]:focus,
.custom-registration-page input[type="password"]:focus {
    border-color: #0073aa;
    outline: none;
}

.custom-registration-page .woocommerce-button {
    background-color: #0073aa;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.custom-registration-page .woocommerce-button:hover {
    background-color: #005f8d;
}

.custom-registration-page .woocommerce-form-row {
    display: flex;
    flex-direction: column;
}

.custom-registration-page .woocommerce-form-row .required {
    color: red;
    margin-left: 5px;
}

/************** FEATURED PRODUCTS *******************/

.section-title-normal span {
	border-bottom: none;
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}