.skined-miltipleselect_selection {
    position: absolute;
    left: 0;
    top: 0;
}

.skined-miltipleselect_dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    overflow: hidden;
    background: white;
    padding: 10px;
    border: 1px solid;
    border-color: transparent #c0c0c0 #c0c0c0 #c0c0c0;
    z-index: 99;
}

.skined-miltipleselect_dropdown ul {
    height: 300px;
    overflow: auto;
}

.skined-miltipleselect_dropdown ul li {
    padding: 10px 10px 10px 50px;
}

.skined-miltipleselect_dropdown ul li.check:before {
    background: #95c11f url("img/check.svg") no-repeat center center;
}

.skined-miltipleselect_dropdown ul li:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 1px solid #c0c0c0;
}

@media screen and (max-width: 480px)  {
    .skined-miltipleselect_selection {
        display: none;
    }
}