/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');

/* PLUGIN STYLES */

body {
	-webkit-transition: .5s;
	-moz-transition: .5s;
	transition: .5s;	
}

body.ccActive {
	margin-top:40px;
	-webkit-transition: 0;  
	-moz-transition: 0;  
	transition: 0;
}

#header {
	-webkit-transition: .5s;
	-moz-transition: .5s;
	transition: .5s;	
}

#CC_Bar {
	position: absolute;
	top:0; left:0; right:0;
	height:40px;
	background-color:#555;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	transition: .5s;
	transition-timing-function: ease;
	background-position:bottom;
	background-repeat: repeat-x;
	z-index: 60000000000;
	box-shadow: inset 0 -10px 5px -10px rgba(0, 0, 0, 0.6);
}

#CC_Inner {
	position: relative;
	width: 960px;
	margin-left:auto;
	margin-right:auto;
}

#CC_Inner p {
	height:40px;
	line-height: 40px;
	color: #FFF;
	font-family: Montserrat, "Helvetica Neue";
	font-weight: 400;
	font-size: 12px;	
	float:left;
	margin: 0;
	padding: 0;
}

#CC_Inner p a {
	color:#FFF;
}

.CC_Button {
	float:right;
	height: 40px;
	width: 40px;
	line-height:30px;
	background-color: #888;
	color:#000;
	font-family: Georgia;
	font-size: 12px;
	text-decoration:none;
	background-image: url(accept.png);
	background-position: center;
	background-repeat: no-repeat;
	-webkit-transition: .2s;  
	-moz-transition: .2s;  
	transition: .2s;
	cursor: pointer;
	box-shadow: inset 0 -10px 5px -10px rgba(0, 0, 0, 0.6);
}

.CC_Button:hover {
	background-color: #8CC63F;
}

.CC_ButtonSecondary {
	right: 40px;
	float:right;
	height: 40px;
	width: 140px;
	line-height: 40px;
	background-color: #666;
	color: #FFF;
	font-family: Montserrat, "Helvetica Neue";
	font-weight: 400;
	text-align: center;
	font-size: 12px;
	text-transform: uppercase;
	text-decoration:none;  
	-webkit-transition: .35s;
	-moz-transition: .35s;
	transition: .35s;
	position: absolute;
	cursor: pointer;
	visibility: hidden;
	opacity: 0;	
	letter-spacing: 6px;
	box-shadow: inset 0 -10px 5px -10px rgba(0, 0, 0, 0.6);
}

.CC_ButtonSecondary.active {
	visibility:visible;
	opacity: 1;	
	letter-spacing: 0;
}

#CC_ReadLess {

}

#CC_InfoBox {
	width: 260px;
	position: absolute;
	top: 48px;
	right: 0;
	padding: 20px;
	padding-bottom: 16px;
	background-color: #1A1A1A;
	-webkit-transition: .35s;
	-moz-transition: .35s;
	transition: .35s;
	transition-timing-function: ease;
	z-index: 1000000;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	transform: scale(0.9);
}

#CC_InfoBox .tail {
	position:absolute;
	top: -15px;
	right: 95px;
	background-image: url(infoBoxTail.png);
	height:15px;
	width:30px;
	pointer-events: none;
}

#CC_InfoBox .title {
	margin: 0;
	color: #FFF;
	font-family: Montserrat, "Helvetica Neue";
	font-weight: 400;
	text-shadow: none;
	font-size: 26px;
	font-style: normal;
	line-height: 32px;
	text-transform: uppercase;
	margin-bottom: 10px;
	padding: 0;
}

#CC_InfoBox p {
	height: auto;
	color: #FFF;                           
	margin-top: 0;
	margin-bottom: 14px;
	font-size: 12px;
	line-height: 18px;
	font-family: Montserrat, "Helvetica Neue";
	text-align: center;
}

#CC_InfoBox p:last-child {
	margin-bottom: 0;
}

/* INFOBOX OPEN STYLES */

#CC_InfoBox.open {
	opacity:1;
	visibility:visible;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	transform: scale(1);
}

/* STYLES WHEN CLOSED BUTTON CLICKED */

#CC_Bar.closed {
	top:-40px;
}

#CC_Bar.closed #CC_InfoBox {
	opacity:0 !important;
	visibility:hidden !important;
}