/* Atolos */

/* Include Fonts */


@font-face {
  font-family: 'Atolos Sans';
  src: url('../fonts/atolos/Atolos-Variable.woff2') format('woff2'),
       url('../fonts/atolos/Atolos-Variable.woff') format('woff'),
       url('../fonts/atolos/Atolos-Variable.ttf') format('truetype');
       font-weight: 300 900;
       font-display: swap;
       font-style: normal;
}



/* Style Definitions */

:root {	
	--font-family: 'Atolos Sans', sans-serif;
	--heading-font-family: 'Atolos Sans', sans-serif;
	--base-font-size: 19px;
	--base-font-weight: 400;
	--base-line-height: 1.6;
	
	--h1-font-size: 2.7rem; /* 2.5 ohne Screenshots */
	--h1-line-height: 1.25;
	--h1-font-weight: 800;
	--h2-font-size: 2rem;
	--h2-line-height: 1.35;
	--h2-font-weight: 700; /* geändert */
	--h3-font-size: 1.6rem;
	--h3-line-height: 1.375;
	--h3-font-weight: 700; /* geändert */
	--h4-font-size: 1.3rem;
	--h4-line-height: 1.4;
	--h4-font-weight: 700; /* geändert */
	--h5-font-size: 1.2rem;
	--h5-line-height: 1.425;
	--h5-font-weight: 600; /* geändert */
	--h6-font-size: 1.1rem;
	--h6-line-height: 1.475;
	--h6-font-weight: 600; /* geändert */
	
	/* Lines and Boders */
	--border-width: 1.5px; /* for <hr> and UK Buttons, Underline, Nav and Burger Icon Lines */
	--underline-stroke: var(--border-width);
	
	/* Cards */
	--cards-gap: 2rem;
	--cards-radius: 0; /* geändert */
	
	/*Colors */
	--color-dark: #003456; /* #0F2532; */
	--color-blue: #00B9E3; /* #3987E6; */
	--color-sky: #E6F8FC; 
	--color-orange: #E27000; 
	--color-amber: #FEAE00; 
	--color-green: #6BC364;
	--color-gold: #A2906D;
	
	--color-page-text: var(--color-dark);
	--color-page-bg: #F3F2F1;
	--color-page-border: #000000;
	--color-navbar-text: var(--color-dark); /* var(--color-link); */
	--color-navbar-bg: rgba(255,255,255,1);
	--color-nav-mobile-bg: white;
	--color-navbar-border: #000000;
	--color-code-bg: #F3F2F1;
	--color-card-text: #000000;
	--color-card-bg: #FCFBFA;
	--color-card-border: #F3F2F1;
	--color-navbar-text-hero: var(--color-navbar-text); /* inverted nav color for BG image */
	--color-link: var(--color-blue); /* Gold: #A2906D; /* Blau: #395DD7;  */ 
	--color-error: #EB003C;
	--color-success: #5CCE33;
	--color-label: var(--color-link);
	
	/* Gaps and Margins */
	--am-flex-min-block-width: 260px; /* Nicht ändern! Bei mehr Breite keine 4 x 1/4 Blocks möglich */
	--am-block-max-width: 1000px;
	--am-container-padding: 1.75rem;
	--am-block-margin-top: 1.5em;
	
	/* Navigation */
	--logo-width: 160px;
	--logo-font-size: 1.5em;
	--logo-padding-top: 10px;
	--navbar-toggle-weight: var(--border-width);
	
	/* Footer */
	--color-footer-background: var(--color-page-bg);
	--color-footer-border: #DDD;
	--color-footer-text: var(--color-page-text);
	
	/* Forms */
  --am-input-margin: 0.5rem 0;
  --am-input-padding: 0.6rem 1rem;
  --am-input-color: inherit;
  --am-input-placeholder-color: #A7A7A8;
  --am-input-background: inherit;
  --am-input-border-radius: 0;
  --am-input-border: var(--border-width) solid black;
  --am-input-hover-color: var(--am-input-color);
  --am-input-hover-background: var(--am-input-background);
  --am-input-hover-border: var(--am-input-border);
  --am-input-focus-color: var(--am-input-color);
  --am-input-focus-background: var(--am-input-background);
  --am-input-focus-border: var(--border-width) solid #222222;

	/* Buttons */
  --am-button-margin: 0.5rem;
  --am-button-padding-vertical: 0.5rem;
  --am-button-padding-horizontal: 1.3rem; /* 1rem; */
  --am-button-font-size: inherit;
  --am-button-lineheight: 1.6;
  --am-button-border-radius: 0; /* 3px 40px; /* 0.4rem; */
  --am-button-color: var(--color-link); /* Gold #A2906D; */
  --am-button-background: inherit;
  --am-button-border-width: 0;
  --am-button-border-color: var(--color-link);
  --am-button-hover-color: var(--color-link);
  --am-button-hover-background: rgba(255,255,255,0.2);
  --am-button-hover-border-color: var(--color-link);

	/* Gallery */
  --am-gallery-gap: 2px;
  --am-gallery-item-width: 200px;
  --am-gallery-z-index: 9999;
  --am-gallery-max-height: 100%;
  --am-gallery-max-width: 100%;
  --am-gallery-background: rgba(0, 0, 0, 0.2);
  --am-gallery-controls-color: #FFFFFF;
  --am-gallery-controls-background: rgba(0, 0, 0, 0.1);
  --am-slider-controls-color: #FFFFFF;
  --am-slider-controls-background: rgba(0, 0, 0, 0.1);
	
}



/* Logo and Navigation */


.uk-navbar-brand svg {
	color: var(--navbar-text);
	transition: all 0.3s;
}

.uk-navbar-brand:hover svg {
	color: var(--color-link);
	transition: all 0.3s;
}


/* Hide Burger Icon on Desktop */
@media only screen and (min-width: 1020px) {
	.navbar-toggle {
		display: none;
	}
}


/* Disable Mobile Subnav  */
.uk-nav.uk-nav-side .uk-nav {
	display: none;
}


/* Navigation with buttons */


@media only screen and (max-width: 1020px) {
	.navbar { height: 68px; }
}

@media only screen and (min-width: 1020px) {
	.navbar { height: 75px; }
}

.uk-navbar-nav>li a {
	padding: 4px 15px !important;
	margin-top: 15px;
	line-height: 1.8em;
	height: auto;
	border-radius: 5px;
	transition: 0.3s;
}

.uk-navbar-nav>li:hover {
	background: none !important;
	border-bottom: none !important;
}

.uk-navbar-nav>li:hover a {
	background: rgba(0,0,0,0.05);
	transition: 0.3s;
}


/* Language / Dropdown for languag switch */

.language { padding-right: 0 !important; }
.language a { margin-top: 13px !important; }
.language a:hover { /* background-color: transparent !important; background: none !important; opacity: 0.8; */ }
.language img { width: 24px; height: 24px; border-radius: 50px; }

.uk-dropdown {
	width: 120px;
}
.uk-dropdown-navbar {
	border: none;
	background-color: white !important;
}
.uk-dropdown-navbar>.uk-nav-navbar>li a {
	font-size: 80%;
	margin-top: 0 !important;
	font-weight: 500;
	background-color: white !important;
}
.uk-dropdown-navbar>.uk-nav-navbar>li>a:hover {
	background-color: #F3F2F1 !important;
}



/* Action Button */
.uk-navbar-nav>li:nth-of-type(1) a {
	background: var(--color-blue);
	color: white !important;
	margin-right: 5px;
}
.uk-navbar-nav>li:nth-of-type(1) a:hover {
	background: rgba(0,0,0,0.05);
	color: var(--color-blue) !important;
	margin-right: 5px;
}

.uk-nav-side>li:nth-of-type(1) a {}
.uk-nav-side>li:nth-of-type(1) a:hover {}




/* Hero */

/*
.am-scrolled-secondary .hero>am-stretched>.am-block {
	max-width: var(--am-block-max-width) !important;
	border-radius: 1rem;
	transition: max-width 0.5s;
}
*/

/*
@media only screen and (max-width: 770px) {
	.hero h1, .hero h2, .hero-title { padding-top: 25vh; }
}

@media only screen and (min-width: 770px) and (max-width: 1020px) {
	.hero h1, .hero h2, .hero-title { padding-top: 30vh; }
}

@media only screen and (min-width: 1020px) {
	.hero h1, .hero h2, .hero-title { padding-top: 30vh; }
	.hero-title h1 { font-size: 70px; }
}
*/

		
.fullheight h1 {
	padding-top: 1rem !important;
	margin-top: 0;
}

/* Desktop */
@media only screen and (min-width: 1024px) {
	.hero am-raw {
		padding-top: 17vh;
	}
	.fullheight h1, .fullheight h2, .fullheight .hero-title {
		font-size: 2.8em; /* Freie Berufe: 3em */
		line-height: 1.2;
	}
}

/* Tablet */
@media only screen and (min-width: 600px) and (max-width: 1024px) {
	/* am-flex>am-1-3  { flex-basis: 50% !important; } */
	.hero am-raw { padding-top: 8rem !important; }
	.fullheight h1, .fullheight .hero h2, .fullheight .hero-title {
		font-size: 2.2em;
	}
	.hc4-block { max-width: 400px; }
	.how-it-works img { min-width: auto !important; }
	.hc4-text-component { max-width: 450px; }
}

/* Mobile */
@media only screen and (max-width: 600px) {
	.fullheight h1 { padding-top: 10px !important; }
	.hero am-raw { padding-top: 1.5rem; } /* 5rem w/o Image */
	.pricing am-1-3:nth-of-type(3) { margin-top: 1rem; }
	.hc4-block { max-width: 400px; }
	.how-it-works img { min-width: auto !important; }
	.hc4-text-component { max-width: 450px; }
	.rating { display: none; }
}





/* Rating */
.rating svg {
	height: 1.1em;
	margin-top: -.15em!important;
	margin: 0;
	vertical-align: middle;
	width: 1.1em;
}

.wprm-rating-star.wprm-rating-star-full svg * {
	fill: #f08436;
}

.wprm-rating-star.wprm-rating-star-66 svg * {
	fill: url(#wprm-recipe-user-rating-0-66);
}



.problem {
	background-position: 95% bottom;
	background-repeat: no-repeat;
	background-size: 230px;
}

@media only screen and (max-width: 770px) {
	.problem { padding-bottom: 220px !important; background-size: 200px; }
}

.loesung {
	background-position: 7% bottom;
	background-repeat: no-repeat;
	background-size: 190px;
}

@media only screen and (max-width: 770px) {
	.loesung { padding-bottom: 220px !important; background-size: 200px; }
}

.demo {
	background-position: 95% bottom;
	background-repeat: no-repeat;
	background-size: 170px;
	max-width: 800px;
}

@media only screen and (max-width: 600px) {
	.demo { padding-bottom: 180px !important; background-size: 180px; }
}

@media only screen and (min-width: 600px) and (max-width: 1024px) {
	.demo am-flex>am-1-4 { flex-basis: 100% !important; }
}

@media only screen and (min-width: 770px) {
	.demo { padding-left: 15px !important; }
	.demo h3 { font-weight: 700; }
}

.demo span { background: var(--color-blue); color: var(--color-dark); font-size: 18px; padding: 2px 5px; border-radius: 3px; text-transform: uppercase; vertical-align: 4px; letter-spacing: 0.02em; }


@media only screen and (min-width: 70px) {
	.demo am-buttons a {
		background-image: url('/shared/icons8-calendar-96.png');
		background-size: 23px;
		background-position-x: 18px;
		background-position-y: 13px;
		background-repeat: no-repeat;
		padding-left: 50px;
	}
}


@media only screen and (max-width: 600px) {
	.hero { padding-left: 0; }
}


/* WhatsApp */
@media only screen and (min-width: 600px) {
	#whatsapp { display: none; }
}


/* CTA */

.cta am-buttons a {
	background-image: url('/shared/icons8-calendar-96.png');
	background-size: 23px;
	background-position-x: 18px;
	background-position-y: 13px;
	background-repeat: no-repeat;
	padding-left: 50px;
}

.cta am-buttons {
	background-image: url('/shared/cta-arrow.jpg');
	background-size: 160px;
	background-position-x: 25%;
	background-position-y: 0px;
	background-repeat: no-repeat;
	padding-top: 20px;
	padding-bottom: 20px;
}

@media only screen and (max-width: 600px) {
	.cta am-buttons {
		background-size: 120px;
		background-position-x: 0;
		background-position-y: 0px;
		background-repeat: no-repeat;
		padding-top: 8px;
		padding-bottom: 20px;
	}
	.cta am-buttons a {
		margin-left: 35%;
	}
}

@media only screen and (min-width: 600px) and (max-width: 1024px) {
	.cta am-buttons {
		background-size: 160px;
		background-position-x: 25%;
		background-position-y: 0px;
		background-repeat: no-repeat;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.cta am-buttons a {
		margin-left: 25%;
	}
}

/*
.cta h2 {
	background-image: linear-gradient(121deg, rgba(0,0,194,1) 0%, rgba(255,66,161,1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
*/

/*

@media only screen and (max-width: 770px) {
	#scrolldown {
		left: 54% !important;	
	}
	.scroll-down-arrow {
			width: 4px;
			height: 4px;
	}
}

@media only screen and (min-width: 770px) {
	#scrolldown {
		left: 54% !important;	
	}
	.scroll-down-arrow {
			width: 6px;
			height: 6px;
	}
}

/*
.scroll-down-arrow {
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCA4IDgiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM6c2VyaWY9Imh0dHA6Ly93d3cuc2VyaWYuY29tLyIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoyOyI+PGNpcmNsZSBjeD0iNCIgY3k9IjQiIHI9IjQiIHN0eWxlPSJmaWxsOiNBOTk3Nzc7Ii8+PC9zdmc+);
}
*/

/* Lead */

.lead p {
	text-align: center;
	color: var(--color-link);
	line-height: 1.4;
}

.lead h2 {
	text-align: center;
	color: inherit;
	font-weight: 700;
	margin-top: 12px !important;
}

@media only screen and (max-width: 770px) {
	.lead p  {font-size: 1.1em; }
	.lead h2 {font-size: 1.6em; padding: 0 1em; }
}

@media only screen and (min-width: 770px) {
	.lead p  {font-size: 1.4em; }
	.lead h2 {font-size: 2.2em; }
}






/* Forms mit Feld */


input::placeholder, textarea::placeholder {
	color: #E5E2DC !important;
	transition: all 0.3s;
}
input:focus::placeholder, textarea:focus::placeholder {
	color: var(--color-link) !important;
	transition: all 0.3s;
}

:root {
	/* --am-input-padding: 0.6rem; */
} 

.am-input, .am-input:hover  {
	border: none;
	background-color: rgba(255,255,255,0.1);
	transition: all 0.3s;
	color: #E5E2DC !important;
}

.am-input:focus {
	border: none;
	background-color: rgba(255,255,255,0.7);
	transition: all 0.3s;
	xcolor: var(--color-link) !important;
	color: #0F2533 !important;
}

textarea.am-input {
  resize: none;
}

.disclaimer a {
	color: #E5E2DC !important;
}

.disclaimer a:hover {
	border-bottom: 1px solid #E5E2DC !important;
}

am-mail .am-button {
	background-color: #F9F8F7 !important;
}

am-mail .am-button:hover {
	background-color: #E5E2DC !important;
	color: var(--color-link) !important;
}

/*
@media only screen and (max-width: 770px) {
	am-buttons {
		margin-top: 0 !important;
	}
}
*/

/* Headlines */

@media only screen and (max-width: 350px) {
	.hero h1 { font-size: 1.6em; }
	.hero p { font-size: 1em; font-weight: 500; margin-top: 10px !important; }
	.hero .mobile { width: 90vw; padding-bottom: 10px; }
	.hero .am-button:nth-of-type(2) { display: none; }
	am-buttons { margin-top: 1rem !important; }
}
@media only screen and (min-width: 350px) and (max-width: 400px) {
	.hero h1 { font-size: 2.0em; }
	.hero p { font-size: 1em; font-weight: 500; margin-top: 10px !important; }
	.hero .mobile { width: 90vw; padding-bottom: 10px; }
	.hero .am-button:nth-of-type(2) { display: none; }
	am-buttons { margin-top: 1rem !important; }
}
@media only screen and (min-width: 400px) and (max-width: 600px) {
	.hero h1 { font-size: 2.0em; } /* 2.4rem w/o image */
	.hero p { font-size: 1em; font-weight: 500; margin-top: 10px !important; }
	.hero .mobile { width: 90vw; padding-bottom: 15px; }
	.hero .am-button:nth-of-type(2) { display: none; }
	am-buttons { margin-top: 1rem !important; }
}

@media only screen and (min-width: 600px) and (max-width: 770px) {
	.hero h1 { font-size: 2.0em; }
	.hero p { font-size: 1.4em; font-weight: 500; }
}

@media only screen and (min-width: 770px) {
	.hero p { font-size: 1.4em; font-weight: 500; }
	.hero .mobile { display:none; }
}

/*
.hero h1 {
	background-image: linear-gradient(121deg, rgba(0,0,194,1) 0%, rgba(255,66,161,1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
*/
.hero h1 span {
	font-weight: 400;
	font-size: 95%;
}

/*
.content h3 {
	font-family: 'Inter', sans-serif !important;
	font-size: 1.2em !important;
	font-weight: 700 !important;
}

.content h4 {
	font-family: 'Inter', sans-serif !important;
	font-size: 1em !important;
	font-weight: 700 !important;
}
*/

/* Quote */

blockquote {
	font-style: normal;
	font-size: 1.8rem !important;
	font-weight: 300;
	text-align: center;
}

blockquote::before {
	content: '»' !important;
}

blockquote::after {
	content: '«' !important;
}


figcaption::before {
	content: '';
}



/* Cases */

.cases am-1-3 { margin-top: 20px; }
.cases h4 { margin-top: 10px !important; font-size: 1.1em; }
.cases h4+p { margin-top: 5px !important; font-size: 90%; line-height: 1.4; }
.cases am-1-3 p a { 
	padding-right: 22px;
	border-bottom: none !important; 
	background-image: url('/shared/arrow-link.svg');
	background-position: right bottom;
	background-repeat: no-repeat;
}







.highlight-container, .highlight {
  position: relative;
}

.highlight-container {
  display: inline-block;
}
.highlight-container:before {
  content: " ";
  display: block;
  height: 90%;
  width: 100%;
  margin-left: -3px;
  margin-right: -3px;
  position: absolute;
  background: transparent; /* Hellgelb #FFFFC0; /* Gelb #FF7; */ /* #FCE0DF */
  transform: rotate(2deg);
  top: -1px;
  left: -1px;
  border-radius: 20% 25% 20% 24%;
  padding: 10px 3px 3px 10px;
}

u {
	text-decoration: none;
	border-bottom: 2px solid #B4A58B;
}


/* Footer */
footer { font-size: 90%; }





/* Buttons */


.am-button {
	/* border: none; */
	/* background-color: #F0EEEB; */
	
	transition: 0.3s;
}
.am-button:hover {
	/* color: #E3E1DC; */
	/* background-color: var(--color-link); */
	transition: 0.3s;
}



/* Date */
.text-subtitle {
	font-weight: 400;
	font-size: 16px;
	/* color: #AAA; */
}

.text-subtitle p.am-block:nth-child(2){
	margin-top: 0 !important;
}

.tags a {
	background: #F3F2F1;
	color: #999;
	border-radius: 3px;
	padding: 0px 6px !important;
	font-size: 16px;
	font-weight: 400;
}

.nav-link.panel-more {
	font-weight: 400;
}




/* Portrait */

.portrait {
	background: white;
	padding: 2rem 2rem 3rem 2rem;
	border-radius: 10px;
	/* --am-flex-gap: 3rem; */
}

.portrait img {
	border-radius: 100%;
	justify-content: center;
	filter: none !important;
}

@media only screen and (max-width: 770px) {
	.portrait am-1-4, .portrait am-1-3 {
		margin: auto;
	}
	.portrait h5 {
		text-align: center !important;
	}
}



.portrait am-list {
	margin-top: 1em;
}



.portrait h5:nth-of-type(2) {
	margin-top: 4em;
}

.portrait ul {
  list-style: none;
	padding-left: 1.6em;
}

.portrait ul li {
  text-indent: -1.6em;
}

.portrait ul li:before {
  content: '✔︎   ';
	
}





/* Label */


.label, .has-label p:nth-child(1) {
	font-size: 0.9em;
	color: var(--color-blue);
}


/* FAQ Q&A Accordion */


.accordion {
  width: 95%;
  background: white;
  border-radius: 10px;
  font-weight: 600;
  padding: 26px 26px 24px 26px;
}

.accordion.active {
	color: var(--color-page-text) !important;
	font-weight: 600 !important;
}

.panel {
  width: 95%;
  max-width: 95% !important;
  margin-top: -20px;
  background: white;
  border-radius: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  padding-left: 26px;
  padding-right: 26px;
  padding-top: 20px;
}

.panel p { padding-right: 40px;}

.accordion:after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--color-page-text);
  float: right;
  margin-left: 5px;
  margin-top: -5px;
}

.accordion.active:after {
	content: "–";
	font-size: 15px;
	font-weight: 900;
	margin-top: 3px;
}

@media only screen and (max-width: 600px) {
	.accordion {
		width: 85%;
		line-height: 1.4em;
	}
	.accordion:after {
		content: '';
	}
	.accordion.active:after {
		content: '';
	}
	.panel {
		width: 85%;
		max-width: 85% !important;
		margin-bottom: 15px;
	}
	.panel p { 
		padding-right: 0px;
		line-height: 1.4em; 
	}
	
}

/* Devices */

.devices figure {
	max-width: 70vw;
	margin: auto !important;
}


/* Features */

/* Colors */

.featurecards .multilingual p { color: var(--color-blue); }
.featurecards .multilingual h3 { color: var(--color-dark); }
.featurecards .multilingual button { background-color: white; }
.featurecards .multilingual { 
	background-color: var(--color-sky); 
	background-image: url(/shared/bg-multilingual.jpg); 
	background-size: 200px; 
	background-position: center 140px;
}

.featurecards .compliant p { color: white; }
.featurecards .compliant h3 { color: var(--color-dark); }
.featurecards .compliant button { background-color: white; }
.featurecards .compliant { 
	background-color: var(--color-amber); 
	background-image: url(/shared/bg-compliant.jpg); 
	background-size: 55px;
	background-position-x: right 20px;
	background-position-y: 25px;
}

.featurecards .service p { color: var(--color-blue); }
.featurecards .service h3 { color: white; }
.featurecards .service button { background-color: white; }
.featurecards .service { 
	background-color: var(--color-dark); 
	background-image: url(/shared/bg-service.jpg); 
	background-size: 180px; /* 200 */ 
	background-position: right 100px; /* 80 */
}

.featurecards .growth p { color: var(--color-blue); }
.featurecards .growth h3 { color: var(--color-dark); }
.featurecards .growth button { background-color: #E5E5E5; }
.featurecards .growth { 
	background-color: white; 
	background-image: url(/shared/bg-growth.jpg); 
	background-size: 85px;
	background-position-x: right 45px;
	background-position-y: 40px;
}

.featurecards .fast { 
	background-color: var(--color-amber); 
	background-image: url(/shared/bg-fast.jpg); 
	background-size: 90px;
	background-position-x: right 30px;
	background-position-y: 20px;
}
.featurecards .fast p { color: white; }
.featurecards .fast h3 { color: var(--color-dark); }
.featurecards .fast button { background-color: white; }

.featurecards .invest { 
	background-color: var(--color-blue); 
	background-image: url(/shared/bg-invest.jpg); 
	background-size: 180px; 
	background-position: center 160px;
}
.featurecards .invest p { color: white; }
.featurecards .invest h3 { color: var(--color-dark); }
.featurecards .invest button { background-color: white; }




.featurecards p.am-block.am-center {
	margin-top: 10px;
}

.featurecards am-1-3 h3 {
	font-size: 1.3em;
	line-height: 1.3;
	font-weight: 700;
}

.featurecards am-1-3 p, .dp8-text-component p.label {
	font-size: 0.75em;
	text-transform: uppercase; 
	letter-spacing: 0.1em;
	margin-bottom: 4px;
	padding-bottom: 0;
	color: #AAA;
	font-weight: 500;
}

.featurecards .am-card {
	background-repeat: no-repeat;
	position: relative;
}

.featurecards .large {
	height: 340px;
}

.featurecards .small {
	height: 200px;
}

.featurecards button {
	position: absolute;
	right: 20px; bottom: 20px;
	width: 28px; height: 28px;
	padding: 0;
	color: #333;
	font-weight: 300;
	border-radius: 50%;
	border: none;
	text-align: center;
	background-image: url('/shared/icon-plus.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 12px;
	cursor: pointer;
	transition: all 0.3s;
}

.featurecards button:hover {
	background-color: #CCC;
	transition: all 0.3s;
}

/* Features on Mobile */
@media only screen and (max-width: 600px) {
	.featurecards am-1-3:has(.am-card)+am-1-3:has(.am-card) {
		margin-top: 15px !important;
	}
	/*
	.featurecards .am-card {
		height: 65vh;
		xpadding-top: 10px;
	}
	.featurecards am-1-3 h3 {
		font-size: 2em;
		line-height: 1.2;
		font-weight: 700;
	}
	.featurecards .am-card {
		background-position-x: center;
		background-position-y: 75%;
		background-size: 60vw;
	}
	.featurecards .compliant {
		background-position-x: 56%;
		background-position-y: 75%;
		background-size: 40vw;
	}
	.featurecards .responsive {
		background-position-y: 80%;
		background-size: 70vw;
	}
	.featurecards .invest {
		background-position-x: 40%;
		background-position-y: 80%;
		background-size: 50vw;
	} */
	.featurecards button {
		right: 20px; bottom: 20px;
		width: 36px; height: 36px;
		background-size: 16px;
	} 
	
}


/* Details */

.details am-img { display: none; }
.details h4, .details p { color: #777; }
.details .icon { /* margin-top: 2rem; */ }
.details .icon img { width: 30px; filter: grayscale(); }
.details h4 { margin-top: 8px !important; font-size: 19px; }
.details h4+p { margin-top: 5px !important; font-size: 17px; line-height: 1.4; }

@media only screen and (min-width: 600px) and (max-width: 820px) {
	.details am-flex>am-1-3 { flex-basis: 50% !important; }
}



/* -------------------------------- 

File#: _1_how-it-works
Title: How It Works
Descr: A list of steps showing how a product works
Usage: codyhouse.co/license

-------------------------------- */

.how-it-works h3 { color: var(--color-link); font-weight: 700; }
.how-it-works ol, .how-it-works ul { padding-left: 0 !important; }
.how-it-works figure { margin-bottom: 0; }

/* reset */

.how-it-works ol, .how-it-works ul {
  list-style: none;
}

/* variables */
:root {
  /* colors */
  --hc4-color-primary-hsl: 206, 58%, 19%; /* Color Dashed Line */
  --hc4-color-bg-hsl: 0, 0%, 100%;
  --hc4-color-contrast-high-hsl: 206, 58%, 19%;
  --hc4-color-contrast-higher-hsl: 206, 58%, 19%;
  --hc4-color-contrast-medium-hsl: 206, 58%, 19%;
  --hc4-color-bg-dark-hsl: 206, 58%, 19%;
  --hc4-color-white-hsl: 0, 0%, 100%;
  --hc4-color-primary-darker-hsl: 206, 58%, 19%;
  --hc4-color-primary-light-hsl: 206, 58%, 19%;
  --hc4-color-accent-hsl: 206, 58%, 19%;
  --hc4-color-contrast-lower-hsl: 206, 58%, 19%;

  /* spacing */
  --hc4-space-md: 1.25rem;
  --hc4-space-xl: 3.25rem;
  --hc4-space-2xl: 5.25rem;
  --hc4-space-sm: 0.75rem;
  --hc4-space-2xs: 0.375rem;
  --hc4-space-xs: 0.5rem;

  /* typography */
  --hc4-text-lg: 1.25rem;
  --hc4-text-sm: 0.833rem;
}

@media(min-width: 64rem){
  :root {
    /* spacing */
    --hc4-space-md: 2rem;
    --hc4-space-xl: 5.125rem;
    --hc4-space-2xl: 8.25rem;
    --hc4-space-sm: 1.125rem;
    --hc4-space-2xs: 0.5625rem;
    --hc4-space-xs: 0.75rem;

    /* typography */
    --hc4-text-lg: 1.75rem;
    --hc4-text-sm: 1rem;
  }
}



/* component */
:root {
  --hiw-counter-size: 2rem;
  --hiw-counter-font-size: 1rem;
  --hiw-line-stroke-width: 2px;
  --hiw-line-border-radius: 1em;
  --hiw-items-gap-x: var(--hc4-space-md);
  /* gap between counter and content */
  --hiw-items-gap-y: var(--hc4-space-2xl);
  /* gap between list items */
}
@media (min-width: 64rem) {
  :root {
    --hiw-counter-size: 3rem;
    --hiw-counter-font-size: 1.25rem;
  }
}

.hiw-list {
  counter-reset: hiw-list-items;
}

.hiw-list__item {
  position: relative;
  counter-increment: hiw-list-items;
}
.hiw-list__item:not(:last-child) {
  padding-bottom: calc(var(--hiw-items-gap-y)/2);
  margin-bottom: calc(var(--hiw-items-gap-y)/2);
}
.hiw-list__item::before, .hiw-list__item::after {
  /* dashed line */
  content: "";
  position: absolute;
  width: calc(50% - var(--hiw-counter-size)/2 + var(--hiw-line-stroke-width)/2);
}
.hiw-list__item::before {
  top: calc(var(--hiw-counter-size) + var(--hiw-line-stroke-width));
  height: calc(100% - var(--hiw-counter-size) - var(--hiw-line-stroke-width));
  border-bottom: var(--hiw-line-stroke-width) dashed hsla(var(--hc4-color-primary-hsl), 0.25);
}
.hiw-list__item::after {
  top: calc(100% - var(--hiw-line-stroke-width));
  height: calc(var(--hiw-items-gap-y)/2);
  border-top: var(--hiw-line-stroke-width) dashed hsla(var(--hc4-color-primary-hsl), 0.25);
}
.hiw-list__item:nth-child(2n+1) {
  padding-right: calc(var(--hiw-counter-size)/2);
}
.hiw-list__item:nth-child(2n+1)::before {
  left: calc(var(--hiw-counter-size)/2 - var(--hiw-line-stroke-width)/2);
  border-left: var(--hiw-line-stroke-width) dashed hsla(var(--hc4-color-primary-hsl), 0.25);
  border-bottom-left-radius: var(--hiw-line-border-radius);
}
.hiw-list__item:nth-child(2n+1)::after {
  left: 50%;
  border-top-right-radius: var(--hiw-line-border-radius);
  border-right: var(--hiw-line-stroke-width) dashed hsla(var(--hc4-color-primary-hsl), 0.25);
}
.hiw-list__item:nth-child(2n) {
  padding-left: calc(var(--hiw-counter-size)/2);
}
.hiw-list__item:nth-child(2n) .hiw-list__item-inner {
  flex-direction: row-reverse;
}
.hiw-list__item:nth-child(2n)::before {
  border-right: var(--hiw-line-stroke-width) dashed hsla(var(--hc4-color-primary-hsl), 0.25);
  right: calc(var(--hiw-counter-size)/2 - var(--hiw-line-stroke-width)/2);
  border-bottom-right-radius: var(--hiw-line-border-radius);
}
.hiw-list__item:nth-child(2n)::after {
  right: 50%;
  border-top-left-radius: var(--hiw-line-border-radius);
  border-left: var(--hiw-line-stroke-width) dashed hsla(var(--hc4-color-primary-hsl), 0.25);
}
.hiw-list__item:last-child::before, .hiw-list__item:last-child::after {
  display: none;
}

.hiw-list__item-inner {
  display: flex;
  gap: var(--hiw-items-gap-x);
}

.hiw-list__counter {
  width: var(--hiw-counter-size);
  height: var(--hiw-counter-size);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--hiw-counter-font-size);
  color: white; 
  color: var(--color-blue);
  /* background: var(--color-amber); */

  font-weight: 600;
  border: 3px solid var(--color-blue);
}
.hiw-list__counter::before {
  content: counter(hiw-list-items);
}

@media (min-width: 64rem) {
  .hiw-list__item:nth-child(2n) .hiw-list__content :first-child {
    order: 2;
  }
}

/* utility classes */
.hc4-margin-top-md {
  margin-top: var(--hc4-space-md);
}

.hc4-color-contrast-medium {
  --hc4-color-o: 1;
  color: hsla(var(--hc4-color-contrast-medium-hsl), var(--hc4-color-o, 1));
}

.hc4-text-lg {
  font-size: var(--hc4-text-lg);
}

.hc4-text-component :where(h1, h2, h3, h4) {
  line-height: var(--hc4-heading-line-height, 1.2);
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.hc4-text-component :where(p, blockquote, ul li, ol li) {
  line-height: var(--hc4-body-line-height, 1.4);
}

.hc4-text-component :where(ul, ol, p, blockquote, .hc4-text-component__block) {
  margin-top: 15px !important;
  margin-bottom: 0 !important;
}

.hc4-text-component :where(ul, ol) {
  padding-left: 1.25em;
}

.hc4-text-component ul :where(ul, ol), .hc4-text-component ol :where(ul, ol) {
  padding-left: 1em;
  margin-bottom: 0;
}

.hc4-text-component ul {
  list-style-type: disc;
}

.hc4-text-component ol {
  list-style-type: decimal;
}

.hc4-text-component img {
  display: block;
  margin: 0 auto;
}

.hc4-text-component figcaption {
  margin-top: calc(var(--hc4-space-xs) * var(--hc4-space-multiplier, 1));
  font-size: var(--hc4-text-sm);
  text-align: center;}

.hc4-text-component em {
  font-style: italic;
}

.hc4-text-component strong {
  font-weight: bold;
}

.hc4-text-component s {
  text-decoration: line-through;
}

.hc4-text-component u {
  text-decoration: underline;
}

.hc4-text-component mark {
  background-color: hsla(var(--hc4-color-accent-hsl), 0.2);
  color: inherit;
}

.hc4-text-component blockquote {
  padding-left: 1em;
  border-left: 4px solid hsl(var(--hc4-color-contrast-lower-hsl));
  font-style: italic;
}

.hc4-text-component hr {
  margin: calc(var(--hc4-space-md) * var(--hc4-space-multiplier, 1)) auto;
  background: hsl(var(--hc4-color-contrast-lower-hsl));
  height: 1px;
}

.hc4-text-component > *:first-child {
  margin-top: 0;
}

.hc4-text-component > *:last-child {
  margin-bottom: 0;
}

.hc4-text-component.hc4-line-height-xs {
  --hc4-heading-line-height: 1;
  --hc4-body-line-height: 1.1;
}

.hc4-text-component.hc4-line-height-sm {
  --hc4-heading-line-height: 1.1;
  --hc4-body-line-height: 1.2;
}

.hc4-text-component.hc4-line-height-md {
  --hc4-heading-line-height: 1.15;
  --hc4-body-line-height: 1.4;
}

.hc4-text-component.hc4-line-height-lg {
  --hc4-heading-line-height: 1.22;
  --hc4-body-line-height: 1.58;
}

.hc4-text-component.hc4-line-height-xl {
  --hc4-heading-line-height: 1.3;
  --hc4-body-line-height: 1.72;
}

.hc4-width-100\% {
  width: 100%;
}

.hc4-block {
  display: block;
}

.hc4-gap-md {
  gap: var(--hc4-space-md);
}

.hc4-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.hc4-grid > * {
  min-width: 0;
  grid-column-end: span 12;
}

.hc4-flex-grow {
  flex-grow: 1;
}

.hc4-text-center {
  text-align: center;
}

.hc4-margin-bottom-xl {
  margin-bottom: var(--hc4-space-xl);
}

.hc4-max-width-adaptive-md {
  max-width: 32rem;
}

@media(min-width: 48rem) {
  .hc4-max-width-adaptive-md {
    max-width: 48rem;
  }
}

@media(min-width: 64rem) {
  .hc4-max-width-adaptive-md {
    max-width: 64rem;
  }
}

.hc4-container {
  width: calc(100% - 2*var(--hc4-space-md));
  margin-left: auto;
  margin-right: auto;
}

.hc4-padding-y-xl {
  padding-top: var(--hc4-space-xl);
  padding-bottom: var(--hc4-space-xl);
}

.hc4-z-index-1 {
  z-index: 1;
}

.hc4-position-relative {
  position: relative;
}

@media(min-width: 64rem){
  .hc4-items-center\@md {
    align-items: center;
  }

  .hc4-col-6\@md {
    grid-column-end: span 6;
  }
}

@media(max-width: 600px){
	.hc4-container {
		width: 100%;
	}
}



/* ------ Specials ----- */


		.am-card { position: relative; }
		am-1-4:nth-of-type(3) .checklist ul li::before { background-color: #E5E2DC; }
		.pricing { font-size: 90%; }
		.advantages p { font-size: 90%; margin-top: 10px; }
		.pricing h3 { font-weight: 600; }
		.pricing h6 { font-size: 1em; }
		.pricing li { line-height: 22px; margin-bottom: 8px; }
		img { border-radius: 5px; }
		.content hr { height: 1px; border-bottom: 1px #CCC solid !important; margin: 5rem auto !important; }
		/* .advantages h5 { color: #A99777; } */
		.side a { font-weight:300; color: #F9F8F7; transition: all 0s; }
		.side a:hover { color: #FFF; border-bottom: 1px white solid; transition: all 0s; }
		
		
		/* Radio Button Pricing */
		.price { font-weight: 700; position:absolute; left:1.5em; bottom:1.5em; font-size: 1.2em; }
		.price.three { display: none; }
		.pricing ul.radio-switch-v2 {
  		list-style: none;
			padding-left: 0;
			margin-bottom: 0;
		}
		/* variables */
		:root {
		  /* colors */
		  --rw7-color-primary-hsl: 202, 70%, 20%; /* Blau 118, 49%, 76%; */
		  --rw7-color-bg-hsl: 0, 0%, 100%;
		  --rw7-color-contrast-high-hsl: 230, 7%, 23%;
		  --rw7-color-contrast-higher-hsl: 230, 13%, 9%;
		  --rw7-color-bg-darker-hsl: 240, 4%, 90%;
		
		  /* spacing */
		  --rw7-space-xs: 0.85rem;
		
		  /* typography */
		  /* --rw7-text-sm: 0.833rem; */
			--rw7-text-sm: 0.85rem;
		}
		
		@media(min-width: 64rem){
		  :root {
		    /* spacing */
		    --rw7-space-xs: 0.75rem;
		
		    /* typography */
		    /* --rw7-text-sm: 1rem; */
				--rw7-text-sm: 0.8rem;
		  }
		}

		/* component */
		:root {
		  --radio-switch-v2-width: 52px;
		  --radio-switch-v2-height: 30px;
		  --radio-switch-v2-padding: 4px;
		  --radio-switch-v2-radius: 50em;
		  --radio-switch-v2-animation-duration: 0.3s;
		}
		
		.radio-switch-v2 {
		  position: relative;
		  display: inline-block;
		  display: inline-flex;
		}
		
		.radio-switch-v2__item {
		  position: relative;
		  height: var(--radio-switch-v2-height);
		  float: left;
		}
		
		.radio-switch-v2__input {
		  position: relative;
		  z-index: 2;
		  height: 100%;
		  width: calc(var(--radio-switch-v2-width)*0.5);
		  opacity: 0;
		  cursor: pointer;
		  -webkit-transform: scaleX(2);
		          transform: scaleX(2);
		  -webkit-transform-origin: 0 0;
		          transform-origin: 0 0;
		}
		.radio-switch-v2__item:last-of-type .radio-switch-v2__input {
		  -webkit-transform-origin: 100% 100%;
		          transform-origin: 100% 100%;
		}
		.radio-switch-v2__item:first-of-type .radio-switch-v2__input {
		  order: 1;
		}
		.radio-switch-v2__input:checked {
		  z-index: -1;
		}
		
		.radio-switch-v2__label {
		  position: relative;
		  z-index: 2;
		  display: block;
		  line-height: var(--radio-switch-v2-height);
		  font-size: calc(var(--rw7-text-sm)*1.2);
			font-weight: 400;
		  transition: color var(--radio-switch-v2-animation-duration);
		  -webkit-user-select: none;
		     -moz-user-select: none;
		      -ms-user-select: none;
		          user-select: none;
		}
		.radio-switch-v2__item .radio-switch-v2__label {
			color: #999; /* not selected */
		}
		.radio-switch-v2__item:first-of-type .radio-switch-v2__label {
		  float: left;
		  margin-right: var(--rw7-space-xs);
		}
		.radio-switch-v2__item:last-of-type .radio-switch-v2__label {
		  float: right;
		  margin-left: var(--rw7-space-xs);
		}
		.radio-switch-v2__input:checked ~ .radio-switch-v2__label {
		  color: var(--color-dark);
		}
		.radio-switch-v2__input:focus ~ .radio-switch-v2__label {
		  outline: 2px solid hsla(var(--rw7-color-primary-hsl), 0.2);
		  outline-offset: 2px;
		}
		.radio-switch-v2__label :not(*):focus-within, .radio-switch-v2__input:focus ~ .radio-switch-v2__label {
		  outline: none;
		}
		
		.radio-switch-v2__toggle {
		  position: absolute;
		  z-index: 1;
		  width: var(--radio-switch-v2-width);
		  height: var(--radio-switch-v2-height);
		  top: 0;
		  left: 0;
		  -webkit-transform: translateX(-50%);
		          transform: translateX(-50%);
		  border-radius: var(--radio-switch-v2-radius);
		  background-color: hsl(var(--rw7-color-bg-darker-hsl));
		}
		.radio-switch-v2:focus-within .radio-switch-v2__toggle, .radio-switch-v2:active .radio-switch-v2__toggle {
		  box-shadow: 0 0 0 2px hsla(var(--rw7-color-contrast-higher-hsl), 0.15);
		}
		
		.radio-switch-v2__marker {
		  position: absolute;
		  z-index: 1;
		  top: var(--radio-switch-v2-padding);
		  left: var(--radio-switch-v2-padding);
		  width: calc(var(--radio-switch-v2-height) - var(--radio-switch-v2-padding) * 2);
		  height: calc(var(--radio-switch-v2-height) - var(--radio-switch-v2-padding) * 2);
		  border-radius: 50%;
		  background-color: var(--color-dark);
		  transition: left var(--radio-switch-v2-animation-duration);
		  box-shadow: 0 0.3px 0.4px rgba(0, 0, 0, 0.025),0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
		  will-change: left;
		}
		
		.radio-switch-v2__input:checked ~ .radio-switch-v2__toggle .radio-switch-v2__marker {
		  left: calc(var(--radio-switch-v2-width) - var(--radio-switch-v2-height) + var(--radio-switch-v2-padding));
		}
		
		/* Price animated glow */
		.price { 
			animation-name: glow;
		  	animation-duration: 1s;
			padding: 4px 8px;
			border-radius: 30px;
		}
			
			@keyframes glow {
		  0% {
		    -box-shadow: 0px 0px 15px 10px rgba(255, 255, 0, 1);
				background: #F8FF65;
		  }
		  100% {
		    -box-shadow: 0px 0px 0px 0px rgba(255, 255, 0, 1);
				background: transparent;
		  }
		}
		
		/* Juni 2024 */
		
		
		.am-slider-prev, .am-slider-next, .am-slider-dots { display: none; }
		am-slider { margin-top: 10vh !important; }
		am-slider, .am-slider, .am-slider-item, .am-slider-item>img {
			max-height: 75vh !important; max-width: 48vh !important;
		}
		am-stretched>am-section>am-flex>am-1-2 {
			max-width: 520px;
		}
		.pricing am-section.am-card>:not(am-stretched)+* {
			padding-top: var(--am-card-padding) !important;
		}
		.pricing am-1-3:nth-of-type(2) .am-card {
			/* background-image: url("/shared/banner-popular-de.png"); */
			background-position: top right;
			background-size: 100px;
			background-repeat: no-repeat;
		}
		.pricing am-1-3:nth-of-type(1) .checklist ul li::before {
			background-color: #999;
		}
		.pricing am-1-3:nth-of-type(2) .checklist ul li::before {
			background-color: var(--color-blue);
		}
		.pricing am-1-3:nth-of-type(3) .checklist ul li::before {
			background-color: var(--color-blue);
		}
		/*
		am-stretched am-buttons a {
			letter-spacing: 0 !important; text-transform: none !important; font-size: 1em !important;
		}
		*/
		.am-button, .am-mail-button { 
			font-weight: 600 !important; 
			border-radius: 6px !important; 
		}
		
		
		
/* Badges */
.badges img { width: 80px; float: right; margin: 0 10px; }
		
		
		
		
/* -------------------------------- 

File#: _1_drawer
Title: Drawer
Descr: A slide-in panel used to display critical content
Usage: codyhouse.co/license

-------------------------------- */
/* reset 
*, *::after, *::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

    h2 {
    font-size: 2.44rem;
  }

    h3 {
    font-size: 1.75rem;
  }

    h4 {
    font-size: 1.5625rem;
  }
}
*/


/* variables */
:root {
  /* colors */
  --dp8-color-primary-hsl: 250, 84%, 54%;
  --dp8-color-bg-hsl: 0, 0%, 100%;
  --dp8-color-contrast-high-hsl: 230, 7%, 100%;
  --dp8-color-contrast-higher-hsl: 230, 13%, 9%;
  --dp8-color-contrast-lower-hsl: 240, 4%, 85%;
  --dp8-color-bg-light-hsl: 0, 0%, 100%;
  --dp8-color-bg-lighter-hsl: 0, 0%, 0%;
  --dp8-color-black-hsl: 230, 13%, 9%;
  --dp8-color-bg-dark-hsl: 240, 4%, 95%;
  --dp8-color-white-hsl: 0, 0%, 100%;
  --dp8-color-primary-darker-hsl: 250, 84%, 38%;
  --dp8-color-primary-light-hsl: 250, 84%, 60%;
  --dp8-color-accent-hsl: 342, 89%, 48%;

  /* spacing */
  --dp8-space-xs: 0.5rem;
  --dp8-space-sm: 0.75rem;
  --dp8-space-md: 1.25rem;
  --dp8-space-2xs: 0.375rem;

  /* typography */
  --dp8-text-md: 1.2rem;
  --dp8-text-sm: 0.833rem;
}

@media(min-width: 64rem){
  :root {
    /* spacing */
    --dp8-space-xs: 0.75rem;
    --dp8-space-sm: 1.125rem;
    --dp8-space-md: 2rem;
    --dp8-space-2xs: 0.5625rem;

    /* typography */
    --dp8-text-md: 1.5625rem;
    --dp8-text-sm: 1rem;
  }
}



/* icons */
.dp8-icon {
  height: var(--dp8-size, 1em);
  width: var(--dp8-size, 1em);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.dp8-icon--xs {
  --dp8-size: 16px;
}

/* component */
:root {
  --drawer-width: 400px;
}

.drawer {
  position: fixed;
  z-index: 9999;
  height: 100%;
  width: 100%;
  max-width: var(--drawer-width);
  top: 0;
  right: 0;
  visibility: hidden;
  transition: visibility 0s 0.3s;
}
.drawer:focus {
  outline: none;
}

.drawer--is-visible {
  visibility: visible;
  transition: none;
}

.drawer--open-left {
  right: auto;
  left: 0;
}

.drawer__content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.drawer--open-left .drawer__content {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.drawer--is-visible .drawer__content {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer__body {
  height: 100%;
  overflow: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.drawer__close-btn {
  --dp8-size: 32px;
  width: var(--dp8-size);
  height: var(--dp8-size);
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--color-dark);
  transition: 0.2s;
  border: none !important;
  cursor: pointer;
  padding: 3px 6px !important;
}
.drawer__close-btn:hover {
  background-color: #777;
  
}
.drawer__close-btn .drawer__icon {
  display: block;
  color: hsl(var(--dp8-color-contrast-high-hsl));
}

.drawer--modal {
  max-width: none;
  background-color: hsla(var(--dp8-color-black-hsl), 0);
  transition: background-color 0.3s, visibility 0s 0.3s;
}
.drawer--modal.drawer--is-visible {
  background-color: hsla(var(--dp8-color-black-hsl), 0.75);
  transition: background-color 0.3s;
}
.drawer--modal.drawer--open-left .drawer__content {
  right: auto;
  left: 0;
}
.drawer--modal .drawer__content {
  max-width: var(--drawer-width);
}

/* utility classes */
.dp8-margin-xs {
  margin: var(--dp8-space-xs);
}

.dp8-z-index-10 {
  z-index: 10;
}

.dp8-right-0 {
  left: 10px;
}

.dp8-top-0 {
  top: 10px;
}

.dp8-position-fixed {
  position: fixed;
}

.dp8-text-component :where(h1, h2, h3, h4) {
  line-height: var(--dp8-heading-line-height, 1.2);
  margin-top: 10px; /* AB */
  margin-bottom: calc(var(--dp8-space-sm) * var(--dp8-space-multiplier, 1));
}

.dp8-text-component :where(p, blockquote, ul li, ol li) {
  font-size: 18px;
  line-height: var(--dp8-body-line-height, 1.4);
}

.dp8-text-component :where(ul, ol, p, blockquote, .dp8-text-component__block) {
  margin-bottom: calc(var(--dp8-space-sm) * var(--dp8-space-multiplier, 1));
}

.dp8-text-component :where(ul, ol) {
  padding-left: 1.25em;
}

.dp8-text-component ul :where(ul, ol), .dp8-text-component ol :where(ul, ol) {
  padding-left: 1em;
  margin-bottom: 0;
}

.dp8-text-component ul {
  list-style-type: disc;
}

.dp8-text-component ol {
  list-style-type: decimal;
}

.dp8-text-component img {
  display: block;
  margin: 0 auto;
}

.dp8-text-component figcaption {
  margin-top: calc(var(--dp8-space-xs) * var(--dp8-space-multiplier, 1));
  font-size: var(--dp8-text-sm);
  text-align: center;}

.dp8-text-component em {
  font-style: italic;
}

.dp8-text-component strong {
  font-weight: bold;
}

.dp8-text-component s {
  text-decoration: line-through;
}

.dp8-text-component u {
  text-decoration: underline;
}

.dp8-text-component mark {
  background-color: hsla(var(--dp8-color-accent-hsl), 0.2);
  color: inherit;
}

.dp8-text-component blockquote {
  padding-left: 1em;
  border-left: 4px solid hsl(var(--dp8-color-contrast-lower-hsl));
  font-style: italic;
}

.dp8-text-component hr {
  margin: calc(var(--dp8-space-md) * var(--dp8-space-multiplier, 1)) auto;
  background: hsl(var(--dp8-color-contrast-lower-hsl));
  height: 1px;
}

.dp8-text-component > *:first-child {
  margin-top: 0;
}

.dp8-text-component > *:last-child {
  margin-bottom: 0;
}

.dp8-text-component.dp8-line-height-xs {
  --dp8-heading-line-height: 1;
  --dp8-body-line-height: 1.1;
}

.dp8-text-component.dp8-line-height-sm {
  --dp8-heading-line-height: 1.1;
  --dp8-body-line-height: 1.2;
}

.dp8-text-component.dp8-line-height-md {
  --dp8-heading-line-height: 1.15;
  --dp8-body-line-height: 1.4;
}

.dp8-text-component.dp8-line-height-lg {
  --dp8-heading-line-height: 1.22;
  --dp8-body-line-height: 1.58;
}

.dp8-text-component.dp8-line-height-xl {
  --dp8-heading-line-height: 1.3;
  --dp8-body-line-height: 1.72;
}

.dp8-padding-md {
  padding: var(--dp8-space-md);
}

.dp8-shadow-md {
  box-shadow:0 0.9px 1.5px rgba(0, 0, 0, 0.03),0 3.1px 5.5px rgba(0, 0, 0, 0.08),0 14px 25px rgba(0, 0, 0, 0.12);
}

:where(.dp8-inner-glow) {
  position: relative;
}

.dp8-inner-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075);
}

.dp8-bg-light {
  --dp8-bg-o: 1;
  background-color: hsla(var(--dp8-color-bg-light-hsl), var(--dp8-bg-o, 1));
}

.dp8-text-md {
  font-size: var(--dp8-text-md);
}

.dp8-padding-sm {
  padding: var(--dp8-space-sm);
}

.dp8-text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dp8-padding-y-xs {
  padding-top: var(--dp8-space-xs);
  padding-bottom: var(--dp8-space-xs);
}

.dp8-padding-x-sm {
  padding-left: var(--dp8-space-sm);
  padding-right: var(--dp8-space-sm);
}

.dp8-border-bottom {
  --dp8-border-o: 1;
  border-bottom: var(--dp8-border-width, 1px) var(--dp8-border-style, solid) hsla(var(--dp8-color-contrast-lower-hsl), var(--dp8-border-o, 1));
}

.dp8-flex-shrink-0 {
  flex-shrink: 0;
}

.dp8-justify-between {
  justify-content: space-between;
}

.dp8-items-center {
  align-items: center;
}

.dp8-flex {
  display: flex;
}

.dp8-flex-column {
  flex-direction: column;
}

.dp8-border-contrast-lower {
  --dp8-border-o: 1;
  border-color: hsla(var(--dp8-color-contrast-lower-hsl), var(--dp8-border-o, 1));
}