
/* Style the tab */
.tab {
    overflow: hidden;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: #5221BD;
    color: #FFFFFF;
    float: right;
    outline: none;
    cursor: pointer;
    padding: 7px 6px;
    transition: 0.3s;
    font-size: 14px;
    border: 1px solid #ccc;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
    color: #000000;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
    color: #000000;
    padding: 16px 6px;
    font-weight: 900;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 30px 8px;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}
