.countdown {
  position: relative;
}
header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  width: 100%;
  height: 70px;
  max-width: 1600px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 15px 30px;
  z-index: 210;
  position: sticky;
  top: 0;
}
@media screen and (min-width: 1080px) {
  header {
    height: 130px;
    align-items: flex-end;
    padding: 15px 50px;
  }
}
header a {
  color: #000000;
  font-weight: 400;
  text-decoration: none;
  border: none;
}
header .logo {
  position: relative;
  width: 150px;
}
@media screen and (min-width: 1080px) {
  header .logo {
    width: 200px;
  }
}
@media screen and (min-width: 1400px) {
  header .logo {
    width: 250px;
  }
}
header .logo span {
  display: none;
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-top: 5px;
}
@media screen and (min-width: 1400px) {
  header .logo span {
    display: block;
  }
}
header .nav-list {
  list-style: none;
  padding: 0;
  clear: both;
}
header .nav-item {
  position: relative;
}
header .nav-link {
  display: block;
  width: 100%;
  position: relative;
  color: #000000;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}
header .main {
  display: none;
  width: calc(100% - 240px);
}
@media screen and (min-width: 1080px) {
  header .main {
    display: block;
  }
}
@media screen and (min-width: 1400px) {
  header .main {
    width: calc(100% - 290px);
  }
}
header .main .nav-list {
  width: 100%;
  text-align: center;
}
header .main .nav-item {
  display: inline-block;
  margin: 0 20px;
}
@media screen and (min-width: 1200px) {
  header .main .nav-item {
    margin: 0 35px;
  }
}
header .main .nav-link {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 10px 0;
  text-transform: uppercase;
}
@media screen and (min-width: 1200px) {
  header .main .nav-link {
    font-size: 0.95rem;
  }
}
header .main .nav-link.selected {
  font-weight: 700;
}
header .main .nav-link:before {
  content: '';
  display: none;
  width: 100%;
  height: 5px;
  background: #F4BD56;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  opacity: 0;
  transition: all 300ms ease;
}
@media screen and (min-width: 1080px) {
  header .main .nav-link:before {
    display: block;
  }
}
header .main .nav-link:hover:before,
header .main .nav-link.selected:before {
  opacity: 1;
}
header .meta {
  position: absolute;
  top: 20px;
  right: 50px;
}
header .meta .nav-list {
  display: none;
}
@media screen and (min-width: 1080px) {
  header .meta .nav-list {
    display: inline-block;
  }
}
header .meta #shopcartprw {
  display: inline-block;
  height: 100%;
  padding: 0;
  background-image: url('images/icon-cart.svg');
  background-size: 100% 100%;
  overflow: visible !important;
  height: 26px;
  width: 26px;
  vertical-align: bottom;
  margin: 0 50px 0 0;
}
@media screen and (min-width: 1080px) {
  header .meta #shopcartprw {
    margin: 0 16px 0 0;
  }
}
header .meta #shopcartprw h6 {
  display: none;
}
header .meta #shopcartprw a {
  display: block;
  width: 20px;
  height: 20px;
}
header .meta #shopcartprw #ttl {
  display: none;
}
header .meta #shopcartprw #cnt {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, 65%);
  height: 20px;
  width: 20px;
  border-radius: 70px;
  background: #F4BD56;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-size: 0.8rem;
}
header .meta #shopcartprw #cnt label {
  display: none;
}
header .meta .nav-item {
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}
header .meta:last-child {
  margin-right: 0;
}
header .meta .nav-link {
  font-family: 'Roboto Condensed';
  text-decoration: underline;
}
header .mobile {
  bottom: 25px;
  right: 30px;
}
@media screen and (min-width: 1080px) {
  header .mobile {
    right: 50px;
  }
}
