@media (min-width: 768px) {
	#covid-button,
	#cvt-button {
		float: left;
		position: fixed;
		top: calc(30% - 47px);
		right: -75px;
		z-index: 9999;
		-webkit-transform: rotate(90deg);
		-moz-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		-o-transform: rotate(90deg);
		transform: rotate(90deg);
		filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
	}
	
	#covid-button a {
		background: #0f274b;
		border-radius: 5px 0 0 5px;
		box-shadow: 0 0 3px rgba(0, 0, 0, .3);
		border: 3px solid #fff;
		border-top: 0;
		display: block;
		padding: 15px;
		transition: all .2s ease-in-out;
		text-decoration:none;
	}
	#cvt-button a {
		background: #a83338;
		border-radius: 5px 0 0 5px;
		box-shadow: 0 0 3px rgba(0, 0, 0, .3);
		border: 3px solid #fff;
		border-top: 0;
		display: block;
		padding: 15px;
		transition: all .2s ease-in-out;
		text-decoration:none;
	}
	#covid-button span,
	#cvt-button span {
		
		text-decoration:none;
		font-size: 100%;
		margin:15px 0px;
		margin-bottom: 10px;
	}
}
#covid-button a.ext:after,
#cvt-button a.ext:after {
	display: none;
}
#cvt-button a:hover {
	background: #831319;
}
#covid-button a:focus,
#covid-button a:hover {
	background: #224c72;
}
#covid-button a:visited,
#cvt-button a:visited {
	color: #FFFFFF;
}

/* Tab hidden on smaller devices to fix footer problem and reallocate the limited real estate */
@media (max-width: 767px) {
	#cvt-button,
	#covid-button {
		display: none !important;
	}
}



