.blureffect {
  -webkit-animation: blureffect 0.5s linear forwards;
  -moz-animation: blureffect 0.5s linear forwards;
  -ms-animation: blureffect 0.5s linear forwards;
  -o-animation: blureffect 0.5s linear forwards;
  animation: blureffect 0.5s linear forwards;
  -webkit-animation-delay: 5s;
  -moz-animation-delay: 5s;
  animation-delay: 5s;
}

@-webkit-keyframes blureffect {
  to {
    -webkit-filter: blur(5px);
    filter: blur(5px);
  }
}
@-moz-keyframes blureffect {
  to {
    -moz-filter: blur(5px);
    filter: blur(5px);
  }
}
@keyframes blureffect {
  to {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    filter: blur(5px);
  }
}

/*delays*/
.delay-0 {
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s;
}

.delay-1 {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

.delay-2 {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
}

.delay-3 {
  -webkit-animation-delay: 3s;
  -moz-animation-delay: 3s;
  animation-delay: 3s;
}

.delay-4 {
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  animation-delay: 4s;
}

.delay-5 {
  -webkit-animation-delay: 5s;
  -moz-animation-delay: 5s;
  animation-delay: 5s;
}

.delay-6 {
  -webkit-animation-delay: 6s;
  -moz-animation-delay: 6s;
  animation-delay: 6s;
}

.duration-1 {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
}

.duration-2 {
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  animation-duration: 2s;
}

.duration-3 {
  -webkit-animation-duration: 3s;
  -moz-animation-duration: 3s;
  animation-duration: 3s;
}

.duration-5 {
  -webkit-animation-duration: 5s;
  -moz-animation-duration: 5s;
  animation-duration: 5s;
}

.duration-6 {
  -webkit-animation-duration: 6s;
  -moz-animation-duration: 6s;
  animation-duration: 6s;
}

.duration-7 {
  -webkit-animation-duration: 7s;
  -moz-animation-duration: 7s;
  animation-duration: 7s;
}

.duration-8 {
  -webkit-animation-duration: 8s;
  -moz-animation-duration: 8s;
  animation-duration: 8s;
}

.duration-9 {
  -webkit-animation-duration: 9s;
  -moz-animation-duration: 9s;
  animation-duration: 9s;
}


/*drop*/
.Drop {
  -webkit-animation-name: drop;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  animation-name: drop;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-play-state: running;
}

@-webkit-keyframes drop {
  0%   { top:5px;opacity: 0;}
  30% { top:10px;opacity: 1;}
  100% { top:25px;opacity: 0;}
}

@keyframes drop {
  0%   { top:5px;opacity: 0;}
  30% { top:10px;opacity: 1;}
  100% { top:25px;opacity: 0;}
}

.gcs-a-tada{
  display: inline-block;
  -webkit-animation-name: tada;
  /*-webkit-animation-duration: 5s;*/
  -webkit-animation-timing-function: linear;
  /*-webkit-animation-delay: 0s;*/
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  animation-name: tada;
  /*animation-duration: 5s;*/
  animation-timing-function: linear;
  /*animation-delay: 0s;*/
  animation-iteration-count: infinite;
  animation-play-state: running;
}

/*Grow*/
/*Grow animation*/
.gcs-a-grow{
  display: inline-block;
  -webkit-animation-name: gcs-a-grow;
  /*-webkit-animation-duration: 5s;*/
  -webkit-animation-timing-function: linear;
  /*-webkit-animation-delay: 0s;*/
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  animation-name: gcs-a-grow;
  /*animation-duration: 5s;*/
  animation-timing-function: linear;
  /*animation-delay: 0s;*/
  animation-iteration-count: infinite;
  animation-play-state: running;
}

@-webkit-keyframes gcs-a-grow {
  0%   {-webkit-transform: scale(1.0); transform: scale(1.0);}
  3% { -webkit-transform: scale(1.2); transform: scale(1.2);}
  7%, 100% { -webkit-transform: scale(1.0); transform: scale(1.0);}
}
@keyframes gcs-a-grow {
  0%   {-webkit-transform: scale(1.0); transform: scale(1.0);}
  3% { -webkit-transform: scale(1.2); transform: scale(1.2);}
  7%, 100% { -webkit-transform: scale(1.0); transform: scale(1.0);}
}

/*Grow transition*/
.gcs-grow {
    display: inline-block;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    /*display: inline-block;
    -webkit-transition-property: animation-name;
    transition-property: animation-name;
     animation-duration: .3s;*/
}

.gcs-grow:hover, .gcs-grow:focus, .gcs-grow:active {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    /*animation-name: pulse;*/
}

/*Flip card*/
.gcs-card-container {
	height: 400px;
	width: 500px;
	perspective: 600;
	position: relative;
}

.gcs-card {
	height: 100%;
	position: absolute;
	transform-style: preserve-3d;
	transition: all 1s ease-in-out;
	width: 100%;
}
.gcs-card:hover {
	transform: rotateY(180deg);
}
.gcs-card-side {
	backface-visibility: hidden;
	height: 100%;
	position: absolute;
	width: 100%;
}
.gcs-card-back {
	transform: rotateY(180deg);
	backface-visibility: hidden;
	height: 100%;
	position: absolute;
	width: 100%;
}

@media (max-width: 991px){ /* @screen-sm-max */

	.gcs-card{
			position: relative !important;
			height: auto;
			transition: none;
			width: auto;
	}

	.gcs-card-side{
		position: relative !important;
	}

	.gcs-card-back{
		display: none;
		position: relative !important;
	}

	.gcs-card:hover {
		transform: none;
	}

	.gcs-card-container{
		width: auto;
		height: auto;
	}
}
