.event-wrapper {
	padding: 0.75rem 1.5rem;
	background-color: white;
	color: #06346c;
	border-radius: 8px;
	margin-bottom: 1rem;
	font-weight: 600;
	position: relative;
}

.event-wrapper::after {
	content: "";
	position: absolute;
	border-top: 2px solid #06346c;
	border-right: 2px solid #06346c;
	transform: rotate(45deg);
	height: 13px;
	width: 13px;
	right: 1.5rem;
	top: 1.15rem;
}

.upevents-list {
	display: flex;
	flex-direction: column;
}

.calendar {
	width: 100%;
	max-width: 32rem;
}

#calendar {
	display: flex;
	justify-content: center;
}


.calendar td {

	padding: 10px;
}

.calendar,
.calendar th {
	text-align: center;
}

.calendar .day-inner {
	background-color: #5b7da6;
	width: 40px;
	height: 40px;
	position: relative;
}

.calendar .day-inner.has-event {
	background-color: white;
	cursor: pointer;
}

.calendar .day-inner.has-event.selected {
	background-color: #feea84;
	cursor: pointer;
}

.calendar .day-container {
	display: flex;
	justify-content: center;
}

.calendar .day-number {
	color: #052a57 !important;
	position: absolute;
	top: 2px;
	left: 5px;
	font-size: 11px;
}

.loading {
	opacity: 0.5;
}

.clear-btn {
	background-color: #cbd2e0;
	color: #06346c;
	border-radius: 8px;
	margin-bottom: 15px;
}

.chevron-right {
	content: "";
	position: absolute;
	border-top: 2px solid white;
	border-right: 2px solid white;
	transform: rotate(45deg);
	height: 13px;
	width: 13px;
	right: 0.5rem;
	top: 0.75rem;
	cursor: pointer;
}

.chevron-left {
	content: "";
	position: absolute;
	border-top: 2px solid white;
	border-right: 2px solid white;
	transform: rotate(-135deg);
	height: 13px;
	width: 13px;
	left: 0.5rem;
	top: 0.75rem;
	cursor: pointer;
}

.a-chev.disabled {
	border-color: gray !important;
}

.monthDisplay {
	text-align: center;
}

.monthbar {
	display: flex;
	justify-content: center;
	position: relative;
}

.upevents-title {
	text-align: center;
	font-style: italic;
	margin-bottom: 15px;
	;
}

@media screen and (max-width: 768px) {

	.calendar td {
		padding: 5px;
	}
}