.tarifeinklinker{
	position: fixed;
	bottom: 0;
	transform: translate(-100%, 0%);
	z-index: 999;
	transition: transform .5s ease-in-out;
}

.tarifeinklinker.show{
	transform: translate(0%, 0%);
	transition: transform .5s ease-in-out;
}

.tarifeinklinker #form-strom.active,
.tarifeinklinker #form-gas.active{
	display: flex;
}

.tarifeinklinker #form-strom,
.tarifeinklinker #form-gas{
	display: none;	
}

.tarifeinklinker label{
	font-size: 18px;
}

.tarifeinklinker .switch{
	display: flex;
	gap: 30px;
}


.tarifeinklinker .strom,
.tarifeinklinker .gas{
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	margin-bottom: 30px;
}

.tarifeinklinker .strom.active svg,
.tarifeinklinker .gas.active svg{
	background-color: var(--colorYellow);
}

.tarifeinklinker .switch svg{
	width: 50px;
	height: 50px;
	background-color: var(--colorWhite);
	border-radius: 100%;
	padding: 5px;
}

.tarifeinklinker .switch svg:hover,
.tarifeinklinker .switch svg:active{
	background-color: var(--colorYellow);
}

.tarifeinklinker .tarif-form{
	flex-direction: column;
}

.tarifeinklinker .tariffinder{
	border-radius: 0;
	padding: 0 90px 60px 60px;
	margin: 0;
}

.tarifeinklinker .tariffinderclose{
	position: absolute;
	display: flex;
	align-items: center;
	font-size: 30px;
	top: 0;
	right: 0;
	background-color: var(--colorYellow);
	height: 100%;
	width: 30px;
	cursor: pointer;
	z-index: 1;
}

.tarifeinklinker .tariffinder .tarif-title{
	margin: 0 0 15px 0;
	transform: translateY(0);
	position: relative;
	display: inline-block;
	padding: 10px 30px;
	background-color: var(--colorYellow);
	color: var(--colorBody);
	text-transform: none;
	border-radius: 0;
}

.tarifeinklinker .tariffinderbutton{
	position: absolute;
	padding: 15px;
	right: 0;
	top: 0;
	background-color: var(--colorYellow);
	color: var(--colorBody);
	transform: rotate(-90deg);
	transform-origin: top right;
	font-weight: 700;
	cursor: pointer;
}

.tarifeinklinker.show .tariffinderbutton{
	display: none;
}

@media (max-width: 1399px){
	.tarifeinklinker .tariffinderbutton{
		padding: 5px 15px;	
	}
}

@media (max-width: 991px){
	.tarifeinklinker{
		display: none;
	}
}