/* style for index speciific page */
#wpbody-content {
   padding-bottom: 0!important;
}

/* WELCOME PANE:*/
.index-welcome-panel-content{
    font-size: 30px;
    font-weight: bolder;
}

.welcome-panel-column-paragraph{
    margin-left:20px
}


 
/* MAP */
#map {
width: 100%;
height: 400px;
}
 
.welcome-panel .welcome-panel-column-container {
   text-align: center;
}



/*PAGE TITLE LIKE WOOCOMMERCE*/
.page-title{
   font-size: 14px!important;
   font-weight:bold!important;

}

/*TEXTAREA LIKE WORPDRESS*/
textarea {
   box-shadow: 0 0 0 transparent!important;
   border-radius: 4px!important;
   border: 1px solid #8c8f94!important;
   background-color: #fff!important;
   color: #2c3338!important;
}

textarea:focus {
   border: 2px solid #2271b1!important;
}

/*BUTTON*/
.button-outline-primary{
   color: #2271b1!important;
   border-color: #2271b1!important;
}

.button-outline-warning{
   color: #b17122!important;
   border-color: #b17122!important;
}

.button-outline-danger{
   color: #b12222!important;
   border-color: #b12222!important;
}

.button-excel{
   color: #307750!important;
   border-color: #307750!important;

}

/*EDIT POPUP*/
.pulsing {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.261); }
  70% { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

/* STATISTIC SECTION */
.stat-content {
    box-shadow: 0 1px 1px rgba(0, 0, 0, .04);
    border: 1px solid #c3c4c7;
    background: #ffffff;
    padding: 2%;
}

.accordion-button:focus {
   box-shadow: 0 0 0 0.25rem #135d9673 !important;
}

/* hand waiting where there are no records Animation */
.with-hand {
  display: inline-flex;
  align-items: center;
  width: 100%;
}

.btn:disabled{
  font-weight:900!important;
  font-size: 14px !important;
}

.hand-wrapper {
  display: inline-flex;
  transform: scale(0.13); 
  transform-origin: center center;
  margin-top: -20px;
  margin-left: -40px;
}

.🤚 {
  --skin-color: #E4C560;
  --tap-speed: 0.6s;
  --tap-stagger: 0.1s;
  position: relative;
  width: 80px;
  height: 60px;
  margin-left: 80px;
}

.🤚:before {
  content: '';
  display: block;
  width: 180%;
  height: 75%;
  position: absolute;
  top: 80%;
  right: 50%;
  background-color: rgba(0, 0, 0, 0.397);
  border-radius: 40px 10px;
  filter: blur(10px);
  opacity: 0.3;
}

.🌴 {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--skin-color);
  border-radius: 10px 40px;
}

.👍 {
  position: absolute;
  width: 120%;
  height: 38px;
  background-color: var(--skin-color);
  bottom: -18%;
  right: 1%;
  transform-origin: calc(100% - 20px) 20px;
  transform: rotate(-20deg);
  border-radius: 30px 20px 20px 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  border-left: 2px solid rgba(0, 0, 0, 0.1);
}

.👍:after {
  width: 20%;
  height: 60%;
  content: '';
  background-color: rgba(255, 255, 255, 0.11);
  position: absolute;
  bottom: -8%;
  left: 5px;
  border-radius: 60% 10% 10% 30%;
  border-right: 2px solid rgba(0, 0, 0, 0.05);
}

.👉 {
  position: absolute;
  width: 80%;
  height: 35px;
  background-color: var(--skin-color);
  bottom: 32%;
  right: 64%;
  transform-origin: 100% 20px;
  animation-duration: calc(var(--tap-speed) * 2);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  transform: rotate(10deg);
}

.👉:before {
  content: '';
  position: absolute;
  width: 140%;
  height: 30px;
  background-color: var(--skin-color);
  bottom: 8%;
  right: 65%;
  transform-origin: calc(100% - 20px) 20px;
  transform: rotate(-60deg);
  border-radius: 20px;
}

.👉:nth-child(1) {
  animation-delay: 0;
  filter: brightness(70%);
  animation-name: tap-upper-1;
}

.👉:nth-child(2) {
  animation-delay: var(--tap-stagger);
  filter: brightness(80%);
  animation-name: tap-upper-2;
}

.👉:nth-child(3) {
  animation-delay: calc(var(--tap-stagger) * 2);
  filter: brightness(90%);
  animation-name: tap-upper-3;
}

.👉:nth-child(4) {
  animation-delay: calc(var(--tap-stagger) * 3);
  filter: brightness(100%);
  animation-name: tap-upper-4;
}

@keyframes tap-upper-1 {
  0%, 50%, 100% {
    transform: rotate(10deg) scale(0.4);
  }

  40% {
    transform: rotate(50deg) scale(0.4);
  }
}

@keyframes tap-upper-2 {
  0%, 50%, 100% {
    transform: rotate(10deg) scale(0.6);
  }

  40% {
    transform: rotate(50deg) scale(0.6);
  }
}

@keyframes tap-upper-3 {
  0%, 50%, 100% {
    transform: rotate(10deg) scale(0.8);
  }

  40% {
    transform: rotate(50deg) scale(0.8);
  }
}

@keyframes tap-upper-4 {
  0%, 50%, 100% {
    transform: rotate(10deg) scale(1);
  }

  40% {
    transform: rotate(50deg) scale(1);
  }
}

/* and animation */