@charset "UTF-8";
 
/******* Single Statment *****/
.statement .entry-meta {
    padding: 0.5em 0.5em 0.25em;
    border-top: 1px solid #ececec;
    margin: 1.5em 0 2.5em;
    border-bottom: 1px solid #ececec;
	height: 50px;
}

.statement .date {
    color: #666;
	line-height: 32px;
}

#progress {
	width: 85%;
    min-height: 50px;
    margin: 50px 0;
    align-content: center;
    text-align: center;
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
	background: #fff;
	-moz-box-shadow: 0 5px 20px rgba(0,0,0,0.12);
	-webkit-box-shadow: 0 5px 20px rgba(0,0,0,0.12);
	box-shadow: 0 5px 20px rgba(0,0,0,0.12);
	padding: 40px 5% 20px;
	margin-left:50%;
	transform: translateX(-50%);
	position: relative;
}

.progressStatus {
	color: #fff;
    font-size: 24px;
	padding: 10px 20px;
    text-align: center;
    margin-left: 50%;
    transform: translateX(-50%);
    display: block;
	-webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
	font-family: 'Vitesse', 'Encode Sans', sans-serif;
	-moz-box-shadow: 0 3px 10px rgba(0,0,0,0.15);
	-webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.15);
	box-shadow: 0 3px 10px rgba(0,0,0,0.15);
	text-transform: uppercase;
	line-height: 1.3em;
	margin-bottom: 20px;
	position: relative;
}


	.progressStatus.inreview {background: #5D46A1;}

	.progressStatus.ongoing {background: #FA9C09;}

	.progressStatus.monitoring {background: #02A38A;}

	.progressStatus.resolved {background: #EB004C;}

.initiative-box-home .stat.in-review { background: #5D46A1;}

.initiative-box-home .stat.ongoing { background: #FA9C09;}

.initiative-box-home .stat.monitoring { background: #02A38A;}

.initiative-box-home .stat.resolved { background: #EB004C;}


.statement > header.entry-header {
    margin: 60px 0;
}
 

.statement > .entry-meta.entry-meta-top {
	margin-bottom: 20px;
}
 
.statement > .entry-meta-element {
    margin-right: 10px;
    display: inline-block;
    width: 45px;
    height: 45px;
    background-color: #333;
    border-radius: 30px;
	padding-top: 5px;
	text-align: center;
	overflow: hidden;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
	color: #fff;
	vertical-align: middle;
}

.statement > .entry-meta-element:hover {
	background-color: #c00;
	-moz-box-shadow: 0 3px 10px rgba(0,0,0,0.15);
	-webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.15);
	box-shadow: 0 3px 10px rgba(0,0,0,0.15);
	transform: translateY(-2px);
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.statement > .entry-meta-element a {
    color: #fff !important;
    font-size: 25px;
}




/****** RBIRT Shortcode List ******/

.tag-button#in-review > .tag-container {background: #5D46A1;}
.tag-button#ongoing > .tag-container {background: #FA9C09;}
.tag-button#monitoring > .tag-container {background: #02A38A;}
.tag-button#resolved > .tag-container {background: #EB004C;}

.statement-box {
    margin: 2%;
    padding: 2%;
    display: inline-block;
    vertical-align: top;
    -moz-box-shadow: 0 3px 15px rgba(0,0,0,0.15);
	-webkit-box-shadow: 0 3px 15px rgba(0,0,0,0.15);
	box-shadow: 0 3px 15px rgba(0,0,0,0.15);
    width: 90%;
    margin-left: 5%;
}

	.statement-box h2 {
		margin-bottom: 10px;
		margin-top: 0;
		font-size: 24px;
	}
	.statement-box .statement-img {
		width: 150px;
		display: inline-block;
		vertical-align: middle;
	}
	.statement-box .statement-content {
		width: calc(100% - 350px);
		display: inline-block;
		margin: 0 20px;
		vertical-align: middle;
		text-align: left !important;
		line-height: 1.4em;
	}


.statement-deets {
	width: 160px;
	display: inline-block;
	vertical-align: middle;
	align-content: center;
	text-align: center;
}

	.statement-deets h3 {
		color: #fff;
		padding: 10px 15px;
		margin: 0;
		font-weight: normal;
		text-transform: uppercase;
		font-size: 17px;
	}

	.statement-deets a.button,
	.statement-deets a.button:hover {
		max-width: 160px;
		background-color: transparent;
		display: inline-block;
		color: #333;
		padding: 15px 15px 0 15px;
		border: none;
		position: relative;
	}

	/*.statement-deets a.button::after {
		position: absolute;
		right: 15px;
		content: "\f105";
		font-family: "FontAwesome";
		color: #333;
	} */


.statement-deets .in-review,
.statement-deets .ongoing,
.statement-deets .monitoring,
.statement-deets .resolved {
	-moz-box-shadow: 0 3px 15px rgba(0,0,0,0.15);
	-webkit-box-shadow: 0 3px 15px rgba(0,0,0,0.15);
	box-shadow: 0 3px 15px rgba(0,0,0,0.15);
	-webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;

}

	.statement-deets .in-review {background: #5D46A1;}

	.statement-deets .ongoing {background: #FA9C09;}

	.statement-deets .monitoring {background: #02A38A;}

	.statement-deets .resolved {background: #EB004C;}




/***************************************************
					MEDIA QUERIES
****************************************************/

@media screen and (max-width: 1000px) {
	.statement-box .statement-content {
		width: calc(80% - 80px);
		margin: 0 40px;
		vertical-align: top;
		float: right;
	}
	
	.statement-deets h3 {
		font-size: 12px;
	}
	
	.statement-box .statement-img {
		width: 20%;
		vertical-align: top;
	}
	
	.statement-deets {
		width: 20%;
		margin-top: 10px;
		display: block;
	}
	
}


@media screen and (max-width: 960px) {

	.statement-deets a.button::after {
   	 	right: 35px;
    	top: calc(50% - 1px);
	}
}

@media screen and (max-width:800px) {
	.statement-box .statement-content {
		width: calc(70% - 30px) !important;
		margin: 0 10px 0 20px !important;
	}
	
	.statement-box .statement-img {
		width: 30% !important;
	}
	
	.statement-deets {
		width: 30% !important;
	}	
}


@media screen and (max-width: 550px) {

	.statement-box {
		max-width: 100%;
	}
	
	#progress {
		font-size: 20px;
		margin-bottom: 10px;
	}
	
	.statement-box .statement-content {
		width: 90% !important;
		margin: 10px 20px !important;
		float: none !important;
	}
	
	.statement-box .statement-img {
		width: 90% !important;
		margin: 5% 5% 0 !important;
	}
	
	.statement-deets {
		width: 90% !important;
		margin: 2% 5% !important;
	}
	
	.statement-deets .inreview, 
	.statement-deets .ongoing, 
	.statement-deets .monitoring, 
	.statement-deets .resolved {
		display: inline-block;
		width: calc(100% - 160px);
	}
	
	.statement-deets h3 {
		font-size: 18px;
	}
	
}

@media screen and (max-width:400px) {
	#progress {
    	font-size: 18px;
	}
	
	.entry-header .page-title,
	.content-padding .page-title {
		font-size: 2.1em !important;
	}
	
	.statement-deets .inreview, 
	.statement-deets .ongoing, 
	.statement-deets .monitoring, 
	.statement-deets .resolved {
    	width: 100%;
	}
	
	
}
