.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 {
    display: inline-block;
    border: 1px solid transparent;
    border-bottom: none;
    bottom: -1px;
    position: relative;
    list-style: none;
    padding: 6px 12px;
    cursor: pointer;
}

/* .react-tabs__tab--selected {
  background: #fff;
  border-color: #aaa;
  color: black;
  border-radius: 5px 5px 0 0;
} */

.react-tabs__tab--disabled {
    color: GrayText;
    cursor: default;
}

.react-tabs__tab:focus {
    box-shadow: 0 0 5px hsl(208, 99%, 50%);
    border-color: hsl(208, 99%, 50%);
    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 {
    display: block;
}

/* Additions */
.react-tabs__tab-list {
    display: flex;
    margin-top: 30px;
    margin-bottom: 20px;
    border-bottom: none;
}

.react-tabs__tab > div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.react-tabs__tab {
    bottom: 0;
    padding: 12px;
    border: none;
}
.react-tabs__tab-list > li:first-child {
    border-radius: 6px 0 0 6px;
}
.react-tabs__tab-list > li:last-child {
    border-radius: 0 6px 6px 0;
}

.react-tabs__tab:focus {
    outline: none;
    box-shadow: none;
    border-color: unset;
    border: none;
}

.react-tabs__tab:focus:after {
    content: none;
}

.react-tabs__tab svg {
    width: 15px;
    max-height: 15px;
    margin-right: 5px;
}

.react-tabs__tab--selected {
    background: #8db880;
}

/* .react-tabs__tab--selected svg{
  fill: #fff;
} */

.react-tabs__tab--disabled {
    cursor: not-allowed;
    background: #d6d6d6;
}
