/* global */
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap");

body {
    display: block;
    position: relative;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background: #2c3777;
}
a {
	text-decoration: none;
	color: initial;
}
h1, h2, h3, h4, h5, h6 {
	color: #142353;
}
.textInput {
	display: block;
	font-size: 16px;
	padding: 4px;
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 10px;
	background: #b1d2fc33;
	border-radius: 4px;
	border: 1px solid;
}

.smallerText {
	font-size: 0.8em;
}
#showPageLoginCont .textInput {
	font-size: 2em;
	text-align: center;
	background: white;
	height: 50px;
	border: 2px solid #ccc;
	border-radius: 5px;
}
.textarea {
	display: block;
	width: 100%;
	box-sizing: border-box;
	min-height: 80px;
	background: #b1d2fc33;
	border-radius: 4px;
	border: 1px solid;
}
.displayBlock {
	display: inline-block;
	margin: 4px;
	vertical-align: top;
}
.buttons {
	box-shadow: inset 0px 1px 3px 0px #91b8b3;
	background: linear-gradient(to bottom, #142353 5%, #152d4e 100%);
	background-color: #142353;
	border-radius: 5px;
	border: 1px solid #0c182e;
	display: inline-flex;
	cursor: pointer;
	color: #ffffff;
	font-family: Arial;
	font-size: 15px;
	font-weight: bold;
	padding: 5px 10px;
	text-decoration: none;
	text-shadow: 0px -1px 0px #2b665e;
	margin: 5px;
	justify-content: center;
	align-items: center;
	align-content: center;
	line-height: 1.5em;
	flex-wrap: wrap;
}

.buttonsSmaller {
	box-shadow: inset 0px 1px 3px 0px #91b8b3;
	background: linear-gradient(to bottom, #142353 5%, #152d4e 100%);
	background-color: #142353;
	border-radius: 5px;
	border: 1px solid #0c182e;
	display: inline-flex;
	cursor: pointer;
	color: #ffffff;
	font-family: Arial;
	font-size: 13px;
	padding: 5px 10px;
	text-decoration: none;
	margin: 5px;
	justify-content: center;
	align-items: center;
	line-height: 0;
}

.buttons i {
	margin: 0 5px;
}

.buttonsCentered {
    display: block;
    margin: 0 auto;
}

.buttons:hover {
    background:linear-gradient(to bottom, #152d4e 5%, #142353 100%);
    background-color:#6c7c7c;
}
}
.buttons:active {
	position:relative;
	top:1px;
}
.disabledButton {
	opacity: 0.3;
	cursor: not-allowed !important;
}
.notActiveButton {
	opacity: 0.3;
}
.fullSized {
	display: inline-flex !important;
	width: 100%;
}
.mobileSized {
	display: none !important;
	width: 100%;
}
.feedback {
	color: red;
	margin: 5px 0;
}
/* header */
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: white;
	color: black;
	padding: 0 10px;
}
.headerLogo {
	height: 60px;
	padding: 5px 0 0 10px;
	margin: 10px 0px;
}
.mainMenu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	justify-content: center;
}
.mainMenu ul li {
	display: flex;
	align-items: center;
	text-align: center;
	min-width: fit-content;
	margin: 5px 15px;

}
.mainMenu ul li a {
	display: inline-block;
	text-decoration: none;
	color: #142353;
}
.burger-menu {
	cursor: pointer;
	display: none;
	color: #fff;
	margin-right: 18px;
	background: #2d3d78;
	padding: 2px 8px;
	border-radius: 15px;
	border: 2px solid #060435;
	text-shadow: 0px 0px 4px #000;
}

.burger-menu i {
	font-size: 30px;
	margin: 0 auto;
	display: block;
	width: fit-content;
}

.bugerMenuMenuWord {
	font-size: 0.6em !important;
	letter-spacing: 2px;
	display: block;
	padding-left: 1px;
	margin-top: 1px;
	font-weight: 600;
	padding-bottom: 2px;
}


@media (max-width: 600px) {
	.fullSized {
	display: none !important;
	width: 100%;
}
.mobileSized {
	display: inline-flex !important;
	width: 100%;
}
	
	.headerLogo {
  height: 50px;
  padding: 5px 0 0 10px;
  margin: 10px 0px;
}
	
	
	.burger-menu {
		display: block;
		margin-right: 0px;
	}
	.mainMenu {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 90px;
		left: 0;
		width: 100%;
		background: #2d3d78;
		z-index: 100;
		min-height: 100vh;
	}
	.mainMenu ul {
		flex-direction: column;
	}
	.mainMenu ul li {
		margin-left: 0;
		text-align: center;
	}
.mainMenu ul li a {
	display: block;
	padding: 20px 10px;
	border-bottom: 1px dashed;
	text-align: center;
	color: white;
	text-shadow: 0px 0px 4px #000;
	width: 100%;
	box-sizing: border-box;
	margin: 0 0 0 15px;
}
	.dropdownWrapper {
		position: relative;
    display: block;
    padding: 20px 10px;
    border-bottom: 1px dashed;
    text-align: center;
    color: white;
    text-shadow: 0px 0px 4px #000;
    width: 100%;
    box-sizing: border-box;
    margin: 0 0 0 15px;
	}	
	
	.accountDropdown {
margin-top: 30px;
width: 101% !important;
}

	.accountDropdown a {
color: black !important;
text-shadow: none !important;
}

	
}
/* main content */
.mainContent {
	padding: 20px;
	display: block;
	max-width: 850px;
	box-sizing: border-box;
	width: calc(100% - 30px);
	margin: 20px auto;
	background: #ffffff;
	border-radius: 4px;
	border: 1px solid;
}

/* loading screen */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	z-index: 1000;
}
.loading-screen i {
	font-size: 3em;
	color: white;
}
.loading-screen p {
	color: white;
	margin-top: 10px;
}
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.loading-screen i {
	font-size: 3em;
	color: white;
	animation: spin 2s linear infinite;
}
/* toggle password visibility */
.password-container {
	position: relative;
}
.toggle-password {
	position: absolute;
	right: 10px;
	top: 68%;
	transform: translateY(-50%);
	cursor: pointer;
}
.installPasswordsToggle {
	top: 50% !important;
}
.hidden {
	display: none !important;
}
.spinnerSpin {
	animation: spin 2s linear infinite;
}
.installSection {
	display: flex;
	flex-direction: column;
}

.social-links {
	display: inline-flex;
	width: fit-content;
	font-size: 1.4em;
	       justify-content:  space-between;
       flex-wrap: wrap;
}


.spaced {
	display: inline-flex;
	font-size: 1.4em;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: 100%;
}


.spaced i {
display: inline-block;
	font-size: 1.2em;
margin-right: 5px;	
}




.carousel {
  display: flex;
  width: 100%;
  height: 150px;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 8px;
  border: 2px solid black;
  box-sizing: border-box;
  align-items: center; /* Add this to vertically center the inline-block elements */
}

.sliderImg {
  display: inline-block;
  transition: filter 0.5s;
  position: relative;
  z-index: 1;
  max-height: 100%; /* Use max-height to ensure the image height does not exceed the carousel's height */
  object-fit: cover;
  object-position: center;
}

.addressLink {
  display: flex;
  align-items: center;
}

.addressLink i {
  font-size: 2em;
  margin-right: 5px;
}





.optionsWrapper {
  display: flex;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
  align-content: space-evenly;
  justify-content: center;
}

.optionWrapper {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	border: 2px solid black;
	border-radius: 8px;
	min-width: 250px;
	width: 25%;
	padding: 0;
	box-sizing: border-box;
	margin-right: 5px;
	margin-bottom: 20px;
	max-width: 18%;
	margin-left: 5px;
}

.optionNum {
  font-size: 1.35em;
}

.optionName {
  background: #2c3777;
  color: white;
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
}

.optionNickname {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  background: rebeccapurple;
  color: white;
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
  margin-top: 5px;
  font-size: 1.7em;
  line-height: 1em;
}

.optionNickname i {
  font-size: 0.7em;
  letter-spacing: -0.2em;
  color: gold;
}

.fadedStar {
  opacity: 0.4;
}

.optionIncludes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 10px 0;
  line-height: 1em;
  font-weight: 600;
  height: calc(100% - 200px);
  width: 100%;
  box-sizing: border-box;
}

.option {
  display: block;
  padding: 0 10px;
}
.optionIncludes1 .option {
  margin-bottom: 45px;
}

.optionIncludes2 .option {
  margin: 14.3px;
}
.optionIncludes3 .option {
  margin: 7.5px;
}

.optionIncludes4 .option {
  margin: 12px;
}
.optionIncludes5 .option {
  margin: 4px;
}

.optionPrice {
  display: block;
  height: 50px;
  font-size: 3em;
  font-weight: 900;
  line-height: 1em;
}

.option4x4sPrice {
  display: block;
  height: 20px;
  font-size: 0.9em;
}



.productLogosCont {
  display: flex;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
  align-content: space-evenly;
  justify-content: center;
}

.productLogo {
	display: inline-block;
	margin: 15px;
	max-height: 70px;
	border-radius: 8px;
	max-width: 70%;
}

.map-container {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	border: 1px solid;
	border-radius: 8px;
	overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.gallery {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: center;
}

.previewImgCont {
  display: block;
  width: fit-content;
  height: fit-content;
  position: relative;
}
.previewImg {
  position: relative;
  max-height: 180px;
  width: auto;
  max-width: 100%;
  border: 1px solid black;
  background-color: #000000e5;
  cursor: zoom-in;
  margin: 5px;
  box-sizing: border-box;
}
.zoomIcon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffffffa1;
  border-radius: 50%;
  padding: 4px;
  pointer-events: none;
  z-index: 1;
}
.zoomedImage {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: zoom-out;
  min-width: 100vw;
  min-height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain;
	margin: 0;
}
.zoomedImage::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000e5;
  z-index: 1;
	margin: 0;
}




.advOptionWrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 2px solid black;
  border-radius: 8px;
  min-width: 250px;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  margin-right: 10px;
  margin-bottom: 20px;
}

.advOptionNum {
  font-size: 1.4em;
  font-weight: 600;
}

.advOptionName {
  background: #2c3777;
  color: white;
  width: 100%;
  padding: 5px;

  box-sizing: border-box;
}


.advOptionIncludes {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  line-height: 1em;
  font-weight: 600;
  width: 100%;
  box-sizing: border-box;
}

.advOption {
  display: block;
  padding: 5px 10px 10px 10px;
  margin: 10px 0;
  border-bottom: 1px solid;
}

.advOptionPrice {
  display: block;
  height: 50px;
  font-size: 3em;
  font-weight: 900;
  line-height: 1em;
}
.advOption4x4sPrice {
  display: block;
  height: 20px;
  font-size: 0.9em;
}
.advOptionImg {
	display: block;
	margin: 15px auto;
	max-height: 70px;
	border-radius: 8px;
	max-width: 70%;
}
.fromWord {
	font-size: 0.28em;
	font-weight: 100;
	display: initial;
	vertical-align: middle;
	font-style: italic;
}
.dropdownWrapper {
	position: relative;
	display: block;
	cursor: pointer;
	min-width: 92px;
}
.accountDropdown {
	display: none;
	position: absolute;
	left: 0;
	top: 20px;
	background: #b1d2fc;
	border-radius: 4px;
	border: 1px solid;
	padding: 5px;
	box-sizing: border-box;
	width: calc(100% + 20px);
}
.accountDropdown a { 
	width: 100%;
	border-bottom: 1px solid black;
	padding: 10px 5px;
	box-sizing: border-box;
}


.existingCustRow {
  display: flex;
	flex-direction: column;
  padding: 15px 0;
  border-bottom: 1px solid;
  align-items: flex-start;
}

.existingCustCell.existingCustCellCompName {
  width: 100%;
  word-break: break-word;
}


.existingCustOptionWrapper {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	border: 1px solid;
	padding: 4px 8px 4px 4px;
	border-radius: 8px;
	font-size: 0.7em;
	text-transform: uppercase;
	min-width: 30px;
	color: white;
	background: #2d3d78;
	cursor: pointer;
	margin: 2px;
	user-select: none;
}

.existingCustOptionWrapper i {
 font-size: initial;
  margin: 0 5px;

}


.ui-widget-overlay {
	background: #000000ed !important;
	opacity: 1 !important;
}


.admCustomerForm {
	position: relative;
	background: #f8f5f5;
	border-radius: 4px;
	border: 1px solid;
	padding: 0px 10px 10px 10px;
	margin: 10px 0; 
}

.closeCustFormIcon {
	position: absolute;
	top: 5px;
	right: 8px;
	font-size: 2em;
	cursor: pointer;
}

#customerInfoFormHeaderText {
	max-width: calc(100% - 40px);
}

#customerList {
	display: block;
	margin-bottom: 20px;
	margin-top: 5px;	
	width: 100%;
	height: calc(100vh - 320px);
	min-height: 125px;
	overflow-x: hidden;
	overflow-y: auto;
	border: 1px solid black;
	padding: 0 10px;
	box-sizing: border-box;
	border-radius: 4px;
}


/* inv styles */

.mainContentInvPage {
	padding: 20px 0;
	display: block;
	max-width: 850px;
	box-sizing: border-box;
	width: 100%;
	margin: 20px auto;
	background: #ffffff;
	border-radius: 4px;
	border: 1px solid;
}

.leftRightPadding {
	display:block;
	width: 100%;
	padding: 0 10px;
}
.invLogo {
  max-width: 100%;
  max-height: 100px;
}

.mainContainer {
  display: grid;
  grid-template-rows: 1fr auto; /* 1fr for contentWrapper, auto for footer */
  width: calc(100% - 40px);
  max-width: 595px;
  max-height: 842px;
  min-height: 842px;
  margin: 40px auto 70px auto;
  border: 1px solid #d3d3d3;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 20px;
}

.mainContainerHP {
  display: block !important;
  text-align: center;
  min-height: fit-content !important;
  padding-bottom: 40px !important;
  max-height: fit-content !important;
}

#logo {
  max-width: 100%;
  max-height: 100px;
  cursor: pointer;
}


.bigBold {
	display: block;
	font-size: 24px;
	font-weight: 600;
}


.twoPanelCont {
    display: flex;
    justify-content: space-between;
    align-items: start;
	margin-bottom: 25px;
}

.twoPanelPOne {
    width: 49%;
    text-align: left;
}

.twoPanelPTwo {
    width: 49%;
    text-align: right;
}

#compInfo {
    width: 100%;
    height: 100px;
}



#InvoiceDateButtons {
    display: none;
}

.infoPanel {
  padding-left: 4px;
}

.row {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 2px 0px;
}

.fixed-width {
  width: 80px; /* Set fixed width according to your preference */
  margin: 0 2px;
  text-align: left;
  padding-left: 4px;
}

.fixed-widthQty {
  width: 40px; /* Set fixed width according to your preference */
  margin: 0 2px;
  text-align: center;
}

.flex-grow {
	position: relative;
	flex-grow: 0;
	margin: 0 2px;
	padding-left: 4px;
	width: calc(100% - 146px);
}


#compInfoSpan {
  font-size: 14px;
  font-weight: 500;
}	


.invTotals {
  text-align: right;
}
.invTotalsValues {
  width: 80px;
  display: inline-block;
  margin-left: 4px;
}
	

.deleteRowIcon {
	position: absolute;
	right: -20px;
	transform: scale(1,1.2);
	display: block;
	cursor: pointer;
	color: black;
}

.footer {
	display: block;
    margin-top: auto;
    text-align: center;
    padding: 5px; /* Add some padding around the footer */
}

.subFooter {
  width: 100%;
  text-align: center;
  font-size: 0.9em;
}


.invTotalsTitles {
  margin-right: 4px;
  font-weight: 600;
}

#selectCustDropdown {
	display: inline-flex;
	box-shadow: inset 0px 1px 3px 0px #91b8b3;
	background: linear-gradient(to bottom, #142353 5%, #152d4e 100%);
	background-color: rgba(0, 0, 0, 0);
	background-color: #142353;
	border-radius: 5px;
	border: 1px solid #0c182e;
	cursor: pointer;
	color: #ffffff;
	font-family: Arial;
	font-size: 12px;
	padding: 4px 10px;
	text-decoration: none;
	vertical-align: top;
}

.invToWord {
  display: inline-block;
}
#invToInfoSpan span {
  display: block;
  font-size: 0.8em;
  font-weight: 100;
}


.swapCustomerIcon {
	display: inline;
	margin: -8px 0 0px 0px;
	vertical-align: middle;
	display: inline-block;
	font-size: 0.8em;
	padding: 4px 5px;
}

.invFromAddyLine1 {
	font-size: 1.1em;
	font-weight: 600;
}

@media only screen and (max-width: 540px) {
	
    
.mainContainer {
	display: block;
	max-width: calc(100% - 60px);
	min-width: 220px;
	min-height: auto;
	margin-bottom: 70px;
	margin-top: 24px;
}
    
	.fixed-width {
	width: 60px;
}
	
	.fixed-width:nth-child(6) {
     display: none;
    }
	
	.currencySymbol:nth-child(5) {
     display: none;
    }
    
 .modal-content {
  width: 95%;
  }
    
    .twoPanelCont {
    display: block;
    width: 100%;
}

    
  .twoPanelPOne {
  display: block;
      width: 100%;
}

.twoPanelPTwo {
    display: block;
    text-align: left;
     width: 100%;
	 margin-top: 10px;
}

.cta-button {
  font-size: 1.2em;
  margin-bottom: 10px;
}

}



/* print inv styles start */

.a4PrintInvCanvas {
	position: relative;
	width: 993px;
	height: 1404px;
	border: 1px solid black;
	margin: 0 auto;
	background: white;
	display: none;
}

.clonedForViewA4PrintInvCanvas {
  position: relative;
  width: 794px;  /* Width in pixels equivalent to 210mm */
  height: 1123px; /* Height in pixels equivalent to 297mm */
  border: 1px solid black;
  margin: 0 auto;
}

.a4PrintInvCanvas h3, .clonedForViewA4PrintInvCanvas h3 {
  font-size: 1.6em;
  margin-bottom: 0;
}

.a4PrintInvCanvas .footerInfo, .clonedForViewA4PrintInvCanvas .footerInfo {
	position: absolute;
	display: block;
	width: 100%;
	height: 70px;
	bottom: 0px;
	left: 0px;
	padding: 5px;
	box-sizing: border-box;
	border-top: 2px solid black !important;
	text-align: center;
	font-size: 14px;
}

.a4PrintInvCanvas .thankYouLine, .clonedForViewA4PrintInvCanvas .thankYouLine {
  display: block;
  font-weight: 900;
  font-size: 16px;
  margin-top: 5px;
}

.a4PrintInvCanvas .footerBold, .clonedForViewA4PrintInvCanvas .footerBold {
	font-weight: 600;
}

.a4PrintInvCanvas .fiftyFifty, .clonedForViewA4PrintInvCanvas .fiftyFifty {
  display: flex;
  margin: 10px;
}

.a4PrintInvCanvas .invCompLogoCont, .clonedForViewA4PrintInvCanvas .invCompLogoCont {
  width: 50%;
  display: inline-flex;
  padding: 15px;
  align-items: flex-start;
  box-sizing: border-box;
}

.a4PrintInvCanvas .invCompLogo, .clonedForViewA4PrintInvCanvas .invCompLogo {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  box-sizing: border-box;
}

.a4PrintInvCanvas .invFromCompInfo, .clonedForViewA4PrintInvCanvas .invFromCompInfo {
  display: inline-block;
  width: 50%;
  text-align: right;
  padding: 10px;
  box-sizing: border-box;
  font-size: 0.9em;
}


.a4PrintInvCanvas .halfCont, .clonedForViewA4PrintInvCanvas .halfCont {
  display: inline-block;
  width: 50%;
  box-sizing: border-box;
  padding: 10px 70px;
  font-size: 0.95em;
}

.a4PrintInvCanvas .invItemsCont .invItemsRow:first-child, .clonedForViewA4PrintInvCanvas .invItemsCont .invItemsRow:first-child {
   font-weight: 600;
}

.a4PrintInvCanvas .invItemsCont, .clonedForViewA4PrintInvCanvas .invItemsCont {
  display: block;
  width: 100%;
  margin: 30px auto;
  overflow: hidden;
}
.a4PrintInvCanvas .invItemQty, .clonedForViewA4PrintInvCanvas .invItemQty {
  display: inline-block;
  width: 50px;
  text-align: center;
  padding: 0 5px;
}

.a4PrintInvCanvas .invItemDesc, .clonedForViewA4PrintInvCanvas .invItemDesc {
  display: inline-block;
  width: calc(100% - 250px);
  text-align: left;
  padding: 0 5px;
}

.a4PrintInvCanvas .invItemEa, .invItemLineTot, .clonedForViewA4PrintInvCanvas .invItemEa {
  display: inline-block;
  width: 95px;
  text-align: right;
  padding: 0 5px;
}


.a4PrintInvCanvas .invItemsRow, .clonedForViewA4PrintInvCanvas .invItemsRow {
  display: flex;
  border-bottom: 2px solid black !important;
  padding: 5px 0;
  align-items: center;
}


.a4PrintInvCanvas .invTotalsCont, .clonedForViewA4PrintInvCanvas .invTotalsCont {
  display: flex;
  flex-direction: column;
  text-align: right;
  margin-right: 0px;
  width: fit-content;
  margin-left: auto;
  margin-top: -20px;
}
.a4PrintInvCanvas .invTotalsLine, .clonedForViewA4PrintInvCanvas .invTotalsLine {
  display: block;
  border-bottom: 2px solid black !important;
  padding: 5px 0;
}

.a4PrintInvCanvas .invTotalsLineValue, .clonedForViewA4PrintInvCanvas .invTotalsLineValue {
  display: inline-block;
  width: 95px;
  padding-right: 5px;
}
.a4PrintInvCanvas .invTotalsLineTitle, .clonedForViewA4PrintInvCanvas .invTotalsLineTitle {
  font-weight: 600;
}


.a4PrintInvCanvas .invItemsAndTotalsWrapper, .clonedForViewA4PrintInvCanvas .invItemsAndTotalsWrapper {
	display: block;
	width: 85%;
	margin: 0 auto;
}

@media print {
	body {
		margin: 0;
		padding: 0;
	}
	
	
 .a4PrintInvCanvas {
  width: 100%;  
  height: unset;
  min-height: 99vh;
  max-height: 99vh;
  max-width: 99%;
  overflow: hidden;
  border: none;
  margin: 0 auto;
} 

.a4PrintInvCanvas .fiftyFifty {
  margin: 0px;
}

.a4PrintInvCanvas .invItemsAndTotalsWrapper {
	width: 100%;
}

.noPrint {
	display: none !important;
}

}

@media only screen and (max-width: 879px) {
.clonedForViewA4PrintInvCanvas {
  position: relative;
  width: 100%;  /* Width in pixels equivalent to 210mm */
  height: fit-content; /* Height in pixels equivalent to 297mm */
  border: 1px solid black;
  margin: 0 auto;
}

.clonedForViewA4PrintInvCanvas .footerInfo {
	position: relative;
	display: block;
	width: 100%;
	height: fit-content;
	bottom: unset;
	left: unset;
	padding: 5px;
	margin-top: 40px;
	font-size: 12px;
}

.clonedForViewA4PrintInvCanvas .invCompLogo {
	width: auto;
	max-width: 90%;
	margin: 0 auto;
	display: block;
}

	}


@media only screen and (max-width: 650px) {
.clonedForViewA4PrintInvCanvas .invCompLogo {
	width: auto;
	max-width: 90%;
	margin: 0 auto;
	display: block;
}	

.invItemLineTot {
	display: none;
}

.clonedForViewA4PrintInvCanvas .invItemDesc {
  width: calc(100% - 130px);
}

.clonedForViewA4PrintInvCanvas .invItemsRow {
	 font-size: 0.8em;
  line-height: 0.98em;
	display: flex;
	align-items: center;
}
	
	.clonedForViewA4PrintInvCanvas .invItemQty {
		max-width: 20px;
	    min-width: 35px;
	}
.clonedForViewA4PrintInvCanvas .fiftyFifty {
	flex-direction: column;
}
.clonedForViewA4PrintInvCanvas .invCompLogoCont, .clonedForViewA4PrintInvCanvas .invFromCompInfo, .clonedForViewA4PrintInvCanvas .halfCont {
	max-width: 100%;
	margin: 0 auto;
	text-align: center;
	width: auto;
}


.clonedForViewA4PrintInvCanvas .halfCont {
	padding: 10px 10px;
}

.clonedForViewA4PrintInvCanvas .invTotalsCont {
	font-size: 0.8em;
	line-height: 0.98em;
}


}


/* print inv styles end */

.invListFiltersWrapper {
	display: flex;
	margin: 10px 0;
	padding: 5px;
	border: 1px solid;
	border-radius: 4px;
	flex-wrap: wrap;
	font-size: 0.8em;
}


.invListFiltersWrapper span {
margin-bottom: 5px;
margin-right: 5px; 
}

.invListRowWrapper {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid;
}

.invListItem {
text-align: center;
  padding: 0 5px;
align-items: center;
	justify-content: center;
}



.filterByTitle {
  display: block;
  width: 100%;
  font-size: 0.80em;
  font-weight: 900;
  line-height: 0.9em;
}


.filterButtonsWrapper {
	display: block;
	width: 100%;
	margin-bottom: -5px !important;
}


.existingCustInvOptions {
  padding: 10px 0;
}

.invListItem:nth-child(1) { display: inline-flex; min-width: 60px; margin-right: 5px; }
.invListItem:nth-child(2) { display: inline-flex; flex-grow:1; min-width: calc(100% - 289px); margin-right: 5px; } 
.invListItem:nth-child(3) { display: inline-flex; min-width: 50px;  margin-right: 5px; } 
.invListItem:nth-child(4) { display: inline-flex; min-width: 50px;  margin-right: 5px; } 
.invListItem:nth-child(5) { display: inline-flex; min-width: 60px;  margin-right: 5px; }

@media only screen and (max-width: 650px) { 
.invListRowWrapper {
	font-size: 0.85em;
}
	
.invListItem:nth-child(1) { display: inline-flex; min-width: 50px; margin-right: 2px; }
.invListItem:nth-child(2) { display: inline-flex; flex-grow:1; min-width: calc(100% - 230px); margin-right: 2px; } 
.invListItem:nth-child(3) { display: inline-flex; min-width: 40px;  margin-right: 2px; } 
.invListItem:nth-child(4) { display: inline-flex; min-width: 40px;  margin-right: 2px; } 
.invListItem:nth-child(5) { display: inline-flex; min-width: 45px;  margin-right: 2px; }

}

 
 
 .toggleSwitch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.toggleSwitch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.toggleSlider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.toggleSlider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .toggleSlider {
  background-color: #2196F3;
}

input:focus + .toggleSlider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .toggleSlider:before {
  transform: translateX(26px);
}


.pluginWrapper {
  display: flex;
  align-items: flex-end;
  padding: 10px 0;
  border-bottom: 1px solid;
  flex-direction: column;
}

.pluginRowWrapper {
  display: flex;
  width: 100%;
  align-items: center;
}

.pluginOptionsToggleButton {
	cursor: pointer;
	border: 1px solid;
	padding: 3px 8px;
	border-radius: 6px;
	background: black;
	color: white;
	font-size: 0.9em;
}

.pluginSettingsPanel {
	display: flex;
	width: 100%;
	border: 1px solid;
	padding: 0 10px;
	margin: 5px;
	box-sizing: border-box;
	border-radius: 4px;
	background: #ececec;
}

.pluginTitleAndDescWrapper {
	display: inline-block;
	width: calc(100% - 75px);
	margin-right: 10px;
}

.pluginSwitchAndStatusWrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 0.9em;
}

.keepDataPromptWrapper {
  display: none;
  width: 100%;
  border: 1px solid;
  padding: 10px;
  margin: 10px 0;
  box-sizing: border-box;
  border-radius: 4px;
  background: #ececec;
}

.keepDataPromptWrapper input[type=checkbox] {
  display: inline-block;
  width: 20px;
  height: 20px;
}


.closeRetainDataPropmts {
	float: right;
	font-size: 1.4em;
	margin-right: -5px;
	margin-top: -5px;
	margin-bottom: 0;
	cursor: pointer;
}