

/* #######################################################################

	bugMe
	--------
	
	To be used with jquery.bugme.js by Chris Wharton (http://weare2ndfloor.com)

####################################################################### */

/* default link transitions */
.bugme a, .bugme a:hover {
	-o-transition: color 0.25s ease-in;
	-webkit-transition: color 0.25s ease-in;
	-moz-transition: color 0.25s ease-in;
	transition: color 0.25s ease-in;
	text-decoration: none;
}

/* the main bugme bar */
.bugme {
	width: 100%; 
	position: relative; 
	float: left; 
	clear: both; 
	padding: 15px 20px;
	background: #f6f6f6;
	color: #333;
	font-size: 17px;
	line-height: 1.4;
	font-family: "proxima-nova","HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif;
	font-weight: 400;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-top: 1px solid #333;
}	

.bugme.bugme-fixed {
	position: fixed;
	bottom: 0;
	left: 0;
}

/* For IE7 users where border box doesn't work */
.ie7 .bugme {
	width: 96%; 
	padding: 15px 2%;
}

/* links within the bar */
.bugme a.bugme-close {
	color: #333;
	font-weight: 600;
	text-decoration: none;
}

/* the close button */
.bugme-close {
	position: absolute;
	top: 15px;
	right: 20px;
	text-decoration: none;
	font-weight: 600;
	color: #fff;
	min-width: 44px;
	min-height: 44px;
	text-align: right;
}

.bugme-close.bugme-close-left {
	right: auto;
	left: 0;
}

.bugme .container {
	max-width: 1100px; 
	padding: 2rem 1rem;
}

.bugme .button { margin-bottom: 0; }

.bugme .videofit { margin: 0; }

.bugme h3 {
	    font-size: 2.4rem;
}

/* a little media query to give the bar some more breathing room */

@media screen and (max-width: 720px) {

	.bugme {
		padding: 20px;
		text-align: center !important;
	}

	.bugme h3 {
	    font-size: 2rem;
	    line-height: 1.3;
	    margin-bottom: 1rem;
	    margin-top: 0;
	}

	.bugme .expanded, .bugme .videofit { display: none; }


	.bugme .button { height: 30px; line-height: 30px; }

	.bugme p {margin-bottom: 1rem; display:none;}
	
	.bugme .container {
		padding:0 1rem;
		max-width:300px;
	}

.bugme-close {
	top: 10px;
	right: 10px;
	}
}

/* animated stuff, powered by http://daneden.me/animate/ */

.bugmebar-animated{-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:1.25s;-moz-animation-duration:1.25s;-ms-animation-duration:1.25s;-o-animation-duration:1.25s;animation-duration:1.25s;}


@-webkit-keyframes bugmebar-bounceInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
	}	60% {
		opacity: 1;
		-webkit-transform: translateY(30px);
	}
	
	80% {
		-webkit-transform: translateY(-10px);
	}
	
	100% {
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes bugmebar-bounceInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-2000px);
	}
	
	60% {
		opacity: 1;
		-moz-transform: translateY(30px);
	}
	
	80% {
		-moz-transform: translateY(-10px);
	}
	
	100% {
		-moz-transform: translateY(0);
	}
}

@-o-keyframes bugmebar-bounceInDown {
	0% {
		opacity: 0;
		-o-transform: translateY(-2000px);
	}
	
	60% {
		opacity: 1;
		-o-transform: translateY(30px);
	}
	
	80% {
		-o-transform: translateY(-10px);
	}
	
	100% {
		-o-transform: translateY(0);
	}
}

@keyframes bugmebar-bounceInDown {
	0% {
		opacity: 0;
		transform: translateY(-2000px);
	}
	
	60% {
		opacity: 1;
		transform: translateY(30px);
	}
	
	80% {
		transform: translateY(-10px);
	}
	
	100% {
		transform: translateY(0);
	}
}

.bugmebar-bounceInDown {
	-webkit-animation-name: bugmebar-bounceInDown;
	-moz-animation-name: bugmebar-bounceInDown;
	-o-animation-name: bugmebar-bounceInDown;
	animation-name: bugmebar-bounceInDown;
}
@-webkit-keyframes bugmebar-bounceOutUp {
	0% {
		-webkit-transform: translateY(0);
	}
	
	20% {
		opacity: 1;
		-webkit-transform: translateY(20px);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
	}
}

@-moz-keyframes bugmebar-bounceOutUp {
	0% {
		-moz-transform: translateY(0);
	}
	
	20% {
		opacity: 1;
		-moz-transform: translateY(20px);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateY(-2000px);
	}
}

@-o-keyframes bugmebar-bounceOutUp {
	0% {
		-o-transform: translateY(0);
	}
	
	20% {
		opacity: 1;
		-o-transform: translateY(20px);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateY(-2000px);
	}
}

@keyframes bugmebar-bounceOutUp {
	0% {
		transform: translateY(0);
	}
	
	20% {
		opacity: 1;
		transform: translateY(20px);
	}
	
	100% {
		opacity: 0;
		transform: translateY(-2000px);
	}
}

.bugmebar-bounceOutUp {
	-webkit-animation-name: bugmebar-bounceOutUp;
	-moz-animation-name: bugmebar-bounceOutUp;
	-o-animation-name: bugmebar-bounceOutUp;
	animation-name: bugmebar-bounceOutUp;
}


