/* General button style (reset) */
.btn {
	
    background: none !important;
    cursor: pointer !important;
    width: 100% !important;
    padding: 1% 0% !important;
    display: inline-block !important;
    margin: 2% 2% 1% 0% !important;
    text-transform: uppercase !important;
    font-size: 1.1em !important;
    letter-spacing: 1px !important;
    font-weight: normal !important;
    text-align: center !important;
    outline: none !important;
    position: relative;
    -webkit-transition: all 0.3s !important;
    -moz-transition: all 0.3s !important;
    transition: all 0.3s !important;
    border: 1px solid #2c2211 !important;
}


.btn:hover{
	color:#fff !important;
}

.btn:after {
	content: '' !important;
	position: absolute !important;
	z-index: -1 !important;
	-webkit-transition: all 0.3s !important;
	-moz-transition: all 0.3s !important;
	transition: all 0.3s !important;
}

/* Button 1 */
.btn-1 {
	border:1px solid #2c2211 !important;
	color: #2c2211 !important;
}

/* Button 1c */
.btn-1c:after {
	width: 0% !important;
	height: 100% !important;
	top: 0 !important;
	left: 0 !important;
	background: #2c2211 !important;
	color:#fff !important;
}

.btn-1c:hover,
.btn-1c:active {
	color: #fff !important;
}

.btn-1c:hover:after,
.btn-1c:active:after {
	width: 100% !important;
}