.titleFilesButton
{
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background-color: #ffffff;
	text-align: center;
}

.titleFilesContainer
{
	padding: 10px;
	background-color: #f2f2f2;
	border: 1px solid #999999;
	margin-bottom: 5px;
}

.titleFilesContainer a
{
	color: #9B0000;
}

.titleFilesContainer a:hover
{
	color: #9B0000;
}

/* start popup */

.popup
{
	display: none;
	position: absolute;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 500;
	background-color:rgba(0,0,0,0.6);
}

.popupWindow
{
	display: block;
	position: absolute;
	position: fixed;
	top: 50px;
	left: 50%;
	width: 600px;
	height: 350px;
	margin-left: -300px;
	/*margin-top: -170px;*/
	background-color: #ffffff;
	border-radius: 5px;
	box-shadow: 0px 0px 15px #333333;
	padding: 0px;
	box-sizing: border-box;
	font-size: 16px;
}

#profileWindow .popupWindow
{
	width: 980px;
	height: 600px;
	margin-left: -490px;
	/*margin-top: -300px;*/
}

#invoicesDetailsWindow .popupWindow
{
	width: 980px;
	height: 600px;
	margin-left: -490px;
	/*margin-top: -300px;*/
}

#posDetailsWindow .popupWindow
{
	width: 1100px;
	height: 600px;
	margin-left: -550px;
	/*margin-top: -300px;*/
}

#addInvoiceWindow .popupWindow
{
	width: 980px;
	height: 600px;
	margin-left: -490px;
	/*margin-top: -300px;*/
}

#addContractWindow .popupWindow
{
	width: 980px;
	height: 600px;
	margin-left: -490px;
	/*margin-top: -300px;*/
}

#addGlassWindow .popupWindow
{
	width: 980px;
	height: 600px;
	margin-left: -490px;
	/*margin-top: -300px;*/
}

#addPalletWindow .popupWindow
{
	width: 980px;
	height: 600px;
	margin-left: -490px;
	/*margin-top: -300px;*/
}

#addHardwareWindow .popupWindow
{
	width: 980px;
	height: 600px;
	margin-left: -490px;
	/*margin-top: -300px;*/
}

#addShippingWindow .popupWindow
{
	width: 980px;
	height: 600px;
	margin-left: -490px;
	/*margin-top: -300px;*/
}

#communicationWindow .popupWindow
{
	width: 980px;
	height: 600px;
	margin-left: -490px;
	/*margin-top: -300px;*/
}

#archiveWindow .popupWindow
{
	width: 980px;
	height: 600px;
	margin-left: -490px;
	/*margin-top: -300px;*/
}

#archiveInqWindow .popupWindow
{
	width: 980px;
	height: 600px;
	margin-left: -490px;
	/*margin-top: -300px;*/
}

#complaintsWindow .popupWindow
{
	width: 980px;
	height: 600px;
	margin-left: -490px;
	/*margin-top: -300px;*/
}

#addMessageWindow .popupWindow
{
	width: 1000px;
	height: 700px;
	margin-left: -500px;
	/*margin-top: -300px;*/
}

#addComplaintWindow .popupWindow
{
	width: 1000px;
	height: 700px;
	margin-left: -500px;
	/*margin-top: -300px;*/
}

.popupClose
{
	position: relative;
	margin-bottom: 10px;
	padding: 10px;
	border-bottom: 1px solid #9B0000;
}

.popupTitle
{
	min-height: 20px;
	line-height: 20px;
	font-size: 16px;
	font-weight: bold;
}

.popupTitle img
{
	display: inline-block;
	margin-right: 10px;
	position: relative;
	top: 1px;
	left: 2px;
}

.popupCloseButton
{
	position: absolute;
	top: 6px;
	right: 8px;
	background-color: transparent;
	color: #ffffff;
	border: none;
	width: 30px;
	height: 30px;
	background: #ffffff url(../images/icons/CLOSE_RED.png) no-repeat center center;
	background-size: 15px 15px;
	cursor: pointer;
	outline: none;
}

.popupContent
{
	background-color: #ffffff;
	padding: 20px;
	height: 280px;
	overflow-x: auto;
	overflow-y: auto;
}

#profileWindow .popupContent
{
	height: 530px;
}

#invoicesDetailsWindow .popupContent
{
	height: 530px;
}

#posDetailsWindow .popupContent
{
	height: 530px;
}

#addInvoiceWindow .popupContent
{
	height: 530px;
}

#addContractWindow .popupContent
{
	height: 530px;
}

#addGlassWindow .popupContent
{
	height: 530px;
}

#addPalletWindow .popupContent
{
	height: 530px;
}

#addHardwareWindow .popupContent
{
	height: 530px;
}

#addShippingWindow .popupContent
{
	height: 530px;
}

#communicationWindow .popupContent
{
	height: 530px;
}

#archiveWindow .popupContent
{
	height: 530px;
}

#archiveInqWindow .popupContent
{
	height: 530px;
}

#complaintsWindow .popupContent
{
	height: 530px;
}

#addMessageWindow .popupContent
{
	height: 630px;
}

#addComplaintWindow .popupContent
{
	height: 630px;
}

/* end popup */

/* start tooltip */
 
.tooltip
{
	position: relative;
	display: inline-block;
	color: #9B0000;
}

.tooltip .tooltiptext
{
	visibility: hidden;
	width: 240px;
	background-color: black;
	color: #fff;
	font-size: 12px;
	text-align: center;
	border-radius: 6px;
	padding: 10px 5px;
	position: absolute;
	z-index: 100;
	bottom: 150%;
	left: 50%;
	margin-left: -120px;
}

#invoicesDetailsWindow .tooltip .tooltiptext
{
	text-align: left;
	font-size: 13px;
}

.tooltip .tooltiptext::after
{
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: black transparent transparent transparent;
}

.tooltip:hover .tooltiptext
{
	visibility: visible;
}
/* end tooltip */

/* start tooltip1 */
 
.tooltip1
{
	position: relative;
	display: inline-block;
	color: #9B0000;
}

.tooltip1 .tooltiptext
{
	visibility: hidden;
	width: 120px;
	background-color: black;
	color: #fff;
	font-size: 12px;
	text-align: center;
	border-radius: 6px;
	padding: 10px 5px;
	position: absolute;
	z-index: 100;
	top: 150%;
	left: 50%;
	margin-left: -90px;
}

.tooltip1 .tooltiptext::after
{
	content: "";
	position: absolute;
	bottom: 100%;
	left: 90px;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent black transparent;
}

.tooltip1:hover .tooltiptext
{
	visibility: visible;
}
/* end tooltip1 */

/* start tooltip2 */
 
.tooltip2
{
	position: relative;
	display: inline-block;
	color: #9B0000;
}

.tooltip2 .tooltiptext
{
	visibility: hidden;
	width: 120px;
	background-color: black;
	color: #fff;
	font-size: 12px;
	text-align: center;
	border-radius: 6px;
	padding: 10px 5px;
	position: absolute;
	z-index: 100;
	bottom: 150%;
	left: 50%;
	margin-left: -90px;
}

.tooltip2 .tooltiptext::after
{
	content: "";
	position: absolute;
	top: 100%;
	left: 90px;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: black transparent transparent transparent;
}

.tooltip2:hover .tooltiptext
{
	visibility: visible;
}
/* end tooltip2 */

/* start paging */

#searchingMainContainer, #searchingInqContainer
{
	width: 150px;
	float: left;
	padding: 10px 0;
	text-align: center;
}

#pagingMainContainer, #pagingInqContainer
{
	width: calc(100% - 150px);
	float: right;
}

.pagingContainer
{
	padding: 10px 0;
}

.pagingContainer div.showingRecordsContainer
{
	float: right;
	line-height: 20px;
	font-size: 13px;
	margin-right: 20px;
}

.pagingContainer ul
{
	list-style-type: none;
	padding: 0;
	float: right;
}

.pagingContainer ul li
{
	float: left;
	margin-right: 1px;
}

.pagingContainer ul li a
{
	display: block;
	float: left;
	width: auto;
	padding: 5px 10px;
	font-size: 13px;
	background-color: #f1f1f1;
	color: #000000;
	text-align: center;
	text-decoration: none;
	border: 1px solid #cccccc;
	cursor: pointer;
	border-radius: 2px;
}

.pagingContainer ul li a.firstPage
{
	width: auto;
}

.pagingContainer ul li a:hover
{
	background-color: #666666;
	border: 1px solid #666666;
	color: #ffffff;
	text-decoration: none;
}

.pagingContainer ul li a.selected
{
	background-color: #666666;
	color: #ffffff;
	text-decoration: none;
	border: 1px solid #666666;
}

/* end paging */

@media only screen and (max-width: 950px)  {
	
.popupWindow
{
	top: 20px !important;
	left: 20px !important;
	width: calc(100% - 40px) !important;
	height: calc(100% - 40px) !important;
	margin-left: 0px !important;
	font-size: 18px;
}
	
.popupContent
{
	height: calc(100% - 60px) !important;
}

/* start paging */

.appliedFiltersContainer
{
	float: none;
	width: 100%;
	padding: 10px 0;
	line-height: 20px;
	font-size: 15px;
	margin-left: 0px;
}

#pagingMainContainer
{
	width: 100%;
	float: none;
}

.pagingContainer
{
	padding: 10px 0;
}

.pagingContainer
{
	padding: 10px 0;
}

.pagingContainer div.showingRecordsContainer
{
	float: none;
	clear: both;
	line-height: 20px;
	font-size: 15px;
	padding: 12px 0;
	margin-right: 0px;
}

.pagingContainer ul
{
	float: none;
}

.pagingContainer ul li a
{
	padding: 7px 14px;
	font-size: 15px;
}

/* end paging */

}

@media only screen and (max-height: 500px)  {
	
.popupWindow
{
	top: 10px !important;
	left: 10px !important;
	width: calc(100% - 20px) !important;
	height: calc(100% - 20px) !important;
	margin-left: 0px !important;
	font-size: 18px;
}

.popupContent
{
	height: calc(100% - 60px) !important;
}

/* start paging */

.appliedFiltersContainer
{
	float: none;
	width: 100%;
	padding: 10px 0;
	line-height: 20px;
	font-size: 15px;
	margin-left: 0px;
}

#pagingMainContainer
{
	width: 100%;
	float: none;
}

.pagingContainer
{
	padding: 10px 0;
}

.pagingContainer
{
	padding: 10px 0;
}

.pagingContainer div.showingRecordsContainer
{
	float: none;
	clear: both;
	line-height: 20px;
	font-size: 15px;
	padding: 12px 0;
	margin-right: 0px;
}

.pagingContainer ul
{
	float: none;
}

.pagingContainer ul li a
{
	padding: 7px 14px;
	font-size: 15px;
}

/* end paging */

}