@charset "utf-8";
<!--body {
  margin: 0px;
  width: 100%;
}-->
.wrap {
  margin: 0px auto;
  width: 486px;
}
.wrap2 {
  margin: 0px auto;
  overflow: hidden;
  /*width: 90%;*/
}
.box {
  width: 160px;
  height: 120px;
  float: left;
  background: #347fc3;
  border: 1px solid #fff;
  overflow: hidden;
}

/*.text {
  text-align: center;
  margin-top: 8px;
  margin-bottom: 8px;
  color: green;
  font-size: 1.0em;
  font-family: sans-serif;
  text-transform: uppercase;
}*/

.animated {
  animation-duration: 2.5s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-30px);}
  60% {transform: translateY(-15px);}
}
.bounce {
  animation-name: bounce;
}

@keyframes flash {
  0%, 50%, 100% {opacity: 1;}
  25%, 75% {opacity: 0;}
}
.flash {
  animation-name: flash;
}

@keyframes pulse {
  0% {transform: scale(1);}
  50% {transform: scale(1.1);}
  100% {transform: scale(1);}
}
.pulse {
  animation-name: pulse;
  animation-duration: 1s;
}

@keyframes yes {
  0% {transform: translateX(100%) skewX(-30deg);opacity: .5;}
  60% {transform: translateX(-20%) skewX(30deg);opacity: 1;}
  80% {transform: translateX(0%) skewX(-15deg);opacity: 1;}
  100% {transform: translateX(0%) skewX(0deg);opacity: 1;}
}
.yes {
  animation-name: yes;
  animation-duration: 2s; /*remove for origin*/
  animation-timing-function: ease-out;
}

@keyframes rubberBand {
  0% {transform:  scale(1);} /*0%*/
  10% {transform: scaleX(1.25) scaleY(0.75);} /*30%*/
  15% {transform: scaleX(0.75) scaleY(1.25);} /*40%*/
  22% {transform: scaleX(1.15) scaleY(0.85);} /*60%*/
  32% {transform: scale(1);} /*100%*/
}
.rubberBand {
  animation-name: rubberBand;
  animation-duration: 5s; /*remove for origin*/
}

@keyframes shake {
  0%, 100% {transform: translateX(0);}
  10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
  20%, 40%, 60%, 80% {transform: translateX(10px);}
}
.shake {
  animation-name: shake;
}

@keyframes swing {
  20% {transform: rotate(15deg);}
  40% {transform: rotate(-10deg);}
  60% {transform: rotate(5deg);}
  80% {transform: rotate(-5deg);}
  100% {transform: rotate(0deg);}
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes wobble {
  0% {transform: translateX(0%);}
  15% {transform: translateX(-25%) rotate(-5deg);}
  30% {transform: translateX(20%) rotate(3deg);}
  45% {transform: translateX(-15%) rotate(-3deg);}
  60% {transform: translateX(10%) rotate(2deg);}
  75% {transform: translateX(-5%) rotate(-1deg);}
  100% {transform: translateX(0%);}
}
.wobble {
  animation-name: wobble;
}

@keyframes flip {
  0% {transform: perspective(400px) translateZ(0) rotateY(0) scale(1);animation-timing-function: ease-out;}
  40% {transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);animation-timing-function: ease-out;}
  50% {transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);animation-timing-function: ease-in;}
  80% {transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);animation-timing-function: ease-in;}
  100% {transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);animation-timing-function: ease-in;}
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes lightSpeedIn {
  0% {transform: translateX(100%) skewX(-30deg);opacity: 0;}
  60% {transform: translateX(-20%) skewX(30deg);opacity: 1;}
  80% {transform: translateX(0%) skewX(-15deg);opacity: 1;}
  100% {transform: translateX(0%) skewX(0deg);opacity: 1;}
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes rollIn {
  0% {opacity: 0;transform: translateX(-100%) rotate(-120deg);}
  100% {opacity: 1;transform: translateX(0px) rotate(0deg);}
}
.rollIn {
  animation-name: rollIn;
}

@keyframes rotateIn {
  0% {transform-origin: center center;transform: rotate(-200deg);opacity: 0;}
  100% {transform-origin: center center;transform: rotate(0);opacity: 1;}
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes hinge {
  0% {transform: rotate(0);transform-origin: top left;animation-timing-function: ease-in-out;}
  20%, 60% {transform: rotate(80deg);transform-origin: top left;animation-timing-function: ease-in-out;}
  40% {transform: rotate(60deg);transform-origin: top left;animation-timing-function: ease-in-out;}
  80% {transform: rotate(60deg) translateY(0);transform-origin: top left;animation-timing-function: ease-in-out;}
  100% {transform: translateY(700px);}
}
.hinge {
  margin: 20px;
  animation-name: hinge;
}

.glow {      /*p:nth-child(1) a {*/
  color: #000;
  /*font-family: Monoton;*/
  -webkit-animation: neon1 1.5s ease-in-out infinite alternate;
  -moz-animation: neon1 1.5s ease-in-out infinite alternate;
   animation: neon1 1.5s ease-in-out infinite alternate;
}
@keyframes neon1 {
  from {
    text-shadow: 0 0 1px #fffc70, 0 0 2px #fffc70, 0 0 3px #fffc70, 0 0 4px #FFFF00, 0 0 7px #FFFF00, 0 0 8px #FFFF00, 0 0 10px #FFFF00, 0 0 15px #FFFF00;
  }
  to {
    text-shadow: 0 0 5px #fffc70, 0 0 8px #fffc70, 0 0 14px #fffc70, 0 0 18px #FFFF00, 0 0 20px #fffc70, 0 0 25px #FFFF00, 0 0 36px #FFFF00, 0 0 30px #FFFF00;
  }
}

.strikethrough {
	display: inline-block;
	position: relative;
	transition: all 0.5s cubic-bezier(.55, 0, .1, 1);
}
.strikethrough:after {
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	box-shadow: 0 1px rgba(255,255,255,0.6);
	margin-top: -0.7em;
	background: red;
	transform-origin: center left;
	animation: strikethrough 10s 1s cubic-bezier(.55, 0, .1, 1) 1;
	animation-iteration-count:infinite;
	transition: transform 1s cubic-bezier(.55, 0, .1, 1);




}
@keyframes strikethrough {
	0% {transform-origin: center right;}
	20%  {transform: scaleX(0);}
	40% {transform: scaleX(1);}
	60% {transform: scaleX(0);}
	100% {transform-origin: center left;}
}











@media all and (max-width: 680px) {
  .wrap {
   width: 85%;
  }
  .box {
    width: 90%;
  	height: 55px;
    clear: both;
    margin: 0px auto;
	align: center;
  }
  ./*text {
   margin-top: 20px; 
  }*/
  .hingebox, .flipbox {
     display: none; 
  }
}