/*Sticker*/
.has-sticker {
    position: relative;
}
#sticker1 {
    width: 10rem;
    height: 10rem;
    position: absolute;
    right: -3em;
    top: -3em;
    transform:rotate(5deg) scale(1);
}
#sticker2 {
    width: 10rem;
    height: 10rem;
    position: absolute;
    right: -3em;
    top: 7em;
    transform:rotate(-5deg) scale(1);
}

#sticker1 a,
#sticker2 a {
    width: 10rem;
    height: 10rem;
    font-size: 1.4rem;
    line-height: 1.7rem;
    padding: 1rem;

    background: none #F7323F;
    text-shadow: none;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    text-decoration: none;
    text-align: center;

    font-family: "Univers LT W01_65 Bold",Arial,Helvetica,sans-serif;
    font-weight: 400;


    transition: all 0.5s;
    opacity: 0.9;

}

#sticker1 a:hover,
#sticker2 a:hover {
    transform: rotate(-10deg) scale(1.1);
    color: #fff !important;
    background: none #F7323F;
}



@media (max-width: 1024px) {
    #sticker1 {
        width: 7rem;
        height: 7rem;
        right: 1rem;
        top: -2rem;
    }
    #sticker1 a{
        width: 7rem;
        height: 7rem;
        font-size: 1rem;
        line-height: 1.1rem;
        padding: 0.7rem;
    }
    #sticker2 {
        width: 7rem;
        height: 7rem;
        right: 1rem;
        top: 6rem;
    }
    #sticker2 a{
        width: 7rem;
        height: 7rem;
        font-size: 1rem;
        line-height: 1.1rem;
        padding: 0.7rem;
    }
}


/*Trennstreifen Stellen*/

article .stelle {
    position: relative;
    margin-bottom: 2rem;
}
article .stelle-separator {
    margin-top: 2rem;
    width: 100%;
    height: 10px;
    background-image: linear-gradient(140deg,#fefefe,#fefefe 10px,transparent 11px),repeating-linear-gradient(320deg,#fefefe,#fefefe 7px,#f7323f 8px,#f7323f 18px,#fefefe 19px,#fefefe 22px);
    background-repeat: no-repeat,no-repeat;
    background-size: 100% 10px,100% 10px;
    transform: rotate(180deg);
}
