

/* #######################################################################

	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.bugme-fixed {
	/*position: fixed;*/
	top: 0;
	left: 0;
    z-index: 14;  
}

/* For IE7 users where border box doesn't work */
.ie7 .bugme {
	width: 84%; 
	padding: 30px 8%;
}
 
/* links within the bar */
.bugme a {
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}

.bugme a:hover {
	color: #DBC8B6;
	text-decoration: unset !important;
}

/* the close button */ 
.bugme-close {
	position: absolute;
    top: 15px;
    right: 15px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    width: 25px;
    height: 25px;
    min-height: auto;
    text-align: center;
    cursor: pointer;
}
.bugme-close.bugme-close-left {
	right: auto;
	left: 0;
}

/* colour transitions */
.bugme.colours {
	-webkit-animation:colour 48s 30 ease-in-out;
	-moz-animation:colour 48s 30 ease-in-out;
	-ms-animation:colour 48s 30 ease-in-out;
	-o-animation:colour 48s 30 ease-in-out;
	animation:colour 48s 30 ease-in-out;
	animation-iteration-count:infinite;
}

@-webkit-keyframes colour {
	0% { background-color: #3498db; }
	15% { background-color: #2ecc71; }
	28% { background-color: #1abc9c; }
	41% { background-color: #9b59b6; }
	53% { background-color: #e74c3c; }
	65% { background-color: #f39c12; }
	78% { background-color: #e67e22; }
	90% { background-color: #2ecc71; }
	100% { background-color: #3498db; }
}

@-moz-keyframes colour {
	0% { background-color: #3498db; }
	15% { background-color: #2ecc71; }
	28% { background-color: #1abc9c; }
	41% { background-color: #9b59b6; }
	53% { background-color: #e74c3c; }
	65% { background-color: #f39c12; }
	78% { background-color: #e67e22; }
	90% { background-color: #2ecc71; }
	100% { background-color: #3498db; }
}

@-ms-keyframes colour {
	0% { background-color: #3498db; }
	15% { background-color: #2ecc71; }
	28% { background-color: #1abc9c; }
	41% { background-color: #9b59b6; }
	53% { background-color: #e74c3c; }
	65% { background-color: #f39c12; }
	78% { background-color: #e67e22; }
	90% { background-color: #2ecc71; }
	100% { background-color: #3498db; }
}

@-o-keyframes colour {
	0% { background-color: #3498db; }
	15% { background-color: #2ecc71; }
	28% { background-color: #1abc9c; }
	41% { background-color: #9b59b6; }
	53% { background-color: #e74c3c; }
	65% { background-color: #f39c12; }
	78% { background-color: #e67e22; }
	90% { background-color: #2ecc71; }
	100% { background-color: #3498db; }
}

@keyframes colour {
	0% { background-color: #3498db; }
	15% { background-color: #2ecc71; }
	28% { background-color: #1abc9c; }
	41% { background-color: #9b59b6; }
	53% { background-color: #e74c3c; }
	65% { background-color: #f39c12; }
	78% { background-color: #e67e22; }
	90% { background-color: #2ecc71; }
	100% { background-color: #3498db; }
}


/* 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;
}


