/* Общие */
.records_cols_03 {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding-top: 25px;
    font-size: 16px;
}

@media (max-width: 980px) {
    .records_cols_03 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .records_cols_03 {
        grid-template-columns: repeat(1, 1fr);
    }
}

.records_cols_03 .col {
    position: relative;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    padding: 20px;
}

.records_cols_03 .col p {
	margin: 5px 0 0 0;
}

.records_cols_03 .col img {
	width: 50px;
    height: 50px;
	margin-bottom: 20px;
}

.records_numb {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 32px;
    height: 32px;
    font-size: 14px;
    font-weight: 600;
    background: #fef9f7;
	color: #ff6a33;
    border: solid 1px #fcdcd0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-sizing: border-box;
}

.records_table {
	background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(28, 37, 38, .05);
}

.records_table table {
    width: 100%;
}

.records_table th:first-child {
    border-radius: 30px 0 0 0;
}

.records_table th:last-child {
    border-radius: 0 30px 0 0;
}

.records_table th {
    background: #F7F7F9;
    padding: 20px 15px;
    font-size: 16px;
	font-weight: 600;
	text-align: left;
	vertical-align: middle;
}

.records_table td {
    padding: 20px 15px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 16px;
	font-weight: 500;
	text-align: left;
    vertical-align: middle;
}

.records_table tr:nth-child(even) td {
    background: #FBFCFE;
}

.records_table tr.total td {
    border-bottom: none;
}

.records_table th + th,
.records_table td + td {
    border-left: 1px solid #e5e7eb;
}

.records_table .last td {
    border-bottom: none;
}

.records_table_wrapper {
	display: flex;
    align-items: center;
    gap: 4px;
}

.records_table svg {
	width: 100%;
	max-width: 35px;
    height: 35px;
    stroke: #444;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* record_19 */
#record_19.df-process {
	position: relative;
	margin: 35px 0;
}

#record_19.df-process:before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 50px;
    height: 1px;
    background: #fcded3;
}

#record_19 .df-process__grid {
	position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    font-size: 16px;
}

@media (max-width: 900px) {
	#record_19 .df-process__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 25px;
	}
	
	#record_19.df-process:before {
		display: none;
	}
}

@media (max-width: 590px) {
    #record_19 .df-process__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 420px) {
    #record_19 .df-process__grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

#record_19 .df-step {
	position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
}

#record_19 .df-step__num {
	display: flex;
    flex-direction: column;
    justify-content: center;	
	width: 100px;
    height: 100px;
    border-radius: 999px;
    border: 1px solid #ffcab6;
    background: #fefcfb;
	color: #ff6a33;
    margin: 0 auto 10px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

#record_19.df-process p {
	margin: 0;
	font-size: 14px;
}

.vzf__note {
	background: #f7f7f9;
    border-radius: 15px;
    padding: 20px;
    font-size: 16px;
}

.vzf__note p {
	margin: 0;
}

#record_19.vzf-flow {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
	align-items: center;
    gap: 30px;
	font-size: 16px;
}

@media (max-width: 900px) {
	#record_19.vzf-flow {
		grid-template-columns: repeat(1, 1fr);
	}
	
	.vzf_arrow:after {
        content: "";
        position: absolute;
        right: 50%;
        bottom: -21px;
        width: 8px;
        height: 8px;
        border-top: 2px solid #ff9c82;
        border-right: 2px solid #ff9c82;
        transform: translateY(-50%) rotate(135deg);
    }	
}

#record_19.vzf-flow p {
	margin: 0;
}

.vzf-list {
	display: flex;
    flex-direction: column;
    gap: 20px;
}

.vzf-list__i {
	border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 24px;
}

.vzf-op {	
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.vzf-op__h {
	background: #ffede7;
    border-radius: 8px 8px 0 0;
    padding: 10px;
    text-align: center;
    color: #ff6a33;
    font-weight: 500;
}

.vzf-op__n {
	font-weight: 600;
}

.vzf-op__b {
	padding: 20px;
}

.vzf-op ul li,
#record_19.two-cols  ul li {
	padding-left: 0;
	font-size: 16px;
	text-decoration: none;
}

.vzf-op ul li::marker,
#record_19.two-cols ul li::marker {
    color: #ff6a33;
}

#record_19 .ul_blue li::marker {
	color: #4e7caf !important;
} 

.vzf-op ul li::before,
#record_19.two-cols ul li::before {
    display: none;
}

.vzf-op__b p {
	text-align: center;
	margin: 0;
}

.vzf-pu {
    display: flex;
    flex-direction: column;
    align-items: center;
	gap: 10px;
	background: #f7f7f9;
    border-radius: 15px;
    padding: 20px;
	text-align: center;
}

.vzf-cap {
	margin-top: 10px !important;
	font-size: 14px;
}

.vzf_arrow {
	position: relative;
}

@media (min-width: 901px) {
	.vzf_arrow:after {
	content: "";
	position: absolute;
	right: -18px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 2px solid #ff9c82;
	border-right: 2px solid #ff9c82;
	transform: translateY(-50%) rotate(45deg);
	}
}

.vzf_arrow:nth-child(3)::after {
	display: none;
}

.vzf-pu__n {
	font-weight: 600;
}

.vzf-pu__x {
	color: #ff6a33;
}

#record_19.two-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 30px;
    font-size: 16px;
	margin-top: 20px;
}

@media (max-width: 900px) {
    #record_19.two-cols {
        grid-template-columns: repeat(1, 1fr);
    }
}

#record_19.two-cols .col {
	border: 1px solid #e5e7eb;
    border-radius: 8px;
	padding: 0px;
}

#record_19.two-cols .col p {
	background: #ffede7;
    border-radius: 8px 8px 0 0;
    padding: 10px;
    text-align: center;
    color: #ff6a33;
	font-weight: 600;
	margin: 0;
}

#record_19.three-cols {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    font-size: 14px;
    margin-top: 20px;
}

@media (max-width: 900px) {
    #record_19.three-cols {
        grid-template-columns: repeat(1, 1fr);
    }
}

#record_19.three-cols h4 {
	margin: 0;
}

#record_19 .footnote {
	display: flex;
    flex-direction: column;
    gap: 8px;
	margin: 0;
}

@media (max-width: 420px) {
	#record_19.eyebrow {
		font-size: 12px;
	}
}

/* record_04 */
.cols_compare {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	border: 1px solid #e5e7eb;
    border-radius: 15px;
	padding: 20px;
}

@media (max-width: 1150px) {
    .cols_compare {
        grid-template-columns: repeat(1, 1fr);
		gap: 45px;
    }
	
    .cols_compare .col-n1,
	.cols_compare .col-n2 {
        grid-template-columns: 40% 60% !important;
    }
	
	.mapbox {
		height: 150px;
	}
}

@media (max-width: 950px) {	
    .cols_compare .col-n1,
	.cols_compare .col-n2 {
        grid-template-columns: 30% 69% !important;
    }	
	
	.legend {
		grid-template-columns: repeat(1, 1fr) !important;
	}	
	
	.mapbox {
		height: 100% !important;
	}
}

@media (max-width: 680px) {
	.cols_compare .col-n1,
	.cols_compare .col-n2 {
        grid-template-columns: repeat(1, 1fr) !important;
    }	
	
	.legend {
		grid-template-columns: repeat(2, 1fr) !important;
	}		
}

.cols_compare .col-n1,
.cols_compare .col-n2 {
	display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
}

.legend {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.legend-item {
	display: flex;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
	max-width: 200px;
}

@media (max-width: 435px) {
	.legend-item {
		font-size: 12px;
	}
}

.ico {
	width: 25px;
	height: 25px;
	display: block;
}

.mapbox {
	border: 1px solid #e4e4e4;
	border-radius: 7px;
	overflow: hidden;
	height: 120px;
	background: #f5f8f7;
}

.mapbox svg {
	width: 100%;
	height: 100%;
	display: block;
}

.cols_workflow {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cols_workflow .col {
    position: relative;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    padding: 20px;
}

@media (max-width: 1100px) {
    .cols_workflow {
        grid-template-columns: repeat(2, 1fr);
    }
}	

@media (max-width: 700px) {
    .cols_workflow {
        grid-template-columns: repeat(1, 1fr);
    }
}	

@media (min-width: 701px) {
    .cols_workflow .col:after {
        content: "";
        position: absolute;
        right: -19px;
        top: 50%;
        width: 8px;
        height: 8px;
        border-top: 2px solid #ff9c82;
        border-right: 2px solid #ff9c82;
        transform: translateY(-50%) rotate(45deg);
    }
}
	
@media (max-width: 700px) {
    .cols_workflow .col:after {
        content: "";
        position: absolute;
        right: 50%;
        bottom: -23px;
        width: 8px;
        height: 8px;
        border-top: 2px solid #ff9c82;
        border-right: 2px solid #ff9c82;
        transform: translateY(-50%) rotate(135deg);
    }		
}	
	
@media (min-width: 1101px) {	
	.cols_workflow .col:nth-child(3):after,
	.cols_workflow .col:nth-child(6):after {
    	display: none;
	}
}
	
@media (min-width: 701px) and (max-width: 1100px) {
	.cols_workflow .col:nth-child(even):after {
    	display: none;
	}
}
	
@media (max-width: 700px) {
	.cols_workflow .col:last-child:after {
    	display: none;
	}
}	

.cols_workflow span {
	position: absolute;
    top: 6px;
    right: 8px;
    width: 35px;
    height: 35px;
    font-size: 15px;
    font-weight: 600;
    background: #ff6a33;
	color: #fff;
    border: solid 2px #fcdcd0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-sizing: border-box;	
}

.cols_workflow svg {
	height: 50px;
	width:  auto;
}

.cols_workflow h5 {
	font-size: 18px;
	padding: 12px 0 5px 0;
}

.cols_workflow p {
	font-size: 16px;
	margin: 0;
}

#record_04.records_table {
	overflow-x: auto;
	margin-bottom: 15px;
}

#record_04.records_table th:nth-child(1) {
    min-width: 275px;
}

#record_04.records_table th {
	min-width: 220px;
	background: radial-gradient(circle, #fff, #f778490d);
	color: #ff6a33;
	border-bottom: 1px solid #e5e7eb;
}

/* record_02 */
#record_02.records_table {
	overflow-x: auto;
}

#record_02.records_table p {
	margin: 0;
}

#record_02.records_table th {
    min-width: 280px;
	color: #fff;
}

#record_02.records_table th:nth-child(1) {
    background: #444444;
}

#record_02.records_table th:nth-child(2) {
    background: #313949;
}

#record_02.records_table th:nth-child(3) {
    background: #222d40;
}

#record_02.records_table th:nth-child(4) {
    background: #ff6a33;
}

#record_02.records_table svg {
	stroke: #ffffff;
}

#record_02 .sub_th {
	font-size: 12px;
    padding-left: 7px;
}

#record_02.records_table td:nth-child(1) {
    font-weight: 600;
}

#record_02.records_table td:nth-child(2),
#record_02.records_table td:nth-child(3),
#record_02.records_table td:nth-child(4) {
	vertical-align: top;
}

#record_02 .td_01,
#record_02 .td_02,
#record_02 .td_03,
#record_02 .td_04 {
 	display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 5px;   
}

#record_02 .td_01 {
	color: #667085;
    background: #eef1f5; 
}

#record_02 .td_02 {
	color: #138a55;
    background: #eef9f3; 
}

#record_02 .td_03 {
	color: #ff6a33;
    background: #fff3ec; 
}

#record_02 .td_04 {
	color: #d58b00;
    background: #fff8e8; 
}

#record_02 .td_lap_01,
#record_02 .td_lap_02,
#record_02 .td_lap_03,
#record_02 .td_lap_04 {
	position: relative;
    padding-left: 16px;
}

#record_02 .td_lap_01::before,
#record_02 .td_lap_02::before,
#record_02 .td_lap_03::before,
#record_02 .td_lap_04::before {
	content: "";
	position: absolute;
	left: 0;
	top: 11px;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

#record_02 .td_lap_01::before {
	background-color: #667085;
}

#record_02 .td_lap_02::before {
	background-color: #138a55;
}

#record_02 .td_lap_03::before {
	background-color: #ff6a33;
}

#record_02 .td_lap_04::before {
	background-color: #d58b00;
}
 
/* record_11 */
#record_11.records_table {
	overflow-x: auto;
}

#record_11.records_table td:first-child {
	font-size: 18px;
    font-weight: 600;
	min-width: 160px;
}

#record_11.records_table th svg {
    stroke: #ff6a33;
}

#record_11.records_table th:nth-child(2) {
    min-width: 280px;
}

#record_11.records_table th:last-child {
	min-width: 250px;
}

/* record_12 */
#record_12.records_table th:first-child {
    background: #444;
	color: #fff;
	min-width: 160px;
}

#record_12.records_table th:last-child {
	background: #ff6a33;
	color: #fff;
}

#record_12.records_table svg {
    stroke: #ff6a33;
}

@media (max-width: 430px) {
    #record_12.records_table th,
	#record_12.records_table td {
        padding: 20px 10px;
    	font-size: 14px;
    }
	
	#record_12 .records_table_wrapper {
		gap: 2px;
	}
}

/* record_17 */
#record_17.records_table {
	overflow-x: auto;
}

#record_17.records_table svg {
    stroke: #ff6a33;
}

#record_17.records_table th {
	border-bottom: solid 1px #ff6a33;
}

@media (max-width: 430px) {
    #record_17.records_table th,
	#record_17.records_table td {
        padding: 20px 10px;
    	font-size: 14px;
    }
	
	#record_17 .records_table_wrapper {
		gap: 2px;
	}
}

#record_17.records_table th:first-child,
#record_17.records_table th:nth-child(2) {
    min-width: 200px;
}

#record_17.records_table th:last-child {
   min-width: 230px;
}

/* record_03 */
.record_03 .cols-head,
.record_03 .cols {
	display: grid;
	align-items: center;
    grid-template-columns: 30% 70%;
	gap: 25px;
	border: 1px solid #e5e7eb;
    padding: 20px;  
    font-size: 16px;
}

@media (max-width: 940px) {
    .record_03 .cols {
        grid-template-columns: repeat(1, 1fr);
    }
	
	.record_03 .col-n2 {
    	align-items: normal !important;
	}	
}

.record_03 .cols-head {
    border-radius: 30px 30px 0 0;
	background: #444;
	color: #fff;
	font-weight: 600;
}

.record_03 .p-foot::before {
    content: "";
    display: block;
    width: 3px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff, rgb(255 255 255 / 16%));
    flex: none;
}

.record_03 .cols {
	border-top: 0;
	font-weight: 500;
}

.record_03 .col-n1 {
	display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
}

.p-foot,
.record_03 .col-n2 {
	display: flex;
    gap: 15px;
    align-items: center;
}

.record_03 .col-n2::before {
	content: "";
    display: block;
    width: 3px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff6a33, rgba(255, 90, 0, .16));
    flex: none;
}

.record_03 .cols-head p,
.record_03 .cols p {
	margin: 0;
}

.record_03 .icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #fff7f2;
    border: 1px solid #ffe0d5;
}

.record_03 .icon svg {
    width: 25px;
    height: 25px;
    stroke: #ff6a33;
    stroke-width: 1.7;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.record_03 .arrow {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 90, 0, .38);
    color: #ff6a33;
}

.record_03 .arrow svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* records_07 */
.steps {
	display: grid;
    gap: 20px;
	margin-top: 20px;
}

.records_07 .step {
	display: grid;
	grid-template-columns: auto auto 1fr 1fr;
	align-items: center;
	gap: 30px;
	padding: 20px;
	border: 1px solid rgb(229 231 235);
	border-radius: 15px;
}

@media (max-width: 955px) {
    .records_07 .step {
        grid-template-columns: auto auto 1fr;
    }
	
	.records_07 .note {
		grid-column: 1 / -1;
	}
}

@media (max-width: 570px) {
    .records_07 .step {
		grid-template-columns: 2fr 1fr;
        gap: 20px;
    }
	
	.records_07 .text {
		grid-column: 1 / -1;
	}	
	
	.records_07 .step .pics {
		justify-self: end !important;
        margin-left: auto !important;
	}
}

.records_07 .num {
    font-size: 28px;
    font-weight: 600;
    color: #ff6a33;
    line-height: 1;
    letter-spacing: -1px;
}

.records_07 .icon {
	width: 46px;
    height: 46px;
    border-radius: 12px;
    background: radial-gradient(circle, #fff, #f778490d);
	border: 1px solid rgb(247 120 73 / 22%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.records_07 svg {
	width: 32px;
    height: 32px;
    stroke: #ff6a33;
    fill: none;
}

.records_07 .text h5,
.records_07_cta h5 {
    font-size: 18px;
}

.records_07 .text p {
    margin-top: 6px;
    font-size: 16px;
    line-height: 1.5;
    color: #767676;
}

.records_07 .note {
	background: #f9f9f9;
	padding: 15px;
    border: 1px solid rgb(229 231 235);
    border-radius: 15px;
	font-size: 16px;
}

.records_07 .chev {
	color: #ff6a33;
	padding-right: 5px;
    font-size: 22px;
	font-weight: 500;
}

.records_07_cta {
	display: flex;
    justify-content: space-between;
    align-items: center;
	gap: 20px;
	background: #f9f9f9;
    padding: 20px;
    border: 1px solid rgb(229 231 235);
    border-radius: 15px;
    font-size: 16px;
	margin-top: 20px;
}

@media (max-width: 685px) {
	.records_07_cta {
		flex-direction: column;
	}
}

.records_07_cta p {
	margin: 0;
}

/* records_03 */
.records_03 .table {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(28, 37, 38, .05);
    margin: 20px 0 15px 0;
	overflow: hidden;
}

.records_03 .table-wrap {
    overflow-x: auto;
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    background: #fff;
}

.records_03 .tr.head {
    display: flex;
    width: 100%;
}

.records_03 .tr.head p {
    display: none !important;
}

.records_03 .tr {
    display: flex;
    width: 100%;
    min-width: 980px;
}

.records_03 .th {
    background: #ff6a33;
    color: #fff;
    padding: 18px 16px;
    text-align: left;
    font-size: 16px;
	font-weight: 500;
    white-space: nowrap;
    flex: 1;
}

.records_03 .tr.head .th:first-child {
    border-radius: 30px 0 0 0;
	background: #444;
	flex: 1.9;
}

@media (max-width: 500px) {
	.records_03 .tr.head .th:first-child {
		flex: 1.2;
	}
}

.records_03 .tr.head .th-foot {
    border-radius: 0 30px 0 0;
}

.records_03 .tr.head .th:last-child {
    border-radius: 0 30px 0 0;
}

.records_03 .td {
    padding: 18px 16px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 16px;
    font-weight: 500;
    vertical-align: top;
    flex: 1;
}

.records_03 .tr .td.name {
	flex: 1.9;
}

@media (max-width: 500px) {
	.records_03 .tr .td.name {
		flex: 1.2;
	}
}

.records_03 .tr.last .td {
    border-bottom: none;
}

.records_03 tr:nth-child(even) .td,
.records_03 .tr:nth-child(even) .td {
    background: #FBFCFE;
}

.records_03 .tr.last .td:first-child {
    border-radius: 0 0 0 30px;
}

.records_03 .tr.last .td:last-child {
    border-radius: 0 0 30px 0;
}

.records_03 .badge {
    padding: 5px 12px;
    border: 1px solid rgba(255, 98, 0, .55);
    border-radius: 999px;
    color: #FF6A33;
    background: #fff;
    margin-left: 5px;
}	

.records_03 tbody tr.is-hit td,
.records_03 .tr.is-hit .td {
    background: radial-gradient(circle, #fff, #f778491c);
}

.records_03-cost {
    background: #fff;
    border: 2px solid rgb(229 231 235);
    border-radius: 15px;
    padding: 20px;
    font-weight: 600;
}

.records_03 .status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.records_03 .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.records_03 .status.ok .dot { background-color: #2ecc71; }
.records_03 .status.process .dot { background-color: #f39c12; }

.records_03 a.registry-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
}
.records_03 a.registry-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.price-note {
    margin-top: 12px;
    color: #667085;
    font-size: 13px;
}