.solar-calc {
    background: var(--success);
    padding: 0.5rem 2rem 2rem;
    font-family: "Manrope", sans-serif;
    position: relative;
    min-height: 750px;
	max-width: 1077px;
	width: 100%;
	margin: 0 auto;
	border-radius: var(--space-m);
}
#solar-calc-form {
	padding-top:2rem;
}
.solar-calc-intro {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff00;
    text-align: center;
    padding: 1rem;
    display: grid;
    align-items: center;
}
.solar-calc-intro-icons{
    display: block;
	margin: 1rem 0;
}
.solar-calc-intro-icons .ct-fancy-icon{
	background: rgba(238,208,0,0.33);
	margin-right: 1rem;
}
.solar-calc-intro-icons div{
    display: flex;
    padding: 1rem;
	font-size: 18px;
	align-items: center;
}
.solar-calc-legend {
    display: block;
}
.solar-calc-legend-tile {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
}

.solar-calc__header {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #c2c2c2;
}
.solar-calc__header__step {
    padding: 1rem;
    font-size: 20px;
    font-weight: 500;
    width: 100%;
    color: #dbdbdb;
    display: flex;
    align-items: center;
    transform: translateY(calc(1rem + 15px));
}
.solar-calc__header__step span{
    display: none;
}
.solar-calc__header__step img{
    width: 30px;
    margin: 0 auto;
}
.solar-calc__header__step--active {
    text-transform: uppercase;
    color: #404040;
}
.solar-calc__header__step:nth-of-type(2) {
    text-align: center;
    justify-content: center;
}
.solar-calc__header__step:last-of-type {
    text-align: right;
    justify-content: flex-end;
}

.solar-calc .title {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
	margin-bottom: 0 !important;
}

.solar-calc__first__form {
    display: block;
    margin-bottom: 2rem;
}

.solar-calc__first__form label {
    display: grid;
    padding: 1rem;
    color: #757575;
	position: relative;
}

.solar-calc__first__form input, .solar-calc__first__form textarea {
    margin-top: 0.25rem;
    border: 1px solid #d2d2d2;
    color: #404040;
	border-radius: calc(var(--space-xs) / 2);
	width: 95% !important;
	min-height:unset;
}


.solar-calc-btn {
    font-size: var(--text-m);
    font-family: "Manrope";
    font-weight: 700;
    color: var(--secondary);
    background-color: var(--accent);
    border: 1px solid var(--warning);
    border-radius: calc(var(--space-xs) / 2);
    transition: all 0.5s ease-in-out;
    padding-top: var(--space-xs);
    padding-right: var(--space-l);
    padding-bottom: var(--space-xs);
    padding-left: var(--space-l);
    margin-top: 0;
}
.solar-calc-btn:hover {
    box-shadow: calc(var(--space-xs) / 2) calc(var(--space-xs) / 2) var(--space-s) -20px var(--warning);
    transform: translateY(-5px);
    color: var(--accent);
    background-color: var(--secondary);
}

.solar-calc-action {
    display: flex;
    justify-content: center;
    text-align: center;
}
.solar-calc__calc__form {
    padding: 2rem 0;
}

.solar-calc__sec, .solar-calc__third {
    display: none;
}
.cost-bar {
    padding: 1rem;
    text-align: center;
    display: grid;
    align-items: center;
    justify-content: center;
	font-weight: 500;
}
.cost-bar span:first-child {
    display: none;
}
.cost-new {
    display: flex;
    margin-top: 1rem ;
}
.cost-old .cost-bar {
    background: #c4c4c4;
}
.cost-new .cost-bar:first-of-type {
    background: #eed000;
}
.cost-new .cost-bar:last-of-type {
    background: #98c73a;
}
.solar-calc-intro h1 {
	font-size:28px;
}

#solar-calc-error, .solar-calc-error {
	position: static;
	bottom: 1rem;
	right: 1rem;
	color: red;
	font-size: 14px;
	max-width: 100%;
	text-align: center;
}
.solar-calc-back {
	position: static;
	text-align: center;
    margin-top: 1rem;
}

label[for="verbrauch"]::after {
	display: block;
    content: 'oder';
    bottom: -1rem;
    position: absolute;
    font-weight: 700;
    width: 100%;
    text-align: center;

}

@media (min-width: 800px) {
	#solar-calc-error, .solar-calc-error {
		position: absolute;
		bottom: 2rem;
		right: 1rem;
		color: red;
		font-size: 14px;
		max-width: 45%;
		text-align: right;
	}
	label[for="verbrauch"]::after {
		display: block;
		content: 'oder';
		position: absolute;
		bottom: 2rem;
		right: -0.5rem;
		font-size: 12px;
		width: unset;
		font-weight: 300;
	}
	.solar-calc-back {
		position: absolute;
		bottom: 1rem;
		right: 1rem;
	}
	.solar-calc {
		min-height: 500px;
	}
    .solar-calc__first__form {
        display: grid;
        grid-template-columns: 33% 33% 33%;
    }
    .solar-calc__header__step img{
        width: 30px;
        margin: 0 1rem 0 0;
    }

    .solar-calc__header__step {
        font-size: 22px;
        width: 33.3%;
        transform: translateY(0);
    }
    .cost-bar span:first-child {
        display: block;
    }
    .solar-calc-intro-icons {
        display: grid;
        grid-template-columns: 33.3% 33.3% 33.3%;
		margin: 2rem 0;
    }
    .solar-calc-intro-icons div:nth-child(2) {
        justify-content: center;
    }
    .solar-calc-intro-icons div:nth-child(3) {
        justify-content: flex-end;
    }
    .solar-calc-legend {
        display: none;
    }
    .solar-calc__header__step span{
        display: block;
    }
}

