.custom-select-sku {
    position: relative;
    display: block;
    width: 100%;
    height: 41px;
    margin: 0;
    padding: 0 33px 0 11px;
    border-radius: 3px;
    background: var(--light_bg_black, #fafafa);
    border: 1px solid var(--stroke_black, #eeeeee);
    cursor: pointer;
    overflow: visible;
}

.custom-select-sku__selected {
    line-height: 41px;
    user-select: none;
}

.custom-select-sku__list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    z-index: 10;
    max-height: 280px;
    overflow-y: auto;
    display: none;
}
.custom-select-sku__option {
    display: flex;
    align-items: center;
    padding: 8px 11px;
    cursor: pointer;
}
.custom-select-sku__option img{
	width: 50px;
	height: auto;
	padding-right: 10px;
	border-radius:2px!important;
}
.custom-select-sku__option.selected {
    background: #f0f0f0;
}
.custom-select-sku__option:hover {
    background: #f0f0f0;
}
.custom-select-sku {
    position: relative;
    cursor: pointer;
    max-width: 300px;
}

.custom-select-sku__selected {
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.custom-select-sku__icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-size: 8px;
    content: "";
}

.custom-select-sku__icon::before {
    content: "\25BC";
}

.custom-select-sku__icon.open::before {
    content: "\25B2";
}
.option-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.option-name {
    font-weight: bold;
}

.option-price {
    font-size: 0.9em;
    color: #666;
}
.option-image {
    margin-right: 10px;
    width: 50px;
    height: auto;
    flex-shrink: 0;
}

.option-image img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}