@font-face {
    font-family: 'Arial Regular';   
    src: url(../fonts/ARIAL.woff); 
}

@font-face {
    font-family: 'Myriad Pro Regular';   
    src: url(../fonts/MYRIADPRO-REGULAR.woff); 
}

@font-face {
    font-family: 'Myriad Pro Semibold';   
    src: url(../fonts/MYRIADPRO-SEMIBOLD.woff); 
}

@font-face {
    font-family: 'Myriad Pro Light';   
    src: url(../fonts/MyriadPro-Light.woff); 
}

body {
	background: #d3f0ee;
} 

.container-fluid {
	padding-left: 50px;
	padding-right: 50px;
}

header {
	padding-top: 40px;
	padding-bottom: 40px;
}

.logo {
	display: flex;
	gap: 48px;
	align-items: center;
	padding-bottom: 54px;
}

figure {
	margin-bottom: 0;
}

div.bar {
	width: 4px;
	background: #42c0bc;
	height: 68px;
}

.configurator {
	background: #666666;
	border-radius: 100px;
	color: #fff;
	font-family: 'Myriad Pro Regular';
	padding: 4px 36px;
	font-size: 20px;
	letter-spacing: .8px;
}

/*.configurator:hover {*/
/*	background: #42c0bc;*/
/*}*/

header p {
	font-family: 'Arial Regular';
	font-size: 16px;
	color: #000;
	line-height: 30px;
}

header p a {
	color: #000;
}

.header_right {
	display: flex;
	float: right;
	align-items: center;
	gap: 90px;
}

.header_right ul {
	padding: 0;
	margin: 0;
}

.header_right ul li {
    font-family: 'Myriad Pro Regular'; 
    font-size: 18px;
	color: #000; 
	list-style: none;
	line-height: 30px;
}

.header_right ul li:not(:last-child) {
	margin-bottom: 3px;
}

.header_right ul li span {
	min-width: 35px;
	display: inline-block;
	position: relative;
	margin-right: 16px;
}

.header_right ul li span::after {
	position: absolute;
	content: '';
	width: 1px;
	height: 19px;
	background: #000;
	top: 6px;
	right: 0;
}

.accordion-panel {
	padding-bottom: 50px;
}

.accordion-item { 
	border: 0; 
	border-bottom: 1px solid #fff;
}

.accordion-button,
.accordion-button:not(.collapsed) {
	background: #42c0bc;
	border-radius: 0 !important;
	font-size: 20px;
	font-family: 'Myriad Pro Semibold';
	color: #000;
	padding: 19px 28px 19px 34px;
}

.accordion-button span {
	color: #fff;
	font-size: 17px;
	font-style: italic;
	padding-left: 5px;
}

button:focus:not(:focus-visible) {
	outline: 0;
	box-shadow: none;
}

.quote-btn {
	background: #666666;
	border-radius: 0 !important;
	font-size: 20px;
	font-family: 'Myriad Pro Semibold';
	color: #fff;
	padding: 16px 28px 16px 34px;
	width: 100%;
	text-align: left;
}

.quote-btn:hover {
	background: #000000;
	color: #fff;
}

.quote-btn span { 
    font-family: 'Myriad Pro Regular';
	font-size: 16px; 
	font-style: italic;
}

.quote-btn img {
	margin-right: 15px;
}

.interactive-animation figure {
	margin-left: 40px;
}

.pr-0 {
	padding-right: 0;
}

.accordion-button::after {
	filter: brightness(100);
	background-size: 1.7rem;
	width: 2rem;
}

.accordion-body {
	padding: 50px 20px;
}
 
.accordion-body form {
	accent-color: #42c0bc;
	font-family: 'Arial Regular';
	font-size: 18px;
}

.accordion-body form label {
	display: flex;
	gap: 13px;
} 

.accordion-body form label:not(:last-child) { 
	margin-bottom: 7px;
}

.accordion-body form .custom-checkbox {
	position: relative;
	display: inline-block;
	width: 24px;
	height: 24px;
	border: 2px solid #42c0bc;
	border-radius: 3px;
	background-color: white;
	transition: all 0.3s ease;
}

.accordion-body form input[type="checkbox"] {
	opacity: 0;
	position: absolute;
}

.accordion-body form input[type="checkbox"]:checked + .custom-checkbox::before {
	content: " ";
	background: url('../images/checkbox.svg') no-repeat;
	/*filter: brightness(100);*/
}

.accordion-body form .custom-checkbox::before {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 70%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
     
.accordion-body form input[type="checkbox"]:checked + .custom-checkbox {
	background-color: #42c0bc; 
	border-color: #42c0bc; 
}

.accordion-body form input[type="checkbox"]:disabled + .custom-checkbox { 
	border-color: #d1d1d1; 
}

.accordion-body form .custom-radio {
	position: relative;
	display: inline-block;
	width: 24px;
	height: 24px;
	border: 2px solid #42c0bc;
	border-radius: 100px;
	background-color: white;
	transition: all 0.3s ease;
}

.accordion-body form input[type="radio"] {
	opacity: 0;
	position: absolute; 
}

.accordion-body form input[type="radio"]:checked + .custom-radio::before {
	content: " ";
	background: url('../images/radio.svg') no-repeat; 
}

.accordion-body form .custom-radio::before {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 70%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
     
.accordion-body form input[type="radio"]:checked + .custom-radio { 
	border-color: #42c0bc; 
}

.accordion-body form input[type="radio"]:disabled + .custom-radio { 
	border-color: #d1d1d1; 
}

.modal {	
	font-family: 'Arial Regular';
}

.modal-header { 
	background: #42c0bc; 
}

.modal .modal-footer .btn {
	background: #42c0bc;
	border: 0;
}

#accordionPanelsStayOpenExample .form-check{
	display: inline-flex;
	width: 100%;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 16px;
	flex-direction: row-reverse;
}
#accordionPanelsStayOpenExample .form-check input,
#accordionPanelsStayOpenExample .form-check .form-check-input{
	float: none !important;
	margin-right: 0 !important;
	min-width: 24px;
}
#accordionPanelsStayOpenExample .accordion-body, #accordionPanelsStayOpenExample .accordion-body .radio_value{
	column-count: 2;
}
#accordionPanelsStayOpenExample .accordion-body .muptiple-opt-sensor{
    column-count: 1 !important;
}
#accordionPanelsStayOpenExample .accordion-body:has(.radio_value){
	column-count: unset;
}





@media only screen and (max-width: 1440px) {
.accordion-button, 
.accordion-button:not(.collapsed) { 
	padding: 17px 28px 17px 34px;
}

.interactive-animation figure {
	margin-left: 0;
}

.accordion {
	margin-right: 40px;
}

.quote-btn { 
	padding: 14px 28px 14px 34px;  
}
}


@media only screen and (max-width: 1366px) { 
header { 
	padding-bottom: 26px;
}

header p { 
	font-size: 16px; 
}

.accordion-button, .accordion-button:not(.collapsed) { 
	font-size: 18px; 
	padding: 15px 24px 15px 30px; 
}

.accordion-button span { 
	font-size: 15px; 
}

.quote-btn { 
	font-size: 18px; 
	padding: 13px 24px 13px 30px; 
}

.quote-btn span { 
	font-size: 14px; 
}

.quote-btn img { 
	max-height: 32px;
}

.accordion-button::after { 
	background-size: 1.4rem;
	width: 1.4rem;
}

.accordion {
	margin-right: 10px;
}

.accordion-panel .col-md-5 { 
	width: 36%;
}

.pr-0 {
	padding-right: calc(var(--bs-gutter-x) * .5);
}

.accordion-panel .col-md-7 { 
	width: 64%;
}
}



@media only screen and (max-width: 1220px) { 
.d-none {
	display: block !important;
}

header .header_right { 
	display: none;
}	

header .col-md-5,
.accordion-panel .col-md-5 ,
.accordion-panel .col-md-7  { 
	width: 100%;
}

.logo { 
	justify-content: center;
}

header p {
	font-size: 16px;
	text-align: center;
}

.interactive-animation figure { 
	margin-top: 25px;
	margin-bottom: 20px;
}

.accordion-panel {
	padding-bottom: 1px;
}

.accordion {
	margin-right: 0;
}

.header_right { 
	float: none; 
	justify-content: center;
	padding-bottom: 50px;
}
}



@media only screen and (max-width: 767px) {
    .header_right .header_right_list{
		margin: 0 auto 20px;
		width: fit-content;
	}
	#accordionPanelsStayOpenExample .accordion-body, #accordionPanelsStayOpenExample .accordion-body .radio_value{
		column-count: 1;
	}
	.interactive-animation{
		margin: 15px 0;
		display: flex;
		justify-content: center;
	}
	.interactive-animation canvas{
	    margin: 0 auto;
	}
header {
	padding-bottom: 10px;
}

.container-fluid {
	padding-left: 25px;
	padding-right: 25px;
}

.logo {
	display: block;
	padding-bottom: 20px;
	text-align: center;
}

div.bar { 
	display: none;
} 

.configurator {
	margin-top: 20px;
	text-align: center;
	display: table;
	margin-left: auto;
	margin-right: auto;
}

header p {
	font-size: 15px; 
} 

.accordion-button, .accordion-button:not(.collapsed) {
	font-size: 16px;
	padding: 15px 14px 15px 20px;
}

.accordion-button span {
	font-size: 13px;
	width: 100%;
}

.quote-btn img { 
	display: none;
}

.quote-btn {
	font-size: 16px;
	padding: 13px 14px 13px 20px;
}

.header_right { 
	display: block; 
}

.header_right ul { 
	margin-bottom: 20px;
}

.header_right figure {
	text-align: center;
}
}


@media only screen and (max-width: 480px) {	
.container-fluid {
	padding-left: 15px;
	padding-right: 15px;
}
}