:root{
  --primary-color: #B2D235;
}

/* To fix header menu breaking issue due to padding */
.header.header--3 .header__nav .nav>ul>li {
  padding: 0 1rem;
}

/* To show nested menu items in the sidebar menu module in payroll-information page  */
.show_nested_menu .side-menu ul ul {
  display: block;
}
.show_nested_menu .side-menu ul li.side-menu__item--parent > a {
  color: var(--primary-color);
}

/* Custom class to fix stretch icon image issue in downloads page */
.icon_image_cover .icon img {
  object-fit: contain;
}

/* To wrap overlapping words - causing issue in the /downloads page */
@media (max-width: 767px) {
  .quickfeat__title {
    word-wrap: break-word;
  }
}

/* Drop shadow for Act3 Video Module */
.act3-video-shadow  {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22); !important;

    border-radius: 25px; /* Optional: rounds sharp video corners to match the shadow */ }