/*Basic style for select*/
.stylable-select {
    display: inline-block;
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
    padding-right: 4.4em;
    box-sizing: border-box;
    border-color: transparent;
    box-shadow: 0 0px 0 0px rgba(0, 0, 0, 0);
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='%230d6efd' stroke='%230d6efd' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
        linear-gradient(to bottom, transparent 0%, transparent 100%);
    background-repeat: no-repeat, repeat;
    background-position: right 0.7em top 50%, 0 0;
    background-size: 0.65em auto, 100%;
}

.stylable-select::-ms-expand {
    display: none;
}

.stylable-select:hover {
    border-color: transparent;
    background-color: transparent;
}

.stylable-select:focus {
    border-color: transparent;
    background-color: transparent;
    /* box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7); */
    /* box-shadow: 0 0 0 3px -moz-mac-focusring; */
    color: #222;
    outline: none;
}

.stylable-select option {
    font-weight: normal;
    background-color: transparent;
}


.classOfElementToColor:hover {
    background-color: red;
    color: black
}

.stylable-select option[selected] {
    font-weight: bold !important;
}