.react-tabs {
    -webkit-tap-highlight-color: transparent;
  }
  
  .react-tabs__tab-list {
    /* border-bottom: 1px solid #aaa; */
    margin: 0 0 10px;
    padding: 0;
  }
  
  .react-tabs__tab {
    border: 1px solid transparent;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    display: inline-block;
    /* border: 1px solid transparent; */
    /* border-bottom: none; */
    bottom: -2px;
    position: relative;
    color: #495057;
    font-weight: bold;
    list-style: none;
    padding: 0.9rem;
    cursor: pointer;
  }
  
  .react-tabs__tab--selected {
    
    /* border-color: #aaa; */
    

    color: #00467E;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
  }
  
  .react-tabs__tab--disabled {
    color: #aaa;
    cursor: default;
  }
  .react-tabs__tab:focus {
    outline: none;
  }
  /* .react-tabs__tab:focus:after {
    content: '';
    position: absolute;
    height: 5px;
    left: -4px;
    right: -4px;
    bottom: -5px;
    background: #fff;
  } */
  
  .react-tabs__tab-panel {
    display: none;
  }
  
  .react-tabs__tab-panel--selected {
    margin-top: -9px;
    display: block;
  }