.tabs {
	overflow: hidden;
}

.tabs__header {
	border-bottom: 0.0625rem solid #0033ab;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	margin: 1.875rem 0;
	padding: 0 1.875rem;
	position: relative;
	-webkit-transition: left 200ms, right 200ms;
	transition: left 200ms, right 200ms;
}

.tabs__header-container {
	position: relative;
}

.tabs__tab-item {
	background: #fff;
	border-top: 0.0625rem solid #bdbdbd;
	color: #666;
	cursor: default;
	display: inline-block;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	font-size: 0.875rem;
	font-weight: 500;
	min-width: 10.1875rem;
	padding: 0.625rem 1.25rem;
	text-align: left;
	-webkit-transition: border-color 200ms, color 200ms, -webkit-box-shadow 200ms;
	transition: border-color 200ms, color 200ms, -webkit-box-shadow 200ms;
	transition: border-color 200ms, box-shadow 200ms, color 200ms;
	transition: border-color 200ms, box-shadow 200ms, color 200ms, -webkit-box-shadow 200ms;
	vertical-align: middle;
	white-space: nowrap;
	width: auto;
}

.tabs__tab-item:not (.tabs__tab-item--active ) {
	border-left: 0.0625rem solid #bdbdbd;
	cursor: pointer;
}

.tabs__tab-item:not (.tabs__tab-item--active ):last-child {
	border-right: 0.0625rem solid #bdbdbd;
}

.tabs__tab-item:not (.tabs__tab-item--active ):focus, .tabs__tab-item:not (.tabs__tab-item--active ):hover {
	color: #0033ab;
}

.tabs__tab-item--active+.tabs__tab-item {
	border-left: 0;
}

.tabs__tab-item:first-child {
	border-top-left-radius: 0.375rem;
}

.tabs__tab-item:last-child {
	border-top-right-radius: 0.375rem;
}

.tabs__tab-item::before {
	content: none;
}

.tabs__tab-item--active {
	border-left: 0.0625rem solid #0033ab;
	border-right: 0.0625rem solid #0033ab;
	border-top: 0.0625rem solid #0033ab;
	-webkit-box-shadow: inset 0 0.25rem 0 0 #0033ab;
	box-shadow: inset 0 0.25rem 0 0 #0033ab;
	color: #0033ab;
	font-weight: 600;
	position: relative;
}

.tabs__tab-item--active::after {
	background: #fff;
	bottom: -0.0625rem;
	content: '';
	height: 0.0625rem;
	left: 0;
	position: absolute;
	width: 100%;
}

.tabs__tab-item--hidden {
	display: none;
}

.tabs__tab-content {
	display: none;
}

.tabs__tab-content--active {
	display: block;
}

.tabs__tab-arrow {
	background: #fff;
	border: 0.0625rem solid #0033ab;
	display: none;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: 99;
}

.tabs__tab-arrow:first-child {
	left: 0;
}

.tabs__tab-arrow:last-child {
	right: 0;
}

.tabs__tab-arrow .icon {
	height: 1rem;
}

.tabs__tab-arrow--active {
	display: inline-block;
}