.selectify {
    max-width: 350px;
    width: 100%;
    display: inline-block;
    border-radius: 10px;
    transition: all .5s ease;
    position: relative;
    font-size: 14px;
    color: #ffffff;
    text-align: left;
    cursor: pointer;
    padding: 10px;
    background: #000;
}

.selectify:hover {
    box-shadow: 0 0 4px rgb(204, 204, 204)
}

.selectify.active:hover, .selectify.active {
    box-shadow: 0 0 4px rgb(204 204 204);
}

.selectify .selectify-hidden-select{
    position: relative;
    overflow: hidden;
    width: 0;
    height: 0;
}

.selectify .selectify-hidden-select select {
    position: absolute;
    left: -100%;
}

.selectify-dropdown {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.selectify-dropdown span {
    width: 90%;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
}

.selectify-dropdown-icon {
    position: relative;
    width: 17px;
    height: 17px;
    float: right;
    background: url(../images/selectify-caret.svg);
    transform: rotate(-90deg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: all linear 200ms;
}

.selectify.active .selectify-dropdown > i {
    transform: rotate(0deg)
}

.selectify .selectify-options {
    position: absolute;
    background-color: rgb(32 32 32);
    width: 100%;
    left: 0;
    margin-top: 20px;
    border-radius: 5px;
    overflow: hidden;
    display: none;
    max-height: 170px;
    overflow-y: auto;
    z-index: 9;
    scrollbar-width: thin;
    scrollbar-color: #555 #ccc;
}

.selectify.active .selectify-options{
    display: block;
}

.selectify .selectify-options ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.selectify .selectify-options li {
    padding: 12px 10px;
    transition: all .1s ease-in-out;
    cursor: pointer;
    font-weight: 400;
}

.selectify .selectify-options li:hover, .selectify .selectify-options li.active {
    background-color: #000000;
}

.selectify .selectify-options::-webkit-scrollbar {
    width: 12px;
}

.selectify .selectify-options::-webkit-scrollbar-track {
    background: #ccc;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.selectify .selectify-options::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius:8px;
    border: 3px solid #ccc;
}