
* { box-sizing: border-box;
	}

.tab {
    overflow: hidden;
    border: 1px solid var(--text-accent-color);
    background-color: var(--tab-background-color);
	margin: 0% 1%;
	display: flex;
	justify-content: space-evenly;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    color: var(--text-color);
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
	font-size: 120%;
	width: 100%;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: var(--tab-background-hover);
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: var(--tab-background-active);
    font-weight: bold;
}

/* Style the tab content */
.tabcontent {
    display: none;
		margin: 0.5% 1%;
    /*overflow: auto;*/
}

.tablinks{
	width: 25%;
}

/* =============fade in tab content================ */

.tabcontent {
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}