.awardsSteps{
	margin-top: 108px;
}
.awardsSteps__title.h2{
	margin-bottom: 60px;
}
.awardsSteps__row{
	display: grid;
	grid-template-columns: 80px 1fr 81px 289px 96px;
	column-gap: 28px;
	align-items: center;

}
.awardsSteps__row_title{

	margin-bottom: 59px;
}
.awardsSteps__colTitle{
	font-style: italic;
	opacity: .3;
	font-size: 15px;
	color: var(--alter);
	font-weight: 400;
}
.awardsSteps__colTitle:last-child{
	text-align: right;
}
.awardsSteps__description{
	grid-column: 2/4;
	display: none;
}
.awardsSteps__item_shown .awardsSteps__description{
	display: block;
	max-width: 522px;
	padding-top: 16px;
	padding-bottom: 16px;
}

.awardsSteps__description p:first-child{
	margin-top: 0;
}
.awardsSteps__description p:last-child{
	margin-bottom: 0;
}

.awardsSteps__num{
	opacity: .6;
	font-style: italic;
}
.awardsSteps__name{
	font-weight: 500;
	font-size: 30px;
	letter-spacing: -0.5px;
	max-width: 522px;
	line-height: 1;

}


.awardsSteps__btn{
	width: 58px;
	height: 58px;
	border-radius: 3px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	color: var(--alter);
	background: transparent;
	transition: .3s linear;
}
.awardsSteps__btn svg{
	fill: currentColor;
	transition: 0.3s;
}
.awardsSteps__item_shown svg {
    transform: rotateZ(90deg);
}
.awardsSteps__btn:hover{
	cursor: pointer;
	border-color: var(--accent);
	color: var(--accent);
}
.awardsSteps__time{
	font-weight: 500;
	font-size: 24px;
	letter-spacing: -0.7px;
}
.awardsSteps__status{
	text-align: right;
}

.awardsSteps__item_waiting .awardsSteps__name,
.awardsSteps__item_waiting .awardsSteps__time{
	opacity: .8;
}


.awardsSteps__item_finish .awardsSteps__name,
.awardsSteps__item_finish .awardsSteps__time{
	opacity: .3;
}




.stepBadge{
	height: 28px;
	font-size: 15px;
	padding: 2px 12px;
	border-radius: 4px;
	color: var(--alter);
	display: inline-block;
	margin-left: auto;
}

.stepBadge_active{
	background-color: var(--accent);
}
.stepBadge_waiting{
	background-color: #5E5E5E66;
}
.stepBadge_finish{
	background: transparent;
	padding-right: 0;
	text-align: right;
	opacity: .3;
}

.awardsSteps__item{
	border-bottom: 2px solid rgba(217, 217, 217, .2) ;
	padding-bottom: 24px;
	margin-bottom: 14px;
}



@media screen and (max-width: 1200px) {
	.awardsSteps__row {
		grid-template-columns: 18px 1fr 81px 289px 96px;
		column-gap: 15px;
	}
	.awardsSteps__row_title {
		display: none;
	}
	.awardsSteps__name {
		font-size: 26px;
	}
}


@media screen and (max-width: 992px) {
	.awardsSteps__row {
		grid-template-columns: repeat(2, 1fr);
	}
	.awardsSteps__num {
		grid-column: 1 / 3;
		grid-row: 1;
		margin-bottom: 14px;
	}
	.awardsSteps__name {
		grid-column: 1 / 3;
		grid-row: 2;
		margin-bottom: 10px;
		font-size: 24px;
	}
	.awardsSteps__time {
		grid-column: 1 / 3;
		grid-row: 3;
		font-weight: 400;
		font-size: 15px;
	}
	.awardsSteps__status {
		grid-column: 1 / 2;
		grid-row: 4;
		text-align: left;
		margin-top: 20px;
	}
	.awardsSteps__more {
		grid-column: 2 / 3;
		grid-row: 4;
		justify-self: flex-end;
	}
	.awardsSteps .container .awardsSteps__item::first-child {
		border-top: 2px solid rgba(217, 217, 217, .2);
	}
	.awardsSteps__item {
		border-top: 2px solid rgba(217, 217, 217, .2);
		padding-top: 14px;
		border-bottom: none;
		padding-bottom: 20px;
		margin-bottom: 0;
		width: calc(100% - 40px);
		margin: 0 auto;
	}
	.awardsSteps__description {
		grid-column: 1 / 3;
		grid-row: 5;
		max-width: none;
	}
	.awardsSteps__item_shown .awardsSteps__description {
		max-width: none;
	}
	.awardsSteps__title.h2 {
		margin-bottom: 40px;
	}
	.awardsSteps__item_shown .awardsSteps__more {
		/* display: none; */
	}
}


@media screen and (max-width: 576px) {
    .awardsSteps__item .container {
        padding: 0;
    }
	.awardsSteps__btn {
		width: 48px;
		height: 48px;
	}
}