.editor-styles-wrapper{
	.productfinder{
		padding: var(--section-padding);
		background: var(--wp--preset--color--background-colors-bg-light-1);
	}
	.productfinder .wrapper{
		background: var(--wp--preset--color--main-colors-weiss);
		box-shadow: 0px 4px 0px #f2f2f2,0px 4.5px 0.5px rgba(0,0,0,0.25),0px 2px 6px rgba(0,0,0,0.2);
	}
	.productfinder .nav{
		margin: 0;
		background: #F4F5F5;
		border-bottom: 1px solid #EBEBEB;
	}
	.productfinder .nav-link{
		position: relative;
		padding: 20px 48px;
		background: none;
		border: 0;
		font-size: 14px;
		font-weight: 700;
		line-height: 1.7143;
		letter-spacing: 0.1em;
		color: var(--wp--preset--color--font-colors-font-dark-2);
		text-transform: uppercase;
	}
	.productfinder .nav-link:active,
	.productfinder .nav-link:hover{
		color: var(--wp--preset--color--font-colors-font-dark-1);
	}
	.productfinder .nav-link.active{
		background-color: #fff;
		color: var(--wp--preset--color--font-colors-font-dark-1);
	}
	.productfinder .nav-link.active:after{
		content: '';
		pointer-events: none;
		display: block;
		width: 100%;
		height: 3px;
		background: #fff;
		position: absolute;
		z-index: 1;
		left: 0;
		bottom: -2px;
	}
	.productfinder .tab-pane{
		padding: 40px 46px 60px;
		color: var(--wp--preset--color--font-colors-font-dark-2);
	}
	.productfinder .link{
		display: flex;
	}
	.productfinder .link a{
		flex: 1 0 0%;
		display: block;
		width: 100%;
		padding: 20px;
		background: #FFF;
		border-top: 1px solid #EBEBEB;
		box-shadow: 0px 4px 0px 0px #F2F2F2;
		font-size: 14px;
		font-weight: 700;
		line-height: 1.7143;
		letter-spacing: 0.1em;
		color: var(--wp--preset--color--main-colors-orange);
		text-transform: uppercase;
		text-align: center;
		text-decoration: none;
	}
	.productfinder .link a.show{
		background: var(--wp--preset--color--main-colors-orange);
		box-shadow: 0px 4px 0px 0px #DC820A;
		color: #fff;
	}
	.productfinder .terms{
		margin-top: 32px;
		display: flex;
		flex-wrap: wrap;
		gap: 20px 18px;
	}
	.productfinder .terms a{
		padding: 12px 24px;
		background: var(--wp--preset--color--main-colors-weiss);
		border: 1px solid #ebebeb;
		border-radius: 999px;
		font-size: 14px;
		font-weight: 700;
		line-height: 1.7143;
		letter-spacing: 0.1em;
		color: var(--wp--preset--color--font-colors-font-dark-1);
		text-transform: uppercase;
		text-decoration: none;
		transition: all .3s ease;
		transition-property: background-color, border-color, color;
	}
	.productfinder .terms a:active,
	.productfinder .terms a:hover,
	.productfinder .terms a.active{
		background-color: var(--wp--preset--color--main-colors-orange);
		border-color: var(--wp--preset--color--main-colors-orange);
		color: var(--wp--preset--color--main-colors-weiss);
	}

	@media (max-width: 767px){
		.productfinder .nav-link{
			padding-left: min( 8vw, 32px );
			padding-right: min( 8vw, 32px );
		}
		.productfinder .tab-pane{
			padding: 16px;
		}
		.productfinder .terms{
			margin-top: 16px;
			gap: 12px;
		}
		.productfinder .terms a{
			padding: 8px 20px;
			font-size: 12px;
			line-height: 2;
		}
	}

	@media (max-width: 575px){
		.productfinder .link{
			flex-direction: column;
		}
	}
}