.tab__content-0{
	display: none;
}

.tab__content-1{
	display: none;
}

.is_active {
	color: #FFFFFF;
}

.is_show {
    display: block;
    animation: show .3s linear 0s;
}

@keyframes show{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
