/* Default button */
button {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 25px;
	color: #333;
	background: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

button:hover {
	color: #fff;
	background-color: #E17028;
}

/* Lines button */
.lines_btn {
	color: #fff;
	line-height: 2;
	position: relative;
	text-decoration: none;
}

.lines_btn::before {
	text-align: center;
	content: '';
	width: 140%;
	height: 2px;
	border-radius: 2px;
	background-color: #fff;
	position: absolute;
	bottom: -.5rem;
	left: -20%;
	transition: 0.25s;
	opacity: 0;
	
}

.lines_btn:hover::before {
	transform: translateY(-.25rem);
	opacity: 0.5;
}

/* Glow button */
.glow_btn {
	padding: 10px 20px;
	margin: 25px 0 4px;
	border: none;
	font-size: 17px;
	color: #fff;
	border-radius: 7px;
	letter-spacing: 4px;
	font-weight: 700;
	text-transform: uppercase;
	
	transition-property: box-shadow;

	background-image: linear-gradient(135deg, #feb692 0%, #ea5455 100%);
	box-shadow: 0 0 25px #ea5455;
	transition: 0.5s;
}

.glow_btn:hover {
	padding: 14px 24px;
	margin: 21px 0 0;
	box-shadow: 0 0 5px #ea5455,
				0 0 25px #ea5455,
				0 0 50px #ea5455,
				0 0 100px #ea5455;
}

/* Tab button */
.tab_btn {
	clip-path: polygon(calc(10% + 4px) 4px, calc(105% - 4px) 4px, calc(95% - 4px) calc(100% - 4px), 4px calc(100% - 4px));
}