.c-select {
    height: 38px;
    width: 158px;
    cursor: pointer;
    z-index: 99;
    border: 1px solid gray;
    font-style: normal;
}

.c-select-value {
    color: white;
    height: 40px;
    text-align: right;
    font-size: 17px;
    vertical-align: middle;
    line-height: 37px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 10px;
}

    .c-select-value span { 
        width: 30px;
        height: 40px;
        font-size: 21pt;
        margin-left: 12px;
        text-align: left;
        color: #5a5a5a;
        background: url(../../images/graphic/Buttons.png) no-repeat -90px -137px;
    }

    .c-select-value div {
        width: calc(100% - 40px);
        height: 100%;
    }

    .c-select-button-opened {
        background: url(../../images/graphic/Buttons.png) no-repeat -90px -93px !important;    
    }

.c-select-options {
    color: gray;
    width: 120px;
    visibility: hidden;
    background-color: #414141;
    box-shadow: -1px 8px 9px #333;
}

@media(max-height: 645px) {
    .c-select-options {
        position: absolute;
        bottom: 212px;
        box-shadow: -1px 0px 9px #333;
    }
}

.c-select-options-visible {
    visibility: visible;
    font-size: 17px;
}

.c-select-option {
    width: 105px;
    height: 40px;
    text-align: right;
    vertical-align: middle;
    line-height: 40px;
    padding-right: 15px;
    transition: opacity .2s ease-in;
}

    .c-select-option:not(.c-select-option-active):hover {
        opacity: .6;
    }

.c-select-option-active {
    color: white;
}