/*--------------------------------------------------------------
TABLE OF CONTENT
----------------------------------------------------------------
1.0 VARIABLE
|  1.1 COLOR
|  1.2 TYPOGRAPHY
|  1.3 LAYOUT
2.0 FOUNDATION
3.0 TYPOGRAPHY
4.0 IMAGE
5.0 LAYOUT
6.0 COMPONENT
|  6.1 CTA
|  6.2 FORM
|  6.3 BUTTON
|  6.4 CARD
7.0 SECTION
|  7.1 HEADER
|  7.2 HERO
|  7.3 CONTENT
|  7.4 CLOSE
|  7.5 FOOTER
8.0 MEDIA
|  8.1 768PX
|  8.2 1024PX
|  8.3 1200PX
--------------------------------------------------------------*/


/* Added for calculator, grid system 092222 */
.form-control {
    display: block;
    width: 100%;
    /*max-width: 550px;*/
    height: 34px;
    /*padding: 6px 12px;*/
    font-size: 1rem !important;
    line-height: 1.42857143;
    color: #555555;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    color:#3e3e3e;
    font-weight: 600;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-group-prepend, .input-group-append {
    display: flex;
}

.input-group-prepend {
    margin-right: -1px;
    height: 34px;
}
.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.input-group>.form-control, .input-group>.form-control-plaintext, .input-group>.custom-select, .input-group>.custom-file {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
}


/*Grid system */
.grid-container {
    display: grid;
    grid-row-gap:10px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    /*background-color: #f5f5f5;*/
    border: 3px solid #f5f5f5;
    padding: 30px;
    margin-top:10px;
    border-radius: 6px;
    justify-content:center;
    /*align-content:center;*/
    max-width: 450px;

    }
    .grid-container-toplevel {
    display: grid;
    column-gap: 10%;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    background-color: #fff;
    padding: 10px;
    justify-content:center;
    /*align-content:center;*/
    }
    .grid-container-titles {
    display: grid;
    column-gap: 30%;
    padding-bottom:15px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /*place-items: center;*/

    }
    .grid-item {
    margin-left: 0%;
    }
    input {
    width:100%;
    font-size:1.125rem !important;
    }

/*Output table*/

table {
border-collapse: collapse;
  font-family: Tahoma, Geneva, sans-serif;
}
table td {
padding: 15px;
}
table thead td {
background-color: #263e5bcf;
color: #ffffff;
font-weight: bold;
/*font-size: 15px;*/
border: 1px solid #dddfe1;
/*border: 1px solid #54585d;*/
}
table tbody td {
color: #636363;
border: 1px solid #dddfe1;
}
table tbody tr {
background-color: #f9fafb;
}
table tbody tr:nth-child(odd) {
background-color: #ffffff;
}

@media screen and (min-width: 1px)
  .loader {
    display: none;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
  }

  .loading {
    border: 2px solid #ccc;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border-top-color: #1ecd97;
    border-left-color: #1ecd97;
    animation: spin 1s infinite ease-in;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
    
/*--------------------------------------------------------------
1.0 VARIABLE
--------------------------------------------------------------*/

:root {

  /*------------------------------------------------------------
  |
  | 1.1 COLOR
  |
  ------------------------------------------------------------*/

  --ui-color-brand: #353535;

  /* COLOR PALETTE */

  --ui-color-n-000: #fff;
  --ui-color-n-100: #ebebeb;
  --ui-color-n-300: #aeaeae;
  --ui-color-n-500: #353535;
  --ui-color-n-700: #282828;
  --ui-color-n-900: #1a1a1a;

  /* BACKGROUND COLOR */
  
  --ui-color-background-primary: var(--ui-color-n-000);

  /* BORDER COLOR */

  --ui-color-border: var(--ui-color-n-100);
  
  /* FORM COLOR */

  --ui-color-form-input: var(--ui-color-n-100);

  /* TYPOGRAPHY COLOR */

  --ui-color-typography-heading: var(--ui-color-n-500);
  --ui-color-typography-body   : var(--ui-color-n-900);
  --ui-color-typography-note   : var(--ui-color-n-300);
  --ui-color-typography-button : var(--ui-color-n-000);

  /*------------------------------------------------------------
  |
  | 1.2 TYPOGRAPHY
  |
  ------------------------------------------------------------*/

  /*--ui-typography-typeface: "Inter", sans-serif;*/
  --ui-typography-typeface: "Open Sans", sans-serif;

  /* FONT SIZE */

  --ui-typography-h1: 1.9375rem;
  --ui-typography-h2: 1.5625rem;
  --ui-typography-h4: 1rem;
  --ui-typography-p : 1rem;
  --ui-typography-s : .9rem;

  /* LEADING */

  --ui-typography-h1-leading: 1.2;
  --ui-typography-h2-leading: 1.2;
  --ui-typography-h4-leading: 1.25;
  --ui-typography-p-leading : 1.5;

  /* MARGIN */

  --ui-typography-margin-heading: .75rem;
  --ui-typography-margin-body   : 1.125rem;

  /*------------------------------------------------------------
  |
  | 1.3 LAYOUT
  |
  ------------------------------------------------------------*/
  
  --ui-layout-container: 1.25rem;
  --ui-layout-grid     : 3.625rem;
  --ui-layout-gutter   : 1rem;

  /* GAP */

  --ui-gap-cta    : .75rem;
  --ui-gap-content: 1.25rem;

  /* BORDER RADIUS */
  
  --ui-radius-button: 5rem;
  --ui-radius-input : 5rem;
  --ui-radius-card  : .5rem;

}

/*--------------------------------------------------------------
2.0 FOUNDATION
--------------------------------------------------------------*/

html { box-sizing: border-box; }

*,
*:before,
*:after { box-sizing: inherit; }

body {
  background-color: var(--ui-color-background-primary);
  color: var(--ui-color-typography-body);
  font-family: var(--ui-typography-typeface);
  font-feature-settings: "liga", "kern";
  font-size: var(--ui-typography-p);
  font-weight: 400;
  line-height: var(--ui-typography-p-leading);
  margin: 0 auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/*--------------------------------------------------------------
3.0 TYPOGRAPHY
--------------------------------------------------------------*/

.blog-links {
  color:#1a1a1a !important;
}

a {
  color: #0000EE;
  text-decoration: none;
}

h1,
h2,
h4,
p { margin-top: 0; }

h1,
h2,
h4 { color: var(--ui-color-typography-heading); }

h1,
h2 { margin-bottom: var(--ui-typography-margin-heading); }

h1 {
  font-size: var(--ui-typography-h1);
  line-height: var(--ui-typography-h1-leading);
}

h2 {
  font-size: var(--ui-typography-h2);
  line-height: var(--ui-typography-h2-leading);
}

h3 {
  font-size: var(--ui-typography-h3);
  line-height: var(--ui-typography-h3-leading);
}

h4 {
  font-size: var(--ui-typography-h4);
  line-height: var(--ui-typography-h4-leading);
}

h4 {
  font-size: var(--ui-typography-h5);
  line-height: var(--ui-typography-h5-leading);
}

p { margin-bottom: var(--ui-typography-margin-body); }

p:last-child { margin-bottom: 0; }

strong { font-weight: 700; }

small { font-size: var(--ui-typography-s); }

.ui-text-note {
  color: var(--ui-color-typography-note);
  line-height: 1;
}

/*--------------------------------------------------------------
4.0 IMAGE
--------------------------------------------------------------*/

img,
svg {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

/*--------------------------------------------------------------
5.0 LAYOUT
--------------------------------------------------------------*/

.ui-layout-container {
  padding-left: var(--ui-layout-container);
  padding-right: var(--ui-layout-container);
}

.ui-layout-flex,
.ui-layout-grid {
  align-items: center;
  justify-content: center;
}

.ui-layout-flex { display: flex; }

.ui-layout-grid { display: grid; }

/*--------------------------------------------------------------
6.0 COMPONENT
--------------------------------------------------------------*/

/*--------------------------------------------------------------
|
| 6.1 CTA
|
--------------------------------------------------------------*/

.ui-component-cta {
  flex-direction: column;
  row-gap: var(--ui-gap-cta);
}

/*--------------------------------------------------------------
|
| 6.2 FORM
|
--------------------------------------------------------------*/

input,
button {
  color: inherit;
  font-family: inherit;
  font-size: var(--ui-typography-p);
  line-height: 1;
  margin: 0;
  outline: none;
  text-rendering: inherit;
  text-transform: none;
}

/* FORM */

form { width: 100%; }

.ui-component-form {
  background-color: var(--ui-color-form-input);
  border-radius: var(--ui-radius-input);
  grid-template-columns: minmax(0, 1fr) auto;
  padding: .25rem;
}

/* INPUT */

::placeholder { color: var(--ui-color-typography-note); }

.ui-component-input {
  background-color: var(--ui-color-form-input);
  border: .0625rem solid var(--ui-color-form-input);
  border-radius: var(--ui-radius-input);
}

.ui-component-input-medium {
  height: 2.5rem;
  padding: .625rem 1rem .75rem;
}

/*--------------------------------------------------------------
|
| 6.3 BUTTON
|
--------------------------------------------------------------*/

button {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: block;
  padding: 0;
}

.ui-component-button {
  border: .0625rem solid var(--ui-color-brand);
  border-radius: var(--ui-radius-button);
  display: block;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.ui-component-button-primary {
  background-color: var(--ui-color-brand);
  color: var(--ui-color-typography-button);
}

.ui-component-button-medium {
  padding: .625rem .875rem .75rem;
  width: fit-content;
}

/*--------------------------------------------------------------
|
| 6.4 CARD
|
--------------------------------------------------------------*/

.ui-component-card {
  border: .0625rem solid var(--ui-color-border);
  border-radius: var(--ui-radius-card);
  overflow: hidden;
  padding: 2.25rem 1.5rem;
  text-align: center;
  width: 100%;
}

/* left align text within card */
p {
  text-align: left;
  width: 100%;
}

.ui-component-card--image { margin-bottom: 2.25rem; }

.ui-component-card--title { margin-bottom: .5rem; text-align:left;}

/*--------------------------------------------------------------
7.0 SECTION
--------------------------------------------------------------*/

/*--------------------------------------------------------------
|
| 7.1 HEADER
|
--------------------------------------------------------------*/

.ui-section-header {
  padding-bottom: 1.25rem;
  padding-top: 1.25rem;
}

.ui-section-header__layout { justify-content: space-between; }

/*--------------------------------------------------------------
|
| 7.2 HERO
|
--------------------------------------------------------------*/

.ui-section-hero {
  padding-bottom: 5em;
  padding-top: 5rem;
  text-align: center;
}

/*--------------------------------------------------------------
|
| 7.3 CONTENT
|
--------------------------------------------------------------*/

.ui-section-content {
  padding-bottom: 1.25rem;
  padding-top: 1.25rem;
}

.ui-section-content__layout { row-gap: var(--ui-gap-content); }

/*--------------------------------------------------------------
|
| 7.4 CLOSE
|
--------------------------------------------------------------*/

.ui-section-close {
  padding-bottom: 5rem;
  padding-top: 5rem;
  text-align: center;
}

/*--------------------------------------------------------------
|
| 7.5 FOOTER
|
--------------------------------------------------------------*/

.ui-section-footer {
  padding-bottom: 1.25rem;
  padding-top: 1.25rem;
}

.ui-section-footer__layout {
  column-gap: var(--ui-layout-gutter);
}

.ui-section-footer--copyright {
  margin-bottom: 0;
  margin-right: auto;
}

/*--------------------------------------------------------------
8.0 MEDIA
--------------------------------------------------------------*/

/*--------------------------------------------------------------
|
| 8.1 768PX
|
--------------------------------------------------------------*/

@media screen and (min-width: 48rem) {

  /*------------------------------------------------------------
  VARIABLE
  ------------------------------------------------------------*/
  
  :root {

    /*----------------------------------------------------------
    |
    | TYPOGRAPHY
    |
    ----------------------------------------------------------*/

    /* FONT SIZE */

    --ui-typography-h1: 2.1875rem;
    --ui-typography-h2: 1.75rem;
    --ui-typography-h4: 1.125rem;
    --ui-typography-p : 1.125rem;
    --ui-typography-s : 1rem;

    /* MARGIN */

    --ui-typography-margin-body: 1.25rem;

    /*----------------------------------------------------------
    |
    | LAYOUT
    |
    ----------------------------------------------------------*/

    --ui-layout-container: 4.25rem;
    --ui-layout-gutter   : 1.5rem;

    /* GAP */

    --ui-gap-content: 1.5rem;

  }

  /*------------------------------------------------------------
  LAYOUT
  ------------------------------------------------------------*/

  .ui-layout-container,
  .ui-layout-column-center {
    margin-left: auto;
    margin-right: auto;
  }

  .ui-layout-grid-2 {
    column-gap: var(--ui-layout-gutter);
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

  .ui-layout-grid-2 div:nth-of-type(2) {
    justify-self: start;
    position: relative;
    top: calc(30% + (var(--ui-layout-gutter) / 2));
  }

  .ui-layout-grid-2 div:nth-of-type(odd) { justify-self: end; }

  .ui-layout-column-4 {
    width: calc((var(--ui-layout-grid) * 5) +
           (var(--ui-layout-gutter) * 3));
  }

  .ui-layout-column-6 {
    width: calc((var(--ui-layout-grid) * 6) +
           (var(--ui-layout-gutter) * 5));
  }

  /*------------------------------------------------------------
  COMPONENT
  ------------------------------------------------------------*/

  /*------------------------------------------------------------
  |
  | CARD
  |
  ------------------------------------------------------------*/

  .ui-component-card {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  /*------------------------------------------------------------
  SECTION
  ------------------------------------------------------------*/

  /*------------------------------------------------------------
  |
  | HEADER
  |
  ------------------------------------------------------------*/

  .ui-section-header {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }

  /*------------------------------------------------------------
  |
  | CONTENT
  |
  ------------------------------------------------------------*/

  .ui-section-content {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }

  /*------------------------------------------------------------
  |
  | FOOTER
  |
  ------------------------------------------------------------*/

  .ui-section-footer {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
  
}

/*--------------------------------------------------------------
|
| 8.2 1024PX
|
--------------------------------------------------------------*/

@media screen and (min-width: 64rem) {

  /*------------------------------------------------------------
  VARIABLE
  ------------------------------------------------------------*/

  :root {

    /*----------------------------------------------------------
    |
    | LAYOUT
    |
    ----------------------------------------------------------*/

    --ui-layout-container: 0;
  
  }

  /*------------------------------------------------------------
  TYPOGRAPHY
  ------------------------------------------------------------*/

  a { transition: all 250ms ease; }

  a:not(.ui-component-button):hover {
    color: var(--ui-color-typography-body);
  }

  /*------------------------------------------------------------
  LAYOUT
  ------------------------------------------------------------*/
  
  .ui-layout-container { width: 60rem; }

}

/*--------------------------------------------------------------
|
| 8.3 1200PX
|
--------------------------------------------------------------*/

@media screen and (min-width: 75rem) {

  /*------------------------------------------------------------
  VARIABLE
  ------------------------------------------------------------*/

  :root {

    /*----------------------------------------------------------
    |
    | TYPOGRAPHY
    |
    ----------------------------------------------------------*/

    /* FONT SIZE */

    --ui-typography-h1: 2.75rem !important;
    --ui-typography-h2: 2.1875rem !important;
    --ui-typography-h3: 1.8125rem !important;
    --ui-typography-h4: 1.4375rem !important;
    --ui-typography-h5: 1.14rem !important;

    /* MARGIN */

    --ui-typography-margin-heading: 1rem;
    --ui-typography-margin-body   : 1.75rem;

    /*----------------------------------------------------------
    |
    | LAYOUT
    |
    ----------------------------------------------------------*/

    --ui-layout-grid  : 4rem;
    --ui-layout-gutter: 2rem;

    /* GAP */
    
    --ui-gap-content: 2rem;
    
  }

  /*------------------------------------------------------------
  TYPOGRAPHY
  ------------------------------------------------------------*/

  .ui-text-intro { font-size: var(--ui-typography-h4); }

  /*------------------------------------------------------------
  LAYOUT
  ------------------------------------------------------------*/
  
  .ui-layout-container { width: 70rem; }

  /*------------------------------------------------------------
  SECTION
  ------------------------------------------------------------*/

  /*------------------------------------------------------------
  |
  | HEADER
  |
  ------------------------------------------------------------*/

  .ui-section-header {
    padding-bottom: 3rem;
    padding-top: 3rem;
  }

  /*------------------------------------------------------------
  |
  | HERO
  |
  ------------------------------------------------------------*/

  .ui-section-hero {
    padding-bottom: 5.5rem;
    padding-top: 5.5rem;
  }

  /*------------------------------------------------------------
  |
  | CONTENT
  |
  ------------------------------------------------------------*/

  .ui-section-content {
    padding-bottom: 3rem;
    padding-top: 3rem;
  }

  /*------------------------------------------------------------
  |
  | CLOSE
  |
  ------------------------------------------------------------*/

  .ui-section-close {
    padding-bottom: 7.5rem;
    padding-top: 7.5rem;
  }
  
  /*------------------------------------------------------------
  |
  | FOOTER
  |
  ------------------------------------------------------------*/

  /*------------------------------------------------------------
  |
  | Checklist (landing page)
  |
  ------------------------------------------------------------*/
  
  p:last-child, ul:last-child {
      margin-bottom: 0;
  }
  @media screen and (min-width: 75rem)
  .ui-component-list-feature {
      column-gap: var(--ui-layout-gutter);
      grid-template-columns: repeat(2, 1fr);
  }
  .ui-component-list {
      grid-template-columns: 1fr;
      row-gap: 0.75rem;
  }
  


  @media screen and (min-width: 75rem)
  :root {
      --ui-typography-h1: 2.75rem;
      --ui-typography-h2: 2.1875rem;
      --ui-typography-h4: 1.4375rem;
      --ui-typography-margin-heading: 1rem;
      --ui-typography-margin-body: 1.75rem;
      --ui-layout-grid: 4rem;
      --ui-layout-gutter: 2rem;
      --ui-gap-header: 2rem;
      --ui-gap-customer: 4rem;
      --ui-gap-card: 2rem;
      --ui-gap-pricing: 3rem;
  }
  @media screen and (min-width: 64rem)
  :root {
      --ui-layout-container: 0;
  }
  @media screen and (min-width: 48rem)
  :root {
      --ui-typography-h1: 2.1875rem;
      --ui-typography-h2: 1.75rem;
      --ui-typography-p: 1.125rem;
      --ui-typography-s: 1rem;
      --ui-typography-margin-body: 1.25rem;
      --ui-layout-container: 4.25rem;
      --ui-layout-gutter: 1.5rem;
      --ui-gap-header: 1.5rem;
      --ui-gap-card: 1.5rem;
  }
    
  .ui-component-list--item {
      background-size: 1.25rem;
      padding-left: 2rem;
      text-align: left;
  }

  .ui-component-list--item-check {
      background-image: url(images/green_checkmark.svg);
  }
  .ui-component-list--item {
      background-position: left center;
      background-repeat: no-repeat;
      background-size: 1.125rem;
      list-style: none;
      padding-left: 1.875rem;
  }

  hr {border: none;
      height: 1px;
      color: #c8c8c8; /* old IE */
      background-color: #c8c8c8; 
     }



/* Reading layout for the calculator guides. */
.guide-article { max-width: 760px; padding-top: 36px; padding-bottom: 56px; }
.guide-article h1 { font-size: clamp(2rem, 5vw, 2.8rem); line-height: 1.2; }
.guide-article h2 { font-size: 1.5rem; margin-top: 2rem; }
.guide-article p, .guide-article li { line-height: 1.7; }
.guide-cta { background: #edf5f1; border: 1px solid #d4e4dc; border-radius: 8px; padding: 20px; margin-top: 32px; }
/* The spreadsheet remains available beside the online analyzer. */
.analyzer-callout { margin: 1.5rem 0 2rem; padding: 1.4rem; border: 1px solid #ccdeeb; border-radius: .6rem; background: #f2f7fb; }
.analyzer-callout h2 { margin: 0 0 .5rem; font-size: 1.4rem; line-height: 1.3; }
.analyzer-callout p { margin: .5rem 0 1rem; font-size: 1rem; line-height: 1.6; }
.analyzer-callout-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; font-size: 1rem; }
a.analyzer-callout-button { display: inline-block; padding: .75rem 1rem; border-radius: .35rem; background: #195f95; color: #fff; font-weight: 700; text-decoration: none; }
a.analyzer-callout-button:hover { background: #124c79; }
.analyzer-callout a:focus-visible { outline: 3px solid #195f95; outline-offset: 4px; }
.analyzer-callout p.analyzer-callout-note { margin: .8rem 0 0; font-size: .9rem; color: #506276; }
