.select-block{
    position: relative;
}
.select-input input{
    width: 100%;
    border: none;
    background: #fff;
    outline: none;
    pointer-events: none;
	min-width: 0;
}
.select-del .select-input input{
    pointer-events: fill;
}

.select-del .select-item,
.select-del .select-item.select-selected{
    background: none;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: default;
}

.select-del .select-item:hover{

    cursor: default;
}
.select-del .select-del-icon{
    display: flex;
}
.select-del-icon:hover{
    background: #c1272d;
}
.select-del-icon{
    width: 10px;
    height: 10px;
    background: #cdd8dc;
    color: #fff;
    justify-content: center;
    display: none;
    align-items: center;
    padding: 5px;
    font-weight: 600;
    font-size: 20px;
    box-sizing: content-box;
    border-radius: 4px;
    cursor: default;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.select-block .select-input .select-add-icon{
    color: #fff;
    background: #9cb0b8;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    font-weight: 100;
    padding: 5px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    margin: 0 10px;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: none;
}
.select-del .select-input .select-add-icon{
    display: flex;
}
.select-block .select-input .select-add-icon:hover{
    background: #78888e;
}
.select-input{
    background: #fff;
    padding: 10px 20px;
    color: #797979;
    font-weight: 600;
    font-family: sans-serif;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border: 1px solid #cdd8dc;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    font-size: 14px;
    cursor: default;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.select-dropdownicon{
    float: right;
    padding: 5px;
    cursor: pointer;
    width: 20px;
    box-sizing: border-box;
    height: 16px;
}
.select-wrap{
    position: absolute;
    z-index: 999;
    overflow: auto;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.1);
    border: 1px solid #cdd8dc;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background: #fff;
}
.select-dropdown{
    background: #fff;
    padding: 15px 20px;
    color: #9cb0b8;
    font-weight: 300;
    font-family: sans-serif;
    font-size: 14px;
    overflow-y: scroll;
    width: 100%;
    box-sizing: border-box;
}
.select-item:hover{
    color: #000;
}
.select-item:last-child{
    margin-bottom: 0;
}
.select-item{
    margin-bottom: 10px;
    font-size: 14px;
    padding-left: 25px;
    cursor: pointer;
    background: url('/img/select/select-no.png') no-repeat 0 50%;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.select-item.select-selected{
    background: url('/img/select/select-selected.png') no-repeat 0 50%;
}
.select-passive .select-input {
    border-radius: 25px;
    font-weight: 100;
    box-shadow: none;
}
.select-passive .select-dropdown,
.select-passive .select-search{
    display: none;
}
.select-singleselect .select-item{
    background: none;
    padding-left: 0;   
}
.select-search input:focus,
.select-search input{
    background: #fff;
    padding: 10px 20px;
    color: #000;
    font-weight: 300;
    font-family: sans-serif;
    border: none;
    border-bottom: 1px solid #cdd8dc;
    font-size: 14px;
    outline: none;
    width: 100%;
    box-shadow: none;
    box-sizing: border-box;
    font-family: Verdana;
    font-size: 13px;
    font-style: italic;
}
.select-noselect .select-search{
    display: none;
}
.select-up .select-input{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.select-up.select-wrap{
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    display: flex;
    flex-direction: column-reverse;
    box-shadow: 0px -3px 10px rgba(0,0,0,0.1);

}
.select-up .select-search input:focus, .select-up .select-search input{     border-top: 1px solid #cdd8dc; }

.select-disabled .select-dropdownicon{
    cursor: default;
    opacity: 0.5;
}

.select-disabled .select-input input{
    color: #9cb0b8;
}