.flex {
    display: flex;
    align-items: center;
}
.flex-1 {
    flex: 1
}
.ml-auto {
    margin-left: auto;
}
.tab-container {
    background: #F5F5F5;
    border: 1px solid #DDDDDD;
    font-size: 18px;
}
.tab {
    position: relative;
    flex: 1;
    padding: 10px 15px;
    text-align: center;
    border-right: 1px solid #ddd;
}
.tab:last-child{
    border-right: 0;
}
.active-tab {
    color: #fff;
    background: #94C55A;
    font-weight: bold;
}
.orders-tab-container {
    position: absolute;
    z-index: 1;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid #e6e8e9;
    width: 100%;
    background: #fff;
    left: 0;
    top: 65px;
    border-radius: 4px;
    max-height: 215px;
}
.invoices-tab-container {
    position: absolute;
    z-index: 1;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid #e6e8e9;
    width: 100%;
    background: #fff;
    left: 0;
    top: 65px;
    border-radius: 4px;
    max-height: 215px;
}
.orders-tab-container::before{
    position: absolute;
    left: 50%;
    margin-left: -5px;
    top: -20px;
    content: '';
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom: 10px solid #fff;
}
.invoices-tab-container::before{
    position: absolute;
    left: 50%;
    margin-left: -5px;
    top: -20px;
    content: '';
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom: 10px solid #fff;
}
.orders-wrap {
    max-height: 215px;
    overflow-y: scroll;
}
.invoices-wrap {
    max-height: 215px;
    overflow-y: scroll;
}
.order {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #e6e8e9;
    color: #666;
    font-weight: 400;
    font-size: 14px;
}
.invoice {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #e6e8e9;
    color: #666;
    font-weight: 400;
    font-size: 14px;
}
.order:last-child {
    border-bottom: 0;
}
p {
    border-bottom: 1px solid #e6e8e9;
}
.hidden {
    display: none;
}
.sub-title {
    font-size: 12px;
}