a, a:visited {
	color: #670111;
}
.cal__header button {
	background: none;
	border: 0;
	outline: none;
	color: inherit;
	font: inherit;
	line-height: normal;
	overflow: visible;
	padding: 0;
	-webkit-appearance: button;
	-moz-user-select: none;
	-ms-user-select: none;
	cursor: pointer;
}
.cal button:active {
	border-radius: 3px;
	box-shadow: 0 0 0 2px rgba(10, 146, 151, 0.1)
}
.cal {
	width: 100%;
	max-width: 42rem;
	margin: 0 auto;
	background-color: #fff;
	border-radius: 3px;
	overflow: hidden;
	border-radius: 15px;
	position: relative;
	z-index: 2;
}
.cal__header {
	display: flex;
	padding: 1.2rem 1.4rem;
	align-items: center;
}
.cal__header svg {
	fill: #670111;
}
.cal__header__label {
	width: 100%;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	font-family: Georgia;
	color: #670111;
}
.cal__week {
	display: flex;
	flex-wrap: wrap;
	background-color: #670111;
}
.cal__week span {
	font-size: 1.2rem;
	max-width: 14.28%;
	padding: 1.2rem 1.4rem;
	flex: 0 0 14.28%;
	flex-direction: column;
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
	color: #fff;
}
.cal__body {
	display: flex;
	flex-wrap: wrap;
	background-color: rgba(232, 133, 39, 1);
}
.cal__date {
	background-color: #fff;
	display: flex;
	max-width: 14.28%;
	flex: 0 0 14.28%;
	flex-direction: column;
	align-items: center;
	padding: 1.2rem 0;
	border-radius: 4px;
}
.cal__date--active:hover {
	cursor: pointer;
}
.cal__date--today {
	background-color: #670111;
	color: #fff;
}
.cal__date--selected {
	background-color: #E7E9ED;
	color: #333;
}
.cal__date--disabled {
	opacity: 0.5;
}
.cal__date--disabled:hover {
	cursor: not-allowed;
}
.demo-picked {
	font-size: 1.2rem;
	text-align: center;
}
.demo-picked span {
	font-weight: bold;
}
