#karte {
position: relative;
overflow: hidden;
width: 858px;
}
.iconKarte {
width: 20px;
height: 20px;
position: absolute;
border-radius: 20px;
border: 2px solid #66512d;
left: 10px;
top: 10px;
background: linear-gradient(to bottom, #fb8a54 11%, #9d1b1b 68%);
box-shadow: -2px 6px 15px 1px #000000;
z-index: 5;
}
.iconKarte span {
background-color: #000;
color: #FFF;
padding: 5px;
margin-top: 30px;
position: absolute;
border-radius: 5px;
width: 150px;
font-size: 0.7em;
text-align: left;
left: -70px;
box-shadow: 0px 3px 0px 0px #967742;
opacity:0;
display: none;
}

.iconKarte:hover span {
display: block;
opacity:1;
transition:opacity 3000ms;
}



.iconKarte:active > span {
    display: block;
    opacity:1;
    }

.iconKarte:hover {
box-shadow: 5px 5px 22px 12px #FFF;
transition: 1s;
}
#karte p {
    margin-bottom: 0;
}

.wolke {
    position: absolute; 
    left: -470px; 
    top: -50px;
    width: 463px; 
    height: 197px; 
    background-image: url('../img/karte/wolke.png');
    background-repeat: no-repeat;
}

.aniWolke1 {
    animation-name: wolke;
    animation-duration: 35s;
    animation-iteration-count: infinite;
}

.aniWolke2 {
    animation-name: wolke;
    animation-duration: 65s;
    animation-iteration-count: infinite;
}

@keyframes wolke {
    from {left: -470px;}
    to {left: 970px;}
}

@media screen and (max-width: 40em) {
#karte {
    width: 100%;
    position: relative;
    overflow: auto;
    }
    .aniWolke1, .aniWolke2 {
        display: none;
    }
}