.ui-slider-tabs {
	
}

.ui-slider-tabs-list {
	opacity: 0;
}

.ui-slider-tabs-list.show {
	opacity: 1;
	transition: all 0.5s ease 0.5s;
}

.ui-slider-tabs-list-wrapper {
	position: -webkit-sticky;
	position:         sticky;
	top: 0;
	width: 100%;
	z-index: 50;
}

.ui-slider-tabs-list-wrapper.bottom {
	margin: -1px 0 0 0;
}

.ui-slider-tabs-list-container {
	position: relative;
	box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
}

.ui-slider-tabs-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	bottom: 0;
	padding: 0;
	list-style: none;
	margin: 0px auto;
	list-style: outside none none;
	width: 100%;
	border-radius: 10px 10px 0 0;
	background-color: #fff;
}

.ui-slider-tabs-list li {
	position: relative;
	display: inline-block;
	margin: 0;
	flex: 1;
	font-weight: bold;
}

.ui-slider-tabs-list li:first-of-type {
	
}

.ui-slider-tabs-list li:last-child:after {
	display: none;
}

.ui-slider-tabs-list a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 15px 10px;
	outline: none;
	box-sizing: border-box;
	border-bottom: 3px solid rgba(0,0,0,0);
	font-size: 1.1rem;
	line-height: 1.4;
	color: rgba(0,0,0,0.5);
	transition: all ease 0.2s;
}

.ui-slider-tabs-list .inner {
	display: block;
}

.ui-slider-tabs-list a:hover {
	color: #000;
	border-bottom-color: rgba(0,0,0,0.3);
}

.ui-slider-tabs-list .selected a {
	border-bottom-color: var(--color-link);
	color: var(--color-link);
}

.ui-slider-tabs-list-wrapper.bottom .ui-slider-tabs-list li.selected {
	
}

.ui-slider-tabs-list .selected a {
	cursor: default;
	color: #000;
}

.ui-slider-tabs-content-container {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.ui-slider-tab-content {
	position: absolute;
	display: none;
	top: 0;
	left: 0;
	padding: 10px;
}

.ui-slider-left-arrow, .ui-slider-right-arrow, .ui-slider-left-arrow.edge:hover, .ui-slider-right-arrow.edge:hover{
	display: block;
	position: absolute;

	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#f5f5f5',GradientType=0 ); /* IE6-9 */
}
.ui-slider-left-arrow:hover, .ui-slider-right-arrow:hover{
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}

.ui-slider-left-arrow {
	left: 0;
	top: 0;
	box-shadow: 2px 0px 1px rgba(0,0,0,.06);
	border-top-left-radius: 4px;
}
.ui-slider-left-arrow div {
	background-image: url('images/leftArrow.png');
	background-repeat: no-repeat;
	background-position: center center;
	height: inherit;
}
.ui-slider-left-arrow.edge div {
	opacity: .25;
}
.ui-slider-left-arrow.edge {
	box-shadow: none;
	cursor: default;
}
.ui-slider-tabs-list-wrapper.bottom .ui-slider-left-arrow {
	border-top-left-radius: 0;
	border-bottom-left-radius: 4px;
}

.ui-slider-right-arrow{
	top: 0;
	right: 0;
	box-shadow: -2px 0px 1px rgba(0,0,0,.06);
	border-top-right-radius: 4px;
}
.ui-slider-right-arrow div{
	background-image: url('images/rightArrow.png');
	background-repeat: no-repeat;
	background-position: center center;
	height: inherit;
}
.ui-slider-right-arrow.edge div{
	opacity: .25;
}
.ui-slider-right-arrow.edge{
	box-shadow: none;
	cursor: default;
}
.ui-slider-tabs-list-wrapper.bottom .ui-slider-right-arrow{
	border-top-right-radius: 0;
	border-bottom-right-radius: 4px;
}

.ui-slider-tabs-indicator-container{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
}

.ui-slider-tabs-indicator {
	width: 10px;
	height: 10px;
	background-image: url('images/indicator.png');
	background-repeat: no-repeat;
	display: inline-block;
	margin-right: 3px;
	cursor: pointer;
}
.ui-slider-tabs-indicator.selected {
	background-image: url('images/indicatorActive.png');
}

.ui-slider-tabs-leftPanelArrow {
	position: absolute;
	left: 10%;
	bottom: 30px;
	width: 30px;
	height: 30px;
	background-image: url('../../../common/images/arrow_contents_wt.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-color: var(--color-link);
	background-size: 10px auto;
	cursor: pointer;
	opacity: 0.5;
	border-radius: 50%;
	transition: all ease 0.1s;
	transform: rotate(180deg);
}

.ui-slider-tabs-rightPanelArrow {
	position: absolute;
	right: 10%;
	bottom: 30px;
	width: 30px;
	height: 30px;
	background-image: url('../../../common/images/arrow_contents_wt.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-color: var(--color-link);
	background-size: 10px auto;
	cursor: pointer;
	opacity: 0.5;
	transition: all ease 0.1s;
	border-radius: 50%;
}

.ui-slider-tabs-rightPanelArrow.showOnHover, .ui-slider-tabs-leftPanelArrow.showOnHover {
	opacity: 0.5;
	/*display: none;*/
}

.ui-slider-tabs-content-container:hover .ui-slider-tabs-rightPanelArrow.showOnHover,.ui-slider-tabs-content-container:hover .ui-slider-tabs-leftPanelArrow.showOnHover{
	opacity: .5;
	/*display: inline-block;*/
}
.ui-slider-tabs-content-container .ui-slider-tabs-leftPanelArrow:hover,
.ui-slider-tabs-content-container .ui-slider-tabs-leftPanelArrow.showOnHover:hover {
	opacity: 1;
	transform: scale(1.1) rotate(180deg);
}


.ui-slider-tabs-content-container .ui-slider-tabs-rightPanelArrow:hover,
.ui-slider-tabs-content-container .ui-slider-tabs-rightPanelArrow.showOnHover:hover {
	opacity: 1;
	transform: scale(1.1);
}


@media screen and (min-width: 768px) {
	.ui-slider-tabs-list {
		flex-wrap: nowrap;
		bottom: 0;
	}

	.ui-slider-tabs-list li {
		width: auto;
	}

	.ui-slider-tabs-list li a {
		padding: 15px 20px;
	}
}

@media screen and (min-width: 1280px) {
	.ui-slider-tabs-list li a {
		font-size: 1.5rem;
		padding: 20px 40px;
	}
}