/* MT Contact Bar */
.mt-contact-phone-mobile {
	display: none;
}

.mt-contact-nav {
	position: fixed;
	bottom: var(--mtcb-bottom, 50px);
	z-index: var(--mtcb-z-index, 999);
	width: auto;
	padding: 10px 0;
	background: #ffffff;
	border: 2px solid #f2f2f2;
	border-radius: 10px;
	box-shadow: -5px 10px 8px rgba(0, 0, 0, 0.25);
}

.mt-contact-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mt-contact-nav ul li {
	list-style: none !important;
	margin: 0;
	padding: 0;
}

.mt-contact-nav ul li a {
	display: block;
	max-width: 74px;
	padding: 4px 6px;
	border: none;
	border-radius: 5px;
	text-align: center;
	font-size: 10px;
	line-height: 15px;
	color: #515151;
	font-weight: 700;
	text-decoration: none;
	background: transparent;
	box-shadow: none;
}

.mt-contact-nav ul li a:hover,
.mt-contact-nav ul li a:focus {
	color: #ef5261;
	outline: none;
}

.mt-contact-icon {
	display: block;
	width: 36px;
	height: 36px;
	margin: 0 auto 2px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

@media only screen and (max-width: 600px) {
	.mt-contact-phone-mobile {
		display: block !important;
	}

	.mt-contact-nav {
		left: 0 !important;
		right: auto !important;
		bottom: 0;
		width: 100%;
		height: 62px;
		padding: 5px 0;
		margin: 0;
		border: none;
		border-radius: 0;
		background: #ffffff;
		box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.18);
	}

	.mt-contact-nav ul {
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 100%;
	}

	.mt-contact-nav ul li {
		flex: 1 1 0;
		height: 52px;
	}

	.mt-contact-nav ul li a {
		max-width: none;
		height: 52px;
		padding: 0;
		margin: 0 auto;
		font-size: 10px;
		line-height: 14px;
	}

	.mt-contact-icon {
		width: 28px;
		height: 28px;
		margin-bottom: 2px;
	}

	.mt-contact-phone-mobile a {
		position: relative;
	}

	.mt-contact-phone-circle {
		position: absolute;
		top: -18px;
		left: 50%;
		transform: translateX(-50%);
		width: 50px;
		height: 50px;
		border: 2px solid #ffffff;
		border-radius: 50%;
		background: #ef5261;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.mt-contact-phone-circle .mt-contact-icon {
		width: 28px;
		height: 28px;
		margin: 0;
	}

	.mt-contact-phone-text {
		display: block;
		position: relative;
		top: 34px;
		font-size: 10px;
		font-weight: 700;
		color: #515151;
	}
}
