@keyframes shine {
    to {
      background-position-x: -200%;
    }
  }

.mega-menu-holder {
    top: 2.5rem;
    position: absolute;
    overflow-y: scroll;
    max-height: 35rem;
    width: 20rem;
    background: #2638a1;
    z-index: 100;
}

.load-option>p {
    height: 1rem;
    width: 17rem;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 5px;
    background-size: 200% 100%;
    animation: 1s shine linear infinite;
}

.mega-menu-option {
    border-top: 1px solid #c1c1c1;
    background-color: white;
    padding: 1rem;
    color: #001489;
    padding-left: 2rem;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.prev-cat {
    padding-left: 1rem;
}

.mega-menu-option:hover {
    background-color: #efefef;
    cursor: pointer;
}

