/* variables */
:root {
    --primary: #27358B;
	--blue: #27358B;
    --gray-dark: #555;
	
	--dark-gray: #555;
	--gray: #ccc;
    --light-gray: #E7E9EB;
    --red: #e51010;
	--yellow: #f09711;
	
	/*--green: #56b756;*/
	--green: #1F8027;
	--green2: #22d330;
	--white: #fff;
	--black: #000;
    
	
	--light: 200;
	--normal: 400;
    --bold: 800;
}

/* colors */ 
.dark-gray { color: var(--dark-gray); }
.gray { color: var(--gray); }
.light-gray { color: var(--light-gray); }

/* css */ 
body {
	font-family: Verdana, Montserrat;
	margin: 0;
	padding: 0;
	background: #fff;
		
	/* fonts */ 
	font-family: 'Montserrat';
    font-weight: 300;
    font-style: normal;
	
	DELETED-width: 70%;
    DELETED-margin-left: auto;
    DELETED-margin-right: auto
}

ol li, ul li {
	line-height: 22px;
	margin-left: 22px;
    padding-left: 10px;
}

b {
	font-family: 'Montserrat';
	font-weight: 800;
	font-style: normal;
}

ul { 
	margin-left: -40px;
}


/* floating */ 
.left { float: left; }
.right { float: right; }
.clear { clear: both; }

/* cursor pointer */
.link { 
	cursor: pointer; 
	text-decoration: underline;
}
.link :hover {
	text-decoration: none;
}

/* body */ 
#body { 	
	width: 1080px;
	max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
	margin-top: 4rem;
	margin-bottom: 12rem;
}


@media only screen and (max-width: 1320px) {
	#body {
		width: 1080px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media only screen and (max-width: 1080px) {
	#body {
		width: 800px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media only screen and (max-width: 840px) {
	#body {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
}

@media only screen and (max-width: 600px) {
  #body {
	width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.full-width {
	background-color: var(--primary);
    width: 100%;
    DELETED-color: #fff;
    text-align: center;
}

.OLD-centered-page {
	width: 70%;
    margin-left: auto;
    margin-right: auto
}
.centered-page {
	max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    DELETED-padding-left: 20px
}

#instant-result {
	padding-top: 10px;
	padding-bottom: 10px;
	position: fixed;
    DELETED-top: 0px;
	top: 8px;
	border-bottom: 1px solid #afafaf;
	box-shadow: 0px 1px 10px;
	color: var(--white);
	z-index: 1000;
}

#header-logo {
	margin-top: 8rem;
	text-align: center;
}
#header-logo img { 
	DELETED-width: 40%; 
	DELETED-width: 290px;
	DELETED-max-width: 290px;
	DELETED-height: 120px;
}
@media only screen and (max-width: 600px) {
  body {
    #header-logo img { 
		width: 80%; 
		DELETED-width: 290px;
		DELETED-width: 100%;
		text-align: center;
	}
  }
}

#header-bar {
	color: #fff;
    position: sticky;
    top: 90px;
    background-color: var(--green);
	z-index: 1000;
	font-weight: var(--normal);
}
#header-bar p {
	padding: 10px;
	line-height: 16px;
}

/* links */
a { 
	color: var(--blue)
	text-decoration: underline; 
	font-weight: 800;
}
a:hover { text-decoration: none; }

/* anchor headlines */ 
xxx.anchor {
    display: block;
    position: relative;
    top: -250px;
    visibility: hidden;
}
.anchor { scroll-margin-top: 200px; }
#toc-container { margin-bottom: 100px; }


/* headlines */ 
h1, h2, h3.design-bar {
	border-left: 8px solid var(--blue);
    padding-left: 16px;
    font-weight: var(--bold);
}

h1 { 
	font-size: 2rem; 
	margin-top: 4rem;
}

h2 { 
	font-size: 1.6rem; 
	DELETED-margin-top: 6rem;
	margin-top: 3rem;
	margin-bottom: 0rem;
}

h3 {
	DELETED-border-left: 4px solid var(--blue);
	DELETED-padding-left: 8px;
}

h3 { 
	font-size: 1.2rem; 
    margin-top: 2rem;
    margin-bottom: 0.4rem;
}

h4 { 
	font-size: 1rem; 
	DELETED-margin-top: 2rem;
	margin-top: 0rem;
	margin-bottom: 0.5rem;
}

p {
	DELETED-line-height: 24px;
	line-height: 30px;
}

.subtitle { font-size: 16px; }

#partner-logo img {
	margin-top: 4rem;
	width: 30%;
}

/* info box */
.info-box {
	padding: 20px 20px;
    background: #efefef;
    DELETED-border-radius: 12px;
    DELETED-border: 2px dotted #acacac;
	margin-bottom: 2rem;
	DELETED-margin-top: 4rem;
}

.info-box h2 {
	margin-top: 0rem;
	margin-bottom: 1rem;
}

.info-box .image img {
	width: 70%;
	text-align: center;
}
.info-box .image .subtitle {
	DELETED-text-align: center;
	font-weight: 400;
}
.info-box hr {
	margin-top: 2rem;
	margin-bottom: 2rem;
	color: #ccc;
}

.info-box ul, .info-box ol {
	DELETED-margin-left: -40px;
}

.info-box ul li, .info-box ol li {
	DELETED-margin-bottom: 2rem;
	DELETED-margin-bottom: 0.2rem;
}

/*
ol.info-box {
	margin-bottom: 2rem;
	margin-left: -40px;
}
*/ 

ol.toc {
	margin-left: -40px;
}
ol.toc li {
	margin-bottom: 0.4rem;
}

ol.toc-sub {
	margin-left: -40px;
}

ol.service-overview {
	margin-left: -40px;
}
ol.service-overview li {
	margin-bottom: 1rem;
}

ol.info-box li {
	line-height: 24px;
	margin-bottom: 20px;
} 

ol.four-steps-tutorial {
	margin-bottom: 0.2rem;
}
ol.four-steps-tutorial li {
	line-height: 20px;
	margin-bottom: 20px;
}

/* order-form */
#order-form-container {
	margin-bottom: 10rem;
}

/* .buttonCopyInvoiceData */
.buttonCopyInvoiceData {
	margin-top: 15px;
	border: 1px solid var(--black);
    padding: 5px 5px;
    max-width: 600px;
    text-align: center;
    background: var(--light-gray);
    color: var(--black);
    cursor: pointer;
	border-radius: 4px;
	font-weight: var(--normal);
}

.buttonCopyInvoiceData:hover {
	background: var(--gray-dark);
	color: var(--white);
}

/* important-notes */ 
.important-notes {
	margin-top: 1rem;
    background: #efefef;
    padding: 16px 16px;
    font-size: 1rem;
    DELETED-border-radius: 12px;
	line-height: 24px;
	DELETED-border: 2px dotted #acacac;
	margin-bottom: 2rem;
}

.important-notes .headline {
	font-weight: var(--bold);
    DELETED-margin-bottom: -12px;
	display: block;
}

.important-notes .text {
}

.important-notes .text ul li {
	margin-bottom: 6px;
}

.important-notes .contact-hint {
	margin-top: 1rem;
    font-size: 0.8rem;
}

/* color the free assessement fields in blue */
.free-assessement-color, .blue {
	/* color: blue; */ 
	color: #4a85ed;
}
.free-assessment-border {
	/* border: 2px solid blue; */ 
	/*
	background: #4a85ed;
    color: white;
	*/
	background: rgba(74, 133, 237, 0.2);
}

/* form */ 
.form-control {
	margin-bottom: 0.8rem;
	NO-display: flex;
    NO-align-items: flex-start;
}

input { 
	font-size: 1rem; 
	font-size: 16px;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="number"],
input[type="submit"],
select,
textarea { 
	width: 90%; 
	font-size: 1rem;
	padding: 6px 6px;
	font-family: Montserrat;
}
select {
	width: 94%;
}
textarea {
	height: 12rem;
}
label { 
	font-size: 1rem;
	margin-left: 6px; 
	DELETED-line-height: 22px;
	line-height: 24px;
}
select, input[type="date"] {
	font-weight: 300;
}
input[type="submit"] {
	width: 93%;
	font-size: 1rem;
}

#signature-save-button, #signature-clear-button {
	background-color: var(--blue);
	color: var(--white);
}
#signature-clear-button {
	margin-left: 10px;
}

#order-form-submit {
	background-color: var(--blue);
	color: var(--white);
}

#submitText {
	background: var(--red);
	padding: 10px 10px;
	color: var(--white);
	text-align: center;
	width: 91%;
	border-radius: 4px;
}

/* mobile adjustments for the order form items */ 
@media only screen and (max-width: 600px) {
	body {
		input[type="submit"] { 
			font-size: 0.5rem; 
			font-size: 16px;
		}
	}
	select {
		width: 92%;
	}
	input[type="submit"] {
		width: 93%;
	}
	h1 {
		font-size: 24px;
	}
}
@media screen and (min-width: 600px)  {
	.mobile-break { display: none; }
}

/* placeholders */ 
::-webkit-input-placeholder {
   color: var(--dark-gray);
   font-weight: 200;
}
:-moz-placeholder { /* Firefox 18- */
   color: var(--dark-gray);
   font-weight: 200;
}
::-moz-placeholder {  /* Firefox 19+ */
   color: var(--dark-gray);
   font-weight: 200;
}
:-ms-input-placeholder {  
   color: var(--dark-gray);
   font-weight: 200;
}

/* rest */
#submit-button-section {
	position: fixed;
    bottom: 0px;
	height: 40px;
    background: #fff;
    width: 100%;
    z-index: 1000;
    border: 1px solid red;
}

#footer { text-align: center; }
#footer ul { 
	margin-left: -40px;
	list-style-type: none; 
}
#footer ul li { 
	DELETED-display: inline; 
}
	
/* saveSignature */ 
#saveSignature {
	background-color: #fff;
}

/* instant-calculation */ 
#instant-calculation {
	border-left: none;
	padding: 5px 5px;
	background-color: #efefef; /* var(--white); */
	DELETED-border: 1px solid var(--gray-dark);
	border: 2px dotted #acacac;
	position: fixed;
    top: 20%;
    right: 0;
	padding: 10px 10px;
	DELETED-width: 30%;
	width: 150px;
	text-align: center;
	border-radius: 4px 0px 0px 10px;
	DELETED-box-shadow: 5px 5px 5px 1px #555555;
	left: -10000px;
}

#instant-calculation h1 {
	margin: 0;
	padding: 0;
	font-size: 1.0rem;
	border-left: none;
	/* move it out of sight */ 
	left: -10000px;
}

#instant-calculation p {
	margin: 0;
	padding: 0;
	font-size: 1.0rem;
}
#instant-calculation-years {
	font-size: 2rem;
    font-weight: 800;
}
#instant-calculation-percentage {
	font-size: 1.2rem;
    font-weight: 800;
}

/* whatsapp */ 
.whatsapp-chat {
	color: var(--white);
    z-index: 10000;
    background-color: var(--green);
    padding: 8px 8px;
    border-radius: 8px;
    font-size: 15px;
    DELETED-width: 280px;
    font-weight: 800;
    position: fixed;
    bottom: 10px;
    left: 10px;
}

.whatsapp-chat a, .whatsapp-chat a:hover, .whatsapp-chat a:visited {
    text-decoration: none !important;
}
.whatsapp-chat .icon {
    width: 20px;
    DELETED-height: 24px;
}
.whatsapp-chat-label-container {
	display: inline-block;
	height: 20px;
}
.whatsapp-chat-label {}

/* save data */ 
#save-data {
	DELETED-display: none;
	cursor: pointer;
    position: fixed;
    DELETED-border: 1px solid red;
    bottom: 10px;
    right: 10px;
    DELETED-width: 140px;
    background-color: var(--light-gray);
    color: var(--black);
    text-align: center;
    padding: 10px 10px;
    border-radius: 10px;
	font-size: 0.8rem;
    z-index: 100;
    border: 2px solid var(--dark-gray);
}
img#save-icon {
	width: 50px;
	filter: invert(100%);
}

img#share-icon {
	DELETED-width: 80%;
	filter: invert(100%);
}

/* urlToShare */
#urlToShareText {
	position: absolute;
	left: -10000px;
}
#urlToShareIcon {
	font-size: 32px;
}

.instant-calculation-years, .instant-calculation-percentage {
	DELETED-font-size: 24px;
	font-size: 20px;
}

/* classes */ 
.price-tag {
	font-weight: 600;
	float: right;
}

.price-total {
}

.price-total-bar {
	font-size: 1.6rem;
}

/* classes */ 
.mandatory { 
	color: var(--red); 
	font-size: 1rem;
    margin-left: 0.2rem;
}
.blue2 { color: var(--blue); }
.red { color: var(--red); }
.yellow {color: var(--yellow); }
.green { color: var(--green); }
.green2 { color: var(--green2); }
.gray { color: var(--gray-dark); }
.light-gray { color: var(--light-gray); }
.light { font-weight: 300; }
.bold, .b { font-weight: 800; }
.hidden { display: none; }
.hidden2 { visibility: none; }
.center, .c { text-align: center; }
.uppercase, .uc {text-transform: uppercase; }
.fr, .float-right { float: right; }

/* scroll indicator */
/* Style the header: fixed position (always stay at the top) */
.progress-header {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  background-color: var(--green);
}

/* The progress container (grey background) */
.progress-container {
  width: 100%;
  height: 8px;
  DELETED-background: #ccc;
  background: var(--light-gray);
}

/* The progress bar (scroll indicator) */
.progress-bar {
  height: 8px;
  background: var(--green);
  width: 0%;
}