.h2 {
	font-size: 26px;
	font-weight: 300;
	margin-bottom: 20px;
	width: 70%;
	line-height: 32px;
	letter-spacing: 1px;
	margin-top: 60px;
}		

b {
	font-weight: 400;
}

.h4 {
	font-size: 26px;
	font-weight: 700;
	line-height: 32px;
	letter-spacing: 1px;
}		

.text-small {
	font-size: 16px;
	line-height: 22px;
}

.small-label, legend {
	text-transform: uppercase;
	font-size: 12px;
	line-height: 14px;	
	color: #677280;
	letter-spacing: 1px;
	margin-bottom: 10px;
	display: block;
}

fieldset {
	border: 1px solid rgba(0,0,0,0.15);
	padding: 0 10px;
	border-radius: 5px;
	margin-bottom: 20px;
}

fieldset legend {
	padding: 0 15px;
}


.large-label {
	text-transform: uppercase;
	font-size: 18px;
	line-height: 20px;	
	letter-spacing: 1px;
}

.btn {
	color: #fff;
	background: #2f4546;	
	font-weight: 700;							
	text-decoration: none;
	padding: 10px 24px;
	box-shadow: 0 0 20px 0 #129da40d;
	border-radius: 5px;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 1px;	
	font-size: 12px;
	transition: background-color .5s ease-out;
	border:0;
	cursor:pointer;
}

.btn:hover {
	background: #1ab4bf;
}

.cont {
	padding: 60px 0;
}

.grid {
	display: flex;
	margin: 20px 0;
}

.left {
	width: 35%;
	padding: 20px;
	display: flex;
	flex-direction: column;	
}

.left .h2 {
	margin-top: 0;
	width: 100%;
}

.right {
	width:65%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-left: 60px;
}

.inputText {
	background: #E3E9EA;
	padding: 5px 10px;
	width: 50px;
	border-radius: 6px;
	margin-left: 20px;
}

.code-wrapper {
	position:relative;
	width: 100%;
	min-height: 150px;
	display: flex;
	flex-direction: column;
}

.code-preview {
	background: #e3e9ea;
	padding: 15px 15px 50px 15px;
	border-radius: 6px;
	width: 100%;
	height: 100%;
}

.code-hint {
	position: absolute;
	right: 50px;
	bottom: 0;
	padding: 10px;
	color: #000;
	font-size: 12px;
	height: 48px;
}

.icon-btn {
	background: #fff;
	border: 0;
	padding: 10px;
	border-radius: 6px 0 6px 0;
	position: absolute;
	bottom: 0;
	right: 0;
	height: 48px;
	width: 48px;
}

.boxing {
	background: #fff;
	padding: 30px;
	box-shadow: #e2e8f0 0px 25px 50px -12px;
	border-radius: 10px;
}

.color-a {
	background: #f4f7f6;
}

/* Mobile */
@media only screen and (min-width: 18.75em) and (max-width: 740px) {
	.grid {
		flex-direction: column;
	}

	.left {
		width: 100%;
	}

	.right {
		width: 100%;
		padding-left: 0;
	}	
}