/*
  Name: RT Website
  Date: 2nd August 2016
  Description: Styling layout for print.
  Version: 2.0
  Author: Rav Karki
  Autor URI: http://www.webtecsolutions.com.au
*/


/****************************************/
/***********#hiding unwanted details from printing*************/
/****************************************/

@media print {

body {
    position: relative;
    margin: 0;
    padding: 0;
    color: #000305;
    font-size: 87.5%;
    -webkit-font-smoothing: antialiased;
    /* Base font size:14px */
    -webkit-print-color-adjust: exact;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    line-height: 1.5;
}

/* Headings */

/*26px*/
h1 {font-size: 1.625em }

/*24px*/
h2 {
    font-size: 1.500em
}

/* 22px */

h3 {
    font-size: 1.429em
}

/* 20px */

h4 {
    font-size: 1.286em
}

/* 18px */

h5 {
    font-size: 1.143em
}

/* 16px */

h6 {
    font-size: 1em
}


h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: .8em;
}

/* Anchors */

a {
    color: #0083B5;
    outline: 0;
    text-decoration: none;
}

/*link image*/
a img {
    border: 0px;
    text-decoration: none;
}



/*hover and active color*/
a:hover, a:active {
    text-decoration: underline;
}

/* Paragraphs */

p {
    margin-bottom: 1.143em;
}

/*all of the last p tags*/
* p:last-child {
    margin-bottom: 0;
}


/*italic*/
i {
    font-style: italic;
}

/*selection of text or image color*/
::-moz-selection {
    background: #F6CF74;
    color: #fff;
}

::selection {
    background: #F6CF74;
    color: #fff;
}


/* Lists */

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
ol {
    list-style: outside decimal;
    margin: 1em 0 1.5em 1.5em;
}
dl {
    margin: 0 0 1.5em 0;
}
dt {
    font-weight: bold;
}
dd {
    margin-left: 1.5em;
}

/* Quotes */

blockquote {
    font-style: italic;
}

/*align Left*/

.alignLeft {
	text-align:left;
	padding-left: 5px;
	padding-right: 5px;
	}

/*float left classes*/
.floatLeft{float:left;}

/*float right classes*/
.floatRight{float:right;}

/*margin top class*/
.marginTop {margin-top:20px;}

/*width 100 px*/
.wHundred {width: 100px;}

/*dollar amount*/

.dollarAmount {color: #1FB40A;}

/*red text*/
.redText {color:#FF2E00;}

/*highlighted text - similar to disabled*/

.highlightDisabled {
    color: #AAAAB6;
	}
	
/*highlight in red color */
.highlightRed {border: 1px solid #FF514B !important;}



/*highlight in red color */
.highlightCheckoutPlan {border-bottom: 3px dotted #0ABF8D;}

/*customising current plan details*/
.alignCurrentPlanDetails {
    	margin-bottom: 10px !important;
    	}

/*current plan details div*/
.currentPlanDiv {
	
    float: left;
    margin-left: 10px;
    width: 155px;
	
	}
	
/*underline Text*/
.underlineText {
	border-bottom: 1px solid #111;
    	padding-bottom: 5px;
    }


/*underline Text*/
.overlineText {
	border-top: 1px solid #111;
    	padding-top: 5px;
    	margin-top: 35px;
       display: block;
    }


    
  /*bigger text like h4*/
  .hfourText { display:block; padding: 15px 0 15px 30px;}
  


/****************************************/
/***********#Background colors*************/
/****************************************/

/*alternate background color, normal one is white*/
.alternateBackground {
	
	background-color: #F0F0F0;
	width: 100%;
	position:relative;
	padding: 4% 0;
}


/*white background*/

.whiteBackground {
	
	background-color: #ffffff;
	width: 100%;
	position:relative;
	padding: 4% 0;
	display:inline-block;
}

/*blue background*/
.blueBackground {

	background-color: #0083B5;
	width: 100%;
	position:relative;
	padding: 4% 0;

}


/****************************************/
/***********#Header*************/
/****************************************/

/*header container*/
#contentHeader {
    width: 85%;
    background-color: #0c3455 !important;
    color: #fff;
}

/*header settings*/

#header {
    height: 40px;
    padding: 10px;
    max-width: 1255px;
    margin: 0 auto;
    
}

/*removing space above header*/

#header h2 {
    margin-top: 0;
    float: left;
}

/****************************************/
/***********#LOGO*************/
/****************************************/

#logoRT img {

    float: left;
}

/*parent welcome user*/

#pWelcomeUser {
    float: right;
    margin-top: -14px;
    padding: 15px 5px 3px 5px;
    position:relative;
}

/*welcome user*/

#welcomeUser {
    float: left;
    padding-left: 30px;
}

/*size of the logged in user name*/

.hUName {
    font-weight: bold;
}

/*welcome link*/

#welcomeUser a {
    color: #111;
}

/*company name */

.hCName {
    font-size: 12px;
}


/****************************************/
/****Buttons*******/
/****************************************/

/*table heading with buttons*/
.btnTH {width: 150px;}

/*delete button heading th*/
.deleteTH {width:75px;}



/****************************************/
/***********#Table layout*************/
/****************************************/

/* Table */

table {
   margin: 1em auto 1em auto;
   width: 50%;
   border-collapse: collapse;
}


/*heading title of table*/

tbody th {
    background-color: #f7f7f7;
    padding: 10px 0 10px 7px;
    font-weight: normal;
    text-align: center;
    font-size: 15px;
}

/*table content border*/

td {
    padding: 10px 0px 10px 0px;
    text-align: center;
}

/* Thead */

thead th {
    padding: .5em .4em;
    text-align: left;
}

/****************************************/
/***********#Table layout for Payment Plans*************/
/****************************************/

/*table important infor floating left*/

.pPTableInfo {
    text-align: left;
    font-weight: bold;
    padding-left: 10px;
}

/*tr border color*/

#paymentPlans tr {
    border: 1px solid #bababa;
}

/*every second TR with different color*/

.pPSecondCol {
    background-color: #f7f7f7;
}

/*tr border color*/

#paymentPlans td,
#paymentPlans th {
    border-right: 1px solid #bababa;
}

/***** Placeholders *****/

::-webkit-input-placeholder {
    color: #B3B1B1;
    font-size: 14px;
    line-height: 1.4;
}
:-moz-placeholder {
    /* Firefox 18- */
    
    color: #B3B1B1;
    font-size: 14px;
    line-height: 1.4;
}
::-moz-placeholder {
    /* Firefox 19+*/
    
    color: #B3B1B1;
    font-size: 14px;
    line-height: 1.4;
}
:-ms-input-placeholder {
    color: #B3B1B1;
    font-size: 14px;
    line-height: 1.4;
}


/*info icon and background*/

.infoIcon {
    background-color: rgba(245, 245, 245, 0.7);
    padding: 10px 10px 10px 38px;
    background-position: -4px -957px;
    background-image: url('/images/allinoneInputIconRT.png');
    background-repeat: no-repeat;
    border-radius: 3px;
}

/*Green Tick*/

.greenTick {
    color: #35B26D;
    font-size: 17px;
}

/****************************************/
/***********#Content Layout*************/
/****************************************/

/*Main content*/

#content {
    clear: both;
    max-width: 1255px;
    margin: 0 auto;
    padding: 20px 10px 0 10px;
    margin-top: 10px;
}


/*light Text Color*/

.lightText {
    color: #D1CED1;
    font-weight: normal;
}

/*making info bold text*/

.boldText {
    font-weight: bold;
}
/****************************************/
/***********#Pricing Div #Customisation*************/
/****************************************/

/*pricing parent div*/

#pricingPDiv {
    margin-top: 20px;
    width: 100%;
}

/*all the divs*/

.pricingDiv {
    float: left;
    margin-right: 2px;
    width: 184px;
}

/*Medium business*/

.pricingDiv3 {
    margin-top: -30px;
    position: relative;
    box-shadow: 0px 4px 5px 5px rgba(187, 187, 187, 0.6);
    -moz-box-shadow: 0px 4px 5px 5px rgba(187, 187, 187, 0.6);
    -webkit-box-shadow: 0px 4px 5px 5px rgba(187, 187, 187, 0.6);
}

.pricingDiv3 .pricingTitle {
    padding-bottom: 25px;
}

/*title for each pricing*/

.pricingTitle {
    background-color: #0083B5;
    color: #fff;
    padding: 15px;
    font-size: 20px;
    text-align: center;
}

/*under pricing title - actual price*/

.pPrice {
    background-color: #818181;
    text-align: center;
    color: #fff;
    padding: 5px 10px 5px 10px;
}

/*pricing detail div*/

.pricingDetails {
    width: 300px;
    float: left;
    margin-right: 2px;
}

/*amount, tick and cross*/

.customisePUlList {
    text-align: center;
}

/*li tags for the pricing*/

.pUlList li,
.customisePUlList li {
    padding: 10px;
    font-size: 17px;
}

/*left align titles*/

.leftAlign {
    text-align: left;
}

/*red close/cross button*/

.redCross {
    color: #FF2E00;
}

/*Green Tick*/

.greenCross {
    color: #35B26D;
}

/*popular plan*/

.popularPlan {
    background-color: #35B26D;
    color: #fff;
}

/*breadcrumbs*/
.breadcrumb {display: none;}



/*hiding dropdown menu , logo and backend*/
 #ddMenu, #backendNav, .footerNav, input[type="button"], input[type="submit"], #viewClientBtns{display:none;}

/*all of the light texts*/

.lightText {
    color: #D1CED1;
    font-weight: normal;
}



#footer h2 {display:none;}


 /****************************************/
  /**********#styling invoice manger and docket book*******/
  /****************************************/

form, #pageControls, #dbpageControls, .printHide, button.printIconBig {display:none;}

#invoiceTable, #daybookTable, table{width:100%;}


#daybookTable li, #freeDaybookTable li {
	border-bottom:1px solid #E4E4E4;
	width:100%;
	padding:6px 0 6px 0;
}

/*li results on hover Daybook and invoice*/
#daybookTable li:hover, #invoiceTable li:hover, #freeDaybookTable li:hover{background-color: #fff6cc;}

/*approved image for the link tag*/
  .daybookUserApproved a {
    background-image: url("images/green.png");
    background-repeat: no-repeat;
    background-position: 32px 0px;
    display: inline-block;
    width: 100%;
  }
  
  
  /*Not approved image for the link tag*/
  .daybookUserNotApproved a {
    background-image: url("images/red.png");
    background-repeat: no-repeat;
    background-position: 32px 0px;
    display: inline-block;
    width: 100%;
  }



.daybookIcon {
	float:left;
}
.daybookContent {
	width:100%;
}
.daybookUser, .daybookUserNA{
	float:left;
	width: 88%;
	font-size:12px;
	font-weight:bold;
	color:#1FB40A;
	margin-left: 113px;
	padding-bottom:5px;
}

/*free daybook username*/

#freeDaybookTable .daybookUser {
	
	width: 90%;
	
	}


/*daybook and invoice user send to*/

.daybookUserTo, .invoiceUserTo {

	float:right;
 	font-weight: normal;
 	color: #D1CED1;
 	padding-right: 2px;
  }
  
  .daybookUserTo{padding-right: 38px; }


.daybookUserNA{
	
	color:#f00;
	
	
	}

.daybookHours {
	float:right;
	font-size:13px;
	font-weight:bold;
	color:#F8B909;
	padding-right:7px;
}



/*free daybook hours and date*/

#freeDaybookTable .daybookHours, #freeDaybookTable .daybookDate {padding-right: 13px;}

/*daybook description*/
.daybookDescriptionA, .daybookDescriptionNA {
    
    width: 75%;
    padding-bottom: 5px;
    float: left;
    font-weight: normal;
    font-size: 13px;
    word-break: break-word;
    margin-left: 112px;
}


.daybookNumber{
	float:left;
	font-weight: normal;
	width:70%;
	color:#D1CECE;
	font-size: 13px;
	margin-left: 113px;

}
.daybookDate, .invoiceDate {
	color: #D1CECE;
	float:right;
	font-weight: normal;
	font-size: 13px;
	padding-right:6px;
}

/*overriding invoicedate*/

.invoiceDate { padding-right: 10px;}

/*daybook table link*/
#daybookTable a:link, #freeDaybookTable a:link{
	
	color: #111;
	text-decoration: none;
	
	}
	
	
.dbmPage li a:link {
	
	color: #111;
	text-decoration: none;
	
	}
	

#daybookTable a:hover, #freeDaybookTable li a:hover {
	
	color: #111;
	text-decoration: none;
	border:none;
	
	}
	
	
.dbmPage li a:hover {
	
	color: #111;
	text-decoration: none;
	border:none;
	background:#000;
	background-color: #278FF6;
	}
	
	

#daybookTable a:visited {
	
	color: #111;
	
	}
	
	
	
 /****************************************/
  /***********#Daybook Total dockets, amount*************/
  /****************************************/
	
/*floating totals UL tag to right*/
.daybookTotal {float: right; position:relative;}

.daybookTotal li {
	
	padding-left:15px !important;
	padding-right: 15px !important;
	
	}

/*total text all*/
.dbTotalClass {

    font-weight: bold;
    margin-right: 120px;
	
	}

/*total dockets*/

.dbTotalDockets, .dbTotalHours, .dbTotalAmount {
	
    font-size: 15px;
    position: absolute;
    right: 6px;	
}

/*styling total hours*/

.dbTotalHours {color: #F8B909;}

/*styling total Amount*/
.dbTotalAmount {color: #1FB40A;}

/*styling Docket book pop up*/

/*parent heading docket*/

#parentHeadingDocket {clear:both;}


/*left side of docket book*/

#leftHeadingDocket {float:left;}

/*right side of docket book*/

#rightHeadingDocket {float:right;}

#docketPopUpTable td {border: 1px solid #111; padding:3px;}

/*db approved button*/
.dbapproved {float:right;}

/*db approved button*/
.dblocation {float:left;}

/*description docket*/

#descriptionDocket {clear:both;}


/*docket details table*/

#docketDetailsTable {display: inline-table;}


/*docket details table*/

#docketDetailsTable th {
	background-color: #6D6B6B;
    	color: #fff;
    	border-right: 1px solid #fff;
    	border-bottom: 0;
    	}
    	
/*border right of tds*/

#docketDetailsTable td{
	border-right: 1px solid #fff;
	
	}

/*odd table row colors*/

#docketDetailsTable tr:nth-child(odd) {
    background-color: #E5E5E5;
}

/*daybook pop up images and singature*/
#photoDB, #signatureDB {

	max-width:50%;
	max-height:50%;
	padding-left:250px;
	padding-right:300px; 
	padding-top:10px;
	display:block;
	}
	

  /****************************************/
  /***********#Invoice Manager*************/
  /****************************************/
    
    /*li border for content*/
    #invoiceTable li {
	border-bottom:1px solid #E4E4E4;
	width:100%;
	padding:10px 0 5px 0;
	list-style: none;
}

/*Invoice table link*/
#invoiceTable a:link {
	
	color: #111;
	text-decoration: none;
	
	}


    
       /*Invoice User*/
    .invoiceUser{
	float:left;
	width: 98%;
	font-size:15px;
	font-weight:bold;
	color:#1FB40A;
	padding-bottom:10px;
	margin-left: 10px;
}
    
    /*Invoice Description*/
     .invoiceDescription{
	clear:both;
	width: 100%;
	font-weight: normal;
	font-size: 15px;
	word-break:break-word;
	padding-bottom: 11px;
	margin-left: 10px;
}

	/*Invoice Description*/
	.invoiceNumber {
	float:left;
	font-weight: normal;
	width:80%;
	color:#D1CECE;
	font-size: 13px;
	margin-left: 10px;
}

  
  /*image of a company*/
  
  .sResultCImage {
	 
	  width: 75px;
	  
	}
	

 /*Name of the company*/
  
  h3.sResultCName {
	 
	 margin: 0 0 10px 0;
	  
	}
	

/*location text*/
p.sResultLocation { margin: 7px 0 0 0;}

	
    .searchRLeft {
    
      	float: left;
 	margin-right: 20px;
 	height: 75px;
    
    }
    
   /*floating button*/
   
   .floatAddBtn {float: right; margin-top: -60px; }
    
    
/*view client - top Space*/

.vClientTopSpace {padding-top: 10px;}


  /****************************************/
 /*************#view client page**************/
 /****************************************/


#viewClientTable td {padding-right: 10px;}

#viewClientTable tr {border-bottom: 1px solid #bababa;}

#viewClientTable tr:hover {background-color: #FFF6cc;}


  /****************************************/
 /*************#view Employee page**************/
 /****************************************/

#viewEmployeeTable tr {border-bottom: 1px solid #bababa;}

#viewEmployeeTable tr:hover {background-color: #FFF6cc;}



  /****************************************/
 /*************#Invoice print**************/
 /****************************************/

 .invoiceContent {
	
	overflow:visible;
	float:none;
   	position:static;

}

#headingInvoice {
	width:100%;
}
#leftHeadingInvoice {
	float:left;
	width:45%;
	padding-right:10px;
}

/*removing the h1 space from company Name*/

#leftHeadingInvoice h1 {margin-bottom: 0px; font-size: 1.429em;}

/*invoice logo customisation*/

#invoiceLogo img {width: auto; height: 70px;}


#rightHeadingInvoice {
	float:right;
}

#rightHeadingInvoice h1 {font-size: 1.429em;}


/*date and invoice number table*/

.invoiceDateNNumber td {
	
	padding: 5px 7px 5px 7px;
 	border: 1px solid #000000;
  	text-align: left

	}


.invoiceDescriptionInvoice {
	clear:both;
	display:inline-block;
}

/*invoice description field*/
.invoiceDESField {text-align: left; width: 85%;}

/*invoice amount field*/
.invoiceAMTField{text-align: right !important; width: 130px !important;}

.companyDetailsInvoice {
	margin-top:50px;
	font-size:12px;
	bottom:0;
}

.generatedInvoice {
	border-collapse:collapse;
  	width: 100%;
  	page-break-inside: avoid;
  	overflow: visible;
}

.generatedInvoice td, .generatedInvoice th {
	border:1px solid #afafaf;
	padding:5px;
	word-wrap: break-word;
	text-align: left;
}


td.moneyClass {
	text-align:right;
	padding-right:15px;
}

.generatedInvoice th {
	background-color:#6D6B6B;
	color:#fff;
}
.generatedInvoice tr:nth-child(odd) {
	background-color: #E5E5E5;
}

/****************************************/
/**********#WaterMark*************/
/****************************************/

.generateDBook:after {
    content: 'Docket Generated By: Record TIME';
    position: absolute;
    left: 38%;
    font-size: 15px;
    color: #C5C5C5;
    margin-top:2%;
}




}/*end media print*/