/*
Theme Name: Grocery Marketplace Pro
Theme URI: https://www.themagnifico.net/products/marketplace-wordpress-theme
Author: Themagnifico
Author URI: https://www.themagnifico.net/
Description: 
Version: 0.0.2
Requires at least: 5.0
Tested up to: 6.1
Requires PHP: 5.2.4
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: grocery-marketplace-pro
Tags: one-column, right-sidebar, custom-menu, editor-style, featured-images, full-width-template, sticky-post, theme-options, threaded-comments
Grocery Marketplace Pro WordPress Theme has been created by Themagnifico(themagnifico.net), 2026.
Grocery Marketplace Pro WordPress Theme is released under the terms of GNU GPL

/* Basic Style */


@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


/*--------- Site Loader --------------*/
.preloader {
  background: #6DBD45;
  display: flex;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: 0;
  top: 0;
  position: fixed;
  z-index: 99999;
  align-items: center;
    justify-content: center;
}

.cart-loader{
  position:relative;
  width:120px;
  height:120px;
  margin:auto;
}

/* CART */
.preloader  .cart{
  width:100px;
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  stroke:#dcdcdc;
  stroke-width:3;
  fill:none;
}

/* ITEM */
.item{
  width:16px;
  height:16px;
  background:#e74c3c;
  position:absolute;
  top:10px;
  left:50%;
  transform:translateX(-50%) rotate(0deg);
  animation:drop 1.5s infinite ease-in;
}

/* DROP ANIMATION */
@keyframes drop{
  0%{
    top:10px;
    opacity:0;
    transform:translateX(-50%) rotate(0deg);
  }
  20%{
    opacity:1;
  }
  60%{
    top:70px;
    transform:translateX(-50%) rotate(90deg);
  }
  100%{
    top:70px;
    opacity:0;
    transform:translateX(-50%) rotate(120deg);
  }
}
