.pickaday {
    font-size: 13px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.pickaday-container {
    position:absolute;
    max-width: 280px;
    z-index:10000;
}

.pickaday-title {
    position: relative;
    font-size: 1em;
    font-weight: bold;
    text-transform: lowercase;
    background-color: #e5e5e5;
    padding: 4px 10px;
    text-align: center;
}
.pickaday-title a {
    text-decoration: none;
    color: #878787;
    font-size: 0.9em;
    font-weight: bold;
    cursor: pointer;
}
.pickaday-title a:hover {
     background-color:rgba(0,0,0,0.25);
}

.pickaday-title .pickaday-prev {
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    padding:4px 10px;
}
.pickaday-title .pickaday-next {
    position:absolute;
    right:0;
    top:0;
    bottom:0;
    padding:4px 10px;
}

.pickaday-cell {
    display: inline-block;
    font-size: 0.9em;
    width: 40px;
    height: 40px;
    padding: 4px;
    line-height: 2.5;
    text-align: center;
    cursor: pointer;
}
.pickaday-cell:hover:not(.pickaday-today, .pickaday-selected, .pickaday-disabled) {
     background-color:#e5e5e5;
}

.pickaday-today {
    background-color:#800000;
    color:#fff;
}

.pickaday-selected {
    background-color:#008000;
    color:#fff;
}

.pickaday-disabled {
    color:#878787;
    background-color:#c5c5c5;
    text-decoration: line-through;
    cursor: not-allowed;
}

.pickaday-days {
    background-color:#f5f5f5;
}

.pickaday-weekdays {
    background-color:#e5e5e5;
    font-size:0.9em;
}

/* ----------------------------------------------- */

@media only screen
and (max-width: 640px) {
    .pickaday-container {
        max-width:100%;
        left:0;
    }

    .pickaday-cell {
        width:14.28%;
    }
}