/**
 * @author    RocketTheme http://www.rockettheme.com
 * @copyright Copyright (C) 2007 - 2014 RocketTheme, LLC
 * @license   http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
 */
/* Layout - Sprocket Lists - Core */
.sprocket-lists {}
.sprocket-lists:after {display: table;content: "";*zoom: 1;clear: both;}
.sprocket-lists ul {list-style: none !important;margin: 0;padding: 0;}
.sprocket-lists-container {overflow: hidden;padding: 0 !important;}

/* Layout - Sprocket Lists - Titles */
.sprocket-lists-title {
	position: relative;
	padding: 6px 10px !important;
	font-size: 1.2em !important;
	line-height: 1.2em !important;
	margin: 0 0 2px 0 !important;
	border-radius: 1px;
	cursor: pointer;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;

}
.sprocket-lists-title.padding {padding-right: 35px;}
.sprocket-lists-title .indicator::after {
	font-family: FontAwesome;
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -9px;
	display: block;
	width: 14px;
	height: 14px;
	cursor: pointer;
	text-align: center;
	font-weight: 300;
	font-size: 14px;
	color: #bbb;
	content: "\f0fe";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.sprocket-lists-title .indicator:hover {opacity: 1;}
.active .indicator::after {content: "\f146"}

/* Layout - Sprocket Lists - Items */
.sprocket-lists-item {display: block;position: relative;}
.active .sprocket-lists-item {
	opacity: 1;
	margin-bottom: 0;
	background: #f9f9f9;
	margin-top: -2px;

}

.sprocket-lists-item a.th-read-more{
	margin: 10px 0;
}

.sprocket-lists-item a.th-read-more::before{
	content: "";
	display: block;
	clear: both;
}

.sprocket-lists-item .sprocket-padding {padding: 10px;display: block;}
.sprocket-lists-image {float: left;margin: 0 15px 15px 0;}

/* Layout - Sprocket Lists - Navigation */
.sprocket-lists-nav {display: inline-block; right: 20px; top: 20px; position: absolute;}
.sprocket-lists-pagination {display: table-cell;vertical-align: middle;}
.sprocket-lists-pagination ul {float: left;margin: 0 !important;padding: 0 !important;}
.sprocket-lists-pagination li {display: inline-block;padding: 4px !important;opacity: 0.4;border-radius: 1em;cursor: pointer;}
.sprocket-lists-pagination li.active {opacity: 1;}
.sprocket-lists-pagination li span {display: none;font-size: 0.85em;line-height: 1em;}
.sprocket-lists-pagination-hidden {display: none;}
.sprocket-lists-arrows {display: table-cell;vertical-align: middle;}
.sprocket-lists-arrow ul {float: right;margin: 0 !important;padding: 0 !important;}
.sprocket-lists-arrows .arrow {position: relative;display: block;cursor: pointer;float: right;text-align: center;}


/* Layout - Sprocket Lists - Colors */
.sprocket-lists-title {
	background: #efefef;
	border: 1px solid #ddd;

}
.sprocket-lists-title .indicator {}
.active .sprocket-lists-title .indicator:before {border-bottom: 6px solid #fff;}
.sprocket-lists-pagination li {background: #000;color: #fff;box-shadow: 1px 1px 1px rgba(255,255,255,0.5);}
.sprocket-lists-arrows .arrow {}

/* Layout - Sprocket Lists - Transitions */
.sprocket-lists-arrows .arrow, .sprocket-lists-title .indicator {-webkit-transition: opacity 0.2s ease-in;-moz-transition: opacity 0.2s ease-in;-o-transition: opacity 0.2s ease-in;transition: opacity 0.2s ease-in;}


/* Spinner */
.sprocket-lists-overlay {display: none;position: absolute;margin-top: -30px;top:50%;left:0;right:0;bottom:0;background-color:transparent;z-index:5;}
.sprocket-lists-overlay .css-loader-wrapper {width: 30px;height:30px;margin: 0 auto;padding: 0;border-radius:100%;}
.sprocket-lists.loading .sprocket-lists-overlay {display: block;}
.sprocket-lists-overlay .css-loader {display: block;margin: 0 auto;font-size: 10px;position: relative;text-indent: -9999em;border-top: 4px solid rgba(0, 0, 0, 0.2);border-right: 4px solid rgba(0, 0, 0, 0.2);border-bottom: 4px solid rgba(0, 0, 0, 0.2);border-left: 4px solid #ffffff;-webkit-animation: loader 1.1s infinite linear;animation: loader 1.1s infinite linear;}
.sprocket-lists-overlay .css-loader {border-radius: 50%;width: 30px;height: 30px;}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


