/* 
 * 	Core Owl Carousel CSS File
 *	v1.24
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
	z-index:2;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

/* CSS3 Transitions */

.owl-origin {
	-webkit-perspective: 1200px;
	-webkit-perspective-origin-x : 50%;
	-webkit-perspective-origin-y : 50%;
	-moz-perspective : 1200px;
	-moz-perspective-origin-x : 50%;
	-moz-perspective-origin-y : 50%;
	perspective : 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}



/* ==================================================
   7. Responsive Media Queries
================================================== */

@media only screen and (max-width: 992px) {
	
	
	.carousel-wrapper{
		width:100%;
	}
	
	.widget_donations h4{
		font-size:28px;
	}
	.fact-ico{
		float:none;
		text-align:center;
		margin-bottom:20px;
		margin-right:0;
	}
	.counters .timer, .counters .fact{
		text-align:center;
	}
	.widget-title .basic-link{
		display:none;
	}
	.widgettitle, .sidebar-block .widget-title h3{
		font-size:24px;
	}
	.sidebar-block{
		margin-top:50px;
	}
	
	#DonateModal .modal-dialog{
		width:97%;
	}
	.partner-carousel .push-top{
		margin-top:10px;
	}
}
@media only screen and (max-width: 767px) {
	.grid-item .media-box{
		margin-bottom:0;
	}
	
	.content{
		padding:50px 0;
	}
	.grid-item .media-box, .grid-item .media-box img{
		width:100%;
	}

	.owl-carousel .cause-grid-item:hover{
		-webkit-transition: none;
		-moz-transition: none;
		-ms-transition: none;
		-o-transition: none;
		transition: none;
		top:0;
	}
	.grid-item{
		margin-bottom:40px;
	}
	.owl-carousel .cause-grid-item{
		padding-bottom:20px;
	}
	.owl-carousel .cause-grid-item .btn{
		bottom:-40px;
	}
	
	.widget_donations h4{
		font-size:22px;
	}
	.cause-list-item-cont{
		padding-left:20px;
		padding-top:60px;
	}
	.causes-list-item .cause-progress {
    	right: 50%;
    	top: auto;
    	margin-top: -30px;
    	margin-right: -50px;
	}

}


.causes-list{
	list-style-type:none;
	margin:0;
}
.list-thumb{
	position:relative;
}
.causes-list-item{
	padding:0 0 35px;
	margin-bottom:35px;
	border-bottom:1px solid #E6E6E6;
}
.causes-list-item:last-child{
	padding-bottom:0;
	border-bottom:0;
}
.causes-list-item .cProgress{
	position:relative;
}
.causes-list-item .cause-progress{
	width:100px;
	height:100px;
	position:absolute;
	right:-35px;
	top:50%;
	margin-top:-30px;
	text-align:center;
}
.cause-list-item-cont{
	padding-left:20px;
}
.cause-list-item-cont .meta-data{
	font-size:14px;
}

.partner-carousel{
	border-top:1px solid #e6e6e6;
	border-bottom:1px solid #e6e6e6;
	padding:10px 0;
	position:relative;
}
.partner-carousel .carousel-wrapper{
	min-height:0;
	margin-top:0
}
.partner-carousel .owl-wrapper-outer{
	margin-bottom:30px;
}
.cta-fw h4{
	color:#fff;
	margin-top:15px;
	margin-bottom:0;
}
.widget_donations{
	padding:30px;
	color:#fff;
}
.widget_donations h4{
	color:#fff;
	margin-bottom:40px;
}
.job-block{
	border-width: 1px 1px 2px;
	border-style: solid;
	border-color: #E6E6E6 #E6E6E6 #ddd;
	padding:20px;
	border-radius:3px;
	margin-bottom:20px;
}
.job-block:last-child{
	margin-bottom:0;
}

.grid-item .social-icons-colored{
	margin:15px 0 15px;
}
.grid-item.grid-staff-item p:last-child{
	margin-bottom:0;
}
.grid-item.grid-staff-item h3{
	margin-bottom:5px;
}
.grid-item.grid-staff-item .meta-data{
	margin-bottom:20px;
	display:block;
}
.grid-staff-item-compact.grid-item{
	background:none;
}
.grid-staff-item-compact .grid-item-content{
	padding:12px 0 0;
	border:0;
}
.grid-staff-item-compact .grid-item-inner{
	border:0;
}
.grid-staff-item-compact .media-box{
}
.grid-staff-item-compact .grid-item-content h3{
	font-size:15px;
	font-weight:700;
	text-transform:none;
	margin-bottom:0;
}

.grid-holder{
	margin:0;
	list-style-type:none;
	width: 105%;
	margin-left: -3%;
	float: left;
}
.grid-holder .grid-item{
	float: left;
}
.grid-holder .grid-item{
	margin-bottom: 3%;
	border-bottom: medium none;
	margin-top:2px;
}
.grid-item{
	background:#fff;
}
.grid-item-inner{
	border:1px solid #E6E6E6;
	border-radius:5px;
}
.grid-item-inner .grid-item-content{
	padding:20px;
	position:relative;
	border-top:1px solid #E6E6E6;
}
.grid-item-content{
	padding:20px 0;
	position:relative;
}
.grid-item-meta{
	margin-bottom:17px;
	display:block;
}
.grid-item h3{
	font-size:14px;
	line-height:24px;
	letter-spacing:1px;
	margin-bottom:10px;
	text-transform: capitalize;
}
.cause-target{
	font-weight:700;
}
.owl-carousel .cause-grid-item{
	position:relative;
	top:0;
	-webkit-transition:all 0.3s ease 0.2s;
	-moz-transition:all 0.3s ease 0.2s;
	-ms-transition:all 0.3s ease 0.2s;
	-o-transition:all 0.3s ease 0.2s;
	transition:all 0.3s ease 0.1s;
}
.owl-carousel .cause-grid-item:hover{
	top:-20px;
	box-shadow:0 0 10px rgba(0,0,0,.1);
	-webkit-transition: top .3s .2s, box-shadow .3s .2s;
	-moz-transition: top .3s .2s, box-shadow .3s .2s;
	-ms-transition: top .3s .2s, box-shadow .3s .2s;
	-o-transition: top .3s .2s, box-shadow .3s .2s;
	transition: top .3s .2s, box-shadow .3s .2s;
}
.owl-carousel .grid-item-inner{
	position:relative;



	}
.cause-grid-item .grid-item-content{
	border:0;
	text-align:center;
	position:relative;
	z-index:3;
	background:#fff;
	

}
.cause-grid-item .meta-data{
	margin-bottom:20px;
	margin-top:20px;
	font-size:14px;
}
.owl-carousel .cause-grid-item .meta-data{
	margin:20px 0 0;
	font-size:13px;
}
.owl-carousel .cause-grid-item .btn{
	position:absolute;
	bottom:0;
	z-index:2;
	width:150px;
	left:50%;
	margin-left:-75px;
	padding-left:10px;
	padding-right:10px;
	-webkit-transition:all 0.3s ease 0.2s;
	-moz-transition:all 0.3s ease 0.2s;
	-ms-transition:all 0.3s ease 0.2s;
	-o-transition:all 0.3s ease 0.2s;
	transition:all 0.3s ease 0.1s;
}
.owl-carousel .cause-grid-item:hover .btn{
	bottom:-40px;
	-webkit-transition: bottom .3s .2s;
	-moz-transition: bottom .3s .2s;
	-ms-transition: bottom .3s .2s;
	-o-transition: bottom .3s .2s;
	transition: bottom .3s .2s;
}
.cause-grid-item .cProgress{
	position:absolute;
	top:-30px;
	left:50%;
	margin-left:-30px;
	z-index:11;
	width:60px;
	background:#fff;
	border-radius:100%;
	cursor:default;
	color:#666;
}
.cause-grid-item .cProgress strong{
	line-height:60px;
	font-size:16px;
}

.cause-grid-item, .event-grid-item{
	margin-bottom:30px;
}

.owl-carousel .grid-item-blog{
	border:1px solid #E6E6E6;
}

.owl-carousel .blog-grid-item h3{
	font-size:18px;
	font-weight:700;
	line-height:24px;
	margin-top:5px;
	text-transform:none;
	margin-bottom:10px;
	letter-spacing:0;
}
.content-block{
	padding-top:10px;
	overflow-x:hidden
}
.single-event .content-block, .single-cause .content-block, .single-post .content-block{
	padding-top:0;
}
.post-media{
	margin-bottom:30px;
}
.post-content{
	margin-bottom:40px;
	height:100px;
}
.single-event .content-block .list-group{
	margin-top:0;
}
.btn-event-single-book{
	margin-top:17px;
}
.owl-carousel .blog-grid-item .grid-item-content{
	position:absolute;
	z-index:2;
	bottom:0;
	height:auto!important;
	border-top:0;
}
.owl-carousel .blog-grid-item h3 a{
	color:#fff;
}
.owl-carousel .blog-grid-item .media-box img{
	opacity:.5
}
.owl-carousel .blog-grid-item .media-box{
	background:#000;
}
.blog-grid-item p{
	margin-bottom:0;
	margin-top:22px;
}
#news-slider .owl-wrapper-outer{
	padding-top:10px;
}
.blog-grid-item .meta-data{
	margin:20px 0 10px; 
}
.owl-carousel .blog-grid-item .meta-data{
	margin:10px 0 0; 
	color:#eee;
	opacity:.8
}
.blog-grid-item .tag-cloud{
	margin-top:22px;
}
#DonateModal .modal-body{
	background:#f6f6f6;
	padding-left:40px;
	padding-right:40px;
}
#DonateModal .modal-footer{
	padding-left:70px;
	padding-right:70px;
}
.donation-form-infocol:first-child label{
	line-height:30px;
}
#DonateModal .modal-dialog{
	width:800px;
}
#DonateModal .modal-header{
	position:relative;
}
#DonateModal .modal-header h4{
	margin-bottom:20px;
}
#DonateModal .modal-header .form-control{
	margin-bottom:0;
}
.donate-amount-option{
	text-align:center;
	padding-top:20px;
	padding-bottom:5px;
}
.donate-amount-option .input-group{
	width:70%;
	margin-left:15%;
}
.donation-choice-breaker{
	position:absolute;
	width:24px;
	height:24px;
	line-height:24px;
	color:#fff;
	border-radius:100%;
	left:50%;
	top:50%;
	margin:-12px 0 0 -6px;
	text-transform:uppercase;
	font-weight:700;
	text-align:center;
	font-size:11px;
	background:#ccc;
}
.predefined-amount{
	list-style-type:none;
	margin:0;
}
.predefined-amount li{
	display:inline-block;
	margin-right:5px;
}
.predefined-amount li label{
	cursor:pointer;
	border:2px solid #e6e6e6;
	padding:6px 10px;
	border-radius:3px;
}
.predefined-amount li label.selected{
	color:#fff;
}
.predefined-amount li input{
	display:none;
}
.donation-form-infocol:first-child{
	border-right:1px solid #e6e6e6;
}

/* ==================================================
   6.5. Overriding Classes
================================================== */

.cProgress {
    width: 60px;
    display: inline-block;
    position: relative;
    text-align: center;
    line-height: 1.2;
	background:#fff;
	border-radius:100%;
	cursor:default;
	color:#666;
}
.cProgress canvas {
    vertical-align: top;
}
.cProgress strong {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 60px;
    font-size: 16px;
}
.cProgress strong i {
    font-style: normal;
    font-size: 0.6em;
    font-weight: normal;
}
.cProgress span {
    display: block;
    color: #aaa;
    margin-top: 12px;
}

.cause-thumb{
	position:relative;
	display:inline-block;
	float:left;
}
.cause-thumb img{
	width:100px;
	height:100px;
	border-radius:100%;
	float:left;
	margin-right:30px;
}

.carousel-wrapper{
	overflow:hidden;
	background:url(../images/loader.gif) no-repeat center center;
	min-height:150px;
}
.owl-carousel .owl-wrapper-outer{
	padding-top:30px;
}
.widget .owl-carousel .owl-wrapper-outer{
	padding-top:10px;
}
.btn-rounded{
	border-radius:30px;
}
.light-title{
	color:#fff!important;
}
.gallery-items{
	list-style-type:none;
	margin:0;
}
.causes-list-item h4 a:hover, .urgent-cause .post-title a:hover, .flex-caption-cause h3 a:hover{
	color:#333;
}


.meta-data{
	color:#aaa;
	font-size:12px;
	line-height: 16px;
	display:block;
	font-weight:400;
	text-transform:uppercase;
	font-family:"Lato", sans-serif;
}
.meta-data a{
	color:#999;
}
.meta-data a:hover{
	text-decoration:none;
}
.meta-data > span{
	display:inline-block;
}
.meta-data i{
	margin-right:4px;
}
.meta-data > span:last-child{
	margin-right:0;
}
p.meta-data{
	font-size:16px;
	line-height:1.7em;
}


