*{
	margin: 0;
	padding: 0;
	font-family: 'Inter', sans-serif;
	text-decoration: none;
}
*:focus,
*:active{
	outline: none;
}
body{
	background: #f8f8f8;
}
table{
	width: 100%;
	border-collapse: collapse;
}
table tr:hover{
	background: #eee;
	color: #000;
	cursor: pointer;
}
table tr th{
	background: #3c8dbc;
	color: #fff;
	font-size: 12px;
	padding: 5px 3px;
	text-align: left;
	font-family: 'PT Sans', sans-serif;
	border: 1px solid #3c8dbc;
}
table tr td{
	color: #000;
	font-size: 13px;
	padding: 5px 3px;
	text-align: left;
	border: 1px solid #ccc;
}
table tr td i{
	cursor: pointer;
}
table tr td .fa-edit{
	color: #3b8dbc;
}
table tr td .fa-trash{
	color: #de4b39;
}
table tr td .fa-times-circle{
	color: #de4b39;
}
table tr td .fa-warehouse{
	color: #4a9448;
}

.scanButton{
	padding: 3px 0;
	background: #4a9448;
	border: 1px solid #4a9448;
	color: #fff;
	border-radius: 5px;
	margin-top: 10px;
	cursor: pointer;
	transition: .3s;
	text-align: center;
	font-size: 14px;
}
.scanButton:hover{
	background: #fff;
	color: #4a9448;
}

.barcodeScanner{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0,0,0,.7);
	z-index: 20;
	display: none;
}
.barcodeScanner .barcodeScannerContent{
	background: #fff;
	position: absolute;
	left: 50%;
	top: 150px;
	transform: translate(-50%);
	padding: 20px 30px;
	border-radius: 5px;
	width: 30%;
	font-size: 15px;
	line-height: 22px;
	text-align: left;
}
.barcodeScanner .barcodeScannerContent .closeScannerBtn{
	float: right;
	padding: 0px;
	font-size: 35px;
	margin-bottom: 20px;
	color: #999;
	transition: .3s;
	position: relative;
	top: -13px;
	left: 20px;
	cursor: pointer;
}
.barcodeScanner .barcodeScannerContent .closeScannerBtn:hover{
	color: #9b2735;
}
.barcodeScanner .barcodeScannerContent .message{
	font-size: 35px;
	margin: 20px 0;
	text-align: center;
	color: #4a9448;
}
.barcodeScanner .barcodeScannerContent .getBarCodeValue{
	position: fixed;
	top: -200%;
}

.reportHead tr td,
.reportData tr td{
	border: 1px solid #000;
}
.reportData{
	margin-top: 10px;
	margin-bottom: 5px;
}
.reportHead .reportLogo{
	width: 200px;
}
.noBorder tr td{
	border: none;
}

.red-me{
	color: #be0d32;
}

.activeTableRow{
	background: #3b8dbc;
}
.activeTableRow td{
	color: #fff;
}
.activeTableRow:hover{
	background: #3b8dbc;
}

.dataRecordsContainer{
	margin-top: 10px;
}

.mobileNaviSection{
	background: #000;
	padding: 8px 15px;
	color: #fff;
	transition: all 300ms;
	display: none;
}
.mobileNaviSection .lines{
	width: 30px;
	height: 20px;
	float: left;
	margin-right: 10px;
}
.mobileNaviSection .lines div{
	padding: 2px;
	background: #fff;
	margin-bottom: 4px;
	border-radius: 5px;
	transition: all 300ms;
	position: relative;
	top: 0;
}
.showMobileNaviSection{
	margin-left: 230px;
}
.showMobileNaviSection .lines .div1{
	transform: rotate(45deg);
	position: relative;
	top: 8px;
}
.showMobileNaviSection .lines .div2{
	opacity: 0;
}
.showMobileNaviSection .lines .div3{
	transform: rotate(-45deg);
	position: relative;
	top: -8px;
}

.naviMenusScroll{
	padding: 10px;
}

.modelSection{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0,0,0,.7);
	z-index: 20;
	display: none;
}
.modelSection .modelContent{
	background: #fff;
	position: absolute;
	left: 50%;
	top: 100px;
	transform: translate(-50%);
	padding: 20px 30px;
	border-radius: 5px;
	width: 400px;
	font-size: 15px;
	line-height: 22px;
	text-align: center;
	max-height: 80vh; /* Set the maximum height of the model */
  	overflow-y: auto; /* Enable vertical scrolling */
}
.modelSection .modelContent .fa-question-circle{
	color: #3b8dbc;
	font-size: 40px;
	position: relative;
	top: 15px;
}
.modelSection .modelContent .buttons{
	margin-top: 15px;
}

.modelSection .footer{
	background: #fff;
	position: absolute;
	left: 50%;
	top: 100px;
	transform: translate(-50%);
	padding: 20px 30px;
	border-radius: 5px;
	width: 400px;
	font-size: 15px;
	line-height: 22px;
	text-align: center;
}
.modelSection .footer .fa-question-circle{
	color: #3b8dbc;
	font-size: 40px;
	position: relative;
	top: 15px;
}
.modelSection .footer .buttons{
	margin-top: 15px;
}

.stockStatus{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0,0,0,.7);
	z-index: 20;
	display: none;
}
.stockStatus .stockStatusContent{
	background: #fff;
	position: absolute;
	left: 50%;
	top: 50px;
	transform: translate(-50%);
	padding: 20px 30px;
	border-radius: 5px;
	width: 70%;
	font-size: 15px;
	line-height: 22px;
	text-align: left;
}
.stockStatus .stockStatusContent .closeStockStatusBtn{
	float: right;
	padding: 0px;
	font-size: 35px;
	margin-bottom: 20px;
	color: #999;
	transition: .3s;
	position: relative;
	top: -13px;
	left: 20px;
	cursor: pointer;
}
.stockStatus .stockStatusContent .closeStockStatusBtn:hover{
	color: #9b2735;
}
.stockStatus .stockStatusContent .message{
	font-size: 20px;
	color: #9b2735;
}

.approveBtn{
	background: #4a9448;
	border: 1px solid #4a9448;
	color: #fff;
	padding: 4px 8px;
	border-radius: 5px;
	cursor: pointer;
	transition: .3s;
}
.approveBtn:hover{
	color: #4a9448;
	background: #fff;
}
.denyBtn{
	background: #9b2735;
	border: 1px solid #9b2735;
	color: #fff;
	padding: 4px 8px;
	border-radius: 5px;
	cursor: pointer;
	transition: .3s;
}
.denyBtn:hover{
	color: #9b2735;
	background: #fff;
}

.filterForm{
	float: left;
	height: 35px;
}
.filterForm .selectInput{
	width: 190px;
}

.refreshSection{
	float: left;
	margin-left: 5px;
}
.refreshBtn{
	background: #4a9448;
	border: 1px solid #4a9448;
	color: #fff;
	padding: 4px 8px;
	border-radius: 5px;
	cursor: pointer;
	transition: .3s;
	box-sizing: border-box;
	height: 32px;
	margin-top: 3px;
	margin-right: 20px;
}
.refreshBtn:hover{
	color: #4a9448;
	background: #fff;
}

.wid-100{
	width: 100%;
	box-sizing: border-box;
}
.wid-85{
	width: 84.5%;
	box-sizing: border-box;
}
.wid-80{
	width: 79.5%;
	box-sizing: border-box;
}
.wid-75{
	width: 74.5%;
	box-sizing: border-box;
}
.wid-70{
	width: 69.5%;
	box-sizing: border-box;
}
.wid-65{
	width: 64.5%;
	box-sizing: border-box;
}
.wid-60{
	width: 59.5%;
	box-sizing: border-box;
}
.wid-55{
	width: 54.5%;
	box-sizing: border-box;
}
.wid-50{
	width: 49.5%;
	box-sizing: border-box;
}
.wid-45{
	width: 44.5%;
	box-sizing: border-box;
}
.wid-40{
	width: 39.5%;
	box-sizing: border-box;
}
.wid-35{
	width: 34.5%;
	box-sizing: border-box;
}
.wid-30{
	width: 29.5%;
	box-sizing: border-box;
}
.wid-32{
	width: 32.5%;
	box-sizing: border-box;
}
.wid-25{
	width: 24.5%;
	box-sizing: border-box;
}
.wid-20{
	width: 19.5%;
	box-sizing: border-box;
}
.wid-15{
	width: 14.5%;
	box-sizing: border-box;
}

.mar-10{
	margin: 10px;
}
.mar-100{
	margin: 10px 0;
}
.mar-010{
	margin: 0 10px;
}

.wid-800px{
	width: 800px;
}
.wid-700px{
	width: 700px;
}
.wid-600px{
	width: 600px;
}
.wid-500px{
	width: 500px;
}
.wid-400px{
	width: 400px;
}
.wid-300px{
	width: 300px;
}

.flt-left{
	float: left;
}
.flt-right{
	float: right;
}
.al-left{
	text-align-last: left;
}
.al-right{
	text-align-last: right;
}
.al-center{
	text-align-last: center;
}
.boldMe{
	font-weight: bold;
}
.bodyPanelContainer{
	
}
.bodyPanel{
	background: #fff;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	margin-bottom: 10px;
	box-shadow: 0 0 10px 0 rgb(0 0 0 / 35%);
}
.panelHeading{
	font-weight: bold;
	font-size: 18px;
}
.infoPanel{
	margin-top: 10px;
	border-radius: 12px;
}
.infoData{
	border-radius: 10px;
}
.infoPanel .infoData .infoIcon{
	float: right;
	font-size: 30px;
	position: relative;
	top: 16px;
	right: 15px;
}
.infoPanel .infoData .counts{
	color: #fff;
	font-weight: bold;
	font-size: 30px;
	padding: 10px;
}
.infoPanel .infoData .caption{
	color: #fff;
	font-size: 15px;
	padding: 10px;
}
.infoPanel .infoLink{
	color: #fff;
	padding: 10px;
	font-size: 12px;
	cursor: pointer;
}
.infoPanel .infoLink i{
	font-size: 18px;
	position: relative;
	top: 3px;
	left: 5px;
}

.infoPanel-blue{
	background: #4a8ac3;
}
.infoPanel-blue .infoData{
	background: #4f9ee3;
}
.infoPanel-blue .infoIcon{
	color: #fff;
}

.infoPanel-yellow{
	background: #d9c339;
}
.infoPanel-yellow .infoData{
	background: #FEE12B;
}
.infoPanel-yellow .infoIcon{
	color: #fff;
}

.infoPanel-orange{
	background: #eb926e;
}
.infoPanel-orange .infoData{
	background: #FFA07A;
}
.infoPanel-orange .infoIcon{
	color: #fff;
}

.infoPanel-red{
	background: #c54a3b;
}
.infoPanel-red .infoData{
	background: #de4b39;
}
.infoPanel-red .infoIcon{
	color: #fff;
}

.infoPanel-green{
	background: #7eb340;
}
.infoPanel-green .infoData{
	background: #8BC34A;
}
.infoPanel-green .infoIcon{
	color: #fff;
}

.welcomeNote{
	margin: 50px 0;
	text-align: center;
}
.welcomeNote img{
	width: 250px;
}
.welcomeNote p{
	font-size: 40px;
	margin-top: 20px;
	letter-spacing: 20px;
	font-family: 'Reggae One', cursive;
}
.welcomeNote span{
	color: #3c8dbc;
	font-size: 25px;
	position: relative;
	top: 10px;
}

.searchFormSection{
	margin-bottom: 10px;
}
.searchFormSection-alt{
	float: right;
	position: relative;
	top: -10px;
	display: none;
}

.wrapContent{
	height: auto;
	display: flex;
	flex-direction: row;
	flex-flow: wrap;
	justify-content: space-between;
}
.wrapContentAlt{
	height: auto;
	display: flex;
	flex-direction: row;
	flex-flow: wrap;
}
.wrapContent-around{
	height: auto;
	display: flex;
	flex-direction: row;
	flex-flow: wrap;
	justify-content: space-around;
}

/*Positions*/
.relative{
	position: relative;
}

.hiddenObject{
	opacity: 0;
}

.emptyList{
	text-align: center;
	/*font-size: 25px;*/
	padding: 30px 20px;
	color: #999;
}
.emptyFieldError{
	border: 1px solid #b78641;
	color: #b78641;
	border-radius: 5px;
	background: #fcf5ea;
	padding: 5px 7px;
	font-size: 12px;
	margin-top: 3px;
	margin-left: 5px;
	position: absolute;
	transform: scale(0);
	transition: all 300ms;
}
.emptyFieldError:before{
	content: '';
	background: #fcf5ea;
	padding: 5px;
	position: absolute;
	border-top: 1px solid #b78641;
	border-right: 1px solid #b78641;
	transform: rotate(-45deg);
	margin-top: -11px;
	margin-left: 2px;
}

.inputCaption{
	margin-top: 15px;
	margin-bottom: 8px;
	font-size: 14px;
}
.textInput{
	flex: 1;
	object-fit: contain;
	display: flex;
	border: 1px solid #ccc;
	padding: 8px 12px;
	padding-left: 30px;
	width: 100%;
    box-sizing: border-box;
    border-radius: 5px;
    transition: .3s;
    margin-top: -18px;
}
.textInput:focus,
.textInputAlt:focus,
.searchInput:focus,
.selectInput:focus{
	border: 1px solid #3c8dbc;
}
.textInputAlt{
	flex: 1;
	object-fit: contain;
	display: flex;
	border: 1px solid #ccc;
	padding: 8px 12px;
	padding-left: 30px;
	padding-right: 5px;
	width: 150px;
    box-sizing: border-box;
    border-radius: 5px;
    transition: .3s;
    margin-top: -18px;
}
.textAreaInput{
	flex: 1;
	object-fit: contain;
	display: flex;
	border: 1px solid #ccc;
	padding: 10px 12px;
	padding-left: 30px;
	min-width: 100%;
	max-width: 100%;
    min-height: 120px;
    box-sizing: border-box;
    border-radius: 5px;
    transition: .3s;
    margin-top: -18px;
}
.selectInput{
	flex: 1;
	object-fit: contain;
	display: flex;
	border: 1px solid #ccc;
	padding: 8px 12px;
	padding-left: 30px;
	width: 100%;
    box-sizing: border-box;
    border-radius: 5px;
    transition: .3s;
    margin-top: -18px;
    -webkit-appearance: none;
}
.searchInput{
	flex: 1;
	object-fit: contain;
	display: flex;
	border: 1px solid #ccc;
	padding: 8px 12px;
	padding-left: 30px;
	padding-right: 5px;
	width: 100%;
    box-sizing: border-box;
    border-radius: 5px;
    transition: .3s;
    margin-top: -18px;
}
.inputIcons{
	color: #222d31;
	font-size: 15px;
	position: relative;
	top: 10px;
	left: 5px;
	text-align: center;
	width: 20px;
	border: 1px solid transparent;
}
.selectDropDownIcon{
	position: absolute;
	bottom: 16px;
	right: 7px;
	width: 10px;
	opacity: .5;
}
.submitButton{
	margin-top: 20px;
	padding: 7px 20px;
	margin-bottom: 20px;
	background: #3c8dbc;
	border: 1px solid #3c8dbc;
	color: #fff;
	border-radius: 5px;
	cursor: pointer;
	transition: .3s;
}
.submitButton i{
	margin-right: 2px;
}
.submitButton:hover{
	background: #fff;
	color: #3c8dbc;
}

.exportExcelBtn{
	padding: 7px 20px;
	margin-bottom: 20px;
	background: #60b165;
	border: 1px solid #60b165;
	color: #fff;
	border-radius: 5px;
	cursor: pointer;
	transition: .3s;
}

.exportExcelBtn i{
	margin-right: 2px;
}
.exportExcelBtn:hover{
	background: #fff;
	color: #60b165;
}

.cancelButton{
	margin-top: 20px;
	padding: 7px 20px;
	margin-bottom: 20px;
	background: #ffffff;
	border: 1px solid #d73535;
	color: #d73535;
	border-radius: 5px;
	cursor: pointer;
	transition: .3s;
}
.cancelButton i{
	margin-right: 2px;
}
.cancelButton:hover{
	background: #d73535;
	color: #fff;
}

.updateButton{
	margin-top: 5px;
	padding: 2px 2px 2px 2px;
	margin-bottom: 5px;
	background: #60b165;
	border: 1px solid #60b165;
	color: #fff;
	border-radius: 3px;
	cursor: pointer;
	transition: .3s;
}
.updateButton i{
	margin-right: 2px;
	color: #ffffff;
}
.updateButton:hover{
	background: #fff;
	color: #60b165;
}
.deleteButton{
	margin-top: 5px;
	padding: 2px 2px 2px 2px;
	margin-bottom: 5px;
	background: #cb3333;
	border: 1px solid #cb3333;
	color: #fff;
	border-radius: 3px;
	cursor: pointer;
	transition: .3s;
}
.deleteButton i{
	margin-right: 2px;
	color: #ffffff;
}
.deleteButton:hover{
	background: #fff;
	color: #cb3333;
}
.freezeButton{
	margin-top: 5px;
	padding: 2px 2px 2px 2px;
	margin-bottom: 5px;
	background: #3c8dbc;
	border: 1px solid #3c8dbc;
	color: #fff;
	border-radius: 3px;
	cursor: pointer;
	transition: .3s;
}
.freezeButton i{
	margin-right: 2px;
}
.freezeButton:hover{
	background: #fff;
	color: #3c8dbc;
}
.searchButton{
	margin-top: 3px;
	padding: 7px 15px;
	margin-bottom: 20px;
	background: #b78641;
	border: 1px solid #b78641;
	color: #fff;
	border-radius: 5px;
	cursor: pointer;
	transition: .3s;
}
.searchButton i{
	margin-right: 2px;
}
.searchButton:hover{
	background: #fff;
	color: #b78641;
}

.invoiceForm{
	/*float: left;*/
}

.printButton{
	margin: 8px 0;
	padding: 5px 16px;
	background: #3c8dbc;
	border: 1px solid #3c8dbc;
	color: #fff;
	border-radius: 5px;
	cursor: pointer;
	transition: .3s;
	float: right;
}
.printButton i{
	margin-right: 3px;
}
.printButton:hover{
	background: #fff;
	color: #3c8dbc;
}
.linkButton{
	padding: 7px 20px;
	margin-bottom: 10px;
	background: #b78641;
	border: 1px solid #b78641;
	color: #fff;
	border-radius: 5px;
	cursor: pointer;
	transition: .3s;
}
.linkButton i{
	margin-right: 2px;
}
.linkButton:hover{
	background: #fff;
	color: #b78641;
}

.successMsg{
	font-size: 16px;
	color: #4a9448;
	margin-top: 10px;
	display: none;
}
.dangerMsg{
	font-size: 116x;
	color: #9b2735;
	margin-top: 10px;
	display: none;
}
.loadingSection{
	margin-top: 10px;
}


.asuccessMsg{
	font-size: 16px;
	color: #4a9448;
	margin-top: 10px;
	display: none;
}
.adangerMsg{
	font-size: 116x;
	color: #9b2735;
	margin-top: 10px;
	display: none;
}
.aloadingSection{
	margin-top: 10px;
}

.contentSection{
	overflow: hidden;
}
.contentSection .sideNavSection{
	width: 250px;
	height: 90%;
	position: fixed;
	top: 0;
	left: 0;
	background: #266387;
	box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
	z-index: 19;
	transition: all 300ms;
	box-sizing: border-box;
	overflow-y: auto;
}
.contentSection .showSideNavSection{
	margin-left: 250px;
}
.naviHead{
	background-color: #13415c;
}
.contentSection .sideNavSection .naviHead .wall {
    width: 100px;
    height: 100px;
    margin-left: 25%;
    margin-top: 2%;
    border-radius: 50px;
}
.contentSection .sideNavSection .proName{
	text-align: center;
	padding: 7px 0;
	margin-top: -3px;
	background: #13415c;
}
.contentSection .sideNavSection .proName p{
	color: #fff;
	font-size: 18px;
	margin-bottom: 5px;
	font-family: 'Reggae One', cursive;
}
.contentSection .sideNavSection .proName span{
	color: #3c8dbc;
}
.contentSection .sideNavSection .naviMenus{
	margin-top: 10px;
}
.contentSection .sideNavSection .naviMenus ul li{
	display: block;
	padding: 7px 10px;
	color: #fff;
	font-size: 14px;
	transition: .3s;
	cursor: pointer;
}
.contentSection .sideNavSection .naviMenus ul li:hover{
	background: #1b2326;
}
.contentSection .sideNavSection .naviMenus ul li i{
	width: 25px;
	text-align: center;
}
.contentSection .sideNavSection .kaspDateTime{
	background: #103f5a;
	color: #fff;
	width: 250px;
	padding: 8px 4px;
	box-sizing: border-box;
	position: fixed;
	bottom: 37px;
	left: 0;
	font-size: 13px;
	z-index: 10;
	transition: all 300ms;
	overflow-y: auto;
}
.contentSection .sideNavSection .showKaspDateTime{
	margin-left: 210px;
}
.contentSection .sideNavSection .kaspDateTime i{
	margin-right: 1px;
}
.contentSection .sideNavSection .toolsSection{
	background: #f49055;
	color: #fff;
	width: 250px;
	padding: 10px 0;
	box-sizing: border-box;
	position: fixed;
	bottom: 0;
	left: 0;
	font-size: 14px;
	z-index: 10;
	transition: all 300ms;
	overflow-y: auto;
}
.contentSection .sideNavSection .showToolsSection{
	margin-left: 210px;
}
.contentSection .sideNavSection .toolsSection div{
	cursor: pointer;
}

.contentSection .bodyContent{
	margin-left: 250px;
	padding: 10px 15px;
}
.contentSection .loginSection{
	position: absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 5px;
	padding: 20px 40px;
	box-shadow: 0 0 10px 0 rgba(0,0,0,.3);
	width: 40%;
	box-sizing: border-box;
}
@media screen and (max-width: 1000px){
	.contentSection .loginSection{
		width: 90%;
	}
}
.contentSection .loginSection .loginHeader .loginIcon{
	font-size: 50px;
	color: #222d31;
}
.contentSection .loginSection .loginTitle{
	color: #3c8dbc;
	font-size: 25px;
	font-weight: bold;
	text-align: center;
	margin-top: 5px;
}

.contentSection .bodyContent .bodyContentData{
	width: 100%;
	box-sizing: border-box;
}
.contentSection .bodyContent .bodyContentData .bodyHead{
	background: #f49055;
	padding: 7px 10px;
	border-radius: 5px;
	border: 1px solid #f49055;
	margin-bottom: 10px;
	box-shadow: 0 0 10px 0 rgb(0 0 0 / 35%);
}
.contentSection .bodyContent .bodyContentData .bodyHead .bodyTitle{
	color: #fff;
	font-size: 14px;
	font-weight: bold;
}
.contentSection .bodyContent .bodyContentData .bodyHead .userData{
	float: right;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
}
.contentSection .bodyContent .bodyPanel .empAvatar i{
	border: 1px solid #aaa;
	padding: 30px;
	margin-top: 20px;
	font-size: 80px;
	color: #222d31;
}
.contentSection .bodyContent .bodyPanel .empData{
	margin-top: 20px;
}
.contentSection .bodyContent .bodyPanel .userCredentials{
	margin-top: 20px;
}
.contentSection .bodyContent .bodyPanel .userCredentials .panelHeading{
	margin-bottom: 5px;
}

.changeLan{
	margin-top: 10px;
}
.changeLan .wid-50 div{
	cursor: pointer;
	float: left;
}
.changeLan img{
	float: left;
	width: 30px;
	margin-right: 5px;
	position: relative;
	top: 1px;
	margin-bottom: 15px;
}

.invoiceData{
	margin-bottom: 20px;
}


/*Responsive styles*/
@media(max-width: 1100px){
	.wid-55{
		width: 74.5%;
		box-sizing: border-box;
	}
}
@media(max-width: 1000px){
	.wid-70,
	.wid-30,
	.wid-32{
		width: 100%;
		box-sizing: border-box;
	}
	.wid-25{
		width: 49.5%;
		box-sizing: border-box;
	}
	.contentSection .bodyContent .loginSection{
		width: 50%;
	}
}
@media(max-width: 850px){
	.wid-25{
		width: 49.5%;
		box-sizing: border-box;
	}
	.mobileNaviSection{
		display: block;
	}
	.contentSection .sideNavSection{
		left: -250px;
	}
	.contentSection .sideNavSection .proName{
		text-align: center;
		padding: 5px 0;
		margin-top: -3px;
		background: #1b2326;
	}
	.contentSection .sideNavSection .proName p{
		font-size: 25px;
		margin-top: -5px;
	}
	.contentSection .sideNavSection .proName span{
		color: #3c8dbc;
	}
	.contentSection .sideNavSection .kaspDateTime{
		left: -250px;
	}
	.contentSection .sideNavSection .toolsSection{
		left: -250px;
	}
	.contentSection .bodyContent{
		margin-left: 0px;
	}
}
@media(max-width: 700px){
	.wid-35,
	.wid-65{
		width: 100%;
		box-sizing: border-box;
	}
	.bodyPanel{
		overflow-x: auto;
	}
	.reportHead {
		margin-top: 10px;
	}
}
@media(max-width: 620px){
	.contentSection .bodyContent .loginSection{
		width: 70%;
	}
	.welcomeNote{
		margin: 50px 0;
	}
	.welcomeNote img{
		width: 150px;
	}
	.welcomeNote p{
		font-size: 30px;
		margin-top: 20px;
		letter-spacing: 10px;
		font-family: 'Reggae One', cursive;
	}
	.welcomeNote span{
		color: #3c8dbc;
		font-size: 20px;
		position: relative;
		top: 10px;
	}
}
@media(max-width: 500px){
	.modelSection .modelContent{
		top: 70px;
		padding: 20px 10px;
		width: 280px;
		font-size: 13px;
		box-sizing: border-box;
	}
	.wid-50{
		width: 65%;
		box-sizing: border-box;
	}
	.wid-25{
		width: 100%;
		box-sizing: border-box;
	}
	.contentSection .bodyContent .loginSection{
		padding: 20px;
		width: 90%;
	}
	.mobileNaviSection{
		background: #000;
		padding: 8px 5px;
		color: #fff;
	}
	.bodyPanel{
		padding: 5px;
	}
	.contentSection .bodyContent{
		padding: 5px;
	}
	.contentSection .bodyContent .bodyContentData .bodyHead .bodyTitle{
		margin-top: 10px;
		text-align: center;
	}
	.contentSection .bodyContent .bodyContentData .bodyHead .userData{
		float: none;
		text-align: center;
	}
	.printButton{
		float: none;
	}

	.mubaziTool{
		display: none;
	}
}
@media(max-height: 620px){
	.naviMenusScroll{
		height: 50px;
	}
}