/*
 Theme Name:   Listingpro Child
 Theme URI:    http://studio.cridio.com/listingpro/
 Description:  Listingpro Child Theme
 Author:       cridio team
 Author URI:   http://cridio.com/
 Template:     listingpro
 Version:      1.0.0
 Tags:         listingpro, directory, listing, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  listingpro
*/
/* Loader Animation -Un autre code est ajouté aussi dans functions.php du thème enfant ListingPro*/
body .lp-theme-loader {
  position: fixed !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important; height: 100% !important;
  background: #f6f3ff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999 !important;
}

body .lp-theme-loader img {
  display: none !important;
}

body .lp-theme-loader::after {
  content: '';
  width: 70px;
  height: 70px;
  border: 4px solid transparent;
  border-top-color: #2458ff;
  border-bottom-color: #fdc11d;
  border-radius: 50%;
  box-shadow: 0 0 20px #22d3ee;
  animation: neon-spin 1s linear infinite;
}

@keyframes neon-spin {
  to { transform: rotate(360deg); }
}
/* Fin du Loader Animation*/