.select7_container {
    box-sizing: border-box;
    position: relative;
    background-color: rgba(0, 0, 0, .8);
    padding: 5px 5px 0 5px;
    padding-right: 30px;
    border-radius: 5px;
    overflow: hidden;
    color: rgb(255, 255, 255);
    width: 100%;
    min-height: 30px;
    user-select: none;
}


.select7_arrow {
    position: absolute;
    right: 10px;
    vertical-align: middle;
    font-size: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.select7_item {
    transition: 0.1s;
    position: relative;
    z-index: 1;
    display: inline-block;
    color: rgba(0, 0, 0, .9);
    padding:2px 4px;
    border: 2px solid white;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    user-select: none;
    margin-bottom: 5px;
    max-width: 99%;
}

.select7_content {
    transition: 0.1s;
    padding-right: 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: white;
}

.select7_select {
    position: absolute;
    background: rgba(0, 0, 0, 0.486);
    color: rgba(255, 255, 255, 0);
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: 6px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-left: 5px;
}

.select7_select > option {
    background: white;
    color: #203045;
    padding: 6px;
    /* font-weight: bold; */ /* add this for bold options */
}

.select7_del {
    position: absolute;
    top: 4px;
    right: 12px;
}

.select7_del:hover {
    cursor: pointer;
}

.select7_item:hover {

    background-color: white;
}
.select7_item:hover .select7_content{
    color: black;
}
.select7_item:hover .select7_x {
    background-color: black;
}

.select7_hide {
    display:none;
}

.select7_x {
    transition: 0.1s;
    width: 3px;
    height: 12px;
    background-color: white;
    position: absolute;
    top: 0;    
}

.select7_x:first-child {
    transform: rotate(45deg);
}

.select7_x:last-child {
    transform: rotate(-45deg);
}