.fixed-links {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	opacity: 0;
	animation: fadeLeft var(--fade-animation) forwards;
	animation-delay: 0.7s;
}
.fixed-links .small-bttn {
	height: 6rem;
	display: inline-flex;
    letter-spacing: 0.176em;
	align-items: center;
	justify-content: center;
	color: var(--beige);
	text-align: center;
	font-family: var(--rubric-font);
	line-height: normal;
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
	background: var(--rust);
	font-size: 1.4rem;
	letter-spacing: 0.21em;
}
@media only screen and (min-width: 961px) {
	.fixed-links {
		width: auto;
		top: 2.6vh;
		left: auto;
		right: 68px;
		bottom: auto;
	}
    .fixed-links .fixed-links__container {
        display: flex;
    }
	.fixed-links .small-bttn:not(:last-child) {
		margin-right: 3.5vh;
	}
	.fixed-links .small-bttn.small-bttn--resident {
		margin-right: 0!important;
	}
	.fixed-links .small-bttn {
		font-size: 1.43vh;
		height: 4.11vh;
		letter-spacing: 0.18rem;
		width: 13.5vh;
        background: rgba(118,73,50,0.64);
		padding-top: .2rem;
	}
	.fixed-links .small-bttn--no-border {
		background-color: transparent;
		border: 0;
		transition: 0.5s;
		color: var(--beige);
	}
	.fixed-links .small-bttn--apply {
		width: 0;
		overflow: hidden;
		transition: none;
		white-space: nowrap;
	}
	.scrolled .fixed-links .small-bttn--apply {
		transition: all .7s;
		width: 13.5vh;
	}
	.scrolled .fixed-links .small-bttn--resident {
		display: none;
	}

	/* Hover */
	.fixed-links .small-bttn:not(.small-bttn--no-border):hover {
		background-color: var(--rust);
		color: var(--beige);
	}
	.fixed-links .small-bttn--no-border:hover {
		opacity: 0.7;
	}
	[data-view='where-nashville'] .small-bttn--no-border {
		color: var(--rust);
	}
	.fixed-links .small-bttn.tour-link {
		width: 20vh
	}
}
@media only screen and (min-width: 0) and (max-width: 960px) {
	.fixed-links {
		animation: fade var(--fade-animation) forwards;
	}
	.fixed-links__container {
		display: flex;
		justify-content: flex-start;
		border-color: var(--beige);
		border-style: solid;
		border-width: 0.1rem 0 0;
	}
	.fixed-links .small-bttn {
		flex: 1;
	}
	.fixed-links .small-bttn:not(:last-child) {
		border-right: 0.1rem solid var(--beige);
	}
	.fixed-links .small-bttn--resident {	
		display: none;
	}
}
