/*
*
* ==========================================
* CUSTOM UTIL CLASSES
* ==========================================
*/
.nav-pills-custom .nav-link {
    color: #bcbcbc;
    background: #fff;
    position: relative;
}

.nav-pills-custom .nav-link.active {
    color: #45b649;
    background: #cf0;
}


/* Add indicator arrow for the active tab */
@media (min-width: 992px) {
    .nav-pills-custom .nav-link::before {
        content: '';
        display: block;
        border-top: 8px solid transparent;
        border-left: 10px solid #cf0;
        border-bottom: 8px solid transparent;
        position: absolute;
        top: 50%;
        right: -10px;
        transform: translateY(-50%);
        opacity: 0;
        z-index: 9999;
    }
}

.nav-pills-custom .nav-link.active::before {
    opacity: 1;
}

#footer-content {
  font-size: 0.8rem;
}


/*
*
* ==========================================
* FOR DEMO PURPOSE
* ==========================================
*/
body {
    min-height: 100vh;
    background: linear-gradient(to left, #dce35b, #45b649);
}

a:link {text-decoration: none;color: #328935;font-weight: 700;}
a:visited {text-decoration: none;color: #328935;}
a:hover {text-decoration: underline;color: #3cdb42;}
a:active {text-decoration: underline;color: #328935;}


.lang {
    display: none;
  }
  
  #body.en .en {
    display: block;
  }
  
  #body.ch .ch {
    font-family: "Helvetica", "Arial","LiHei Pro","黑體-繁","微軟正黑體", sans-serif;
    display: block;
  }
  
  #body.de .de {
    display: block;
  }