.flex-row {
   	align-items: flex-start;
}
.board-days {
	margin-top: 50px;
}
.board-days .attention h3 {
	margin-bottom: 32px;
	text-align: center;
}
.color-red {
	color: #DD052B;
}
.comment {
	background: #FFFFFF;
	padding: 20px;
	margin-top: 30px;
}
.comment-top {
	margin-top: -14px;
	margin-bottom: 30px;
}
.comment-top:empty {
	display: none;
}
.step hr {
	margin: 30px 0;
}
.step-bottom {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #D9D9D9;
	display: flex;
	justify-content: space-between;
}
.step-bt {
	background: #DD052B;
	padding: 10px;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	width: auto;
}
.step-bt.end, .step-back .step-bt.next {
	display: none;
}
.step:first-child .step-bt.prev, .step-back .step-bt.prev  {
	opacity: 0;
	visibility: hidden;
}
.step-back .step-bt.end {
	display: block;
}
.step-bt.prev {
	background: #EEF1F1;
	color: #092332;
}
.step-bt.reset {
	background: #D5D5D5;
	color: #092332;
}
.item-radio-wrapper {
	display: inline-block;
	position: relative;
	padding-right: 30px;
}
.item-radio {
	margin-top: 12px;
}
.item-radio input {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	z-index: 2;
	opacity: 0;
}
.item-radio input + .costum {
	position: absolute;
	left: 0;
	top: 3px;
	display: block;
	border-radius: 50%;
	border: 1px solid #CAD3DF;
	width: 16px;
	height: 16px;
	transition: 0.3s;
}
.item-radio label {
	position: relative;
	display: block;
	letter-spacing: 0.03em;
	font-weight: 300;
	font-size: 16px;
	padding-left: 26px;
	line-height: 20px;
}
.item-radio input:checked + .costum {
	border: 6px solid #DC0032;
}
.step .item-radio label, .step .item-checkbox label {
	font-weight: 400;
}

.step .item-checkbox input + .costum {
        top: 0;
	width: 40px;
	height: 20px;
	background: #8ea0ab url(/local/templates/.default/i/close.png) no-repeat  26px 50%;
	border-radius: 10px;
        border-color: #8ea0ab;
}

.step .item-checkbox input + .costum::before {
	opacity: 1;
	width: 18px;
	height: 18px;
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 8px;
}

.step .item-checkbox input:checked + .costum {
	background: #003333 url(/local/templates/.default/i/check.png) no-repeat 6px 50%;
        border-color: #003333;
}

.step .item-checkbox input:checked + .costum::before {
	right: 0;
	left: auto;
}

.step .item-checkbox label {
	padding-left: 50px;
}

/*.step {
	display: none;
}*/

.progress-wrapper {
	position: sticky;
	top: 177px;
    	z-index: 6;
	height: 32px;
	width: 100%;
	margin-bottom: 30px;
}

@media screen and (max-width: 1200px) {
.progress-wrapper {
	top: 103px;
}
}

.progress-wrapper::after {
content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #D5D5D5;
    border-radius: 16px;
}

.progress-wrapper::before {
content: '';
    position: absolute;
    top: -32px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: #F2F5F5;
}

@media screen and (max-width: 600px) {
.progress-wrapper::before {
    left: -20px;
    right: -20px;
}
}

.viewport-wrapper {
    overflow: visible !important;
}

#progress {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	max-width: 100%;
	width: 100%;
	border-radius: 16px;
	background: #DC0032;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #FFFFFF;
	padding: 0 10px;
	transition: width 0.3s;
    	z-index: 1;
	min-width: 170px;
	white-space: nowrap;
}
@media screen and (max-width: 479px) {
	#progress {
		min-width: 135px;
	}
}
.step-sum-item {
	margin-top: 30px;
}
.step-link {
	color: #DC0032;
	cursor: pointer;
	text-decoration: underline;
}