.custom_tab_scroll {
	white-space: nowrap;
	height: 32.5px;
	overflow: hidden;
}
.custom_tab_scroll .arrow {
	width: 40px;
	height: 40px;
	background-color: transparent;
	border: 0;
	font-size: 25px;
	float: left;
	color: #00b4ab;
	padding: 0;
	text-align: center;
	line-height: 20px;
	margin-top: -7.5px;
	display: none;
	opacity: 0;
}
.custom_tab_scroll.show_left_arrow .arrow,
.custom_tab_scroll.show_right_arrow .arrow {
	display: block;
}
.custom_tab_scroll.show_left_arrow .arrow.left {
	opacity: 1;
}
.custom_tab_scroll.show_right_arrow .arrow.right {
	opacity: 1;
}
.custom_tab_scroll .track {
	overflow-y: auto;
	width: 100%;
	margin: 0 10px;
	float: left;
	padding-bottom: 50px;
}
.custom_tab_scroll.show_left_arrow .track,
.custom_tab_scroll.show_right_arrow .track {
	width: calc( 100% - 100px );
}

.custom_tab_scroll .inner {
	display: inline;
}


@media( max-width: 500px ){
	.custom_tab_scroll .inner > * {
		width: 100%;
		margin-right: 0!important;
	}
	.custom_tab_scroll .inner > *:after {
		display: none;
	}
}