.chip-bg-red {
    background-color: #FF0000;
}
.chip-bg-green {
    background-color: #007F38;
}
.chip-bg-blue {
    background-color: #00467f;
}
.chip-bg-yellow {
    background-color: #dfff0e;
}
.chip-bg-purple {
    background-color: #d000f4;
}
.chip-bg-orange {
    background-color: #ff8400;
}
.search-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: var(--calendar-fourth-color);
    height: 40px;
    border-radius: 20px;
    border: 1px solid var(--calendar-fifth-color);
}
.search-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: var(--base-grey-bg);
    height: 40px;
    border-radius: 20px;
    padding-left: 15px;
    padding-right: 5px;
}
.search-box:focus-within {
    background-color: var(--ui-bg-content);
    box-shadow: 0px 1px 15px 0px rgba(0,0,0,0.1);
}
.search-box input {
    border: 0;
    background-color: rgba(255,255,255,0);
    font-family: var(--ui-main-font-family-regular);
}
.search-box input:focus{
    outline: none;
}
.search-box .search-option {
    margin-top: 5px;
}
.search-box .search-option .chip {
    display: flex;
    border-radius: 15px;
    padding-left: 2px;
    padding-right: 15px;
    background-color:var(--calendar-third-color);
}
.search-box .search-option .chip .icon {
    width: 26px;
    height: 26px;
    /* margin-top: 2px;
    border-radius: 13px; */
    /* background-color: white; */
    overflow: hidden;
}
.search-box .search-option .chip .text {
    margin-left: 10px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    /* font-weight: 600; */
    max-width: 80px;
    color: var(--ui-text-color-white);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-family: var(--ui-main-font-family-regular);
}
.search-box:focus-within .search-option .chip {
    opacity: 0.2;
}