@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_1_raz.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;
}

.dir_in_class{
	padding: 5px 10px;
	cursor: pointer;
	transition: padding-left .3s ease-in-out, color .3s;
}

.selected_dir_in_class, .dir_in_class:hover{
	padding-left: 20px;
	color: #F2A42E;
	background: rgba(255, 255, 255, 0.1);
}


.rezult_of_changes{
	padding: 30px 10px;
	width: 79%;
}


.list_of_resurses{
	width: 100%;
	display: flex; 
	flex-wrap: wrap;
}

.item_in_list_of_resurses{
	width: 100px;
	padding: 5px 0;
	text-align: center;
	border-radius: 5px 15px 0 0;
	cursor: pointer;
}

.selected_item{
	color: #F2A42E;
	background: rgba(255, 255, 255, 0.1);
}

.frame{
	position: relative;
	display: none;
	min-width: 100%;
	min-height: 500px;
}

.xmp{
	padding: 10px;
	width: 100%;
}

.name_file{
	text-align: center;
	padding: 10px 0;
}

.selected_frame{
	display: block;
}





/*					media 					*/
@media (max-width: 800px){
	.saitbar{
		width: 100%;
	}

	.rezult_of_changes{
		width: 100%;
	}

	.parent_box{
		max-height: none;
	}
}


