/* Site Stylesheet
  1. Global Styles
  2. Typography Styles
  3. Structure Styles
  4. Module Styles
  5. Component Styles
======================================== */

/* 1. Global Styles
======================================== */
* {
    box-sizing: border-box;
  }
  
  html {
    height: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    width: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
  }
  
  body {
    height: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    width: 100%;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }
  
  .clearfix::after {
    content: " ";
    clear: both;
    display: table;
  }
  
  .float-right {
    float: right;
  }
  
  /* 2. Typography Styles
  ======================================== */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: #414546;
    font-family: 'Roboto', Helvetica, sans-serif;
    font-weight: 700;
    transition: font-size 0.25s ease;
  }
  
  h1 {
    font-size: calc(64px / 1.5);
    line-height: 1.25;
  }
  
  h2 {
    font-size: calc(64px / 1.5);
  }
  
  h3 {
    font-size: calc(45px / 1.5);
  }
  
  h4 {
    font-size: calc(23px / 1.5);
  }
  
  @media(min-width: 720px) {
    h1 {
      font-size: calc(64px / 1.25);
    }
  
    h2 {
      font-size: calc(45px / 1.25);
    }
  
    h3 {
      font-size: calc(32px / 1.25);
    }
  
    h4 {
      font-size: calc(23px / 1.25);
    }
  }
  
  @media(min-width: 1024px) {
    h1 {
      font-size: 64px;
    }
  
    h2 {
      font-size: 45px;
    }
  
    h3 {
      font-size: 32px;
    }
  
    h4 {
      font-size: 23px;
    }
  }
  
  p {
    color: #414546;
    font-family: 'Roboto', Georgia, serif;
    font-size: 16px;
    line-height: 23px;
    margin: 0 0 15px;
  }
  
  a {
    color: #42A5F5;
    font-family: 'Roboto', Helvetica, sans-serif;
    font-size: 16px;
    line-height: 23px;
  }
  
  li {
    color: #414546;
    font-family: 'Roboto', Helvetica, sans-serif;
    font-size: 16px;
    line-height: 23px;
    list-style: none;
  }
  
  label {
    color: #414546;
    display: block;
    font-family: 'Roboto', Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    margin-bottom: 5px;
  }
  
  img {
    width: 100%;
  }
  
  b,
  strong {
    font-weight: 700;
  }
  
  small {
    font-family: 'Roboto', Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.25;
  }
  
  /* 3. Structure Styles
  ======================================== */
  .container {
    margin: 0 auto;
    max-width: 1160px;
    padding: 0 15px;
  }
  
  .divider {
    border: none;
    border-bottom: 1px solid #F2F3F5;
    clear: both;
    width: 100%;
    margin: 20px 0;
  }
  
  @media(min-width: 720px) {
    .col-1-2 {
      float: left;
      width: calc(97.5%/2);
    }
  
    .col-1-2:not(:last-child) {
      margin-right: 2.5%;
    }
  
    .col-1-3 {
      float: left;
      width: calc(95%/3);
    }
  
    .col-1-3:not(:last-child) {
      margin-right: 2.5%;
    }
  
    .col-1-4 {
      float: left;
      width: calc(92.5%/4);
    }
  
    .col-1-4:not(:last-child) {
      margin-right: 2.5%;
    }
  }
  
  /* 4. Modules Styles
  ======================================== */
  
  /* Site Navigation */
  .site-header {
    background-color: #34474F;
    padding: 30px 15px 0;
  }
  
  .site-header-nav {
    align-items: center;
    display: flex;
  }
  
  .site-nav-left,
  .site-nav-right {
    align-items: center;
    display: flex;
  }
  
  .site-nav-right {
    float: right;
    margin-left: auto;
  }
  
  .site-nav-left li:not(:first-child),
  .site-nav-right li {
    display: none;
    font-weight: 700;
    line-height: 0;
  }
  
  .site-nav-mobile li {
    display: inline-block;
  }
  
  @media(min-width: 768px) {
    .site-nav-left li:not(:first-child),
    .site-nav-right li {
      display: inline-block;
    }
  
    .site-nav-mobile,
    .site-nav-mobile li {
      display: none;
    }
  }
  
  .site-nav-left li:not(:last-child),
  .site-nav-right li:not(:last-child),
  .site-nav-mobile li:not(:last-child) {
    margin-right: 30px;
  }
  
  .site-nav-left .logo {
    width: 120px;
  }
  
  .site-nav-link {
    color: white;
    text-decoration: none;
  }
  
  .site-nav-link.active {
    color: #FFAA00;
  }
  
  /* Site Footer */
  .footer {
    padding: 30px 30px 60px;
  }
  
  .footer-section {
    margin-bottom: 15px;
  }
  
  @media(min-width: 720px) {
    .footer-section {
      margin-bottom: 0;
    }
  }
  
  .footer .logo {
    margin-bottom: 5px;
    width: 100px;
  }
  
  .footer a  {
    color: #959595;
    text-decoration: none;
  }
  
  .footer p  {
    margin-bottom: 5px;
  }
  
  .footer-email-input {
    margin-right: 2.5%;
    width: 68% !important;
  }
  
  .footer-email-button {
    font-size: 12px !important;
    padding: 10px !important;
    width: 27.5% !important;
  }
  
  @media(min-width: 768px) {
    .footer-email-input {
      width: 57% !important;
    }
  
    .footer-email-button {
      width: 37.5% !important;
    }
  }
  
  /* 5. Component Styles
  ======================================== */
  .alert {
    border-radius: 3px;
    margin-bottom: 15px;
    padding: 10px 15px;
    text-align: left;
  }
  
  .alert-content {
    align-items: center;
    display: flex;
  }
  
  .alert-error {
    background-color: #FC472E;
  }
  
  .alert-error:active {
    border-color: #FC472E;
  }
  
  .alert img {
    display: inline-block;
    height: 15px;
    margin-right: 5px;
    width: 15px;
  }
  
  .alert p {
    color: #FFFFFF;
    display: inline-block;
    margin-bottom: 0;
  }
  
  .button {
    border-radius: 3px;
    color: #FFFFFF;
    display: inline-block;
    font-family: 'Roboto', Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.5s ease;
  }
  
  .button:hover {
    opacity: 0.75;
  }
  
  .button-primary {
    background-color: #00CF63;
  }
  
  .button-secondary {
    background-color: #FFAA00;
  }
  
  .button-full {
    width: 100%;
  }
  
  .button-small {
    font-size: 13px;
    padding: 10px 30px;
  }
  
  .card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.1);
    padding: 30px 30px 15px;
  }
  
  .chip {
    display: flex;
    align-items: center;
  }
  
  .chip-img-container {
    border-radius: 30em;
    float: left;
    margin-right: 15px;
    overflow: hidden;
    height: 60px;
    width: 60px;
  }
  
  .chip-content-container {
    float: left;
  }
  
  .chip-content-title {
    margin-bottom: 0;
  }
  .chip-content-description {
    color: #8F9196;
    margin-bottom: 0;
  }
  
  input,
  select,
  textarea {
    background-color: #FFFFFF;
    border: 1px solid #F2F3F5;
    border-radius: 3px;
    box-shadow: inset 1px 1px 3px 0 rgba(189,191,192,0.10);
    height: 35px;
    margin-bottom: 15px;
    padding: 10px;
    transition: border-color 0.5s ease;
    width: 100%;
  }
  
  input[type="submit"] {
    cursor: pointer;
    height: auto;
    width: auto;
  }
  
  input:active,
  input:focus,
  textarea:active,
  textarea:focus {
    border: 1px solid #CCCCCC;
    outline: none;
  }
  
  textarea {
    height: 100px;
  }
  
  .input-error {
    border-color: #F2F3F5;
  }
  
  .radio-item {
    margin-bottom: 15px;
  }
  
  .radio-item input {
     box-shadow: none;
     display: inline-block;
     margin-bottom: 0px;
  }
  
  /* 6. Page Styles
  ======================================== */
  
  .site-main {
    padding: 60px 15px;
    position: relative;
  }
  
  .site-main-background {
    background-color: #34474F;
    bottom: 0;
    display: block;
    height: 600px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
  }
  
  .site-main-header {
    margin-bottom: 60px;
  }
  
  .site-main-header h1,
  .site-main-header p {
    color: white;
  }
  
  .section-header {
    font-size: 23px;
    line-height: 33px;
    margin-bottom: 15px;
  }
  
  .order-item {
    display: block;
    margin: 50px 0;
  
  }
  
  .item-price {
    text-align: right;
  }
  
  .order-charge li {
    display: block;
  }
  
  .help-box {
    background-color: #FFAA00;
    border-radius: 3px;
    clear: both;
    display: block;
    margin: 30px 15px;
    padding: 0;
  }
  
  .help-box p {
    margin-bottom: 0
  }