html {
  scroll-behavior: smooth;
}
.ingredients-section {
  overflow: unset;
.items-glossary-container {
  margin-top: 2rem;
  display: grid;
  @media (min-width: 1000px) {
   grid-template-columns: 30% 1fr;  
   align-items: flex-start;
  } 
  gap: 2rem;
  input#glossary-search-input {
    vertical-align: middle;
    width: 100%;
    margin-bottom: 10px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.42857;
    display: block;
    background-color: #ffffff;
    color: inherit;
    border: 1px solid #000d531a;
    border-radius: 0.5rem;
    height: 100%;
    box-shadow: 0 4px 20px #00000008;
  }
  .items-glossary-wrapper {
    @media (min-width: 1000px) {
      padding: 2rem 1.5rem;
      border: 1px solid #9e9e9e;
      position: sticky;
      top: 10rem;
    }
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    .glossary-alphabets-wrapper {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      [data-glossary-alphabets] {
        margin: unset;
        cursor: pointer;
        padding: 0.5rem 1rem;
        background-color: #e1bbbb;
        width: 3rem;
        height: 3rem;
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
      }
    }
    .glossary-alphabet-words-wrapper {
      height: 500px;
      border-radius: 1.25rem;
      box-shadow: 0 0px 15px #0000003b;
      position: relative;
      overflow: hidden;
      .glossary-alphabet-words-wrapper-inner {
        background-color: #ffffff;
        border-radius: 1.25rem;
        padding: 1.5rem;
        height: 100%;
        overflow-y: auto;
        [data-glossary-words] {
          margin: unset;
          cursor: pointer;
          padding: 0.5rem 1rem;
          padding-inline: unset;
          line-height: 1;
          text-transform: capitalize;
          position: relative;
          z-index: 2;
        }
      }
    }
    .glossary-alphabet-words-wrapper::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 35px;
      background-image: linear-gradient(#fff, #fff0);
      inset: 0% 0% auto;
      z-index: 1;
    }
    .glossary-alphabet-words-wrapper::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 40px;
      background-image: linear-gradient(to top, #fff, rgba(255, 255, 255, 0));
      z-index: 1;
    }
  }
    .ingredient-details-text + h4 {
      transition: padding-top 0.3s ease;
      font-weight: 600;
    }
    @media (min-width: 740px) {    }
      .ingredient-details-text + h4 {
        padding-top: 3rem;
        margin: unset;
        padding-bottom: 1rem;
      }

}
}
/* Scroll BAr */
.glossary-alphabet-words-wrapper-inner::-webkit-scrollbar-track
{
	border: 1px solid #000d531a;
	background-color: #F5F5F5;
}

.glossary-alphabet-words-wrapper-inner::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

.glossary-alphabet-words-wrapper-inner::-webkit-scrollbar-thumb
{
	background-color: #000000;	
}

.glossary-item-details-wrapper h4 {
  font-weight: 600 !important;
}
