.custom_tabs {
	margin-top: 26px;
	margin-bottom: 26px;
	position: relative;
}
.tab_buttons {
	overflow: hidden;
	background-color: #f1f2fa;
	font-size: 14px;
	text-transform: uppercase;
	padding: 5px;
	border-radius: 30px;
	font-weight: 600;
	width: 100%;
	clear: both;
	float:left;
}
.custom_tabs .tab_buttons {
	overflow: hidden;
	width: calc( 100% - 20px );
	margin-left: 10px;
	height: 64px;
}
.custom_tabs .tab_buttons .inner {
	overflow-x: scroll;
	overflow-y: hidden;
	height: 150%;
	width: 100%;
}
.custom_tabs .tab_buttons .inner2 {
	height: 100%;
	word-break: keep-all;
	white-space: nowrap;
}
.custom_tabs .tab_button {
	padding: 10px 20px;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 2px;
    text-transform: uppercase;
	margin-bottom: 10px;
}
.custom_tabs .tab_button.active {
	background-color: white;
    box-shadow: 0 1px 5px 0 rgba(43,45,56,.2);
}
.custom_tabs .tab_button:not(.active) {
	cursor: pointer;
}
.custom_tabs .tab_button:not(.active):hover {
	color: var( --link-color );
}
@media (hover: none) {
   .custom_tabs .tab_button:not(.active):hover {
		color: inherit;
	}
}

.tab_content {
	border-left: 5px solid #1566CA;
	padding-left: 2em;
	padding-right: 1em;
	width: 100%;
	clear: both;
	float: left;
	margin-top: 2em;
	overflow: hidden;
}
.custom_tab:not(.active) {
	display: none;
}


.custom_tabs .arrow {
	position: absolute;
	font-size: 30px;
	top: 0.4em;
	color: var( --link-color );
	padding: 3px 5px;
}
.custom_tabs .arrow.left {
	left: -1.5em;
}
.custom_tabs .arrow.right {
	right: -1.5em;
}

@media( max-width: 1300px ){
	.custom_tabs.has_arrows .tab_buttons {
		margin: 0 20px;
		width: calc( 100% - 40px );
	}
	.custom_tabs .arrow.left {
		left: -0.75em;
	}
	.custom_tabs .arrow.right {
		right: -0.75em;
	}
}

@media( max-width: 1140px){
	.custom_tabs .tab_buttons {
		height: 61px;
	}
}

@media( max-width: 500px){
	.custom_tabs .tab_buttons {
		height: 53px;
	}
	.custom_tabs .tab_button {
		padding: 7px 10px;
	}
	.custom_tabs .arrow {
		font-size: 23px;
	}
	.custom_tabs.has_arrows .tab_buttons {
		margin: 0 30px;
		width: calc( 100% - 60px );
	}
	.custom_tabs .arrow.left {
		left: 0;
	}
	.custom_tabs .arrow.right {
		right: 0;
	}
}




















