@charset "utf-8";
/* CSS Document */
/*Gesamtbox*/
.containerbox {
	width: 1190px;
	background-color: #fff;
	padding: 20px;
	margin: 50px auto;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	font-size: 1.25rem;
	font-family: Arial, Helvetica, sans-serif;
	overflow: hidden;
}
.containerbox h2 {
	text-align: center;
	font-size: 2rem;
	font-weight: 500;
}
.containerbox form {
	display: flex;
	flex-direction: column;
}

.containerbox label {
	margin-top: 10px;
}
.containerbox button,
.containerbox input,
.containerbox select {
	padding: 10px 2px;
	margin-top: 5px;
}
.containerbox select{
	font-family: inherit;
	font-size: inherit;
}
.containerbox button {
	background-color: #007bff;
	color: #fff;
	border: none;
	cursor: pointer;
	margin-top: 20px;
}
.containerbox button:hover {
	background-color: #0056b3;
}
.containerbox .results {
	margin-top: 20px;
	border-radius: 5px;
}
/*Headline Orange*/
.containerbox .mainheadline {
	background-color: #66cc00;
	padding: 10px;
	border-radius: 10px;
	color: #fff;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.containerbox .mainheadline span {
	width: 80%;
}
.containerbox .mainheadline .bi-calculator-fill {
	margin-right: 10px;
}
.containerbox .mainheadline .bi {
	font-size: 3rem;
}
.containerbox .box-SGD {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.containerbox .box1,
.containerbox .boxma1 {
	width: 20%;
}
/*Zahlenkreise Orange*/
.containerbox .box1 .bi {
	font-size: 3rem;
	color: #333;
}
.containerbox .bi-piggy-bank-fill {
	font-size: 2.5rem;
	color: #155724;
}
.containerbox .box2,
.containerbox .boxma2 {
	width: 40%;
}
/*Berechnugnsgrundlage Text blau*/
.containerbox .box2,
.containerbox .results {
	color: #160043;
	font-weight: 700;
}
.containerbox .box3,
.containerbox .boxma3 {
	text-align: right;
	width: 40%;
}
/*Select-Boxen, Ausgabefeld für 1-4, Berechnugnsgrundlage Ausgabefelder*/
.containerbox .box-SGD input,
.containerbox .box-SGD select {
	width: 280px;
	text-align: center;
	border: 2px solid #66cc00;
	border-radius: 5px;
}
.containerbox .box-SGD #gross-salary{
	width: 280px;
}
/*Gehaltskosten-Zuschuss (gesamt), Lehrgangs-Kostenübernahme (gesamt)*/
.containerbox .boxma span,
.containerbox .results p {
	border-radius: 5px;
	background-color: #66cc00;
	color: #fff;
	font-size: 1.3rem;
	padding: 10px;
	text-align: center;
}
.containerbox #total-funding,
.containerbox .berechnung {
	display: none;
}
.containerbox .boxma span {
	width: 200px;
	display: inline-block;
}
.containerbox .boxma {
	justify-content: space-between;
	color: #333;
	font-weight: 700;
	margin-bottom: 20px
}
.containerbox .boxberechnung {
	margin-top: 40px;
	margin-bottom: 40px;
}
.containerbox .boxma2,
.containerbox .boxma3 {
	width: 40%;
	text-align: center;
	font-size: 1.15rem;
	padding-top: 10px;
}

.containerbox .boxma1 {
	width: 100%;
	text-align: center;
	font-size: 1.35rem;
}
/*Gesamte Ersparnis Text Blau*/
.containerbox .boxma1 span {
	background-color: #fff;
	color: #160043;
	border: 3px solid #66cc00;
	font-size: 1.5rem;
}
.containerbox .line {
	border-top: 2px dashed #66cc00 !important;
	height: 2px;
}
/*Kostenersparnis-Text Blau, Berechnungsgrundlage Blau*/
.containerbox .kosten {
	font-weight: 500;
	border-radius: 5px;
	background-color: #66cc00;
	color: #fff;
	font-size: 1.5rem;
	padding: 10px 0 10px 20px;
	width: 350px;
	margin-bottom: 20px;
}
.containerbox .berechnungsgrundlage {
	width: 100% !important;
    display:flex;
    justify-content:space-between;
}
/*Kostenersparnis Box mit Hintergrundbild Pfeil*/
.containerbox .kostenersparnis {
	background-color: #eee;
	padding: 30px 20px;
	background-image: url("https://www.klett-corporate-education.de/fileadmin/Image/Foederrechner/arrow_addition.svg");
	background-repeat: no-repeat;
	background-position: center 215px;
	background-size: 125px;
	overflow: hidden;
}
.containerbox .kostenersparnis h2 {
	margin: auto;
	text-align: center;
}
.containerbox .top {
	margin-top: 30px;
}
.containerbox .bottom {
	margin-bottom: 10px;
}

.containerbox .resultbox {
  overflow: hidden;
  transition: max-height 0.4s ease;
  max-height: 0;
}

.containerbox .resultbox.open {
  max-height: 600px;
}

.containerbox .bi-chevron-down{
  margin-right:20px;
}

.containerbox .bi-chevron-up{
  display:none;
  margin-right:20px;
}

.containerbox .openberechnung > .bi-chevron-up{
  display:block;
  margin-right:20px;
}

.containerbox .openberechnung > .bi-chevron-down{
  display:none;
}

.containerbox .berechnungsgrundlage:hover{
  background-color:#66cc00;
  cursor:pointer;
}

.containerbox .gesamtkostenbetrag{
  display:none;
}

@media screen and (max-width:992px) {
	.containerbox {
		width: 100%;
		margin: 0;
		max-width: 100%;
	}
	.containerbox .mainheadline {
		text-align: left;
	}
	.containerbox h2.mainheadline span {
		width: 100%;
		font-size: 1.2rem;
	}
	.containerbox .mainheadline .bi {
		font-size: 2rem;
	}
	.containerbox .box-SGD {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-bottom: 20px
	}
	.containerbox .box1,
	.containerbox .box2,
	.containerbox .box3 {
		width: 100%;
		text-align: center;
	}

	.containerbox .box1 label,
	.containerbox .box2 label,
	.containerbox .box3 label {
		margin: 0;
	}
	.containerbox .box-SGD input,
	.containerbox .box-SGD select {
		width: 90%;
	}
	.containerbox .boxma1,
	.containerbox .boxma2,
	.containerbox .boxma3 {
		width: 100%;
		text-align: center;
		font-size: 1.1rem;
	}
	.containerbox .boxma span {
		width: 100%;
		text-align: center;
		margin-left: 0;
		margin-bottom: 5px;
		margin-top: 5px;
	}
	.containerbox .boxma {
		margin-top: 20px;
	}
	.containerbox .results {
		text-align: center;
	}
	.containerbox .kosten {
		text-align: center;
		width: 100%;
		font-size: 1.2rem;
		padding: 10px 0 10px 20px;
	}
	.containerbox .kostenersparnis {
		background-image: none;
	}
	.containerbox .results p {
		margin-top: 5px;
	}
}
