/**
 * Footer CSS - GroupeLDLC Theme
 * Footer and Go-To-Top button styles
 */

#footer {
  background: transparent;
  min-height: 100px;
  
  color: #7d7d7d;
  font-size: 14px;
  line-height: 24px;
  padding: 90px 0 50px;
  font-weight: 500;
  text-align: center;
}

/* Go To Top button */
#top {
  width: 60px;
  height: 60px;
  background: #ccc;
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  bottom: 70px;
  right: 30px;
  z-index: 9999;
  visibility: hidden;
  -webkit-transition:
    background 150ms linear,
    opacity 500ms linear,
    visibility 500ms linear;
  transition:
    background 150ms linear,
    opacity 500ms linear,
    visibility 500ms linear;
  opacity: 0;
}

#tarteaucitronIcon {
  right: 24px;
}

.no-touch #top:hover {
  background: #000;
}

#top.show {
  opacity: 1;
  visibility: visible;
}
