footer {
    background-color: var(--primary);
    color: var(--font-neg);
}

.cookies {
    position: fixed;
    padding: 15px;
    z-index: 999999;
    opacity: 1;
    left: 20px;
    bottom: 20px;
    background-color: #f0f0f0;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    max-width: 350px;
}

.closeBtn {
    cursor: pointer;
}

.btn-callback {
    position: fixed;
    max-width: 140px;
    max-height: 140px;
    background-color: #2b446d;
    color: #c5c5c5;
    top: 100%;
    transform: translate(10%, -70%);
    left: -15px;
    z-index: 8999;
    padding: 20px 10px 10px 10px;
    border-radius: 50%;
}

.icon-mantis-filled {
    background: none;
    background-color: #c5c5c5;
}

.btn-callback:hover .icon-mantis-filled {

    background-color: #9f9949;
}

.btn-callback:hover {
    transform: translate(10%, -90%);
    transition: transform .5s ease;
}


.btn-callback .icon-mantis-filled {
    transition: background-color .3s ease;
}

.btn-callback h6 {
    color: #fff;
    /*margin:0px; Für "Hilfe"*/
    margin-top: 0.53em;
    margin-bottom: 1em;
}

.callback {
    position: fixed;
    z-index: 9999;
    opacity: 1;
    right: -350px;
    top: 50%;
    transition: right .5s ease;
    transform: translate(0, -50%);
    background-color: #f0f0f0;
    padding: 15px;
    max-width: 350px;
    border: 1px #bbb solid;
}

.callback-body {
    background-color: #d9d9d9;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 15px;
    max-width: 350px;
}

.modalC
{
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.contactModal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 30%;
}

.acceptCookies {
    background-color: rgba(255, 255, 255, 0.782); /* Black background with opacity */
    z-index: 100; /* Specify a stack order in case you're using a different order for other elements */
    position: absolute;
    width: 100%;
    height: 100%;
    text-transform: translate(-50%, -50%);
}

.acceptCookies > .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    -webkit-transform: translate(-50%, -50%);
}

#ui-to-top {
	box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
	position: fixed;
	right: 15px;
	bottom: 15px;
	overflow: hidden;
	z-index: 1;
	-webkit-transform: translateY(100px);
	transform: translateY(100px);
}

#ui-to-top:focus {
	color: #fff;
}

#ui-to-top:hover {
	color: #fff;
	background: #9f9949;
}

#ui-to-top.active {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.mobile #ui-to-top,
.tablet #ui-to-top {
	display: none !important;
}

@media (min-width: 480px) {
	#ui-to-top {
		right: 40px;
		bottom: 40px;
	}
}

#callbackCloseCell {
    position: absolute;
    top: 14px;
    right: 24px;
}

.contact-info dl dt, .contact-info dl dd a {
    color: var(--font-neg);
}