/**
 * Copyright(c) 2019 The Vardik Software Limited. All Rights Reserved.
 */
@charset "UTF-8";

/**
* https://v4-alpha.getbootstrap.com/getting-started/introduction/
*/
.selector-for-some-widget {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

/* 
  ##Device = Other big device
  ##Screen = 1281px
*/
@media ( min-width : 1281px) {
	.home-header-thumbnail {
		width: 200px;
		height: 200px;
	}
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/
@media ( min-width : 1025px) and (max-width: 1280px) {
	.home-header-thumbnail {
		width: 200px;
		height: 200px;
	}
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/
@media ( min-width : 768px) and (max-width: 1024px) {
	.home-header-thumbnail {
		width: 150px;
		height: 150px;
	}
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/
@media ( min-width : 768px) and (max-width: 1024px) and (orientation:
	landscape) {
	.home-header-thumbnail {
		width: 150px;
		height: 150px;
	}
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/
@media ( min-width : 481px) and (max-width: 767px) {
	.home-header-thumbnail {
		width: 100px;
		height: 100px;
	}
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/
@media ( min-width : 320px) and (max-width: 480px) {
	.home-header-thumbnail {
		width: 100px;
		height: 100px;
	}
}

/*
	## CSS apply when printing HTML page.
*/
@media print {
	footer {
		display: none;
	}
}

/**
	# CSS for QR code library.
**/
#qr-canvas {
	display: none;
}