.picky {
    width: 260px;
}

    .picky * {
        box-sizing: border-box;
    }

.picky__input {
    width: 100%;
    background-color: transparent;
    border: 1px solid #c3c3c3;
    padding: 5px;
    text-align: left;
    position: relative;
    box-sizing: border-box;
    height: 46px;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Raleway';
}

    .picky__input::after {
        position: absolute;
        width: 0;
        height: 0;
        margin-left: 2px;
        vertical-align: middle;
        border-top: 4px solid;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
        content: none;
        right: 16px;
        top: 16px;
    }

.picky__dropdown {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome and Opera */
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 99;
    background: white;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    list-style: none;
}

    .picky__dropdown .option {
        -webkit-touch-callout: none;
        /* iOS Safari */
        -webkit-user-select: none;
        /* Safari */
        -khtml-user-select: none;
        /* Konqueror HTML */
        -moz-user-select: none;
        /* Firefox */
        -ms-user-select: none;
        /* Internet Explorer/Edge */
        user-select: none;
        /* Non-prefixed version, currently supported by Chrome and Opera */
        padding: 0.5em;
        cursor: pointer;
        border-bottom: 1px solid #eee;
        text-align: left;
    }

        .picky__dropdown .option:hover {
            background-color: #ecf0f1;
        }

        .picky__dropdown .option.selected {
            background-color: #ecf0f1;
        }

        .picky__dropdown .option:focus {
            outline: -webkit-focus-ring-color auto 5px !important;
        }

        .picky__dropdown .option input[type='checkbox'],
        .picky__dropdown .option input[type='radio'] {
            margin-right: 3px;
        }

.picky__filter {
    display: flex;
    width: 100%;
    padding: 3px;
}

.picky__filter__input {
    width: 100%;
    padding: 3px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    position: relative;
    height: 30px;
}
