#funds-dropdown-wrapper{
    display: flex;
    justify-content: space-between;
}

#fund-selector-wrapper,
#funds-dropdown-wrapper {
  flex: 1;
}

#first-box {
    height: 100%;
    flex-direction: column;
}

.adv-anltcs-wrapper {
    display: grid;
    grid-column-gap: 15px;
    grid-row-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
    grid-auto-rows: 1fr;
    /* Ref: https://stackoverflow.com/a/44490047 */
  }

.adv-anltcs-box {
    /* background-color: #fdf2e9; */
    background-image:
    linear-gradient(
        to top right,
        #f8d6b9, #fdf3eb
        /* Notes
        # f8d6b9: 10% lower L in HSL vs  # fdf2e9
        # fdf3eb: next lighter color to  # fdf2e9 in tint generator: https://maketintsandshades.com/#fdf2e9 
        */
        /* Reference: 
        https://css-tricks.com/css3-gradients/
        */
  
    );
    color: #333;
    border-radius: 5px;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: bold;
  
    width:100%;
    height:100%;
    /* max-width: 200px;  */
    /* was used to prevent button in single cell categories taking up the whole row*/
    display:flex;
    align-items: center;
    /* Ref: https://stackoverflow.com/a/50517277 
       Ref: https://stackoverflow.com/a/45599428 */
    justify-content: center;
  }
  
  .adv-anltcs-link{
    text-decoration: none;
  }

  /* ################################## */
/* Make Tab content behave as grid columns on md and larger screens  */
/* Ref: 
    https://mdbootstrap.com/snippets/jquery/krzysztof-wilk/2779879#css-tab-view
    https://stackoverflow.com/questions/32201102/convert-bootstrap-colums-to-tab-in-mobile-view
*/
/* ################################## */

@media (min-width: 769px) {
  .tab-content > .tab-pane-snapshot {
    display: block;
  }
  
  /* .fade:not(.show) {
    opacity: 1;
  } */
  
.nav-tab-snapshot {
    display: none;
  }
}

/* ############################# */
/* Customize the snapshot tab buttons */
/* ############################# */

/* .nav-link-snapshot {
  border-width: 0 0 0 0;  
  background-color: transparent;
  color: #333;
}

.nav-link-snapshot.active {
  border-width: 0 0 2px 0;
  border-color: #fff #fff #000 #fff;
  color: #000;
}

.nav-tab-snapshot {
  border-bottom-width: 1px;  
  border-bottom-style: solid;
  border-bottom-color: #333;
} */

/* ##################################################### */ 
/* Customize the snapshot tab buttons - alternative */
.nav-tab-snapshot,
.nav-tab-fundlist {
  border-width: 0 0 1px 0;
  border-color: #ccc;
  border-style: solid;
  
}

.nav-item-snapshot:first-child,
.nav-item-fundlist:first-child {
  margin-right: 5px;
}

.nav-link-snapshot,
.nav-link-fundlist {
  border: 0;
  background-color: #eee;
  border-radius: 4px 4px 0 0;
  color: var(--fontclrBase);
  font-size: 0.85rem;
  font-weight: 500;
}

.nav-link-snapshot.active,
.nav-link-snapshot:hover,
.nav-link-fundlist.active,
.nav-link-fundlist:hover {
  border: 0;
    
  background-image:   linear-gradient(
    to top right,
    #f8d6b9, #fdf3eb
    );
    /* Notes
    # f8d6b9: 10% lower L in HSL vs  # fdf2e9
    # fdf3eb: next lighter color to  # fdf2e9 in tint generator: https://maketintsandshades.com/#fdf2e9 
    */
    
  color: var(--fontclrBase);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ############################# */
/* Customize multi-select dropdown fonts */
/* ############################# */

.opt-type-text {
  font-size: 0.8rem !important;
}

.opt-name-text {
  font-size: 0.9rem !important;
}

.font-eighty {
  font-size: 0.8rem !important
}

.font-ninety {
  font-size: 0.9rem !important
}

#subtitle-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.font-bigger {
  font-size: 1.1rem;
}