/* Stylesheet for Astra Zeneca Internal Webshop */

/* Importing Custom Fonts */
@font-face {
    font-family: 'Lexia Regular';
    src: url('{ basePath }/sfsites/c/resource/lexiaRegularFont') format('woff');
 }
  
@font-face {
    font-family: 'Helvetica Neue';
    src: url('{ basePath }/sfsites/c/resource/helveticaNeueFont') format('truetype');
 }

 :root {
    /** set the font for all root/body text **/
    --dxp-g-root-font-family: 'HelveticaNeue', 'Helvetica', sans-serif;
    --dxp-s-text-heading-medium-font-size: 'Lexia Regular', Merriweather, serif;
    /** set the font for headings **/
    --dxp-g-heading-font-family: 'Lexia Regular', Merriweather, serif;
 }


  
/*CSS For Navigation Menu */

  .product-page-header {
    background-color: #F8F8F8;  	
  }
  .navigation-menu, .section-test, .comm-section-container {
      background-color: #fff;
  }
 
.az-menu {
  display: flex;
  gap: 40px;
}
  
  .az-menu li {
  display: inline-block;
  position: relative;
}
   
.az-menu li a {
  color: #3C4242 !important;
  text-decoration: none;
  font-size: 18px;
  line-height: 24px;
}
  
   
.az-menu li a:hover {
  text-decoration: none !important;
}

.az-menu li:hover {
  text-decoration: none;
  /*padding-bottom: 5px;*/
  /*border-bottom: 3px solid var(--dxp-g-brand);*/
}
  

/* Styling for the sliding border-bottom effect */
 .az-menu  li::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px; /* You can adjust the thickness of the border */
    background-color: rgb(208, 0, 111); /* Set the color of the border */
    transition: width 0.3s ease; /* Adjust the animation speed and easing */
  }

 .az-menu  li:hover::after {
    width: 100%; /* Expand the border to 100% on hover */
  }
 

/* CSS for Sticky Footer */
  
community_byo-scoped-header-and-footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}
  
  .community_byo-scoped-header-and-footer__header-content {
  background-color: white;
}

 
/* Products Cards */   

.image-field img {
  height: 180px;
  object-fit: cover;
  width: 100%;
}
  

/* Filters */
  .substanceInput label span, .materialInput label span, .brandInput label span {
      font-family: var(--dxp-g-heading-font-family);
      font-size: 14px !important;
      font-weight: 400;
      line-height: 34px;
      font-style: italic;
      color: #3C4242;
      margin-bottom: 4px;
  }
  
  .filter-btn button {
  text-decoration: underline;
  font-size: 14px;
  font-family: var(--dxp-g-root-font-family);
  font-weight: 300;
  margin-bottom: 34px;
  font-style: normal;
  }
