/**
 * Plugin's main stylesheet.
 *
 * @package WordPress
 * @subpackage Custom_Post_Types
 */


@charset "UTF-8";

/* .tabs-shortcode  styles */

.tabs-shortcode:after {
	clear: both;
	content: "";
	display: block;
	height: 0;
	-moz-opacity: 0;
		 opacity: 0;
	visibility: hidden;
}

.tabs-shortcode {
	clear: both;
	display: block;
	margin: 0;
	padding: 0;
}

.tabs-shortcode .tabs-controls {
	clear: both;
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
	z-index: 2;
}

.tabs-shortcode .tabs-controls li {
	background: #eee;
	border: 1px solid #d1d1d1;
	display: block;
	float: left;
	list-style: none;
	margin: 0 4px;
	padding: 4px 8px;
	position: relative;
	-webkit-transition: background-color 0.5s ease 0s;
	   -moz-transition: background-color 0.5s ease 0s;
			transition: background-color 0.5s ease 0s;
}

.tabs-shortcode .tabs-controls li.state-active {
	background: #fff;
	border-bottom: 1px solid #fff;
	z-index: 2;
}

.tabs-shortcode .tabs-container {
	background: #fff;
	border: 1px solid #d1d1d1;
	clear: both;
	display: block;
	padding: 0;
	position: relative;
	top: -1px;
	z-index: 1;
}

.tabs-shortcode .tabs-container .tab {
	background: #fff;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
	display: block;
	-moz-opacity: 0;
		 opacity: 0;
	padding: 1px 0 0;
	position: absolute;
	-webkit-transition: opacity 0.5s ease 0s;
	   -moz-transition: opacity 0.5s ease 0s;
			transition: opacity 0.5s ease 0s;
	visibility: hidden;
	width: 100%;
	z-index: 0;
}

.tabs-shortcode .tabs-container .tab.state-active {
	-moz-opacity: 1;
		 opacity: 1;
	visibility: visible;
	z-index: 1;
}