@charset "utf-8";
/* CSS Document */

/* -----------------------------------------------------------
    error
-------------------------------------------------------------- */

#error {
    margin: 125px 0;
}

#error .title {
    margin: 50px 0;
    font-size: 1.7rem;
    line-height: 1.4;
    text-align: center;
}

#error .back_btn {
    width: 200px;
    height: 65px;
    margin: auto;
    background-color: #fff;
    border: 1px solid #05AC2C;
    color: #333;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.3;
    text-align: center;
    transition: 0.7s;
}

#error .back_btn:hover {
    border: 1px solid #036118;
}

#error .back_btn a {
    padding: 20px 0;
    color: #333;
    display: block;
	position: relative;
}

#error .back_btn a::before {
	color: #05AC2C;
	content: "\f104";
	font-family: FontAwesome;
	position: absolute;
	left: 20px;
}

@media screen and (max-width: 667px){

	#error {
		margin: 125px 0 80px;
	}

	#error .back_btn:hover {
		border: 1px solid #05AC2C;
	}

}