.ui-datepicker .ui-datepicker-title select {
    display: inline-block;
    overflow: hidden;

    padding: 0em 0em 0em .3em;

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

    border: 0px;
    border-radius: 2em;
    outline: 0;
    background: #fff;
    background: url(../svg/arrow_gray_down.svg) right .5em center no-repeat;
    background-size: 1em;

    font-size: 19.25px;
    line-height: normal;

    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

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

.ui-datepicker select option {
    color: #453f4d;
}

.ui-datepicker select.ui-datepicker-month {
    width: 115px;
    margin-left: 25px;
}

.ui-datepicker select.ui-datepicker-year {
    width: 80px;
    margin-right: 15px;
}

.single-datepicker {
    color: #838a9d;
}

.date {
    position: relative;
}

.calendar-datepicker .ui-datepicker {
    margin: auto;
}

.calendar-datepicker a.ui-state-default {
    margin-bottom: 1px;

    border-width: 1px;
    border-style: solid;
    border-color: #d14c47;
    border-radius: 5px;
}


/* Small Devices, Tablets */
@media only screen and (min-width : 720px) {
    .ui-datepicker .ui-datepicker-title select {
        font-size: 22px;
    }

    .ui-datepicker select.ui-datepicker-month {
        width: 130px;
    }

    .ui-datepicker select.ui-datepicker-year {
        width: 90px;
    }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1020px) {
    .ui-datepicker .ui-datepicker-title select {
        border-width: 1px;

        font-size: 18px;
    }

    .ui-datepicker select.ui-datepicker-month {
        width: 115px;
    }

    .ui-datepicker select.ui-datepicker-year {
        width: 80px;
    }

    .date {
        float: left !important;
    }
}
