footer#main-footer {
  color: #fff;
  background: #2152cf;
  width: 100%;
  min-height: 120px;
  font-size: 14px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px 5px 5px;
  text-align: center;
  position: absolute;
  bottom: 0;
}

footer#main-footer .row {
  margin: 0 0 10px;
}

footer#main-footer .row a {
  color: #fff;
  text-decoration: none;
}

footer#main-footer .row.group {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline-start: 0;
}

footer#main-footer .row.group .links a {
  margin: 0 8px;
}

footer#main-footer .row.group.social a {
  margin: 0 5px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  border-radius: 3px;
}

footer#main-footer .row.group.social a svg {
 height: 20px;
 color: #2152cf;
}

footer#main-footer .row.logo {
  display: flex;
  flex-direction: row;
}

footer#main-footer .row.by-bookplay {
  width: 180px;
}

footer#main-footer .row.info {
  display: flex;
  flex-direction: column;
}

footer#main-footer .row.info div {
  margin: 5px 5px 0;
}

footer#main-footer.hide-links {
  pointer-events: none;
}

footer#main-footer.hide-links .row.group {
  display: none;
}

@media screen and (max-width: 500px), (max-height: 500px) {

  footer#main-footer .row.group .links a {
    /* display: block; */
    margin: 10px;
  }

  footer#main-footer .row.group.social a svg {
    height: 16px;
  }

  footer#main-footer .row {
    font-size: 12px;
  }
}

/* DARK MODE */
body.dark footer#main-footer {
  background: rgb(18, 18, 18);
}