/* hide on default, then once everything has loaded,
fadeIn() our content using jquery */
#container { display: none; border: none; }


/* ----------------------------------------
	Helpers
---------------------------------------- */

/*div { border: solid blue 1px; }*/


/* ----------------------------------------
	Character Defaults
---------------------------------------- */

/* any shared qualities between your two characters */
.character { 
	width: 150px;
	height: 150px;
}

#thing-1 { 
	width: 90px;
	height: 90px;
	background: blue;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	/* position your character however you'd like within the container */
	bottom: 40%; 
	right: 5%;
}

#thing-2 { 
	width: 100px;
	height: 100px;
	background: green;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	/* position your character however you'd like within the container */
	bottom: 40%;
	left: 5%;
}


/* ----------------------------------------
	Character States
	for each character, there are 5 states ... 

	1. default : what we see when we land on the page
	2. hover : when our cursor is over the character
	3. click : when we click on the character
	4. hover-response : how character responds to its partner being hovered on
	5. click-response : how character responds to its partner being clicked on;
---------------------------------------- */

/* THING 1 */
#thing-1 {
	animation: thing-1 3s infinite;
}
#thing-1.hover {
	animation: thing-1 0.4s infinite;
}
#thing-1.click {
  animation: thing-1-click 1s;
  animation-iteration-count: 5;
  transform-origin: 50% 50%;
}

/* THING 1 responding to thing 2 */
#thing-1.hover-response {
	animation: thing-1-hover-response 0.3s linear infinite alternate;
	animation-fill-mode: forwards;
}
#thing-1.click-response {
	animation: thing-1-click-response 5s;
}


/* THING 2 */
#thing-2 {
	animation: thing-2 1s infinite;
}
#thing-2.hover {
	
}
#thing-2.click {

}

/* THING 2 responding to thing 1 */
#thing-2.hover-response {

}
#thing-2.click-response {
	
}


@keyframes thing-1-hover-response {
	0% { transform: translate(-10px,10px); }
	25% { transform: translate(-10px,-10px); }
	50% { transform: translate(10px,-10px); }
	75% { transform: translate(-10px,10px); }
}


@keyframes thing-2 {
  0%       { bottom:5px; }
  25%, 75% { bottom:10px; }
  50%      { bottom:15px; }
  100%     {bottom:0;}
}

@keyframes thing-2-hover {
  0%       { bottom:5px; }
  25%, 75% { bottom:10px; }
  50%      { bottom:15px; }
  100%     {bottom:0;}
}


@keyframes thing-1 {
	0% { transform: scale(1); }
	25% { transform: scale(1.10); }
	50% { transform: scale(1); }
	75% { transform: scale(1.10); }
	100% { transform: scale(1); }
}

@keyframes thing-1-click {
  0%   {transform: translate3d(0,0,0);}
  40%  {transform: translate3d(0,100%,0);}
  100% {transform: translate3d(0,0,0);}
}


@keyframes thing-1-click-response {
  0% {transform:  translate(-23px,-23px);}
  100% {transform:  translate(-371px,-27px);}















