.datepicker {
    width: 31.625%;
}
.datepicker .button {
    border: none;
    background: none;
    font-size: 15px;
    font-weight: 400;
    padding: 5px 0;
    color: #7c7c7c;
    text-transform: uppercase;
    border-bottom: 2px solid #757575;
    font-style: italic;
    cursor: pointer;
    width: 100%;
    text-align: left;
}
.datepicker .label:after {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    height: 0px;
    margin: auto;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 6px solid black;
}
.datepicker .label {
    width: 10px;
}
.datepicker .label.active {
    transform: rotate(180deg);
}
.datepicker .wrapper {
	max-width: 350px;
    margin-top: 5px;
    padding: 10px;
    box-shadow: 0px 3px 5px rgba(0,0,0,0.25);
}
.datepicker .wrapper select {
    padding: 5px 10px;
    border: 1px solid #bdbdbd;
    font-size: 14px;
}
.datepicker .calendar {
    margin: 10px 0;
	font-size: 14px;
}
.datepicker .calendar .days-header {
    background: #9d0034;
    color: white;
	margin-bottom: 5px;
}
.datepicker .calendar .days-header div {
    padding: 5px 0px;
}
.datepicker .calendar .days-table div {
    background: #f2f2f3;
    outline: 1px solid white;
    padding: 5px;
    font-size: 12px;
    font-weight: 400;
}
.datepicker .calendar .days-table .today {
    outline: 1px solid #212121;
    position: relative;
    z-index: 1;
}
.datepicker .calendar .days-table .selected {
    background: #e1eddf;
    color: #5a8056;
}
.datepicker .calendar .days-table .edge {
    outline: 1px solid #7eb077;
    position: relative;
    background: #e1efe0;
}
.datepicker .wrapper .apply {
    background: #9c0f34;
    color: white;
}
.datepicker .wrapper button {
    border: none;
    margin-left: 10px;
    padding: 0 15px;
    height: 30px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
}