.edc form h2 {
	margin-bottom: 20px;
}

.edc form .name {
	font-family: 'Roboto Slab Bold', Arial, sans-serif;
}

.edc .order_wrapper {
	margin: 0;
	padding-bottom: 80px;
}
.edc .order_wrapper .order_form{
	padding: 0;
	border: 0;
}

.edc .order_form .form_title {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 28px;
	line-height: 40px;
	color: #E8BD30;
}

.totals {
	display: table;
	width: 100%;
	max-width: 500px;
}

.totals > div {
	display: table-row;
}

.totals span {
	display: table-cell;
	padding: 12px;
	border-bottom: 1px solid #ccc;
}

.totals > div:last-child span {
	border-bottom: 0;
}

.totals span.value {
	font-weight: bold;
	text-align: right;
}

.edc .hint::before {
	font-style: unset;
}

.edc .single_tariff .extras_list {
	margin-top: 15px;
	padding: 0 12px;
}

.edc .single_tariff .extras_list .extras_row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4px;
	padding: 6px 0;
	border-bottom: 1px solid #696969;
}

.edc .single_tariff .extras_list .extras_row:last-child {
	margin-bottom: 0;
}

.edc .single_tariff .extras_list .name {
	line-height: 30px;
}

.edc .single_tariff .extras_list .fields {
	display: flex;
	align-items: center;
	line-height: 30px;
}

.edc .single_tariff .extras_list .fields label {
	margin-right: 16px;
}

.edc .single_tariff .extras_list .fields label:last-child {
	margin-right: 0;
}

.edc .single_tariff .extras_list .extra {
	margin-bottom: 8px;
}

.edc .single_tariff .extras_list .extra:last-child {
	margin-bottom: 0;
}

.edc .single_tariff .pdf_link {
	text-align: center;
	margin: 12px 0;
	color: #696969;
	font-size: 16px;
}

.edc .single_tariff .pdf_link a {
	color: inherit;
	text-decoration: underline;
}

/* new */
body .edc * {
	font-family: "Roboto", Arial, sans-serif;
}

body .edc form input[type="text"], body .edc form input[type="email"], body .edc form input[type="num"], body .edc form input[type="password"], body .edc form select, body .edc form textarea {
    display: inline-flex;
    align-items: center;
    border: none;
    padding: 0;
    width: 100%;
    border-radius: 0;
	border-bottom: 1px solid #696969;
	color: #000;
	font-size: 16px;
}

body .edc form input[type="text"].not_valid, body .edc form input[type="email"].not_valid, body .edc form input[type="num"].not_valid, body .edc form input[type="password"].not_valid, body .edc form select.not_valid, body .edc form textarea.not_valid {
    padding-left: 12px;
}

body .edc form input[type="text"]:focus, body .edc form input[type="email"]:focus, body .edc form input[type="num"]:focus, body .edc form input[type="password"]:focus, body .edc form select:focus, body .edc form textarea:focus {
	border-bottom: 1px solid #696969 !important;
}

body .edc .stroke_btn {
	border-radius: 16px 0 16px 0;
	background: transparent;
	border: 3px solid #E8BD30;
	color: #000;
	font-size: 20px;
	font-weight: 400;
	display: inline-flex;
	align-items: center;
	padding: 0 20px;
	height: 50px;
}
body .edc .btn {
	border-radius: 16px 0 16px 0;
	background: #E8BD30;
	color: #000 !important;
	text-transform: none;
	font-size: 20px;
	font-weight: 400;
}

body .edc .btn.bold {
	font-weight: bold;	
}

body .edc .btn:hover {
	background: #395480;
	color: #fff !important;
}

body .edc form input[type="text"]::placeholder, body .edc form input[type="email"]::placeholder, body .edc form input[type="num"]::placeholder, body .edc form input[type="password"]::placeholder, body .edc form textarea::placeholder {
	color: #000;
}

body .edc input[type="text"]:disabled {
	background: #f8f8f8;
}

body .edc input[type="text"]:disabled::placeholder {
	color: #696969;
}

body .edc .edc_select .selected.placeholder {
	color: #000;
}

body .edc .edc_select .selected {
	font-size: 16px;
	color: #000;
    border-radius: 0;
	border: 0;
	border-bottom: 1px solid #696969;
    padding: 0 40px 0 0;
}

body .edc .edc_select .selected::after {
    margin-top: -2px;
    border-top: 7px solid #000;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
}

body .edc .edc_list > .items > .item .single_tariff {
	padding: 20px 0;
	border-color: #E8BD30;
	border-radius: 0;
}

body .edc .single_tariff .tariff_characteristics {
	color: #000;
	font-size: 16px;
}
body .edc .single_tariff .tariff_characteristics .items li {
	padding: 8px 15px;
}
body .edc .single_tariff .tariff_characteristics .items li:nth-child(odd) {
	background: unset;
}

body .edc .single_tariff .tariff_characteristics .items li:nth-child(even) {
	background: #F2F2F2;
}


body .edc .single_tariff .tariff_characteristics .items .value.bold {
	font-weight: bold;
}

body .edc .single_tariff .total_price {
	color: #ecc031;
	font-size: 52px;
	font-weight: 700;
	padding: 0 12px;
}

@media (max-width: 1400px) {
	body .edc .single_tariff .total_price {
		font-size: 30px;
	}
}

@media (max-width: 900px) {
	body .edc .single_tariff .total_price {
		font-size: 20px;
	}
}

body .edc .single_tariff .total_price.small {
	font-size: 20px;
}
body .edc .single_tariff .highlights {
	font-size: 12px;
	margin-bottom: 20px;
	padding-left: 0;
	list-style-position: inside;
}

.edc .single_tariff .highlights li {
	padding: 6px 12px 6px 30px;
}

.edc .single_tariff .highlights li:nth-child(odd) {
	background: #F2F2F2;
}

body .edc .edc_select.open .options {
	border-color: #000;
	color: #000;
}

.deduct_update_field {
	justify-content: center;
	display: flex;
	align-items: center;
}

.deduct_update_field  > div{
	display: flex;
	align-items: center;
	margin-right: 20px;
}

.deduct_update_field .name {
	color: #000;
	margin-right: 40px;
	margin-bottom: 0;
	font-size: 16px;
}

.deduct_update_field .field {
	width: 400px;
}

.deduct_update_field .deduct_value {
	color: #000;
	margin-left: 20px;
	margin-bottom: 0;
	font-size: 16px;
}

.deduct_checkboxes_field {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: row wrap;
	gap: 18px;
}

.deduct_checkboxes_field .checkboxes {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: row wrap;
	gap: 12px;
}

body .noUi-target {
	background: #696969;
	border: 0;
	box-shadow: unset;
}

body .noUi-horizontal {
	height: 4px;
}

body .noUi-connect {
	background: #E8BD30;
}

body .noUi-handle:after, body .noUi-handle:before {
	display: none;
}

body .noUi-handle {
    border: 0;
    border-radius: 8px 0 8px 0;
    background: #E8BD30;
    box-shadow: unset;
	cursor: pointer;
} 

body .noUi-horizontal .noUi-handle {
    width: 24px;
    height: 24px;
    right: -12px;
    top: -10px;
}

body .edc .edc_radio.type2 + label .icon {
	background: #EAEAEA;
	border-color: #EAEAEA;
	border-radius: 0;
}

body .edc .edc_checkbox + label .icon {
	background: #EAEAEA;
	border-color: #EAEAEA;
	border-radius: 0;
}

body .edc .edc_checkbox + label .icon::after {
	border-color: #E8BD30;
}

body .edc .edc_radio.type2 + label .icon::after {
	border-color: #E8BD30;
}

body .edc .edc_radio.type2:checked + label .icon {
	background: #EAEAEA;
	border-color: #EAEAEA;
}

body .edc .edc_checkbox:checked + label .icon {
	background: #EAEAEA;
	border-color: #EAEAEA;
}

.edc form .field .description {
	font-size: 12px;
	color: #696969;
	margin-top: 10px;
	font-style: italic;
}

.single_order table {
	width: 100%;
	margin-bottom: 20px;
}

.single_order .h2 {
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 8px;
}
body .edc .submit_group .btn {
	margin-right: 15px;
}
body .edc .submit_group .btn:last-child {
	margin-right: 0;
}

@media (max-width: 800px) {
	body .edc .submit_group .btn {
		margin-bottom: 15px;
	}
}

@media (max-width: 600px) {
	body .edc .submit_group .btn {
		width: 100%;
	}
	
	.edc .hint {
		min-width: 20px;
	}
}
body .edc .print_button {
	text-align: center;
	margin-top: 30px;
	position: relative;
}
body .edc .print_button .save_button {
	margin-bottom: 12px;
}
body .edc .print_button .back_button{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
}

@media (max-width: 700px) {
	body .edc .print_button .back_button {
		position: static;
		transform: none;
		margin-bottom: 15px;
	}
}

body .edc .back_holder{
	margin-top: 60px;
}

@media (max-width: 800px) {
	body .edc .back_holder {
		margin-top: 30px;
	}
}

body .edc .back_button a{
	border-radius: 16px 0 16px 0;
	background: transparent;
	border: 3px solid #E8BD30;
	color: #000;
	font-size: 20px;
	font-weight: 400;
	display: inline-flex;
	align-items: center;
	padding: 0 20px;
	height: 50px;
}

body .edc .single_tariff .main_info .image {
	height: 150px;
}

.edc .single_tariff .main_info .image img {
	max-height: 100%;
	max-width: 100%;
	width: auto;
	height: auto;
	margin: 0 auto;
	display: block;
}

.edc .edc_list .list_description {
	text-align: center;
	margin-bottom: 15px;
	font-size: medium;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-flow: row wrap;
	justify-content: center;
}

.edc .edc_list .list_description .description_item{
	border-right: 1px solid #E8BD30;
	padding-right: 8px;
	display: flex;
	gap: 4px;
	align-items: center;
}

.edc .edc_list .list_description .description_item:last-child{
	border-right: 0;
	padding-right: 0;
}

.single_order table {
	width: 100%;
}

.single_order table td:first-child {
	width: 70%;
}

.single_order table td:last-child {
	width: 30%;
}

.edc .damage_form .edc_select .selected {
	background: unset;
}
.damage_form input[type="text"], .damage_form textarea {
	background: unset;
}

body .edc .single_tariff .edc_select .selected {
	font-size: 17px;
	font-weight: bold;
}

.edc .edc_list .owl-carousel {
	padding: 0 40px;
}

.edc .owl-carousel .owl-item {
	padding: 1px;
}
.edc .owl-carousel .owl-nav button.owl-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	color:#ECC031;
	font-size: 60px;
	font-weight:bold;
}
.edc .owl-carousel .owl-nav button.owl-prev::before {
	content: 'weitere Anbieter';
	font-size: 14px;
    position: absolute;
    width: 120px;
    line-height: 76px;
	left: -120px;
}
.edc .owl-carousel .owl-nav button.owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	color:#ECC031;
	font-size: 60px;
	font-weight:bold;
}
.edc .owl-carousel .owl-nav button.owl-next::after {
	content: 'weitere Anbieter';
	font-size: 14px;
    position: absolute;
    width: 120px;
    line-height: 76px;
}
.edc .owl-carousel .owl-nav button.owl-prev.disabled {
	display: none;
}
.edc .owl-carousel .owl-nav button.owl-next.disabled {
	display: none;
}

@media (max-width: 1800px) {
	.edc .owl-carousel .owl-nav button.owl-prev::before, .edc .owl-carousel .owl-nav button.owl-next::after {
		display: none;
	}
}

.edc form .field {
	position: relative;
}

.edc form .field .ph {
	position: absolute;
	top: 0;
	left: 0;
	height: 50px;
	display: inline-flex;
	align-items: center;
	color: #000;
	font-size: 16px;
	pointer-events: none;
}

.edc form .field.not_valid .ph {
	left: 12px;
}

body .edc input[type="text"]:disabled + .ph {
	color: #696969;
}

.edc form .field .required {
	color: #a00;
	margin-left: 4px;
}
.edc.orders_list table {
	width: 100%;
}

.edc.orders_list table th, .edc.orders_list table td {
	padding: 8px 4px;
	text-align: left;
}
.edc.orders_list table td:last-child {
	text-align: right;
}

.orders_list table .bin {
	vertical-align: middle;
	margin-left: 15px;
	cursor: pointer;
}

.print_page .edc .edc_grid.col_2 {
	display: block;
}

.print_page .edc .edc_grid.col_2 > div {
	float: left;
	margin-right: 4%;
}

.print_page .edc .edc_grid.col_2 > div:nth-child(2n) {
	margin-right: 0;
}

.print_page .edc fieldset {
	border: none !important;
}

.print_page .edc .ph {
	display: none !important;
}

.print_page .top_logo {
	margin-bottom: 40px;
}

.print_page .top_logo img {
	max-width: 250px;
	max-height: 50px;
	width: auto;
	height: auto;
}

.print_page .bottom_info {
	margin-top: 40px;
}

.print_page .bottom_info img {
	max-width: 250px;
	max-height: 50px;
	width: auto;
	height: auto;
}

.print_page .edc .edc_radio:not(.type2) {
	display: inline-block;
	margin-right: 6px;
}
.print_page .edc .edc_radio:not(.type2) + label .icon {
	display: none;	
}

body .edc .edc_radio:checked + label .icon::after {
	background: #E8BD30;
}

.mobile_iban {
	display: none;
}

@media (max-width: 800px) {

	.desctop_iban {
		display: none;
	}

	.mobile_iban {
		display: block;
	}
	
}

body .pmagic .pm-field-lable {
	float: none;
    display: block;
    margin: 0;
	font-weight: 600;
    font-size: 15px;
    margin-bottom: 5px;
    width: 100%;
    text-align: left;
}
body .pmagic .pm-field-input {
	float: none;
    display: block;
    margin: 0;
	width: 100%;
	
}

body .pmagic .pmagic-form .pmrow .pm-field-input input[type="text"], 
body .pmagic .pmagic-form .pmrow .pm-field-input input[type="password"], 
body .pmagic .pmagic-form .pmrow .pm-field-input input[type="email"], 
body .pmagic .pmagic-form .pmrow .pm-field-input input[type="url"], 
body .pmagic .pmagic-form .pmrow .pm-field-input input[type="file"], 
body .pmagic .pmagic-form .pmrow .pm-field-input input[type="number"], 
body .pmagic .pmagic-form .pmrow .pm-field-input textarea, 
body .pmagic .pmagic-form .pmrow .pm-field-input select {	
    display: inline-flex;
    align-items: center;
    border: none;
    padding: 0;
    width: 100%;
    border-radius: 0;
	border-bottom: 1px solid #696969;
	color: #000;
	font-size: 16px;
}

body .pmagic .pmagic-form .pmrow .pm-field-input input[type="text"]:hover,
body .pmagic .pmagic-form .pmrow .pm-field-input input[type="password"]:hover,
body .pmagic .pmagic-form .pmrow .pm-field-input input[type="email"]:hover,
body .pmagic .pmagic-form .pmrow .pm-field-input input[type="url"]:hover,
body .pmagic .pmagic-form .pmrow .pm-field-input input[type="file"]:hover,
body .pmagic .pmagic-form .pmrow .pm-field-input input[type="number"]:hover,
body .pmagic .pmagic-form .pmrow .pm-field-input textarea:hover,
body .pmagic .pmagic-form .pmrow .pm-field-input select:hover {
    border: none;
	border-bottom: 1px solid #696969;	
}

body .pmagic .pmagic-form .pmrow .pm-field-input input[type="text"]:focus,
body .pmagic .pmagic-form .pmrow .pm-field-input input[type="password"]:focus,
body .pmagic .pmagic-form .pmrow .pm-field-input input[type="email"]:focus,
body .pmagic .pmagic-form .pmrow .pm-field-input input[type="url"]:focus,
body .pmagic .pmagic-form .pmrow .pm-field-input input[type="file"]:focus,
body .pmagic .pmagic-form .pmrow .pm-field-input input[type="number"]:focus,
body .pmagic .pmagic-form .pmrow .pm-field-input textarea:focus,
body .pmagic .pmagic-form .pmrow .pm-field-input select:focus {
    border: none;
	border-bottom: 1px solid #696969 !important;
}

.save_form_button {
	margin: 15px 0;
}

body .edc .hint {
	width: 20px;
	height: 20px;
	font-style: normal;
	background: #E8BD30;
}

.edc_tooltip_cont {
	display: none;
	position: absolute;
	width: 450px;
	border-radius: 10px;
	border: 1px solid #696969;
	padding: 30px 20px;
	font-size: 17px;
	line-height: 25px;
	color: #000;
	z-index: 90;
	background: #fff;
}

.edc_tooltip_cont.active {
	display: block;
}

.edc_tooltip_cont h3 {
	font-weight: 600;
	font-size: 24px;
	line-height: 29px;
	margin-bottom: 15px;
	color: #27348B;
}

.edc_tooltip_cont p {
	margin-bottom: 0;
}

.edc_pagenav {
	text-align: right;
	margin: 12px 0;
}

.new_report_btn {
	margin-bottom: 20px;
}
body .edc.popup .close {
	top: 0;
	right: 8px;
}
body .edc.popup .title {
	text-transform: none;
	font-size: 24px;
	margin-bottom: 18px;
}
body .edc.popup form input[type="text"] {
	background-color: #f3f3f3;
}
body .edc.popup .submit_group {
	text-align: center;
	margin-bottom: 0;
}


.edc .collapse-container {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin: 20px 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.edc .collapse-header {
    border-bottom: 1px solid transparent;
}

.edc .collapse-toggle {
    width: 100%;
    padding: 20px 25px;
    background: #f8f8f8;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.edc .collapse-toggle:hover {
    background: #e9ecef;
}

.edc .collapse-title {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
}

.edc .collapse-icon {
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.edc .collapse-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fff;
}

.edc .collapse-container.active .collapse-content {
    max-height: 500px;
}

.edc .collapse-text {
    padding: 25px;
    line-height: 1.6;
    color: #555;
}

.edc .collapse-text p {
    margin: 0 0 20px 0;
    font-size: 15px;
}

.edc .collapse-text a {
    color: #007cba;
    text-decoration: none;
    transition: color 0.3s ease;
}

.edc .collapse-text a:hover {
    color: #005a87;
    text-decoration: underline;
}

.edc .collapse-documents {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.document-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    font-size: 14px;
}

.document-link:hover {
    background: #e3f2fd;
    border-color: #007cba;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 124, 186, 0.2);
    text-decoration: none;
}

/* Анимация появления */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.edc .collapse-container.active .edc .collapse-text {
    animation: fadeIn 0.3s ease;
}

/* Адаптивность */
@media (max-width: 768px) {
    .edc .collapse-toggle {
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .edc .collapse-text {
        padding: 20px;
    }
    
    .document-link {
        padding: 10px 12px;
        font-size: 13px;
    }
}