*,
*::before,
*::after {
  box-sizing: border-box;
}

.tax-rate td {
	text-align: right;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #333;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #333;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #333;
}
:-moz-placeholder { /* Firefox 18- */
  color: #333;
}

.calendar {
	display: none;
	width: 240px;
	border: solid 1px #eee;
	font-family: 'Arial';
	font-size: 14px;
	clear: both;
	border: solid 1px black;
	background-color: white;
}

.calendar:after {
	content: '';
	display: table;
	clear: both;
}
.month-header {
	background: lightgray;
	height: 30px;
}

.month-header select {
	/* override woocommerce select css, from wp-core-ui select */
	width: initial !important;
	font-size: 14px;
	line-height: 2;
	color: #2c3338;
	border-color: #8c8f94;
	box-shadow: none;
	border-radius: 3px;
	padding: 0 24px 0 8px;
	min-height: 30px;
	max-width: 25rem;
	-webkit-appearance: none;
	background: #fff url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E') no-repeat right 5px top 55%;
	background-size: 16px 16px;
	cursor: pointer;
	vertical-align: middle;
}

.month {
	position: relative;
	width: 100%;
	height: auto;
	top: 0px;
	left: 0px;
	display: none;
}

.month:first-child {
	position: relative;
	display: block;
}
.prev-month {
	font-size: 18px;
	margin-top: 3px;
	margin-left: 10px;
	float: left;
	cursor: pointer;
}
.next-month {
	font-size: 18px;
	margin-top: 3px;
	margin-right: 10px;
	float: right;
	cursor: pointer;
}
.month-title {
	text-align: center;
}
.day-title, .spacer, .day {
	float: left;
	width: 14.2857%;
	border: solid 1px #fff;
	text-align: center;
	line-height: 25px;
}
.day-title {
	text-align: center;
}
.spacer, .day {
	height: 30px;
}
.spacer {
	background: #fff;
}
.day {
	background: #fff;
	cursor: pointer;
}
.day.past {
	background: #fff;
	color: #ccc;
}
.day.today {
	background: #FFFeaE;
}
.day.available {
	background: #DAFFDC;
}
.day.closed {
	text-decoration: line-through;
}
.day.selected {
	background: #9d0000;
	color: #fff;
}
.day.in-range {
	background: #00f;
	color: #fff;
}
.month-footer {
	height: 30px;
	clear: both;
	background: lightgray;
}
.footer-reset {
	line-height: initial;
	margin-top: 3px;
	margin-left: 10px;
	float: left;
	cursor: pointer;
	background: #fff;
}
.footer-done {
	line-height: initial;
	margin-top: 3px;
	margin-right: 10px;
	float: right;
	cursor: pointer;
	background: #fff;
}