.select7_container {
    box-sizing: border-box;
    position: relative;
    background-color: rgb(255, 255, 255);
    padding: 5px 5px 0 5px;
    padding-right: 30px;   
    overflow: hidden;
   color: #555;
    width: 100%;
    min-height: 30px;
    user-select: none;
   font-size: 14px;

    border: 1px solid #111;
    height: 38px;
    margin-bottom: 20px;
}

.select7_placeholder {
    font-family: Arial, Helvetica, sans-serif;
   
         color: #555;
    font-size: 14px;
    position: absolute;
    top: 45%;
    left: 6px;
    transform: translateY(-50%);
}

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

.select7_item {
    position: relative;
    z-index: 1;
    display: inline-block;
    background-color: rgb(255, 255, 255);
   color: #555;
    padding:2px 4px;
    border-radius: 5px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 13px;
    user-select: none;
    margin-bottom: 5px;
    max-width: 99%;
}

.select7_content {
    padding-right: 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #555;
}

.select7_select {
    position: absolute;
     background-color: rgb(255, 255, 255);
   color: #555;
    
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-left: 5px;
}

.select7_select > option {
   background-color: rgb(255, 255, 255);
   color: #555;
    font-size: 15px;
    /* 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: rgb(255, 255, 255);
}

.select7_hide {
    display:none;
}

.select7_x {
    width: 3px;
    height: 9px;
    background-color: #444;
    position: absolute;
    top: 1px;
    
}

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

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