
.content_article {

    & li::marker {
        vertical-align: top;
    }
}

.termine {

    /* border-bottom: 1px solid black; */
    -webkit-tap-highlight-color: transparent;
    & .termin {
        cursor: pointer;
        display: grid;
        grid-template-columns: 20px 100px 1fr 200px;
        border-bottom: 1px solid rgb(231, 231, 231);
        
        /* Entfernt die Border nur beim letzten .termin */
        &.termin:last-of-type {
            border-bottom: 0;
        }
        
        & img {
            animation: lk_wackeln_weiterbildung 1s linear infinite;
            height: 15px;
            margin-right: 20px;
        }

        & [class] {
            display: flex;
            align-items: center;  
            padding: 5px;
        }

        & div:last-child {
            display: block;
            text-align: right;
        }
    }

    & .termin {
        -webkit-tap-highlight-color: transparent;
    }
    
    & .termin:hover, & .termin:active {
        background-color: rgb(231, 231, 231);
        border-radius: 5px;
    }
}
    
.tooltip-box {
    position: absolute;
    background: black;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    pointer-events: none; 
    transform: translate(-50%, -120%);
    opacity: 0;
    transition: opacity 0.2s;
}

@keyframes lk_wackeln_weiterbildung {
    0%{
        transform: translateX(0px);
    }
    33% {
        transform: translateX(2px);
    }
    66% {
        transform: translateX(0px);
    }
    66% {
        transform: translateX(-2deg);
    }
}

@media screen and (max-width:550px) {
	.termine {

        & .termin {
            display: grid;
            grid-template-columns: 15px 80px 1fr 100px;
            border-bottom: 1px solid rgb(231, 231, 231);
        }

        
    }

    .article_content {
        font-size: 12px;
    }

}

/* Bild nach dem Laden über 3 Sekunden verschwommen darstellen */
.blur_image {
    animation: blurHero 3s ease forwards;
}

@keyframes blurHero {
    0% { filter: blur(0px); }
    100% { filter: blur(10px); }
}
