
  footer {
    padding: 1em 1em 4em 1em;
    
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
  }
  
  footer::before {
    background-color: #fbfbfb;
  }
  
  footer > section {
    padding: 1em 0.5em;
    box-sizing: border-box;
  }
  
  footer > section img {
    width: 100%;
    max-width: 10em;
  }
  
  footer > section:first-of-type p {
    max-width: 15em;
  }
  
  footer > section > a {
    display: block;
    margin-top: 0.5em;
    
    color: #333333;
  }
  
  footer > section > p {
    margin-top: 0.5em;
  }
  
  #footnote {
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    justify-content: center;
    text-align: center;
    border-top: 0.05em solid #e0e0e0;
    color: #333333;
    padding: 0.5em 0em;
  }
  
  #footnote p,
  #footnote a {
    font-size: 0.8em;
    color: #333333;
  }
  
  #footnote > div > p {
    margin: 0em;
  }
  
  #footnote > div > .separator:first-of-type {
    display: none;
  }
  
  #footnote > div > .separator::after {
    content: "|";
    margin: 0em 0.5em;
  }
  
  #footnote div:first-of-type > p::before {
    font-family: "FONT_AWESOME_REGULAR";
    content: "\f1f9";
  }
  
  #paymentMethods {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    margin-top: 1em;
  }
  
  #paymentMethods > p {
    margin: 0em 1em 0em 0em;
  }
  
  #paymentMethods .paypal {
    margin-left: 0.5em;
  }
  
  .paypal::before {
    font-family: "FONT_AWESOME_BRANDS";
    content: "\f1f4";
    font-size: 1.5em;
  }
  
  #paymentMethods > i {
    font-size: 2em;
  }
  
  #facebook,
  #instagram,
  #linkedin {
    display: inline-block;
    margin-top: 0.5em;
  }
  
  a#facebook::before {
    font-family: "FONT_AWESOME_BRANDS";
    font-size: 1.5em;
    content: "\f39e";
    margin-right: 0.5rem;
    color: #3f4d67;
  }
  
  a#instagram::before {
    font-family: "FONT_AWESOME_BRANDS";
    font-size: 1.5em;
    content: "\f16d";
    margin-right: 0.5rem;
    color: #3f4d67;
  }
  
  a#linkedin::before {
    font-family: "FONT_AWESOME_BRANDS";
    font-size: 1.5em;
    content: "\f0e1";
    color: #3f4d67;
  }
  
  #footnote .copyright {
    margin: 0.5em 0em;
  }
  
  #footnote .copyright > a {
    font-size: inherit;
  }
  
  #whatsAppBtn {
    
    position: fixed;
    bottom: 0.9rem;
    right: 0.75rem;
    
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    
    padding: 0.75rem;
    
    border-radius: 50%;
    
    color: #ffffff;
    background: #22b558;
    
    text-decoration: none;
  }
  
  #whatsAppBtn img {
    
    width: 2rem;
  }

  @media screen and (min-width: 550px) {
    
    footer {
      flex-flow: row wrap;
      justify-content: space-between;
      
      padding: 1em 1em 3em 1em;
    }
    
    footer > section {
      flex: 0 0 calc(100%/2);
    }
    
    #footnote {
      flex: 0 0 100%;
      flex-flow: row wrap;
    }
    
    #footnote > div:first-of-type {
      display: flex;
      flex-flow: row wrap;
      align-items: center;
      justify-content: flex-start;
    }
    
    #paymentMethods {
      flex: 0 0 100%;
    }
    
    #footnote > div > .separator:first-of-type {
      display: block;
    }
  }

  @media screen and (min-width: 800px) {
    
    footer > section {
      flex: 0 0 calc(100%/4);
    }
    
    #footnote {
      
      justify-content: flex-start;
    }
    
    #paymentMethods {
      flex: initial;
      margin-left: auto;
      margin-top: 0em;
    }
    
    #footnote .copyright {
      flex: 0 0 100%;
    }
  }
