.roi-calc .roi-results {
	display: none;
}

.roi-calc.valid-email .roi-get-results{
	display: none;
}

.roi-calc.valid-email .roi-results {
	display: block;
}
.roi-calc.valid-email .roi-results h2,
.roi-calc.valid-email .roi-results table {
	display: none;
}

.roi-calc th i,
.roi-calc td i {
	position: relative;
	background-color: #666;
	color: #fff;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	top: -5px;
	display: inline-block;
	font-size: 10px;
	font-weight: bold;
	line-height: 12px;
	text-align: center;
}

.roi-calc table {
	table-layout: fixed;
	width: 100%;
}

.roi-calc th,
.roi-calc td {
	color: #666;
	text-transform: none;
	letter-spacing: 0;
	line-height: 20px;
	vertical-align: middle;
	padding: 12px;
}

#top .roi-calc input,
#top .roi-calc select {
	width: 100%;
	display: block;
	padding: 8px 6px;
	line-height: 1;
	font-size: 12px;
	border: 1px solid #e1e1e1;
	margin-bottom: 0;
	background-color: #fff !important;
	margin-bottom: 0 !important;
}

#top .roi-calc select {
	line-height: 1.2;
}

#top .roi-calc input:active,
#top .roi-calc input:focus {
	box-shadow: none;
}

.roi-calc ol {
	margin-left: 0;
}
#top .roi-calc h2 a {
	color: #6bbaa8;
}

.roi-popup-wrapper button,
.roi-calc button {
	display: inline-block;
	line-height: 1;
	background-color: #ff0000;
	color: #fff;
	padding: 10px 15px;
	border: 1px solid #fff;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.roi-calc button.roi-new-calculation,
.roi-calc button.roi-email-results,
.roi-calc button.roi-get-results {
	display: block;
	margin: 0 auto;
}

.roi-popup-wrapper button:hover,
.roi-calc button:hover {
	color: #ff0000;
	background-color: #fff;
	border-color: #ff0000;
}

.roi-calc button:hover,
.roi-calc button:active,
.roi-calc button:focus,
.roi-popup-wrapper button:focus {
	outline: none !important;
}

.roi-calc .roi-money:before{
	content: '$';
	display: block;
	float: left;
	padding: 8px 0;
	width: 30px;
	text-align: center;
	box-sizing: border-box;
	line-height: 1;
	font: 400 13px system-ui;
	border: 1px solid #e1e1e1;
	border-right: none;
	background-color: #fff;
	font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.roi-calc .roi-email-message{
	display: none;
	max-width: 500px;
	width: 100%;
    margin: 0 auto;
    text-align: center;
}

.roi-calc .roi-email-message p{
	font-size: 36px;
	line-height: 1.2;
}

.roi-calc.email-sent .roi-email-message{
	display: block;
}

.roi-calc.email-sent form{
	display: none;
}

#top .roi-calc input[type=number]::-webkit-inner-spin-button, 
#top .roi-calc input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

.roi-calc .roi-percents-icon{
	content: '%';
	display: block;
	float: left;
	padding: 8px 0;
	width: 30px;
	text-align: center;
	box-sizing: border-box;
	line-height: 1;
	font: 400 13px system-ui;
	border: 1px solid #e1e1e1;
	border-left: none;
	background-color: #fff;
	font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#top .roi-calc .roi-money input[type="number"],
.roi-calc .roi-money input[type="number"],
.roi-calc .roi-money input {
	width: calc( 100% - 30px );	
}

#top .roi-calc .roi-percents input[type="text"],
#top .roi-calc .roi-percents input[type="number"],
.roi-calc .roi-percents input[type="number"],
.roi-calc .roi-percents input {
	width: calc( 100% - 30px );	
	float: left;
}

#top .roi-calc .roi-is-required.roi-percents input[type="text"],
#top .roi-calc .roi-is-required.roi-percents input[type="number"],
#top .roi-calc .roi-is-required input,
#top .roi-calc .roi-is-required:before, 
#top .roi-calc .roi-is-required .roi-percents-icon {
	border-color: red;
}

.roi-calc .roi-is-required .roi-error {
	color: red;
}

/* Popup */
.roi-popup-bg {
	position: fixed;
	z-index: 999;
	background-color: rgba(255,255,255,.7);
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: none;
}

.roi-popup-wrapper {
	display: none;
	position: fixed;
	z-index: 9999;
	width: 350px;
	/*height: 185px;*/
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	background-color: #fff;
	border: 1px solid #e1e1e1;
	-webkit-box-shadow: -1px 2px 6px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: -1px 2px 6px 0px rgba(0,0,0,0.2);
	box-shadow: -1px 2px 6px 0px rgba(0,0,0,0.2);
	padding: 25px;
	transition: height 0.2s ease;
}

.roi-close-popup {
	position: absolute;
	width: 20px;
	height: 20px;
	right: -25px;
	top: -25px;
	transition: opacity 0.2s ease;
	cursor: pointer;
}
.roi-close-popup:hover {
	opacity: 0.7;
}

.roi-close-popup:before,
.roi-close-popup:after {
	content: '';
	width: 2px;
	height: 22px;
	background-color: #666;
	border-radius: 1px;
	position: absolute;
}

.roi-close-popup:before {
	transform: rotate(45deg);
	top: -1px;
	left: 10px;

}

.roi-close-popup:after {
	transform: rotate(315deg);
	top: -1px;
	left: 10px;
}

.roi-popup-wrapper .messages{
	font-size: 14px;
    color: red;
    position: relative;
    top: -20px;
    line-height: 20px;
    display: inline-block;
}

.roi-popup-wrapper .messages:empty{
	display: none;
}

.roi-popup-title {
	text-align: center;
    margin-bottom: 10px;
}

.roi-popup-wrapper button{
	display: block;
	margin: 0 auto;
}

.roi-reset-link {
	display: none;
}

.roi-manual-change a {
	display: none;
}

.roi-manual-change a.roi-reset-link {
	display: inline;
}

@media print {
	.responsive .container {
		max-width: 100% !important;
		width: 100% !important;
	}

	#header {
		position: static !important;
	}

	.html_header_top.html_header_topbar_active.html_header_sticky.html_large #top #main {
	    padding-top: 0 !important;
	}

	button,
	#socket {
		display: none !important;
	}
}

@media(max-width: 550px) {
	.roi-calc .roi-hard-results tr:first-child td{
		display: none;
	}
	.roi-calc .roi-hard-results tr:first-child th{
		display: block;
		width: 50%;
		height: 66px;
		float: left;
	}
	.roi-calc .roi-hard-results tr:first-child th:nth-child(2){
		border-left: 1px solid #e1e1e1;
	}
	.roi-calc .roi-hard-results tr:not(:first-child) th{
		display: block;
		width: 100%;
		float: none;
		color: #ff0000;
	}
	.roi-calc .roi-hard-results tr:not(:first-child) td{
		display: block;
		width: 50%;
		float: left;
	}
	.roi-calc .roi-hard-results tr:not(:first-child) td:nth-child(2){
		border-left: 1px solid #e1e1e1;
	}
	.roi-calc .roi-hard-results tr th,
	.roi-calc .roi-hard-results tr td{
		text-align: center;
	}
	/* Soft Roi results table */
	.roi-calc .roi-soft-results tr:first-child {
		display: none;
	}
	.roi-calc .roi-soft-results tr:not(:first-child) th {
		display: block;
		width: 100%;
		float: none;
		text-align: center;
		color: #ff0000;
	}
	.roi-calc .roi-soft-results tr:nth-child(2) th {
		border-top: 1px solid #e1e1e1;
	}
	.roi-calc .roi-soft-results tr td:nth-child(2),
	.roi-calc .roi-soft-results tr td:nth-child(3),
	.roi-calc .roi-soft-results tr td:nth-child(4) {}
	.roi-calc .roi-soft-results tr td {
		display: block;
		width: 100%;
		float: none;
		border-left: 1px solid #e1e1e1;
	}

	.roi-calc .roi-soft-results tr td:nth-child(2):before {
		content: 'Current: ';
		font-weight: bold;
		width: 100px;
	}
	.roi-calc .roi-soft-results tr td:nth-child(3):before {
		content: 'With GoExhibit: ';
		font-weight: bold;
		width: 100px;
	}
	.roi-calc .roi-soft-results tr td:nth-child(4):before {
		content: 'Difference: ';
		font-weight: bold;
		width: 100px;
	}
}

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