@import url("template.css");
@import url("ModalWindow.css");



.content{
	position: relative;
	width: 100%;
	min-height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: url('../images/fon_4_autoraz.jpeg')center center ;
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
}

.parent_box{
	max-height: 650px;
	padding-top: 0;
	padding-bottom: 0;
	margin: 20px 0;
}	

.container{
	max-height: inherit;
}

.saitbar{
	max-height: inherit;
	justify-content: flex-start;
	width: 20%;
	overflow: auto;
	background: rgba(240, 240, 240, 0.99);
	color: black;
}

.rezult_of_changes{
	color: black;
	background: rgba(240, 240, 240, 0.99);
	padding: 30px 20px;
	width: 79%;
	text-align: justify;
}

.rezult_of_changes p{
	text-indent: 30px;
	margin: 1.5pt 0;
}

.nameSection{
	padding: 5px 10px;
	cursor: pointer;
	transition: padding-left .3s ease-in-out, color .3s;
}

.nameSection:hover, .selected_nameSection{
	padding-left: 20px;
	color: #F2A42E;
	background: rgba(50, 50, 50, 0.07);
}






/*					media 					*/
@media (max-width: 800px){
	.saitbar{
		width: 100%;
	}

	.rezult_of_changes{
		width: 100%;
	}

	.parent_box{
		max-height: none;
	}
}





