.application-notes {
  max-width: 900px;
  /* Adjust for your layout/container */
  margin: 40px auto;
  /* center and give top/bottom space */
  padding: 0;
}
span.resource-count {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #727272;
    padding: 0 0 0 4px;
}
.application-note-item {
  /* border: 1px solid #E5E7EB; */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
  background-color: #ffffff;
  /* transition: box-shadow 0.2s ease; */
}

/* .application-note-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
} */

.resource-title {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 23px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.02em;
    color: #232E35;
}

.categories-list-items-container {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  border: 1px solid rgba(0, 0, 0, 0.381);
  /* padding: 20px; */
  width: 100%;
}

.category-list-item-each-card {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-bottom: 20px;
  padding: 26px;
  width: 100%;
  border-bottom: 1px solid #ddd;

}

.category-list-item-each-card:hover {
  background-color: #f3f4f6;
  cursor: pointer;
  padding: 20px;
}

.resource-main-title {
  font-size: 14px;
  color: #000000;
  font-weight: 700;
  margin-bottom: -7px;
  font-family: "din-2014", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.resource-sub-title {
  font-size: 12px;
  color: #6b7280;
  font-weight: 400;
}


.tag-NGS {
  background-color: #E6F6F0;
  color: #105928;
   border: none;
  font-weight: bold;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 14px;
  cursor: default;
  font-weight: bold;
}

.tag-Biopharma {
  background-color: #F8E7FF;
  color: #a322a5;
   border: none;
  font-weight: bold;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 14px;
  cursor: default;
  font-weight: bold;
}

.tag-Genes {
  background-color: #E9E9FD;
  color: #5D5DB2;
   border: none;
  font-weight: bold;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 14px;
  cursor: default;
  font-weight: bold;
}
.tag-Antibodies {
  background-color: #F8E7FF;
  color: #c639c1;
   border: none;
  font-weight: bold;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 14px;
  cursor: default;
  font-weight: bold;
}
.tag-Variant {
  background-color: #FEEFE1;
  color: #c68239;
   border: none;
  font-weight: bold;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 14px;
  cursor: default;
  font-weight: bold;
}

.tag-Synthetic {
  background-color: #e6ecf4;
  color: #1a7b1a;
   border: none;
  font-weight: bold;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 14px;
  cursor: default;
  font-weight: bold;
}
.tag-Oligo {
     background: #E6F7F8;
    color: #31A0AA;
   border: none;
  font-weight: bold;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 14px;
  cursor: default;
  font-weight: bold;
}
.resource-sub-title-label-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* gap: 30px; */
  /* background-color: rgb(205, 148, 148); */
  width: fit-content;
  margin-top: 18px;
  margin-bottom: 20px;
  .book-icon{
    svg{
      width: 16px;
      vertical-align: middle;
    }
  }
}


.resource-description {
  flex-basis: 100%;
  font-size: 14px;
  color: #4b5563;
  margin: 4px 0 0 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.categories-list-items-arrow-image {
  margin-left: auto;
  width: 16px;
  height: 12px;
  margin-bottom: 20px;
}

.categories-all-items-title {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-top: 8px;
  cursor: pointer;
}

.categories-all-items-title:hover {
  background: #FAFAFA;
  border-radius: 4px;
  color: #4A4A4A;
  text-decoration: underline;
  cursor: pointer;
}

li {
  list-style: none;
}

/* === DESKTOP === */
/* Keep your existing layout — no changes needed for desktop */

/* === TABLET === */
@media (min-width: 768px) and (max-width: 1023px) {
  .categories-list-items-container {
    display: flex;
    flex-wrap: nowrap;
    /* force single row */
    overflow-x: auto;
    /* enable horizontal scroll */
    -webkit-overflow-scrolling: touch;
  }

  .application-note-item {
    padding: 0px;
  }

  .category-list-item-each-card {
    flex: 0 0 100%;
    /* show about 2 cards at a time */
    padding: 0px;
    border-bottom: none;
    /* remove bottom border for horizontal look */
    border-right: 1px solid #ddd;
    /* optional: right border instead */
  }

  .resource-title {
    font-size: 17px;
  }

  .resource-description {
    display: none;
  }

  .resource-sub-title {
    font-size: 10px;
    color: #295dc4;
    font-weight: 400;
  }

  .application-notes {
    max-width: 100%;
    margin: 20px;
    padding: 7px;
  }

}

/* === MOBILE === */
@media (max-width: 767px) {
  .categories-list-items-container {
    display: block;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .category-list-item-each-card {
    /* display: block !important; */
    flex: auto;
    border-bottom: none;
    border-right: 1px solid #ddd;
    margin-bottom: 0px;
  }

  .application-note-item {
    padding: 0px;
  }

  .application-notes {
    max-width: 800px;
    margin: 20px;
    padding: 0;
  }

  .resource-title {
    font-size: 17px;
  }

  .resource-description {
    display: none;
  }

  .resource-description {
    display: none;
  }
  .grid-item {
    width: 242px;
    height: 215px;
  }

}

.hidden {
  display: none !important;
}

.resource-page-wrapper {
  display: flex;
  justify-content: space-between;
  .featured-resources-section{
    div{
      .title{
        font-size: 16px;
        font-weight: 700;
      }
    }
    @media (max-width: 1023px) {
      .featured_section{
        overflow: auto;
        .grid-container {
          display: inline-flex !important;
        }
      }
    }
    .grid-container {
      .grid-item-link{
        display: flex;
        align-items: center;
        background: #E6F6F0;
        justify-content: center;
        justify-content: space-between;
        &:first-child {
          padding-top: 40px;
        }
        .grid-image {
          margin-top: auto;
          margin-bottom: auto;
          width: 70%;
          background: transparent;
        }
        .grid-bottom-content{
          background: #fff;
          position: relative;
          bottom: 0;
          width: 100%;
        }
      }
    }
  }
}

.resource-filters {
  margin-top: 48px;
}

.application-notes .arrow-button {
  content: "";
  display: block;
  background: url(../../../../../content/dam/twist-aem-migration/fa-arrow-right.png) right center no-repeat;
  width: 100%;
  height: 40px;
  text-align: end;
  background-size: 14px;
}

.application-notes .resource-tag-label {
  font-weight: 700;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  color: #727272;
  margin-right: 42px;
  margin-left: 3px;
  margin-bottom: 0;
}

.resource-type-main-container {
  padding: 0 16px;
  margin: 40px auto;
}

.resource-type-title {
  font-size: 20px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: rgb(68, 66, 66);
}

.each-input-box-container {
  display: flex;
  gap: 15px;
  margin-top: 16px;
  align-items: center;
  position: relative;
  .yearCount {
    color: #ABABAB;
    font-size: 14px;
    line-height: 14px;
  }
}
.each-input-box-container:hover .input-box-label {
  color: #04AD75;
  cursor: pointer;
}
.each-input-box-container:hover .input-box-field {
  border: 2px solid #98A8B3 !important;
  box-shadow: 0 0 0 5px #EEF2F6;
  border-radius: 8px;
}

.input-box-field {
  width: 15px;
  height: 15px;
  cursor: pointer;

}

.input-box-label {
  color: rgb(24, 23, 23);
  font-size: 15px;
}

.product-interest-wrapper {
  margin-top: 40px;
  padding: 20px;
  border-top: 2px solid #ddd;
  background-color: #ffffff;
}

.product-interest-title {
  font-size: 24px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 20px;
}

.product-interest-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-interest-item {
  margin-bottom: 12px;
}

.product-interest-link {
  display: block;
  text-decoration: none;
  font-size: 16px;
  color: #333333;
  padding: 10px 14px;
}

.resource-products-wrapper {
  margin-top: 10px;
  display: grid;
  width: 90%;
}
.resource-products-wrapper .flex.items-center {
  padding: 8px 0;
  display: flex;
  align-items: center;
  @media (max-width:767px) {
    padding: 0;
  }
}
.resource-products-wrapper .flex.items-center.active{
  background-color: #F2F6EE;
  label.option{
    color: #04AD75;
  }
}
.resource-products-wrapper input[type="radio"] {
  display: none;
}
.resource-dates-wrapper {
  margin-top: 10px;
  display: grid;
  gap: 16px;
  width: 90%;
  margin-left: 15px;
  border-bottom: gray solid 1px;
}
.resource-journal-wrapper {
  margin-top: 10px;
  display: grid;
  gap: 16px;
  width: 90%;
  margin-left: 15px;
  border-bottom: gray solid 1px;
}


.form-radio {
  margin-right: 10px;
  accent-color: #0073e6;
  opacity: 0;
}

.option {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  margin-left: 4px;
  cursor: pointer;
}

/* .js-form-item {
  display: flex;
  align-items: center;
} */

.product-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #444;
  margin-left: 25px;
   margin: 0;
}

.categories-list-items-container {
  display: flex;
  flex-wrap: wrap;
  
}

.resource-articles {
  transition: opacity 0.3s ease-in-out;
}

.resource-articles.loading {
  opacity: 0.3;
}

/*Landing technical resources css*/

.row.resources-landing-container {
    width: 1140px;
    margin: auto;
    display: flex;
    margin-top: 60px;
}
.resource-page-wrapper.right-resources-container.col-9 {
    display: block;
    margin-top: 155px;
    width: 855px;
}
.resources-landing-container .top-container.left-resources-container.col-3 {
    display: block;
    width: 285px;
    margin-top: 120px;
}

.resources-landing-container .product-title {
    font-weight: 700;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #98A8B3;
    padding: 0 0 4px 0;
    position: relative;
}

.resources-landing-container label.option {
    position: relative;
    padding-left: 0px;
    cursor: pointer;
    line-height: 24px;
    font-size: 16px;
    text-transform: capitalize;
    color: #313538;
    letter-spacing: normal;
    font-weight: 500;
    margin: 0;
}
.resources-landing-container label.option:hover{
    color: #04AD75;
    text-decoration: underline;

}

.resources-landing-container .grid-item {
    padding: 0px;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    box-sizing: border-box;
    border-radius: 4px;
}

.resources-landing-container .grid-title {
    font-size: 16px;
    margin: 10px 0;
    font-weight: bold;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    color: #727272;
    padding: 10px 20px;
}

.resources-landing-container .grid-description {
    color: #333;
    font-family: "din-2014", "Helvetica Neue", Helvetica, Arial, sans-serif;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    font-size: 16px;
    line-height: 20px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 10px;
}

.resources-landing-container .grid-item:not(:first-child) .grid-description {
    -webkit-line-clamp: 2;
}

.resources-landing-container .category-list-item-each-card {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 20px;
    width: 853px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 0px;
}

.resources-landing-container .resource-main-title {
    font-size: 14px;
    color: #000000;
    font-weight: 700;
    margin-bottom: -7px;
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 8px;
}

.resources-landing-container .resource-sub-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    -webkit-line-clamp: unset;
    color: #727272;
    text-transform: none;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: unset;
    -webkit-box-orient: vertical;
}

.resources-landing-container .categories-list-items-container {
    list-style: none;
    padding: 0;
    width: 100%;
    border: 1px solid #EEEEEE;
    margin-bottom: 0px;
    border-radius: 4px;
}

.resources-landing-container .categories-all-items-title {
  padding: 19px 0px;
  cursor: pointer;
  border: 1px solid #EEEEEE;
  position: relative;
  top: -1px;
  border-top: 0;
  z-index: 9;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 1023px) {
    .resources-landing-container .top-container.left-resources-container.col-3 {
        display: none;
    }
    .row.resources-landing-container {
    	width: unset;
	}
    .resource-page-wrapper.right-resources-container.col-9 {
    	width: 100%;
      margin: 140px 0 0 0;
	}
    
    .resources-landing-container .grid-image {
    	height: 100px;
	}
  .resources-landing-container .category-list-item-each-card {
    display: flex;
    width: 100%;
  }
}


.product-title-container {
  display: flex;
  justify-content: space-between; /* "Product Interest" left, "Clear" right */
  align-items: center;
  margin-bottom: 0;
}

.clear-button {
  background: none;
  border: none;
  color: #727272;       /* light grey text */
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  font-weight: 700;
  @media (max-width: 767px) {
    position: absolute;
    right: 30px;
  }
}

.clear-button:hover {
  color: #727272;       /* stay same on hover */
  text-decoration: none; /* no underline */
}

.resource-title-container {
  display: flex;
  justify-content: space-between; /* title left, clear right */
  align-items: center;
  margin-bottom: 20px;
}
.resource-title-filter-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.resource-title-filter-container .view-filters{
    display: none;
}
.resource-title-filter-container select{
    border: 1px solid #4A4A4A;
    padding: 10px 16px;
    border-radius: 6px;
    opacity: 0.6;
}

.resource-type-title {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #888; /* light grey as in screenshot */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.resources{
  .header-component .header-container{
    position: static;
    @media (max-width: 1169px) {
      position: fixed;
      .nav{
          display: none;
        }
      .no-bg-color {
        .nav{
          display: block;
        }
        .header-bottom-section{
          margin-top: 26px;
          .section-title {
            display: block;
          }
        }
      }
      .dark-bg-header{
        background: url("../../../../../content/dam/twistbioscience/desktop.svg")  no-repeat 50%;
        background-size: cover;
        width: 100%;
        .resource-nav{
          margin: 20px 0;
          @media (max-width: 767px) {
              margin: 20px 0 0 0;
          }
        }
      }
    }
  }
  .row.resources-landing-container{
    margin-top: 0px;
    @media (max-width: 1169px) {
      width: 100%;
    }
  }
  .resources-landing-container .top-container.left-resources-container.col-3{
    margin-top: 12px;
    @media (max-width: 1169px) {
      margin-top: 210px;
      width: 240px;
    }
    @media (max-width: 1024px) {
      margin-top: 230px;
    }
  }
  .resource-page-wrapper.right-resources-container.col-9{
    margin-top: 45px;
    @media (max-width: 1169px) {
      margin-top: 230px;
      width: 750px;
    }
    @media (max-width: 1023px) {
      width: 100%;
    }
  }
  .header-bottom-section{
    @media (max-width: 1169px) {
      margin: 0;
      .section-title {
        display: none;
      }
    }
  }
  .title.aem-GridColumn.aem-GridColumn--default--12{
    display: none;
  }
}
.case-study{
  .covered-in-resource .field__label{
    color: #ababab !important;
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    text-align: left;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .primary-section-left-column{
    background-color: #F7FDFD;
  }
}






.case-study-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1140px;
  margin: auto;
  margin-bottom: 60px;
  margin-top:43px;
  @media (min-width: 768px) and (max-width: 1169px) {
    max-width: 100%;
    padding: 0 24px;
    margin-top: 240px;
  }
  @media (max-width: 767px){
    justify-items: center;
    margin-top: 220px;
  }
}
.webinar{
  .case-study-card-grid {
    @media (min-width: 768px) and (max-width: 1169px) {
      margin-top: 0px;
    }
  }
}
.case-study-card-grid-years{
  display: none !important;
}

.case-study-card {
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
  height: 401px;
  width: 354px;
  position: relative;
  @media (min-width: 768px) and (max-width: 1169px) {
    height: 401px;
    width: 302px;
  }
}


.tag-NGS {
  background-color: #E6F6F0;
  color: #23945f;
   border: none;
  font-weight: bold;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 14px;
  cursor: default;
  font-weight: bold;
}

.tag-Biopharma {
  background-color: #F8E7FF;
  color: #a322a5;
   border: none;
  font-weight: bold;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 14px;
  cursor: default;
  font-weight: bold;
}

.tag-Genes {
  background-color: #E9E9FD;
  color: #5D5DB2;
   border: none;
  font-weight: bold;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 14px;
  cursor: default;
  font-weight: bold;
}
.tag-Antibodies {
  background-color: #F8E7FF;
  color: #c639c1;
   border: none;
  font-weight: bold;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 14px;
  cursor: default;
  font-weight: bold;
}
.tag-Variant {
  background-color: #FEEFE1;
  color: #c68239;
   border: none;
  font-weight: bold;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 14px;
  cursor: default;
  font-weight: bold;
}

.tag-Synthetic {
  background-color: #e6ecf4;
  color: #1a7b1a;
   border: none;
  font-weight: bold;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 14px;
  cursor: default;
  font-weight: bold;
}
.tag-Oligo {
     background: #E6F7F8;
    color: #31A0AA;
   border: none;
  font-weight: bold;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 14px;
  cursor: default;
  font-weight: bold;
}

a  {
  color: black;
}
.case-study-card:hover {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  .tag{
    position: relative;
    top: 0;
  }
}

.case-study-card img {
    width: 354px;
    height: 210px;
    display: block;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.case-study-card-content {
    position: relative;
    width: 329px;
    height: 191px !important;
    padding: 16px 24px 65px 24px;
    max-width: fit-content;
    .resource-sub-title{
      display: none;
    }
    .tag{
      position: absolute;
      bottom: 24px;
    }
}

.case-study-card-content h3{
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
   overflow: hidden;
}
/* 
.tag {
    display: inline-block;
    padding: 4px 8px;
    background: #de8383;
    border-radius: 12px;
    font-size: 0.75rem;
    color: #444;
    position: absolute;
    bottom: 28px; 
}
*/
.case-study-card-description {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: #555;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.case-study-card:hover .case-study-card-description {
  opacity: 1;
  max-height: 100px;
  margin-top: 30px;
}
.case-study-card:hover .case-study-card-content{
  transition: opacity 0.3s ease, visibility 0s;
  opacity: 1;
}

.case-study-card:hover {
  opacity: 1;
  img {
    opacity: 0;
    height: 0 !important;
  }
} 

/* .case-study-card:hover .tag {
  position: absolute;
  padding: 3px 10px;
  background-color: #007bff;
  color: white;
  text-align: center;
  bottom: unset;

} */

.webinar-case-study-card-grid {
  background-color: red;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;

}

.webinar-case-study-card {
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
  height: 500px;
  position: relative;
}

a.resource-article-link {
    padding: 6px;
}

/* tag colors */

span.tag.ngs,
span.tag.synthetic-controls {
    background: #E6F6F0;
    color: #105928;
}

span.tag.biopharma,
span.tag.antibodies {
  background: #F8E7FF;
  color: #AE45D2;
}
 
.tag-Data.Storage {
  background: #F1EBDE;
  color: #382F1B;
  border: none;
  font-weight: bold;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 14px;
  cursor: default;
  font-weight: bold;
}
 
 
span.tag.genes {
	background: #E9E9FD;
  color: #5D5DB2;
}
 
span.tag.oligo-pools {
	background: #E6F7F8;
  color: #31A0AA;
}
 
span.tag.varient-libraries {
	background: #FEEFE1;
  color: #CE6B12;

}

 

@media (max-width: 767px) {
  .webinar-landing-container{
    .case-study-card-content {
        width: unset;
        max-width: fit-content;
    }
    .case-study-card {
      img{
        width: 100% !important;
      }
    } 
    a.resource-article-link {
        padding: 10px;
        margin: auto;
    }
  }
}


.total-pages{
    margin-left: 180px;
    margin-top: 40px;
    gap: 20px;
}
a.card {
    display: block;
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 30px auto;
    text-decoration: none;
    color: inherit;
    height: fit-content;
}

.meta-top {
    display: flex;
    gap: 40px;
    align-items: center;
    color: #5b7083;
    font-size: 14px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    @media (max-width: 767px) {
      gap: 4px;
    }
}

.meta-section {
    display: flex;
    align-items: center;
    gap: 6px;
}

.truncate-text {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    color: #627684;
    font-weight: 700;
    font-size: 16px;
}

.category {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #627684;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* .category::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    margin-bottom: -6px;
    background-image: url("../../../../../content/dam/twist-aem-migration/icons/icon-book-open.svg");
    background-size: contain;
    background-repeat: no-repeat;
} */
.icon-book-open-pub,
.user-icon-pub{
  position: relative;
  top: 4px;
}
.user-icon-pub{
  position: relative;
  top: 2px;
}

.truncate-text::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 6px;
    margin-bottom: -6px;
    background-image: url("../../../../../content/dam/twist-aem-migration/icons/author-icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    @media (max-width: 767px) {
      display: none;
    }
}

.title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 22.97px;
    @media (max-width: 767px) {
      font-size: 16px;
    }
}

.sub-info {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: #3a3a3a;
    margin-bottom: 16px;
    @media (max-width: 767px) {
      align-items: flex-start;
      flex-direction: column;
    }
}

.tag-label {
    background: #e0f7ec;
    color: #2e7d32;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    &.NGS{
      background: #E6F6F0;
      color: #105928;
    }
    &.Genes{
      background: #E9E9FD;
      color: #5D5DB2;
    }
    &.Variant{
      background: #FEEFE1;
      color: #CE6B12;
    }
    &.Oligo{
      background: #E6F7F8;
      color: #31A0AA;
    }
}

.doi {
    font-weight: 700;
    color: #627684;
}

.bottom-button {
    margin-top: -13px;
    @media (max-width: 767px) {
      display: none;
    }
}

.arrow-button {
    display: inline-block;
    align-items: center;
    font-size: 16px;
    gap: 8px;
}

.arrow-button::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 26px;
    margin: 10px 50px;
    background-image: url("../../../../../etc.clientlibs/twist-aem-migration/clientlibs/clientlib-site/resources/images/green-arrow-right.svg");
    background-size: 14px;
    background-repeat: no-repeat;
    filter: brightness(0.3) contrast(1);
}

.bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

}
/*Publication page css*/
.container-publication{
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    @media (max-width: 767px) {
      display: block;
    }
    .left-container {
        max-width: 285px;
        padding: 0 30px 0 0;
        width: 100%;
        @media (max-width: 1023px) {
          display: none;
        }
        .filter-box.twist-picks-filter-wrapper {
            position: relative;
            .filter-box-title {
                font-size: 13px;
                line-height: 20px;
                font-weight: 500;
                letter-spacing: 0.14em;
                padding: 12px 16px 12px 0px;
                text-transform: uppercase;
              }
        }
        .publication-accordion-container{
          position: relative;
          gap: 0;
          padding: 0 16px 0 0;
          cursor: pointer;
          &:before {
            position: absolute;
            left: auto;
            right: 0;
            display: block;
            margin: 0 auto;
            background: #EEEEEE;
            content: "";
            width: 100%;
            height: 1px;
            top: 0;
          }
          .resource-type-all-input-boxes-container {
            margin-top: 16px;
          }
        }
        .resource-type-title{
              display: inline-block;
              font-size: 16px;
              line-height: 24px;
              color: #232E35;
              position: relative;
              width: 100%;
              padding: 20px 16px 20px 0px;
              font-weight: 400;
              text-transform: capitalize;
              margin-top: 0px;
        }
        .product-title{
            display: inline-block;
              font-size: 16px;
              line-height: 24px;
              color: #232E35;
              position: relative;
              width: 100%;
              padding: 20px 16px 20px 0px;
              font-weight: 600;
              text-transform: capitalize;
              margin-top: 0px;
        }
        .resource-products-wrapper {
          display: grid;
          margin: 0;
          width: 100%;
          .all-input-values {
            margin: 6px 0 12px 0 !important;
          }
          .resource-type-all-input-boxes-container {
            display: none;
          }
          input[type="radio"]{
            display: block;
          }
        }
        .resource-dates-wrapper {
          display: grid;
          margin: 0;
          width: 100%;
          border: none;
          .all-input-values {
            margin: 6px 0 12px 0 !important;
          }
          .resource-type-all-input-boxes-container {
            display: none;
          }
          input[type="radio"]{
            display: block;
          }
        }
        .resource-journals-wrapper{
            display: grid;
          margin: 0;
          width: 100%;
          .all-input-values {
            margin: 6px 0 12px 0 !important;
          }
          .resource-type-all-input-boxes-container {
            display: none;
          }
          .journal-search-wraper{
            padding: 10px 0;
            input{
              margin-top: .25rem;
              font-size: .875em;
              color: #6c757d;
              position: sticky;
              top: 0;
              z-index: 1;
              padding: 10px;
            }
          }
          input[type="radio"]{
            display: block;
          }
        }
        .accordion-extension-button{
          margin-bottom: 0;
          font-size: 20px;
        }
        .journal-list-container {
          display: none;
        }
    }
    .right-container{
      @media (max-width: 767px) {
        position: relative;
        top: 140px;
      }
      section.featured-resources-section {
          padding: 0 0 0 30px;
          @media (max-width: 767px) {
            padding: 0;
          }
          .title{
            font-size: 16px;
            font-weight: 700;
          }
          .grid-container{
              background: #FFFFFF;
              box-sizing: border-box;
              border-radius: 4px;
            .grid-item-link{
              padding: 0;
              justify-content: space-between;
              border: 1px solid #EEEEEE;
              background: #9191F5;
              background: linear-gradient(143deg,rgba(145, 145, 245, 1) 0%, rgba(188, 140, 245, 1) 100%);
              &:first-child{
                background: #36BA8F;
                background: linear-gradient(143deg, rgba(54, 186, 143, 1) 0%, rgba(74, 182, 193, 1) 100%);
                .grid-image {
                  max-height: 315px;
                  object-fit: none;
                }
              }
              &:nth-child(2){
                .grid-image {
                  width: 90%;
                  margin: 0 auto;
                }
                background: #79D2DA;
                background: linear-gradient(143deg,rgba(121, 210, 218, 1) 0%, rgba(138, 166, 237, 1) 100%);              
              }
              &:nth-child(3){
                .grid-image {
                  width: 50%;
                  margin: 0 auto;
                }
                background: #9191F5;
                background: linear-gradient(143deg,rgba(145, 145, 245, 1) 0%, rgba(188, 140, 245, 1) 100%);
              }
              
              .grid-image {
                  max-height: 315px;
                  object-fit: contain;
              }
              .grid-bottom-content{
                padding: 0px 20px 5px 20px;
                background: #fff;
                .grid-title {
                    font-size: 16px;
                    margin: 10px 0;
                    font-weight: bold;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    font-size: 14px;
                    line-height: 20px;
                    -webkit-line-clamp: 1;
                    -webkit-box-orient: vertical;
                    margin-bottom: 4px;
                }
                .grid-description {
                  overflow: hidden;
                  text-overflow: ellipsis;
                  display: -webkit-box;
                  font-size: 16px;
                  line-height: 20px;
                  -webkit-line-clamp: 2;
                  -webkit-box-orient: vertical;
                }
              }
            }
          }
      }
      .publication-selected-filters {
        margin-top: 20px;
        min-height: 40px;
        padding: 0 0 0 30px;
        #publication-selected-filters{
          position: relative;
        }
        .selected-filter{
          padding: 10px 15px;
          border: 1px solid #eee;
          border-radius: 40px;
          color: #232E35;
          margin-right: 10px;
          font-size: 16px;
          font-weight: normal;
          line-height: 24px;
          letter-spacing: 0.02em;
          text-transform: capitalize;
          display: inline-block;
          margin-bottom: 10px;
          .close {
            position: relative;
            cursor: pointer;
            top: 4px;
            width: 20px;
            height: 20px;
            z-index: 9;
            display: inline-block;
            background: url("../../../../../etc.clientlibs/twist-aem-migration/clientlibs/clientlib-site/resources/images/close.svg") no-repeat center;
          }
        }
        .selected-count-filters {
            padding: 10px 15px;
            border: 1px solid #eee;
            border-radius: 40px;
            color: #232E35;
            cursor: pointer;
            margin-right: 10px;
            font-size: 16px;
            font-weight: normal;
            line-height: 24px;
            letter-spacing: 0.02em;
            text-transform: capitalize;
            display: inline-block;
            margin-bottom: 10px;
            
        }
        span.selected-filters-clear {
            position: absolute;
            right: -60px;
            top: 0;
            text-decoration: underline;
            cursor: pointer;
            display: none;
        }
      }
      .publication-landing-page {
        padding: 0 0 0 20px;
        @media (max-width: 767px) {
          padding: 0;
        }
      }
      .total-pages {
        margin-left: 30px;
      }
      .publication-card{
        &:hover {
          box-shadow: none !important;
          background: #fafbfd;
        }
        &.category-list-item-each-card{
          padding: 0;
          border: 0;
        }
        .publication-section{
          .resource-title{
            display: none;
          }
        }
        .card{
          display: block;
          background: #fff;
          border-radius: 0;
          padding: 24px;
          box-shadow: none;
          max-width: 900px;
          margin: 0 auto 6px auto;
          text-decoration: none;
          color: inherit;
          height: fit-content;
          border: 1px solid #EEEEEE;
          border-top: none;
          width: calc(100% - 10px);
          margin-left: 10px;
          @media (max-width: 767px) {
            gap: 2px;
          }
          &:first-child{
            border-top: 1px solid #EEEEEE;
          }
          &:hover {
            background: #fafbfd;
          }
          .doi {
            font-size: 16px;
          }
          span.arrow-button {
            display: flex;
            flex-wrap: nowrap;
            align-items: center;
            font-size: 16px;
            font-weight: 700;
            line-height: 20px;
            color: #354652;
            letter-spacing: 0.02em;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            &::after {
              margin: 0;
              content: "";
              width: 14px;
              height: 14px;
            }
          }
        }
      }
      .search-block{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 0 0 20px;
        @media (max-width: 1023px) {
          display: none;
        }
        .total-pages {
            margin: 30px 10px;
            color: #354652;
            font-size: 16px;
            line-height: 20px;
            letter-spacing: 0.02em;
        }
      }
    }
    .pagination-controls {
        margin-top: 20px;
        text-align: center;
        display: flex;
        align-items: center;
    }

    .pagination-controls button {
      cursor: pointer;
      border: none;
      background-color: transparent;
      color: #232E35;
      font-style: normal;
      font-weight: 400;
      font-size: 16px;
      line-height: 20px;
      align-items: center;
      letter-spacing: 0.02em;
      padding: 6px 16px;
    }

    .pagination-controls .active-page {
      color: #1E986F;
      border: none;
      font-weight: 700;
    }
    .pagination-controls .prev-page-button,
    .pagination-controls .next-page-button {
        border: 2px solid #EEF2F6;
        border-radius: 28px;
        padding: 12px 18px 22px 18px;
        font-size: 40px;
        width: 60px;
        height: 60px;
    }
    .search-right-container {
      display: flex;
      justify-content: flex-end;
      gap: 2rem;
      .form-type-textfield {
        label {
          display: none;
        }
      }
      #edit-title{
        width: 216px !important;
        margin-left: 15px !important;
        border: 1px solid #E0E5EB;
        margin-top: -1px;
        font-weight: 400;
        line-height: 1.5;
        color: #212529;
        padding: 9px 10px 9px 32px;
        border-radius: 2px;
        font-size: 1rem;
        background: url(../../../../../content/dam/twist-aem-migration/search.svg) no-repeat left;
      }
      .form-item-sort-by{
        display: flex;
        label{
          margin-right: 10px;
          margin-top: 10px;
          font-size: 16px;
          color: #232E35;
          line-height: 20px;
          text-transform: inherit;
        }
        select{
          border: 1px solid #E0E5EB;
          padding: 0 12px;
          color: #232E35;
          height: 40px;
          outline: none;
          border: 1px solid #DDDDDD;
          box-sizing: border-box;
          border-radius: 4px;
          font-size: 1rem;
          color: #212529;
        }
      }
    }
    .landing-side-nav {
      width: 312px;
      .resource-type-all-input-boxes-container {
        display: none;
      }
      .resource-type-all-input-boxes-container {
        display: none;
      }
      .product-title{
        font-size: 16px !important;
        line-height: 24px !important;
        color: #232E35;
        position: relative;
        width: 100%;
        padding: 16px 16px 16px 0px;
        font-weight: 400;
        text-transform: capitalize;
        margin-top: 0px;
      }
      .resource-products-wrapper{
        width: 100%;
      }
      .resource-dates-wrapper{
        width: 100%;
        margin: 0;
        border-bottom: #EEEEEE solid 1px;
        border-top: #EEEEEE solid 1px;
      }
      .publication-accordion-container{
        justify-content: space-between;
      }
      .filter-box-title{
        font-size: 13px !important;
        line-height: 20px !important;
        margin-bottom: 0px;
        color: #98A8B3;
      }
      div#pagination-controls {
        margin: 0 0 0 20px;
      }
    }
}

.webinar-landing-container {
    margin: auto;
    display: flex;
    width: 1140px;
    margin-top: 30px;
    @media (min-width: 767px) and (max-width: 1169px) {
      margin-top: 240px;
      width: 100%;
    }
    @media (max-width: 767px) {
      margin-top: 190px;
      width: 100%;
    }
}

.top-container.left-webinar-container {
    display: block;
    margin-top: 0px;
    padding-right: 15px;
    padding-top: 0;
    @media (min-width: 767px) and (max-width: 1169px) {
      max-width: 250px;
    }
    .resource-products-wrapper{
      margin-top: 0;
    }
    .yearCount {
        color: #ABABAB;
        font-size: 14px;
        line-height: 14px;
        position: absolute;
        top: 3px;
        left: auto;
        right: 50px;
    }
}

.webinar-landing-container .right-webinar-container {
    width: 855px;
    margin-top: 20px;
    @media (min-width: 767px) and (max-width: 1169px) {
      width: 755px;
    }
}

.webinar-landing-container .case-study-card {
    width: 281px;
    height: 358px;
}
.case-study-card {
    .picks-wrapper {
        position: absolute;
        top: 9px;
        left: 9px;
        color: #ffffff;
        z-index: 1;
        font-weight: 700;
        padding: 4px 7px;
        font-size: 14px;
        line-height: 14px;
        background: rgba(49, 53, 56, 0.35);
        border-radius: 4px;
    }
}

/* .webinar-landing-container .case-study-card-grid {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
} */

.webinar-landing-container .case-study-card-grid {
    gap: 15px;
    width: 884px;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    display: flex;
    flex-wrap: wrap;
}

.webinar-landing-container .case-study-card img {
    width: 279px;
    height: 160px;
    object-fit: cover;
}
.picks-wrapper-hover{
  display: none;
}
.webinar-landing-container .case-study-card-content {
    width: 279px;
    height: 196px;
}

.webinar-landing-container .presented-by {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #727272;
}

.webinar-landing-container .recorded {
    color: #727272;
    line-height: 150%;
    text-transform: unset;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}

.webinar-landing-container .case-study-card-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    display: flex;
    align-items: center;
    color: #727272;
}

.webinar-landing-container .case-study-card-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    font-style: normal;
    line-height: 125%;
    font-weight: 700;
    color: #313538;
    letter-spacing: 0.32px;
}

.webinar-landing-container a.case-study-card-link {
    width: 281px;
    height: 358px;
    @media (min-width: 768px) and (max-width: 1169px) {
      width: 222px;
    }
}

.webinar-landing-container .case-study-card:hover {
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #EEEEEE;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    background-color: transparent;
    .picks-wrapper{
      display: none;
    }
    .picks-wrapper-hover{
      display: block;
        color: #2AD39B;
        background: none;
        opacity: 1;
        margin-bottom: 16px;
        font-weight: 700;
        padding: 15px 0 0 0;
        font-size: 14px;
        line-height: 14px;
    }
}


.tag {
    display: inline-block;
    padding: 4px 8px;
    background: #eee;
    border-radius: 12px;
    font-size: 0.75rem;
    color: #444;
    /* position: absolute;
    bottom: 28px; */
    font-weight: 700;
      margin-top: 30px;
}
 .case-study-card:hover .tag-Webinar {
  position: absolute;
  padding: 3px 10px;
     background-color: #cee2d9;
  color: #13613d;
  text-align: center;
  bottom: unset;

} 
.img-Webinar {
    background-color: #13613d;
}
.tag-Webinar {
 background-color: #cee2d9;
  color: #13613d;
   border: none;
  font-weight: bold;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 14px;
  cursor: default;
  font-weight: bold;
}

.img-NGS{
  background-color: #23945f;
}
.tag-NGS {
  background-color: #e6f4ee;
  color: #23945f;
   border: none;
  font-weight: bold;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 14px;
  cursor: default;
  font-weight: bold;
}
.img-Biopharma{
     background-color: #a322a5;
}
.tag-Biopharma {
  background-color: #F8E7FF;
  color: #a322a5;
   border: none;
  font-weight: bold;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 14px;
  cursor: default;
  font-weight: bold;
}
.img-Genes{
     background-color: #2256a5;
}
.tag-Genes {
  background-color: #E9E9FD;
  color: #5D5DB2;
   border: none;
  font-weight: bold;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 14px;
  cursor: default;
  font-weight: bold;
}
.img-Antibodies{
     background-color: #c639c1;
}
.tag-Antibodies {
  background-color: #F8E7FF;
  color: #c639c1;
   border: none;
  font-weight: bold;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 14px;
  cursor: default;
  font-weight: bold;
}
.img-Variant{
     background-color: #c68239;
}

.tag-Variant {
  background-color: #FEEFE1;
  color: #c68239;
   border: none;
  font-weight: bold;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 14px;
  cursor: default;
  font-weight: bold;
}

.img-Synthetic{
     background-color: #E6F6F0;
}

.tag-Synthetic {
  background-color: #e6ecf4;
  color: #1a7b1a;
   border: none;
  font-weight: bold;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 14px;
  cursor: default;
  font-weight: bold;
}

.img-Oligo{
     background-color: #1c1361;
}

.tag-Oligo {
    background: #E6F7F8;
    color: #31A0AA;
   border: none;
  font-weight: bold;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 14px;
  cursor: default;
  font-weight: bold;
}

/* tag colors */

span.tag.ngs,
span.tag.synthetic-controls {
    background: #E6F6F0;
    color: #105928;
}

span.tag.biopharma,
span.tag.antibodies {
  background: #F8E7FF;
  color: #AE45D2;
}
 
span.tag.data-storage {
  background: #F1EBDE;
  color: #382F1B;
}
 
 
span.tag.genes {
	background: #E9E9FD;
  color: #5D5DB2;
}
 
span.tag.oligo-pools {
	background: #E6F7F8;
  color: #31A0AA;
}
 
span.tag.varient-libraries {
	background: #FEEFE1;
  color: #CE6B12;

}

.webinar-landing-container h6.title {
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    line-height: 130%;
    color: #313538;
}

.webinar-landing-container .grid-item {
    padding: 0px;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    box-sizing: border-box;
    border-radius: 4px;
}

.webinar-landing-container .grid-title {
    font-size: 16px;
    margin: 10px 0;
    font-weight: bold;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    color: #727272;
    padding: 10px 20px;
}

.webinar-landing-container .grid-description {
    color: #333;
    font-family: "din-2014", "Helvetica Neue", Helvetica, Arial, sans-serif;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    font-size: 16px;
    line-height: 20px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 10px;
}

.webinar-landing-container .grid-item:not(:first-child) .grid-description {
    -webkit-line-clamp: 2;
}

.webinar-landing-container .product-title {
    font-weight: 700;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #98A8B3;
    position: relative;
    .clear-button{
      float: right;
    }
}

.webinar-landing-container .option {
    position: relative;
    padding-left: 0px;
    cursor: pointer;
    line-height: 24px;
    font-size: 16px;
    text-transform: capitalize;
    color: #313538;
    letter-spacing: normal;
}

.webinar-landing-container .view-header-container {
    display: flex;
    justify-content: space-between;
    padding: 20px 2px;
}

.webinar-landing-container .view-header {
    font-weight: 400;
    display: inline-block;
    align-self: center;
    font-size: 16px;
    line-height: 30px;
    margin-top: 5px;
    font-family: "din-2014", "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 0.32px;
}

.webinar-landing-container .filter-label {
    font-size: 16px;
    font-weight: 400;
    font-family: "din-2014", "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 0.02em;
    line-height: 28px;
    -webkit-font-smoothing: antialiased; 
    margin-right: 6px;
}

.webinar-landing-container .sorting-dropdown {
	padding: 0px 8px;
    border-color: #4A4A4A !important;
    height: 40px;
    outline: none;
    border: 1px solid #DDDDDD;
    box-sizing: border-box;
    border-radius: 4px !important;    
}

.webinar-landing-container option:hover {
    background: white !important;
    font-weight: 700;
}

.pagination{
    margin-bottom: 2pc;
    display: flex;
    justify-content: space-around;
    width: 700px;
    padding-top: 20px;
    align-items: center;
}
.pagination-1{
    margin-bottom: 2pc;
    display: flex;
    width: 700px;
    padding-top: 20px;
    align-items: center;
}

li.page-item {
    padding: 0 15px 0 0;
    font-size: 18px;
    font-weight: 400;
}
li.page-item .page-link {
  padding: 10px 15px;
}

a.page-link.arrow-link {
    position: relative;
    padding: 0 0 0 18px;
    font-size: 32px;
    margin: 0;
}
a.page-link.arrow-link::before {
    content: "";
    border: 2px solid #EEF2F6;
    width: 60px;
    height: 60px;
    display: block;
    position: absolute;
    border-radius: 50px;
    top: -8px;
    left: -10px;
}

.mobile-view-filter {
     display: none;
}

@media (max-width: 576px) {
    .webinar-landing-container .case-study-card-grid {
        display: block;
        margin: 0px auto;
        width: 100%;
   }
        .webinar-landing-container a.case-study-card-link {
        padding: 15px !important;
        justify-content: center !important;
        width: 100% ! Important;
        height: unset !important;
    }
    .pagination{
        width: 330px;
        margin: auto;
        justify-content: space-between;
        margin-bottom: 20px;
    }
     .top-container.left-webinar-container {
        display: none;
     }
     .mobile-filter-btn {
     display:block !Important;
   }
   .pagination-1{
        width: 330px;
        margin: auto;
        margin-bottom: 20px;
    }
    
}

@media (max-width: 768px) {
 .mobile-view-filter {
     display: block;
 }
 .top-container.left-webinar-container {
    display: none;
 }
 .grid-container {
  	display: inline-flex !important;   
  }
  .webinar-landing-container {
  	width: unset;
  }
  .grid-item {
    width: 242px;
    height: 215px;
  }
  .webinar-landing-container .case-study-card-grid {
    display: flex;
    margin: 0px auto;
    width: 100%;
    justify-content: center;
   }
    .pagination{
        width: 80%;
        margin: auto;
        justify-content: space-between;
        margin-bottom: 20px;
    }
    .pagination-1{
        width: 80%;
        margin: auto;
        justify-content: space-between;
        margin-bottom: 20px;
    }
        .featured-resources-section {
        width: 90%;
        padding: 0 0 15px;
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        scrollbar-width: none;
        margin: auto;
        .title{
            font-size: 16px;
            font-weight: 700;
          }
    }
    .webinar-landing-container .right-webinar-container {
    width: 100%;
}
    li.page-item {
      padding: 0px;  
    }
     .webinar-landing-container a.case-study-card-link {
        padding: 0px;
        justify-content: center;
        width: 221px;
        height: 414px;
    }
    .webinar-landing-container .case-study-card {
     width:90%;
    }
    h4#pagination-heading {
    width: 82%;
    margin: auto;
}
    .webinar-landing-container .view-header-container {
     display: none;
    }
}
@media (max-width: 1023px) {
  .mobile-filter-btn {
     display:block !Important;
   }
}

 
    /* Button */
    .landing-open-nav-btn {
      margin: 20px;
      padding: 10px 20px;
      background: #fff;
      color: #313538;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 16px;
      border: 1px solid #4a4a4a;
      font-weight: 400;
      @media (max-width: 767px) {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin: 20px 20px 20px 30px;
      }
      &:hover{
        color: #313538;
      }
    }
 
    /* Overlay */
    .landing-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 0;
      height: 100%;
      background: rgba(0,0,0,0.5);
      overflow-x: hidden;
      transition: 0.3s;
      z-index: 300000000;
    }
 
    /* Side nav */
    .landing-side-nav {
      position: absolute;
      top: 0;
      left: 0;
      width: 312px;
      height: 100%;
      background: #fff;
      box-shadow: 2px 0 5px rgba(0,0,0,0.2);
      padding: 20px;
      overflow-x: scroll;
      .filter-box-title {
          font-size: 18px;
          line-height: 175%;
          color: #727272;
          margin-bottom: 12px;
          padding: 0 0 0 16px;
      }
    }
 
    /* Close button */
    .landing-close-btn {
      position: absolute;
      top: 15px;
      right: 15px;
      font-size: 22px;
      font-weight: bold;
      color: #333;
      cursor: pointer;
      background: none;
      border: none;
    }
 
    .landing-nav-links {
      margin: 50px 0px 50px 24px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      @media (max-width: 1023px) {
        margin: 0;
      }
      .product-title {
        font-weight: 700;
        font-size: 13px;
        line-height: 20px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #98A8B3;
        padding: 0 10px;
        @media (max-width: 767px) {
          display: flex;
          justify-content: space-between;
        }
      }
      .resource-type-title{
        font-weight: 700;
        font-size: 13px;
        line-height: 20px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #98A8B3;
        padding: 0 10px;
            font-family: din-2014, Helvetica Neue, Helvetica, Arial, sans-serif !important;
      }
      .option {
          font-size: 16px;
          font-weight: 500;
          color: #333333;
          margin-left: 4px;
          cursor: pointer;
          margin: 0 24px 0 !important;
          display: block;
          line-height: 16px;
          padding: 12px 0;
          &.active {
            color: #1E986F;
            background: #F2F6EE;
            display: block;
            width: 100%;
          }
      }
      .resource-filters {
        margin-top: 40px;
      }
      .each-input-box-container {
          margin: 16px 0 0 10px;
      }
    }
 
    .landing-nav-links a {
      text-decoration: none;
      color: #333;
      font-size: 18px;
    }
 
    /* When open */
    .landing-overlay.open {
      	width: 100%;
        position: fixed;
        z-index: 300000000;
    }

hr.sort-border {
    margin-top: 15px;
}

.filter-sort-container {
    margin: auto;
    width: 62%;
}
.filter-sort-container label {
    /* padding: 16px 10px; */
    margin: 13px 10px;
    font-size: 16px;
}
span.filter-sort {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.mobile-filter-btn {
 display:none;
}

.hidden {
  display: none;
}

.no-data{
    margin: auto;
}

.toggle-btn {
  width: 11px;
  height: 16px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  margin-left: auto;
}

/* Default state (down arrow) */
.toggle-btn.closed {
  background-image: url('../../../../../content/dam/twistbioscience/resource-filter-menu-down.jpg');
}

/* Toggled state (up arrow) */
.toggle-btn.open {
  background-image: url('../../../../../content/dam/twistbioscience/resource-filter-menu-up.png');
}
#children-Genes,
#children-NGS {
    padding: 0 0 0 20px;
}