body,
button,
input,
textarea {
	font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

body {
	color: #3366ff;
	background-color: transparent;
}

* {
	box-sizing: border-box;
}

h1,
h2 {
	font-weight: lighter;
	margin: 0;
	color: #3366ff;
}

[hidden] {
	display: none !important;
}

section {
	max-width: 1000px;
	margin: 0 auto;
}

section > * {
	margin-top: 1em;
}

.divider {
	border-top: 1px solid rgba(0, 0, 0, .2);
}

.flex {
	display: flex;
}

.infoicon {
	display: inline-block;
	width:16px;
	height: 16px;
	background: url(assets/info.svg);
}

.car > div + div {
	margin-left: 1em;
}

table {
	width: 100%;
}

th {
	text-transform: uppercase;
	text-align: left;
	font-weight: normal;
	padding:0 .5em .5em;
	
}

td {
	width: 25%;
}

td .data {
	border:1px solid rgba(0, 0, 0, .2);
	border-radius: 3px;
	font-size: 4em;
	padding:0 0 0 .25em;
	font-weight: lighter;
}

td .data.difference {
	font-weight: normal;
}

.price_and_chart > div {
	width: 100%;
}

.price_and_chart button {
	text-transform: uppercase;
	font-size: 2.5em;
	width: 100%;
}

.price {
	padding: .5em;
	border: 2px solid rgba(0, 0, 0, .2);
}

.price button {
	margin-top: 1.2em;
}

.aktion {
	font-size: 20px;
	margin-top: 10px;
	font-weight: bolder;
}

.chart-board-container {
	height: 400px;
}

.diy {
	border: 2px solid #bbb;
	padding: .5em;
}

.diy button {
	font-size: 2em;
}

.diy p {
	font-size: 1.3em;
	font-style: italic;
}

.diy img {
	width: 50%;
}

form:invalid button.primary {
	opacity: .3;

}

form.validate input:invalid,
form.validate textarea:invalid {
	border-color: red;
}













.loading-indicator {
	position: absolute;
	left: 50%;
	transform: translateX(-50%)
}

.loading-indicator > div {
	width: .75em;
	height: .75em;
	background-color: #bbb;
	border-radius: 100%;
	display: inline-block;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.loading-indicator .bounce1 {
	animation-delay: -.32s;
}

.loading-indicator .bounce2 {
	animation-delay: -.16s;
}

@keyframes sk-bouncedelay {
	0%, 80%, 100% { 
		transform: scale(0);
	} 40% { 
		transform: scale(1);
	}
}

















.modal {
	font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif;
}

.modal button {
	width: auto;
	font-size: 1em;
	padding: .5em 1em;
}

.modal__overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.6);
	display: flex;
	justify-content: center;
	align-items: center;
}

.modal__container {
	background-color: #fff;
	padding: 1em;
	width: 80vw;
	max-height: 90vh;
	overflow-y: auto;
	box-sizing: border-box;
	border-radius: 3px;
}

.modal__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal__close {
	background: transparent;
	border: 0;
}

.modal__header .modal__close:before {
	content: "\2715";
}

.modal__content {
	margin-top: 2rem;
	margin-bottom: 2rem;
	line-height: 1.5;
	color: rgba(0,0,0,.8);
}



@keyframes mmfadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes mmfadeOut {
	from { opacity: 1; }
	to { opacity: 0; }
}

@keyframes mmslideIn {
from { transform: translateY(15%); }
	to { transform: translateY(0); }
}

@keyframes mmslideOut {
	from { transform: translateY(0); }
	to { transform: translateY(-10%); }
}

.micromodal-slide {
	display: none;
}

.micromodal-slide.is-open {
	display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
	animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
	animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
	animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
	animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
	will-change: transform;
}









.choices,
td .data,
button,
input,
textarea {
	background:white;
	border: 1px solid rgba(0, 0, 0, .2);
	border-radius: 5px;
}

button {
	font-size: 1.25em;
}

.choices__inner {
	background: white !important;
}



th + th,
td + td {
	padding-left: 1em;
	color:#3366ff;
}

tr + tr td {
	padding-top: 0.5em
}

td .type {
	font-size: 1.5em;
	font-weight: lighter;
	display: flex;
}

td .data {
	font-size: 2em;
	height: 75px;
	border-radius: 5px;
	padding-top: 14px; /*todo: */
	font-weight: 300;
	text-indent: .5em;
}

h1 {
	font-size: 2em;
}

.data > * + * {
	margin-top: 2.5em;
}

button {
    white-space: nowrap;
    padding: 1em;
    font-weight: lighter;
}

button:hover {
	background: #ddd;
}

.price {
	border: 0;
	text-align: right;
	padding: 0;
}

.price-universe {
	position: relative;
	justify-content: flex-end;
}

.price-container {
	background: #ddd;
	padding: 1em;
	border-radius: 0 5px 5px 0;
}

.price button {
	margin-top: 2.5em;
}

.price button + button {
	margin-left: 1em;
}

.aktion-label {
	font-weight: lighter;
}

input,
textarea {
	display: block;
	font-size: 1.25em;
	padding: .25em .5em;
	width: 100%;
}

.tabs {
	border-bottom: 1px solid #3366ff;
}

.tabs button {
	display: inline-block;
	padding: .75em 2em;
	font-size: 1.2em;
	border: 1px solid #3366ff;
	background: #ddd;
	position: relative;
	bottom: -1px;
	border-radius: 5px 5px 0 0;
	width: auto;
}

.tabs button:focus {
	border-top-color: black;
	border-right-color: black;
	border-left-color: black;
	outline: none;
}

.tabs button:hover {
	background: #eee;
}

.tabs button.active {
	border-bottom-color: transparent;
	background: #3366ff;
	color:white;
}

.dsgvo input {
	display: inline;
	width: auto;
}















.triangle-right {
    width: 0;
    height: 0;
    padding-top: 17%;
    padding-bottom: 17%;
    padding-left: 17%;
    overflow: hidden;
}
.triangle-right:after {
    content: "";
    display: block;
    width: 0; 
    height: 0;
    margin-top:-500px;
    margin-left: -500px;
     
    border-top: 500px solid transparent;
    border-bottom: 500px solid transparent;
    border-left: 500px solid #ddd;
}

.triangle-left {
    height: 0;
	width: 65px;
    padding-top: 60px;
    padding-bottom: 60px;
	overflow: hidden;
	
}
.triangle-left:after {
    content: "";
    display: block;
    width: 0; 
    height: 0;
    margin-top:-500px;
     
    border-top: 500px solid transparent;
    border-bottom: 500px solid transparent;
    border-right: 500px solid #ddd;
}

.triangle-content {
	text-indent: 1em;
    flex: 1;
    display: flex;
	align-items: center;
	background: #3366ff;
	color: white;
}

.type .triangle-content {
	border-radius: 5px 0 0 5px;
	
}

.price-container {
	display: none;
	align-items: center;
	background: #dd3333;
	color: white;
	padding-right: 1em;
	border-radius: 5px;
	white-space: nowrap;
    overflow: hidden;
	margin-top: 10px;
}

.choices__placeholder {
    opacity: .2;
    font-style: italic;
}

.choices__item--choice:hover {
	background: #498ffb;
	color: white;
}

canvas {
	background: url(canvasbg_lighted.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position-y: center;
	background-position-x: center;
}