.gldp-customer {
position: absolute;
font-family: 'helvetica';
}

/* Core style for every cell */
.gldp-customer .core {
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
position: relative;
float: left;
padding: 0;
margin: 0;
font-size: 14px;
text-align: center;
cursor: pointer;
color: #222;
background: #ffffff;

}

/* Cell border */
.gldp-customer .border {
border-style: solid;
border-width: 0;
border-color: #fff;
}

/* Month/Year text and select */
.gldp-customer .monyear,
.gldp-customer .monyear select {
font-size: 16px !important;
font-weight: bold;
background: #eee;
}

/* Month/Year text */
.gldp-customer .monyear span {
margin: 0 5px 0 5px;
}

/* Prev/Next arrows */
.gldp-customer .prev-arrow,
.gldp-customer .next-arrow {
color: #666;
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.75);
}

.gldp-customer .prev-arrow:active,
.gldp-customer .next-arrow:active {
color: #000;
}

.gldp-customer .prev-arrow-off,
.gldp-customer .next-arrow-off {
color: #000;
opacity: 0.15;
}

/* Days of the week */
.gldp-customer .dow {
color: #222;
font-weight: bold;
cursor: default !important;
background: #eee;
}

/* Weekdays */
.gldp-customer .mon,
.gldp-customer .tue,
.gldp-customer .wed,
.gldp-customer .thu,
.gldp-customer .fri {
font-weight: bold;
}

/* Weekend days */
.gldp-customer .sat,
.gldp-customer .sun {
color: #888;
font-weight: bold;
}

/* Selectable days that are outside of current month being shown */
.gldp-customer .outday {
color: #aaa !important;
}

/* Hover */
.gldp-customer .mon:hover,
.gldp-customer .tue:hover,
.gldp-customer .wed:hover,
.gldp-customer .thu:hover,
.gldp-customer .fri:hover,
.gldp-customer .sat:hover,
.gldp-customer .sun:hover {
background: #eee;
}

/* Non-Selectable days */
.gldp-customer .noday {
color: #bbb;
font-weight: normal;
cursor: default !important;
background: #ddd;
}

/* Currently selected day */
.gldp-customer .selected {
color: #222;
font-weight: bold;
border-color: #888;
background: #eee;
}

/* Today */
.gldp-customer .today {
color: #fff;
font-weight: normal;
cursor: default !important;
background: #5e5da575;
}

/* Today - selected */
.gldp-customer .selected.today {
color: #fff;
font-weight: normal;
cursor: default !important;
background: #5e5da5d3;
}

/* Today - disabled */
.gldp-customer .noday.today {
color: #fff;
font-weight: normal;
cursor: default !important;
background: #e4051b75;
}

/* Special */
.gldp-customer .special {
color: #fff;
font-weight: bold;
border-color: #444;
background: #666;
}