@media only screen and (min-width: 960px) {
	#main .site-name a{
		width: 600px !important;
	}
}


/*Tableau dashboard view for mobile desktop and tablet starts here */
@media only screen and (max-width: 500px) {
	.phone-view {
		display: block !important;
	}
	
	.tablet-view {
		display: none !important;
		visibility: hidden !important;
	}
	
	.desktop-view{
		display: none !important;
		visibility: hidden !important;
	}
}

@media only screen and (min-width: 501px) and (max-width: 800px) {
	.phone-view {
		display: none!important;
		visibility: hidden !important;
	}
	
	.tablet-view {
		display: block!important;
	}
	
	.desktop-view{
		display: none!important;
		visibility: hidden !important;
	}
}

@media only screen and (min-width: 801px)  {
	.phone-view {
		display: none!important;
		visibility: hidden !important;
	}
	
	.tablet-view {
		display: none!important;
		visibility: hidden !important;
	}
	
	.desktop-view{
		display: block!important;
	}
}

/*Tableau dashboard view for mobile desktop and tablet ends here */