#Calendar_Wishlist_Content{
	max-width: 90%;
	display: flex;
}
.calendar_wishlist {
	width: 100%;
	margin:1%;
	border-radius: 2px;
}
body {font-family: Verdana, sans-serif;}

.month {
	border: black 1px solid;
	height: 20%;
	width: 100%;
	background: #1abc9c;
	text-align: center;
	position: relative;
}
.calendar_dates{
	height: 80%;
	width: 100%;
	text-align: center;
}
.calendar_dates td{
	padding:0;
	aspect-ratio: 1 / 1;
	width: 14.28%;
}
.weekdays{
	height: 10%;
}
.month_name{
	position: absolute;
	left:50%;
	top:50%;
	font-size: 150%;
	transform:translate(-50%,-50%);
	white-space: nowrap;
}
.date{
	padding-top: 10%;
	padding-left: 10%;
	position: absolute;
	left:10%;
	top:10%;
	transform:translate(-50%,-50%);
	text-align: center;
	vertical-align: middle;
}
.date_number_surround{
	display: block;
	position: relative;
	aspect-ratio: 1 / 1;
	width:100%;
	margin: auto;
	border: transparent 1px solid;
}
.week_day_td{
	background-color: white;
}
.active:hover{
	filter:brightness(0.9);
	cursor: pointer;
}
.date_surround{
	display: block;
	position: relative;
	aspect-ratio: 1 / 1;
	width:80%;
	margin: auto;
}
.inactive{
	background-color: #737377;
}
.calendar_wishlisted_img{
	width:100%;
	display:block;
	position: absolute;
	top: 0;
	left: 0;
}
.calendar_wishlisted_img img{
	width:100%;
}
.calendar_due_date {
	float:left;
}

@keyframes today_highlight {
	100%,0% {
		filter:brightness(1);
	}
	50%{
		filter: brightness(0.9);
	}
}
.today{
	animation: today_highlight;
	animation-duration: 2s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
}
