﻿* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

#container {
	position: relative;
}

.wrap {
	position: absolute;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.button {
	min-width: 300px;
	min-height: 60px;
	font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
	font-size: 22px;
	text-transform: uppercase;
	letter-spacing: 1.3px;
	font-weight: 700;
	background: linear-gradient(90deg, rgba(183,134,40,1) 0%, rgba(252,194,1,1) 100%);
	border: none;
	border-radius: 1000px;
	box-shadow: 12px 12px 24px rgba(198,147,32,.64);
	transition: all 0.3s ease-in-out 0s;
	cursor: pointer;
	outline: none;
	position: relative;
	padding: 10px;
	opacity: 0.7;
}

button::before {
	content: '';
	border-radius: 1000px;
	min-width: calc(300px + 12px);
	min-height: calc(60px + 12px);
	border: 6px solid #EEB609;
	box-shadow: 0 0 60px rgba(238,182,9,.64);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: all .3s ease-in-out 0s;
}

.button:hover, .button:focus {
	transform: translateY(-6px);
}

button:hover::before, button:focus::before {
	opacity: 1;
}

button::after {
	content: '';
	width: 30px;
	height: 30px;
	border-radius: 100%;
	border: 6px solid #EEB609;
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: ring 1.5s infinite;
}

button:hover::after, button:focus::after {
	animation: none;
	display: none;
}

@keyframes ring {
	0% {
		width: 30px;
		height: 30px;
		opacity: 1;
	}

	100% {
		width: 300px;
		height: 300px;
		opacity: 0;
	}
}
