/**
 * This file has the CSS code for the public-facing aspects of the plugin.
 */

 /* page loader css */
#lesPopup{
  display: none;
}
.popupBox {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 999; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  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 */
}
/* loader */
.listingPageLoaderDiv{
  text-align: center!important;
  padding-bottom: 1rem!important;
}
.listingPageLoaderContent{
  background-color: transparent!important;
  box-shadow: none!important;
  z-index: 999!important;
  border: none!important;
  position: absolute;
  top: calc(50% - 45px);
  left: calc(50% - 45px);
}
.loader {
  width: 48px!important;
  height: 48px!important;
  border: 3px solid #d1f0ef;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader::after {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  background: #005ad3 ;
  width: 16px;
  height: 16px;
  border-radius: 50%;
} 
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 

/* Page loader CSS */
#lesPopup {
    display: none;
}

.popupBox {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 999; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    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 */
}

/* Loader */
.listingPageLoaderDiv {
    text-align: center !important;
    padding-bottom: 1rem !important;
}

.listingPageLoaderContent {
    background-color: transparent !important;
    box-shadow: none !important;
    z-index: 999 !important;
    border: none !important;
    position: absolute;
    top: calc(50% - 45px);
    left: calc(50% - 45px);
}

.loader {
    width: 48px !important;
    height: 48px !important;
    border: 3px solid #a5c7f3;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    background: #005ad3 ;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* TOOLS PAGE CSS - END*/

.required {
    color: red;
    font-size: 1em; 
}