.btn {
	padding: 20px 50px;
	color: var(--white);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 14px;
	border-radius: 4px;
	background-color: var(--cyan-a);
	border: none;
	outline: none;
	box-shadow: none !important;
	position: relative;
	overflow: hidden;
	transform: translateY(0px);
	transition: all 0.3s ease;
}

.btn.decorated:after {
	content: '';
	background-image: url('../images/icons/border-bottom-right-white.svg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width: 30px;
	height: 30px;
	display: block;
	position: absolute;
	z-index: 102;
	transform: translate(-50%, -50%);
	top: calc(100% - 15px);
	left: calc(100% - 15px);
	pointer-events: none;
}

.btn.centered {
	margin-left: auto;
	margin-right: auto;
}

.btn.inverted {
	color: var(--cyan-a);
	background-color: var(--white);
}

.btn:hover {
	transform: translateY(-2px);
	transition: all 0.3s ease;
}

.btn:active {
	transform: translateY(1px);
	transition: all 0.3s ease;
}

.btn.wide {
	padding: 20px 80px;
}

.btn.padded {
	margin-top: 50px;
}

/* .btn:before {
	content: '';
    position: absolute;
    height: 400px;
    width: 400px;
    top: 50%;
    left: 50%;
    background: var(--background-color-p);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.75s ease 0s;
    z-index: -1;
}

.btn:hover:before {
	transform: translate(-50%, -50%) scale(1);
} */

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

	.btn {
		font-size: 12px;
		padding: 15px 40px;
	}

	.btn.decorated:after {
		width: 20px;
		height: 20px;
	}

}