/* Style the tab */
.tab {
    overflow: hidden;
}

/* Style the tab content */
.tabcontent {
    animation: fadeEffect 1s;
    display: none;
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}