﻿.hoveredLink {
	color: #000000;
	cursor: pointer;
	text-decoration: none;
	transition: color 0.3s ease-in-out;
	border: solid 1px #000000;
	border-radius: 5px;
	padding: 12px 20px;
	margin: 8px 0;
	font-family: Arial;
	font-size: 13.3333px;
	display: flex;
	align-items: center;
	justify-content: center;
}


.hoveredLink:hover {
	color: #000000;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
	border: solid 1px #707070;
	border-radius: 5px;
	padding: 12px 20px;
	margin: 8px 0;
	font-family: Arial;
	font-size: 13.3333px;
}

.white-hoveredLink {
	color: #ffffff;
	cursor: pointer;
	text-decoration: none;
	transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
	border: solid 1px #ffffff;
	border-radius: 5px;
	padding: 12px 20px;
	margin: 8px 0;
	font-family: Arial;
	font-size: 13.3333px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

.white-hoveredLink:hover {
	color: #ffffff;
	box-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
	border: solid 1px #bbbbbb;
}

.sm-hoveredLink {
	color: #000000;
	cursor: pointer;
	text-decoration: none;
	transition: color 0.3s ease-in-out;
	border: solid 1px #000000;
	border-radius: 5px;
	padding: 8px 16px;
	margin: 8px 0;
	font-family: Arial;
	font-size: 13.3333px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sm-hoveredLink:hover {
	color: #000000;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
	border: solid 1px #707070;
	border-radius: 5px;
	padding: 8px 16px;
	margin: 8px 0;
	font-family: Arial;
	font-size: 13.3333px;
}

.no-style-link img {
	all: unset;
	border: none;
	text-decoration: none;
	display: block;
	max-width: 100%;
	height: auto;
}


.btn-link {
	background-color: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: .25rem;
	box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
	box-sizing: border-box;
	color: rgba(0, 0, 0, 0.85);
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.25;
	min-height: 3rem;
	padding: calc(.875rem - 1px) calc(1.5rem - 1px);
	text-decoration: none;
	transition: all 250ms;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	vertical-align: baseline;
}

	.btn-link:hover,
	.btn-link:focus {
		border-color: rgba(0, 0, 0, 0.15);
		box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
		color: rgba(0, 0, 0, 0.65);
	}

	.btn-link:hover {
		transform: translateY(-1px);
	}

	.btn-link:active {
		background-color: #F0F0F1;
		border-color: rgba(0, 0, 0, 0.15);
		box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
		color: rgba(0, 0, 0, 0.65);
		transform: translateY(0);
	}
