/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 03 2026 | 09:54:29 */
#sticky-wrap i {
position:absolute;
left:22px;
top:50%;
transform:translateY(-50%);
color: #fff; /* Iconfarbe*/
}
#sticky-wrap {
position:fixed;
top:50%;
transform:translateY(-50%);
display:flex;
right:0;
flex-direction:column;
align-items:flex-end;
pointer-events:none;
z-index:10000;
}
.sticky {
position:relative;
width:max-content;
background:#CFA63D; /* Hintergrundfarbe*/
margin-top:15px;
padding: 15px 20px 15px 69px;
transform: translateX(calc(100% - 66px));
transition:transform .4s;
pointer-events:auto;
border:1px solid #fff;	
border-radius:7px 0 0 7px;	

}
.sticky:first-child {
margin-top:0;
}
#sticky-wrap .sticky a {
color:#fff; /* Textfarbe*/
text-decoration:none;
font-family:inherit;
font-size:1.1em;
}
#sticky-wrap .sticky:hover {
transform:translateX(0);
}

@media (max-width:768px){
#sticky-wrap {
top:auto;
transform: none;
bottom:30px;
}
.sticky {
padding: 8px 25px 8px 50px;
transform:translateX(calc(100% - 47px));
}
#sticky-wrap i {
left:12px;
}
}

@media only screen and (max-height: 500px) and (orientation: landscape) {
#sticky-wrap {
display: none !important;
}
}