.planCategories {
	display: flex;
	background-color: #f1efee;
	margin-left: auto;
	margin-right: auto;
	max-width: 850px;
}
.planCategoryCheck {
    display: inline-block;
    width: 31px;
    height: 31px;
    position: relative;
    border: 1px solid #dfd8cb;
}
.planCategory {
	width: 25%;
	text-align: center;
	padding: 25px 0;
}
.planCategory span {
	display: block;
	margin: 5px 0 10px 0;
	font-style: italic;
	font-size: 18px;
	min-height: 50px;
}
.planCategory input {
	width: 31px;
    height: 31px;
    margin-right: 20px;
    border: 1px solid #dfd8cb;
	color: #881d30;
    font-style: italic;
    text-align: center;
    background: transparent;
	visibility: hidden;
	box-sizing: border-box;
    padding: 0;
	margin: 4px 0 0;
	line-height: normal;
}
.planCategory input:checked + label:after {
    opacity: 1;
}
.planCategory label {
	text-align: left;
    padding-top: 7px;
    margin-right: 0;
	cursor: pointer;
    position: absolute;
    background: transparent;
    width: 31px !important;
    height: 31px !important;
    top: 0;
    left: 0;
	font-weight: normal;
    font-size: 18px;
    font-style: italic;
	display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
}
.planCategory label:after {
	opacity: 0.2;
    content: '';
    position: absolute;
    width: 15px;
    height: 8px;
    background: transparent;
    top: 9px;
    left: 7px;
    border: 3px solid #881d30;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.planDates {
	display: flex;
    background-color: #f1efee;
    margin-left: auto;
    margin-right: auto;
    max-width: 850px;
}
.planDates div {
	width: 50%;
	text-align: center;
	padding: 25px;
}

.planDates input {
	border: 1px solid #dfd8cb;
    padding: 10px;
    color: #881d30;
    font-style: italic;
    text-align: center;
    background: transparent;
	margin-left: 10px;
}
.planDates label {
	font-style: italic;
	font-size: 18px;
	font-weight: normal;
}
.planEntries {
	margin: 40px auto 0 auto;
    max-width: 850px;
}
.planHeader {
	display: flex;
	cursor: pointer;
}
.planDayWrap {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #dfd8cb;
}
.planDay {
	color: #ad946d;
	text-transform: uppercase;
	font-family: 'Montserrat',Arial,sans-serif;
	font-size:  10px;
	color: #ad946d;
}
.plan {
	padding: 5px 0 5px 20px;
}
.planHeaderTime {
	width: 80px;
	text-align: right;
}
.planHeaderCategory {
	width: 50px;
	background-repeat: no-repeat;
	background-size: cover;
}
.planContent {
	margin-left: 82px;
	display: none;
}
.planHeaderTitle {
	text-transform: uppercase;
	font-family: 'Montserrat',Arial,sans-serif;
	font-size:  12px;
	color: #881d30;
	width: calc(100% - 130px);
}

@media screen and (max-width: 768px) {
	.planCategories {
		flex-wrap: wrap;
	}
	.planCategory {
		width: 50%;
	}
}
@media screen and (max-width: 480px) {
	.planDates {
		display: block;
	}
	.planDates div {
		width: 100%;
		padding-top: 0;
		text-align: left;
	}
	.planDates div label {
		display: inline-block;
		min-width: 80px;
	}
	.planContent {
		margin-left: 0;
	}
}