footer {
  box-sizing: border-box;
  position: relative;
  background-color: #F6EFE7;
  background-image: url(../../images/logo/clubmedlive-logo.svg);
  background-repeat: no-repeat;
  background-size: auto 70px;
  background-position: center;
  padding: 40px;
  padding-top: 100px;
  width: 100vw;
  min-height: 130px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 640px) {
  footer {
    padding: 125px 30px 30px 30px;
    background-position: center 30px;
  }
}
footer .region-footer {
  margin: auto;
  position: relative;
  width: 980px;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 640px) {
  footer .region-footer {
    flex-direction: column;
    text-align: center;
  }
}
footer .block-blockgroup {
  position: relative;
}
@media screen and (max-width: 640px) {
  footer .block-blockgroup {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  footer nav.menu--footer {
    display: block;
    text-align: center;
  }
  footer nav.menu--footer .menu {
    display: block;
    text-align: left;
  }
  footer nav.menu--footer .menu li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #D5CDC2;
  }
  footer div[id^=block-mainsociallinks] ul.links {
    justify-content: flex-start;
    margin-left: -10px;
  }
  footer #block-creditphotohome {
    margin: 0;
    text-align: left;
  }
}
footer .footer-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
  max-width: 48vw;
}
footer .footer-decoration:before {
  content: "";
  position: absolute;
  display: block;
  right: 0;
  top: 2px;
  width: 100%;
  height: 2px;
  background-color: #1E2643;
  transform: scaleX(0);
  transform-origin: right;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.375s;
  transition-delay: calc(0.375s + 0.2s);
}
footer .footer-decoration:after {
  content: "";
  position: absolute;
  display: block;
  left: -34px;
  top: -6px;
  width: 6px;
  height: 6px;
  background-color: #FDBE00;
  margin-left: 10px;
  vertical-align: middle;
  transform: rotate(45deg);
  transform-origin: center;
  width: 18px;
  height: 18px;
  opacity: 0;
  transform: translateX(10px) rotate(45deg);
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.375s;
  transition-delay: calc(0.375s * 2 + 0.05s);
}
footer.show .footer-decoration:before {
  transform: scaleX(1);
}
footer.show .footer-decoration:after {
  opacity: 1;
  transform: translateX(0) rotate(45deg);
}

body.role-club_med_admin footer {
  display: none !important;
}