.extended-tabs {
	border: 0;
	text-align: center; 
	font-weight: 500;
	margin: 50px 0 0; 
 	padding: 0; 
	background: transparent;  
	position: relative;
	border-bottom: 1px solid rgba(0,0,0,0.2); 
	z-index: 1;
}


.extended-tabs li {

    display: inline-block;
	background: transparent;
    padding: 0.6em 0;
	position: relative;
	width: 33%;
	margin: 0 0 0 -4px;
}

.extended-tabs li a,
.extended-tabs li a:hover,
.extended-tabs li.is-active a  { 
	background: transparent;
	font-size: 1.4em;
}


ul.extended-tabs > li.is-active:before, 
ul.extended-tabs > li.is-active:after, 
ul.extended-tabs > li:hover:before, 
ul.extended-tabs > li:hover:after, 
ul.extended-tabs > li:focus:before, 
ul.extended-tabs > li:focus:after {
    opacity: 1;
}
ul.extended-tabs > li:after, 
ul.extended-tabs > li.is-active:hover:after, 
ul.extended-tabs > li.is-active:focus:after {
    content: "";
    background: #fff;
    position: absolute;
    width: 12px;
    height: 12px;
    left: 50%;
    bottom: -6px;
    margin-left: -6px;
    transform: rotate(45deg);
    box-shadow: inset 3px 3px 3px rgba(22, 195, 255, 0.5), 
	inset 1px 1px 1px rgba(0, 0, 0, 0.3);
}
ul.extended-tabs > li:before, 
ul.extended-tabs > li:after {
    opacity: 0;
    transition: 0.3s ease;
}
ul.extended-tabs > li:before, 
ul.extended-tabs > li.is-active:hover:before, 
ul.extended-tabs > li.is-active:focus:before {
    content: "";
    position: absolute;
    z-index: -1;
    box-shadow: 0 2px 3px rgba(22, 195, 255, 0.5);
    top: 50%;
    bottom: 0px;
    left: 5px;
    right: 5px;
    border-radius: 100px / 10px;
}

ul.extended-tabs > li {
    display: inline-block;
    background: #fff;
    padding: 0.6em 0;
    position: relative;
    width: 33%;
    margin: 0 0 0 -4px;
}
ul.extended-tabs {
    text-align: center;
    font-weight: 500;
}
.extended-tabs.tabs-content {
	border:0;
}

.extended-tabs.tabs-content .tabs-panel {
  animation-duration: 4s;
  animation-name: fadeOut;
}
.extended-tabs.tabs-content .tabs-panel.is-active {
  animation-duration: 4s;
  animation-name: fadeIn;
}
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
@keyframes fadeOut {
	from { opacity: 1; }
	to { opacity: 0; }
}