/*GEC EPEAT Benefits Calculator styles*/
* {
  box-sizing: border-box;
}
@font-face {
  font-family: "Futura";
  src: url("../fonts/Futura-Medium.woff2") format("woff2"),
    url("../fonts/Futura-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #444;
  font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.3;
  margin: 0;
}

#app {
  width: 100%;
  margin: 0 auto;
}

noscript {
  display: block;
  margin: 20px auto;
  text-align: center;
  color: #d9534f;
}

#btn-pv svg {
  block-size: 75%;
  inline-size: 75%;
  stroke: #bbb;
  stroke-width: 3px;
}

#btn-pv:hover svg {
  stroke: #0089d8;
}

#btn-pv.active svg {
  stroke: #fff;
}

/*Tab styles*/
.steps {
  text-align: center;
  margin: 0 -10px 35px;
  width: calc(100% + 20px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.steps * {
  box-sizing: border-box;
}
.step,
.step-0 {
  transition: 0.4s;
  text-align: center;
  width: 14.2%;
  max-width: 280px;
  display: inline-block;
  color: #bbb;
  padding: 0 10px;
  line-height: 1.1;
  font-size: 16px;
}
.step span,
.step-0 span {
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  margin: 5px auto;
  border: 3px solid #f3f2ee;
  border-radius: 50%;
  color: #bbb;
  font-size: 24px;
  cursor: pointer;
}
.step:hover,
.step-0:hover {
  color: #0089d8;
}
.step:hover span,
.step-0:hover span {
  border: 3px solid #0089d8;
  color: #0089d8;
}
.step#btn-result span {
  cursor: auto;
  border: 3px solid #f3f2ee;
  color: #bbb;
}
.step#btn-result {
  color: #bbb;
  cursor: auto;
}

.step.active {
  opacity: 1;
  color: #50c246 !important;
}
.step.active span {
  background-color: #50c246 !important;
  border-color: #50c246 !important;
  color: #fff !important;
}
.step.finish span {
  border-color: #50c246;
}

.steps-epeat .step,
.steps-epeat .step-0 {
  width: 14.2%;
}
.steps-epeat .step span,
.steps-epeat .step-0 span {
  border: 0 !important;
  background: transparent !important;
  height: auto !important;
  width: auto !important;
  margin-bottom: 7px;
}
.steps-epeat img {
  height: 48px;
  transition: 0.4s;
}

.tab {
  display: none;
}
.tab.tabactive {
  display: block;
}

h1 {
  color: #50c246;
  font-size: 1.4em;
  border-bottom: 1px solid #50c246;
}

h2 {
  font-size: 1em;
  padding: 5px;
  margin-bottom: 5px;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  background: #e2e9ba;
}

hr {
  height: 1px;
  border-width: 0;
  color: #d7d7d7;
  background-color: #d7d7d7;
}

/*Form styles*/
fieldset {
  border: 0;
  padding: 0.5em 0 0 0;
  margin: 0;
  /*min-width: 0;*/
}
legend {
  display: table;
  float: left;
  margin: 0 0 10px 0;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #efefef;
  font-weight: bold;
}

legend.noborder {
  border-bottom: 0;
  margin-bottom: 5px;
}

body:not(:-moz-handler-blocked) fieldset {
  display: table-cell;
}

input[readonly] {
  background-color: #ddd;
}

input[type="number"] {
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="text"],
form input[type="number"],
select,
textarea {
  width: 98%; /*100*/
  margin-left: 5px;
  height: 35px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
  font-size: 1em;
}

select {
  border: 1px solid #ccc;
  vertical-align: top;
  height: 35px;
}

input#server_rack_bulk,
input#server_blade_bulk {
  height: 35px;
  position: relative;
  vertical-align: middle;
  bottom: 1px;
}

input,
select {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

label {
  display: inline;
  vertical-align: middle;
  margin: 0 0.2em 0 0;
}

/*Button styles*/
.button-01 {
  background: #50c246;
  color: #fff;
  text-decoration: none;
  font: 500 15px/1 Futura;
  padding: 1px 25px 0;
  text-transform: uppercase;
  border-radius: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.4s;
  text-align: center;
  border: 0;
}
.button-01:hover {
  background: #0089d8;
}

.button-01-a {
  color: #484848;
  background: #eef0f1;
}
.button-01-a:hover {
  background: #cdd4d7;
}

button:focus {
  outline: none;
}

button.link {
  background-color: transparent;
  color: #50c246;
  padding: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.9em;
  margin: 0;
}
button.link:hover {
  color: #0089d8;
  background-color: transparent;
}

/*Grid styles*/
.row {
  margin-bottom: 7px;
}

/*clear floats after the columns*/
.row:after {
  content: "";
  clear: both;
  display: table;
}

/*[class*="col-"] {
    float: left;
    padding: 15px;
}
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
*/

.col-30 {
  float: left;
  width: 30%;
}
.col-33 {
  float: left;
  width: 33%;
}

.col-32 {
  float: left;
  width: 32%;
}

.col-36 {
  float: left;
  width: 36%;
}

.col-70 {
  float: left;
  width: 70%;
  text-align: right;
}

/*DataTable styles*/
div.table-wrapper {
  width: 1px;
  min-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /*for iphone*/
}

table.dataTable tbody {
  color: #333;
}

table.dataTable tbody {
  font-size: 0.9em;
}
table.dataTable thead th {
  font-size: 0.9em;
  border-collapse: collapse;
}

table.dataTable.compact.results tbody,
table.dataTable.compact.results thead th {
  font-size: 0.8em;
  letter-spacing: 0px;
  color: #555;
}

/*change padding for smaller font size - Chrome*/
table.dataTable.compact.results thead th {
  /*,table.dataTable.compact tfoot th*/
  padding: 4px 5.9px 4px 4px; /*eliminates horizontal scroll (not on Safari)*/
  /*padding: 4px 5.1px 4px 4px;*/
  font-weight: 500;
  /*word-spacing:-0.15em;*/
}

/*IE 11 specific padding*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  table.dataTable.compact.results thead th {
    /*table.dataTable.compact tfoot th*/
    padding: 4px 5.7px 4px 4px; /*eliminates horizontal scroll*/
    /*padding: 4px 4.9px 4px 4px;*/
  }
}

/*IE Edge specific padding*/
@supports (-ms-ime-align: auto) {
  table.dataTable.compact.results thead th {
    /*table.dataTable.compact tfoot th */
    padding: 4px 5.7px 4px 4px; /*eliminates horizontal scroll*/
    /*padding: 4px 4.9px 4px 4px;*/
  }
}

/*Firefox specific padding*/
@-moz-document url-prefix() {
  table.dataTable.compact.results thead th {
    /*,table.dataTable.compact tfoot th*/
    padding: 4px 4.3px 4px 4px; /*eliminates horizontal scroll*/
    /*padding: 4px 3.5px 4px 4px;*/
  }
}

table.dataTable.compact.results thead th {
  vertical-align: bottom;
}
/*table.dataTable.compact tfoot th {
  vertical-align: top;
}*/

table.dataTable thead th,
table.dataTable thead td {
  padding: 0 10px; /*10px 18px;*/
  text-align: left;
}

table.dataTable.compact.results thead th {
  text-align: center; /*comment out to prevent realignment when rows expanded?*/
}

table.dataTable.compact.results thead th:first-child {
  font-weight: normal;
  text-align: left;
  color: #555;
}

table#resultsTable {
  /*display: none;*/
  visibility: hidden;
}

table#resultsTable tbody tr.group {
  background-color: #0089d8;
  color: #fff;
}
table#resultsTable tbody tr.group.active {
  background-color: #50c246;
}

table#resultsTable tbody tr[class^="group_"] {
  overflow: hidden;
} /*for IE flicker issue*/

table#resultsTable tbody tr.group.active td {
  color: #fff;
}

table#resultsTable tbody tr.group td {
  text-align: left;
}

table#resultsTable tbody tr.group td:hover {
  background-color: #50c246;
  color: #fff;
}
table#resultsTable tbody tr td:not(:first-child) {
  text-align: center;
}
table#resultsTable tbody tr td:first-child {
  font-weight: bold;
}
table tbody tr.group,
table tbody tr.group:hover {
  cursor: pointer;
}
table.dataTable.no-footer {
  /*to remove extra border if no footer*/
  border-bottom: 0;
}

table#resultsTable tr:nth-child(3) td,
table#resultsTable tr:nth-child(23) td,
table#resultsTable tr:nth-child(28) td,
table#resultsTable tr:nth-child(33) td,
table#resultsTable tr:nth-child(37) td,
table#resultsTable tr:nth-child(42) td,
table#resultsTable tr:nth-child(46) td,
table#resultsTable tr:nth-child(50) td,
table#resultsTable tr:nth-child(54) td,
table#resultsTable tr:nth-child(58) td {
  font-weight: bold;
}

#mobile_dataEntered,
#server_rack_dataEntered,
#server_blade_dataEntered,
#comp_desktop_dataEntered,
#comp_monitor_dataEntered,
#comp_notebook_dataEntered,
#comp_tablet_dataEntered,
#comp_integrated_dataEntered {
  font-size: 0.9em;
  padding: 0 0 10px 5px;
}

div.dt-buttons {
  position: relative;
  top: 5px;
  float: right;
}

button.dt-button,
div.dt-button,
a.dt-button {
  margin-bottom: 0.4em;
}

#colToggle {
  font-size: 0.9em;
  background-color: #fafafa;
  padding: 0 5px 0 5px;
  border: 1px solid #ddd;
  margin: 0 0 10px 0;
}
#colToggle label {
  padding: 0;
  display: inline;
}
#colToggle .row {
  margin-top: 5px;
}

/*tfoot {
  display: table-header-group;
}*/

.exportExcel {
  cursor: pointer;
  color: #50c246;
}

/* Validation styles */
span[class$="error-msg"],
span#submit-error {
  font-size: 0.9em;
  width: 100%;
}

/* General styles */
a,
fieldset legend.link {
  transition: 0.4s;
  color: #0089d8;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
fieldset legend.link:hover {
  color: #50c246;
}

a.heading {
  font-size: 1.2em;
}

a.toggleVisibility {
  display: inline-block;
  font-weight: bold;
  margin: 5px 0 5px 0;
}

i.tooltip {
  color: #0089d8;
  cursor: pointer;
  vertical-align: middle;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.align-center {
  text-align: center;
}
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button.topBtn {
  font-size: 16px;
  font-weight: bold;
  border: none;
  outline: none;
  background-color: #fff;
  color: #ccc;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
}

button.topBtn:hover {
  background-color: #666;
}

@media screen and (max-width: 960px) {
  .col-30 {
    width: 40%;
  }
  .col-70 {
    width: 60%;
  }
}
@media screen and (max-width: 800px) {
  .steps-epeat img {
    height: 43px;
  }
  .steps-epeat .step,
  .steps-epeat .step-0 {
    font-size: 15px;
  }
}
@media screen and (max-width: 700px) {
  .steps-epeat img {
    height: 38px;
  }
  .steps-epeat .step,
  .steps-epeat .step-0 {
    font-size: 14px;
  }
}
@media screen and (max-width: 650px) {
  .steps-epeat img {
    height: 33px;
  }
  .steps-epeat .step,
  .steps-epeat .step-0 {
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  div.dt-buttons {
    float: right !important;
    text-align: center;
  }
}

@media screen and (max-width: 600px) {
  .col-30,
  .col-32,
  .col-33,
  .col-36,
  .col-70,
  input[type="submit"] {
    width: 100%;
    margin-top: 0;
  }
  .col-70 {
    text-align: left;
  }
  button.secondary,
  button.primary {
    width: 100%;
  }
  input[type="text"],
  form input[type="number"],
  select,
  textarea {
    width: 100%;
    margin-left: 0;
  }
  #colToggle {
    font-size: 1em;
  }
  .topBtn {
    display: none;
  }
}
@media screen and (max-width: 550px) {
  .steps {
    margin: 0 -8px 35px;
    width: calc(100% + 16px);
  }
  .step {
    font-size: 15px;
    padding: 0 8px;
  }
  .step span {
    height: 55px;
    width: 55px;
    font-size: 22px;
  }
  .steps-epeat .step-0 {
    padding: 0 8px;
    width: 50%;
    margin-bottom: 30px;
  }
  .steps-epeat .step {
    width: 20%;
  }
  .steps-epeat .step,
  .steps-epeat .step-0 {
    font-size: 15px;
  }
}
@media screen and (max-width: 500px) {
  .steps {
    margin: 0 -6px 35px;
    width: calc(100% + 12px);
  }
  .step {
    font-size: 14px;
    padding: 0 6px;
  }
  .step span {
    height: 50px;
    width: 50px;
    font-size: 20px;
  }
  .steps-epeat .step-0 {
    padding: 0 6px;
  }
  .steps-epeat .step,
  .steps-epeat .step-0 {
    font-size: 14px;
  }
}

@media screen and (max-width: 450px) {
  .steps {
    margin: 0 -4px 35px;
    width: calc(100% + 8px);
  }
  .step {
    font-size: 13px;
    padding: 0 4px;
  }
  .step span {
    height: 45px;
    width: 45px;
    font-size: 18px;
  }
  .steps-epeat .step-0 {
    padding: 0 4px;
  }
  .steps-epeat img {
    height: 30px;
  }
  .steps-epeat .step,
  .steps-epeat .step-0 {
    font-size: 13px;
  }
}

@media screen and (max-width: 400px) {
}
