.tab-container{
	margin: 3vh 0;
}
.tab-nav{
	padding-left: 0;
	margin: 0;
	margin-bottom: -1px;
}
.tab-nav li{
	list-style-type: none;
	margin-bottom: 0;
	display: flex;
}
.tab-nav li button{
	padding: .5em 1em;
	border: none;
	border-bottom: 1px solid transparent;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	background-color: transparent;
	color: gray;
	transition-property: color, background;
	transition-duration: .3s;
}
.tab-nav li button.tab-nav__active{
	color: white;
	background-color: #1f639c;
	border-bottom: 1px solid #febd24;

}
@media screen and (min-width: 992px){
	.tab-nav li button:not(.tab-nav__active):hover{
		color: white;
		background-color: rgba(31, 99, 156, .5);
		border-color: #febd24;
	}
	.tab-nav{
		display: flex;
	}
}
@media screen and (max-width: 991px){
	.tab-nav li button{
		width: 100%;
		text-align: center;
	}
}

.tab-content{
	border-top: 1px solid #1f639c;
	border-bottom: 1px solid #1f639c;
	position: relative;
	/* height: 0; */
	transition-property: height, opacity;
	transition-duration: .3s;
}
.tab-content>div{
	padding: 2em;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	visibility: hidden;
	overflow: hidden;
	opacity: 0;
	transition-property: visibility, opacity;
	transition-duration: .6s;
}
.tab-content>div>:first-child{
	padding-top: 0;
	margin-top: 0;
}
.tab-content>div>:last-child{
	padding-bottom: 0;
	margin-bottom: 0;
}

.tab-content .tab-content__active{
	position: relative;
	visibility: visible;
	overflow: visible;
	opacity: 1;
}