.custom-select {
    position: relative;
    display: inline-block;
    width: 300px;
}
.select-items {
    /*display: none;*/
    /*position: absolute;*/
    /*background-color: #f9f9f9;*/
    /*box-shadow: 1px 8px 16px rgba(0, 0, 0, 0.2);*/
    /*z-index: 1;*/
    /*width: 100%;*/
    /*border: 1px solid #ccc;*/
    /*!*border-radius: 5px;*!*/
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 5px;
    display: none;
    z-index: 1000;
}
.select-items label {
    display: block;
    padding: 1px 12px;
    cursor: pointer;
}
.select-items label:hover {
    background-color: #f1f1f1;
}
.selected-options {
    /*padding: 3px 10px;*/
    /*border: 1px solid #ccc;*/
    /*!*border-radius: 5px;*!*/
    /*cursor: pointer;*/
    /*background-color: #fff;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 4px;
    cursor: pointer;
}
.selected-options span {
    color: #555;
}
.selected-options img {
    width: 16px;
    height: 16px;
}