.fixed-header {
  display: flex;
  position: fixed;
  left: 0;
  top: -60px;
  width: 100vw;
  height: 56px;
  background: #fff;
  color: black;
  box-shadow: 0px 2px 7px rgba(0,0,0,0.32);
  z-index: 12;
  opacity: 0;
}
.fixed-coupon {
  position: fixed;
  animation:.7s ease-out forwards fixedcoupon;
  top: 0px;
}
.fixed-coupon .kupon-pro-content {
  max-height: calc(100vh - 400px);
  overflow: hidden;
  overflow-y:scroll;
}
.fixed-header.active {
  transition: all ease-out .2s;
  top:0px;
  opacity:1;
}

.fh-logo {
  margin: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -2px;
  font-family: 'Open Sans', sans-serif;
}

.fh-menus {
  display: flex;
  justify-content: left;
  align-items: center;
  flex: 1;
}

.fh-menus>li>a {
  padding: 0 8px;
  color: black;
}
.fh-user {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.fh-user>button {
  margin-left:10px;
}

.fh-button {
  position: relative;
  display: inline-block;
  float: left;
  height: 45px;
  line-height: 45px;
  text-align: center;
  vertical-align: middle;
  border-radius: 4px;
  padding: 0px 30px;
  border:none;
}

@keyframes fixedcoupon {
  0% { top:45px; }
  100% { top:65px; }
}
