/* Fonts */
@font-face {
  font-family: 'AvantGardeGothic';
  src: url(../fonts/AvantGardeGothic_Light.woff);
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'AvantGardeGothic';
  src: url(../fonts/AvantGardeGothic_Regular.woff);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'AvantGardeGothic';
  src: url(../fonts/AvantGardeGothic_Medium.woff);
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'AvantGardeGothic';
  src: url(../fonts/AvantGardeGothic_Bold.woff);
  font-weight: 700;
  font-style: normal;
}
/* Global */
/* line 32, ../sass/app.scss */
html {
  font-size: 0.9rem;
  height: 100%;
  text-size-adjust: 100%;
  text-render: optimizeLegibility;
}

/* line 39, ../sass/app.scss */
body {
  background: #F2F2F2;
  font-family: "AvantGardeGothic","Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: 400;
  hyphens: none;
  font-smoothing: antialiased;
}

/* line 47, ../sass/app.scss */
hr {
  border-bottom: solid 1px #ddd;
}

/* Typography */
/* line 52, ../sass/app.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "AvantGardeGothic","Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: 400;
}

/* line 62, ../sass/app.scss */
h1 {
  line-height: 48px;
}

/* line 63, ../sass/app.scss */
h4, h5 {
  line-height: 24px;
}

/* F4F4F4  */
/* Inputs */
/* line 69, ../sass/app.scss */
[type='text'],
[type='password'],
[type='date'],
[type='datetime'],
[type='datetime-local'],
[type='month'],
[type='week'],
[type='email'],
[type='number'],
[type='search'],
[type='tel'],
[type='time'],
[type='url'],
[type='color'],
textarea {
  background: #F4F4F4;
  border: solid 1px #ccc;
  box-shadow: none;
  padding: 0.75rem;
  padding-bottom: 0.5rem;
  padding-top: 0.7rem;
}

/* line 92, ../sass/app.scss */
select {
  background: #F4F4F4 url("/crm-portal/assets/dropdown@2x.png") no-repeat right center;
  background-size: 40px 40px;
  border: solid 1px #ccc;
  box-shadow: none;
  font-size: 14px;
}
/* line 99, ../sass/app.scss */
select:focus {
  box-shadow: none;
}

/* line 104, ../sass/app.scss */
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #AAA;
}

/* line 105, ../sass/app.scss */
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #AAA;
}

/* line 106, ../sass/app.scss */
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #AAA;
}

/* line 107, ../sass/app.scss */
input::placeholder, textarea::placeholder {
  color: #AAA;
}

/* line 108, ../sass/app.scss */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

/* Variables */
/* line 122, ../sass/app.scss */
.account--mobile {
  background: url(/crm-portal/assets/header--account@2x.png) no-repeat center center;
  background-size: 80% auto;
  display: block;
  float: left;
  height: 45px;
  margin: 6px 5px;
  padding: 0;
  width: 45px;
}
@media only screen and (min-width: 600px) {
  /* line 122, ../sass/app.scss */
  .account--mobile {
    display: none;
  }
}
/* line 137, ../sass/app.scss */
.account--desktop {
  color: #004964;
  display: none;
  float: left;
  font-weight: 700;
  padding: 25px 40px;
}
@media only screen and (min-width: 600px) {
  /* line 137, ../sass/app.scss */
  .account--desktop {
    display: block;
  }
}

/* Buttons */
/* line 152, ../sass/app.scss */
.button {
  cursor: pointer;
  font-weight: 700;
  margin-right: 10px;
}
/* line 157, ../sass/app.scss */
.button.secondary {
  background-color: transparent;
  border: solid 1px #fff;
  color: #fff;
}
/* line 162, ../sass/app.scss */
.button.secondary:hover, .button.secondary:focus {
  background-color: #fff;
  border: solid 1px #fff;
  color: #004964;
}
/* line 170, ../sass/app.scss */
.button.medium {
  font-size: 1.10rem;
  min-width: 200px;
}
/* line 175, ../sass/app.scss */
.button.stroke {
  background-color: transparent;
  border: solid 1px #004964;
  color: #004964;
}
/* line 180, ../sass/app.scss */
.button.stroke:hover, .button.stroke:focus {
  background-color: #004964;
  border: solid 1px #004964;
  color: #fff;
}
/* line 188, ../sass/app.scss */
.button.tertiary {
  background-color: #fff;
  border: solid 1px #fff;
  color: #004964;
}
/* line 193, ../sass/app.scss */
.button.tertiary:hover, .button.tertiary:focus {
  background-color: #fff;
  border: solid 1px #fff;
  color: #004964;
}

/* line 202, ../sass/app.scss */
.header {
  background: #fff;
  border-bottom: solid 1px #ddd;
  box-shadow: 0 5px 10px -4px rgba(47, 47, 47, 0.2);
  box-sizing: border-box;
  left: 50%;
  height: 60px;
  padding: 0 10px;
  position: fixed;
  text-align: center;
  top: 0;
  transform: translateX(-50%);
  max-width: 1400px;
  width: 100%;
  z-index: 999;
}
@media only screen and (min-width: 600px) {
  /* line 202, ../sass/app.scss */
  .header {
    height: 75px;
    padding: 0 20px;
  }
}
/* line 223, ../sass/app.scss */
.header--branding {
  display: block;
  float: left;
  padding: 9px 0;
  width: 110px;
}
@media only screen and (min-width: 600px) {
  /* line 223, ../sass/app.scss */
  .header--branding {
    width: 150px;
  }
}
/* line 235, ../sass/app.scss */
.header--utilities {
  display: block;
  float: right;
}
@media only screen and (min-width: 600px) {
  /* line 235, ../sass/app.scss */
  .header--utilities {
    display: block;
  }
}
/* line 243, ../sass/app.scss */
.header--utilities .button {
  color: #fff;
  margin: 10px 0;
  min-width: 100px;
  padding: 0.75em 0.5em;
}
@media only screen and (min-width: 600px) {
  /* line 243, ../sass/app.scss */
  .header--utilities .button {
    padding: 0.85em 1em;
    margin: 15px 0;
    min-width: 140px;
  }
}

/* Components */
/* line 262, ../sass/app.scss */
.banner {
  background: #000 url(/crm-portal/assets/banner--001@2x.jpg) no-repeat center center;
  background-size: auto 100%;
  height: 100px;
}
@media only screen and (min-width: 600px) {
  /* line 262, ../sass/app.scss */
  .banner {
    background: #000 url(/crm-portal/assets/banner--001@2x.jpg) no-repeat center center;
    background-size: 100% auto;
    height: 200px;
  }
}

/* line 274, ../sass/app.scss */
.hero {
  background: #000 url(/crm-portal/assets/hero--001@2x.jpg) right center;
  background-size: 100% auto;
  overflow: hidden;
  max-height: 1200px;
  position: relative;
  max-width: 1600px;
  width: 100%;
}
/* line 284, ../sass/app.scss */
.hero--content {
  background: #004964;
  box-sizing: border-box;
  color: #fff;
  float: left;
  max-height: 800px;
  padding: 40px;
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 1000px) {
  /* line 284, ../sass/app.scss */
  .hero--content {
    padding: 200px 80px;
    text-align: left;
    width: 50%;
    z-index: 999;
  }
}
/* line 302, ../sass/app.scss */
.hero .button {
  margin-right: 20px;
  min-width: 180px;
  padding: 0.875em 1.0rem;
}
/* line 308, ../sass/app.scss */
.hero .lead {
  max-width: 600px;
  margin: 0 auto 40px;
}
/* line 313, ../sass/app.scss */
.hero--headline {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
}
@media only screen and (min-width: 1000px) {
  /* line 313, ../sass/app.scss */
  .hero--headline {
    font-size: 48px;
    line-height: 56px;
  }
}

/* line 325, ../sass/app.scss */
.container {
  background: transparent;
}
/* line 328, ../sass/app.scss */
.container-md {
  background: transparent;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
}
/* line 335, ../sass/app.scss */
.container-sm {
  background: transparent;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 10px;
}
/* line 342, ../sass/app.scss */
.container-xs {
  background: transparent;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 10px;
}

/* line 350, ../sass/app.scss */
.form {
  margin: 50px 0;
}
/* line 353, ../sass/app.scss */
.form--action {
  color: #004964;
  float: right;
  margin: 33px 0 -33px 0;
  padding: 0 10px;
}
/* line 360, ../sass/app.scss */
.form--box {
  background: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  margin: 0;
  padding: 40px;
  text-align: center;
}
/* line 368, ../sass/app.scss */
.form--hint {
  color: #AAA;
  font-size: 12px;
}

/* line 375, ../sass/app.scss */
.card--type {
  border: solid 1px #000;
  border-radius: 2px;
  display: none;
  float: right;
  font-size: 10px;
  font-weight: 700;
  height: 20px;
  line-height: 20px;
  overflow: hidden;
  padding: 0 4px;
  position: relative;
  right: 10px;
  text-transform: uppercase;
  top: 34px;
}

/* line 393, ../sass/app.scss */
.list {
  border-radius: 4px;
  clear: both;
  margin: 0 0.75em;
}
/* line 399, ../sass/app.scss */
.list:after {
  display: block;
  content: "";
  clear: both;
}
/* line 407, ../sass/app.scss */
.list fieldset label {
  background: url(/crm-portal/assets/chevron@2x.png) no-repeat 98% center;
  background-size: 16px 16px;
  border: solid 1px #ddd;
  box-sizing: border-box;
  cursor: pointer;
  line-height: 16px;
  margin-bottom: 5px;
  padding: 10px;
  transition: border 0.3s ease;
}
/* line 418, ../sass/app.scss */
.list fieldset label:hover {
  border: solid 1px #000;
}
/* line 422, ../sass/app.scss */
.list fieldset label span {
  display: block;
  font-size: 12px;
}
/* line 427, ../sass/app.scss */
.list fieldset label strong {
  display: block;
}
/* line 435, ../sass/app.scss */
.list--container {
  box-sizing: border-box;
  padding: 10px 50px 20px 55px;
}
/* line 440, ../sass/app.scss */
.list--details {
  border-bottom: solid 1px #ddd;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0 -15px;
  max-height: 0px;
  transition: all 0.5s ease;
}
/* line 449, ../sass/app.scss */
.list--details.open {
  border-bottom: none;
  display: block;
  max-height: 2000px;
}
/* line 456, ../sass/app.scss */
.list--details label {
  font-size: 14px;
  line-height: 14px;
}
/* line 461, ../sass/app.scss */
.list--details strong {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}
/* line 468, ../sass/app.scss */
.list--item {
  cursor: pointer;
  display: none;
  float: left;
  margin-top: 15px;
}
/* line 478, ../sass/app.scss */
.list--item:checked + label:before {
  content: url("/crm-portal/assets/checkmark.svg");
  display: block;
  float: left;
  margin-left: 5px;
  margin-right: 15px;
  margin-top: 5px;
  height: 20px;
  width: 20px;
}
/* line 489, ../sass/app.scss */
.list--item:checked + label + .list--details {
  max-height: 2000px;
}
/* line 495, ../sass/app.scss */
.list--item + label {
  display: block;
  line-height: 16px;
  margin: 0 -0.75em;
  padding: 10px;
}
/* line 501, ../sass/app.scss */
.list--item + label:before {
  content: "";
  display: block;
  float: left;
  margin-left: 5px;
  margin-right: 15px;
  margin-top: 8px;
  height: 20px;
  width: 20px;
}
/* line 512, ../sass/app.scss */
.list--item + label:hover {
  background: #f2f2f2;
}
/* line 516, ../sass/app.scss */
.list--item + label strong {
  display: block;
  font-size: 16px;
  line-height: 20px;
}

/* line 526, ../sass/app.scss */
.order--item {
  border: solid 1px #ddd;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 20px;
  padding: 10px 20px;
}
/* line 533, ../sass/app.scss */
.order--item .multiselect {
  padding: 5px 0 0 0;
  margin: 5px 0;
}
/* line 537, ../sass/app.scss */
.order--item .multiselect--item {
  margin: 0 5px 5px 0;
  padding: 0 10px 0 30px;
  width: 60%;
}
/* line 542, ../sass/app.scss */
.order--item .multiselect--item.active {
  background: #fff;
  border: solid 1px #ddd;
  color: #000;
}
/* line 547, ../sass/app.scss */
.order--item .multiselect--item.active:after, .order--item .multiselect--item.active:before {
  background: #ddd;
}
/* line 552, ../sass/app.scss */
.order--item:after {
  clear: both;
  content: "";
  display: block;
}
/* line 558, ../sass/app.scss */
.order--item a {
  display: block;
  float: right;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 0;
  text-transform: uppercase;
}
/* line 567, ../sass/app.scss */
.order--item a:hover {
  text-decoration: underline;
}
/* line 572, ../sass/app.scss */
.order--item dl {
  font-size: 12px;
  line-height: 16px;
}
/* line 576, ../sass/app.scss */
.order--item dl dt,
.order--item dl dd {
  border-bottom: dotted 1px #ddd;
  box-sizing: border-box;
  display: block;
  float: left;
  padding-bottom: 4px;
}
/* line 584, ../sass/app.scss */
.order--item dl dt:last-of-type,
.order--item dl dd:last-of-type {
  border: none;
}
/* line 589, ../sass/app.scss */
.order--item dl dt {
  clear: left;
  width: 30%;
}
/* line 594, ../sass/app.scss */
.order--item dl dd {
  width: 70%;
}
/* line 601, ../sass/app.scss */
.order--item strong {
  border-bottom: solid 3px #000;
  display: block;
  margin-bottom: 10px;
}

/* line 609, ../sass/app.scss */
.orders {
  background: url(/crm-portal/assets/chevron@2x.png) no-repeat 98% center;
  background-size: 16px 16px;
  border: solid 1px #ddd;
  border-radius: 2px;
  color: #555;
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  margin: 10px 0;
  padding: 10px 20px;
}
/* line 622, ../sass/app.scss */
.orders div:first-of-type {
  color: #000;
  font-size: 16px;
  font-weight: bold;
}

/* line 631, ../sass/app.scss */
.popover {
  cursor: pointer;
  position: relative;
}
/* line 637, ../sass/app.scss */
.popover:hover .popover--panel {
  opacity: 1;
  transform: translateX(-50%) translateY(0px);
  visibility: visible;
}
/* line 645, ../sass/app.scss */
.popover--panel {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25), 0 0 1px rgba(0, 0, 0, 0.35);
  color: #000;
  left: 50%;
  line-height: 16px;
  min-width: 300px;
  opacity: 0;
  padding: 20px;
  position: absolute;
  transform: translateX(-50%) translateY(10px);
  transition: all 0.3s ease;
  visibility: hidden;
}
/* line 660, ../sass/app.scss */
.popover--panel strong {
  display: block;
}
/* line 664, ../sass/app.scss */
.popover--panel:after {
  background: #fff;
  box-shadow: -1px -1px 1px -1px rgba(0, 0, 0, 0.44);
  content: '';
  display: block;
  height: 14px;
  left: 50%;
  position: absolute;
  transform: rotate(45deg) translateX(-50%);
  width: 14px;
  top: 0;
}

/* line 679, ../sass/app.scss */
.progress {
  background: transparent;
  border-bottom: solid 1px #ddd;
  height: auto;
}
/* line 684, ../sass/app.scss */
.progress--container {
  margin: 0 auto;
  max-width: 800px;
}
/* line 689, ../sass/app.scss */
.progress--indicator {
  list-style: none;
  width: 100%;
  margin: 20px auto 30px;
  padding: 0;
  display: table;
  table-layout: fixed;
}
/* line 697, ../sass/app.scss */
.progress--indicator > li {
  position: relative;
  display: table-cell;
  text-align: center;
  font-size: 1.5em;
}
/* line 703, ../sass/app.scss */
.progress--indicator > li::after {
  content: '';
  position: absolute;
  display: block;
  background: #e6e6e6;
  width: 100%;
  height: 0.15em;
  top: 50%;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  left: 50%;
  margin-left: 1.5em\9;
  z-index: 0;
}
/* line 719, ../sass/app.scss */
.progress--indicator > li:last-child:after {
  display: none;
}
/* line 723, ../sass/app.scss */
.progress--indicator > li::before {
  content: attr(data-step);
  display: block;
  margin: 0 auto;
  background: #e6e6e6;
  width: 0.75em;
  height: 0.75em;
  text-align: center;
  margin-bottom: 0.25em;
  line-height: 1.5em;
  border-radius: 100%;
  position: relative;
  z-index: 99;
}
/* line 738, ../sass/app.scss */
.progress--indicator > li span {
  position: absolute;
  color: #e6e6e6;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-weight: 600;
  font-size: 0.675rem;
  letter-spacing: 0.05px;
  text-transform: uppercase;
}
@media only screen and (min-width: 600px) {
  /* line 738, ../sass/app.scss */
  .progress--indicator > li span {
    font-size: 0.875rem;
  }
}
/* line 754, ../sass/app.scss */
.progress--indicator > li.is-current {
  color: #819ba5;
}
/* line 757, ../sass/app.scss */
.progress--indicator > li.is-current::before {
  color: #fefefe;
  background: #819ba5;
}
/* line 762, ../sass/app.scss */
.progress--indicator > li.is-current span {
  color: #819ba5;
}
/* line 767, ../sass/app.scss */
.progress--indicator > li.is-complete {
  color: #004964;
}
/* line 770, ../sass/app.scss */
.progress--indicator > li.is-complete::before, .progress--indicator > li.is-complete::after {
  color: #fefefe;
  background: #004964;
}
/* line 776, ../sass/app.scss */
.progress--indicator > li.is-complete span {
  color: #004964;
}

/* line 787, ../sass/app.scss */
.menu-text {
  display: none !important;
}
@media only screen and (min-width: 800px) {
  /* line 787, ../sass/app.scss */
  .menu-text {
    display: table-cell !important;
  }
}
/* line 795, ../sass/app.scss */
.menu img {
  position: relative;
  top: -2px;
  width: 30px;
}
@media only screen and (min-width: 800px) {
  /* line 795, ../sass/app.scss */
  .menu img {
    width: 20px;
  }
}
/* line 805, ../sass/app.scss */
.menu span {
  display: none;
}
@media only screen and (min-width: 800px) {
  /* line 805, ../sass/app.scss */
  .menu span {
    display: inline;
  }
}
/* line 813, ../sass/app.scss */
.menu li {
  padding: 10px 0 5px 0;
}
/* line 818, ../sass/app.scss */
.menu li.active > a {
  background: transparent;
  color: #004964;
  font-weight: 700;
}
/* line 826, ../sass/app.scss */
.menu-centered {
  border-bottom: solid 1px #ddd;
  padding: 0;
}

/* line 832, ../sass/app.scss */
.multiselect {
  clear: both;
  margin-bottom: 20px;
}
/* line 836, ../sass/app.scss */
.multiselect:after {
  clear: both;
  content: "";
  display: block;
}
/* line 842, ../sass/app.scss */
.multiselect--item {
  border: solid 1px #004964;
  border-radius: 2px;
  cursor: pointer;
  color: #004964;
  display: block;
  float: left;
  font-size: 11px;
  font-weight: bold;
  height: 34px;
  line-height: 36px;
  margin: 0 10px 10px 0;
  padding: 0 10px 0 30px;
  position: relative;
  transition: all 0.3s ease;
  text-align: left;
  width: 40%;
}
@media screen and (max-width: 39.9375em) {
  /* line 842, ../sass/app.scss */
  .multiselect--item {
    width: 45%;
  }
}
/* line 864, ../sass/app.scss */
.multiselect--item:hover {
  background: #004964;
  color: #FFF;
}
/* line 869, ../sass/app.scss */
.multiselect--item.active {
  background: #004964;
  color: #FFF;
}
/* line 873, ../sass/app.scss */
.multiselect--item.active:after {
  background: #fff;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  left: 9px;
  top: 17px;
  width: 6px;
}
/* line 884, ../sass/app.scss */
.multiselect--item.active:before {
  background: #fff;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  left: 11px;
  top: 15px;
  width: 12px;
}
/* line 895, ../sass/app.scss */
.multiselect--item.active:after {
  transform: rotate(45deg);
}
/* line 899, ../sass/app.scss */
.multiselect--item.active:before {
  transform: rotate(-45deg);
}

/* line 906, ../sass/app.scss */
.segment {
  border: solid 1px #004964;
  border-radius: 4px;
  display: table;
  table-layout: fixed;
  width: 100%;
}
/* line 913, ../sass/app.scss */
.segment input[type="radio"] {
  display: none;
}
/* line 917, ../sass/app.scss */
.segment input[type="radio"]:checked + label {
  background: #004964;
  color: #fff;
}
/* line 924, ../sass/app.scss */
.segment label {
  color: #004964;
  display: table-cell;
  font-size: 14px;
  font-weight: 700;
  height: 32px;
  line-height: 36px;
  text-align: center;
}

/* line 935, ../sass/app.scss */
.totals {
  font-size: 14px;
  margin: 20px 0;
}
/* line 939, ../sass/app.scss */
.totals .row {
  border-bottom: solid 1px #ddd;
  margin: 0;
}
/* line 943, ../sass/app.scss */
.totals .row .columns {
  padding: 5px 0;
}
/* line 947, ../sass/app.scss */
.totals .row:first-of-type {
  border-bottom: solid 3px #000;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 5px;
  text-transform: uppercase;
}
/* line 955, ../sass/app.scss */
.totals .row:last-of-type {
  border: none;
}

/* Section Styles */
/* line 963, ../sass/app.scss */
footer {
  color: #555;
  font-size: 12px;
  padding: 30px 0;
  text-align: center;
}
/* line 969, ../sass/app.scss */
footer a {
  border-left: solid 1px #aaa;
  display: inline-block;
  line-height: 12px;
  margin-left: 10px;
  padding: 0 0 0 15px;
}
@media screen and (max-width: 39.9375em) {
  /* line 969, ../sass/app.scss */
  footer a {
    border: none;
    border-bottom: solid 1px #aaa;
    display: block;
    margin: 0;
    padding: 10px;
    text-align: center;
  }
  /* line 984, ../sass/app.scss */
  footer a:first-of-type {
    border-top: solid 1px #aaa;
    margin-top: 30px;
  }
}

/* line 992, ../sass/app.scss */
main {
  background: #fff;
  box-shadow: 5px 0 10px -4px rgba(47, 47, 47, 0.2), -5px 0 10px -4px rgba(47, 47, 47, 0.2), 0 5px 10px -4px rgba(47, 47, 47, 0.2);
  display: block;
  min-height: 100%;
  margin: 0 auto;
  /*max-width: 1400px;*/
  overflow: hidden;
  padding-top: 40px;
}
@media only screen and (min-width: 600px) {
  /* line 992, ../sass/app.scss */
  main {
    padding-top: 53px;
  }
}
