.footer {
  max-width: 1280px;
  margin: 100px auto 0;
  padding: 0 16px;
  box-sizing: border-box;
}

.footer .top {
  margin: 40px 0;
}

.footer .top > div {
  margin-top: 30px;
}

.footer .top .title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer .top .link_cont {
  margin-bottom: 4px;
}

.footer .top .link {
  text-decoration: none;
  font-size: 13px;
  line-height: 20px;
}

.footer .top .link:hover {
  text-decoration: underline;
}

@media (min-width: 786px) {
  .footer .top {
    display: flex;
    justify-content: space-between;
    gap: 32px;
  }

  .footer .top > div {
    width: 100%;
  }
}



.footer .bottom {
  font-size: 11px;
  line-height: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer .bottom_left,
.footer .bottom_middle,
.footer .bottom_right {
  width: 100%;
}

.footer .bottom_left {
  order: 2;
}

.footer .bottom_links .link {
  display: inline-block;
  text-decoration: none;
}

.footer .bottom_links .link + .link::before {
  content: "|";
  margin: 0 10px;
}

.footer .bottom_links .link:hover {
  text-decoration: underline;
}

.footer .bottom_right {
  order: 1;
}

.footer .bottom_middle {
  order: 3;
}

.footer .barcode_link {
  display: block;
}

.footer .barcode {
  width: 120px;
  height: auto;
  display: block;
}

.footer .logo {
  text-decoration: none;
  font-size: 30px;
  text-transform: uppercase;
  text-align: left;
}

@media (min-width: 786px) {
  .footer .bottom {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
  }

  .footer .bottom_left {
    order: 1;
    margin-bottom: 20px;
    width: auto;
  }

  .footer .bottom_middle {
    order: 2;
    width: auto;
    align-self: flex-end;
    margin-bottom: 1px;
  }

  .footer .bottom_right {
    order: 3;
    width: auto;
    align-self: center;
    margin-bottom: 15px;
  }

  .footer .logo {
    text-align: right;
  }

