/* for footer */

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 23px 0 80px;
  color: white;
  background-color: #313538;
  height: 208px;
}

.footer-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.footer-content > nav {
  flex-shrink: 1;
  width: 200px;
}

.footer-content > nav > ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  text-align: left;
  color: #ffffff;
  height: 88px;
}

.footer-content > nav > ul > li {
  line-height: 20px;
  font-size: 14px;
  text-align: left;
  color: #ffffff;
  margin-bottom: 8px;
  border-right: none;
  width: 100px;
}

.footer-content > nav > ul > li:hover {
  color: lightblue;
}

.links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  margin-right: 0;
}

.links img {
  height: 20px;
  width: 20px;
  margin-right: 14px;
  cursor: pointer;
}

.rights {
  width: 100%;
  line-height: 17px;
  font-size: 12px;
  color: #828282;
  text-align: center;
}

.mobile-footer {
  display: flex;
  align-items: center;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  color: white;
  background-color: rgb(49, 53, 56);
  width: 100%;
  margin-left: 0;
}
.mobile-footer img {
  height: 44px;
}

.footer-cart,
.footer-member {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 0;
  font-size: 16px;
  color: white;
}

.footer-cart:hover,
.footer-member:hover {
  color: #8ecae6;
}

.footer-cart .count {
  position: absolute;
  text-align: center;
  background-color: #8b572a;
  font-weight: bold;
  border-radius: 50%;
  color: white;
  opacity: 0.8;
  width: 24px;
  height: 24px;
  line-height: 24px;
  left: calc(25% - 26px);
  top: 24px;
}

.footer-member {
  border-left: 1px solid #828282;
  cursor: pointer;
}

/* media query for footer */
@media (min-width: 1280px) {
  footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 115px;
  }

  .footer-content {
    display: flex;
    flex-direction: row;
  }

  .footer-content > nav {
    width: 754px;
  }

  .footer-content > nav > ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }

  .footer-content > nav > ul > li {
    width: 130px;
    text-align: center;
    line-height: 16px;
    font-size: 16px;
    border-right: 1px solid #f5f5f5;
  }

  .links img {
    width: 50px;
    height: 50px;
  }

  .rights {
    width: 300px;
    line-height: 17px;
    font-size: 12px;
    color: #828282;
    text-align: center;
  }

  .mobile-footer {
    display: none;
  }
}
