/* Button Goose */

.box.goose {
}

.btngoose {
	position: relative;
	margin: auto;
	max-width: 150px;
	width: 100%;
	left: 0;
	right: 0;
	top: 0;
	padding: 15px 30px;
	border: 0;
	outline: 0;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	color: #fff; color: var(--bg-color);
	text-transform: uppercase;
	text-align: center;
	line-height: 1;
	-webkit-transition: top 0.1s, -webkit-box-shadow 0.1s;
	transition: top 0.1s, -webkit-box-shadow 0.1s;
	transition: top 0.1s, box-shadow 0.1s;
	transition: top 0.1s, box-shadow 0.1s, -webkit-box-shadow 0.1s;
	background: #5b646a; background: var(--nav-title-color);
	-webkit-box-shadow: 0 0 #4f575c;
	        box-shadow: 0 0 #4f575c;
    -webkit-box-shadow: 0 0 var(--accent-color);
    		box-shadow: 0 0 var(--accent-color);
	letter-spacing: 1.5px;
}

.btngoose:hover {
	top: -7px;
	-webkit-transition: top 0.1s, -webkit-box-shadow 0.1s;
	transition: top 0.1s, -webkit-box-shadow 0.1s;
	-o-transition: top 0.1s, box-shadow 0.1s;
	transition: top 0.1s, box-shadow 0.1s;
	transition: top 0.1s, box-shadow 0.1s, -webkit-box-shadow 0.1s;
	-webkit-box-shadow: 0 7px #4f575c;
	        box-shadow: 0 7px #4f575c;
	-webkit-box-shadow: 0 7px var(--accent-color);
        box-shadow: 0 7px var(--accent-color);
}