/* 
desktop
--------
width: 1290px 
 */


p.center-msg {
  text-align: center;
  font-size: 16px;
  line-height: 26px;
}

.separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 18px 0;
}

.separator::before,
.separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgb(120,120,120);
}

.separator:not(:empty)::before {
  margin-right: .25em;
}

.separator:not(:empty)::after {
  margin-left: .25em;
}

.modal img {
  width: 700px;
  max-width: 100%;
}

.modal {
  font-family: "meiryo", 'Noto Sans TC', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0;
  color: rgb(120,120,120);
}

.modal p {
  margin: 4px 0;
  font-size: 14px;
  line-height: 22px;
  text-align: justify;
}

.modal #addon-list {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin: 18px 0;
}

.modal #addon-list .addon-item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 10px 0;
}

.modal #addon-list .addon-item img {
  width: 35%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.modal #addon-list .addon-item div.desc {
  width: 60%;
}

.modal #addon-list .addon-item div.desc p.title {
  line-height: 20px;
  color: black;
  margin: 0;
  text-align: left;
}

.modal span.price {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: rgb(250,100,0);
}

.modal span.price .line-through {
  text-decoration:line-through;
  text-decoration-thickness: 2px;
}

.cvs-group {
  display: block;
}

.cvs-group input[type="radio"] {
  position: fixed;
  opacity: 0;
}

.cvs-group input[type="radio"]+label {
  cursor: pointer;
  padding: 5px;
  font-size: 14px;
  border: 1px solid black;
  border-radius: 3px;
  box-sizing: border-box;
  margin: 5px 2px;
  display: inline-block;
}

.cvs-group input[type="radio"]+label:hover {
  color: rgb(250,100,0);
}

.cvs-group input[type="radio"]:checked+label {
  color: rgb(250, 100, 0);
  font-weight: 600;
}

.product-desc div.customer-review {
  max-height: 210px;
  overflow-y: hidden;
  margin-bottom: 40px;
}

.product-desc div.customer-review.expanded {
  max-height: none;
}

.product-desc div.customer-review .read-more {
  position: absolute;
  bottom: -30px;
  right: 0;
  font-family: 'Poppins', 'Noto Sans TC', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: none;
}

.product-desc div.customer-review p {
  position: relative;
  white-space: pre-line;
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.1px;
  color: rgb(120,120,120);
  padding: 0;
  margin: 0;
  word-break: normal;
  text-align: justify;
}

.product-desc p.customer-review-heading {
  font-family: 'Poppins', 'Noto Sans TC', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 36px;
  margin: 0 0 20px 0;
  color: black;
  letter-spacing: 0.5px;
}

.product-desc span.write-review {
  font-size: 16px;
  line-height: 20px;
  padding: 0;
}

p.num-sold {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: rgb(51,51,51);
  margin: 0;
}

span.nowrap {
  white-space: nowrap;
}

.blink {
  animation: blinker 2s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

div#streaming-msg {
  box-sizing: border-box;
  width: 100%;
  padding: 20px 30px 20px 50px;
  border: 2px solid red;
  margin-bottom: 20px;
  border-radius: 5px;
  position: relative;
}

div#streaming-msg #red-dot {
  position: absolute;
  top: 22.5px;
  left: 22.5px;
  font-size: 17px;
  color: red;
}

.product-desc #streaming-msg p.streaming {
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  margin: 0;
}

@media screen and (max-width: 1289px) {
  .product-desc #streaming-msg p.streaming {
    font-size: 15px;
    line-height: 25px;
  }

  div#streaming-msg #red-dot {
    font-size: 15px;
    top: 21px;
    left: 24px;
  }
}

.tooltip {
  position: relative;
  margin: 0;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 70px;
  height: 17px;
  line-height: 17px;
  font-size: 12px;
  background-color: rgb(51,51,51);
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  margin-left: -33px;
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  bottom: 100%;  /* At the top of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent rgb(51,51,51) transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

@media screen and (max-width: 1289px) {
  .tooltip .tooltiptext {
    top: -5px;
    right: 105%;
    left: unset;
    margin-left: unset;
    margin-right: 5px;
  }

  .tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 50%;
    left: 100%; /* To the right of the tooltip */
    bottom: unset;
    margin-left: unset;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgb(51,51,51);
  }
}


div#quickview-container .added {
  display: none;
  color: green;
  align-items: center;
  justify-content: flex-end;
  font-size: 16px;
  line-height: 17px;
}

div#quickview-container .added .material-icons {
  font-size: 17px !important;
  padding-right: 3px;
}

div#quickview-container .add-to-cart,
div#quickview-container .addon-add-to-cart {
  text-align: right;
  color: rgba(250,100,0, 0.7);
  cursor: pointer;
  font-size: 16px !important;
  line-height: 17px;
  padding: 0;
  display: flex;
    align-items: center;
    justify-content: flex-end;
}

div#quickview-container .add-to-cart .material-icons {
  font-size: 17px !important;
  padding-right: 3px;
}

div#quickview-container .add-to-cart:hover {
  color:rgb(250,100,0);
}



div#quickview-background {
  background-color: rgba(0,0,0,0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

div#quickview-container {
  width: 800px;
  max-height: 90vh;
  overflow: scroll;
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  font-family: 'Poppins', 'Noto Sans TC', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgb(51,51,51);
  position: relative;
  max-width: 95vw;
  box-sizing: border-box;
}

div#quickview-container div#the-book {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 20px 0 40px 0;
}

div#quickview-container div#the-book img {
  width: 230px;
  height: 230px;
  object-fit: cover;
}

div#quickview-container div#the-book div {
  width: 470px;
  height: 230px;
}

div#quickview-container div#the-book div p {
  margin: 5px 0 10px 0;
  font-size: 15px;
  line-height: 26px;
}

div#quickview-container div#the-book div p span.price {
  padding-left: 10px;
  font-weight: 400;
  color: rgb(250,100,0);
}


@media screen and (max-width: 1289px) {
  div#quickview-container {
    height: 73vh;
    padding: 20px;
    top: -2vh;
  }

  div#quickview-container div#the-book {
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    margin: 20px 0;
  }

  div#quickview-container div#the-book img {
    width: 200px;
    height: 200px;
    margin-top: -20px;
  }

  div#quickview-container div#the-book div {
    width: 100%;
    height: auto;
  }

  div#quickview-container div#the-book div p {
    line-height: 20px;
  }
}


div#quickview-container span#close-btn {
  cursor: pointer;
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 30px !important;
}

div#quickview-container div#addon-list {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}

div#quickview-container div#addon-list::after {
  content: "";
  width: 230px;
}

div#quickview-container div#addon-list div.item {
  width: 230px;
  height: 300px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  margin: 0 0 15px 0;
  border-radius: 15px;
  overflow: hidden;
}

div#quickview-container div#addon-list div.item img {
  width: 230px;
  height: 190px;
  object-fit: cover;
}

div#quickview-container div#addon-list div.item p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin: 10px 0;
}

div#quickview-container div#addon-list div.item p.stock {
  font-size: 13px;
  line-height: 13px;
  margin: -5px 0 10px 0;
  color: rgb(180,180,180);
}

div#quickview-container div#addon-list div.item p span {
  font-weight: 500;
  color: rgb(250,100,0);
}

div#quickview-container button {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	cursor: pointer;
	outline: inherit;
  margin: 0 10px 0 10px;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Poppins', 'Noto Sans TC', sans-serif;
}

div#quickview-container input {
  border: none;
  box-sizing: border-box;
  width: 24px;
  padding: 0;
  text-align: center;
  font-size: 24px;
  font-family: 'Poppins', 'Noto Sans TC', sans-serif;
  font-weight: 500;
  border-bottom: 2px solid rgb(250,100,0);
}



@media screen and (max-width: 1289px) {
  div#quickview-container div#addon-list div.item {
    width:calc(47.5vw - 25px);
    height:calc(47.5vw + 55px);
  }
  div#quickview-container div#addon-list div.item img {
    width: calc(47.5vw - 25px);
    height: calc(47.5vw - 55px);
  }

  div#quickview-container input[type="text"] {
    width: 30px;
    padding: 4px 3px;
  }
}

div#quickview-container h1 {
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  color: rgb(51,51,51);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

div#quickview-container h1 .material-icons {
  font-size: 18px !important;
  color: rgb(250, 100,0);
  margin-left: 5px;
  cursor:pointer;
}

div#quickview-container p.author {
  font-size: 15px;
  margin-bottom: 5px;
}

div#quickview-container p.specs {
  font-size: 13px;
  color: rgb(160,160,160);
  margin-top: 0;
}

div#addon {
  display: flex;
  flex-flow: row wrap;
}


div#addon div#addon-list {
  width: 645px;
  height: 538px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}

div#addon div#addon-list div.item {
  width: 200px;
  height: 240px;
  margin: 14px 0;
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}

div#addon div#addon-list div.item:hover {
  opacity: 0.6;
}


div#addon div#addon-list div.item img {
  width: 180px;
  height: 180px;
  padding: 5px;
  box-sizing: border-box;
}

@media screen and (max-width: 1289px) {
  div#addon div#addon-list {
    flex-flow: row nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    height: auto;
    width: 100%;
  }

  div#addon div#addon-list div.item {
    margin: 0 0 0 15px;
    width: 145px;
    height: 215px;
    box-shadow: none;
    border: 3px dashed rgb(220,220,220);
  }

  div#addon div#addon-list div.item img {
    width: 145px;
    height: 145px;
    padding: 5px;
    box-sizing: border-box;
  }
}

div#single-addon {
  width: 310px;
  height: 160px;
  background-color: rgba(220,220,220,0.3);
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  flex-flow: row nowrap;
}

div#single-addon img {
  width: 120px;
  height: 160px;
  object-fit: cover;
}

div#single-addon div#info-list {
  display: flex;
  flex-flow: column nowrap;
  padding: 14px;
  justify-content: space-between;
}

div#single-addon p {
  font-size: 13px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  line-height: 20px;
}

div#addon div#addon-list div.item h5,
div#addon div#addon-card h5,
div#single-addon h5 {
  margin: 0 0 5px 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

div#addon div#addon-list div.item h5 span.price,
div#addon div#addon-card span.price,
div#single-addon span.price {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgb(250,100,0);
  margin-top: 5px;
}

div#addon div#addon-list div.item h5 span.price .line-through,
div#addon div#addon-card span.price .line-through,
div#single-addon span.price .line-through {
  text-decoration:line-through;
  text-decoration-thickness: 2px;
  display: inline-block;
}

div#addon div#addon-card {
  margin: 14px 0 0 45px;
  border-radius: 16px;
  width: 600px;
  height: auto;
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: rgba(220,220,220,0.3);
}

div#addon div#addon-card img {
  width: 540px;
  height: auto;
}

div#addon div#addon-card div#description {
  width: 540px;
  height: auto;
}

div#addon div#addon-card div#description h1 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
}

div#addon div#addon-card #addon-synopsis {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: justify;
  color: rgb(120,120,120);
}

div#addon div#addon-card #addon-specs {
  font-weight: 300;
  font-size: 15px;
  line-height: 22px;
  margin: 4px 0 0 0;
}

@media screen and (max-width: 1289px) {
  div#addon div#addon-card {
    flex-flow: column nowrap;
    padding: 20px;
    margin: 30px auto 0 auto;
    background-color: rgba(220,220,220,0.4);
    width: 95%;
  }

  div#addon div#addon-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    order: 2;
  }

  div#addon div#addon-card div#description {
    width: 100%;
    height: auto;
    order: 1;
  }

  div#addon div#addon-card div#description h1,
  div#addon div#addon-card #addon-specs {
    margin: 0;
  }

  div#addon div#addon-card #addon-synopsis {
    font-size: 16px;  
    line-height: 26px;
    margin-top: 8px;
    font-weight: 400;
    color: rgb(120,120,120);
  }
}

div#img-quickview-background {
  background-color: rgba(0,0,0,0.95);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

div#img-quickview-container {
  width: 1290px;
  padding: 0;
  font-family: 'Poppins', 'Noto Sans TC', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgb(51,51,51);
  position: relative;
  max-width: 95vw;
  box-sizing: border-box;
}

div#img-quickview-container img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
}

div#img-quickview-container span#close-btn {
  cursor: pointer;
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 30px !important;
  color: white !important;
}

h1.pagetitle {
  font-size: 28px;
  text-align: center;
  margin-bottom: 6px;
}

h2.pagesubtitle {
  font-size: 16px;
  text-align: center;
  margin-top: 6px;
  color: rgb(51,51,51);
  font-weight: 400;
}

@media screen and (max-width: 1289px) {
  h1.pagetitle {
    font-size: 20px;
    margin-bottom: 0;
  }

  h2.pagesubtitle { font-size: 14px; margin-top: 0; }
}

#gift-steps-wrap {
  display: flex;
  flex-flow: row nowrap;
  width: 1290px;
  overflow-x: auto;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 50px;
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
}

#gift-steps-wrap::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}


#gift-steps-wrap img {
  width: 400px;
  height: auto;
  margin-right: 20px;
}

@media screen and (max-width: 1289px) {
  #gift-steps-wrap {
    margin-top: 30px;
    width: 100%;
  }

  #gift-steps-wrap img {
    width: 250px;
    height: auto;
  }
}

select.larger,
select.larger option {
  font-size: 20px;
}

@media screen and (max-width: 1289px) {
  select.larger,
  select.larger option {
    font-size: 15px;
  }
}

p.page-list {
  text-align: center;
  font-family: 'Poppins', 'Noto Sans TC', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 38px;
  margin-top: 30px;
  width: 100%;
}

p.page-list a {
  display: inline-block;
  width: 25px;
  padding: 0;
  margin: 10px 5px;
}

p.page-list a:hover {
  border-bottom: 2px solid rgba(250,100,0,0.5);
}

p.page-list a.current {
  border-bottom: 2px solid rgb(250,100,0);
}

.giftpage-header {
  width: 100%;
  position: relative;
  margin-bottom: 40px;
}

.giftpage-header img {
  width: 100%; 
  height: 600px; 
  object-fit: cover;
}

.giftpage-header h1 {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.giftpage-header h2 {
  margin: 0;
  position: absolute;
  width: 500px;
  text-align: center;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 18px;
}

@media screen and (max-width: 1289px) {
  .giftpage-header img {
    height: 400px;
  }

  .giftpage-header {
    margin-bottom: 50px;
  }

  .giftpage-header h1 {
    font-size: 24px;
  }
  .giftpage-header h2 {
    top: 75%;
  }
}

.giftpage-filter-box {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.giftwrap-selector {
  display: flex;
  width: 1290px;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  overflow-x: auto;
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
}

.giftwrap-selector::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}

.giftwrap-selector input[type="radio"] {
  position: fixed;
  opacity: 0;
  pointer-events: none;
}

.giftwrap-selector label {
  display: flex;
  flex-flow: column nowrap;
  border: 5px solid rgba(0,0,0,0);
  padding: 10px 10px 0 10px;
  cursor: pointer;
  font-family: 'Poppins', 'Noto Sans TC', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 38px;
}

.giftwrap-selector input[type="radio"]:checked+label {
  border: 5px solid rgb(250,100,0);
}

.giftwrap-selector img {
  width: 285px;
  height: 285px;
  cursor: pointer;
}

@media screen and (max-width: 1289px) {
  .giftwrap-selector { width: 98vw; }
  .giftwrap-selector img { width: 150px; height: 150px;}
}

.ap-frame { 
  position: fixed;
  width: 100vw;
  border: 12px solid rgb(250,100,0); 
  z-index: 10;
  top: 0;
  left: 0;
  box-sizing: border-box;
  height:100vh;
  overflow:visible;
  pointer-events:none;
  background:none !important;
}

.ap-patch-container { position: relative; }

.ap-patch {
  position: absolute;
  left: -50px;
  top: 50px;
  width: 140px;
  height: 140px;
  z-index: 2;
}

.ap-patch img {
  width: 140px;
  height: 140px;
}

.ap-patch .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -68%);
  color: white;
  text-align: center;
  width: 120%;
  line-height: 18px;
  font-weight: 400;
  font-size: 14px;
}

.ap-patch .text .hl {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
}

@media screen and (max-width: 1289px) {
  .ap-frame {
    border: 8px solid rgb(250,100,0);
  }

  .ap-patch-container { position: relative; }

  .ap-patch {
    position: absolute;
    left: auto;
    top: auto;
    bottom: -55px;
    right: 30px;
    width: 110px;
    height: 110px;
    z-index: 2;
  }

  .ap-patch img {
    width: 110px;
    height: 110px;
  }

  .ap-patch .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    color: white;
    text-align: center;
    width: 120%;
    line-height: 16px;
    font-weight: 400;
    font-size: 12px;
  }

  .ap-patch .text .hl {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
  }
}

span.shipping-fee {
  margin-left: 12px;
}

/* begin book edition */
p#choose-edition {
  font-family: 'Poppins', 'Noto Sans TC', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

div.edition-choice {
  width: 90%;
  border-left: 15px solid rgba(0,0,0,0.05);
  padding: 0 0 0 15px;
  margin: 0 0 8px 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  font-family: 'Poppins', 'Noto Sans TC', sans-serif;
  cursor: pointer;
}

div.edition-choice:hover {
  border-left: 15px solid rgba(250,100,0,0.4);
}

div.edition-choice.selected {
  border-left: 15px solid rgb(250,100,0);
}

div.edition-choice.unavailable {
  background-color: rgba(0,0,0,0.1);
  color: rgba(0,0,0,0.7);
  cursor: not-allowed;
}

div.edition-choice img.thumbnail {
  height: 40px;
  width: 40px;
  margin-right: 10px;
}

div.edition-choice div.info {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  height: 20px;
}

div.edition-choice div.info h1 {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  line-height: 20px;
}

div.edition-choice div.info h1 span {
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: rgba(0,0,0,0.4);
}


/* end of book edition */

p.sale-title {
  font-family: 'Poppins', 'Noto Sans TC', sans-serif;
  font-size: 13px;
  font-weight: 400;
  margin: 0 0 10px 0;
  padding: 0;
  color: rgb(250,100,0);
}

video.fw {
  width: 100%;
  height: auto;
}

video.hw {
  width: 49.2%;
  height: auto;
}

@media screen and (max-width: 1289px) {
  video.hw { 
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
}

.sale-gift {
  position: absolute;
  bottom: 20px;
  right: 140px;
  width: 260px;
  margin: 0 auto 10px auto;
  padding: 20px 30px;
  border-radius: 10px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: flex-start;
  background-color: rgba(93,63,211,1);
  /*background-color: rgb(194,93,44, 0.9);*/
  /*opacity: 0.9;*/
}

.sale-gift #promo {
  font-family: 'Poppins', 'Noto Sans TC', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px 0;
  padding: 0;
  color: white;
}

.sale-gift #gift img {
  width: 260px;
  max-height: 200px;
  object-fit: cover;
  opacity: 1;
}


.sale-header {
  width: 100vw;
  height: calc(100vh - 120px);
  position: relative;
  top: 0;
}

.sale-header #sale-title {
  font-family: 'Poppins', 'Noto Sans TC', sans-serif;
  font-size: 120px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  color: white;
  letter-spacing: -5px;
}

.sale-header #sale-subtitle {
  font-family: 'Poppins', 'Noto Sans TC', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  color: white;
  letter-spacing: -0.5px;
}

.sale-header #sale-date {
  font-family: 'Poppins', 'Noto Sans TC', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  color: white;
  letter-spacing: -1px;
}


.sale-header #sale-title-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

.sale-header img#sale-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: calc(100vh - 120px);
  object-fit: cover;
  filter: brightness(100%);
}

@media screen and (max-width: 1289px) {
  p.sale-title {
    text-align: center;
  }

  .sale-gift {
    position: relative;
    width: 300px;
    max-width: calc(100vw - 60px);
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: flex-start;
    opacity: 1;
    top: -40px;
    left: 0;
    right: 0;
  }

  .sale-gift #gift img {
    width: 100%;
    object-fit: cover;
  }

  .sale-header #sale-title {
    font-size: 60px;
  }

  .sale-header #sale-date {
    margin-top: 20px;
  }
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

ul {
  margin: 0 0 38px 0;
  font-family: 'Poppins', 'Noto Sans TC', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

div.section-bar {
  height: 40px;
  width: 100%;
  background-color: rgb(250,100,0);
  color: white;
  font-family: 'Poppins', 'Noto Sans TC', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 40px;
  text-align: center;
  padding: 0;
  margin: 0;
}

.w-on-b {
  background-color: black;
  color: white;
}

dl {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;

  font-family: 'Poppins', 'Noto Sans TC', sans-serif;
  font-size: 15px;
  line-height: 25px;
  margin: 0;
  color: rgb(51,51,51);
}

dt {
  padding: 0;
  margin: 5px 10px 0 0;
  font-weight: 500;
  width: 60px;

}

dd {
  padding: 0;
  margin: 5px 0 0 0;
  width: calc(100% - 70px);
  font-weight: 400;
}

dl.long dt { width: 90px; }
dl.long dd { width: calc(100% - 100px); }

div.cart-container {
  padding: 0 200px;
  width: 100%;
  box-sizing: border-box;
}

table.cart {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

table.cart th, table.cart td {
  text-align: left;
  padding: 20px;
  border: 1px solid rgb(219,219,219);
}

table.cart th { font-weight: 500; }
table.cart td { 
  font-weight: 400; 
  font-size: 14px;
  color: rgb(51,51,51);
}

table.cart td.quantity {
  cursor: pointer;
}

table.cart thead, table.cart tfoot {
  background-color: rgb(246,246,246);
  color: rgb(51,51,51);
}

table.cart tbody tr:hover {
  background-color: rgb(252,252,252);
}

input[type=text]#search {
  width: calc(100% - 50px);
  min-width: 160px;
  padding: 6px 0;
  font-size: 16px;
  background-color: black;
  border: none;
  border-bottom: 0.5px solid white;
  color: rgb(240,240,240);
  margin: 0 0 0 12px;
  box-sizing: border-box;
}

input[type=text]#search {
  outline: none;
}

.apple-pay-button {
  display: inline-block;
  -webkit-appearance: -apple-pay-button;
  -apple-pay-button-type: check-out; /* Use any supported button type. */
  -apple-pay-button-style: black;
  width: 238px;
  height: 69px;
  margin-top: 20px;
}

body {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 300;
  font-style: normal;
  padding: 0;
  margin: 0;
  min-height: calc(100vh - 300px);
  position: relative;
}

.row {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.fw { width: 100%; }
.fh { height: 100%; }
.jc-between { justify-content: space-between; }
.jc-even { justify-content: space-evenly; }
.jc-around { justify-content: space-around; }
.jc-center { justify-content: center; }
.jc-end { justify-content: flex-end; }
.jc-start { justify-content: flex-start; }
.al-top { align-items: flex-start; }
.al-bottom, .al-end { align-items: flex-end; }
.al-center { align-items: center; }

.gray-bg {
  background-color: rgba(246,246,246,1) !important;
}

.darker-bg {
  background-color: rgba(200,200,200,1) !important;
}

.black-bg {
  background-color: rgba(0,0,0,1);
}

.collapse-menu, .collapse-cart {
  display: none;
}

.person-image {
  width: 100%;
  height: auto;
  max-height: 800px;
  object-fit: cover;
  padding: 0 200px;
  box-sizing: border-box;
}

.author-row {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 0 200px;
  box-sizing: border-box;
}

.author-row img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.author-row h1 {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  padding: 10px 0 5px 0;
  font-family: 'Noto Sans TC', sans-serif;
  color: rgb(51,51,51);
  background-color: white;
  line-height: 40px;
}

.author-row h1.with-img {
  margin: -80px 80px 0 80px;
  padding: 10px 30px 5px 30px; 
}


.author-row p {
  font-size: 20px;
  font-weight: 400;
  color: rgb(120,120,120);
  background-color: white;
  margin: 0;
  padding: 16px 0;
  line-height: 40px;
}

.author-row p.with-img {
  margin: -10px 80px 20px 80px;
  padding: 16px 30px;
}

.award-row {
  width: 100%;
  height: 90px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: flex-start;
}

.award-item {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  width: 100px;
  text-align: center;
}

.award-icon {
  font-size: 50px;
  color: orange;
}

.award-text {
  color: rgb(110,110,110);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

p {
}

a {
  text-decoration: none;
  color: inherit;
}

span.highlight, a.highlight {
  color: rgb(250,100,0);
  font-weight: 500;
}

.link-action.no {
  border-bottom: none;
  cursor: normal;
}

.link-action.no:hover {
  border-bottom: none;
}

.link-action {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 500;
  font-style: normal;
  color: rgb(51,51,51);
  border-bottom: 2px solid rgb(250,100,0);
  padding: 0;
  cursor: pointer;
}

.link-action.done {
  display: none;
  color: green;
  cursor: normal;
}

.link-action span.price {
  font-weight: 600;
  font-family: 'Poppins', serif;
  font-style: italic;
  color: rgb(250,100,0);
  margin-right: 10px;
  padding: 0;
  white-space: nowrap;
}

.link-action:hover {
  border-bottom: 2px solid rgb(240,90,0);
}

h1.section-title {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 22px;
  line-height: 50px;
  color: rgb(51,51,51);
  word-break: break-word;
  word-wrap: break-word;
  padding: 0;
  margin: 30px 0;
  text-align: center;
}


.btn {
  width: 100%;
  height: 50px;
  font-size: 17px;
  line-height: 46px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 500;
  border-radius: 0;
  cursor: pointer;
  margin: 6px 0;

  color: white;
  background-color: rgb(124,139,71);

  user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}

.btn span { display: inline-block; }

.btn .material-icons { font-size: 20px; line-height: 50px; vertical-align: top; }
.btn .text { font-size: 17px; line-height: 50px; }

.btn:hover {
  background-color: rgb(52,77,51);
}

.close {
  cursor: pointer;
}

.lh {
  width: 400px;
  margin: 60px auto 0 auto;
  padding: 0;
}

.lh h1 {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 50px;
  letter-spacing: 0;
  color: rgb(51,51,51);
  word-break: break-word;
  word-wrap: break-word;
  padding: 0;
  margin: 0;
  text-align: center;
}

.lh h2 {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.5;
  color: rgb(51,51,51);
  word-break: break-word;
  word-wrap: break-word;
  padding: 0;
  margin: 0;
  text-align: center;
}

footer {
  padding: 40px 0;
  margin: 80px auto 0 auto;
  border-top: 1px solid rgb(219,219,219);
  background-color: rgb(246,246,246);
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  color: rgb(51,51,51);
}

footer p.cc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  margin-top: 22px;
}

footer p.group {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: rgb(80,80,80);
  line-height: 26px;
  margin: 14px 0;
}

footer p.group .header {
  font-weight: 500;
  margin-right: 10px;
  color: rgb(51,51,51);
}

footer p.group a {
  margin-right: 10px;
}

footer p.group a:hover {
  border-bottom: 2px solid rgb(250,100,0);
}

.block {
  padding: 30px 0;
  margin: 0 auto 0 auto;
}

.white-bg {
  background-color: white;
}

.aqua-bg {
  background-color: rgb(0,255,255);
}

.container {
  width: 1290px;
  margin: 0 auto;
}


.read-first {
  background-color: black;
  color: white;
}

#read-first {
  position: fixed;
  width: 800px;
  height: calc(100vh - 105px);
  top: 0;
  left: 0;
  z-index: 100;
  background-color: black;
  display: none;
  padding: 85px calc(50vw - 400px) 20px calc(50vw - 400px);
  overflow-y: auto;
}

#read-first p {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 22px;
  color: white;
  word-break: break-word;
  word-wrap: break-word;
  text-align: justify;
}

#read-first .header {
  width: 800px;
  height: 65px;
  border-bottom: 1px solid rgb(219,219,219);
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0 calc(50vw - 400px);
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  background-color: white;
}

#read-first .header .title {
  width: 700px;
  padding: 10px 0;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: black;
}

#read-first .header .close {
  width: 100px;
  text-align: right;
  font-size: 18px;
  line-height: 50px;
  padding: 0;
  margin: 0;
  cursor: pointer;
}



.listing-wrap {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.listing-wrap .listing {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  height: 350px;
  width: 310px;
  margin: 20px 6.25px;
}

.listing-wrap .listing.person-w-quote {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  height: 350px;
  width: 632.5px;
  margin: 20px 6.25px;
}


.listing-wrap .listing.person-w-quote h2 {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0;
  color: white;
  word-break: break-word;
  word-wrap: break-word;
  padding: 0;
  margin: 10px 40px;
  text-align: left;
}

.listing-wrap .listing.person-w-quote span.hashtag {
  display: inline-block;
  color: #ffed9c;
  font-size: 0.8em;
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 600;
  margin-right: 8px;
}

.listing-wrap .listing.person-w-quote.w3 {
  width: 955px;
}

.listing-wrap .listing.person-w-quote.w4 {
  width: 1290px;
}

.listing-wrap .listing.person-w-quote img,
.listing-wrap img {
  height: 350px;
  width: 310px;
  object-fit: cover;
  flex-shrink: 0;
}

.listing-wrap .listing.person-w-quote img.w2 {
  width: 632.5px;
  flex-shrink: 0;
}

@media screen and (max-width: 1289px) {
  .listing-wrap .listing.person-w-quote,
  .listing-wrap .listing.person-w-quote.w3,
  .listing-wrap .listing.person-w-quote.w4 {
    flex-flow: column nowrap;
    height: auto;
    width: auto;
    order: 1 !important;
  }

  .listing-wrap .listing.person-w-quote img,
  .listing-wrap .listing.person-w-quote.w3 img,
  .listing-wrap .listing.person-w-quote.w4 img {
    width: calc(100vw - 12.5px);
    height: calc(100vw - 12.5px);
    order: 1;
  }

  .listing-wrap .listing.person-w-quote h2 {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 30px 20px 40px 20px;
    order: 2;
  }
}

.listing-wrap .listing-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 310px;
  width: 310px;
  overflow: hidden;
}

.listing-wrap .listing-img img {
  /*height: 310px;*/
  height: 350px; /* 10% larger*/
  width: auto; 
}

.listing-wrap .listing-text {
  padding: 10px 0 0 5px;
  width: 310px;
  box-sizing: border-box;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

.listing-wrap .listing-text .added {
  display: none;
  color: green;
}

.listing-wrap .listing-text .add-to-cart {
  text-align: right;
  color: rgba(250,100,0, 0.7);
  cursor: pointer;
}

.listing-wrap .listing-text .add-to-cart:hover {
  color:rgb(250,100,0);
}

.listing-wrap .listing-text h1 {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.5;
  color: rgb(51,51,51);
  word-break: break-word;
  word-wrap: break-word;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 260px;
}

.listing-wrap .listing-text h1 span.price {
  font-family: 'Poppins', 'Noto Serif TC', serif;
  font-weight: 300;
  font-style: normal;
  margin-left: 10px;
  color: rgba(51,51,51,0.7);
}

.bb-container {
  width: 1200px;
  margin: 0 auto;
}

.bb-quote {
  /* reconsidering */
  width: 100%;
  margin: 0 auto 20px auto;
  text-align: center;
  font-family: 'Noto Serif TC', serif;
  font-weight: 300;
  font-style: normal;
  font-size: 24px;
  line-height: 38px;
  letter-spacing: 0;
  color: rgb(51,51,51);
  word-break: break-word;
  word-wrap: break-word;
  padding: 0;
}

.bb-wrap {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

.bb-left, .bb-right {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.bb-left {
  width: 760px;
}

.bb-right {
  width: 330px;
}

.bb-section {
  width: 100%;
  padding: 10px 0;
  margin: 0;
}

.bb-section .person-wrap,
.bb-section .content-wrap {
  margin-bottom: 30px;
}

.bb-section .person-wrap img {
  width: 100%;
  height: auto;
  margin-top: 10px;
}

.bb-section .person-wrap .person-photo {
  position: relative;
  width: 100%;
  height: auto;
}

.bb-section .person-wrap .person-photo .cc {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
  background-color: rgba(0,0,0,0.6);
  color: white;
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0;
}

.bb-section h1 {
  margin: 8px 0 20px 0;
  font-family: 'Noto Serif TC', serif;
  text-transform: capitalize;
  font-weight: 300;

  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: rgb(51,51,51);
  text-align: left;

}

.bb-section h2 {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: rgb(51,51,51);
  margin: 0 0 16px 0;
}

.bb-section h3 {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: rgb(51,51,51);
  margin: 0 0 6px 0;
}

.bb-section p {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: rgb(51,51,51);
  margin: 0 0 10px 0;
  text-align: justify;
}

.bb-section .learn-more {
  font-family: 'Noto Sans TC', sans-serif;
  color: rgb(60,60,60);
  margin: 0 0 0 10px;
  text-decoration: underline;
  font-weight: 400;
  font-size: 15px;
}

.inspired-wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.inspired-card {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  margin: 10px;
  cursor: pointer;
}

.inspired-card:only-child {
  margin: 0 auto;
}

.inspired-card img {
  width: 624px;
  height: 327px;
  object-fit: cover;
}

.inspired-card .text {
  width: 560px;
  height: 160px;
  background-color: white;
  padding: 32px;
}

.inspired-eyebrow {
  border-bottom: 2px solid rgb(250,100,0);
  padding-bottom: 2px;
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.2px;
  color: rgb(51,51,51);
  display: inline;
}

.inspired-headline {
  font-family: 'Noto Serif TC', serif;
  font-weight: 200;
  font-style: normal;
  font-size: 20px;
  line-height: 34px;
  letter-spacing: 0;
  color: #1e1e1e;
  word-break: break-word;
  word-wrap: break-word;
}

.bh-photos {
  width: 920px; 
  padding: 0;
  position: relative;

  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
}

.bh-photos #icon-list {
  position: absolute;
  right: 62px;
  bottom: 5px;
  z-index: 1;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
}

.bh-photos #icon-list p {
  text-align: center;
  display: inline-block;
  margin-right: 6px;

  color: rgb(51,51,51);
  padding: 0;
  cursor: pointer;
}

.bh-photos #icon-list p:hover {
}

.slide-info {
  height: 20px;
  text-align: center;
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 3px;
  color: rgb(80,80,80);
  padding-top: 18px;
}

.slide-wrap {
  width: 100%;
  height: 547px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}

.slide-wrap .control {
  width: 30px; 
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  padding: 0;
  margin: 0;
  color: rgba(0,0,0,0.1);

  background: none;
  border: none;
  cursor: pointer;
  outline: inherit;
}

.slide-wrap .control:hover {
  color: rgb(180,180,180);
}

.slide-wrap .img-wrap {
  width: 820px;
  height: 547px;
  overflow-x: hidden;
  text-align: center;
}

.slide-wrap .img-wrap:hover {
  cursor: pointer;
}

.slide-wrap .img-wrap img {
  height: 547px;
  width: auto;
  margin: 0 auto;
}

.ba {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}

.ba-left {
  background-color: rgb(51,51,51);
  color: white;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-end;
  width: calc(40vw - 40px); 
  height: 100%;
  padding-right: 40px;
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
}

.ba-right {
  background-color: rgba(0,0,0,0.3);
  color: black;
  width: 60vw;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.ba-right .person {
  height: 240px;
  width: 100%;
  display: flex;
  flew-flow: row nowrap;
  justify-contetn: flex-start;
  align-items: center;
}

.ba-right .person img {
  height: 240px;
  width: auto;
}

.bh-info {
  height: 560px;
  width: 310px;
  margin-left: 60px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.bh-info .price-box {
  /*margin: 20px 0 40px 0;*/
  margin: 20px 0 0 0;
}

@media screen and (max-width: 1289px) {
  .bh-info .price-box {
    margin: 20px 0 40px 0;
  }
}

.giftwrap .price-box { 
  font-size: 16px; 
  display: inline-block; 
  margin: 10px 0;
}

.price-box {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0;
  color: rgb(51, 51, 51);
}

.price-box span.line-through {
  color:rgb(250,100,0);
  text-decoration:line-through;
  text-decoration-thickness: 2px;
  display: inline-block;
}

.price-box span.price {
  font-family: 'Poppins', serif;
  color: rgb(51,51,51);
  margin-left: 4px;
  margin-right: 4px;
  text-decoration-thickness: 2px;
}

.price-box span.price.hl {
  color: rgb(250,100,0);
}

.bh-info .title {
  width: 100%;
  /*border-bottom: 1px solid rgba(0,0,0,0.5);*/
  /*border-bottom: 2px solid rgb(250,100,0);*/
  margin-bottom: 28px;
}

.bh-info h1 {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0;
  color: rgb(51,51,51);
  word-break: break-all;
  line-break: anywhere;
  padding: 0;
  margin: 0 0 10px 0;
  text-align: left;
}

.bh-info h1.ot {
  font-family: 'Noto Sans TC', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0;
  color: rgb(51,51,51);
  word-break: break-all;
  line-break: anywhere;
  padding: 0;
  margin: 0 0 10px 0;
  text-align: left;
}

.bh-info .cc-wrap {
  margin-bottom: 40px;
}

.bh-info h2 {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0;
  color: rgb(51,51,51);
  padding: 0;
  margin: 0 0 32px 0;
}

.bh-info h2 a {
  font-weight: 400;
  color: rgb(80,80,80);
  text-decoration: none;
  margin: 0 6px 0 1px;
}

.product-desc,
.person-desc,
.article {
  box-sizing: border-box;
  padding: 0 200px;
  margin: 0;
}

#article {
  box-sizing: border-box;
  padding: 0 155px;
  margin: 0;
}

#article h2.credit {
  font-family: "meiryo", 'Noto Sans TC', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0;
  padding: 0;
  margin: 8px 0 24px 0;
}

#article h3.email {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0;
  padding: 0;
  margin: 0;
}

#article p.small {
  font-size: 17px;
  line-height: 30px;
  margin: 10px 0 24px;
}

img.op-top { object-position: top; }
img.op-center { object-position: center; }
img.op-bottom { object-position: bottom; }

.story-header {
  padding: 0;
  margin: 0 0 30px 0;
  box-sizing: border-box; 
  height: auto;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.story-header #story-title-container {
  position: absolute;
  box-sizing: border-box;
  width: 700px;
  padding: 20px;
  margin: 0;
  bottom: 0;
  left: 0;
}


img#story-cover {
  height: auto;
  width: 100%;
}

img#story-cover.full-brightness {
  filter: brightness(100%);
}

div.story-photo-collection {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

div.story-photo-collection img {
  height: auto;
  width: 285px;
  margin: 5px;
}

img.story-photo {
  max-width: 100%;
  height: auto;
  margin-bottom: 40px;
}

div.story-photo-collection img:hover,
img.story-photo:hover {
  cursor: pointer;
  filter: brightness(70%);
}

@media screen and (max-width: 1290px) {
  div.story-photo-collection {
    display: flex;
    flex-flow: column wrap;
    align-items: flex-start;
    overflow-x: auto;
    width: 100%;
    height: 405px;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
  }

  div.story-photo-collection::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
  }

  div.story-photo-collection img {
    width: auto;
    height: 200px;
    margin: 0 5px 0 0;
  }

}

p#story-cover-cc {
  position: absolute;
  bottom: 0;
  right: 15px;
  font-size: 10px;
  font-weight: 500;
  text-align: right;
  color: rgba(255,255,255,0.75);
  line-height: 14px;
}

h1#story-title {
  font-family: "meiryo", 'Noto Sans TC', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 45px;
  line-height: 60px;
  letter-spacing: 0;
  padding: 0;
  margin: 0 0 50px 0;
  text-align: left;
}

h2#story-subtitle {
  font-family: 'Poppins', 'Noto Serif TC', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
}


h3#story-attributes {
  font-family: "dnp-shuei-gothic-kin-std", 'Noto Sans TC', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 42px;
  letter-spacing: 0;
  padding: 0;
  margin: 0;
  text-align: left;
  color: black;
}

h2#story-credit {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  padding: 0;
  margin: 40px 0 50px 0;
  text-align: left;
}

/* bh-info .about p */
.product-desc p,
.person-desc p {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: 0;
  color: rgb(120,120,120);
  padding: 0;
  margin: 0 0 22px 0;
  word-break: normal;
  text-align: justify;
}

#article p {
  font-family: "meiryo", 'Noto Sans TC', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 19px;
  line-height: 38px;
  letter-spacing: 0;
  color: black;
  padding: 0;
  margin: 0 0 38px 0;
  text-align: justify;
  text-justify: inter-word;
}

#article p b {
  font-family: "meiryo", 'Noto Sans TC', sans-serif;
  font-weight: 700;
}

#article .two-column-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
}

#article .two-column-container #col-1 {
  width: 190px;
  padding: 0 60px 0 0;
  margin: 0;
}

#article .two-column-container #col-2 {
  width: 730px;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 1290px) {
  #article .two-column-container #col-1 {
    width: 100%;
    padding: 0;
  }

  #article .two-column-container #col-2 {
    width: 100%;
  }
}

.product-desc p b,
.person-desc p b {
  color: rgb(51,51,51);
  font-weight: 500;
}

.bh-info h3 {
  font-family: 'Poppins', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0;
  color: rgb(51,51,51);
  padding: 0;
  margin: 0;
}

.bh-info h3 a {
  color: rgb(80,80,80);
  border-bottom: 1px solid rgb(80,80,80);
  margin: 0 14px 0 0;
  text-decoration: none;
}

.bh-info h6 {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0;
  padding: 0;
  color: rgba(0,0,0,0.25);
  margin: 0 0 30px 0;
}

.bh-info h6 .aul {
  padding-bottom: 1px;
  border-bottom: 2px solid rgba(0,0,0,0.15);
}

.bh-info h6 a:hover {
  color: rgba(0,0,0,0.6);
}

.bh-info h6 a.aul:hover {
  color: rgba(0,0,0,0.6);
  border-bottom: 2px solid rgba(0,0,0,0.6);
}

.bh-info h4,
h4.story-meta {
  font-family: 'Poppins', 'Noto Serif TC', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0;
  color: rgba(0,0,0,0.4);
  word-break: break-word;
  word-wrap: break-word;
  padding: 0;
  margin: 4px 0 18px 0;
}

.bh-info h5 {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0;
  color: rgb(51,51,51);
  padding: 0;
  margin: 0 0 25px 0; 
}

.bh-wrap {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: flex-start;
  overflow-y: visible;
}

.cb-wrap {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: flex-start;
}

.cb-left {
  width: 323px;
  height: 355px;
  padding: 42px 46px;
  margin-right: 16px;
  background-color: white;
}

.cb-img {
  width: 839px;
  height: 439px;
  object-fit: cover;
}

.cb-wrap h1 {
  text-align: left;
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 30px;
  line-height: 42px;
  letter-spacing: 0.2px;
  color: #1e1e1e;
  word-break: break-word;
  word-wrap: break-word;
  padding: 0;
  margin: 0 0 18px 0;
}

.cb-wrap p {
  font-family: 'Noto Serif TC', serif;
  font-weight: 200;
  font-style: normal;
  font-size: 20px;
  line-height: 34px;
  letter-spacing: 0;
  color: #1e1e1e;
  word-break: normal;
  word-wrap: normal;
  padding: 0;
  margin: 0 0 54px 0;
}

.orange-btn:hover {
  background-color: rgb(240,90,0);
}

.yellow-btn:hover {
  background-color: #2b632b;
}

.blue-bg {
  background-color: rgb(231,247,253);
}

.orange-bg {
  background-color: rgba(255,140,46,0.3);
}

.cb-subscribe {
  padding: 120px 0;
  text-align: center;
}

.cb-subscribe h1 {
  font-family: 'Sawarabi Mincho', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  line-height: 60px;
  letter-spacing: 0;
  color: #1e1e1e;
  word-break: break-word;
  word-wrap: break-word;
  padding: 0;
  margin: 0 0 10px 0;
}

.cb-subscribe p {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: rgb(80,80,80);
  word-break: break-word;
  word-wrap: break-word;
  padding: 0;
  margin: 0 0 30px 0;
}

.cb-subscribe input[type=text] {
  width: 320px;
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid black;
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  padding: 10px 6px;
  margin: 0;
  background-color: rgb(231,247,253);
}

.cb-subscribe input[type=text]:focus {
  outline: none;
  border-bottom: 2px solid black;
}

.subscribe-row {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-end;
  width: 520px;
  height: 40px;
  margin: 80px auto 0 auto;
}

.black-btn {
  border: none;
  width: 180px;
  height: 40px;
  background-color: black;

  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 36px;
  text-align: center;
  letter-spacing: 0;
  color: white;
  cursor: pointer;
}

.orange-btn {
  background-color: rgb(250,100,0);
  color: white;
}

.yellow-btn {
  background-color: #428742;
  color: white;
}

.spacer {
  height: 50px;
}

#top-space {
  height: 50px;
}

.sub-nav {
  display: none;
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  background-color: rgb(246,246,246);
  border-top: 1px solid rgb(219,219,219);
  border-bottom: 1px solid rgb(219,219,219);
  /*box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);*/
  z-index: 3;
}

.sub-nav .sub-nav-menu {
  height: 290px;
  width: 1290px;
  margin: 0 auto;
  padding-top: 20px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

.sub-nav-menu .column {
  width: 200px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.sub-nav-menu .column h1 {
  width: 80%;
  padding-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(200,200,200);

  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 20px;
  text-align: left;
  letter-spacing: 2px;
  color: rgb(60,60,60);

  margin: 0 0 20px 0;
}

.sub-nav-menu .column h2 {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 18px;
  text-align: left;
  letter-spacing: 0.4px;
  color: rgb(60,60,60);
  margin: 0 0 10px 0;
}

.promo-card {
  /* total width: 200 + 20 + 310 = 530 */
  margin-left: 0;
  padding: 20px;
  width: 310px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.promo-card:hover {
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);
}

.promo-card img {
  width: 310px;
  height: 163px;
  object-fit: cover;
}

@media screen and (max-width: 1290px) {
  .promo-card { 
    box-sizing: border-box;
    width: 98%;
    text-align: center;
    margin: 0 auto;
  }

  .promo-card img {
    width: 100%;
    height: auto;
  }
}

.promo-card h1 {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 18px;
  text-align: left;
  letter-spacing: 0;
  color: rgb(60,60,60);
  margin: 10px 0 8px 0;
}

.promo-card h2 {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
  text-align: left;
  letter-spacing: 0;
  color: rgb(60,60,60);
  margin: 0;
}

.top-nav {
  width: 100%;
  height: 80px;
  padding-top: 40px;
  margin: 0;
  position: static;
  top: 0;
  left: 0;

  background-color: white;
  border-bottom: 1px solid rgb(219,219,219);
  /*box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);*/
}

.top-nav .container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-end;
}

.top-nav .menu-icon-wrap {
  display: none;
  cursor: pointer;
}

.top-nav .logo-wrap {
  width: 300px;
  height: 80px;
}

.top-nav .logo-wrap img {
  height: 50px;
  width: auto;
  /*
  margin-bottom: 22px;
  border-bottom: 4px solid rgb(250,100,0);
  border-right: 4px solid rgb(250,100,0);
  border-bottom: 4px solid rgb(0,0,0);
  border-right: 4px solid rgb(0,0,0);
  padding: 0 8px 8px 0;
   */
}

.top-nav .menu-wrap {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-end;
  height: 80px;
  width: 690px;
}

.top-nav .menu-item {
  height: 20px;
  padding: 0 30px 30px 30px;

  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 20px;
  text-align: left;
  letter-spacing: 2px;
  color: rgb(60,60,60);
  cursor: pointer;
}

.top-nav .menu-item:after {
  display: block;
  content: '';
  border-bottom: 4px solid rgb(250,100,0);
  padding-bottom: 26px;
  transform: scaleX(0);
  transition: transform 150ms ease-in-out;
  transform-origin: 0% 50%;
}

.top-nav .menu-item:hover:after {
  transform: scaleX(1);
}

.top-nav .shopping-bag-wrap {
  width: 300px;
  text-align: right;
  padding-bottom: 30px;
  position: relative;
}

.top-nav .shopping-bag-wrap span {
  cursor: pointer;
}

.top-nav .shopping-bag-wrap .item-count {
  display: none;
  position: absolute;
  bottom: 20px;
  right: -4px;
  line-height: 16px;
  border-radius: 16px;
  min-width: 16px;
  text-align: center;
  height: 16px;
  padding: 2px;
  font-size: 12px;
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 400;
  background-color: rgb(250,100,0);
  color: white;
}

.material-icons-outlined { vertical-align:middle; }
.material-icons-outlined.md-13 { font-size: 13px; }
.material-icons-outlined.md-16 { font-size: 16px; }
.material-icons-outlined.md-18 { font-size: 18px; }
.material-icons-outlined.md-24 { font-size: 24px; }
.material-icons-outlined.md-30 { font-size: 30px; }
.material-icons-outlined.md-36 { font-size: 36px; }
.material-icons-outlined.md-48 { font-size: 48px; }


.shop-next-link-wrap {
  width: 300px;
  margin: 0 auto 20px auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: flex-start;
}

.shop-next-link {
  height: 30px;
  margin: -10px 0 20px 0;

  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  letter-spacing: 1px;
  color: rgb(51,51,51);
  cursor: pointer;
}

.shop-next-link.selected {
  border-bottom: 2px solid rgb(250,100,0);
}

.fw-cover-list {
  width: 100%;
}

.fw-cover-list .item {
  width: 260px;
  height: 300px;
  overflow: hidden;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.fw-cover-list .item img {
  height: 320px;
  width: auto;
}

.cb-ppl {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  align-items: flex-start;
}

.cb-ppl .person-card {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  margin: 20px 0;
}

.cb-ppl .person-card img {
  width: 415px;
  height: 415px;
}

.cb-ppl .person-card .text {
  width: 375px;
  height: 80px;
  background-color: white;
  padding: 20px;
}

.cb-ppl .person-card .text .eyebrow {
  border-bottom: 2px solid rgb(250,100,0);
  padding-bottom: 2px;
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.2px;
  color: rgb(51,51,51);
  display: inline;
}

.cb-ppl .person-card .text .brief {
  font-family: 'Noto Serif TC', serif;
  font-weight: 200;
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  color: #1e1e1e;
  word-break: break-word;
  word-wrap: break-word;
}

#enlarge-img {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-color: rgba(0,0,0,0.8);
  cursor: pointer;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

#enlarge-img img {
  width: 90%;
  height: auto;
  /* fix later if height > width */
  margin: 0;
}

#popup-box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-color: rgba(0,0,0,0.8);
  cursor: pointer;
}

#popup-box .msg-wrap {
  width: 900px;
  padding: 20px;
  background-color: white;
  margin: 160px auto 0 auto;
  cursor: default;
}

#popup-box .msg-wrap #top-btn-wrap,
#popup-box .msg-wrap #bottom-btn-wrap {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: flex-end;
}

#popup-box .msg-wrap #bottom-btn-wrap {
  border-top: 1px solid black;
  padding-top: 20px;
}


#popup-box .msg-wrap p {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  color: rgb(51,51,51);
  padding: 0;
  margin: 0;
}

.quantity-control-set { width: 100%; margin-top: 15px; }

.quantity-control-set .minus {
  background-color: #E0E0E0;
  color: #808080;
  border: 1px solid #E0E0E0;
  border-right: 0;
  width: 31px;
  height: 31px;
  font-size: 19px;
  line-height: 31px;
  text-align: center;
  cursor: pointer;
}

.quantity-control-set .plus {
  background-color: #E0E0E0;
  color: #808080;
  border: 1px solid #E0E0E0;
  border-left: 0;
  width: 31px;
  height: 31px;
  font-size: 17px;
  line-height: 31px;
  text-align: center;
  cursor: pointer;
}

.quantity-control-set input[type=text] {
  width: 45px;
  padding: 8px 12px;
  border: 1px solid #E0E0E0;
  margin: 0;
  font-size: 15px;
  line-height: 15px;
  height: 33px;
  text-align: center;
}


#cart-box {
  width: 900px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10px 0;
}

#cart-box .item {
  width: 100%;
  height: 200px;
  padding: 10px 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

#cart-box .item .item-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  width: 200px;
  overflow: hidden;
}

#cart-box .item .item-img img {
  height: 220px;
  width: auto;
}

#cart-box .item .desc-wrap {
  width: calc(100% - 240px);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: column nowrap;
}

#cart-box .item .desc-wrap h2 {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0;
  color: rgb(51,51,51);
  padding: 0;
  margin: 0;
  text-align: left;
}

#cart-box .item .desc-wrap h3 {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0;
  color: rgb(51,51,51);
  padding: 0;
  margin: 4px 0 0 0;
}

#cart-box .item .desc-wrap h4 {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0;
  color: rgb(51,51,51);
  padding: 0;
  margin-top: 10px;
}


/* AAA */

@media screen and (min-width: 1290px) {
  .top-nav .logo-wrap img#mobile { display: none; }
  .top-nav .logo-wrap img#std { display: inline-block; }
  .desktop-flex { display: inline-flex!important; }
  .desktop-inline { display: inline-block; }
  .desktop-block { display: block; }
  .mobile-flex { display: none!important; }
  .mobile-inline { display: none!important; }
  .mobile-block { display: none!important; }
  .mobile-only { display: none!important; }
  .slick-slide { margin: 0 10px; }
  .slick-list { margin: 0 -10px; }
  .disable-scrolling {
    overflow: hidden;
    width: 100%;
    height: 100%;
  }
}

hr {
  width: 70px;
  border: 0.5px solid rgba(0,0,0,0.2);
  margin: 60px auto;
}

hr.compact {
  margin: 40px auto;
}

@media screen and (max-width: 1289px) {


  .cb-ppl .person-card {
    width: 48vw;
    margin: 14px 0;
  }           
            
  .cb-ppl .person-card img {
    width: 48vw;
    height: 48vw;
  }         
              
  .cb-ppl .person-card .text {
    box-sizing: border-box;
    width: 48vw;
    height: 110px;
    background-color: white;
    padding: 20px;
  }

  .cb-ppl .person-card .text .brief {
    font-size: 16px;
    line-height: 22px;
  }


  div#popup-product {
    display: none;
    position: fixed;
    width: 100vw;
    height: 60px;
    bottom: 0;
    background-color: rgb(245,245,245);
    border-top: 1px solid rgb(219,219,219);
    padding: 0;
    z-index: 10;
    overflow-y: hidden;
    box-sizing: border-box;
  }

  div#popup-product p {
    width: calc(100vw - 180px);
    font-size: 14px;
    font-weight: 500;
    color: rgb(51, 51, 51);
    line-height: 20px;
    padding: 0;
    margin: 10px 20px;
    word-break: break-all;
  }

  div#popup-product p.price {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', serif;
    font-style: italic;
    width: 70px;
    min-width: 60px;
    color: rgb(250,100,0);
    line-height: 20px;
    margin: 10px 20px;
    padding: 0;
    white-space: nowrap;
  }

  div#popup-product  div#add-to-cart {
    width: 110px;
    height: 60px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 60px;
    background-color: rgb(250,100,0);
    color: white;
    cursor: pointer;
  }

  div#popup-product div#check-cart {
    width: 0;
    height: 60px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 60px;
    background-color: rgb(250,100,0);
    color: white;
    cursor: pointer;
    z-index: 2;
  }

  div#popup-product div#check-cart.added {
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    width: 100vw;
    background-color: green;
    cursor: normal;
  }

  div#popup-product div.buy-box p.t3 {
    font-size: 14px;
    color: orange;
    margin-top: 0;
    line-height: 14px;
    white-space: nowrap;
  }

  .person-image {
    padding: 0;
  }


  .footer-nav {
    padding: 0 20px;
  }

  div.cart-container {
    padding: 20px;
  }

  table.cart th, table.cart td {
    padding: 10px;
  }

  .story-header {
    padding: 0;
    width: 100vw;
    height: 70vh;
    margin: 0;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
  }

  .story-header img#story-cover {
    object-fit: cover;
    width: 100vw;
    height: 70vh;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(85%);
  }

  .story-header img#story-cover.full-brightness {
    filter: brightness(100%);
  }

  p#story-cover-cc {
    position: absolute;
    top: 5px;
    right: 20px;
    font-size: 9px;
    line-height: 12px;
    font-weight: 600;
    text-align: right;
    width: 200px;
    color: rgba(255,255,255,0.5);
  }

  .story-header #story-title-container {
    position: absolute;
    box-sizing: border-box;
    width: 80%;
    padding: 20px;
    bottom: 0;
    left: 0;
  }

  h1#story-title {
    font-size: 34px;
    line-height: 50px;
  }

  h2#story-subtitle {
    font-size: 15px;
    line-height: 16px;
    font-weight: 400;
    margin: 0;
    width: auto;
  }

  h2#story-credit {
    font-size: 16px;
    margin-bottom: 20px;
  }

  hr { margin: 50px auto; }

  .author-row {
    padding: 0 20px;
    box-sizing: border-box;
  }

  .author-row img {
    width: 100%;
    height: 300px;
    max-height: calc(100vw - 40px);
    object-fit: cover;
  }

  .author-row h1.with-img, .author-row h1 {
    font-size: 17px;
    font-weight: 500;
    margin: 22px 0 22px 0;
    padding: 0;
    background-color: transparent;
    line-height: 30px;
  }

  .author-row p.with-img, .author-row p {
    font-size: 17px;
    font-weight: 400;
    color: rgb(120,120,120);
    background-color: transparent;
    margin: 0 0 30px 0;
    padding: 0;
    line-height: 30px;
  }

  .disable-scrolling {
    overflow: hidden;
    position: fixed;
  }

  html, body {
    width: 100%;
    overflow-x: hidden;
  }

  h1 {
    font-size: 22px;
    line-height: 46px;
    margin: 0 0 15px 0;
  }


  .container {
    width: 100vw;
    margin: 0 auto;
  }

  .top-nav {
    width: 100%;
    height: 65px;
    padding-top: 0;
    margin: 0;
    position: static;
    top: 0;
    left: 0;

    background-color: white;
    border-bottom: 1px solid rgb(219,219,219);
    /*box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);*/
  }

  .top-nav .logo-wrap {
    width: 60vw;
    height: 65px;
    text-align: center;
  }

  .top-nav .logo-wrap img#std { display: none; }
  .top-nav .logo-wrap img#mobile { display: inline-block; }

  .top-nav .logo-wrap img {
    height: 20px;
    width: auto;
    padding-top: 25px;
  }

  .top-nav .menu-wrap .items {
    width: 90vw;
    height: 100%;
    background-color: white;
    border-right: 1px solid rgb(219,219,219);
  }

  .top-nav .shopping-bag-wrap {
    width: 70px;
    padding-bottom: 15px;
    text-align: center;
  }

  .top-nav .menu-icon-wrap {
    display: block;
    width: 70px;
    padding-bottom: 15px;
    text-align: center;
  }

  .cb-wrap {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
  }

  .cb-left {
    width: calc(100% - 70px);
    height: auto;
    padding: 30px 35px 30px 35px;
    margin-right: 0;
    background-color: white;
    order: 2;
  }

  .cb-img {
    width: 100vw;
    height: auto;
    max-height: calc(100vw * 0.52);
    order: 1;
    object-fit: cover;
  }

  .cb-wrap h1 {
    font-weight: 200;
    font-size: 24px;
    line-height: 38px;
    margin: 0 0 14px 0;
  }

  .cb-wrap p {
    font-size: 18px;
    line-height: 28px;
    margin: 0 0 24px 0;
  }

  .inspired-wrap {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
  }

  .inspired-card {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    margin: 10px 10px 20px 10px;
    cursor: pointer;
  }

  .inspired-card img {
    width: calc(100% - 20px);
    height: auto;
    max-height: calc((100vw - 20px) * 0.52);
  }

  .inspired-card .text {
    width: calc(100% - 60px);
    height: auto;
    background-color: white;
    padding: 20px;
  }

  .inspired-headline {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0;
    color: #1e1e1e;
    word-break: break-word;
    word-wrap: break-word;
  }


  .cb-subscribe {
    padding: 40px 20px;
  }

  .cb-subscribe input[type=text] {
    text-align: center;
  }

  .cb-subscribe h1 {
    font-size: 30px;
    line-height: 50px;
  }

  .cb-subscribe p {
    font-size: 17px;
    line-height: 24px;
    margin: 0 0 30px 0;
  }

  .subscribe-row {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 90%;
    height: auto;
    margin: 60px auto 0 auto;
  }

  .cb-subscribe input[type=text] {
    width: 100%;
    margin-bottom: 30px;
  }


  .mobile-flex { display: inline-flex!important; }
  .mobile-inline { display: inline-block!important; }
  .desktop-flex { display: none!important; }
  .desktop-block { display: none!important; }
  .desktop-inline { display: none!important; }
  .desktop-only { display: none!important; }
  .mobile-block { display: inline-block!important; }

  .block { padding: 0; margin-bottom: 0; }

  #top-space { height: 0; }

  .slick-slide { margin: 0 6px; }
  .slick-list { margin: 0 -6px; }

  .fw-cover-list .item {
    width: 208px;
    height: 240px;
  }

  .fw-cover-list .item img {
    height: 260px;
    width: auto;
  }

  .collapse-menu, .collapse-cart {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.1);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    overflow-y: hidden;
  }

  .collapse-menu .menu-wrap, .collapse-cart .menu-wrap {
    display: none;
    width: 85%;
    height: calc(100vh - 65px);
    position: relative;
    background-color: white;
    padding-top: 65px;
    z-index: 2;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .collapse-cart .menu-wrap {
    position: fixed;
    top: 0;
    right: 0;
  }

  .collapse-menu .menu-wrap::-webkit-scrollbar, .collapse-cart .menu-wrap::-webkit-scrollbar {
    display: none;
  }

  .collapse-menu .menu-wrap .ctr-bar, .collapse-cart .menu-wrap .ctr-bar {
    width: 85%;
    position: fixed;
    height: 65px;
    top: 0;
    left: 0;
    background-color: white;
    z-index: 10;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-end;
  }

  .collapse-cart .menu-wrap .ctr-bar {
    position: fixed;
    top: 0;
    left: 15%;
    width: 85%;
    justify-content: flex-end;
    border-bottom: 1px solid rgb(219, 219, 219);
  }

  .collapse-menu .menu-wrap .search-bar {
    width: calc(100% - 49px);
    height: 25px;
    background-color: black;
    color: rgb(220,220,220);
    padding: 20px 25px;
    z-index: 2;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
  }

  .collapse-menu .menu-wrap .nav-list {
    width: calc(100% - 50px);
    padding: 10px 25px 100px 25px;
    z-index: 2;
  }

  .collapse-menu .menu-wrap .nav-list-lv2 {
    display: none;
    width: 100%;
    padding: 0;
    z-index: 2;
  }

  .collapse-cart .menu-wrap .item-list {
    width: 100%;
    padding: 0 0 180px 0;
    z-index: 2;
  }

  .collapse-menu .menu-wrap .nav-list-lv2 .header-bar,
  .collapse-cart .menu-wrap .item-list .item-bar {
    width: 100%;
    height: 65px;

    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgb(219,219,219);

    text-align: center;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 65px;
    color: rgb(51,51,51);
  }

  .collapse-cart .menu-wrap .item-list .item-bar {
    font-size: 14px;
    line-height: 20px;
    color: rgb(51,51,51);
  }

  .collapse-cart .menu-wrap .item-list .item-bar.header {
    font-weight: 500;
    background-color: rgb(246,246,246);
  }

  .item-list .item-bar .sale {
    border-right: 1px solid rgb(219,219,219);
    width: 272px;
    height: 65px;
    font-size: 13px;
    cursor: pointer;
    padding: 0 10px 0 20px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }

  .item-list .item-bar .title {
    border-right: 1px solid rgb(219,219,219);
    width: 150px;
    height: 65px;
    cursor: pointer;
    padding: 0 10px 0 20px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }

  .item-list .item-bar .price {
    border-right: 1px solid rgb(219,219,219);
    width: 60px;
    height: 65px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
  }

  .item-list .item-bar .quantity {
    border-right: 1px solid rgb(219,219,219);
    width: 60px;
    height: 65px;
    cursor: pointer;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
  }

  .item-list .item-bar .control {
    width: 60px;
    height: 65px;
    cursor: pointer;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
  }



  .nav-list-lv2 .header-bar .prev {
    border-right: 1px solid rgb(219,219,219);
    width: 50px;
    height: 65px;
    cursor: pointer;
  }

  .nav-list-lv2 .header-bar .title {
    width: calc(100% - 41px);
    height: 65px;
  }

  .collapse-menu .menu-wrap .nav-list-lv2 .section-bar,
  .collapse-cart .menu-wrap .item-list .section-bar {
    width: calc(100% - 50px);
    height: 65px;
    padding: 0 25px;
    background-color: rgba(246,246,246,1);

    text-align: left;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 65px;
    color: rgb(51,51,51);
  }


  .nav-list-lv2 .item {
    width: calc(100% - 50px);
    height: 65px;
    padding: 0;
    margin: 0 25px;
    border-bottom: 1px solid rgb(219,219,219);

    text-align: left;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 65px;
    color: black;
    cursor: pointer;
  }

  .nav-list-lv2 .item.last {
    border-bottom: none; 
  }

  .nav-list-lv2 .item:hover {
    text-decoration: underline;
  }

  .space {
    height: 200px;
  }

  .collapse-menu .menu-wrap .nav-list .item {
    width: 100%;
    height: 65px;

    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;

    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 65px;
    letter-spacing: 1px;
    color: rgb(51,51,51);
    margin: 0;
    padding: 0;
    text-align: left;

    cursor: pointer;

  }

  .collapse-menu .menu-wrap .nav-list .item .arrow {
    color: rgb(250,100,0);
  }

  .collapse-menu .menu-wrap .ctr-bar .menu-icon-wrap, .collapse-cart .menu-wrap .ctr-bar .menu-icon-wrap {
    display: block;
    width: 70px;
    padding-bottom: 15px;
    text-align: center;
    cursor: pointer;
  }


  .listing-wrap {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .listing-wrap .listing {
    height: calc(50vw + 60px);
    width: calc(50vw - 10px);
    margin: 0;
    order: 2;
  }

  .listing-wrap .listing.m-w1 {
    height: auto;
  }

  .listing-wrap .listing.m-w2 {
    height: auto;
    width: calc(100vw - 12.5px);
    margin: 0 6.25px;
  }

  .listing-wrap .listing.m-w2 img {
    width: calc(100vw - 12.5px);
    height: calc(100vw - 12.5px);
  }

  .listing-wrap .listing.m-w1 img {
    width: calc(50vw - 10px);
    height: calc(50vw - 10px);
  }

  .listing-wrap .listing-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(50vw - 10px);
    width: calc(50vw - 10px);
    overflow: hidden;
  }

  .listing-wrap .listing-img img {
    /*height: 310px;*/
    height: calc(50vw + 10px); /* 10% larger*/
    width: auto;
  }

  .listing-wrap .listing-text {
    width: calc(50vw - 10px);
    padding-top: 15px;
  }

  .listing-wrap .listing-text h1 {
    width: 35vw;
  }

  .listing-wrap .listing-text h1 span.price { margin-left: 5px; }

  .lh {
    width: 90vw;
    margin: 20px auto 10px auto;
    padding: 0;
  }

  .lh h1 {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 17px;
    line-height: 30px;
    letter-spacing: 0;
    color: rgb(51,51,51);
    word-break: break-word;
    word-wrap: break-word;
    padding: 0;
    margin: 0 0 17px 0;
    text-align: center;
  }

  .lh h2 {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.5;
    color: rgb(51,51,51);
    word-break: break-word;
    word-wrap: break-word;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .bh-wrap {
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
  }

  .bh-photos {
    width: 100vw;
  }

  .bh-photos #icon-list {
    right: 5px;
    bottom: 5px;
    flex-flow: column nowrap;
  }

  .slide-info {
    font-size: 13px;
    padding-top: 12px;
  }

  .slide-wrap {
    width: 100vw;
    height: auto;
  }

  .slide-wrap .control {
    display: none!important;
  }

  .slide-wrap .img-wrap {
    width: 100vw;
    height: auto;
    overflow-x: hidden;
    text-align: center;
  }

  .slide-wrap .img-wrap img {
    width: 100vw;
    height: auto;
    min-height: 380px;
    margin: 0 auto;
    object-fit: cover;
  }

  .bh-info {
    width: 95vw;
    height: auto;
    padding-top: 0;
    margin: 40px 0 0 0;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
  }

  .bh-info .title {
    text-align: center;
  }

  .bh-info h1 {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 22px;
    line-height: 40px;
    letter-spacing: 0;
    color: rgb(51,51,51);
    word-break: break-word;
    word-wrap: break-word;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .bh-info h1.ot {
    font-family: 'Noto Sans TC', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-style: normal;
    font-size: 15px;
    line-height: 26px;
    color: rgb(51,51,51);
    word-break: break-word;
    word-wrap: break-word;
    padding: 0;
    margin: 0 0 10px 0;
    text-align: center;
  }

  .bh-info .cc-wrap {
    margin-bottom: 20px;
  }

  .bh-info h2 {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 16px;
  }

  .product-desc {
    margin: 0;
    padding: 0 20px;
  }

  .person-desc {
    margin: 30px 0 0 0;
    padding: 0 20px;
  }

  .article {
    margin: 0;
    padding: 0;
  }

  #article {
    margin: 30px 0 0 0;
    padding: 0 20px;
  }

  .product-desc p,
  .person-desc p {
    font-size: 17px;
    line-height: 30px;
  }

  #article p {
    font-size: 18px;
    line-height: 34px;
    margin-bottom: 40px;
    letter-spacing: 0.1px;
  }

  .bh-info .about h1 {
    font-weight: 500;
    font-size: 22px;
    line-height: 36px;
    margin: 0 0 22px 0;
    border-bottom: 3px solid rgb(51,51,51);
    color: rgb(51,51,51);
    text-align: left;
    padding-top: 0;
    display: inline-block;
  }

  .bh-info h3 {
    margin: 8px 0;
  }

  .bh-info h4,
  h4.story-meta {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .bh-info h5 {
    font-size: 15px;
    line-height: 19px;
    letter-spacing: 0;
    color: rgb(51,51,51);
    padding: 0;
    margin: 0 0 25px 0;
  }


  .bb-container {
    width: 92vw;
    margin: 0 auto;
  }

  .bb-wrap {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .bb-left, .bb-right {
    width: 100%;
  }

  .bb-section h2 {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.2px;
    color: rgb(51,51,51);
    margin: 0 0 18px 0;
  }

  .bb-section h2.awards {
    margin-bottom: 0;
  }

  .bb-section .about {
    position: relative;
    margin-bottom: 80px;
  }

  .bb-section .about-text {
    width: 100%;
    height: 200px;
    overflow-y: hidden;
  }

  .bb-section .about-text.without-after-element:after {
    content: none;
  }

  .bb-section .about-text:after {
    content:"";
    position:absolute;
    top:160px;
    left:0;
    height:40px;
    width:100%;
    background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,1));
    pointer-events: none;
  }

  .bb-section .about h5#see-more {
    text-transform: uppercase;
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 20px;
    z-index: 2;
    color: rgb(61,61,61);
    font-weight: 400;
    cursor: pointer;
  }

  .bb-section h1 {
    border-bottom: 1px solid rgb(81,81,81);
  }

  .bb-section .read-first {
    width: 100%;
    height: 40px;
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 65px;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 500;
    background-color: black;
    color: white;
    border-radius: 4px;
    cursor: pointer;
  }

  #read-first {
    position: fixed;
    width: calc(100vw - 52px);
    height: calc(100vh - 105px);
    top: 0;
    left: 0;
    z-index: 100;
    background-color: black;
    display: none;
    padding: 85px 26px 20px 26px;
    overflow-y: auto;
  }

  #read-first p {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 18px;
    color: white;
    word-break: break-word;
    word-wrap: break-word;
    text-align: justify;
  }

  #read-first .header {
    width: 100%;
    height: 65px;
    border-bottom: 1px solid rgb(219,219,219);
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    background-color: white;
  }

  #read-first .header .title {
    width: calc(100% - 102px);
    padding: 10px 0 10px 26px;
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: black;
  }

  #read-first .header .close {
    width: 50px;
    text-align: right;
    font-size: 18px;
    line-height: 50px;
    padding: 0 20px 0 0;
    margin: 0;
    cursor: pointer;
  }

  .top-nav .shopping-bag-wrap .item-count {
    bottom: 10px;
    right: 12px;
    line-height: 16px;
    border-radius: 16px;
    min-width: 16px;
    height: 16px;
    padding: 2px;
    font-size: 12px;
  }

  .bb-section .person-wrap .person-photo {
    max-width: 200px;
    height: auto;
  }

  .bb-section .person-wrap .person-photo .cc {
    font-size: 11px;
    line-height: 13px;
  }

  #popup-box .msg-wrap {
    width: calc(100% - 50px);
    padding: 20px;
    margin: 10px auto 0 auto;
  }

  #cart-box {
    width: 100%;
  }

  #cart-box .item {
    height: auto;
  }

  #cart-box .item .item-img {
    height: 100px;
    width: 100px;
  }

  #cart-box .item .item-img img {
    height: 110px;
    width: auto;
  }

  #cart-box .item .desc-wrap {
    width: calc(100% - 110px);
  }

  #cart-box .item .desc-wrap h2 {
    font-size: 16px;
  }

  #cart-box .item .desc-wrap h3 {
    font-size: 16px;
  }

  #cart-box .item .desc-wrap h4 {
    font-size: 16px;
    margin-top: 4px;
  }

}

div.signin-selector {
  text-align: center;
  margin: 0 auto;
  width: 206px;
}

form#checkout-form {
  width: 1290px;
  margin: 60px auto;
  max-width: 100%;
}

table.checkout-form {
  width: 100%;
  font-size: 16px;
  text-align: left;
  margin: 30px 0;
  border-collapse: collapse;
  color: rgb(60,60,60);
}

table.checkout-form div.vat,
table.checkout-form div.reward-points {
  padding: 30px 20px;
  background-color: rgb(246,246,246);
  margin: 10px 0;
  display: none;
}

table.checkout-form td, table.checkout-form th {
  vertical-align: top;
  padding: 10px;
}

table.checkout-form thead tr th{
  background-color: rgb(246,246,246);
  border-bottom: 1px solid rgb(219,219,219);
}

table.checkout-form td.cc {
  vertical-align: middle;
  width: 80px;
}

table.checkout-form td.cc.top {
  vertical-align: top;
}

table.checkout-form td.field {
  width: calc(100% - 80px);
}

table.checkout-form tr.shortd td.cc {
  width: 40px;
}

table.checkout-form tr.shortd td.field {
  width: calc(100% - 40px);
}

table.checkout-form input[type=text],
table.checkout-form textarea,
table.checkout-form input[type=number] {
  width: 100%;
  padding: 10px 5px;
  box-sizing: border-box;
  border: 1px solid rgb(219,219,219);
  font-size: 16px;
  color: rgb(60,60,60);
}
