.wdk-select-box {
    height: 120px;
    max-height: 120px;
    overflow-y: auto;
    padding: 16px 16px;
    border-radius: var(--radius-base);
    border: 1px solid var(--grey-02);
    background-color: var(--white-01);
}

.wdk-select-box.single {
    height: initial;
}

ul.wdk-select-box {
    margin: 0 !important;
}

.wdk-select-box-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    width: 100%;
    padding: 8px;
    border-radius: 4px !important;
    border-radius: var(--radius-base);
    background-color: var(--grey-01);
    list-style: none;
}

.wdk-select-box-item i { 
    font-size: 16px;
}

.wdk-select-box-item + .wdk-select-box-item {
    margin-top: 8px;
}

.wdk-select-box {
	scrollbar-width: thin !important;
}

.wdk-select-box::-webkit-scrollbar-track {
	background-color: var(--white-02) !important;
	-webkit-box-shadow: inset 0 0 6px var(--white-02) !important;
    box-shadow: inset 0 0 6px var(--white-02) !important;
}
.wdk-select-box::-webkit-scrollbar {
	background-color: var(--white-02) !important;
	width: 5px !important;
	height: 5px;
}
.wdk-select-box::-webkit-scrollbar-thumb {
	background-color: var(--scroll-thumb-base-custom-color) !important;
	border-radius: 10px;
}