@font-face {
	font-family: 'Orbitron';
	src: 	url("/resources/fonts/Orbitron/Orbitron-VariableFont_wght.ttf") format("truetype supports variations"),
			url("/resources/fonts/Orbitron/Orbitron-VariableFont_wght.ttf") format("truetype-variations");
	font-weight: 200 1000;
}

/* STYLES */
._b-page-sun-system{
	display: flex;
	width: calc(100% - var(--page-hor-padding) * 2);
	padding: 15px var(--page-hor-padding) 0 var(--page-hor-padding);
	flex-direction: column;
	align-items: center;
	gap: 60px;
	font-family: Exo2;
	font-weight: 300;
}

._b-page-sun-system > div{
	display: grid;
	max-width: 1200px;
	position: relative;
	grid-template-columns: auto 1fr;
	grid-template-rows: 1fr auto auto auto;
	grid-template-areas: 
		"img desc"
		"img table"
		"render render"
		"parts parts";
	align-items: start;
	gap: 20px 40px;
}

._b-page-sun-system > div > .desc{
	grid-area: desc;	
}

._b-page-sun-system > div > .desc > .icon{
	float: left;
	margin: 0 15px 10px 0;
}
._b-page-sun-system > div > .desc > .icon > img{
	display: flex;
	width: 100px;
}

._b-page-sun-system > div > .desc > .title{
	margin: 0;
	margin-bottom: 5px;
	padding: 0;
	line-height: normal;
	font-family: Orbitron;
	font-size: 30px;
}

._b-page-sun-system > div > .desc > .text{
	text-align: justify;
}

/* Таблица */
._b-page-sun-system > div .table{
	display: flex;
	float: right;
	margin: 0 0 10px 15px;
	font-size: 14px;
}
._b-page-sun-system > div .table > table{
	/* border-collapse: collapse; */
	border-top: 3px solid var(--green);
}
._b-page-sun-system > div .table > table > tbody > tr > td{
	margin: 0;
	padding: 0 4px;
}
._b-page-sun-system > div .table > table > tbody > tr > td:not(:last-child){
	border-right: 3px solid #fff;
}
._b-page-sun-system > div .table > table > tbody > tr:nth-child(2n) > td{
	background-color: var(--grey-10);
}
._b-page-sun-system > div .table > table > tbody > tr > td:nth-child(1){
	min-width: 30px;
	text-align: center;
	font-weight: 500;
}
._b-page-sun-system > div .table > table > tbody > tr > td:nth-child(2){
	text-align: right;
}
._b-page-sun-system > div .table > table > tbody > tr > td:nth-child(3){
	width: 100px;
	text-align: center;
}
._b-page-sun-system > div .table > table > tbody > tr > td:nth-child(4){
	width: 30px;
}

/* Основное изображение */
._b-page-sun-system > div > .img{
	display: flex;
	grid-area: img;
	justify-content: center;
}
._b-page-sun-system > div > .img > img{
	display: flex;
	width: 360px;
}

._b-page-sun-system > div > .render{
	display: flex;
	grid-area: render;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
}
._b-page-sun-system > div > .render > img{
	display: flex;
	width: 100%;
	position: relative;
}

._b-page-sun-system > div > .parts{
	display: flex;
	width: 100%;
	grid-area: parts;
	justify-content: center;
	gap: 3px;
}
._b-page-sun-system > div > .parts > img{
	display: flex;
	min-width: 0;
	max-width: 360px;
	width: 100%;
	height: auto;
	flex: 1 1 0;
}