div.profile-button {
	position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
/*   padding: 12px 18px; */
	padding: 11px 26px;
  border-radius: 50px;
  width: fit-content;
	background: var(--cryomate-green, #AEBFA2);
	transition: all 250ms ease-in-out;
}

div.profile-button.is-empty{
/* 	visibility: hidden; */
	opacity: 0.4;
}

div.profile-button:not(.is-empty):hover {
	transform: translateY(-2px);
}

a.profile-button__a {
	width; 100%;
	height: 100%;
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
	text-decoration: none;
	color: var(--cryomate-teal, #20504E);
}

a.profile-button__a.disabled {
	pointer-events: none;
	cursor: default;
	user-select: none;
}

a.profile-button__a::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width; 100%;
	height: 100%;
}