
/* General button style (reset) */
.btnstyle {
  display: block;
	margin: auto auto 30px auto;
	padding: 0px 0px 0px 40px;
	width: 220px;
	height: 50px;
	border: none;
  border-radius: 100px;
	font-family:'Nanum Gothic', serif;
	font-size: 16px;
 // background: #52cd6c;
	color: #ffffff;
  vertical-align: middle;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
	outline: none;
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;

  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}


.btnstyle:after {
	content: '';
	position: absolute;
	z-index: -1;
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	transition: all 0.8s;
}

/* Pseudo elements for icons */
.btnstyle:before {
	font-family: 'icomoon';
  	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	position: relative;
	-webkit-font-smoothing: antialiased;


}

.btnstyle:hover, .btnstyle:focus, .btnstyle:active {
  color: white;
  outline: none; }

.btn:hover:before, .btn:focus:before, .btn:active:before {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1); }


.icon-truck:before {
	content: "\e00e";
}


.btnstyle-7a:before {
	position: absolute;
	left: 0;
	width: 40%;
	font-size: 160%;
	line-height: 0.8;
	color: rgba(190, 255, 207, 0.44);
}

.btnstyle-7a.btnstyle-activated {
	-webkit-animation: fadeOutText 0.5s;
	-moz-animation: fadeOutText 0.5s;
	animation: fadeOutText 0.5s;
  color: transparent;
}

.btnstyle-7a.btnstyle-activated:before {
	-webkit-animation: moveToRight 0.5s;
	-moz-animation: moveToRight 0.5s;
	animation: moveToRight 0.5s;
}


@-webkit-keyframes fadeOutText {
	0% { color: transparent; }
	80% { color: transparent; }
	100% { color: #fff; }
}

@-moz-keyframes fadeOutText {
	0% { color: transparent; }
	80% { color: transparent; }
	100% { color: #fff; }
}

@keyframes fadeOutText {
	0% { color: transparent; }
	80% { color: transparent; }
	100% { color: #fff; }
}

.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}

@-webkit-keyframes moveToRight {
	80% { -webkit-transform: translateX(150%); }
	81% { opacity: 1; -webkit-transform: translateX(150%); }
	82% { opacity: 0; -webkit-transform: translateX(150%); }
	83% { opacity: 0; -webkit-transform: translateX(-50%); }
	84% { opacity: 1; -webkit-transform: translateX(-50%);  }
	100% { -webkit-transform: translateX(0%); }
}

@-moz-keyframes moveToRight {
	80% { -moz-transform: translateX(150%); }
	81% { opacity: 1; -moz-transform: translateX(150%); }
	82% { opacity: 0; -moz-transform: translateX(150%); }
	83% { opacity: 0; -moz-transform: translateX(-50%); }
	84% { opacity: 1; -moz-transform: translateX(-50%);  }
	100% { -moz-transform: translateX(0%); }
}

@keyframes moveToRight {
	80% { transform: translateX(150%); }
	81% { opacity: 1; transform: translateX(150%); }
	82% { opacity: 0; transform: translateX(150%); }
	83% { opacity: 0; transform: translateX(-50%); }
	84% { opacity: 1; transform: translateX(-50%);  }
	100% { transform: translateX(0%); }
}



