﻿section,
.schedule-student {
	margin-top: 84px;
}

.schedule-student:last-of-type {
	margin-bottom: 84px;
}

.survey-questions > div {
	margin-bottom: 14px;
}

#sw-content-layout2 .survey-questions h3 {
	margin-top: 14px;
}

.survey-questions label.survey-question {
	display: block;
}

.survey-questions label {
	margin-right: 14px;
}

.survey-questions.student {
	border: 1px solid rgba( 67, 67, 67, 0.10 );
	margin: 14px 21px 0 0;
	border-radius: 7px;
}

.survey-questions-header {
	background-color: rgba( 3, 42, 191, 0.05 );
	padding: 7px
}

.survey-question-container {
	padding-left: 7px;
}

 .schedule-header h2 {
	margin-bottom: 7px;
}

 .schedule-header p {
	margin: 0;
	padding: 0;
}

.schedule-date-list,
.schedule-time-slots {
	list-style: none;
}

.schedule-date-list {
	width: 100%;
	display: flex;
	justify-content: space-around;
	margin: 0;
}

.schedule-date-list > li {
	width: 100%;
	margin: 14px 21px 0 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: rgba( 3, 42, 191, 0.05 );
	border: 1px solid rgba( 67, 67, 67, 0.10 );
	border-radius: 7px;
}

 .schedule-date-list > li h3 {
	padding: 21px;
	margin: 0;
	text-align: center;
}

 .schedule-time-slots {
	width: 100%;
	margin: 0;
	padding: 7px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #FFFFFF;
	border-radius: 0 0 7px 7px;
}

 .schedule-time-slots li {
	width: 100%;
	text-align: center;
}

 .schedule-time-slots label {
	width: 50%;
	display: inline-block;
	margin: 7px 0;
	padding: 14px;
	border-radius: 14px;
	background-color: rgba( 127, 191, 14, 0.5 );
	border: 2px solid transparent;
}

 .schedule-time-slot + label:hover,
 .schedule-time-slot + label:focus {
	background-color: rgba( 255, 203, 80, 0.5 );
	cursor: pointer;
}

 .schedule-time-slot.taken + label:hover,
 .schedule-time-slot.taken + label:focus {
	cursor: not-allowed;
}

 .schedule-time-slot:checked + label {
	background-color: rgba( 255, 203, 80, 0.5 );
	border: 2px solid rgba( 255, 203, 80, 1 );
	font-weight: bold;
}

 .schedule-time-slot.taken + label {
	background-color: rgba( 67, 67, 67, 0.25 );
	border: 2px solid transparent;
}

 .schedule-time-skip {
	text-align: center;
}

#schedule-submit {
	background-color: rgba( 255, 203, 80, 0.5 );
	padding: 14px 0;
	text-align: center;
	font-size: 1.25em;
}

@media screen and ( max-width: 1670px ) {
	.survey-questions.student {
		margin-right: 0;
	}

	.schedule-date-list {
		flex-direction: column;
	}

	.schedule-time-slots {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.schedule-time-slots li {
		width: 50%;
	}

	 .schedule-time-slots label {
		width: 95%;
		min-height: 75px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}