.footer {
	position: relative;
	height: var(--footer-sm-height);
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0 10px;
	z-index: 3;
	bottom: 0;
	background-color: var(--footer-primary);
	overflow: hidden;
	border-top: 5px solid var(--footer-secondary);
	box-sizing: content-box;
}

.footerIos {
	height: var(--footer-ios-height);
	padding: 0 10px 15px 10px;
}

.tabTitle {
	font-size: 10px;
}

.MuiTabs-root {
	width: 100%;
	align-items: center;
}

.MuiTabs-flexContainer {
	justify-content: space-between !important;
}

.MuiTab-root {
	min-width: 0 !important;
	padding: 6px 12px 6px 12px !important;
	min-height: unset !important;
	color: var(--alt-font-color, white) !important;
	text-transform: unset !important;
}

.MuiTab-root:hover {
	background-color: var(--hover-color);
}

.footerOverflowButton {
	width: 100%;
}

@media screen and (min-width: 900px) {
	.footer {
		height: var(--footer-lg-height);
		padding: 2px;
		border-top: 8px solid var(--footer-secondary);
		box-shadow: rgba(99, 99, 99, 0.2) 0px -2px 4px 0px;
	}

	.footerIos {
		height: var(--footer-ios-height);
		padding: 0 10px 15px 10px;
	}

	.tabTitle {
		font-size: 14px;
		margin-top: 6px;
	}

	.MuiTabs-flexContainer {
		justify-content: center !important;
	}

	.MuiTab-root {
		width: 150px;
		font-family: var(--app-font-family) !important;
	}
}
