/* General button style (reset) */
.btn {
	background: none;
	cursor: pointer;
	width:100%;
	padding:4% 2%;
	display: inline-block;
	margin: 2% 2% 1% 0%;
	font-size:1.1em;
	letter-spacing: 1px;
	font-weight:normal;
	text-align:center;
	outline: none;
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	border:1px solid #123b65 !important;
}

.btn:hover{
	color:#fff;
}

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

/* Button 1 */
.btn-1 {
	border:1px solid #123b65;
	color: #123b65;
}

/* Button 1c */
.btn-1c:after {
	width: 0%;
	height: 100%;
	top: 0;
	left: 0;
	background: #123b65;
	color:#fff;
}

.btn-1c:hover,
.btn-1c:active {
	color: #fff;
	border:1px solid #123b65;
}

.btn-1c:hover:after,
.btn-1c:active:after {
	width: 100%;
}