.date-picker {
	padding: 0;
	position: relative;
}

.date-picker input.date-picker-input,
.date-picker button.date-picker-text {
	border: 0;
	color: #555;
	width: 100%;
	font-size: 14px;
	text-align: left;
    padding: 6px 30px 6px 12px;
    line-height: 1.42857143;
    background-image: none;
    background-color: transparent;
    outline: 0;
}

.date-picker:before {
	content: "\e109";
	position: absolute;
    top: 8px;
    right: 8px;
    display: block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    pointer-events: none;
    -webkit-font-smoothing: antialiased;
}

.date-picker-clear-choice {
    position: absolute;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    line-height: normal;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    top: 6px;
    right: 30px;
    opacity: 0.5;
    cursor: pointer;
    outline: 0;
}

.date-picker-clear-choice:before {
	content: '\2716'
}

input.date-picker-input.error{
	border-color: #b94a48;
	border: 1px solid #b94a48;
	border-radius: 4px;
}

.date-picker.empty input.date-picker-input,
.date-picker.empty button.date-picker-text {
	color: #999;
}

.date-picker.empty .date-picker-clear-choice {
	display: none;
}

.date-picker.direction-buttons {
	margin-left: 40px;
	margin-right: 40px;
	width: auto;
}

.date-picker.direction-buttons .btn-prev,
.date-picker.direction-buttons .btn-next {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 34px;
	padding: 8px 10px;
	font-family: 'Glyphicons Halflings';
    font-style: normal;
    line-height: normal;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    outline: 0;
}

.date-picker.direction-buttons .btn-prev {
	left: -40px;
}
.date-picker.direction-buttons .btn-next {
	right: -40px;
}

.date-picker.form-control .btn-prev,
.date-picker.form-control .btn-next {
	top: -1px;
	bottom: -1px
}

.date-picker.form-control.direction-buttons .btn-prev {
	left: -41px;
}
.date-picker.form-control.direction-buttons .btn-next {
	right: -41px;
}

.date-picker.direction-buttons .btn-prev:before {
	content: '\e257';
}

.date-picker.direction-buttons .btn-next:before {
	content: '\e258';
}