.btn {
	display: flex !important;
	flex-flow: row nowrap;
	justify-content: center;
	line-height: 24px;
	width: 320px;
	padding: 12px 32px;

}
.btn span {
	background: url(../img/icon_add.svg) left top no-repeat;
	padding-left: 40px;
}

.schedule {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	align-self: stretch;
}
.session {
	display: flex;
	padding: 16px;
	align-items: center;
	gap: 16px;
	align-self: stretch;
	width: 100%;
	border-radius: 8px;
	border: 1px solid #C3C3C3;
	background: #fff;
}
.session .date {
	display: flex;
	width: 64px;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	background: #EFF1F4;
	font-weight: 700;
	font-family: 'Poppins', Helvetica, Arial, sans-serif;
	text-align: center;
	border-radius: 4px;
	color: #5D7192;
}
.session .date .month {
	display: flex;
	padding: 4px 12px;
	justify-content: center;
	align-items: center;
	align-self: stretch;
	background: #5D7192;
	border-radius: 4px 4px 0 0;
	color: #fff;
}
.session .date .day {
	display: flex;
	padding: 4px 12px;
	justify-content: center;
	align-items: center;
	align-self: stretch;	
}
.session .details {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 4px;
	flex: 1 0 0;
}
.session .details p {
	margin: 0;
}
.session .details .service {
	font-weight: 700;
}

.assessments,
.content, 
.details {
	display: flex;
	flex-flow: column wrap;
	align-items: flex-start;
	gap: 16px;
	align-self: stretch;
}
.assessments .content {
	padding: 16px;
	border-radius: 8px;
	border: 1px solid #BEC6D3;
}
.assessments h3,
.assessments img {
	width: 100%;
}
.heading {
	display: flex;
	flex-flow: row wrap;
	gap: 32px;
	align-items: center;
	justify-content: space-between;
	align-self: flex-start;
	width: 100%;
}
.heading h5 {
	margin: 0;
	padding: 0;
}

.main table th:first-child,
.main table td:first-child {
	width: 352px;
}

#clientRescheduleSession .container {
	display: flex;
	flex-flow: row wrap;
	gap: 32px;
	align-items: center;
	align-self: flex-start;
}
#clientRescheduleModal .schedule {
	width: 224px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}
#clientRescheduleModal h6 {
	width: 224px;
	padding: 8px 32px;
	border-radius: 8px;
	background: #5D7192;
	color: #ffffff;
	margin: 0;
	font-size: 16px;
	line-height: 24px;
}
#clientRescheduleModal label {
	display: flex;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	padding: 4px;
	width: 100%;
	gap: 8px;	
}
#clientRescheduleModal label:hover {
	background: #E7F8F7;
}



@media only screen and (min-width: 768px) {
	.client-list > .client {
		flex-flow: row nowrap;
	}
	.client-list > .client > div:last-child {
		width: auto;
	}

}

@media only screen and (min-width: 1366px) {
	.assessments {
		flex-direction: row;
		gap: 16px;
		align-items: stretch;
	}
	.assessments .content {
		width: 464px;
	}
}
@media only screen and (min-width: 1600px) {
	.assessments .content {
		width: 512px;
	}

} 