/* ==========================================================================
   $BASE-DATE-PICKER
   ========================================================================== */
/**
 * The picker box.
 */
.picker__box {
    padding: 20px 1em !important;
    position: absolute;
    min-height: 343px;
    font-size: 18px;
}
/**
 * The header containing the month and year stuff.
 */
.picker__header {
    text-align: center;
    position: relative;
    margin-top: .75em;
}
/**
 * The month and year labels.
 */
.picker__month,
.picker__year {
    font-weight: 700;
    display: inline-block;
    margin-left: .25em;
}
.picker__year {
    font-size: 1em;
    font-style: normal;
}
/**
 * The month and year selectors.
 */
.picker__select--month,
.picker__select--year {
    border: 1px solid #b7b7b7;
    height: 2em;
    padding: .5em;
    margin-left: .25em;
    margin-right: .25em;
}
@media (min-width: 24.5em) {
    .picker__select--month,
    .picker__select--year {
        margin-top: -0.5em;
    }
}
.picker__select--month {
    width: 35%;
}
.picker__select--year {
    width: 22.5%;
}
.picker__select--month:focus,
.picker__select--year:focus {
    border-color: #888888;
}
/**
 * The month navigation buttons.
 */
.picker__nav--prevNew,
.picker__nav--nextNew {
    position: absolute;
    padding: .5em 1.25em;
    width: 1em;
    height: 1em;
    box-sizing: content-box;
    top: -0.25em;
    border: 1px solid transparent;
    color: #CCCCCC;
}
@media (min-width: 24.5em) {
    .picker__nav--prevNew,
    .picker__nav--nextNew {
        top: -0.33em;
    }
}
.picker__nav--prevNew {
    left: -1em;
    padding-right: 1.25em;
    float: left;
}
@media (min-width: 24.5em) {
    .picker__nav--prevNew {
        padding-right: 1.5em;
    }
}
.picker__nav--nextNew {
    right: -1em;
    padding-left: 1.25em;
    float: right;
}
@media (min-width: 24.5em) {
    .picker__nav--nextNew {
        padding-left: 1.5em;
    }
}
.picker__nav--prevNew:before,
.picker__nav--nextNew:before {
    border-top: .5em solid transparent;
    border-bottom: .5em solid transparent;
    border-right: none;
    width: 0;
    height: 0;
    display: block;
    margin: 0 auto;
    content: "" !important;
    margin-top: -10px;
}

.picker__nav--prevNew:before {
    font-family: "FontAwesome" !important;
    content: "\f053" !important;
    margin-left: -3px;
}

.picker__nav--nextNew:before {
    font-family: "FontAwesome" !important;
    content: "\f054" !important;
    border-right: 0;
    border-left: none;
}

.picker__nav--prevNew:hover,
.picker__nav--nextNew:hover {
    cursor: pointer;
    color: #000000;
    background: transparent;
    border: 1px solid transparent;
}
.picker__nav--disabled,
.picker__nav--disabled:hover,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover {
    cursor: default;
    background: none;
    border-right-color: #f5f5f5;
    border-left-color: #f5f5f5;
}
/**
 * The calendar table of dates
 */
.picker__table {
    text-align: center;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    font-size: inherit;
    width: 100%;
    margin-top: .75em;
    margin-bottom: .5em;
}
@media (min-height: 33.875em) {
    .picker__table {
        margin-bottom: .75em;
    }
}
.picker__table td {
    margin: 0;
    padding: 0;
}
/**
 * The weekday labels
 */
.picker__weekday {
    width: 14.285714286%;
    font-size: .82em;
    padding-bottom: .05em;
    color: #999999;
    font-weight: 500;
    text-align: center;
    /* Increase the spacing a tad */
}
@media (min-height: 33.875em) {
    .picker__weekday {
        padding-bottom: .5em;
    }
}
/**
 * The days on the calendar
 */
.picker__day {
    padding: .3125em .3125em;
    font-weight: 300;
    border: 1px solid transparent;
}
.picker__day--today {
    position: relative;
    border: 1px dashed #d4d4d4 !important;
}
.picker__day--today:before {
    position: absolute;
    font-weight: 700;
    top: 2px;
    right: 2px;
    width: 0;
    height: 0;
    border: 1px solid #1ED55F !important;
}
.picker__day--disabled:before {
    border-top-color: #aaaaaa;
}
.picker__day--outfocus {
    color: #EEEEEE;
    cursor: none;
    display: none;
    border: 1px solid transparent;
}
.picker__day--infocus:hover,
.picker__day--outfocus:hover {
    cursor: pointer;
    color: #000000;
    background: #BCFAC2;
}
.picker__day--highlighted {
    border: 1px solid #1ED55F;
}
.picker__day--highlighted:hover,
.picker--focused .picker__day--highlighted {
}
.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
    background: #1ED55F;
    color: #ffffff;
    font-weight: 700;
}
.picker__day--disabled,
.picker__day--disabled:hover,
.picker--focused .picker__day--disabled {
    background: #f5f5f5;
    border-color: #f5f5f5;
    color: #dddddd;
    cursor: default;
}
.picker__day--highlighted.picker__day--disabled,
.picker__day--highlighted.picker__day--disabled:hover {
    background: #f5f5f5;
}
/**
 * The footer containing the "today", "clear", and "close" buttons.
 */
.picker__footer {
    text-align: center;
}
.picker__button--today,
.picker__button--clear,
.picker__button--clear_bis,
.picker__button--close {
    border: 1px solid #1EC55F;
    background: #1EC55F;
    font-size: .8em;
    padding: .66em 0;
    font-weight: bold;
    width: 100%;
    display: inline-block;
    vertical-align: bottom;
    color: #FFFFFF;
    margin-bottom: 25px;

}
.picker__button--today:hover,
.picker__button--clear:hover,
.picker__button--clear_bis:hover,
.picker__button--close:hover {
    cursor: pointer;
    color: #FFFFFF;
    background: linear-gradient(#4CD17F, #1EC55F);
    background: #1EC55F;
}
.picker__button--today:focus,
.picker__button--clear:focus,
.picker__button--clear_bis:focus,
.picker__button--close:focus {
    background: linear-gradient(#4CD17F, #1EC55F);
    background: #1EC55F;
    outline: none;
}

.picker__button--close:before {
    content: "\D7";
    top: -0.1em;
    vertical-align: top;
    font-size: 1.1em;
    margin-right: .35em;
    color: #777777;
}
.picker__button--today[disabled],
.picker__button--today[disabled]:hover {
    background: #f5f5f5;
    border-color: #f5f5f5;
    color: #dddddd;
    cursor: default;
}
.picker__button--today[disabled]:before {
    border-top-color: #aaaaaa;
}

/* ==========================================================================
   $CLASSIC-DATE-PICKER
   ========================================================================== */
