/****************************************************************************
 * General
 ****************************************************************************/
.typo_tabs .tab_list li,
.typo_tabs .tab_contents .tab_content{
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

/****************************************************************************
 * Tab-List
 ****************************************************************************/
.typo_tabs .tab_list{
    display: block; margin: 0 auto 1rem; padding: 0; text-align: center;
}
.typo_tabs .tab_list li{
    display: inline-block; margin: 0 .25rem .5rem;
    line-height: 2; padding: 0 1rem; cursor: pointer;
    background-color: #AFAFAF; border-radius: .25rem;
}
.typo_tabs .tab_list li.active{
    background-color: #2199e8;
    color: #FFFFFF; cursor: default;
}

/****************************************************************************
 * Tab-Content
 ****************************************************************************/
.typo_tabs .tab_contents .tab_content{
    display: none; opacity: 0; visibility: hidden;
}
.typo_tabs .tab_contents .tab_content.active{
    display: block; opacity: 1; visibility: visible;
}
