.select::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    color: black;
}

.select::-webkit-scrollbar-track {
    background: #f1f1f1;
    overflow: hidden;
}

.select::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

.select::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.bg-eee {
    background-color: #eee;
}

.merchant_item {
    border-color: #eee;

}

.merchant_item:hover {
    background-color: #ddd;
}

.merchant-input {
    border-color: #dfe1e6;
    border: 1px solid #666;
}

.merchant-list {
    border-color: #dfe1e6;
    border: 1px solid #666;
}

.border-top-rounded {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.border-bottom-rounded {
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.merchant-input input,
.merchant-input input:focus {
    border: none;
    box-shadow: 0;
    outline: none;
}

.merchant-input input {
    overflow: hidden;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
}