body {
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;

	display: flex;
	flex-direction: column;

}

main {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.block_one {
	width: 40%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.block_two {
	width: 60%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

	/* Таблица */

.list-back {
	width: 60%;
	margin: 0;
	padding: 0;
}

.list_trigger {
	display: block;
	background: #C09F5E;
	margin: 0;
	color: white;
	padding: 0.5em 1em;
	border-bottom: 2px solid #AA7757;
	cursor: pointer;
}

.list_trigger:hover {
	background: #AA7757;
}

.item.open .list_trigger {
	background: #C25B36;
	border-bottom: 2px solid #C25B36;
}

.end.item.open .list_trigger {
	background: #C25B36;
	border-bottom: none;
}

.item {
	list-style: none;
}

.list_inner {
	padding: 0;
	list-style: none;
	display: none;
	border: 3px dotted rgba(169, 169, 169, 0.27);
	border-top: none;
	border-bottom: none;
	box-sizing: border-box;
}

.end .list_inner{
	border-bottom: 3px dotted rgba(169, 169, 169, 0.27);
}

.end .list_trigger {
	border: none;
}

.list_inner li {
	padding: 0.3em 1em;
	border-bottom: 1px dotted rgba(169, 169, 169, 0.17);
}

.list_inner li:last-child {
	border-bottom: none;
}

.item.open .list_inner {
	display: block;

}






	/* Блоки */

.slide {
	width: 80%;
	margin-bottom: 1em;
}

.trigger {
	position: relative;
	cursor: pointer;

	margin: 0;
	padding: 0.5em 1em;

	background: #C09F5E;
	color: white;
}

.inner {
	display: none;
	border: 3px dotted rgba(169, 169, 169, 0.27);
	border-top: none;
}

.slide.open .inner {
	display: block;
}

.trigger:hover {
	background: #AA7757;
}

.slide.open .trigger {
	background: #C25B36;
}

p {
	margin: 0;
	padding: 1em;
}




.back {
	align-self: flex-start;
	margin: 1em 5em;
	text-transform: uppercase;
	color: #C09F5E;
	font-weight: 600;
	text-decoration: none;
}

.back:hover {
	color: #AA7757;
}

