/**
 * Plugin Name: 	Spectra
 * Theme Author: 	Mariusz Rek - Rascals Themes
 * Theme URI: 		http://rascals.eu/spectra
 * Author URI: 		http://rascals.eu
 * File:			shortcodes.css
 * =========================================================================================================================================
 *
 * @package spectra-plugin
 * @since 1.0.0
 */


/* ----------------------------------------------------------------------
	Tracks Carousel
/* ---------------------------------------------------------------------- */

/* Wrapper */
.tracks-carousel-wrap {
}

/* Slider */
.tracks-carousel-wrap .carousel-tracks-slider {
	margin-bottom: 30px;
}

/* Heading */
.tracks-carousel-wrap .tracks-carousel-heading {
	margin-bottom: 30px;
}

/* Button */
.tracks-carousel-wrap .more-posts {
	margin-top: 30px;
}

/* Article */
.tracks-carousel-wrap .slide {
	margin: 0px 10px;
}
.tracks-carousel-wrap .thumb-desc {
	background-color: #333;
	margin-bottom: 0;
}
.tracks-carousel-wrap .thumb-desc:before {
	display: none;
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 40px;
	height: 40px;
	margin-top: -34px;
	margin-left: -20px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	z-index: 5;
	text-align: center;
	color: #fff;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.8);
}
.tracks-carousel-wrap .thumb-desc.sp-play:before, .tracks-carousel-wrap .thumb-desc.sp-pause:before, .tracks-carousel-wrap .thumb-desc.sp-loading:before {
	display: block
}
.tracks-carousel-wrap .thumb-desc.sp-play:before {
	background-image: url(../images/eq.gif);
	background-position: center center;
	background-repeat: no-repeat;
}
.tracks-carousel-wrap .thumb-desc.sp-loading:before {
	background-image: url(../images/loader.gif);
	background-position: center center;
	background-repeat: no-repeat;
}
.tracks-carousel-wrap .thumb-desc.sp-pause:before {
	display: block;
	font-family: 'Scamp-Player';
	font-size: 22px;
	line-height: 40px;
	content: "\e611";
}
.tracks-carousel-wrap .thumb-desc i {
	font-style: normal;
}


/* ----------------------------------------------------------------------
	Posts Grid
/* ---------------------------------------------------------------------- */

/* Wrapper */
.posts-grid-wrap {
}

/* Heading */
.posts-grid-wrap .posts-grid-heading {
	margin-bottom: 30px;
}

/* Button */
.posts-grid-wrap .more-posts {
	margin-top: 30px;
}


/* ----------------------------------------------------------------------
	Posts Carousel
/* ---------------------------------------------------------------------- */

/* Wrapper */
.posts-carousel-wrap {
}

/* Slider */
.posts-carousel-wrap .carousel-posts-slider {
	margin-bottom: 30px;
}

/* Heading */
.posts-carousel-wrap .posts-carousel-heading {
	margin-bottom: 30px;
}

/* Button */
.posts-carousel-wrap .more-posts {
	margin-top: 30px;
}

/* Article */
.posts-carousel-wrap article {
	margin: 0px 10px !important;
}
.posts-carousel-wrap .thumb-desc {
	background-color: #333;
	margin-bottom: 0;
}


/* ----------------------------------------------------------------------
	Recent Posts
/* ---------------------------------------------------------------------- */

/* Wrapper */
.recent-posts-wrap {
}
.recent-posts-wrap:after {
	clear: both;
	content: ' ';
	display: block;
	font-size: 0;
	height: 0;
	line-height: 0;
	visibility: hidden;
	width: 0
}

/* Heading */
.recent-posts-wrap .recent-posts-heading {
	margin-bottom: 30px;
	margin-top: 20px;
}

/* Button */
.recent-posts-wrap .more-posts {
	margin-top: 20px;
}

/* Recent Post */
.recent-post {
	position: relative;
	width: 25%;
	float: left;
}
.recent-post:before {
	content: "";
	display: block;
	padding-top: 100%;
}

/* Content */
.recent-post-content {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	color: white;
	padding: 1px;
}
.recent-post-content div {
	width: 100%;
	height: 100%;
}
.recent-post-content .cell {
	text-align: center;
	vertical-align: middle;
	width: 100%;
	height: auto;
	padding: 0 10px;
	position: absolute;
	z-index: 1;
	top: 40%;
}
.recent-post-content .front.front-post-thumb .post-title, .recent-post-content .front.front-post-thumb .date {
	text-shadow: -1px 0px 10px rgba(0, 0, 0, 1);
	color: #fff;
}
.recent-post-content span {
	display: block
}
.recent-post-content .date {
	font-size: 13px;
	color: #999;
	font-style: italic;
}
.recent-post-content .post-title {
	font-size: 22px;
	line-height: normal;
}
.recent-post-content .readmore {
	display: inline-block;
	border: 1px solid #eee;
	padding: 10px 30px;
	background: transparent;
	color: #fff;
}


/* Flipper
 --------------------------------*/

/* entire container, keeps perspective */
.flip-container {
	-webkit-perspective: 1000;
	-moz-perspective: 1000;
	-o-perspective: 1000;
	perspective: 1000;
}

/* flip speed goes here */
.flipper {
	-moz-transform: perspective(1000px);
	-moz-transform-style: preserve-3d;
	position: relative;
	width: 100%;
}

/* hide back of pane during swap */
.front, .back {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: 0.6s;
	-webkit-transform-style: preserve-3d;
	-moz-transition: 0.6s;
	-moz-transform-style: preserve-3d;
	-o-transition: 0.6s;
	-o-transform-style: preserve-3d;
	transition: 0.6s;
	transform-style: preserve-3d;
	position: absolute;
	top: 0;
	left: 0;
}

/* back, initially hidden pane */
.back {
	-webkit-transform: rotateY(-180deg);
	-moz-transform: rotateY(-180deg);
	-o-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	z-index: 1;
	background-color: #444;
}
.flip-container:hover .back {
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-o-transform: rotateY(0deg);
	transform: rotateY(0deg);
}
.flip-container:hover .front {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

/* front pane, placed above back */
.front {
	z-index: 2;
	background: #333;		/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiM0YzRjNGMiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMmQyZDJkIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-radial-gradient(center, ellipse cover, #4c4c4c 0%, #2d2d2d 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #4c4c4c), color-stop(100%, #2d2d2d)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover, #4c4c4c 0%, #2d2d2d 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover, #4c4c4c 0%, #2d2d2d 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover, #4c4c4c 0%, #2d2d2d 100%); /* IE10+ */
	background: radial-gradient(ellipse at center, #4c4c4c 0%, #2d2d2d 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4c4c4c', endColorstr='#2d2d2d', GradientType=1); /* IE6-8 fallback on horizontal gradient */
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* For older browser */
.no-csstransforms3d .flip-container:hover .front {
	visibility: hidden;
}

/* For IE10 */
.ie10 .flip-container:hover .flipper {
	transform: rotateY(0);
}

/* ----------------------------------------------------------------------
Process Steps
/* ---------------------------------------------------------------------- */
.steps {
	text-align: center;
	margin-bottom: 20px;
}
.steps .step {
	display: inline-block;
	padding: 20px;
	position: relative;
	width: 24%;
}
.steps .step:after {
	font-family: "icomoon";
	content: "\e64b";
	position: absolute;
	right: -10px;
	top: 50%;
	margin-top: -30px;
	color: #666;
	font-weight: 300;
	font-size: 18px;
}
.steps .step:last-child:after {
	display: none;
}
.steps .step a {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	overflow: hidden;
	border: 3px solid #999;
	-webkit-box-shadow: inset 2px 3px 5px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: inset 2px 3px 5px 0px rgba(0, 0, 0, 0.75);
	box-shadow: inset 2px 3px 5px 0px rgba(0, 0, 0, 0.75);
	z-index:3
}
.steps .step a:hover {
	border-color: #fff;
}
.steps .step a img {
	vertical-align: middle;
	position: relative;
	z-index: 0;
	border-radius:100%;
}
.steps .step .step-number {
	position: absolute;
	left: 50%;
	top: 0px;
	width: 50px;
	height: 50px;
	margin-left: -25px;
	text-align: center;
	color: #fff;
	background-color: #f4624a;
	font-weight: 300;
	line-height: 50px;
	overflow: hidden;
	border-radius: 100%;
	font-size: 18px;
	z-index: 3;
}

/* ----------------------------------------------------------------------
Tweets
/* ---------------------------------------------------------------------- */
.tweets {
	list-style: none;
	margin: 0;
}
.tweets li {
	margin: 0 0 20px 0;
	font-size: 14px;
	color: #999;
}
.tweets li:before {
	content: "\2014";
	color: #666;
	padding-bottom: 5px;
	display: block;
}
.tweets li:first-child:before {
	display: none;
}
.tweets li .date a {
	display: block;
	margin-top: 12px;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #666;
	border: none;
	font-weight: normal;
	width: 100%;
}
.tweets li .date a:hover {
	color: #f4624a;
}

/* ----------------------------------------------------------------------
Tweets Slider
/* ---------------------------------------------------------------------- */
.tweets-slider {
	text-align: center;
	overflow: hidden;
	height: 190px;
}
.tweets-slider .slide {
	color: #fff;
	font-size: 24px;
	font-style: italic;
	padding: 0 20px;
}
.tweets-slider .slide a:hover {
	color: #fff;
}
.tweets-slider .slide .date {
	display: block;
	margin-top: 20px;
	margin-bottom: 60px;
	opacity: .7;
	text-transform: uppercase;
	font-size: 18px;
}
.tweets-slider .slide .date a {
	color: #fff;
	font-weight: 400;
}
.tweets-slider .slide .date a:hover {
	color: #f4624a;
	opacity: 1;
}

/* ----------------------------------------------------------------------
Stats
/* ---------------------------------------------------------------------- */
ul.stats {
	list-style: none;
	overflow: hidden;
	height: 530px;
}
ul.stats li {
	position: relative;
	overflow: hidden;
	padding: 0;
	text-align: center;
	padding-bottom: 50px;
	margin: 0 0 30px 0;
	width: 33.333%;
	float: left;
}
ul.stats li:nth-child(odd) .stat-value, ul.stats li.odd .stat-value {
	color: #fff;
	color: rgba(255, 255, 255, 0.8);
}
ul.stats li .stat-value {
	font-size: 140px;
	color: #fff;
	color: rgba(255, 255, 255, 0.5);
	font-weight: bold;
	line-height: normal;
}
ul.stats li .stat-name {
	position: absolute;
	text-transform: uppercase;
	left: 0;
	bottom: 0;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	opacity: 0.8;
	width: 100%;
	text-align: center;
}
ul.stats li .stat-value:after {
	content: "";
	display: block;
	position: absolute;
	width: 1px;
	height: 40px;
	left: 50%;
	bottom: 30px;
	background-color: #fff;
	opacity: 0.7;
}

/* ----------------------------------------------------------------------
Intro Ticker
/* ---------------------------------------------------------------------- */
#ticker-wrap {
	width: 100%;
	padding: 30px 0 40px;
}
#ticker {
	height: 110px;
	overflow: hidden;
	text-align: center;
	font-size: 98px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 0;
	list-style: none;
}
#ticker li {
	margin: 0;
	padding: 0 0 20px 0;
	height: 98px;
	color: #fff;
	line-height: normal;
}

/* ----------------------------------------------------------------------
Tracklist Grid
/* ---------------------------------------------------------------------- */
.tracklist-grid {
	overflow: hidden;
	margin-bottom: 30px;
}
.tracks-grid-2-col, .tracks-grid-3-col, .tracks-grid-4-col, .tracks-grid-5-col {
}
.tracks-grid-2-col .tracks-grid-item {
	width: 50%;
}
.tracks-grid-3-col .tracks-grid-item {
	width: 33.33%;
}
.tracks-grid-4-col .tracks-grid-item {
	width: 25%;
}
.tracks-grid-5-col .tracks-grid-item {
	width: 20%;
}
.tracks-grid-item .track-meta {
	margin: 2px 0;
	color: #999;
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	-ms-text-overflow: ellipsis;
}
.tracks-grid-item .track-meta.hidden {
	display: none;
}
.tracks-grid-item .track-title, .tracks-grid-item .track-artists {
	font-size: 12px;
	color: #ddd;
	line-height: normal;
}
.tracks-grid-item .track-artists {
	color: #999;
	font-style: italic;
}
.tracks-grid-item .track-artists:before {
	content: " - ";
}
.tracks-grid-item {
	padding: 4px;
	float: left;
	position: relative;
	max-width: 100%;
	z-index: 1;
}
.tracks-grid-item:before {
	display: none;
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 40px;
	height: 40px;
	margin-top: -34px;
	margin-left: -20px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	z-index: 5;
	text-align: center;
	color: #fff;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.8);
}
.widget .tracks-grid-item:before {
	margin-top: -20px;
}
.tracks-grid-item.sp-play:before, .tracks-grid-item.sp-pause:before, .tracks-grid-item.sp-loading:before {
	display: block
}
.tracks-grid-item.sp-play:before {
	background-image: url(../images/eq.gif);
	background-position: center center;
	background-repeat: no-repeat;
}
.tracks-grid-item.sp-loading:before {
	background-image: url(../images/loader.gif);
	background-position: center center;
	background-repeat: no-repeat;
}
.tracks-grid-item.sp-pause:before {
	display: block;
	font-family: 'Scamp-Player';
	font-size: 22px;
	line-height: 40px;
	content: "\e611";
}
.tracks-grid-item img {
	margin-bottom: 0;
	max-width: 100%;
	max-height: 100%;
	vertical-align: middle;
	display: block;
}

/* ----------------------------------------------------------------------
Single Track
/* ---------------------------------------------------------------------- */
.single-track {
	margin-bottom: 30px;
	padding: 15px;
	position: relative;
	overflow: hidden;
	background-color: #333;
	border-radius: 3px;
}
.single-track .track {
	position: relative;
	display: block;
	min-height: 100px;
	overflow: hidden;
}
.single-track .track-title, .single-track .track-artists {
	display: block;
	margin-left: 120px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	-ms-text-overflow: ellipsis;
	padding-right: 15px;
}
.single-track .track-title {
	color: #eee;
	font-size: 16px;
	margin-top: 10px;
	font-weight: bold;
}
.single-track .track-title:hover {
	color: #f4624a;
}
.single-track .track-artists, .single-track .track-artists:hover {
	color: #aaa;
	font-size: 12px;
}
.single-track .track-cover {
	position: absolute;
	left: 0px;
	top: 0;
	max-width: 100px;
	max-height: 100px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.single-track .track-dot {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 30px;
	top: 30px;
	width: 40px;
	height: 40px;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	z-index: 5;
	text-align: center;
	color: #fff;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.8);
}
.single-track .track.sp-play .track-dot, .single-track .track.sp-pause .track-dot, .single-track .track.sp-loading .track-dot {
	display: block
}
.single-track .track.sp-play .track-dot {
	background-image: url(../images/eq.gif);
	background-position: center center;
	background-repeat: no-repeat;
}
.single-track .track.sp-loading .track-dot {
	background-image: url(../images/loader.gif);
	background-position: center center;
	background-repeat: no-repeat;
}
.single-track .track.sp-pause .track-dot:before {
	display: block;
	font-family: 'Scamp-Player';
	font-size: 22px;
	line-height: 40px;
	content: "\e611";
}

/* Track Buttons */
.single-track .track-buttons {
	position: absolute;
	bottom: 20px;
	left: 135px;
	float: left;
	font-size: 11px;
	text-transform: uppercase;
}
.single-track .track-buttons a {
	color: #fff;
	display: inline-block;
	margin-right: 3px;
	background-color: #f4624a;
	padding: 2px 10px;
	border-radius: 3px;
}
.single-track .track-buttons a:hover {
	color: #fff;
	background-color: #222;
}

/* Compact version */
.single-track.compact .track {
	min-height: 50px;
}
.single-track.compact .track-title, .single-track.compact .track-artists {
	margin-left: 60px;
}
.single-track.compact .track-title {
	color: #eee;
	font-size: 14px;
	margin-top: 0px;
	font-weight: bold;
}
.single-track.compact .track-cover {
	max-width: 50px;
	max-height: 50px;
}
.single-track.compact .track-dot {
	left: 5px;
	top: 5px;
}

/* ----------------------------------------------------------------------
Tracklist
/* ---------------------------------------------------------------------- */
ol.tracklist {
	counter-reset: li; /* Initiate a counter */
	list-style: none; /* Remove default numbering */
	*list-style: decimal; /* Keep using default numbering for IE6/7 */
	padding: 0;
	margin-left: 0;
	background: #3d3d3d;
	border-radius: 3px;
	overflow: hidden;
}
ol.tracklist li {
	margin: 0;
	padding: 3px 0;
	position: relative;
	border-bottom: 1px solid #222;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
ol.tracklist li:last-child {
	border: none;
}
ol.tracklist li:nth-child(odd) {
	background: #393939;
}
ol.tracklist li:hover {
	background-color: #444;
}
ol.tracklist li:hover .track-details:before {
	color: #fff
}
ol.tracklist .track-details {
	margin-left: 40px;
	padding: 4px 0;
	min-height: 49px;
	width: auto;
	overflow: hidden;
}
ol.tracklist .track-details:before {
	content: counter(li);
	counter-increment: li;
	position: absolute;
	left: 0;
	top: 8px;
	text-align: center;
	font-size: 22px;
	width: 44px;
	color: #aaa;
}
ol.tracklist .track {
	margin-left: 15px;
	position: relative;
	float: left;
}
ol.tracklist.compact .track-details {
	margin-left: 20px;
}
ol.tracklist.compact .track-details:before {
	font-size: 16px;
	width: 30px;
	font-weight: bold;
}
ol.tracklist .track-title, ol.tracklist .track-artists {
	display: block;
	margin-left: 55px;
	text-overflow: ellipsis;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	-ms-text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	padding-right: 15px;
}
ol.tracklist .track-title {
	color: #eee;
	font-size: 13px;
	font-weight: 700;
}
ol.tracklist .track-title:hover {
	color: #fff;
}
ol.tracklist .track-artists, ol.tracklist .track-artists:hover {
	color: #999;
	font-size: 12px;
}
ol.tracklist .track-cover {
	position: absolute;
	left: 0;
	top: 0;
	max-width: 40px;
	max-height: 40px;
	min-height: 40px;
	min-width: 40px;
	vertical-align: middle;
}
ol.tracklist .track .track-title:before {
	display: none;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 40px;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	z-index: 5;
	text-align: center;
	color: #fff;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.8);
}
ol.tracklist .track.sp-play .track-title:before {
	display: block;
	background-image: url(../images/eq.gif);
	background-position: center center;
	background-repeat: no-repeat;
}
ol.tracklist .track.sp-loading .track-title:before {
	display: block;
	background-image: url(../images/loader.gif);
	background-position: center center;
	background-repeat: no-repeat;
}
ol.tracklist .track.sp-play .track-title {
	color: #fff;
}
ol.tracklist .track.sp-pause .track-title:before {
	display: block;
	font-family: 'Scamp-Player';
	font-size: 22px;
	line-height: 40px;
	content: "\e611";
}
ol.tracklist .track:hover.sp-pause .track-title:before {
	color: #eee;
}

/* Track Buttons */
ol.tracklist .track-buttons {
	margin-right: 15px;
	margin-top: 10px;
	float: right;
	font-size: 11px;
	text-transform: uppercase;
}
ol.tracklist .track-buttons a {
	color: #ccc;
	display: inline-block;
}
ol.tracklist .track-buttons a:after {
	content: "/";
	margin: 0 2px 0px 4px;
	color: #888;
	display: inline-block;
}
ol.tracklist .track-buttons a:last-child:after {
	display: none;
}
ol.tracklist .track-buttons a:hover {
	color: #f4624a;
}

/* Compact version */
ol.tracklist.compact .track-details {
	margin-left: 20px;
}
ol.tracklist.compact .track-details:before {
	font-size: 16px;
	width: 30px;
	font-weight: bold;
}

/* ----------------------------------------------------------------------
Details List
/* ---------------------------------------------------------------------- */
.details-list {
	list-style: none;
	margin: 0;
	margin-bottom: 20px;
}
.details-list li {
	margin: 0;
	margin: 10px 0;
	padding: 0 20px 10px;
	overflow: hidden;
	color: #999;
	border-bottom: 1px solid #393939;
	font-size: 12px;
	text-transform: uppercase;
	position: relative;
	padding-left: 150px;
}
.details-list li:last-child {
	border-bottom: 0;
}
.details-list li span {
	position: absolute;
	left: 0;
	top: 0;
	display: inline-block;
	margin-right: 20px;
	color: #666;
}

/* ----------------------------------------------------------------------
Price Table
/* ---------------------------------------------------------------------- */
.price-table {
	width: 100%;
	display: inline-block;
	padding: 0;
	position: relative;
}
#site .wpb_column > .wpb_wrapper > .price-table {
	margin-bottom: 20px;
}
.price-table-inner {
	position: relative;
	display: block;
	text-align: center;
}
.price-table-inner.important-price ul {
	background-color: #555;
}
.price-table-inner.important-price > ul {
	padding: 20px 0;
	margin: -20px 0 0;
}
.price-table-inner ul {
	list-style: none outside none;
	margin: 0;
	background-color: #333;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.price-table-inner ul li {
	text-align: center;
	margin: 0px;
	padding: 9px 20px;
}
.price-table-inner ul .price-content-list {
	padding: 0;
}
.price-content-list > ul {
	padding: 20px 0;
}
.price-content-list > ul li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.price-content-list > ul li:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.price-table-inner ul li.prices {
	padding: 40px 20px 5px;
}
.price-table-inner ul li.table-title {
	font-size: 19px;
	line-height: 19px;
	color: #fff;
	padding: 14px 25px 12px;
	font-weight: 700;
}
.price-wrapper {
	text-align: center;
}
.price-wrapper .value {
	font-size: 19px;
	line-height: 19px;
	color: #fff;
	vertical-align: top;
	display: inline-block;
	margin: 8px 0 0;
}
.price-wrapper .price {
	font-size: 80px;
	line-height: 80px;
	padding: 0 3px;
	font-weight: 500;
	color: #fff;
	vertical-align: middle;
	display: inline-block;
}
.price-wrapper .mark {
	font-size: 19px;
	line-height: 19px;
	color: #fff;
	vertical-align: bottom;
	position: relative;
	top: -8px;
}
.price-table-inner .price-button-wrapper {
	padding: 15px 0 50px;
}
.price-table-inner .price-button-wrapper a {
	padding: 10px 30px;
	margin: 0;
	font-size: 14px;
	font-weight: 700;
}

/* ----------------------------------------------------------------------
Column Icon
/* ---------------------------------------------------------------------- */
.icon_column {
	position: relative;
}
.icon_column.icon_top {
	text-align: center;
}
.icon_column .text-holder {
	display: block;
}
.icon_column.icon_left .text-holder {
	padding-left: 50px;
}
.icon_column.icon_right .text-holder {
	padding-right: 50px;
}
.icon_column .text-holder strong {
	color: #ccc;
}
.icon_column .icon {
	color: #555;
	font-size: 28px;
	display: inline-block;
	margin-bottom: 20px;
}
.icon_column.icon_top .icon {
	border: 1px solid #444;
	padding: 20px;
	border-radius: 100%;
}
.icon_column.icon_left .icon, .icon_column.icon_right .icon {
	position: absolute;
	top: 0;
}
.icon_column.icon_left .icon {
	left: 0;
}
.icon_column.icon_right .icon {
	right: 0;
}
.icon_column a {
	color: #999;
}
.icon_column strong a {
	color: #bbb
}
.icon_column a:hover {
	color: #fff;
	background-color: #f4624a;
}
.icon_column_title {
	font-size: 16px;
	color: #fff;
	margin-bottom: 10px;
	font-weight: 700;
	display: block;
}

/* ----------------------------------------------------------------------
Visual Composer Special Styles
/* ---------------------------------------------------------------------- */

/* Bars */
#site .vc_progress_bar .vc_single_bar {
	background: #262626;
}
.vc_single_bar .vc_label {
	color: #fff;
	font-size: 13px;
}

/* Tour/Tabs */
#site .wpb_tour_next_prev_nav a {
	border-bottom: none;
	text-decoration: none;
	font-size: 11px;
	text-transform: uppercase;
	color: #fff;
	background-color: #f4624a;
	padding: 8px 10px;
	border-radius: 3px;
	font-weight: bold;
}
#site .wpb_tour_next_prev_nav a:hover {
	text-decoration: none;
	border-bottom: none;
	background-color: #333;
}
#site .wpb_tour_next_prev_nav a:hover {
	text-decoration: none;
	border-bottom: none;
}
#site .wpb_tour_next_prev_nav span {
	width: 48%;
	display: inline-block;
	padding-top: 2.4em;
	float: left;
}
#site .wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav a, #site .wpb_content_element .wpb_accordion_header a {
	padding: 0.7em 1em;
	font-weight: 700;
}
#site .wpb_content_element .wpb_accordion_header a {
	color: #ddd;
}
#site .wpb_content_element .wpb_tabs_nav li.ui-state-default a {
	color: #bbb;
}
#site .wpb_content_element .wpb_tabs_nav li.ui-state-active a {
	color: #fff;
}
#site .wpb_content_element .wpb_tabs_nav li {
	background-color: #262626;
}
#site .wpb_content_element .wpb_tabs_nav li.ui-tabs-active, #site .wpb_content_element .wpb_tabs_nav li:hover {
	background-color: #333;
}
#site .wpb_content_element .wpb_accordion_wrapper .wpb_accordion_header, #site .wpb_content_element.wpb_tabs .wpb_tour_tabs_wrapper .wpb_tab {
	background-color: #333;
}
#site .wpb_content_element.wpb_tabs .wpb_tour_tabs_wrapper .wpb_tab {
	background-color: #333;
	padding: 30px
}
#site .wpb_content_element .wpb_accordion_wrapper .wpb_accordion_content {
	padding: 30px;
}

/* Toggle */
.wpb_toggle, #content h4.wpb_toggle {
	font-size: 18px;
}

/* Gallery (Flex Slider) */
.wpb_wrapper .flexslider {
	border: 0;
	background-color: #222;
}
.wpb_wrapper .wpb_gallery .wpb_flexslider .flex-control-nav {
	bottom: -45px;
}
.wpb_wrapper .flex-control-paging li a {
	background: rgba(255, 255, 255, .3);
}
.wpb_wrapper .flex-direction-nav a {
	color: rgba(255, 255, 255, 0.8);
	text-shadow: none;
}

/* Nivo Slider */
.wpb_wrapper .theme-default .nivo-controlNav a {
	display: inline-block;
	width: 12px;
	height: 12px;
	background-color: #fff;
	opacity: 0.4;
	border-radius: 100%;
	text-indent: -9999px;
	border: 0;
	margin: 0 4px;
}
.wpb_wrapper .theme-default .nivo-controlNav a.active {
	opacity: 0.8;
}
#site .wpb_posts_slider .flex-caption, #site .wpb_posts_slider .nivo-caption {
	background-color: #333;
	padding: 15px;
}
#site .wpb_posts_slider .flex-caption .post-title, #site .wpb_posts_slider .flex-caption .post-title a {
	color: #fff;
	font-size: 24px;
}

/* Spearator */
.vc_separator h4 {
	color: #444;
}

/* Single image */
html .wpb_single_image img {
	width: 100%
}
html .vc_button-2-wrapper {
	display: inline;
}

/* Flex */
.vc_row.vc_row-flex > .vc-container  {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
}
.vc_row.vc_row-flex > .vc-container {
    box-sizing: border-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.vc_row.vc_row-flex > .vc-container  > .vc_column_container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
}
.vc_row.vc_row-flex > .vc-container  > .vc_column_container {
    display: flex;
}

.vc_row.vc_row-o-equal-height > .vc-container > .vc_column_container {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.vc_row.vc_row-flex > .vc-container > .vc_column_container > .vc_column-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}
.vc_row.vc_row-flex > .vc-container > .vc_column_container > .vc_column-inner {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.vc_row.vc_row-o-content-middle > .vc-container > .vc_column_container > .vc_column-inner {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.vc_row.vc_row-o-content-bottom > .vc-container > .vc_column_container > .vc_column-inner {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.vc_row.vc_row-o-content-top > .vc-container > .vc_column_container > .vc_column-inner {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}


/* ----------------------------------------------------------------------
Contact Form 7 Special Styles
/* ---------------------------------------------------------------------- */
div.wpcf7 p {
	color: #ddd;
}
div.wpcf7 img.ajax-loader {
	vertical-align: top;
}
span.wpcf7-form-control-wrap {
	margin: 7px 0;
	display: block;
}
span.wpcf7-not-valid-tip {
	font-family: Arial, Helvetica, sans-serif;
	color: #fff;
	font-size: 11px;
	display: inline-block;
	background-color: #fdcaca;
	color: #7f6060;
	border-color: #ffc3c3;
	margin-top: 10px;
	padding: 6px;
	border-radius: 4px;
	width: auto;
}
div.wpcf7-response-output {
	font-family: Arial, Helvetica, sans-serif;
	display: block;
	font-size: 13px;
	font-weight: bold;
	border: 1px solid transparent;
	padding: 14px 20px 14px 20px;
	clear: both;
	border-radius: 4px;
	display: none;
}
div.wpcf7-mail-sent-ok {
	background-color: #cafdce;
	color: #637a65;
	border-color: #9cfaa3;
}
div.wpcf7-mail-sent-info {
	background-color: #dee9fe;
	color: #737b8b;
	border-color: #cddfff;
}
div.wpcf7-spam-blocked {
	background-color: #fbe9de;
	color: #877863;
	border-color: #fbe0b9
}
div.wpcf7-validation-errors, div.wpcf7-mail-sent-ng {
	background-color: #fdcaca;
	color: #7f6060;
	border-color: #ffc3c3;
}
div.wpcf7 .wpcf7-checkbox input, div.wpcf7 .wpcf7-radio input {
	width: auto;
}
span.wpcf7-list-item {
	margin-right: 20px;
	margin-left: 0;
}
.wpcf7-list-item-label {
	margin-right: 5px;
	color: #999;
	font-style: italic;
}

/* ----------------------------------------------------------------------
Media Queries
/* ---------------------------------------------------------------------- */

/* ----------------------------------------------------------------------
For Small Desktop Devices [ 960px ]
/* ---------------------------------------------------------------------- */
@media only screen and (max-width:1200px) {

	/* Stats List
	 	 ---------------------------------------------------------------------- */
	ul.stats li .stat-value {
		font-size: 130px
	}

	/* Recent Posts
	 	 ---------------------------------------------------------------------- */
	.recent-post-content .date {
		font-size: 12px;
	}
	.recent-post-content .post-title {
		font-size: 18px;
	}
}

/* ----------------------------------------------------------------------
	For Tablet and Mobile devices 
/* ---------------------------------------------------------------------- */
@media only screen and (max-width:979px) {


	/* Visual Composer Special Styles
    ------------------------------ */

    /* Heading */
	 h1.vc_custom_heading.responsive_heading {
		font-size: 48px !important;
	}
	 h2.vc_custom_heading.responsive_heading {
		font-size: 36px !important;
	}
	 h3.vc_custom_heading.responsive_heading {
		font-size: 32px !important;
	}
	 h4.vc_custom_heading.responsive_heading {
		font-size: 24px !important;
	}
	 h5.vc_custom_heading.responsive_heading,  h6.vc_custom_heading.responsive_heading {
		font-size: 18px !important;
	}
	

}

/* ----------------------------------------------------------------------
For Tablet Devices [ 748px ]
/* ---------------------------------------------------------------------- */
@media only screen and (min-width:768px) and (max-width:980px) {

	/* Recent Posts
	 	 ---------------------------------------------------------------------- */
	.recent-post-content .date {
		font-size: 12px;
	}
	.recent-post-content .post-title {
		font-size: 14px;
	}
	.recent-post-content .readmore {
		padding: 10px 30px;
	}

	/* Process Steps
	 	 ---------------------------------------------------------------------- */
	.steps {
		text-align: center;
	}
	.steps .step {
		display: inline-block;
		padding: 20px;
		position: relative;
		width: 24.6%;
	}
	.steps .step:after {
		right: -10px;
		top: 50%;
		margin-top: -30px;
		font-weight: 300;
		font-size: 18px;
	}
	.steps .step .step-number {
		left: 50%;
		top: 0px;
		width: 50px;
		height: 50px;
		margin-left: -25px;
		line-height: 50px;
		font-size: 18px;
	}

	/* Ticker
	 	 ---------------------------------------------------------------------- */
	#ticker {
		height: 66px;
		font-size: 56px;
	}
	#ticker li {
		height: 56px;
	}

	/* Stats List
	 	 ---------------------------------------------------------------------- */
	ul.stats {
		height: 416px;
	}
	ul.stats li {
		padding-bottom: 60px;
	}
	ul.stats li .stat-value {
		font-size: 90px
	}

	/* Tweets Slider
		 ---------------------------------------------------------------------- */
	.tweets-slider {
		height: 160px;
	}
	.tweets-slider .slide {
		font-size: 18px;
	}
	.tweets-slider .slide .date {
		font-size: 16px;
	}
}

/* ----------------------------------------------------------------------
	For Mobile Devices [ 300px ]
/* ---------------------------------------------------------------------- */
@media only screen and (max-width:767px) {

	/* Recent Posts
	 	 ---------------------------------------------------------------------- */
	.recent-post {
		width: 50%
	}
	.recent-post-content .date {
		font-size: 12px;
	}
	.recent-post-content .post-title {
		font-size: 13px;
	}
	.recent-post-content .readmore {
		padding: 5px 10px;
		font-size: 12px;
	}

	/* Process Steps
	 	 ---------------------------------------------------------------------- */
	.steps .step {
		display: inline-block;
		padding: 20px;
		position: relative;
		width: 100%;
	}
	.steps .step:after {
		display: none;
	}
	.steps .step .step-number {
		left: 50%;
		top: 0px;
		width: 50px;
		height: 50px;
		margin-left: -25px;
		line-height: 50px;
		font-size: 18px;
	}

	/* Tweets Slider
	 	 ---------------------------------------------------------------------- */
	.gmap {
		height: 300px !important;
	}

	/* Tweets Slider
	 	 ---------------------------------------------------------------------- */
	.tweets-slider {
		height: 200px;
	}
	.tweets-slider .slide {
		font-size: 16px;
	}
	.tweets-slider .slide .date {
		font-size: 14px;
	}

	/* Ticker
	 	 ---------------------------------------------------------------------- */
	.intro-bg {
		display: none;
	}
	#ticker-wrap {
		padding: 10px 0 20px;
	}
	#ticker {
		height: 28px;
		font-size: 28px;
	}
	#ticker li {
		height: 28px;
	}

	/* Stats List
	 	 ---------------------------------------------------------------------- */
	ul.stats {
		height: 306px
	}
	ul.stats li {
		padding-bottom: 60px;
	}
	ul.stats li .stat-value {
		font-size: 30px;
	}
	ul.stats li .stat-name {
		font-size: 10px;
		font-weight: 400;
	}
	ul.stats li .stat-value:after {
		height: 20px;
		left: 50%;
		bottom: 40px;
	}

	/* Tracklist Grid
	 	 ---------------------------------------------------------------------- */
	.tracks-grid-2-col .tracks-grid-item, .tracks-grid-3-col .tracks-grid-item, .tracks-grid-4-col .tracks-grid-item, .tracks-grid-5-col .tracks-grid-item {
		width: 50%;
	}

	/* Tracklist
	 	 ---------------------------------------------------------------------- */
	ol.tracklist .track {
		float: none;
		display: block;		/* overflow: hidden; */
	}
	ol.tracklist .track-buttons {
		display: block;
	}

	/* Single Track
	 	 ---------------------------------------------------------------------- */
	.single-track .track-buttons a {
		display: none;
	}
	.single-track .track-buttons a:first-child {
		display: inline-block;
	}

	/* Details List
	 	 ---------------------------------------------------------------------- */
	.details-list li {
		padding-left: 120px;
	}

	/* Icon Column
	 	 ---------------------------------------------------------------------- */
	.icon_column {
		padding-bottom: 30px;
	}

	
	/* Visual Composer Special Styles
     ---------------------------------------------------------------------- */

    /* Heading */
	 h1.vc_custom_heading {
		font-size: 36px !important;
	}
	 h2.vc_custom_heading {
		font-size: 34px !important;
	}
	 h3.vc_custom_heading {
		font-size: 26px !important;
	}
	 h4.vc_custom_heading {
		font-size: 22px !important;
	}
	 h5.vc_custom_heading,  h5.vc_custom_heading {
		font-size: 16px !important;
	}
}

/* ----------------------------------------------------------------------
For Mobile Devices [ 440px ] [ Horizontal ]
/* ---------------------------------------------------------------------- */
@media only screen and (min-width:480px) and (max-width:767px) {

	/* Recent Posts
	 	 ---------------------------------------------------------------------- */
	.recent-post-content .post-title {
		font-size: 14px;
	}
	.recent-post-content .readmore {
		padding: 10px 30px;
	}

	/* Process Steps
	 	 ---------------------------------------------------------------------- */
	.steps .step {
		width: 50%;
	}

	/* Ticker
	 	 ---------------------------------------------------------------------- */
	#ticker-wrap {
		padding: 10px 0 20px;
	}
	#ticker {
		height: 48px;
		font-size: 36px;
	}
	#ticker li {
		height: 48px;
	}

	/* Stats List
	 	 ---------------------------------------------------------------------- */
	ul.stats {
		height: 306px
	}
	ul.stats li {
		padding-bottom: 70px;
	}
	ul.stats li .stat-value {
		font-size: 40px;
	}
	ul.stats li .stat-name {
		font-size: 11px;
	}

	/* Tweets Slider
	 	 ---------------------------------------------------------------------- */
	.tweets-slider {
		height: 180px;
	}

	/* Details List
	 	 ---------------------------------------------------------------------- */
	.details-list li span {
		display: inline-block;
	}
}