
  .menu-wrapper {
    display: flex;
    height: 100%;
  }
  
  .menu-wrapper .menu-tabs .nav-link {
    padding: 15px 0px;
  }
  
  .menu-wrapper ul.menu-tabs>li:nth-child(n) {
    border-top: 1px solid #D7D7D7;
  }
  
  .menu-wrapper ul.menu-tabs>li:last-child {
    border-bottom: 1px solid #D7D7D7;
  }

  
  .menu-wrapper .menu-tabs {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 23%;
    height: 100%;
    background-color: #EDF0F3;
    overflow-x: hidden;
    overflow-y: hidden auto;
  }
  
  
  .menu-wrapper .menu-tabs .tab-item {
    width: 100%;
    max-height: 78px;
  }
  
  .menu-wrapper .menu-tabs .tab-item button {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #787B88;
    background-color: #EFF2F5;
    border-radius: 0;
  }
  
  .menu-wrapper .menu-tabs .tab-item button.active {
    background-color: #0066c0;
    color: #fff;
    border: none;
  }
  
  .menu-wrapper .menu-tabs .tab-item p {
    text-align: center;
  }
  
  
  .tab-caption {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    overflow-x: scroll;
    overflow-y: scroll;
    max-height: 100%;
  }
  
  .menu-next {
    background-color: var(--color-4);
    position: fixed;
    bottom: 0;
    z-index: 1;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.75);
    clip-path: inset(0px -15px 0px 0px);
  }
  
  .next-btn {
    width: 31.5%;
    background: linear-gradient(207deg, rgb(255, 123, 72) 0%, rgb(247, 60, 34) 100%);
    border-radius: 6px;
    border: none;
    color: #fff !important;
    font-family: inherit;
    font-size: 15px;
    position: fixed;
    left: 6vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .next-btn:hover {
    outline: 0;
    border: 0;
    color: #fff;
  }
  
  
  


/* Media Query Start */

/* -----after 992px----- */
@media (min-width: 992px) {

  
  /* start */

  .tab-caption {
    font-size: 0.85rem;
  }

  .menu-wrapper .menu-tabs .nav-link {
    padding: 10px 0px;
  }

  .menu-wrapper-parent {
    height: calc(var(--desktop-menu-wrapper-parent-height) - var(--desktop-breadcrumb-title-next-line-height));
    margin-left: 6vw;
  }
}

@media (min-width: 1200px) {

 
  .tab-caption {
    font-size: 0.9rem;
  }


  .menu-wrapper .menu-tabs .nav-link {
    padding: 12px 0px;
  }


}

@media (min-width: 1400px) {

 
 
  .tab-caption {
    font-size: 1rem;
  }


  .menu-wrapper .menu-tabs .nav-link {
    padding: 13px 0px;
  }



}

@media (min-width: 1600px) {
  
  

  .tab-caption {
    font-size: 1.15rem;
  }


  .menu-wrapper .menu-tabs .nav-link {
    padding: 14px 0px;
  }


}

@media (min-width: 1800px) {

 
  .tab-caption {
    font-size: 1.25rem;
  }


  .menu-wrapper .menu-tabs .nav-link {
    padding: 15px 0px;
  }



}

@media (min-width: 2000px) {}

@media (min-width: 2200px) {}

@media (min-width: 2400px) {}

/* mobile UI */
@media (max-width: 991px) {



  .tab-wrapper {
    width: 100%;
    max-width: 100%;
    height: 43px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    column-gap: 1px;
    grid-row: 2;
    overflow: hidden;
    z-index: 10;
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    background-color: #EDF0F3;
    position: fixed;
    bottom: 0;
  }


  .menu-wrapper .tab-wrapper .tab-item a {
    color: #787b88;
    background-color: transparent;
    border-radius: 0;
  }

  .menu-wrapper .tab-wrapper .tab-item .nav-link {
    text-align: center;
    font-size: 10px;
    overflow-wrap: break-word;
    white-space: initial;
    width: 100%;
    height: 100%;
    overflow: hidden auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .tab-wrapper>.tab-item {
    width: 100%;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: none;
    max-height: fit-content;
  }

  .tab-wrapper>.tab-item:nth-child(n) {
    border-right: 1px solid #cfcfcf;
  }

  .tab-wrapper>.tab-item:last-child {
    border-right: none;
  }

  .tab-caption {
    font-size: 10px;
    width: 100%;
    max-height: 100%;
    padding: 6px 3px;
  }
  .nav-link.tab-active {
    background-color: #0066c0 !important;
    color: #fff !important;
    border: none;
  }

  .mobile-close-btn .mobile-close {
    width: 60px;
    height: 6px;
    border-radius: 10px;
    background-color: #A1A5B7;
  }


}