html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    /*	margin-bottom: 60px;*/
    padding-top: 60px;
    padding-bottom: 50px
}

.container {
    max-width: inherit;
}

a.nav-link.active1 {
    /*Für MVC Seiten*/
    color: white;
    text-decoration-color: #555;
    text-decoration-line: underline;
    text-decoration-thickness: 3px;
    text-decoration-style: solid;
}

a.nav-link.active.align-middle.px-0 {
    color: azure;
    background-color: transparent;
}

i.icon {
    /*Set Icon style red*/
    color:red;
}

.glyphicons-nav:before {
    padding-top: 4px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}

#button {
    display: inline-block;
    background-color: #969189;
    width: 40px;
    height: 40px;
    text-align: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    margin: 2px;
    position: fixed;
    bottom: 90px;
    right: 0px;
    transition: background-color .3s;
    z-index: 1000;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
}

    #button:hover {
        cursor: pointer;
        background-color: #333;
    }

    #button:active {
        background-color: #555;
    }

    #button::after {
        content: "\f077";
        font-family: "Font Awesome 6 Free";
        font-weight: 600;
        font-style: normal;
        font-size: 2em;
        line-height: 40px;
        color: #fff;
    }


    #button.show {
        opacity: 1;
        visibility: visible;
    }

.dropdown-menu-dark {
    padding-top: 0.5rem;
    padding-right: 6px;
    padding-bottom: 0.5rem;
    padding-left: 16px;
}

.footer {
    position: fixed !important;
    bottom: 0;
    width: 100%;
    line-height: 40px !important;
    height: 40px;
    background-color: #fff;
}
/*************************************/

.rowclr {
      background: #fff;
  }
  .rowclr:nth-child(2n) {
      background: #ccc;
  }