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

/*body {*/
/*    background-color: #fff;*/
/*    color: #575755;*/
/*    font-family: Arial,Helvetica,sans-serif;*/
/*    font-size: 12px;*/
/*    line-height: 1.25em;*/
/*}*/

#savings-calculator .btn {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0;
    padding: 9px 14px;
    transition: background-color 0.2s ease;
    cursor: pointer;
    color: #575755;
    font-size: 12px;
    font-weight: bold;
    line-height: 20px;
    text-align: center;
    text-transform: none;
    text-decoration: none;
    background-color: transparent;
    border: 1px solid #d9d9d9;
    border-radius: 0;
}

#savings-calculator .btn-orange,
#savings-calculator .btn-secondary,
#savings-calculator .btn-direct {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0;
    transition: background-color 0.2s ease;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 0;
    color: #fff;
    border: none;
    padding: 10px 15px;
    text-transform: uppercase;
    background-color: #f68f39;
}

#savings-calculator .btn-white {
    color: #10218b;
    background-color: #fff;
}

button,
input,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	margin: 0;
}
input,
textarea {
    font-size: 12px;
    line-height: 25px;
    border: 1px solid #d9d9d9;
}

.form-wrap label {
    display: block;
    color: #575755;
    font-size: 14px;
    line-height: 24px;
    padding-bottom: 5px;
}

.form-wrap input[type="text"],
.form-wrap input[type="password"],
.form-wrap input[type="email"] {
    display: inline-block;
    width: 100%;
    border-color: #d9d9d9;
    color: #000;
    font-size: 13px;
    line-height: 18px;
    padding: 7px 10px;
}

.sort__select {
    display: inline-block;
    height: 30px;
    padding: 5px 20px 5px 5px;
    font-size: .85714286rem;
    border-radius: 0;
    color: #555;
    border: 1px solid #ccc;
	width: 100%;
	background-color: #fff;
}

@media (min-width: 1024px) {
	.sort__select {
	    height: 34px;
	    padding: 6px 20px 5px 7px;
	}
	.sort__select,
	.sort__select-option {
	    font-size: 1rem;
	}
}

.popup {
    transition: all 0.3s ease;
    transform: translate(-50%,-50%);
    display: block;
    left: 50%;
    max-height: 95%;
    outline: none;
    overflow: auto;
    position: fixed;
    top: 50%;
    width: 100%;
    max-width: 940px;
    z-index: 1004;
    opacity: 1;
    color: #575755;
    background: #fff;
    visibility: visible;
    text-align: left;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

.popup_content {
    background: #fff;
    outline: none;
    padding: 30px;
}

.mwd_error_msg {
	display: none;
	color: red;
	font-size: 12px;
	margin-top: 5px;
}
.mwd_error_msg.error {
    display: block;
    color: #d00000;
}

.mwd_contentBox {
	position: relative;
	margin: 0 auto;
	width: 940px;
	padding: 50px 0;
	font-size: 16px;
	line-height: 1.5;
}

.mwd_contentBox h2,
.mwd_contentBox h3 {
	line-height: 1.2;
}

.mwd_contentSection.mwd_grey {
    background-color: #f6f6f6;
}

.text-center {
    text-align: center;
}

.mwd_footnotes {
	counter-reset: item;
	margin: 0;
	padding: 0;
	list-style: none;
}
.mwd_footnotes li {
	margin-bottom: 10px;
	font-size: 12px;
	line-height: 18px;
	color: #a9a9a9;
	padding-left: 10px;
	position: relative;
}
.mwd_footnotes li::before {
	content: counter(item) "";
	counter-increment: item;
	margin-right: -5px;
	font-size: 10px;
	right: 100%;
	top: -4px;
	position: absolute;
}
body.rtl .mwd_footnotes li {
	padding-left: 0;
	padding-right: 10px;
}
body.rtl .mwd_footnotes li::before {
	display: none;
}
body.rtl .mwd_footnotes li::after {
	content: counter(item) "";
	counter-increment: item;
	margin-left: -5px;
	font-size: 10px;
	left: 100%;
	top: -4px;
	position:absolute;
}
.mwd_footnotes li:last-child {
	margin-bottom: 0;
}




#savings-calculator-form {
	margin-top: 50px
}

#savings-calculator-form label {
	display: block;
	width: auto;
	margin-bottom: 8px;
	font-weight: bold;
	color: #575756
}

#savings-calculator-form label.error {
	color: #d00000
}

#savings-calculator-form label.error input[type="radio"] {
	position: relative;
	background-color: transparent
}

#savings-calculator-form label.error input[type="radio"]:after {
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	position: absolute;
	border: 1px solid #d00000;
	top: -1px;
	left: -1px
}

#savings-calculator-form .select {
	max-width: 100% !important
}

#savings-calculator-form ul.select_list {
	padding-left: 0
}

#savings-calculator-form ul.select_list li {
	margin: 0
}

#savings-calculator-form .select .select_display {
	padding-top: 10px;
	padding-bottom: 10px
}

#savings-calculator-form input[type="text"],
#savings-calculator-form input[type="email"],
#savings-calculator-form input[type="number"] {
	padding: 10px 10px
}

#savings-calculator-form input[type="text"].error,
#savings-calculator-form input[type="email"].error,
#savings-calculator-form input[type="number"].error {
	border-color: #d00000
}

#savings-calculator-form input[type="radio"] {
	background-color: transparent;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none !important;
	clip: auto;
	clip: initial;
	position: static;
	float: left
}

#savings-calculator-form input[type="radio"]+label {
	font-weight: normal;
	font-size: 12px;
}

#savings-calculator-form .checkbox-label {
	font-weight: normal;
	font-size: 12px;
	padding-left: 30px
}

#savings-calculator-form .checkbox-label a {
	color: #0bafe5
}

#savings-calculator-form .checkbox-label input[type="checkbox"],
#savings-calculator-form .checkbox-label input[type="radio"] {
	clip: auto;
	clip: initial;
	position: static;
	float: left;
	margin-top: 5px;
	margin-right: 0;
	margin-left: -30px;
	border: none !important
}

#savings-calculator-form input[type="checkbox"].error {
	position: relative
}

#savings-calculator-form input[type="checkbox"].error:after {
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	position: absolute;
	border: 1px solid #d00000;
	top: -1px;
	left: -1px
}

#savings-calculator-form .radios {
	padding-top: 46px
}

#savings-calculator-form .radios input[type="radio"] {
	margin-top: 7px;
	margin-right: 15px
}

#savings-calculator-form .radios label {
	font-weight: normal;
	display: inline-block;
	padding-left: 0;
	font-size: 12px;
	padding-top: 0
}

#savings-calculator-form .rules-text {
	line-height: 16px;
	margin: 0;
	font-size: 12px;
	padding-top: 2px
}

#savings-calculator-form .row:last-of-type {
	margin-bottom: 0
}

#savings-calculator h3.no-margin-top {
	margin-top: 0 !important
}

.error2 {
	color: #d00000 !important
}

.mwd_error_msg.error {
	display: block;
	color: #d00000
}

@media (max-width: 767px) and (min-width: 600px) {
	#savings-calculator-form .radios input[type="radio"] {
		margin-right: 10px
	}
	#savings-calculator-form .checkbox-label {
		padding-left: 23px
	}
	#savings-calculator-form .checkbox-label input[type="radio"],
	#savings-calculator-form .checkbox-label input[type="checkbox"] {
		margin-left: -23px
	}
}

@media (max-width: 599px) {
	#savings-calculator-form {
		margin-top: 25px
	}
	#savings-calculator-form [class*='col-sm'] {
		margin-bottom: 20px
	}
	#savings-calculator-form>.row {
		margin-bottom: 0
	}
	#savings-calculator-form .row:last-of-type [class*='col-sm'] {
		margin-bottom: 0
	}
	#savings-calculator-form .radios {
		padding-top: 0
	}
	#savings-calculator-form p.epson-blue {
		margin-top: 0
	}
}

#print-admin {
	background: url("https://epsonemear.a.bigcontent.io/v1/static/hero") no-repeat top center
}

#print-admin h1 {
	color: white;
	line-height: 42px;
	margin-bottom: 5px
}

#print-admin p {
	color: white
}

.rtl #print-admin {
	background: url("https://epsonemear.a.bigcontent.io/v1/static/hero_rtl") no-repeat top center
}

.breadcrumb a,
.breadcrumb .current {
	color: white !important
}

.breadcrumb a:after,
.breadcrumb .current:after {
	background: white !important
}

.mwd-container:not(.mwd_footer) h1,
.popup h1 {
	font-size: 38px;
	line-height: 42px;
	font-weight: 300
}

.mwd-container:not(.mwd_footer) h1.grey,
.popup h1.grey {
	color: #575756
}

.mwd-container:not(.mwd_footer) h1.white,
.popup h1.white {
	color: white
}

.mwd-container:not(.mwd_footer) h2,
.popup h2 {
	font-size: 26px;
	line-height: 32px;
	font-weight: 300;
	color: #101f8b
}

.mwd-container:not(.mwd_footer) h2.grey,
.popup h2.grey {
	color: #575756
}

.mwd-container:not(.mwd_footer) h2.white,
.popup h2.white {
	color: white
}

.mwd-container:not(.mwd_footer) h2.white a,
.popup h2.white a {
	color: white
}

.mwd-container:not(.mwd_footer) h3,
.popup h3 {
	font-size: 20px;
	line-height: 24px;
	font-weight: 300;
	color: #101f8b
}

.mwd-container:not(.mwd_footer) h3.grey,
.popup h3.grey {
	color: #575756
}

.mwd-container:not(.mwd_footer) h3.white,
.popup h3.white {
	color: white
}

.mwd-container:not(.mwd_footer) h4,
.popup h4 {
	font-size: 16px;
	line-height: 24px;
	color: #101f8b
}

.mwd-container:not(.mwd_footer) h4.grey,
.popup h4.grey {
	color: #575756
}

.mwd-container:not(.mwd_footer) h4.white,
.popup h4.white {
	color: white
}

.mwd-container:not(.mwd_footer) p,
.popup p {
	font-size: 16px;
	line-height: 1.25;
	margin-bottom: 1em;
}

.mwd-container:not(.mwd_footer) p.epson-blue,
.popup p.epson-blue {
	color: #101f8b
}

.mwd-container:not(.mwd_footer) .small,
.popup .small {
	font-size: 11px;
	line-height: 1.2;
	margin-top: 0;
	margin-bottom: 0
}

.mwd-container:not(.mwd_footer) .tertiary,
.popup .tertiary {
	font-size: 12px;
	line-height: 16px
}

.mwd-container:not(.mwd_footer) .tertiary p,
.mwd-container:not(.mwd_footer) .tertiary li,
.popup .tertiary p,
.popup .tertiary li {
	font-size: 12px;
	line-height: 16px
}

.mwd-container:not(.mwd_footer) .t-bold,
.popup .t-bold {
	font-size: 12px;
	line-height: 16px;
	font-weight: bold
}

.mwd-container:not(.mwd_footer) .text-uppercase,
.popup .text-uppercase {
	text-transform: uppercase
}

.mwd-container:not(.mwd_footer) .detail,
.popup .detail {
	font-size: 10px;
	line-height: 14px;
	font-weight: normal
}

.mwd-container:not(.mwd_footer) .text-center,
.popup .text-center {
	text-align: center
}

.mwd-container:not(.mwd_footer) .margin-top-h,
.popup .margin-top-h {
	margin-top: 28px
}

.mwd-container:not(.mwd_footer) .text-uppercase,
.popup .text-uppercase {
	text-transform: uppercase
}

.mwd-container:not(.mwd_footer) .img-responsive,
.popup .img-responsive {
	display: block;
	width: 100%;
	height: auto
}

.mwd-container:not(.mwd_footer) .separator,
.popup .separator {
	height: 50px;
	float: none;
	clear: left
}

.mwd-container:not(.mwd_footer) .separator.small,
.popup .separator.small {
	height: 30px
}

.mwd-container:not(.mwd_footer) .mwd_dark h3,
.mwd-container:not(.mwd_footer) .mwd_dark h2,
.mwd-container:not(.mwd_footer) .mwd_dark p,
.popup .mwd_dark h3,
.popup .mwd_dark h2,
.popup .mwd_dark p {
	color: white
}

.mwd-container:not(.mwd_footer) .mwd_dark .btn-white,
.popup .mwd_dark .btn-white {
	background-color: #eeeeee;
	color: #101f8b;
	border-color: #eee;
	text-transform: uppercase
}

.mwd-container:not(.mwd_footer) ul,
.popup ul {
	padding-left: 15px
}

.mwd-container:not(.mwd_footer) ul>li,
.popup ul>li {
	margin-bottom: 20px;
	margin-top: 10px
}

.mwd-container:not(.mwd_footer) ul.no-bullets,
.popup ul.no-bullets {
	list-style: none;
	list-style-type: none;
	margin: 0;
	padding: 0
}

.mwd-container:not(.mwd_footer) ul.no-bullets>li,
.popup ul.no-bullets>li {
	display: block
}

.mwd-container:not(.mwd_footer) ul.no-bullets>li span,
.popup ul.no-bullets>li span {
	float: right;
	font-size: 30px;
	color: black
}

.mwd-container:not(.mwd_footer) ul.mwd_redesign-range_features,
.popup ul.mwd_redesign-range_features {
	padding-left: 0
}

.mwd-container:not(.mwd_footer) ul.mwd_redesign-range_features.fullWidth,
.popup ul.mwd_redesign-range_features.fullWidth {
	width: auto
}

.mwd-container:not(.mwd_footer) ul.mwd_redesign-range_features>li,
.popup ul.mwd_redesign-range_features>li {
	margin-bottom: 0;
	line-height: 1.2
}

.mwd-container:not(.mwd_footer) ul.mwd_redesign-range_features>li:before,
.popup ul.mwd_redesign-range_features>li:before {
	top: 7px
}

.mwd-container:not(.mwd_footer) figcaption,
.popup figcaption {
	margin-bottom: 8px
}

#overview {
	padding-top: 85px;
	position: relative
}

#overview h2 {
	font-size: 38px;
	line-height: 1.25;
	font-weight: normal;
	margin: 0 0 25px
}

#overview:after {
	content: '';
	background: url("https://epsonemear.a.bigcontent.io/v1/static/intro") no-repeat left;
	position: absolute;
	right: 0;
	bottom: 0;
	background-size: cover;
	left: 50%;
	display: block;
	top: 0
}

#features .key-feature {
	margin-top: 50px
}

#features .row {
	margin-bottom: 0
}

.dark-section {
	background: #323333
}

.dark-section h2 {
	color: white !important
}

.dark-section p {
	color: white
}

.dark-section .row {
	margin-bottom: 0
}

.dark-section img {
	display: block
}

#environmental-impact .row {
	margin-bottom: 0
}

#environmental-impact p:last-of-type {
	margin-bottom: 0
}

#environmental-impact .pull-right {
	float: right !important;
}

.blue-section {
	background: #101f8b
}

.blue-section h3,
.blue-section h2,
.blue-section label:not(.error2),
.blue-section p {
	color: white !important
}

.open-platform {
	background: url("https://epsonemear.a.bigcontent.io/v1/static/open_platform-full_width_teaser") no-repeat center;
	-moz-background-size: cover;
	-o-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover
}

.open-platform .mwd-container {
	height: 500px;
	display: table;
	padding: 0
}

.open-platform .mwd-container .row {
	margin-bottom: 0;
	display: table-cell;
	vertical-align: middle
}

.open-platform .blue-box {
	padding: 20px;
	background: #101f8b;
	max-width: 330px
}

.open-platform .blue-box {
	float: right!important
}

.open-platform .blue-box h2 {
	color: white;
	font-size: 14px;
	margin-top: 0;
	line-height: 1
}

.open-platform .blue-box h3 {
	color: white;
	margin-top: 0
}

.open-platform .blue-box p {
	color: white
}

.open-platform .blue-box a {
	color: white;
	display: block;
	font-weight: bold
}

.mwd_contentSwitcherV2_navi>ul {
	padding-left: 0 !important
}

.mwd_contentSwitcherV2_navi>ul li {
	margin-top: 0 !important;
	width: 18% !important;
	margin-right: 2% !important;
}

.mwd_contentSwitcherV2_navi>ul li:nth-child(5n) {
	margin-right: 0 !important;
}

.mwd_contentSwitcherV2_content .row {
	margin-bottom: 0
}

.mwd_contentSwitcherV2_content p:last-of-type {
	margin-bottom: 0
}

#contact-us ul.select_list {
	padding-left: 0
}

#contact-us ul.select_list>li {
	margin: 0
}

h3.io_accordion_headline {
	color: #575756 !important
}

table.epson_table {
	width: 100%;
	border-collapse: collapse
}

table.epson_table tbody tr td {
	font-size: 12px;
	line-height: 16px;
	padding: 12px 0 12px 20px;
	vertical-align: middle
}

table.epson_table tbody tr td:first-child {
	font-weight: bold;
	width: 250px
}

table.epson_table tbody tr:nth-child(odd) {
	background-color: #f6f6f6
}

.error2 {
	color: #d00000 !important
}

.error2 p {
	color: #d00000 !important
}

.popup p {
	font-size: 13px;
	line-height: 20px
}

.popup ul {
	list-style: disc outside none
}

.popup ul>li {
	display: list-item;
	margin-bottom: 5px;
	margin-top: 5px
}

.mwd_form_footline {
	margin-bottom: 0
}

.mwd_form_footline small {
	margin-bottom: 0
}

@media (min-width: 600px) {
	.no-margin-top {
		margin-top: 0
	}
	.no-margin-bottom {
		margin-bottom: 0
	}
}

@media (min-width: 768px) {
	.pull-right {
		float: right
	}
	.key-feature:nth-of-type(4n+5) {
		clear: left
	}
	#features h2 {
		margin-bottom: 50px
	}
	.dark-section h2 {
		margin-top: 0
	}
}

@media (min-width: 960px) {
	#overview {
		min-height: 500px
	}
}

@media (max-width: 959px) {
	#print-admin {
		-moz-background-size: cover;
		-o-background-size: cover;
		-webkit-background-size: cover;
		background-size: cover
	}
}

@media (max-width: 767px) {
	.pull-right {
		float: none !important;
	}
	#overview {
		padding-top: 75px
	}
	#overview:after {
		display: none
	}
	.mobile-padding-top {
		padding-top: 20px
	}
	.key-feature:nth-of-type(2n+3) {
		clear: left
	}
}

@media (max-width: 599px) {
	#print-admin {
		background: url("https://epsonemear.a.bigcontent.io/v1/static/hero-mobile") no-repeat top center
	}
	.text-center-xs {
		text-align: center
	}
	figure img.img-responsive {
		width: 100%;
		height: auto
	}
	.mwd_contentSwitcherV2_navi>ul li {
		margin-bottom: 0 !important;
		width: 100% !important
	}
	.mwd_contentSwitcherV2 .mwd_contentSwitcherV2_content {
		padding-top: 20px
	}
	table.epson_table {
		display: block !important
	}
	table.epson_table tbody {
		display: block !important
	}
	table.epson_table tbody tr {
		display: block !important
	}
	table.epson_table tbody tr td {
		display: block !important;
		width: auto
	}
	#features .key-feature {
		margin-top: 25px
	}
	#features .key-feature p:last-of-type {
		margin-bottom: 0
	}
	#overview p:last-of-type {
		margin-bottom: 0
	}
}

@media (max-width: 479px) {
	.mwd_form .select {
		min-width: inherit !important
	}
}

table.results-table tbody tr.last-line.blue td:first-child,
.mwd_main_wrapper h3 {
    color: #353535 !important;
}
