.custom-select {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    min-width: 75%;
}

.select-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 16px;
    cursor: pointer;
}

.select-selected:after {
    content: "🢓";
    margin-left: 5px;
}

.select-items {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    background-color: #fff;
    z-index: 999999;
}

.select-items div {
    padding: 8px 16px;
    cursor: pointer;
}

.select-items div:hover {
    background-color: #f9f9f9;
}
.show_it {
    display: block !important;
}
.custom-select * {
    color: black;
}
#size {
    pointer-events: none;
}
.choose_an_option {
    display: flex;
    gap: 11px;
    align-items: center;
}
.stk_div {
    background: red;
    display: block;
    height: 20px;
    width: 20px;
    border-radius: 50%;
}
.stk_div.in_stock {
    background: #35b238;
}