/****************************************************************************
 *****Global Styles**********************************************************
 ***************************************************************************/
body {
    background: #007d1f;	
}

/****************************************************************************
 *****Centered Container*****************************************************
 ***************************************************************************/
.centered {
   display: table-cell;
   vertical-align: middle;
}

/****************************************************************************
 *****Generator**************************************************************
 ***************************************************************************/
#generator {
     width: 100%;
     height: 100vh;
     display: table;
}
.gift-card-generator {
	padding: 20px;
	margin-top: 10px;
    border-radius: 5px 5px 0 0;
    color: rgba(0,0,0, 0.87);
    background: #fff;	
	box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.34), 0 6px 30px 5px rgba(0, 0, 0, 0.32), 0 8px 10px -5px rgba(0, 0, 0, 0.5);
}
.title {    
    font-weight: bold;
    color: #007d1f;
}
.subtitle { 
    border-top: 1px solid #007d1f; 
	position: relative; 
	top: 20px; 
	width: 90%;
	margin: 0 auto 70px auto;
}
.subtitle span { 
   color: #fff; 
   text-decoration: none; 
   font-size: 14px; 
   text-align: center; 
   padding: 5px; 
   background: #007d1f; 
   width: 250px; 
   margin: 0 auto; 
   display: block; 
   position: relative; 
   top: -13px;
}
.cards {
	margin: 25px 0;
}
.card {
	box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
	margin-bottom: 20px;
}
.card img {
	padding: 10px;
	display: block;
	margin: 0 auto;
}
 .card:hover img{
	-webkit-animation: pulse 1s;
    animation: pulse 1s;	 
 }
.card-bottom {
	background: #007d1f;
}
.card-bottom h3 {
	padding-top: 10px;
	padding-bottom: 10px;	
	margin: 0;
	color: #ffffff;
	font-size: 18px;
}
.info {
    margin-top: 25px;	
}
.console {
   border: 1px solid #007d1f;
   height: 50px;
   width: 100%;
   margin-top: 50px;
}
#code {
	height: 50px;
    line-height:50px;
    vertical-align: middle;
	font-size: 20px;
}
@media only screen and (max-width : 768px) {
#code {
	font-size: 16px;
}
}
/****************************************************************************
 *****Button*****************************************************************
 ***************************************************************************/
.button {
	min-width: 100px;
	max-width: 220px;
	display: block;
	margin: 50px auto;
	padding: 1em 2em;
	text-align: center;
	border: none;
	background: none;
	color: #007d1f;
	text-transform: uppercase;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	border: 1px solid #007d1f;
	font-weight: 600;
}
.button:focus {
	outline: none;
}
.button > span {
	vertical-align: middle;
}

.button-gen {
	-webkit-transition: border-color 0.4s, color 0.4s;
	transition: border-color 0.4s, color 0.4s;
}
.button-gen::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #007d1f;
	z-index: -1;
	opacity: 0;
	-webkit-transform: scale3d(0.7, 1, 1);
	transform: scale3d(0.7, 1, 1);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
	transition: transform 0.4s, opacity 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button-gen,
.button-gen::before {
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button-gen:hover {
	color: #fff;
	border-color: #007d1f;
	text-decoration: none;
}
.button-gen:hover::before {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

/****************************************************************************
 *****Live Feed**************************************************************
 ***************************************************************************/
.feed {
	margin-top: 30px;
	margin-bottom: 30px;
	background: #fff;
	height: 100px;
	box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.34), 0 6px 30px 5px rgba(0, 0, 0, 0.32), 0 8px 10px -5px rgba(0, 0, 0, 0.5);
}
.feedl {
	float: left;
	width: 10%;
	height: 100px;
	background: #007d1f;
	-webkit-clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
	display: table;
	padding-left: 10px;
}
.feedl i {
    display: table-cell;
    vertical-align: middle;
    font-size: 50px;
	color: #000;
	opacity: .25;
	text-shadow: 0 1px 0 #ccc,
 0 2px 0 #c9c9c9,
 0 3px 0 #bbb,
 0 4px 0 #b9b9b9,
 0 5px 0 #aaa,
 0 6px 1px rgba(0,0,0,.1),
 0 0 5px rgba(0,0,0,.1),
 0 1px 3px rgba(0,0,0,.3),
 0 3px 5px rgba(0,0,0,.2),
 0 5px 10px rgba(0,0,0,.25),
 0 10px 10px rgba(0,0,0,.2),
 0 20px 20px rgba(0,0,0,.15);
}
.feedc {
    float: left;
	width: 75%;
	height: 100px;
	display: table;
}
.feedc p {
	display: table-cell;
    vertical-align: middle;
	font-size: 18px;
	padding-left: 50px;
	color: #A0A0A0;
}
.feedr {
	float: left;
	width: 15%;
	height: 100px;
	display: table;
}
.feedr p {
	display: table-cell;
    vertical-align: middle;
	font-size: 18px;
	text-align: center;
	color: #A0A0A0;
}
@media only screen and (max-width : 768px) {
.feedl i {
    font-size: 20px;
}
.feedc p {
	font-size: 12px;
	padding-left: 10px;
}
.feedr p {
	font-size: 12px;
}
}
/****************************************************************************
 *****Hidden on page load****************************************************
 ***************************************************************************/
.generator-step-2 {
	display: none;
}
.console {
	display: none;
}
.generator-step-3 {
	display: none;
}
.responsive {
  max-width: 100%;
  height: auto;
}