.ogs-taginput-component {
    background-color: var(--COLOR_BASE);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 999999;
    display: flex;
    flex-direction: column;
}

.ogs-taginput {
    background-color: var(--COLOR_BASE);
    flex-wrap: wrap;
    margin: 10px;
}

.ogs-taginput-field {
    box-sizing: border-box;
    background: none!important;
    border: 1px solid var(--COLOR_HAIRLINE);
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-appearance: none;
    padding: 8px 10px;
    border: none;
    width: 100%;
}

.ogs-taginput-field::placeholder {
    font-size: 16px;
}

.ogs-taginput-tagbutton-container {
    margin: -4px;
    display: flex;
    flex-wrap: wrap;
}

.ogs-taginput-tagbutton {
    height: auto;
    min-height: 32px;
    background-color: var(--COLOR_HAIRLINE);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    margin: 4px;
    font-weight: 600;
    border-radius: 64px;
}

.ogs-taginput-tagbutton span.tag-txt {
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    font-size: 14px;
    margin-right: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    white-space: normal;
}

.ogs-taginput-tagbutton div.tag-close {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background-color: var(--COLOR_SECONDARY);
    color: var(--COLOR_BASE);
    line-height: 0em;
    font-size: 10px;
}

.ogs-taginput-tagbutton div.tag-close i {
    font-size: 12px;
}

.ogs-taginput-section-header {
    display: flex;
    align-items: center;
    margin-top: 0px;
    margin-bottom: 15px;
}

.ogs-taginput-section-header span {
    opacity: 0.5;
}

.ogs-tag-search-done-button {
    font-size: 16px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--COLOR_LINK);
    border: none;
    border-radius: 5px;
    background: none;
    font-weight: bold;
}

.ogs-tag-search-close-button {
    font-size: 16px;
    font-weight: normal;
}

.ogs-tag-candidate {}

.ogs-tag-result-list {
    padding: 0;
    margin: 0px;
    overflow-y: scroll;
    flex-grow: 1;
    scroll-behavior: smooth;
}

.ogs-tag-result-list::-webkit-scrollbar {
    display: none;
}

.ogs-tag-result-list-cell {
    list-style-type: none;
    padding: 12px 15px;
    border-bottom: 1px solid var(--COLOR_HAIRLINE);
    font-size: 14px;
}

.ogs-tag-result-list-cell:first-child {
    border-top: 1px solid var(--COLOR_HAIRLINE);
}

.ogs-tag-result-list-cell i {
    font-size: 16px!important;
    color: var(--COLOR_SECONDARY);
    margin-right: 16px;
}

.ogs-taginput-desctioption {
    font-size: 14px;
    margin: 15px 15px 0 15px;
}

.ogs-taginput-header {
    display: flex;
    min-height: 72px;
    height: 72px;
    align-items: center;
    justify-content: space-between;
    background-color: var(--COLOR_BASE);
    padding: 0 15px;
}

.ogs-taginput-header-left-item {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33.3333333%;
    justify-content: flex-start;
}

.ogs-taginput-header-center-item {
    font-size: 16px;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33.3333333%;
}

.ogs-taginput-header-right-item {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33.3333333%;
    justify-content: flex-end;
}

.ogs-taginput-body {
    padding: 15px;
}