/**
 * Tabs
 * =========================================== */
.utp-tabs {
	width: 100%;
	display: flex;
	align-items: stretch;
	background-color: #fff;
	list-style: none;
	padding: 0;
	border-radius: 2px;
	text-align: center;
	margin-bottom: 0;
	box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
				0px 4px 5px 0px rgba(0, 0, 0, 0.14),
				0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.utp-tabs > li {
	display: flex;
}
.utp-tabs > li > a {
	display: flex;
	align-items: center;
	text-decoration: none;
	padding: 10px;
	color: #333;
	position: relative;
}
.utp-tabs > li > a:before {
	content: '';
	display: block;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	background-color: transparent;
	transition: all 0.3s;
}
.utp-tabs > .active > a:before {
	background-color: #00a0d2;
}
.utp-tabs > li > a > i {
	font-size: 16px;
}
.utp-tabs > .disabled {
	pointer-events: none;
	opacity: .5;
}
.utp-tabs > .left-auto {
	margin-left: auto;
}
.utp-tabs-md > li > a {
	padding-top: 10px;
	padding-bottom: 10px;
}
.utp-tabs-content {
	padding: 15px;
}
.utp-nav-tabs > li > a {
	border-radius: 2px 2px 0 0;
	padding: 3px 7px;
}
.utp-nav-tabs > li > a:hover {
	background-color: #e3e4e8;
	color: #0073aa;
}