/*================= BEGIN: style ==================*/
.pagination{
  text-align: center;
}
.footer_content::before{
  display: none;
}
/*================= END: style ==================*/

/*================= BEGIN: product 1, 2, 3 ==================*/
.productLv .decs {
  text-align: center;
  padding: 0 20px;
}
/*================= END: product 1, 2, 3 ==================*/

/********************* loading page ****************************/
/* https://stephanwagner.me/only-css-loading-spinner */
.loadOverlay{
  position: relative;
  min-height: 360px;
}
.loadOverlay:before{
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 70px;
  left: 50%;
  width: 80px;
  height: 80px;
  margin-top: -30px;
  /* margin-left: -10px; */
  border-radius: 50%;
  border-top: 2px solid #007b3c;
  border-right: 2px solid transparent;
  animation: spinner .6s linear infinite;
  z-index: 99;
}
.loadOverlay:after{
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  background: #f5f5f5;
  opacity: .8;
}
.loadOverlay.loadOverlay-40:before{
  left: 40%;
}
.loadOverlay.loadOverlay-45:before{
  left: 45%;
}
@-webkit-keyframes spinner {
  to {transform: rotate(360deg);}
}
@keyframes spinner {
  to {transform: rotate(360deg);}
}
/********************* loading page ****************************/


@media all and (max-width: 768px){
  .footer_bot .linkBoot ul{
    flex-wrap: wrap;
  }
  .footer_bot .linkBoot ul li a::before{
    display: none;
  }
  .footer_bot .linkBoot ul li,
  .footer_bot .linkBoot ul li a{
    margin-left: 0px;
  }
  .footer_bot .linkBoot ul li{
    margin-right: 10px;
  }
  .footer_bot .linkBoot ul li a{
    padding-left: 0px;
  }
}