@font-face {
  font-family: 'Calibri';
  src: url('Calibri-Light.woff2') format('woff2'),
      url('Calibri-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
} 

body{    
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;  
	margin: 0;
	padding: 0; 
  background: #111111;
  color: whitesmoke;
  font-family: 'Brandon Grotesque Regular';
}

.page-content{
  padding-top: 0;
  padding-bottom: 0;
}

.page-title{
  font-weight: 500;
  margin-bottom: 0;
}
  

.collection-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 40px;
}


.collection{
  display: block;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 50px;
}

.collection img{
  width: 70%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 0 8px 2px rgba(255, 249, 237, 0.2);
  cursor: pointer;
}
 

.collection-button{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 36px;
  background-color: black; 
  color: white;
  border: 1px solid gainsboro; 
  outline: none;
  font-family: 'Brandon Grotesque Regular';
  border-radius: 3px;
  font-size: 12px;
  letter-spacing: 0.83px;
  text-decoration: none;
  cursor: pointer;
}


.collection h3{
  font-size: 21px;
  letter-spacing: 1px;
  font-weight: normal;
  margin: 10px 0 8px 0;
  cursor: pointer;
}

 

#website-logo-field{
  background-image: url(../../../the-slash-white-logo.png);
}

main{ 
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
  width: 90%;
  max-width: 1200px; 
	padding: 10px;
	box-sizing: border-box; 
}
   
#user-informations-container a{
  color: white;
}

#shopping-cart-button{
  background-image: url(../../icons/cart-white.png) !important;
}

#nav-username-button{
  background-image: url(../../icons/user-white.png) !important;
}


.collection-history-link{
  color: whitesmoke;
  font-size: 17px;
  padding-top: 10px;
}
 

  
.custom-button{
	padding: 10px;
  background: black;
  border: 1px solid lightgray !important;
	color: lightgray; 
  margin-top: 40px;
  font-size: 14pt; 
  outline: none;
  text-decoration: none;
}

.custom-button:hover{
	transform: scale(1.05);
}

.custom-button:active{
	transform: scale(0.95);
}

.flower-of-life{
  width: 100%;
  max-width: 500px;
}
 

header a{
  color: whitesmoke !important;
}

header .mycart{
  background-image: url(../../icons/wallet_white.png) !important;
}


footer, footer a{
  color: whitesmoke !important;
}

.dropbtn{
  color: whitesmoke;
}

footer{
  border-color: #535353 !important;
  background-color: #111111;
}

#footer-text{
  background-color: #111111; 
}


#linkedin-footer-icon{
  background-image: url(../../icons/rounded_white_linkedin.png) !important;
}

#facebook-footer-icon{
  background-image: url(../../icons/rounded_white_facebook.png) !important;
}

#instagram-footer-icon{
  background-image: url(../../icons/rounded_white_instagram.png) !important;
}

#twitter-footer-icon{
  background-image: url(../../icons/rounded_white_twitter.png) !important; 
}

 
nav a{
  color: white;
}

.collection-stories{  
  width: 100%;
  height: 45px;
  overflow: hidden;
  transition: 0.4s linear;
}

.collection-stories.active{
  height: 1350px;
}

.collection-stories .collapse-button{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 45px;
  background: none;
  border: none;
  outline: none;
  color: whitesmoke;
  border-bottom: 1px solid rgb(46, 46, 46);
  font-family:  Calibri, Arial;
}

.collection-stories .collapse-button img{
  height: 22px;
  /* width: 10px;  */
  margin-left: 5px;
  margin-right: 5px;
}

@media only screen and (min-width: 600px) {
  .collection-list{
    width: 100%; 
  }
    
  .collection{
    width: 33%;
  }

  .collection h3{
    font-size: 24px;
    margin-top: 20px;
  }

  .collection a{
    margin-top: 10px;
  }
  
  .page-title{ 
    margin-top: 25px;
    font-size: 30px;
  } 

  .collection-stories{
    height: 500px;
  }

  .collection-stories .collapse-button{
    display: none;
  }


}


@media only screen and (max-width: 380px) {
  .flower-text{
    font-size: 22px;
  }
}

 
















.product-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 0 6px 10px 6px;
  box-sizing: border-box;
  font-family: Brandon Grotesque Regular;
}


.product {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48%;
  margin-top: 20px;
  border: 1px solid rgba(200, 200, 200, 0.1);
  box-shadow: 0 0 4px rgba(200, 200, 200, 0.1);
  color: whitesmoke;
  text-decoration: none;
}

.product .hover-field{
  position: relative;
}

.product .hover-field div{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.9s;
}

/* .product .hover-field div:hover{
  background: rgba(255, 255, 255, 0.25);
} */

.product img{
  width: 100%;
  height: auto;
  transition: opacity 0.6s;
}

.product .second-picture{
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product:hover .first-picture{
  opacity: 0;
}

.product:hover .second-picture{
  opacity: 1;
}

.product span, strike{
  letter-spacing: 0.7px;
  margin: 5px 0;
  margin-right: 10px;
  text-align: center;
}

.product b{
  margin-bottom: 5px;
}

.emptystate-text{
  width: 100%;
  margin: 10vh 0;
  text-align: center;
}

 

@media only screen and (min-width: 600px) {
  .product-list{
    justify-content: center; 
  }

  .product{
    width: 270px;
    margin: 20px 5px; 
  }

  .product span{
    font-size: 16px;
    margin-top: 10px;
  }

  .product b, strike{
    font-size: 20px;
    margin-bottom: 10px;
  }

}