/**
 * demo.css
 *
 * Description: Demo styles for the plugin examples
 * Author: Nomensa
 *
 */
.js-tabs {
    margin: 0;
	background-color: #e2e2e2;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;	
}

/* Tabs control text */
.js-tabs_control-text {
    direction: ltr;
    left: -999em;
    position: absolute;
}

/* Tabs control */
.js-tabs .js-tabs_control {
    float: left;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 999;
	border-bottom: solid 1px #c7c7c7;
	width: 100%;
}

.js-tabs .js-tabs_control li {
	background-color: #e2e2e2;
	float: left;
	margin: 0;
	padding: 0;
	position: relative;
}
.js-tabs .js-tabs_control li:first-child  {
	
	-webkit-border-radius: 4px 0 0 0;
	-moz-border-radius: 4px 0 0 0;
	border-radius: 4px 0 0 0;	
}

.js-tabs .js-tabs_control button {    
    border: none;
    cursor: pointer;
    padding: 8px 17px 10px;
    position: relative;
    outline: 0;
    text-decoration: none;	
	background-color: transparent;
	border-radius: 0px;	
	color: #666;
	min-width: 0;
	font-size: 1.3rem;
	line-height: 1.8rem;
	min-height: 45px;
	width: 100%;
	
	-webkit-box-shadow:	none;
	-moz-box-shadow:	none;
	box-shadow:			none;
}

.js-tabs .js-tabs_control li:first-child button  {
	
	-webkit-border-radius: 4px 0 0 0;
	-moz-border-radius: 4px 0 0 0;
	border-radius: 4px 0 0 0;	
}
.js-tabs .js-tabs_control button:hover {
    /*border-color: #000;*/
    text-decoration: none;
	background-color: #d2d2d2;
}
/* FOCUS = ACTIVE = ITEM--ACTIVE */
.js-tabs .js-tabs_control button:focus {
    /*border-color: #000;*/
    text-decoration: none;
	background-color: #FFF;
}
.js-tabs .js-tabs_control button:active {
    /*border-color: #000;*/
    text-decoration: none;
	background-color: #FFF;
}

.js-tabs .js-tabs_control .badge {
    background-color: #C00000;
    border-radius: 10px;
    font-size: 80%;
    color: #fff;
    display: inline-block;
    margin-left: 5px;
    padding: 0 8px;
    text-decoration: none;
}

/* Selected tabs control */
.js-tabs .js-tabs_control .js-tabs_control-item--active,
.js-tabs .js-tabs_control .js-tabs_control-item--active:focus,
.js-tabs .js-tabs_control .js-tabs_control-item--active:active {
    background-color: #FFF;
    border-bottom: none;
    color: #333;
    top: 1px;
    z-index: 1000;
}

/* Tabs panel */
.js-tabs .js-tabs_panel {
    background-color: #FFF;
    color: #333;
    clear: left;
    display: block;
    /*overflow: auto;*/
    position: relative;
    padding: 20px;
    visibility: visible;
    z-index: 5;
	
	
	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	border-radius: 0 0 4px 4px;	
}

.js-tabs .js-tabs_panel:focus {
    outline: 1px dotted #999;
}

.js-tabs .js-tabs_panel h2 {
    display: inline-block;
}

.js-tabs .js-tabs_panel h2:focus {
    outline: 1px dotted #999;
}

.js-btn,
.js-hide-show_btn {
    background: rgb(255,255,255); /* Fallback */
    background: linear-gradient(to bottom,
      rgba(255,255,255,1) 0%,
      rgba(243,243,243,1) 50%,
      rgba(237,237,237,1) 51%,
      rgba(243,243,243,1) 100%);
    border: 1px solid #dfdfdf;
    border-radius: 5px;
    box-shadow:
      0 1px 3px rgba(000,000,000,0.1),
      inset 0 0 3px rgba(255,255,255,1);
    cursor: pointer;
    display: inline-block;
    font-size: 1em;
    font-weight: 400;
    line-height: 1em;
    margin: 1em 5px;
    padding: 5px 1em;
    text-shadow:
      0 -1px 0 rgba(000,000,000,0.2),
      0 1px 0 rgba(255,255,255,1);
}


/* AFECTA DE 600 PX  =============================*/
@media screen and (max-width: 768px)  {

.js-tabs .js-tabs_control li {
    width: 25%;
}
.js-tabs .js-tabs_control button {
    font-size: 1.2rem;
	line-height: 1.3rem;
	padding: 8px 7px 10px 7px;
}

	
}


/* AFECTA DE 480 PX  =============================*/
@media screen and (max-width: 600px)  {
	.js-tabs {
		margin: 0 10px;
	}
	.js-tabs .js-tabs_control button {
		font-size: 1.0rem;
		line-height: 1.2rem;
		padding: 8px 5px 10px 5px;
	}
	.js-tabs .js-tabs_panel {
		padding: 10px 10px;
	}
}


/* AFECTA DE 320 PX  =============================*/
@media screen and (max-width: 480px)  {
	
	.js-tabs .js-tabs_control button {
		line-height: 1.1rem;
		padding: 8px 2px 10px 2px;
	}

}