body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    max-width: 1200px; 
}
  

.category-page-title{
  width: 100%; 
  box-sizing: border-box;
  text-align: center;
  margin: 0;
}

   
#product-list-container{
  display: flex; 
  flex-wrap: wrap;
  align-items: center;
  justify-content: center; 
  width: 100%; 
  margin-top: 30px;
}


.single-product{ 
  width: 100%;
  height: 310px;
  margin: 15px 10px !important; 
  border: 1px solid lightgray;
  padding: 8px;
  box-sizing: border-box;
}


.single-product .title-field{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;  
  text-align: center;
  margin: 0;
  font-size: 13pt;
  color: black;
  text-decoration: none;
}


.single-product .picture-field{
  width: 100%;
  height: calc(100% - 50px); 
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  background-color: white;
}


.single-product .hover-field{
  display: inline-block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right bottom,
      rgba(255, 255, 255, 0.6), 
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0.6));
  opacity: 0;
  transition: opacity 0.2s;
  cursor: pointer;
}

.single-product:hover .hover-field{
  opacity: 1;
}

.single-product:hover .title-field{
  color: gray;
}
 
.more-button{
  padding: 10px 11px;
  font-size: 13pt;
}

#category-exp-field{
  width: calc(100% - 20px);
  max-width: 1200px;
  border: 1px solid lightgray;
  padding: 20px;
  box-sizing: border-box;
  margin-top:  20px;
  color: gray;
}

#category-exp-field h2{
  /* color: gray; */
  margin: 0px 0 10px 0 ;
}

.page-title-container{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: 50px;
  margin-top: 50px;
}

.page-title-container h2{
  height: 50px;
  line-height: 50px;
  margin: 0;
  background: white;
  z-index: 5;
  text-align: center;
  padding: 0 10px; 
}

.page-title-container hr{
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: black;
  border-radius: 50%;
  width: 100%;
  margin: 0;
}

#blog-field{ 
  width: calc(100% - 20px);
  max-width: 1200px; 
  box-sizing: border-box;
  margin-top:  20px;
  color: gray;
  padding: 5px;
}

.single-blog{ 
  display: inline-block;
  width: 100%;
  height: 250px;
  margin: 15px 0 !important;  
  box-sizing: border-box;
  padding: 10px;
}


.single-blog .title-field{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; 
  text-align: center;
  margin: 0;
  padding-top: 10px;
  font-size: 13pt;
  color: black;
  text-decoration: none;
}


.single-blog .picture-field{
  width: 100%;
  height: calc(100% - 50px); 
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-color: white;
}


.single-blog .hover-field{
  display: inline-block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right bottom,
      rgba(255, 255, 255, 0.6), 
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0.6));
  opacity: 0;
  transition: opacity 0.2s;
  cursor: pointer;
}

.single-blog:hover .hover-field{
  opacity: 1;
}

.single-blog:hover .title-field{
  color: gray;
}

#loading-field{
  display: none;
}
 
.disabled-button{
  background: gray;
  cursor: not-allowed;
  transform: scale(0.9) !important;
}

.empty-category-text{
  width: 100%;
  text-align: center;
  margin: 100px 0
}

.disabled-button:hover{
  transform: scale(0.9) !important;
}




#category-page-title{
  position: relative;
  width: 100%;
  height: 50px;
  text-align: center;
}

#category-page-title div{
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  width: 100%;
  height: 2px;
  background: black;
  z-index: 1;
}

#category-page-title span{
  background: white !important;
  padding: 10px;
  z-index: 5;
}



.lds-facebook {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-facebook div {
  display: inline-block;
  position: absolute;
  left: 6px;
  width: 13px;
  background: rgb(80, 80, 80);
  animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.lds-facebook div:nth-child(1) {
  left: 6px;
  animation-delay: -0.24s;
}
.lds-facebook div:nth-child(2) {
  left: 26px;
  animation-delay: -0.12s;
}
.lds-facebook div:nth-child(3) {
  left: 45px;
  animation-delay: 0;
}
@keyframes lds-facebook {
  0% {
    top: 6px;
    height: 51px;
  }
  50%, 100% {
    top: 19px;
    height: 26px;
  }
}




@media only screen and (min-width: 600px) {
    .page-content{
        max-width: 1200px !important;
    }
 

    .single-product{ 
      width: 350px;
      height: 300px;
      margin: 15px 20px !important; 
    }
  
    .single-blog{ 
      width: 360px; 
      height: 340px;
      margin: 15px 10px !important; 
      border: 1px solid lightgray;
    }

    .single-blog .picture-field{
      height: 255px;
    }

    .single-blog .title-field{
      display: flex;
      justify-content: center;
      align-items: center; 
      font-size: 11pt;  
      padding: 10px;
      box-sizing: border-box;
    }
 

    .page-title-container hr{
      display: block !important;
    }


}