.custom-combobox {
    position: relative;
    display: inline-block;
    margin-right: 0px;
    border-radius: 3px 0px 0px 3px;
    width: 300px;
}

.custom-combobox-toggle {
    position: absolute;
    top: 0;
    bottom: 0;
    margin-left: -1px;
    padding: 0;
    padding-top: 8px;
    width: 34px;
    height: 34px;
    border: 1px solid #ccc;
    border-radius: 0px 3px 3px 0px;
    text-align: center;
    background-color: white;
}

.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto; /* prevent horizontal scrollbar */
    overflow-x: hidden; /* add padding to account for vertical scrollbar */
    z-index: 1000 !important;
}

.wrapper-tab {
    margin: auto;
    width: 80%;
    display: flex;
    border-bottom: 1px solid #555;
    margin-bottom: 50px;
}

.wrapper-tab .tab {
    cursor: pointer;
    background-color: #ccc;
    color: #777;
    margin-right: 10px;
    padding: 15px;
    border-radius: 10px 10px 0px 0px;
}

.wrapper-tab .tab.active {
    background-color: #555;
    color: white;
}

.tooltip {
    position: relative;
    cursor: pointer;
}

.tooltip > div {
    display: flex;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: .3em 1em;
    border-radius: 3px;
    background-color: #7ec278;
    color: #ffffff;
    font-weight: 300;
    width: 200px;
    transition: opacity .3s;
}

.tooltip > div::before {
    position: absolute;
    top: -6px;
    width: 9px;
    height: 6px;
    background-color: inherit;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    content: '';
}

.tooltip:hover > div {
    visibility: visible;
    opacity: 1;
}

