.jtabs{
	font-size: 16px;
	color: #111;
}

/**
 * tabs navigation
 */
.jtabs .jtabs-nav{
	width: 100%;
}

.jtabs .jtabs-nav ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.jtabs .jtabs-nav li{
	cursor: pointer;
	float: right;
	margin: 0 15px 0 0;
	padding: 7px 15px;
	border-radius: 3px 3px 0 0;
	transition: all .25s ease;
	color: white;
}

.jtabs .jtabs-nav li:hover{
	background-color: #9D464A;
}

.jtabs .jtabs-nav .jtabs-current,
.jtabs .jtabs-nav .jtabs-current:hover{
	background-color: #64AB51;
}

/**
 * tabs content
 */
.jtabs .jtab{
	display: none;
	width: 100%;
	clear: both;
	border-radius: 0 3px 3px 3px;
}

.jtabs .jtab-inner{
	padding: 0px;
	min-height: 200px;
}

.jtabs-iphone-menu-title{
background: #707070;
color: white;
padding: 10px 15px;
	border-radius: 3px 3px 0 0;
	margin: 0 0 1px 0;
}

.jtabs .jtabs-nav ul.jtabs-show{
	display: flex;
}

.jtabs .jtabs-nav .jtabs-iphone-menu{
	display: none;
}

@media (max-width: 650px) {

	.jtabs .jtabs-nav .jtabs-iphone-menu{
		display: block;
	}

	.jtabs .jtabs-nav{
		position: relative;
	}

	.jtabs .jtabs-nav ul{
		display: none;
	}

	.jtabs .jtabs-nav .jtabs-iphone-menu-ul{
		display: none;
		flex-direction: column;
		position: absolute;
		z-index: 1000;
		width: 100%;
		background: #333;
		left: 0;
		top: 40px;
	}

	.jtabs .jtabs-nav li{
		float: none;
		margin: 0 0 1px 0;
		border-radius: 0;
		color: white;
	}

	.jtabs .jtab{
		border-radius: 0 0 3px 3px;
	}
}