
.btn-outline-yellow {
    color: #F7C100FF;
    background-color: transparent;
    background-image: none;
    border-color: #F7C100FF;


}

.btn-outline-yellow:hover {

    background: #F7C100FF;
    color: white;
}

/**
    @notes :
     => .exprt == Expertis
**/
.exprt-left-container {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 17px;
}

.exprt-category {
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 10px;
    isolation: isolate;
    width: 100%;
    height: 41px;
    background: #E4E4E4;
    border-radius: 50px;
}


.exprt-category .__label {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 60px;
    gap: 10px;
    width: 100%;
    height: 100%;
}

.exprt-category .__label .__txt {
    font-style: normal;
    font-weight: 500;
    font-size: 23px;
    line-height: 29px;
    color: #333333;
}

.exprt-item-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 !important;
    padding: 0 10px;
    width: 100%;
}

.__elps {
    white-space: nowrap;
    overflow: hidden;
    display: block;
    text-overflow: ellipsis;
}

.__danger {
    color: #BF272D !important;
}

.exprt-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    gap: 10px;
    width: 100%;
    height: 22px;
}

.exprt-item .__list {
    gap: 10px;
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    color: #666666;
    text-overflow: ellipsis;
}

.exprt-item .__content {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
}

.exprt-item .__icon {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 18px;
    height: 18px;
}


.exprt-btn-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 10px;
    gap: 5px;
}

.exprt-btn-list {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: 5px;
    width: 100%;
    height: 32px;
}

.success-btn {
    display: flex;
    background: linear-gradient(180deg, #3DBB95 0%, #2F7C66 100%);
    border-radius: 5px;
    width: 100%;
    height: 32px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    gap: 12px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    cursor: pointer;
}

.default-btn {
    display: flex;
    background: #E4E4E4;
    border-radius: 5px;
    width: 100%;
    height: 32px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    gap: 12px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #353535;
    cursor: pointer;
}

.add-btn-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0 6px;
    gap: 10px;
    position: absolute;
    width: 35px;
    height: 23px;
    right: 0;
    top: 9px;
}

.add-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 10px;
    cursor: pointer;
    width: 23px;
    height: 23px;
    background: linear-gradient(180deg, #3DBB95 0%, #2F7C66 100%);
    border-radius: 50px;
}


.tab {
    display: inline-block;
    background-color: grey;
    padding: 0.75rem;
    color: #fff;
}

.selected {
    background-color: black;
}

.tab-panel {

    border: 2px solid black;
    min-height: 50px;
    width: 100%;
    padding: 1rem;
}

.hidden {
    display: none;
}