/**
 * /user/assets/styles/html/footer.css
 *
 * @author Pablo Rubio
 * @version 1.0
 */

#footer {
  position: relative;
  z-index: 500;
  display: block;
  padding: 24px 24px 24px 204px;
  width: 100%;
  height: 240px;
  background-color: #004245;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
}

#footer:after {
  display: block;
  clear: both;
  content: '';
}

#footer .island {
  float: left;
  margin: 0px 0px 0px -180px;
  opacity: 0.6;
  width: 180px;
  height: 180px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('../../images/html/footer/island.png');
}

#footer ul {
  margin: 0px;
  padding: 54px 0px;
  list-style: none;
  text-align: center;
}

#footer ul li {
  margin: 0px 6px;
  padding: 0px;
  display: inline-block;
  vertical-align: middle;
}

#footer ul li a {
  font-size: 0em;
  line-height: 0em;
  text-decoration: none;
}

@media all and (max-width: 840px) {
  #footer {
    padding: 24px;
    height: 180px;
  }

  #footer ul {
    display: none;
  }

  #footer .island {
    float: none;
    margin: 0px auto;
    opacity: 0.6;
    width: 100px;
    height: 100px;
  }
}
