@charset "UTF-8";
.favorite-msg-popup {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  z-index: 10000;
  display: none;
}
.favorite-msg-popup.is-show {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.favorite-msg-popup.has-icon .popup-inbox-header {
  display: block;
}
.favorite-msg-popup.has-icon .popup-inbox-content {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.favorite-msg-popup .popup-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.favorite-msg-popup .popup-inbox {
  width: 90%;
  max-width: 420px;
  z-index: 1;
}
.favorite-msg-popup .popup-inbox-header {
  position: relative;
  border-top: 8px solid #FFBE00;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: none;
}
.favorite-msg-popup .popup-inbox-header .header__icon {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: white;
  background-color: #FFBE00;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  font-size: 25px;
  z-index: 1;
}
.favorite-msg-popup .popup-inbox-content {
  background-color: white;
  padding-top: 30px;
  border-radius: 10px;
}
.favorite-msg-popup .popup-inbox-content .content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2.5rem;
}
.favorite-msg-popup .popup-inbox-content .content-title-text {
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: 2px solid #FFBE00;
  padding-bottom: 0.4rem;
}
.favorite-msg-popup .popup-inbox-content .content-description {
  margin-bottom: 2.5rem;
  padding: 0 2rem;
  text-align: center;
  font-weight: bold;
}
.favorite-msg-popup .popup-inbox-content .content-list {
  padding: 0 2.5rem;
  margin-bottom: 2.5rem;
}
.favorite-msg-popup .popup-inbox-content .content-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.favorite-msg-popup .popup-inbox-content .content-list-item.template {
  display: none !important;
}
.favorite-msg-popup .popup-inbox-content .content-list-item .item__left {
  color: #7a7a7a;
  width: 3rem;
  margin-right: 1.5rem;
}
.favorite-msg-popup .popup-inbox-content .content-list-item .item-right {
  width: calc(100% - 2rem - 0.5rem);
}
.favorite-msg-popup .popup-inbox-content .content-list-item .item-right__text {
  color: black;
  font-weight: bold;
}
.favorite-msg-popup .popup-inbox-content .content-list-item .item-right__textarea {
  resize: none;
  width: 100%;
  border: 1px solid #cccccc;
  padding: 0.2rem;
}
.favorite-msg-popup .popup-inbox-content .content-list-item .item-right__checkbox {
  width: 15px;
  height: 15px;
}
.favorite-msg-popup .popup-inbox-content .content-list-item .item-right__span {
  margin-right: 10px;
}
.favorite-msg-popup .popup-inbox-content .content-list-item .item-right__error {
  display: none;
  visibility: hidden;
  color: red;
  font-size: 12px;
}
.favorite-msg-popup .popup-inbox-content .content-list-item .item-right__error.is-show {
  display: block;
  visibility: visible;
  margin-top: 5px;
}
.favorite-msg-popup .popup-inbox-content .content-footer {
  padding-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.favorite-msg-popup .popup-inbox-content .content-footer__btn {
  border-radius: 5px;
  width: 50%;
  height: 2.5rem;
  text-align: center;
  line-height: 2.5rem;
  cursor: pointer;
}
.favorite-msg-popup .popup-inbox-content .content-footer__btn--ok {
  background-color: #FFBE00;
  color: white;
}
.favorite-msg-popup .popup-inbox-content .content-footer__btn--cancel {
  background-color: white;
  color: #FFBE00;
  display: none;
}
.favorite-msg-popup .popup-inbox-content .content-footer__btn--cancel.is-show {
  display: block;
}
.favorite-msg-popup .popup-inbox-content .content-footer__btn:hover {
  opacity: 0.8;
}

/* 全站訊息提式燈箱(目前僅用在購物車相關) */
.cart-msg-popup {
  color: #000;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  z-index: 10000;
  display: none;
}
.cart-msg-popup.is-show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cart-msg-popup .popup-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cart-msg-popup .popup-inbox {
  width: 90%;
  max-width: 420px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}
.cart-msg-popup .popup-inbox-content {
  padding: 30px 10px;
  background-color: white;
  text-align: center;
}
.cart-msg-popup .popup-inbox-content .content__icon {
  margin-bottom: 20px;
  display: none;
}
.cart-msg-popup .popup-inbox-content .content__icon.is-show {
  display: block;
}
.cart-msg-popup .popup-inbox-content .content__icon i {
  font-size: 4rem;
  color: #FFBE00;
}
.cart-msg-popup .popup-inbox-content .content__icon img {
  width: 100px;
}
.cart-msg-popup .popup-inbox-content .content__icon p {
  margin: 0 auto;
  font-size: 2.5rem;
  font-weight: bold;
}
.cart-msg-popup .popup-inbox-content .content__text {
  font-weight: bold;
  display: none;
  font-size: 1rem;
  margin-bottom: 0;
}
.cart-msg-popup .popup-inbox-content .content__text.is-show {
  display: block;
}
.cart-msg-popup .popup-inbox-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cart-msg-popup .popup-inbox-footer .footer__button {
  background-color: #cccccc;
  color: black;
  padding: 15px 0;
  font-size: 0.8rem;
  text-align: center;
  width: 100%;
  border-radius: 0;
  border: 0;
  cursor: pointer;
}
.cart-msg-popup .popup-inbox-footer .footer__button:hover {
  -webkit-filter: brightness(0.9);
}
.cart-msg-popup .popup-inbox-footer .footer__button.template {
  display: none !important;
}
.cart-msg-popup .popup-inbox-footer .footer__button:first-child + .clone {
  background-color: #FFBE00;
  color: white;
}

.iteminfo-msg-popup {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  z-index: 10000;
  display: none;
}
.iteminfo-msg-popup.is-show {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.iteminfo-msg-popup.has-icon .popup-inbox-header {
  display: block;
}
.iteminfo-msg-popup.has-icon .popup-inbox-content {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.iteminfo-msg-popup .popup-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.iteminfo-msg-popup .popup-inbox {
  width: 90%;
  max-width: 420px;
  z-index: 1;
}
.iteminfo-msg-popup .popup-inbox-header {
  position: relative;
  border-top: 8px solid #9cc715;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: none;
}
.iteminfo-msg-popup .popup-inbox-header .header__icon {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: white;
  background-color: #9cc715;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  font-size: 25px;
  z-index: 1;
}
.iteminfo-msg-popup .popup-inbox-content {
  background-color: white;
  padding-top: 30px;
  border-radius: 10px;
}
.iteminfo-msg-popup .popup-inbox-content .content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2.5rem;
}
.iteminfo-msg-popup .popup-inbox-content .content-title-text {
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: 2px solid #9cc715;
  padding-bottom: 0.4rem;
}
.iteminfo-msg-popup .popup-inbox-content .content-description {
  margin-bottom: 2.5rem;
  padding: 0 2rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 2px;
}
.iteminfo-msg-popup .popup-inbox-content .content-footer {
  padding-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.iteminfo-msg-popup .popup-inbox-content .content-footer__btn {
  border-radius: 5px;
  width: 50%;
  height: 2.5rem;
  text-align: center;
  line-height: 2.5rem;
  cursor: pointer;
}
.iteminfo-msg-popup .popup-inbox-content .content-footer__btn--ok {
  background-color: #9cc715;
  color: white;
}
.iteminfo-msg-popup .popup-inbox-content .content-footer__btn--cancel {
  background-color: white;
  color: #9cc715;
  display: none;
}
.iteminfo-msg-popup .popup-inbox-content .content-footer__btn--cancel.is-show {
  display: block;
}
.iteminfo-msg-popup .popup-inbox-content .content-footer__btn:hover {
  opacity: 0.8;
}

.common-lightbox-popup {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  z-index: 10000;
  display: none;
}
.common-lightbox-popup.is-show {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.common-lightbox-popup.has-icon .popup-inbox-header {
  display: block;
}
.common-lightbox-popup.has-icon .popup-inbox-content {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.common-lightbox-popup .popup-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.common-lightbox-popup .popup-inbox {
  width: 90%;
  max-width: 420px;
  z-index: 1;
}
.common-lightbox-popup .popup-inbox-header {
  position: relative;
  border-top: 8px solid #96c115;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: none;
}
.common-lightbox-popup .popup-inbox-header .header__icon {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: white;
  background-color: #96c115;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 25px;
  z-index: 1;
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.common-lightbox-popup .popup-inbox-content {
  background-color: white;
  padding-top: 30px;
  border-radius: 10px;
}
.common-lightbox-popup .popup-inbox-content .content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2.5rem;
}
.common-lightbox-popup .popup-inbox-content .content-title-text {
  display: none;
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: 2px solid #96c115;
  padding-bottom: 0.4rem;
}
.common-lightbox-popup .popup-inbox-content .content-title-text.is-show {
  display: block;
}
.common-lightbox-popup .popup-inbox-content .content-title-html {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.common-lightbox-popup .popup-inbox-content .content-title-html.is-show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.common-lightbox-popup .popup-inbox-content .content-description {
  margin-bottom: 2.5rem;
  padding: 0 2rem;
  text-align: center;
  font-weight: bold;
}
.common-lightbox-popup .popup-inbox-content .content-list {
  padding: 0 2.5rem;
  margin-bottom: 2.5rem;
}
.common-lightbox-popup .popup-inbox-content .content-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.common-lightbox-popup .popup-inbox-content .content-list-item.template {
  display: none !important;
}
.common-lightbox-popup .popup-inbox-content .content-list-item .item__left {
  color: #7a7a7a;
  width: 3rem;
  margin-right: 1.5rem;
}
.common-lightbox-popup .popup-inbox-content .content-list-item .item-right {
  width: calc(100% - 2rem - 0.5rem);
}
.common-lightbox-popup .popup-inbox-content .content-list-item .item-right__text {
  color: black;
  font-weight: bold;
}
.common-lightbox-popup .popup-inbox-content .content-list-item .item-right__textarea {
  resize: none;
  width: 100%;
  border: 1px solid #cccccc;
  padding: 0.2rem;
}
.common-lightbox-popup .popup-inbox-content .content-list-item .item-right__checkbox {
  width: 15px;
  height: 15px;
}
.common-lightbox-popup .popup-inbox-content .content-list-item .item-right__span {
  margin-right: 10px;
}
.common-lightbox-popup .popup-inbox-content .content-list-item .item-right__error {
  display: none;
  visibility: hidden;
  color: red;
  font-size: 12px;
}
.common-lightbox-popup .popup-inbox-content .content-list-item .item-right__error.is-show {
  display: block;
  visibility: visible;
  margin-top: 5px;
}
.common-lightbox-popup .popup-inbox-content .content-footer {
  padding-bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.common-lightbox-popup .popup-inbox-content .content-footer.is-two-btn {
  padding-bottom: 1rem;
}
.common-lightbox-popup .popup-inbox-content .content-footer__btn {
  border-radius: 5px;
  width: 50%;
  height: 2.5rem;
  text-align: center;
  line-height: 2.5rem;
  cursor: pointer;
}
.common-lightbox-popup .popup-inbox-content .content-footer__btn--ok {
  background-color: #96c115;
  color: white;
}
.common-lightbox-popup .popup-inbox-content .content-footer__btn--cancel {
  background-color: white;
  color: #b1b0b0;
  display: none;
}
.common-lightbox-popup .popup-inbox-content .content-footer__btn--cancel.is-show {
  display: block;
}
.common-lightbox-popup .popup-inbox-content .content-footer__btn:hover {
  opacity: 0.8;
}