/* Common styles */

/* IE removing dropdown arrow */
.input-select::-ms-expand {
    display: none;
}

.input-select {
    display: inline-block;
    overflow: hidden;

    margin-top: 1px;
    padding: .1em 1.5em .2em .5em;

    cursor: pointer;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;

    color: #333;
    border-width: 1px;
    border-style: solid;
    border-color: #d1d8de;
    border-radius: 2em;
    outline: 0;
    background: #fff;
    background: url('/assets/website/svg/arrow_gray_down.svg') right .5em center no-repeat;
    background-size: 1em;

    font-size: 14px;

    appearance:none; /* remove arrow */
    -moz-appearance:none; /* remove arrow */
    -webkit-appearance:none; /* remove arrow */
}

.input-select:disabled {
    pointer-events: none;

    color: rgba(50, 50, 50, .65);
    background: rgba(50, 50, 50, .07);
}

.input-select-light {
    color: #838a9d;
    border-color: transparent;
    background-color: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .1);
}

/* Small Devices, Tablets */
@media (min-width: 720px) {
    .input-select {
        padding: .3em 2em .3em .7em;

        border-width: 2px;

        font-size: 20px;
    }
}



/* Large Devices, Wide Screens */
@media (min-width: 1020px) {
    .input-select {
        border-width: 1px;

        font-size: 14px;
    }
}
