.container {
  width: 95%;
  padding-top: 20px;
  padding-bottom: 30px;
  background-color: #F5E6CE;
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.container.logo {
  display: flex;
  border: none;
  background-color: #fff;
  text-align: right;
  padding: 10px 0 0;
  box-shadow: none;
}
.container.logo .line {
  background: url('../img/logo2_line.png') repeat-x right / auto 100%;
}
@media (max-width: 767px) {
  .container.logo .line {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .container.logo .line {
    width: 65%;
  }
}
@media (max-width: 767px) {
  .container.logo img {
    min-width: 250px;
    width: 50%;
    height: 100%;
  }
}
@media (min-width: 768px) {
  .container.logo img {
    width: 35%;
    height: 100%;
  }
}
.customer.header {
  position: relative;
  height: 60px;
  border: 1px solid #eee;
  border-raduis: 3px;
  background-color: #F5C87F;
}
.customer.header .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  text-align: center;
  white-space: nowrap;
}
.customer.header .title a {
  color: #545454;
  text-decoration: none;
}
.invoice-container {
  margin-top: 10px;
  padding: 0 10px;
  background-color: #fff;
  border-radius: 3px;
  padding: 1px 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
}
.invoice-container li {
  display: flex;
  justify-content: space-between;
  padding: 5px 10px;
  margin: 10px 0;
  background-color: #F5E6CE;
  line-height: 44px;
  font-size: 19px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.19);
  border-radius: 3px;
}
