.date-picker { /* options.datePickerClass; the picker itself */
    position: absolute;
}
.previous-month, .next-month { /* option.prevMonthClass ,... */
    color: #ddd; /* days outside of current month */
}
.disabled { /* options.disabledClass */
    color: #666;
    /*text-decoration: line-through;*/
}

/* --- the UI for the picker (next, prev, month, year and time) --- */
.dp-title, .dp-footer { /* defined in HTML of option.header and option.footer */
    text-align: center;
    min-width: 140px; /* good for time picker or year/month only */
}
.dp-label {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.dp-title select, .dp-footer select {
    position: absolute;
    left: 0; /* cover text but... */
    top: 0;
    opacity: 0; /* ...make other text visible */
    display: none;
}
.dp-prev, .dp-next { /* options.nextButtonClass, ... */
    overflow: hidden;
    background-color: transparent;
    padding: 0;

    float: left; /* will be overwritten for .dp-next */

    width: 0px; /* draw arrow with borders */
    height: 0px;
    border: 6px solid #000;
    border-color: transparent #000 transparent transparent;
}
.dp-next {
    border-color: transparent transparent transparent #000;
    float: right;
}
.dp-prev[disabled], .dp-next[disabled] {
    border-color: transparent; /* or display:none */
}
/* --------- date picker --------- */
.date-picker {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 13px;
    color: #444;
    text-align: center;
    cursor: default;

    border: 1px solid #ccc;
    margin: 6px 0;
    background: #fff;
    border-radius: 3px;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.1);

    z-index: 10000;
}
.date-picker.has-week-no {
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.1),
    inset 30px 61px 0px -1px rgba(255, 255, 255, 1),
    inset 30px 61px 0px 0px rgba(204, 204, 204, 1);
}
.date-picker:before {
    display: block;
    position: absolute;
    top: -6px;
    left: 8px;
    border: 1px solid #ccc;
    height: 10px;
    width: 10px;
    transform: rotate(45deg);
    border-right: 0;
    border-bottom: 0;
    background: white;
    content: "";
}
.date-picker:after {
    top: -8px;
    border-color: transparent transparent #eee;
}
.date-picker .cal-month {
    margin: 15px;
}

/* ------ months ------ */
.date-picker .cal-month td {
    position: relative;
    box-sizing: border-box;
    width: 37px;
    height: 37px;
    border-radius: 0;
}
.date-picker .cal-month th {
    padding-bottom: 6px;
    text-transform: uppercase;
    font-weight: 300;
    color: #999999;
}

.week-end {
    /* color: #77A; */
}
.disabled {
    color: #aaa;
}
.week-end.next-month, .week-end.prev-month {
    color: #ddd;
}
.cal-month tbody td:not(.disabled):not(.week-no):hover {
    background-color: #eee;
    color: #000;
    cursor: pointer;
}
.selected-day {
    background-color: rgba(8, 178, 55, 0.05);
    border: solid 1px rgba(8, 178, 55, 0.29);
    color: #06b237;
}
.today {
    /* border: solid 1px rgba(8, 178, 55, 0.29); */
    border-radius: 50%;
}
.event:after {
    content: "";
    position: absolute;
    left: 1px;
    top: 1px;
    width: 0;
    height: 0;
    border: 3px solid #ccc;
    border-color: #ccc transparent transparent #ccc;
}
.week-no {
    color: #999;
    padding-right: 6px;
}

/* ------ the UI for the picker (next, prev, month, year and time) ------ */
.dp-title, .dp-footer {
    text-align: center;
    min-width: 270px;
    font-size: 14px;
    padding: 23px 0 13px;
    /* background: #f0f0f0; */
    border-radius: 0 0 3px 3px;
}
.dp-title {
    border-radius: 3px 3px 0 0;
}
.dp-label {
    margin: 0 2px -4px;
}
.dp-label-month {
    font-weight: bold;
}
.dp-label:hover {
    color: #000;
}
/* bigger buttons */
.dp-prev, .dp-next {
    display: block;
    position: relative;
    outline: none;
    width: 30px;
    height: 30px;
    text-indent: 30px;
    white-space: nowrap;
    border: none;
    margin: -10px 25px;
    opacity: .5;
}
.dp-prev:after, .dp-next:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0px;
    height: 0px;
    margin: -6px -12px;
    border: 1px solid #999999;
    height: 16px;
    width: 16px;
    transform: rotate(45deg);
    border-bottom: 0;
    border-left: 0;
}
.dp-prev:after {
    border: 1px solid #999999;
    border-top: 0;
    border-right: 0;
}

.dp-next:after {
    /* border-color: transparent transparent transparent #999999; */
    /* margin: -6px 0px; */
}
.dp-prev[disabled]:after, .dp-next[disabled]:after {
    visibility: hidden;
}
.dp-prev:hover, .dp-next:hover {
    opacity: 1;
}
