/* CSS */

/* Abstand des oberen Container zur Navigation, damit dieser nicht verdeckt wird! */
.nav-abstand {
    margin-top: 70px;
}

.example
{
    padding-top: .75rem;
    padding-bottom: .75rem;
    background-color: rgba(39,41,43,0.03);
    border: 1px solid rgba(39,41,43,1.0);
    margin-top: 15px;
}

/* Font Awesome Icon färben */
.fa-apple-pay {
    color: green;
}

/* Hover-Effekt bei der Navigation */

/*
a:after{
    content: "";
    position: absolute;
    background-color: #ff3c78;
    height: 3px;
    width: 0;
    left: 0;
    bottom: -10px;
    transition: 0.3s;
}
*/
.pb-hover a:hover{
    /*color: #ffffff;*/
    color: red;
}
/*
a:hover:after{
    width: 100%;
}
*/
