/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
#wrapper{
	display: flex;
	justify-content:space-around;
}

.button{
	text-decoration: none;
	color: #075190;
	font-weight: bold;
	font-size: 20px;
	position: relative;
	padding: 10px;
	
}


/* BUTTON EEN */



a.button.one:before, a.button.one:after{
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	transition: all 0.3s ease;
}
a.button.one:before{
	top: -2.5%;
	left: -1%;
	border-top: 2px solid #FE7318;
	border-left: 2px solid #FE7318;	
}
a.button.one:after{
	bottom: -2.5%;
	right: -1%;
	border-bottom: 2px solid #FE7318;
	border-right: 2px solid #FE7318;
}
a.button.one:hover:before, a.button.one:hover:after{
	width: 100%;
	height: 100%;
	transition: all 0.3s ease;
}