section.status{
	display: block;
	max-width: 936px !important;
	margin: 48px 0 80px;
	color: var(--txt-light);
	h1, .txt{
		width:100%;
		text-align:center;
		margin-top: 34px;
		display: inline-block;
	}
	.txt{
		margin-bottom: 45px;
	}
	h2{
		letter-spacing: -0.57px;
		font-size: var(--big-font-size);
		margin: 41px 0 27px;
		display: inline-block;
	}
	a{
		color: inherit;
		font-weight: var(--strong-weight);
	}
	.elementsWrap{
		display: inline-flex;
		flex-direction: column;
		width:100%;
		gap: 14px;
		>div{
			display: flex;
			align-items: center;
			width: 100%;
			height: 68px;
			padding: 0 24px 0 32px;
			border-radius: var(--block-radius);
			background-color: var(--color-light);			
			gap:12px;
			p{
				margin:0;
				flex-grow:1;
			}
			span{
				font-size: var(--small-font-size);
			}
		}
		.status{
			display: flex;
			width: 18px;
			height: 18px;
			border-radius: 18px;
			align-items:center;
			justify-content:center;
		}
		.status::after{
			content: "";
			display: block;
			width: 12px;
			height: 12px;
			border-radius: 12px;
		}
		>div.active{
			.status{
				background-color: rgba(67, 182, 73, 0.33);
			}
			.status::after{
				background-color: #00cc33;
			}			
		}
	}	
}
@media (max-width: 1024px) {
}
@media (max-width: 600px) {
	section.status{
		padding: 0 24px;
		margin: 38px 0 72px;
		.txt{
			margin-bottom: 0;
		}		
	}
}