:root {
	--ix-font-family: 'Montserrat';
	
	--ix-font-size-default: 16px;
	--ix-font-size-small: 12px;
	--ix-font-size-medium: 13px;
	--ix-font-size-large: 18px;
	--ix-font-size-title: 25px;
	
	--ix-fontweight-normal: 400;
	--ix-fontweight-semibold: 600;
	--ix-fontweight-bold: 700;
	
	--ix-color-black: #000000;
	--ix-color-white: #ffffff;
	
	--ix-color-title: #5E004B;
	
	--ix-color-grey: #8e8e8e;
	--ix-color-mediumgrey: #cacaca;
	--ix-color-lightgrey: #f5f5f5;
	
	--ix-color-blue: #008fad;
	--ix-color-mediumblue: #c8eef7;
	--ix-color-lightblue: #eefcff;
	
	--ix-color-red: #ff3737;
	--ix-color-lightred: #ffd2d2;

	--ix-color-purple: #3b2ecd;
	--ix-color-lightpurple: #e4e1ff;
	
	--ix-tooltip-background: var(--ix-color-lightgrey);
	
	--ix-border-width: 1px;
	--ix-border-color: var(--ix-color-mediumgrey);
	
	/* Bootstrap variables */
	
	--bs-border-color: var(--ix-border-color) !important;
	--bs-secondary-rgb: var(--ix-color-blue);
}

body {
	font-family: var(--ix-font-family);
	font-size: var(--ix-font-size-default);
	color: var(--ix-color-black);
	letter-spacing: 0.24px;
}

*,
:after,
:before {
    box-sizing: border-box;
}

.head {
	height: 80px;
	
	border-bottom: var(--ix-border-color) var(--ix-border-width) solid;
}

.head h1 {
	top: 40px !important;
}

section {
	margin-bottom: 60px;
}

h1 {
	margin: 0 0.5em;
	padding-right: 1.5em;
	
	text-align: right;
	
	color: var(--ix-color-title);
	font-weight: var(--ix-fontweight-bold);
	font-size: var(--ix-font-size-title);
	letter-spacing: -0.375px; 
}

h1 a, h1 a:hover {
	text-decoration: none;
	color: inherit;
}

h2 {
	font-weight: var(--ix-fontweight-semibold);
	font-size: var(--ix-font-size-large);
	
	margin: 2em 0; 
}

.project_title {
	color: var(--ix-color-title);
	margin: 1em 0 0 1em;
}

.bold {
	font-weight: var(--ix-fontweight-bold);
}

.page-content {
	padding: 1.5em 0 90px 1.5em;
	margin-bottom: 1.5em;
}

.footer {
	border-top: var(--ix-border-color) var(--ix-border-width) solid;
	background: var(--ix-color-white);
	
	font-size: var(--ix-font-size-medium);
	color: var(--ix-color-grey);
 	padding: 0 10px 5px;
}

.disclaimer {
	font-style: italic;
}

.sticky {
	position: -webkit-sticky;
	position: sticky;
	z-index: 100;
	top: 0;
	left: 0;
}

.hidden {
	display: none;
}

.hidden-important {
	display: none !important;
}

table th, table tr {
	padding: 0.5em;
	font-weight: normal;
}

table tr.separator {
	background-color: #ffffff;
	height:35px;
}

table th, table td {
	padding: 0 0.7em;
}

table tr.shown + tr {
	background: var(--ix-color-white) !important;
}

table.dataTable div.dt-control {
	text-align: center;
	cursor: pointer;
}

table.dataTable div.dt-control::before {
	display: inline-block;
	color: rgba(0, 0, 0, 0.5);
	content: "►";
	width: 100%;
}

table.dataTable tr.dt-hasChild div.dt-control::before {
	content: "▼";
}

table.project_details {
	border: none;
	margin-left: 5em;
}

table.project_details tr {
	border: none;
	background: var(--ix-color-white) !important;
}

table.project_details th, table.project_details td {
	border: none;
}

table tr .tabButton{
	min-width: 35px;
}

.col-stage {
	padding: 0 1em;
}

.overlay-spinner {
	opacity: 0.7; 
	background: var(--ix-color-mediumblue); 
	color: var(--ix-color-blue); 
	z-index: 9; 
	width: 100%; 
	height: 100%;
	position: absolute; 
	top: 0; 
	left: 0;
}

.bullet-list {
	display: list-item;
	list-style-position: inside;
}

.user-menu {
	text-align: right;
	margin: 0 3em;
}

.user-menu li {
	display: inline;
	color: var(--ix-color-title);
}

.user-menu li a {
	color: var(--ix-color-blue);
}

.user-menu li:before {
	content: " | ";
}

.user-menu li:first-child:before {
	content: "";
}

/************************************************************ Public pages ******************************************************************************/

.public-page h2{
	font-size :	2rem;
	font-weight: 500;
	margin-top:0.8rem;
	margin-bottom: 2rem;
}

.public-page h3{
	margin-top:0.5rem;
	margin-bottom: 1.5rem;
}

.public-page h4{
	margin-top:0.3rem;
	margin-bottom: 1rem;
}

/************************************************************ Home page ******************************************************************************/

.home table {
}

.dataTables_wrapper {
	margin-top: 2em;
	margin-bottom: 5em;
}

.home thead th {
	font-size: var(--ix-fontsize-medium);
	font-weight: var(--ix-fontweight-semibold);
	text-align: center;
	padding: 0.4em;
}

.home td, .home th {
	border-right: var(--ix-color-mediumgrey) solid 1px;
} 

.home td {
	text-align: center !important;
	color: var(--ix-color-blue);
	padding: 0.3em;
} 

.home th {
	text-align: left !important;
}

.home tr {
	border-bottom: var(--ix-color-mediumgrey) solid 1px;
}

.home tbody tr:nth-child(odd) {
	background: var(--ix-color-lightgrey);
}

.home .select2{
	font-size: medium;
}

/************************************************************ Form errors **********************************************************************/

.formErrors {
	
	color: var(--ix-color-red);
	font-weight: bold;
	margin-bottom: 1em;
}

.fieldError {
	color: var(--ix-color-red);
	display: block;
}

input.error-field, select.error-field {
	background: var(--ix-color-lightred);
	border: solid 1px var(--ix-color-red);
}

/* Select2 */
select.error-field + .select2 .select2-selection {
	background: var(--ix-color-lightred);
	border: solid 1px var(--ix-color-red);
}

/* Radio buttons - style associated labels */
input[type="radio"].error-field ~ label {
	color: var(--ix-color-red);
}

#alert, .alert{
	width: 100%; 
	margin: 0; 
	padding:10px 1em !important;
	border-bottom: solid 1px;
	border-radius: 0;
	text-align: center;
	padding: 0.5em;
	
}

.fieldError {
	width: 100%; 
	margin: 0; 	
	border: solid 1px;
	border-radius: 0;
	text-align: center;	
	border-color: var(--ix-color-red);
	background-color: var(--ix-color-lightred);
	color: var(--ix-color-red);
}

.alert-content {
	width: inherit; 
	padding:10px 20px !important;
}

#alert ul, .alert ul {
	margin: 0;
	padding: 0;
}

.alert-low {
	border-color: var(--ix-color-purple);
	background-color: var(--ix-color-lightpurple);
	color: var(--ix-color-purple);
}

.alert-high {
	border-color: var(--ix-color-red);
	background-color: var(--ix-color-lightred);
	color: var(--ix-color-red);
}

.alert-info{
	color: var(--ix-color-blue);
	border-color: var(--ix-color-blue);
	background-color: var(--ix-color-lightblue);
}

.alert-info input {
	background-color: var(--ix-color-lightblue);
}

.alert-warning, .alert-danger, .alert-success, .alert-info, .alert-primary {
	border: solid 1px;
}


/************************************************************ Workflow and admin menus **********************************************************************/

.menu-col {
	border-right: var(--ix-border-width) solid var(--ix-color-mediumgrey);
	min-height: calc(100vh - 80px);
	background: var(--ix-color-lightgrey);
}

.menu-line {
	height: 100%;
	border-left: var(--ix-color-mediumgrey) solid 1px;
	margin-left: 35px;
}

.workflow-menu-list, .admin-menu-list {
	box-sizing: border-box;
	
	width: 17em;
	
	position: sticky;
	top: 0;
	
	margin: 0;
	padding: 2em 2em 5em 0;
}

.admin-menu-list {
	margin-left: 35px;
}

.navigation__ul {
	margin: 0;
    padding: 0;
    list-style-type: none;
}

.navigation__li {
    display: block;
    position: relative;
}
.navigation__li:first-child > .navigation__anchor:before,
.navigation__li > .navigation__anchor.lastReady:after {
	display: none;
}
.navigation__anchor {
    color: var(--ix-color-grey);
    display: block;
    margin: 0;
    padding: 10px;
    position: relative;
    text-decoration: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none !important;
    overflow: visible;
}

.navigation__li:first .navigation__anchor {
	padding-top: 2em;
}

.navigation__anchor:hover {
	color: var(--ix-color-grey);
}

.navigation__anchor.ready {
	color: var(--ix-color-black);
}

.navigation__anchor.active, .navigation__anchor.ready:hover {
	color: var(--ix-color-blue);
	font-weight: var(--ix-fontweight-semibold);
}

.navigation__anchor-circle {
    content: "";
    position: absolute;
    left: -4px;
    top: 50%;
    width: 7px;
    height: 7px;
    border: 1px solid var(--ix-color-grey);
    background: var(--ix-color-grey);
    border-radius: 100%;
    overflow: hidden;
    transform: translateY(-3.5px);
}
.navigation__anchor.ready .navigation__anchor-circle {
    border: 1px solid var(--ix-color-black);
    background: var(--ix-color-black);
}
.navigation__anchor.active .navigation__anchor-circle, .navigation__anchor.ready:hover .navigation__anchor-circle {
    border: 1px solid var(--ix-color-blue);
    background: var(--ix-color-blue);
}

.navigation__anchor-text {
    display: block;
    padding-left: 30px;
}
.workflow-menu-list .navigation__anchor:after,
.workflow-menu-list .navigation__anchor:before {
    content: "";
    width: 1px;
    height: 50%;
    position: absolute;
    left: -1px;
    background-color: var(--ix-color-mediumgrey);
}
.navigation__anchor.ready:after,
.navigation__anchor.ready:before {
	background-color: var(--ix-color-black);
}
.navigation__anchor:before {
    top: -3px;
}
.navigation__anchor:after {
    bottom: -3px;
}

.admin-resins td {
	vertical-align: top;
}


/************************************************************ Forms ******************************************************************************/

.button {
	display: inline-block;

	height: 44px;

	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	color: var(--ix-color-blue);

	padding: 10px 2.8em;
	margin: 5px;
	border: var(--ix-color-blue) solid 1px;
	border-radius: 10px;
}

.button-previous, .button-next {
	width: 196px;
	padding: 10px;
}

.button-square {
	width: 40px;
	padding: 10px;
}


.button-primary{
	width: 280px;
	padding: 10px;
}

.home .button {
	width: 220px;
	padding: 10px;
	font-size: var(--ix-font-size-default);
	margin-left: 40px;
}

.button-previous, .button-previous:hover {
	color: var(--ix-color-blue);
}

.button-primary, .button-primary:hover, .button-next, .button-next:hover, .home .button, .home .button:hover, .button-complete-printout, .button-complete-printout:hover {
	color: var(--ix-color-white);
	background-color: var(--ix-color-blue);
}

.button:hover {
	font-size: var(--ix-font-size-large);
}

.restore_btn:hover {
	color: var(--ix-color-blue);
}

form label, div.fixed-width, h4.fixed-width, h5.fixed-width {
	display: inline-block;
	vertical-align: text-top;
}

label.fixed-width, div.fixed-width, h5.fixed-width {
	width: 13em;
}

h4.fixed-width {
	width: 10em;
}

.print-out label.fixed-width {
	font-weight: bold;
}

.inline-select {
	width: auto !important;
	display: inline-block !important;
}

input, textarea {
	border: var(--ix-color-mediumgrey) solid 0.5px;
	border-radius: 5px;
	
	padding: 2px 5px;
	
}

textarea {
	height: 12.5em;
	vertical-align: text-top;
}

input {
	height: 34px;
	vertical-align: middle;
}

input[type=number] {
	width: 100px;
	text-align: center;
}

form ul {
	list-style: none;
}

.sticky-buttons-bar{
	position: -webkit-fixed;
	position: fixed;
	width:calc(100% - 17em);
	z-index: 100;
	bottom: 60px;
	padding:1rem 0 1rem 0;
	background-color: var(--ix-color-white);
	border-top: var(--ix-border-color) var(--ix-border-width) solid;
	height:90px;
}

.sticky-buttons-bar .form-buttons {
	margin:0;
}

.form-buttons {
	text-align: center;
	margin: 0;
}

.form-buttons-top {
	text-align: center;
	margin: 0;
}

.additionalInfosToggle {
	margin: 3em 0;
	text-align: center;
}

.additionalInfosToggle a {
	color: var(--ix-color-grey) !important;
	text-decoration: none !important;
}

.validation_msg {
	color: var(--ix-color-blue);
	font-size: var(--ix-font-size-medium);
	
	margin-left: 1em;
}

.validation_warning {
	color: var(--ix-color-red);
	font-size: var(--ix-font-size-medium);
}

.form-section {
	margin: 2em 0;
}

/************************************************************ Login ******************************************************************************/

.login .content{
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	padding-bottom: 10em;
}

.login form{
	text-align: center;
}

.login h2{
	margin: 1em 0;
}

/*.login input[type=text], .login input[type=password] {
	width: 100%;
}*/

.login button{
	width: 100%;
	margin: 0;
}

.login .disclaimer {
	margin-top: 2.5em;
}

.login .support {
	margin-top: 2.5em;
}

/************************************************************ Company popup ******************************************************************************/
#logo{
	width:50%;
	height: auto;
	border: 1px solid var(--ix-color-blue);
}

#logo.print-out{
	height:100px;
	width:auto;
	border:0;
}


/************************************************************ Home page ******************************************************************************/

.home .buttons {
	height: 100%;
	text-align: center;
}

/************************************************************ Project definition ******************************************************************************/

.project input[type=text], .project input[type=email], .project input[type=tel], .project input[type=password], .project textarea {
	width: 31em;
}

/************************************************************ Water analysis ******************************************************************************/

#totalsDiv {
	width: 100% !important;
	
	padding: 1em;
	
	background: var(--ix-color-mediumblue);
	color: var(--ix-color-blue);
	border-bottom: var(--ix-color-blue) solid 1px;
}

#totalsDiv .col {
	text-align: center;
}

#totalsDiv label {
	width: 11em;
	text-align: right;
	margin-right: 0.8em;
}

#totalsDiv input {
	color: var(--ix-color-blue);
	border: var(--ix-color-blue) solid 0.5px;
	width: 100px;
	text-align: center;
}

#totalsDiv span {
	margin-left: 0.5em;
	text-align: left;
}

.total_unit {
	display: inline-block;
	width: 4em;
}

table.water-elt-table {
	table-layout: fixed;
	margin-bottom: 0.8em;
}

table.water-elt-table th, table.water-elt-table td {
	padding: 0 0.3em;
}  

table.full-table {
	margin: 0 auto;
}

table.water-elt-table th:first-child {
	font-weight: var(--ix-fontweight-semibold);
}

table.water-elt-table th:first-child, table.water-elt-table td:first-child {
	width: 8em;
}

table.water-elt-table th:nth-child(4), table.water-elt-table th:nth-child(5), table.water-elt-table th:nth-child(6),
table.water-elt-table td:nth-child(4), table.water-elt-table td:nth-child(5), table.water-elt-table td:nth-child(6) {
	color: var(--ix-color-blue);
	text-align: center;
}

table.water-elt-table th:nth-child(7), table.water-elt-table td:nth-child(7) {
	width: 2em;
} 

table.water-elt-table th:nth-child(4) div, table.water-elt-table th:nth-child(5) div, table.water-elt-table th:nth-child(6) div,
table.water-elt-table td:nth-child(4) div, table.water-elt-table td:nth-child(5) div, table.water-elt-table td:nth-child(6) div {
	overflow-x: hidden;
	width: 4em;
}

table.water-elt-table th:nth-child(4), table.water-elt-table th:nth-child(6), 
table.water-elt-table td:nth-child(4), table.water-elt-table td:nth-child(6),
table.water-elt-table td:first-child ~ td[colspan="2"] ~ td:nth-child(3), table.water-elt-table td:first-child ~ td[colspan="2"] ~ td:nth-child(5),
table.water-elt-table td[colspan="3"] ~ td:nth-child(2), table.water-elt-table td[colspan="3"] ~ td:nth-child(4) {
	background: var(--ix-color-lightgrey);
	border-left: var(--ix-color-mediumgrey) solid 1px;
	border-right: var(--ix-color-mediumgrey) solid 1px;
}

table.water-elt-table td:first-child ~ td[colspan="2"] ~ td:nth-child(4), 
table.water-elt-table td:first-child ~ td[colspan="3"] ~ td:nth-child(3) {
	background: var(--ix-color-white);
}

table.empty-cell {
	border: none;
	background: none;
}

.add-elt-div {
	width: 100%;
	height: 34px;
	
	margin: 3em 0;
	
	text-align: center;

	border: var(--ix-color-grey) solid 0.5px;
	border-radius: 5px;
}

.add-elt-lnk {
	display: inline-block;
	
	width: 100%;
	height: 100%;
	
	vertical-align: middle;
	
	color: var(--ix-color-grey);
	text-decoration: none;
}

.add-elt-lnk:hover {
	color: var(--ix-color-white);
	
	background: var(--ix-color-grey);
}

.deleteIonBtn {
	width: 22px;
	height: 24px;
	margin: 0;
	padding: 0;
	border: none;
}

/************************************************************ Process selection ******************************************************************************/

.process input {
	vertical-align: middle;
}

.process label {
	vertical-align: text-top;
}

.process .col-degasifier {
	width: 24em;
}

#diagram {
	width: auto;
	height: 291px;
	margin-bottom: 4em;
	overflow: hidden;
}

#diagram img {
	height: 100%;
	float:left;
}

/************************************************************ Resins selection ******************************************************************************/

.resins .col div div {
	margin-top: 2em;
}

.resins .col div div div {
	margin-top: 0.5em;
}

.resins .inputgroup .form-select {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.resins .inputgroup .btn {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	margin-left: -1px;
}

.resins select {
	width: 21.9em;
}

.resins .col label {
	width: 8em;
}

.resins label {
	margin-right: 0.8em;
}

#resinModalInfo .modal-body{
	padding : 30px;
	align-self: center;
	text-align: center;
}

#resinModalInfo .modal-body th, #resinModalInfo .modal-body td{
	border:1px solid var(--ix-color-blue);
	text-align: left;
}

#resinModalInfo .modal-body th:first-child, #resinModalInfo .modal-body td:first-child{
	/*color: var(--ix-color-blue);*/
	font-weight: 700;
}

#resinModalInfo .modal-body th{
	font-weight: 700;
}

#resinModalInfo h6 {
	font-weight: var(--ix-fontweight-semibold);
    font-size: var(--ix-font-size-default);
    margin: 0 0 1em 0;
}

#resinModalInfo .modal-body-bottom{
	padding-top: 1em;
}

/************************************************************ Endpoint entries ******************************************************************************/

.endpoint label {
	width: 8em;
}

.endpoint input {
	margin-left: 1.2em;
}

/************************************************************ Regeneration conditions ******************************************************************************/

.rege-conditions label {
	width: 15em;
}

.dilution label {
	width: 7.5em;
}

#cationRegeneration_concentrationAsApplied, #anionRegeneration_concentrationAsApplied, #cationicStage_concentrationAsApplied, #anionicStage_concentrationAsApplied {
	position: relative;
}

/************************************************************ Hydraulic conditions ******************************************************************************/

.hydrau-conditions label {
	width: 12em;
}

/************************************************************ Operating capacities ******************************************************************************/

.op-capacities table, .vessels-design table, .regeneration-params table, .regeneration-sequences table, .capex-opex table {
	margin-bottom: 5em;
}

.op-capacities thead th, .vessels-design thead th, .regeneration-params thead th, .regeneration-sequences thead th, .capex-opex table th {
	font-size: var(--ix-fontsize-medium);
	font-weight: var(--ix-fontweight-semibold);
	text-align: center;
	padding: 0.4em;
}

.op-capacities td:nth-child(1), .op-capacities td:nth-child(3), 
.vessels-design td:nth-child(1), .vessels-design td.sac, 
.regeneration-params td:nth-child(1), .regeneration-params td:nth-child(3),
.regeneration-sequences td:nth-child(1),
.capex-opex td:nth-child(1) {
	border-right: var(--ix-color-mediumgrey) solid 1px;
} 

.op-capacities td:nth-child(2), .op-capacities td:nth-child(3), .op-capacities td:nth-child(4), .op-capacities td:nth-child(5),
.vessels-design td:nth-child(2), .vessels-design td:nth-child(3), .vessels-design td:nth-child(4), .vessels-design td:nth-child(5),
.regeneration-params td:nth-child(2), .regeneration-params td:nth-child(3), .regeneration-params td:nth-child(4), .regeneration-params td:nth-child(5),
.capex-opex td:nth-child(2), .capex-opex td:nth-child(3), .capex-opex td:nth-child(4) {
	text-align: center;
	color: var(--ix-color-blue);
	min-width: 12em;
	padding: 0.3em;
} 

.op-capacities td.overrun:nth-child(2),
.op-capacities td:first-child ~ td[colspan="2"],
.vessels-design td:first-child ~ td[colspan="2"],
.regeneration-params td:first-child ~ td[colspan="2"],
.capex-opex td[colspan="3"] {
	border-right: var(--ix-color-mediumgrey) solid 1px;
}

.op-capacities td.overrun:nth-child(3),
.op-capacities td:first-child ~ td[colspan="2"] ~ td:nth-child(3),
.vessels-design td:first-child ~ td[colspan="2"] ~ td:nth-child(3),
.regeneration-params td:first-child ~ td[colspan="2"] ~ td:nth-child(3) {
	border-right: none;
}

.op-capacities tr, .vessels-design tr, .regeneration-params tr, .regeneration-sequences tr, .capex-opex tr {
	border-bottom: var(--ix-color-mediumgrey) solid 1px;
}

.op-capacities tbody tr:nth-child(odd), .vessels-design tbody tr:nth-child(odd), 
.regeneration-params tbody tr:nth-child(odd), .regeneration-sequences tbody tr:nth-child(odd), 
.capex-opex tbody tr:nth-child(odd) {
	background: var(--ix-color-lightgrey);
}

.op-capacities td[colspan="2"] .align-right{
	width: 50%;margin-left: 50%;
}


/************************************************************ Vessels design ******************************************************************************/

.button#restore {
	width: 337px;
}

/************************************************************ Regeneration params ******************************************************************************/

.regeneration-params td div {
	margin: 0.3em 0;
}

/************************************************************ Regeneration sequences ******************************************************************************/

.regeneration-sequences h2 {
	text-align: center;
}

.regeneration-sequences td:nth-child(7) {
	border-left: var(--ix-color-mediumgrey) solid 1px;
}

.regeneration-sequences td div {
	margin: 0.3em 0;
}

.regeneration-sequences td:nth-child(1), #neutralisation td:nth-child(1) {
	border-right: var(--ix-color-mediumgrey) solid 1px;
}

.regeneration-sequences td:nth-child(2), .regeneration-sequences td:nth-child(3), .regeneration-sequences td:nth-child(4), .regeneration-sequences td:nth-child(5), .regeneration-sequences td:nth-child(6),
.regeneration-sequences td:nth-child(7), .regeneration-sequences td:nth-child(8), .regeneration-sequences td:nth-child(9), .regeneration-sequences td:nth-child(10), .regeneration-sequences td:nth-child(11),
#neutralisation td:nth-child(2), #neutralisation td:nth-child(3) {
	text-align: center;
	color: var(--ix-color-blue);
	padding: 0.3em 0.7em;
} 

.regeneration-sequences tbody tr, #neutralisation tr {
	border-top: var(--ix-color-mediumgrey) solid 1px;
}

#neutralisation tr {
	border-bottom: var(--ix-color-mediumgrey) solid 1px;
}

.regeneration-sequences td, #neutralisation td {
	width: 8.1em;
}

.regeneration-sequences td:nth-child(1), #neutralisation td:nth-child(1) {
	width: 8.7em;
}

.regeneration-sequences td:nth-child(4), .regeneration-sequences td:nth-child(9) {
	width: 12.2em;
}

.regeneration-sequences td:nth-child(5), .regeneration-sequences td:nth-child(10) {
	width: 10.4em;
}

/************************************************************ Capex and Opex ******************************************************************************/

.capex-opex tfoot th:first-child {
	text-align: left;
}

.capex-opex #investmentCostTable tbody td:nth-child(3) {
	text-align: left;
}

/************************************************************ Logs  ******************************************************************************/
#front-log{
	padding:20px;
	background-color:var(--ix-color-lightblue);
	border-bottom: var(--ix-color-mediumgrey) solid 1px;
}

#front-log .front-log-title{
	font-size: medium;
	font-weight: 700;
}

#front-log .front-log-header{
	padding-bottom: 10px;
	border-bottom: 2px solid var(--ix-color-blue);
	width:100%;
}

#front-log .front-log-content{
	margin-top: 10px;
	height:20vh;
	overflow-y:scroll;
}

#front-log .front-log-line-header{
	color:var(--ix-color-blue);
	font-size: small;
	font-weight: 700;
}

#front-log .front-log-line-message{
	
	font-size: small;
}


/************************************************************ Print out  ******************************************************************************/

.print-out-buttons .select2-selection__rendered {
    line-height: 40px !important;
}
.print-out-buttons .select2-container .select2-selection--single {
    height: 44px !important;
	border-radius:10px;
}
.print-out-buttons .select2-selection__arrow {
    height: 43px !important;
}

.print-out h1 {
	margin: 2em 0 1em;
	
	text-align: left;
	
	color: var(--ix-color-blue);
	font-weight: var(--ix-fontweight-bold);
	font-size: var(--ix-font-size-title);
	letter-spacing: -0.375px; 
}

.print-out h2 {
	font-weight: var(--ix-fontweight-bold);
	font-size: var(--ix-font-size-large);
	
	margin: 2em 0; 
}

.print-out h3 {
	font-weight: var(--ix-fontweight-semibold);
	font-size: var(--ix-font-size-default);
	
	margin: 2em 0; 
}

.print-out div {
	margin: 0.5em 0;
}

.print-out div.col {
	margin: 0;
	padding-left: 0;
}

.print-out table.water-elt-table {
	margin: 2em 0;
}

.print-out table.water-elt-table th:first-child, .print-out table.water-elt-table th:first-child {
	width: 13em;
}

.print-out table.water-elt-table th:nth-child(2), .print-out table.water-elt-table th:nth-child(2) {
	width: 8em;
}

.print-out table.water-elt-table th:nth-child(3), .print-out table.water-elt-table th:nth-child(4), .print-out table.water-elt-table th:nth-child(5),
.print-out table.water-elt-table td:nth-child(3), .print-out table.water-elt-table td:nth-child(4), .print-out table.water-elt-table td:nth-child(5) {
	width: 5em;
	max-width: 10em;

	color: var(--ix-color-blue);
	text-align: center;
}

.print-out table.water-elt-table th:nth-child(3) div, .print-out table.water-elt-table th:nth-child(4) div, .print-out table.water-elt-table th:nth-child(5) div,
.print-out table.water-elt-table td:nth-child(3) div, .print-out table.water-elt-table td:nth-child(4) div, .print-out table.water-elt-table td:nth-child(5) div {
	overflow-x: auto;
}

.print-out table.water-elt-table th:nth-child(3), .print-out table.water-elt-table th:nth-child(5), 
.print-out table.water-elt-table td:nth-child(3), .print-out table.water-elt-table td:nth-child(5) {
	background: var(--ix-color-lightgrey);
	border-left: var(--ix-color-mediumgrey) solid 1px;
	border-right: var(--ix-color-mediumgrey) solid 1px;
}

.print-out table.water-elt-table th:nth-child(4), .print-out table.water-elt-table td:nth-child(4) {
	background: var(--ix-color-white);
	border-left: var(--ix-color-mediumgrey) solid 1px;
	border-right: var(--ix-color-mediumgrey) solid 1px;
}


.print-out table {
	margin-bottom: 1.5em !important;
}

@media print {

	body {
		print-color-adjust: exact;
		font-family: Helvetica, Arial, sans-serif;
	}
	
	.menu-col, .footer .links, .form-buttons {
		display: none;
	}
	
	.head {
		position: fixed;
		width: 100%;
	}
	
	.head br, .head ul {
		display: none;
	}

	.header-space {
		height: 100px !important;
	}
	
	.head {
		height: 80px;
	}
	
	.head h1 {
		margin: 0 ;
	}
	
	h2.project_title {
		display: none;
	}
	
	.footer {
		display: table-header-group;
	}
	
	.footer-space {
		height: 80px !important;
	}
	
	.footer {
		height: 60px;
	}
	
	.page-content {
		padding-left: 0;
	}
	
	.print-out {
		-webkit-box-decoration-break: clone;
		box-decoration-break: clone;

		-webkit-column-break-inside: auto;
		page-break-inside: auto;
	}
	
	table, img {
		-webkit-column-break-before: auto;
		page-break-before: auto;

		-webkit-column-break-inside: avoid;
		page-break-inside: avoid;
		page-break-after: auto;
	}
	
	table {
		orphans: 3;
		widows: 3;
	}

	h1, h2, h3, h4 {
		-webkit-column-break-after: avoid;
		page-break-after: avoid;
	}
	
	#diagram {
		margin: 0;
	}
	
	.page-break-before {
		-webkit-column-break-before: always;
		page-break-before: always;
	}
	
	.no-page-break {
		-webkit-column-break-inside: avoid;
 		page-break-inside: avoid; 
 		
 		page-break-after: auto !important;
	}
	
	#readOnlyProjectAlert {
		display: none;
	}
	
	.sticky-buttons-bar{
		display: none;
	}
}

/************************************************************ Admin pages  ******************************************************************************/

#resin-form thead th {
	font-weight: var(--ix-fontweight-semibold) !important;
}

#resin-form th, #resin-form td {
	padding-left: 0;
}

#layout-table {
	width: 100%;
}

.header-space, .footer-space {
	height: 0;
}

