@charset "UTF-8";
/******************************************************************************
 * Version 1.0 Release;
 * Copyright 2020
 ******************************************************************************/
/* Chrome, Safari, AND NOW ALSO the Edge Browser and Firefox */
@import url("https://fonts.googleapis.com/css?family=Lato:300,400,400i,700,900");
@keyframes alert_show {
  0% {
    opacity: 0;
    top: -90px;
  }
  100% {
    opacity: 1;
    top: calc(50vh - 45px);
  }
}
@keyframes alert_content_show {
  0% {
    width: 100vw;
    height: 100vh;
  }
  100% {
    width: 512px;
    height: 120px;
  }
}
@keyframes alert_hide {
  0% {
    opacity: 1;
    top: calc(50vh - 45px);
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    top: -90px;
  }
}
.alert {
  position: fixed;
  width: 100vw;
  display: none;
  z-index: 12;
}

.alert--active {
  display: block;
  animation: alert_show 0.4s forwards;
}

.alert__content {
  font-size: 26px;
  text-align: center;
  padding: 1.5em 1.25em;
  border: 1px solid #F96166;
  color: #F96166;
  background: #fff;
  margin: 0 auto;
  width: 512px;
  max-width: 100%;
  box-shadow: 0 5px 10px -2px rgba(100, 100, 100, 0.1);
  position: relative;
  transform-origin: top;
}

.alert--closed {
  display: block;
}

.alert--closed {
  animation: alert_hide 1s forwards;
}

/*按鈕 button*/
.btn {
  background: #fff;
  height: 42px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  padding: 0 10px;
  font-size: 16px;
  line-height: 42px;
  /*font-weight: normal;*/
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  letter-spacing: 0.05em;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 5px;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.btn--new {
  position: relative;
}
.btn--new::after {
  content: "NEW";
  position: absolute;
  color: #fff;
  top: -5px;
  right: -5px;
  margin: -5px;
  line-height: 14px;
  padding: 0.25em 0.5em;
  font-size: 12px;
  z-index: 10;
  -webkit-transform: scale(0.85);
  transform: scale(0.85);
  background: #ff6e62;
  border-radius: 4px;
}

.btn:disabled,
.btn.btn--disabled {
  border-color: #E5E5E5;
  background: #E5E5E5;
  color: #fff;
}

.btn:disabled span,
.btn.btn--disabled span {
  pointer-events: none;
}

.form-group--d-block .btn,
.lightbox .btn {
  min-height: 50px;
}

.form-group--input-size-normal .btn {
  min-height: 42px;
}

.form-group--d-block .btn .icon__control,
.form-group--d-block .btn .icon__control-sm {
  margin-right: 0.5em;
}

.btn--square {
  border-radius: 0;
}

.btn:not(:disabled):not(.btn--disabled):focus,
.btn:not(:disabled):not(.btn--disabled):active {
  color: #fff;
  background: #211C15;
  border-color: #211C15;
}

.btn:active {
  background-image: none;
  outline: 0;
}

/*按鈕 button-disable*/
.btn--default[disabled],
.btn--default.disabled:hover,
.btn--default[disabled]:hover,
.btn--default.disabled:focus,
.btn--default[disabled]:focus,
.btn--primary[disabled],
.btn--primary.disabled:hover,
.btn--primary[disabled]:hover,
.btn--primary.disabled:focus,
.btn--primary[disabled]:focus,
.btn-addcart.disabled:hover,
.btn-addcart[disabled]:hover,
.btn-addcart.disabled:focus,
.btn-addcart[disabled]:focus,
.btnsubtract.disabled:hover,
.btn-subtract[disabled]:hover,
.btn-subtract.disabled:focus,
.btn-subtract[disabled]:focus,
.btn-add.disabled:hover,
.btn-add[disabled]:hover,
.btn-add.disabled:focus,
.btn-add[disabled]:focus {
  cursor: not-allowed;
  background: #e5e5e5;
  border-color: #e5e5e5;
  color: #fff;
}

/*按鈕大小*/
.btn-xs {
  font-size: 14px;
  padding: 3px 6px;
}

.btn-sm {
  font-size: 14px;
  padding: 6px 20px;
  height: 40px;
}

.btn-md {
  font-size: 1em;
  width: 100%;
}

.btn-lg {
  height: 50px;
  font-size: 1em;
  width: 100%;
}

.text-center .btn {
  margin: 0 auto;
}

/*隨父層大小*/
.btn--block {
  width: 100%;
}

/* 最大寬 */
.btn--max-width-lg {
  max-width: 300px;
}

.btn--max-width-md {
  max-width: 170px;
}

a.btn.disabled {
  pointer-events: none;
}

/*非全寬*/
.btn--inline {
  width: auto;
  display: inline-block;
}

/*單顆按鈕區*/
.btnbox {
  text-align: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}
.btnbox__group {
  display: flex;
  flex-direction: column;
}
.btnbox__group .btn {
  min-height: 42px;
  min-width: 120px;
}
.btnbox__group > *:not(:first-child) {
  margin-top: 0.5rem;
}

.btnbox .btn {
  /* width: 300px; */
}

/* 按鈕-icon類型 */
.btn-icon {
  display: block;
  color: #999;
}

.btn-icon:active {
  color: #222;
}

.icon-btn__icon {
  font-size: 16px;
}

.btn-icon-link {
  text-decoration: none;
}

/*多顆按鈕區*/
.btnboxs .btn {
  margin-bottom: 20px;
}

.btnboxs--2 {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  max-width: 276px;
  margin: 0 auto;
}

.btnboxs--2 .btn {
  width: calc(50% - 5px);
}

.btnboxs--2-full {
  max-width: none;
}

.btnboxs--2-lg {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  max-width: 548px;
  margin: 0 auto;
}

/*系統頁(儲存、送出...)的操作按鈕群組*/
.sysbtn-group {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

/*2個按鈕*/
.sysbtn-group--btn-2 .btn {
  max-width: calc(50% - 14px);
}

/*3個按鈕*/
.sysbtn-group--btn-3 {
  flex-wrap: wrap;
}

.sysbtn-group--btn-3 .btn {
  max-width: 100%;
}

.sysbtn-group--btn-3 .btn:not(:last-child) {
  margin-bottom: 0.75em;
}

/*按鈕-一般*/
.btn--default {
  color: #033e7c;
  background: #fff;
  border-color: currentColor;
}

.btn--default:focus,
.btn--default:active {
  background: #f5f5f5;
}

.btn--link {
  border-radius: 40px;
  height: 26px;
  padding: 0;
  font-size: 14px;
}

/*按鈕-圓導角*/
.btn--rounded {
  border-radius: 20px;
}

/*按鈕-誘導*/
.btn--primary {
  background: #fff;
  border-color: #211C15;
}

.btn--primary:focus,
.btn--primary:active {
  color: #fff;
  background: #211C15;
  border-color: #211C15;
}

.btn--primary1 {
  color: #211C15;
  background: #fff;
  border-color: #211C15;
}

.btn--primary1:focus,
.btn--primary1:active {
  color: #fff;
  background: #ff6e62;
  border-color: #ff6e62;
}

.btn--primary2 {
  color: #fff;
  background: #ff6e62;
  border-color: #ff6e62;
}

.btn--primary2:focus,
.btn--primary2:active {
  color: #fff;
  background: #F96166;
  border-color: #ff6e62;
}

.btn--primary3 {
  color: #F96166;
  background: transparent;
  border-color: transparent;
}

.btn--primary3:focus,
.btn--primary3:active {
  color: #F96166;
  background: transparent;
  border-color: transparent;
}

.btn--primary4 {
  color: #F96166;
  background: transparent;
  border: none;
}

.btn--primary4:focus,
.btn--primary4:active {
  color: #fff;
  background: #F96166;
}

.btn--black {
  color: #fff;
  background: #211c15;
  border-color: #211c15;
}
.btn--black:not(:disabled):not(.btn--disabled):focus, .btn--black:not(:disabled):not(.btn--disabled):active {
  color: #fff;
  background: rgba(33, 28, 21, 0.8);
  border-color: rgba(33, 28, 21, 0.8);
}
@media (min-width: 992px) {
  .btn--black:not(:disabled):not(.btn--disabled):hover {
    color: #fff;
    background: rgba(33, 28, 21, 0.8);
    border-color: rgba(33, 28, 21, 0.8);
  }
}

/*按鈕-第二誘導*/
.btn--secondary {
  color: #211C15;
  background: #fff;
  border-color: #211C15;
}

.btn--secondary:focus,
.btn--secondary:active {
  color: #211C15;
  background: #fff;
  border-color: #211C15;
}

.btn--secondary1 {
  color: #fff;
  background: #23C6C8;
  border-color: #23C6C8;
}

.btn--secondary1:focus,
.btn--secondary1:active {
  color: #fff;
  background: #2AAFB1;
  border-color: #2AAFB1;
}

.btn--secondary2 {
  color: #555;
  background: transparent;
  border: none;
}

.btn--secondary2:focus,
.btn--secondary2:active {
  color: #fff;
  background: #555;
}

/*按鈕-第三*/
.btn--third {
  color: #555;
  background: #E5E5E5;
  border-color: #E5E5E5;
}

.btn--third:focus,
.btn--third:active {
  background: #fff;
  border-color: #bbb;
  color: #555;
}

/*按鈕-第四(假disabled)*/
.btn--fourth {
  color: #fff;
  background: #E5E5E5;
  border-color: #E5E5E5;
}

.btn--fourth:hover {
  cursor: not-allowed;
}

.btn--fourth:focus,
.btn--fourth:active {
  background: #E5E5E5;
  border-color: #E5E5E5;
  color: #fff;
}

/*按鈕-第四(假disabled)*/
.btn--555 {
  color: #fff;
  background: #555;
  border-color: #555;
}

.btn--555:focus,
.btn--555:active {
  background: #211c15;
  border-color: #211c15;
  color: #fff;
}

/* 按鈕-無邊線 */
.btn--borderless {
  background: transparent;
  border-color: transparent;
  color: #888;
}

.btn--borderless:focus,
.btn--borderless:active {
  background: transparent;
  border-color: transparent;
  color: #211c15;
}

/*按鈕裡的icon*/
.btn__icon {
  margin-right: 5px;
  font-size: 20px;
}

.btn-group-2 {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}

.btn-group-2 .btn {
  flex-basis: 100%;
  max-width: 100%;
}

.btn-group-2 .btn:not(:last-child) {
  margin-bottom: 1em;
}

/*------------------------------ facebook ------------------------------*/
.btn-facebook,
.btn-facebook:active,
.btn-facebook:focus {
  background: #325595;
  color: #fff;
  border-radius: 0;
  border-color: #325595;
}

/*------------------------------ google ------------------------------*/
.btn-google,
.btn-google:active,
.btn-google:focus {
  background: #fff;
  color: #555;
  border: 1px solid #888;
  border-radius: 0;
}

.btn-facebook,
.btn-google {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@-webkit-keyframes like {
  50% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}
@keyframes like {
  50% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}
@media screen and (min-width: 768px) {
  .btn-sm {
    width: 120px;
  }

  .btn-md {
    width: 170px;
  }

  .btn-lg {
    width: 260px;
  }

  /*md非全寬且寬度*/
  .btn--md-inline {
    display: inline-block;
    min-width: 140px;
  }

  /*md左邊增加間距與分隔線*/
  .btn--md-line-left {
    position: relative;
    margin-left: 40px;
  }

  .btn--md-line-left::after {
    content: "";
    display: block;
    background: #211C15;
    width: 1px;
    height: 30px;
    position: absolute;
    top: calc(50% - 15px);
    left: -15px;
  }

  .btn.btn--md-line-left::after {
    left: -20px;
  }

  /*按鈕區-兩顆按鈕*/
  .btnboxs--3 {
    margin: 0 -5px;
  }

  .btnboxs--3 .btn-md {
    width: calc(33.333% - 14px);
    max-width: 170px;
    margin-left: 5px;
    margin-right: 5px;
  }

  .btnboxs--3 .btn-lg {
    width: calc(33.333% - 14px);
    max-width: 260px;
    margin-left: 5px;
    margin-right: 5px;
  }

  .btn-group-2 .btn {
    flex-basis: calc(50% - 15px);
    max-width: calc(50% - 15px);
  }

  .btn-group-2 .btn:not(:last-child) {
    margin-bottom: 0;
  }

  .sysbtn-group {
    max-width: 425px;
    margin: 0 auto;
  }

  .sysbtn-group--btn-3 .btn {
    max-width: calc(33.333% - 14px);
  }

  .sysbtn-group--btn-3 .btn:not(:last-child) {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .btn {
    -webkit-transition: 0.35s background cubic-bezier(0.165, 0.84, 0.44, 1), 0.35s border-color cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 0.35s background cubic-bezier(0.165, 0.84, 0.44, 1), 0.35s border-color cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .btn:disabled:hover,
.btn.btn--disabled:hover {
    cursor: not-allowed;
  }

  .btn:not(:disabled):not(.btn--disabled):hover {
    color: #333;
    text-decoration: none;
  }

  .btn-xs {
    font-size: 14px;
  }

  /*按鈕大小*/
  /*按鈕-一般*/
  .btn--default:not(:disabled):not(.btn--disabled):hover {
    background: #f5f5f5;
  }

  /*按鈕-誘導*/
  .btn--primary:not(:disabled):not(.btn--disabled):hover,
.btn--secondary:not(:disabled):not(.btn--disabled):hover {
    color: #fff;
    background: #211C15;
    border-color: #211C15;
  }

  .btn--black:not(:disabled):not(.btn--disabled):hover {
    color: #fff;
  }

  .btn--primary1:not(:disabled):not(.btn--disabled):hover {
    color: #fff;
    background: #ff6e62;
    border-color: #ff6e62;
  }

  .btn--primary2:not(:disabled):not(.btn--disabled):hover {
    color: #fff;
    background: #F96166;
    border-color: #F96166;
  }

  .btn--primary3:not(:disabled):not(.btn--disabled):hover {
    color: #F96166;
    background: transparent;
    border-color: transparent;
  }

  .btn--primary4:not(:disabled):not(.btn--disabled):hover {
    color: #fff;
    background: #F96166;
    border-color: #F96166;
  }

  .btn--secondary1:not(:disabled):not(.btn--disabled):hover {
    color: #fff;
    background: #2AAFB1;
    border-color: #2AAFB1;
  }

  .btn--secondary2:not(:disabled):not(.btn--disabled):hover {
    color: #fff;
    background: #555;
    border-color: #555;
  }

  .btn--third:not(:disabled):not(.btn--disabled):hover {
    background: #fff;
    border-color: #bbb;
    color: #555;
  }

  .btn--fourth:not(:disabled):not(.btn--disabled):hover {
    background: #E5E5E5;
    border-color: #E5E5E5;
    color: #fff;
  }

  .btn--555:not(:disabled):not(.btn--disabled):hover {
    background: #211c15;
    border-color: #211c15;
    color: #fff;
  }

  /*fb*/
  .btn-facebook:not(:disabled):not(.btn--disabled):hover {
    color: #fff;
    background: #325595;
    border-color: #325595;
    text-decoration: none;
  }

  /*google*/
  .btn-google:not(:disabled):not(.btn--disabled):hover {
    color: #211C15;
    background: #fff;
    text-decoration: none;
  }

  .btn-facebook:not(:disabled):not(.btn--disabled):hover,
.btn-google:not(:disabled):not(.btn--disabled):hover {
    box-shadow: 0 2px 10px -1px rgba(0, 0, 0, 0.2);
  }
}
.card {
  display: flex;
  flex-direction: column;
  border: 1px solid #D5D5D5;
  margin-bottom: 0.75em;
  height: 100%;
  max-height: calc(100% - .75em);
}

.card__header {
  border-bottom: 1px solid #D5D5D5;
}

.card__header,
.card__body,
.card__footer {
  padding: 0.5em;
}

.card__title {
  font-weight: normal;
  display: inline-block;
}

.card__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card--padding-lg .card__body {
  padding: 1em 0.5em;
}

/*列表之4種強調顏色*/
.card--color1 .icon,
.card--color1 .icon-sm,
.card--color1 .icon-md,
.card--color1 .icon-xs,
.card--color1 .data-group__difference {
  color: #429FE4;
}

.card--color2 .icon,
.card--color2 .icon-sm,
.card--color2 .icon-md,
.card--color2 .icon-xs,
.card--color2 .data-group__difference {
  color: #19B394;
}

.card--color3 .icon,
.card--color3 .icon-sm,
.card--color3 .icon-md,
.card--color3 .icon-xs,
.card--color3 .data-group__difference {
  color: #F96166;
}

.card--color4 .icon,
.card--color4 .icon-sm,
.card--color4 .icon-md,
.card--color4 .icon-xs,
.card--color4 .data-group__difference {
  color: #23C6C8;
}

@media screen and (min-width: 992px) {
  .card {
    margin-bottom: 1em;
    height: calc(100% - 1em);
  }
}
.collapse:first-child {
  margin-top: 1.25em;
}
.none_data_hide > .collapse:first-child {
  margin-top: 0;
}
.collapse:last-child {
  margin-bottom: 1.25em;
}
@media (max-width: 991px) {
  .collapse:not(.collapse--active) {
    margin-bottom: -1px;
  }
}
@media (min-width: 992px) {
  .collapse__header:hover {
    cursor: default;
  }
}
.collapse__header {
  text-decoration: none;
  border-top: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
  padding: 1.25rem 0;
  font-size: 1.125em;
  display: flex;
  align-items: center;
  position: relative;
}
@media (min-width: 992px) {
  .collapse__header:hover {
    cursor: default;
  }
}
.collapse__icon {
  margin-right: 0.5em;
}
.collapse--active .collapse__icon {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .collapse__icon.icon__control {
    display: none;
  }
}
.collapse__title, .collapse__subtitle {
  color: #211c15;
  display: inline-block;
}
.collapse__title {
  font-weight: bold;
  flex-grow: 1;
}
@media (min-width: 992px) {
  .collapse__title {
    padding: 0;
  }
}
.collapse__header--has-subtitle .collapse__title {
  margin-top: -0.75em;
}
@media (min-width: 992px) {
  .collapse__header--has-subtitle .collapse__title {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .collapse__title--row {
    display: flex;
  }
}
@media (min-width: 768px) {
  .collapse__title-col {
    flex: 1 1 auto;
    max-width: 100%;
  }
  .collapse__title-col:nth-child(2) {
    text-align: right;
  }
}
.collapse__subtitle {
  font-size: 0.875rem;
  position: absolute;
  top: 50%;
  left: 0;
}
@media (min-width: 992px) {
  .collapse__subtitle {
    position: relative;
  }
}
.collapse__body-container {
  padding: 1.5em 0 2.5em 0;
}
@media (min-width: 992px) {
  .collapse__body-container {
    padding-bottom: 4em;
  }
}
.collapse__body--collapsed {
  display: none;
}
@media (min-width: 992px) {
  .collapse__body--collapsed {
    display: block;
    height: auto !important;
  }
}
.collapse__body--collapsing {
  display: block;
  height: 0;
  overflow: hidden;
}
.collapse__body--show {
  display: block;
}
@media (min-width: 992px) {
  .collapse--example {
    background: #eeeeee;
    border: 1px solid #e5e5e5;
    border-top: none;
  }
}
.collapse--example .collapse__body-container {
  padding: 1.5em 1em;
  white-space: pre-line;
}
@media (min-width: 992px) {
  .collapse--example .collapse__body-container {
    padding: 1.5em 3.75em 3em;
  }
}
@media (min-width: 992px) {
  .collapse--example .collapse__header {
    border-color: #e5e5e5;
  }
}
@media (min-width: 992px) {
  .collapse--example .collapse__title {
    padding: 0 3.75rem;
  }
}
@media (min-width: 992px) {
  .collapse.collapse--lg-collapsible {
    background: transparent;
  }
}
.collapse.collapse--lg-collapsible .collapse__body-container {
  white-space: normal;
}
.collapse.collapse--lg-collapsible .collapse__body-container ul, .collapse.collapse--lg-collapsible .collapse__body-container ol {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .collapse.collapse--lg-collapsible .collapse__header {
    border-color: #e5e5e5;
    border-bottom: none;
  }
}
@media (min-width: 992px) {
  .collapse.collapse--lg-collapsible .collapse__header:hover {
    cursor: pointer;
  }
}
@media (min-width: 768px) {
  .collapse.collapse--lg-collapsible .collapse__icon.icon__control {
    margin-right: 3.25rem;
  }
}
@media (min-width: 768px) {
  .collapse.collapse--lg-collapsible .collapse__body {
    border-top: 1px solid #e5e5e5;
  }
}
@media (min-width: 768px) {
  .collapse.collapse--lg-collapsible .collapse__body-container {
    padding: 1.5em 3.75em 3em;
  }
}
.collapse--noborder .collapse__header {
  border-bottom: none;
}
.collapse--noborder .collapse__body-container {
  padding-top: 0;
  padding-bottom: 3.5em;
}
.collapse--noborder:not(.collapse--active) + .collapse .collapse__header {
  border-top: 1px solid #d5d5d5;
}
@media (min-width: 768px) {
  .collapse--md-noborder .collapse__header {
    border-bottom: none;
  }
  .collapse--md-noborder .collapse__body-container {
    padding-top: 0;
    padding-bottom: 3.5em;
  }
  .collapse--md-noborder:not(.collapse--active) + .collapse .collapse__header {
    border-top: 1px solid #d5d5d5;
  }
}
@media (min-width: 992px) {
  .collapse--lg-header-none .collapse__header {
    display: none !important;
  }
  .collapse--lg-header-none .collapse__body-container {
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .collapse--lg-collapsible {
    border: 1px solid #e5e5e5;
    border-top: none;
  }
}
@media (min-width: 992px) {
  .collapse--lg-collapsible .collapse__header {
    border-bottom: none;
  }
}
@media (min-width: 768px) {
  .collapse--lg-collapsible .collapse__title {
    padding: 0 3.75rem;
  }
}
@media (max-width: 991px) {
  .collapse--lg-collapsible .collapse__body {
    border-bottom: 1px solid #d5d5d5;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .collapse--lg-collapsible .collapse__body {
    border-bottom: none;
  }
}
@media (min-width: 992px) {
  .collapse--lg-collapsible .collapse__body {
    border-top: 1px solid #e5e5e5;
  }
}
@media (min-width: 992px) {
  .collapse--lg-collapsible .collapse__body--collapsed {
    display: none;
  }
}
@media (min-width: 992px) {
  .collapse--lg-collapsible .collapse__icon.icon__control {
    display: flex;
    margin-right: 3.25rem;
  }
}
.collapse.collapse--simple {
  border-color: #d5d5d5;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #d5d5d5;
}
.collapse.collapse--simple + .collapse--simple {
  margin-top: 16px;
}
.collapse.collapse--simple .collapse__header,
.collapse.collapse--simple .collapse__body {
  border-color: #d5d5d5;
}
.collapse.collapse--simple .collapse__header {
  border-top: none;
  border-right: none;
  border-bottom: none;
  height: auto;
  padding: 8px 0;
  line-height: 1.4;
}
.collapse.collapse--simple .collapse__title {
  padding: 0;
}
.collapse.collapse--simple .collapse__icon.icon__control {
  font-size: 14px;
  margin-right: 0;
  color: #333;
}
.collapse.collapse--simple .collapse__body {
  border-top: none;
}
@media (max-width: 991px) {
  .collapse.collapse--simple .collapse__body {
    border-bottom: none;
  }
}
.collapse.collapse--simple .collapse__body-container {
  padding: 12px 0 30px;
}

/*tab下的第一個collapse隱藏標題*/
.tab > .tab__content > .collapse > .collapse__header {
  display: none;
}

.tab:not(.tab--hide-items) > .tab__content .collapse + .collapse .collapse__header,
.tab.tab--hide-items > .tab__content > .collapse > .collapse__header {
  display: flex;
}

/*數據組合呈現*/
.data-group__data {
  font-size: 1.625em;
}

.data-group__subdata {
  font-size: 0.75em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.data-group__difference {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 414px) {
  .data-group__subdata {
    flex-direction: row;
    align-items: center;
  }
}
/*******************************************************************************
 * Version 1.0 Release;
 * Copyright 2018
 ******************************************************************************/
/*========================================基本樣式*/
html * {
  /* outline: 1px solid #f00; */
}

body {
  content: "xs";
}

:root {
  --cubic:cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 反白 */
::-moz-selection {
  color: #fff;
  background: #ff6e62;
}

::selection {
  color: #fff;
  background: #ff6e62;
}

/* 分線 */
hr {
  border: none;
  border-bottom: 1px solid #D5D5D5;
  margin: 1.5rem 0;
}

.hr--dashed {
  border-bottom: 1px dashed #d5d5d5;
  margin: 34px 0;
}

.hr-md {
  margin-top: 1em;
  margin-bottom: 1em;
}

.hr-sm {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

/*========================================元件樣式*/
/*------------------------------隱藏------------------------------*/
.hide {
  display: none !important;
}

@media (min-width: 1440px) {
  .hide--xl {
    display: none;
  }
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.clearfix:after {
  clear: both;
  content: " ";
  display: block;
  height: 0;
  line-height: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.w-100 {
  width: 100%;
}

.full-height {
  height: 100%;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-ellipsis,
.text-ellipsis--2line {
  display: block !important;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

.text-ellipsis {
  white-space: nowrap;
}

.text-ellipsis--2line {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.flex-outer--allcenter {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.float-right {
  float: right;
}

/*------------------------------裝飾------------------------------*/
.border {
  border: 1px solid #e5e5e5;
}

.bg-gray {
  background: #f7f7f7;
}

.text-underline {
  text-decoration: underline;
}

.border-bottom {
  border-bottom: 1px solid #D5D5D5;
}

/*------------------------------回到頂部------------------------------*/
.gotop {
  opacity: 0.5;
  content: "";
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #211C15;
  position: fixed;
  bottom: 94px;
  right: 24px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 12;
  text-decoration: none;
  cursor: pointer;
  color: #211C15;
  border-radius: 50%;
}
.gotop::before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-top: 2px solid #211C15;
  border-left: 2px solid #211C15;
  position: fixed;
  bottom: 114px;
  right: 49px;
  z-index: 1;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  display: none;
}
.gotop:not(:disabled):not(.btn--disabled):focus, .gotop:not(:disabled):not(.btn--disabled):active {
  text-decoration: none;
  background: #211C15;
  color: #fff;
  border-color: #fff;
}
@media (min-width: 992px) {
  .gotop:not(:disabled):not(.btn--disabled):hover {
    text-decoration: none;
    background: #211C15;
    color: #fff;
    border-color: #fff;
  }
}

.fb_dialog {
  z-index: 10 !important;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  -webkit-box-flex: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -webkit-box-flex: 0;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
  order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
  order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
  order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
  order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
  order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
  order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
  order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
  order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
  order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
  order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
  order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
  order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
  order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
  order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    -webkit-box-flex: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    order: 13;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    order: 0;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    order: 1;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    order: 2;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    order: 3;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    order: 4;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    order: 5;
  }

  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    order: 6;
  }

  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    order: 7;
  }

  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    order: 8;
  }

  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    order: 9;
  }

  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    order: 10;
  }

  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    order: 11;
  }

  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.333333%;
  }

  .offset-sm-2 {
    margin-left: 16.666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.333333%;
  }

  .offset-sm-5 {
    margin-left: 41.666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.333333%;
  }

  .offset-sm-8 {
    margin-left: 66.666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.333333%;
  }

  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    -webkit-box-flex: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 14;
    order: 13;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    order: 0;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    order: 1;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    order: 2;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    order: 3;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    order: 4;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    order: 5;
  }

  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    order: 6;
  }

  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    order: 7;
  }

  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    order: 8;
  }

  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    order: 9;
  }

  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    order: 10;
  }

  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    order: 11;
  }

  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.333333%;
  }

  .offset-md-2 {
    margin-left: 16.666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.333333%;
  }

  .offset-md-5 {
    margin-left: 41.666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.333333%;
  }

  .offset-md-8 {
    margin-left: 66.666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.333333%;
  }

  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    -webkit-box-flex: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    order: 13;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    order: 0;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    order: 1;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    order: 2;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    order: 3;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    order: 4;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    order: 5;
  }

  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    order: 6;
  }

  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    order: 7;
  }

  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    order: 8;
  }

  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    order: 9;
  }

  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    order: 10;
  }

  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    order: 11;
  }

  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.333333%;
  }

  .offset-lg-2 {
    margin-left: 16.666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.333333%;
  }

  .offset-lg-5 {
    margin-left: 41.666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.333333%;
  }

  .offset-lg-8 {
    margin-left: 66.666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.333333%;
  }

  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    -webkit-box-flex: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    order: 13;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    order: 0;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    order: 1;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    order: 2;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    order: 3;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    order: 4;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    order: 5;
  }

  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    order: 6;
  }

  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    order: 7;
  }

  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    order: 8;
  }

  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    order: 9;
  }

  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    order: 10;
  }

  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    order: 11;
  }

  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.333333%;
  }

  .offset-xl-2 {
    margin-left: 16.666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.333333%;
  }

  .offset-xl-5 {
    margin-left: 41.666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.333333%;
  }

  .offset-xl-8 {
    margin-left: 66.666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.333333%;
  }

  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: -webkit-box !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  -ms-grid-row-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  -ms-grid-row-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-grid-row-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
    align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
    align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
    align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
    align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-grid-row-align: center !important;
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
  }
}
.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
.my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
.mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
.mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
.my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
.mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
.mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
.my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
.mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
.mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
.my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
.mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
.mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
.my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
.mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
.mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
.my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
.mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
.mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
.my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
.my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
.mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
.my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
.mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
.mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
.my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
.mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
.my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
.mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
.py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
.px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
.px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
.py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
.px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
.px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
.py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
.px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
.py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
.px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
.py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
.px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
.px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
.py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
.my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
.mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
.my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
.mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
.my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
.mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
.my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
.mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
.my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
.mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
.my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
.mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
.my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
.mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
.my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
.mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
.my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
.mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
.my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
.mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
.my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
.my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
.py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
.px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
.px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
.my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
.mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
.my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
.mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
.my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
.mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
.my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
.mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
.my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
.mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
.my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
.mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
.my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
.mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
.my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
.mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
.my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
.mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
.mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
.my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
.mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
.mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
.my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
.my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
.mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
.mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
.my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
.mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
.mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
.px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
.px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
.py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
.px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
.px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
.py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
.px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
.px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
.py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
.px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
.px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
.py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
.px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
.px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
.my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
.mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
.my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
.mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
.my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
.mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
.my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
.mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
.my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
.mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
.my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
.mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
.my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
.mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
.my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
.mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
.my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
.mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
.my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
.mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
.my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}
/*一般icon*/
.icon {
  font-size: 1.75em;
}

.icon-md {
  font-size: 1.625em;
}

.icon-sm {
  font-size: 1.25em;
}

.icon-xs {
  font-size: 0.75em;
}

.icon__control,
.icon__control-sm {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s cubic-bezier(1, 0, 0.13, 1);
}

.icon__control {
  width: 40px;
  height: 40px;
}
@media (min-width: 992px) {
  .icon__control--hoverable:hover {
    cursor: pointer;
  }
}
.icon__control--disabled {
  color: #d5d5d5 !important;
}
@media (min-width: 992px) {
  .icon__control--disabled:hover {
    color: #d5d5d5 !important;
    cursor: not-allowed;
  }
}

.icon__control-sm {
  width: 30px;
  height: 30px;
}

.icon__img {
  width: 30px;
}

/*評分星星*/
.icon-star-fill {
  color: #FF6C5F;
}

.icon-star-outline {
  color: #D5D5D5;
}

/*社群平台*/
.colored .icon-instagram,
.colored .icon-youtube,
.colored .icon-facebook,
.colored .icon-blog {
  color: #555;
  transition: all 0.2s;
}

@media screen and (min-width: 992px) {
  /*社群平台*/
  .colored:hover .icon-instagram {
    color: #CD3497;
  }

  .colored:hover .icon-youtube {
    color: #D73E32;
  }

  .colored:hover .icon-facebook {
    color: #005183;
  }

  .colored:hover .icon-blog {
    color: #FF8933;
  }
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoonaa57.eot?xiscv0");
  src: url("../fonts/icomoonaa57.eot?xiscv0#iefix") format("embedded-opentype"), url("../fonts/icomoonaa57.ttf?xiscv0") format("truetype"), url("../fonts/icomoonaa57.woff?xiscv0") format("woff"), url("../fonts/icomoonaa57.svg?xiscv0#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-plus_circle_outline:before {
  content: "";
}

.icon-download_circle:before {
  content: "";
}

.icon-like_search_circle:before {
  content: "";
}

.icon-shake_hand_circle:before {
  content: "";
}

.icon-upload:before {
  content: "";
}

.icon-nav:before {
  content: "";
}

.icon-filter:before {
  content: "";
}

.icon-person_outline:before {
  content: "";
}

.icon-bell:before {
  content: "";
}

.icon-user-outline:before {
  content: "";
}

.icon-user-fill:before {
  content: "";
}

.icon-user_image:before {
  content: "";
}

.icon-cart:before {
  content: "";
}

.icon-shopping:before {
  content: "";
}

.icon-home:before {
  content: "";
}

.icon-play:before {
  content: "";
}

.icon-triangle_down:before {
  content: "";
}

.icon-arrow_down_circle:before {
  content: "";
}

.icon-select_arrow:before {
  content: "";
}

.icon-expand_more:before {
  content: "";
}

.icon-gotop:before {
  content: "";
}

.icon-arrow_up:before {
  content: "";
}

.icon-arrow_down:before {
  content: "";
}

.icon-arrow_right:before {
  content: "";
}

.icon-arrow_left:before {
  content: "";
}

.icon-arrow:before {
  content: "";
}

.icon-arrow-up:before {
  content: "";
}

.icon-arrow-down:before {
  content: "";
}

.icon-star-outline:before {
  content: "";
}

.icon-star-fill:before {
  content: "";
}

.icon-list-type-gird:before {
  content: "";
}

.icon-list-type-list:before {
  content: "";
}

.icon-list-type-waterfall:before {
  content: "";
}

.icon-delete:before {
  content: "";
}

.icon-close:before {
  content: "";
}

.icon-del_circle:before {
  content: "";
}

.icon-delete_circle_outline:before {
  content: "";
}

.icon-certification:before {
  content: "";
}

.icon-bold_check:before {
  content: "";
}

.icon-check_circle_outline:before {
  content: "";
}

.icon-check_circle:before {
  content: "";
}

.icon-check_italic:before {
  content: "";
}

.icon-check:before {
  content: "";
}

.icon-del:before {
  content: "";
}

.icon-trash:before {
  content: "";
}

.icon-edit:before {
  content: "";
}

.icon-edit_outline1:before {
  content: "";
}

.icon-edit_outline:before {
  content: "";
}

.icon-search_outline:before {
  content: "";
}

.icon-search:before {
  content: "";
}

.icon-zoomin:before {
  content: "";
}

.icon-form_error:before {
  content: "";
}

.icon-plus_circle:before {
  content: "";
}

.icon-add_square:before {
  content: "";
}

.icon-minus_square:before {
  content: "";
}

.icon-add_lighter:before {
  content: "";
}

.icon-plus:before {
  content: "";
}

.icon-none:before {
  content: "";
}

.icon-nochange:before {
  content: "";
}

.icon-subtract:before {
  content: "";
}

.icon-like:before {
  content: "";
}

.icon-liked:before {
  content: "";
}

.icon-view:before {
  content: "";
}

.icon-view1:before {
  content: "";
}

.icon-money_circle_outline:before {
  content: "";
}

.icon-money_outline:before {
  content: "";
}

.icon-time:before {
  content: "";
}

.icon-alarm:before {
  content: "";
}

.icon-calendar:before {
  content: "";
}

.icon-camera:before {
  content: "";
}

.icon-map:before {
  content: "";
}

.icon-company:before {
  content: "";
}

.icon-delivery:before {
  content: "";
}

.icon-car:before {
  content: "";
}

.icon-box:before {
  content: "";
}

.icon-excel:before {
  content: "";
}

.icon-pdf:before {
  content: "";
}

.icon-picture:before {
  content: "";
}

.icon-gallary:before {
  content: "";
}

.icon-word:before {
  content: "";
}

.icon-ppt:before {
  content: "";
}

.icon-chain:before {
  content: "";
}

.icon-desc:before {
  content: "";
}

.icon-gear:before {
  content: "";
}

.icon-proposal:before {
  content: "";
}

.icon-check_list:before {
  content: "";
}

.icon-content:before {
  content: "";
}

.icon-paper:before {
  content: "";
}

.icon-contract:before {
  content: "";
}

.icon-quote:before {
  content: "";
}

.icon-notice:before {
  content: "";
}

.icon-report:before {
  content: "";
}

.icon-paper_outline:before {
  content: "";
}

.icon-sheet_check:before {
  content: "";
}

.icon-pen_paper:before {
  content: "";
}

.icon-copy:before {
  content: "";
}

.icon-receipt_info:before {
  content: "";
}

.icon-receipt:before {
  content: "";
}

.icon-email:before {
  content: "";
}

.icon-paperplane:before {
  content: "";
}

.icon-article:before {
  content: "";
}

.icon-cloud_upload:before {
  content: "";
}

.icon-exclamation:before {
  content: "";
}

.icon-info:before {
  content: "";
}

.icon-warning:before {
  content: "";
}

.icon-share_dot3:before {
  content: "";
}

.icon-share:before {
  content: "";
}

.icon-share_lighter:before {
  content: "";
}

.icon-download1:before {
  content: "";
}

.icon-cloud_download:before {
  content: "";
}

.icon-coin_stack:before {
  content: "";
}

.icon-search_star:before {
  content: "";
}

.icon-explore_outline:before {
  content: "";
}

.icon-member:before {
  content: "";
}

.icon-dialog:before {
  content: "";
}

.icon-paper_marked:before {
  content: "";
}

.icon-data_tree:before {
  content: "";
}

.icon-chart_fill:before {
  content: "";
}

.icon-gear_cycle:before {
  content: "";
}

.icon-money_circle_line:before {
  content: "";
}

.icon-money_circle_fill_smooth:before {
  content: "";
}

.icon-money_circle_fill:before {
  content: "";
}

.icon-money_bold:before {
  content: "";
}

.icon-money:before {
  content: "";
}

.icon-percentage:before {
  content: "";
}

.icon-thumbup:before {
  content: "";
}

.icon-thumbup_outline:before {
  content: "";
}

.icon-good_outline:before {
  content: "";
}

.icon-shake_hand:before {
  content: "";
}

.icon-evaluate_outline:before {
  content: "";
}

.icon-receive:before {
  content: "";
}

.icon-faq:before {
  content: "";
}

.icon-discuss_outline:before {
  content: "";
}

.icon-conversation:before {
  content: "";
}

.icon-comments:before {
  content: "";
}

.icon-barchart_outline:before {
  content: "";
}

.icon-effect:before {
  content: "";
}

.icon-chart:before {
  content: "";
}

.icon-notice_outline:before {
  content: "";
}

.icon-chart_outline:before {
  content: "";
}

.icon-light_outline:before {
  content: "";
}

.icon-filter_outline:before {
  content: "";
}

.icon-phone:before {
  content: "";
}

.icon-heart_dialog:before {
  content: "";
}

.icon-at_dialog:before {
  content: "";
}

.icon-hashtag_dialog:before {
  content: "";
}

.icon-prefluencer:before {
  content: "";
}

.icon-instagram:before {
  content: "";
}

.icon-facebook:before {
  content: "";
}

.icon-facebook_circle:before {
  content: "";
}

.icon-facebook2:before {
  content: "";
}

.icon-facebook_outline:before {
  content: "";
}

.icon-youtube:before {
  content: "";
}

.icon-blog:before {
  content: "";
}

.icon-google_plus:before {
  content: "";
}

.icon-google_plus_circle:before {
  content: "";
}

.icon-line:before {
  content: "";
}

/*訊息燈箱*/
.lightbox {
  height: calc(100vh - 54px);
  top: 54px;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(33, 28, 21, 0.8);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

/*內容最大寬度430px的燈箱*/
.lightbox--sm .lightbox__body,
.lightbox--sm .lightbox__footer {
  /*max-width: calc(430px + 2em);*/
  margin: 0 auto;
}

.lightbox--sm .lightbox__footer {
  max-width: calc(430px + 2em - 2px);
}

.lightbox--sm .lightbox__body {
  margin: 0 auto 2em;
}

/*訊息燈箱-開啟*/
.lightbox--active {
  opacity: 1;
  z-index: 1000;
}

/*訊息燈箱-內容盒*/
.lightbox__box {
  position: relative;
  width: auto;
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.lightbox--active .lightbox__box {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.lightbox--xs .lightbox__box {
  max-width: 414px;
}

.lightbox--md .lightbox__box {
  max-width: 450px;
}

.lightbox--lg .lightbox__box {
  max-width: 700px;
}

.lightbox__content {
  background-clip: padding-box;
  position: relative;
  padding: 0.5em 2em 2em 2em;
}
@media (max-width: 767px) {
  .lightbox__content {
    padding: 0.5em 1em 2em 1em;
  }
}

.lightbox-login .lightbox__content {
  padding: 0.5em 2.25em 2em 2.25em;
}

/* 標題 */
.lightbox__head {
  padding: 15px 44px 10px;
  /*12/18 20/18*/
  border-bottom: 1px solid #D5D5D5;
  position: relative;
}

.lightbox__head--noborder {
  border-bottom: none;
}

.lightbox__head--left {
  padding-left: 15px;
}

/* 標題-文字 */
.lightbox__title {
  text-align: center;
  font-size: 1.25em;
  /*18/16*/
  font-weight: bold;
  color: #211c15;
}

.lightbox__head--left .lightbox__title {
  text-align: left;
}

/*關閉 按鈕 */
.lightbox__close_trigger {
  min-width: 40px;
  height: 40px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-decoration: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

/* 關閉按鈕-文字 */
/* 關閉按鈕-icon */
.lightbox__close-icon {
  font-size: 20px;
}

/* 內容 */
.lightbox__body {
  padding-top: 1em;
  /*!*padding-bottom: 2em;*!*/
  /*margin-left: -1em;*/
  /*margin-right: -1em;*/
  margin: 0 auto 2em;
  max-height: calc(100vh - 139px - 6.75em);
  overflow-y: auto;
}
.lightbox__body--large-gap {
  margin-bottom: 3em;
}

.lightbox__body--scroll {
  max-height: 390px;
  overflow-y: auto;
  margin: 0 10px 10px 0;
  display: inline-block;
  padding-top: 0;
}

/* for style webkit scrollbar */
.lightbox__body--scroll::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.lightbox__body--scroll::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #e8e8e8;
}

.lightbox__body--scroll::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: #033e7c;
}

.lightbox__footer {
  padding: 15px;
}

.lightbox__body + .lightbox__footer {
  padding-top: 0;
}

/* 描述 */
.lightbox__desc {
  word-break: break-all;
  font-size: 15px;
  line-height: 1.4;
  overflow: hidden;
  /*max-height: calc(100vh - 156px - 6.75em);*/
  margin: 0 auto;
  overflow-y: auto;
  position: relative;
  padding: 0 1em;
}
.lightbox__desc .page__paragraph {
  font-size: 15px;
  margin-bottom: 1em;
}
.lightbox__desc .page__heading {
  margin-top: 0;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 0.35em;
  color: #211c15;
}
.lightbox__desc .listtext__item {
  margin-bottom: 0.25em;
}
.lightbox__desc .listtext--havespacing > .listtext__item {
  margin-bottom: 1.25em;
}

.lightbox--sm .lightbox__desc,
.lightbox--normal .lightbox__desc {
  font-size: 16px;
  line-height: 1.6;
}

.form-group--d-block .lightbox__desc {
  overflow: initial;
}

/* 按鈕區 */
.lightbox__btnbox {
  /* margin-top: 10px; */
}
.lightbox--equal-buttons .lightbox__btnbox {
  max-width: 326px;
}

/* 動作按鈕 */
.lightbox__btn {
  padding: 0 5px;
  font-size: 16px;
}

/* 兩個按難弓土 */
.lightbox .btnboxs--2 .lightbox__btn {
  text-decoration: none;
}

/* 滿版-phone */
.lightbox--full .lightbox__box {
  margin-top: 0;
  margin-bottom: 0;
}

.lightbox--full .lightbox__content {
  margin-top: 0;
}

/*確認按鈕*/
.btnboxs--2 .lightbox__btn-confirm {
  width: calc(60% - 13px);
}
.lightbox--equal-buttons .btnboxs--2 .lightbox__btn-confirm {
  width: calc(50% - 13px);
}

/*取消按鈕*/
.btnboxs--2 .lightbox__btn-confirm--sub,
.btnboxs--2 .lightbox__btn-cancel {
  width: calc(40% - 13px);
}
.lightbox--equal-buttons .btnboxs--2 .lightbox__btn-confirm--sub,
.lightbox--equal-buttons .btnboxs--2 .lightbox__btn-cancel {
  width: calc(50% - 13px);
}

/*燈箱內表單*/
.lightbox__text-field {
  max-width: 500px;
  margin-bottom: 1em;
  margin-right: auto;
  margin-left: auto;
}

.lightbox__input-field {
  max-width: 304px;
  margin-bottom: 1em;
  margin-right: auto;
  margin-left: auto;
}

.lightbox .form-control {
  height: 50px;
}
.lightbox .form-group--input-size-normal .form-control {
  height: 42px;
}

.lightbox--closeless.lightbox .lightbox__close_trigger {
  display: none;
}

/*如果使用者之視窗寬度>=768px，將會再載入這裡的 css。*/
@media screen and (min-width: 768px) {
  /*一般提示燈箱*/
  .lightbox__box {
    max-width: 540px;
    margin: 40px auto 0 auto;
  }

  /* 滿版 */
  .lightbox--full .lightbox__box {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .lightbox--full .lightbox__content {
    margin-top: 85px;
  }

  /* 內容 */
  .lightbox__body {
    /* height: 430px; */
    max-height: calc(100vh - 360px);
    overflow-y: auto;
  }

  .lightbox-login .lightbox__content {
    padding: 0.5em 100px 2em 100px;
  }

  .lightbox__desc {
    /*max-height: calc(100vh - 360px);*/
    max-width: calc(430px + 2em);
  }

  .lightbox .form-group--d-block {
    max-width: none;
  }
}
@media screen and (min-width: 992px) {
  .lightbox {
    top: 0;
    height: 100vh;
  }

  .lightbox__box {
    max-width: 642px;
    margin-top: 126px;
  }
}
.lightbox__forewords:not(:last-child) {
  margin-bottom: 36px;
}

.list-group__item {
  /* 使用於卡片(大邊距)內時 */
}
@media (min-width: 768px) {
  .list-group__item {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  .list-group__item--lg {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.list-group--horizontal .list-group__item {
  padding: 1.5em 0.5em 1em 0.5em;
  flex-grow: 1;
}
.card--padding-lg .list-group__item {
  padding: 0 0.5em;
}
@media (min-width: 992px) {
  .list-group .list-group__item,
.list-group .list-group__item--lg {
    flex-basis: auto;
    max-width: none;
    flex-grow: 1;
  }
}
.list-group__title, .list-group__content {
  text-align: center;
}
.list-group__title {
  font-size: 0.875em;
  font-weight: normal;
  margin-bottom: 0.25em;
}
.list-group__sub {
  display: flex;
  justify-content: center;
}
.list-group__subtitle {
  font-size: 0.875em;
  font-weight: normal;
  background: #e5e5e5;
  display: inline-flex;
  margin: 0 auto;
  padding: 0.15em 0.75em;
}
.list-group__content {
  font-size: 1.25em;
}
@media (min-width: 992px) {
  .list-group__item .list-group__content {
    font-size: 1.625em;
  }
}
@media (min-width: 768px) {
  .list-group__item--lg .list-group__content {
    font-size: 1.625em;
  }
}
.list-group__chart {
  overflow-y: auto;
  max-height: 225px;
}
.list-group--horizontal {
  display: flex;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .list-group--horizontal {
    flex-wrap: wrap;
  }
}
.card--padding-lg .list-group--horizontal {
  margin-bottom: 1em;
}

/*Loading Start*/
.LightBox.LoadingBox {
  /*width: 100%;*/
  padding: 0;
  background: transparent;
  top: 50%;
  left: 50%;
  margin: -44px 0 0 -44px;
}

.LightBox.LoadingBox.Active {
  display: block;
}

.LightBox.LoadingBox > .LoadingText {
  color: #fff;
  text-indent: 6px;
}

/*====================loading====================*/
.loading {
  position: relative;
  cursor: default;
  /*pointer-events: none;*/
  overflow: hidden;
}

.loading:before {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.1);
}

.loading:after {
  position: fixed;
  content: "";
  top: calc(50vh - 1em);
  left: calc(50vw - 1em);
  width: 2em;
  height: 2em;
  -webkit-animation: form-spin 0.4s linear;
  animation: form-spin 0.4s linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  border-radius: 500rem;
  border-color: #767676 rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1);
  border-style: solid;
  border-width: 0.2em;
  box-shadow: 0px 0px 0px 1px transparent;
  visibility: visible;
  z-index: 1002;
}

/* 載入更多 */
.load-more {
  text-align: center;
  margin-top: 20px;
  min-height: 30px;
  opacity: 0;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.load-more--active {
  opacity: 1;
}

/* 載入更多-文字 */
.load-more__text {
  display: none;
  text-indent: 100%;
  white-space: nowrap;
  overflow: initial;
}

@-webkit-keyframes form-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes form-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*頁碼*/
.pagination {
  text-align: center;
  margin: 3em 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.pagination_button {
  width: 120px;
  height: 44px;
  line-height: 1.5;
  padding: 0.5em 0.75em;
  text-decoration: none;
  font-size: 1.125em;
  border: 1px solid #211C15;
  border-radius: 5px;
  -webkit-box-flex: 1;
  flex: 1;
}

.pagination_button:disabled {
  border: 1px solid #e5e5e5;
  background: #eeeeee;
}

.pagination__control {
  display: -webkit-box;
  display: flex;
}

.pagination__input {
  width: 50px;
  height: 44px;
  border: 1px solid #D5D5D5;
  text-align: center;
  display: none;
}

/*上一頁*/
.pagination_button-pre {
  margin-right: 0.5em;
}

/*上下一頁*/
.pagination_button-next {
  margin-left: 0.5em;
}

/*總頁數*/
.pagination__pages-desc {
  display: none;
}

/*
	當前頁數
 */
.pagination__current-num {
  width: 45px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .pagination {
    max-width: 375px;
    margin-right: auto;
    margin-left: auto;
  }

  .pagination_button {
    width: 150px;
    -webkit-box-flex: 0;
    flex: none;
  }

  .pagination__current-num {
    width: 55px;
  }
}
@media screen and (min-width: 1024px) {
  .pagination {
    max-width: 680px;
  }

  .pagination_button {
    width: 200px;
  }

  .pagination__input {
    display: block;
  }

  /*總頁數*/
  .pagination__pages-desc {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }

  .pagination__pages-text,
.pagination__pages-total {
    margin-left: 0.5em;
  }

  .pagination_button:not(:disabled):hover {
    cursor: pointer;
    background: #211C15;
    color: #fff;
  }

  .pagination__current-num {
    display: none;
  }
}
.has-icon [class^=icon-], .has-icon [class*=" icon-"] {
  margin-right: 0.25em;
}
.has-icon--right example-pic, .has-icon--right [class*=" icon-"] {
  margin-right: 0;
  margin-left: 0.25em;
}

.receipt-info-block {
  margin-top: 40px;
}
hr + .receipt-info-block {
  margin-top: 0;
}

.delivery,
.receipt-info {
  padding: 10px 30px;
  margin-left: 60px;
  border-left: 4px solid #ff6e62;
  position: relative;
  margin-bottom: 2em;
}
.delivery::before,
.receipt-info::before {
  content: "";
  color: #FF6C5F;
  position: absolute;
  font-size: 2.125em;
  left: -60px;
  top: calc(50% - 17px);
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.delivery--full-info,
.receipt-info--full-info {
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
}
.delivery--full-info .delivery__col,
.receipt-info--full-info .delivery__col {
  flex: 1 1 100%;
  max-width: 100%;
  padding: 1em 0 0 30px;
  margin-top: 1em;
  position: relative;
}
@media (min-width: 1280px) {
  .delivery--full-info .delivery__col,
.receipt-info--full-info .delivery__col {
    flex: 1 1 50%;
    max-width: 50%;
    margin-top: 0;
    padding-top: 0;
  }
}
.delivery--full-info .delivery__col::after,
.receipt-info--full-info .delivery__col::after {
  content: "";
  display: block;
  width: calc(100% - 30px);
  border-top: 1px solid #d5d5d5;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 1280px) {
  .delivery--full-info .delivery__col::after,
.receipt-info--full-info .delivery__col::after {
    height: 100%;
    width: auto;
    left: 0;
    right: auto;
    border-top: none;
    border-left: 1px solid #d5d5d5;
  }
}
.delivery--full-info .delivery__col:first-child,
.receipt-info--full-info .delivery__col:first-child {
  padding: 0 0 0 30px;
  margin-top: 0;
  border-top: 0;
}
@media (min-width: 1280px) {
  .delivery--full-info .delivery__col:first-child,
.receipt-info--full-info .delivery__col:first-child {
    padding-right: 30px;
  }
}
.delivery--full-info .delivery__col:first-child::after,
.receipt-info--full-info .delivery__col:first-child::after {
  display: none;
}
.delivery--full-info .delivery__field,
.receipt-info--full-info .delivery__field {
  display: flex;
}
.delivery--full-info .delivery__control--full > *,
.receipt-info--full-info .delivery__control--full > * {
  display: block;
}
@media (min-width: 768px) {
  .delivery--full-info .delivery__control--full > *,
.receipt-info--full-info .delivery__control--full > * {
    display: inline-block;
  }
}
.delivery--full-info .delivery__label,
.receipt-info--full-info .delivery__label {
  white-space: nowrap;
}
.delivery--full-info .delivery__value,
.receipt-info--full-info .delivery__value {
  word-break: break-all;
}
.delivery--full-info .delivery__link,
.receipt-info--full-info .delivery__link {
  color: #FF6C5F;
}
@media (min-width: 768px) {
  .delivery--full-info .delivery__link,
.receipt-info--full-info .delivery__link {
    margin-left: 1em;
  }
}

.receipt-info {
  padding-right: 0;
}
.receipt-info:before {
  content: "";
}

.cooperate-type__tag {
  display: inline-block;
  padding: 0 10px;
  border: 1px solid #211c15;
}
.cooperate-type::before {
  margin-right: 0.5em;
  font-weight: bold;
}
.cooperate-type--facebook::before {
  color: #4267B2;
  content: "FaceBook";
}
.cooperate-type--instagram::before {
  color: #F44D91;
  content: "Instagram";
}
.cooperate-type--youtube::before {
  color: #FD0D00;
  content: "Youtube";
}
.cooperate-type--blog::before {
  color: #FF8933;
  content: "Blog";
}

.example-pic {
  padding: 1.5em;
  background: #eeeeee;
  margin-bottom: 2em;
}

.status-text {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.status--success, .status--default, .status--failed {
  font-weight: bold;
}
.status--success:after, .status--default:after, .status--failed:after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1em;
  margin-left: 0.25em;
}
.status--success:after {
  color: #19b394;
  content: "";
}
.status--default:after {
  color: #d5d5d5;
  content: "";
}
.status--failed:after {
  color: #ff6e62;
  content: "";
}

.line-height--normal,
.text.line-height--normal {
  line-height: 24px;
}

.text-block {
  padding: 24px 20px 26px;
  border: 1px solid #d5d5d5;
}
@media (min-width: 768px) {
  .text-block {
    padding: 24px 30px 30px;
  }
}

.form-content {
  margin-bottom: 64px;
}

.content-wrap--empty .hide-when-empty {
  display: none;
}

@media (max-width: 767px) {
  .hide--mobile {
    display: none;
  }
}

.float_dot {
  color: #fff;
  font-size: 12px;
  width: 10px;
  height: 10px;
  background: #ff6e62;
  border-radius: 50%;
  z-index: 30;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: center;
}
.btn .float_dot {
  position: absolute;
  background: #ff6e62;
  z-index: 1;
}

@keyframes scaleOut {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0);
    opacity: 0;
  }
}
.btn--rippled {
  transition: none;
  position: relative;
  overflow: hidden;
}
.btn--rippled:active {
  border-color: #e5e5e5;
  background: #e5e5e5;
  color: #fff;
}
.btn--rippled .btn-text {
  position: relative;
  z-index: 2;
}

.table-title {
  font-size: 18px;
  color: #211c15;
  font-weight: bold;
  margin-bottom: 0.5em;
  padding: 0.5em 1.5em 0;
}
.table-title--full {
  padding: 0;
}
@media (min-width: 768px) {
  .table-title {
    padding: 0;
  }
}

.table-empty-text {
  padding: 0 1.5em;
  margin-bottom: 2em;
}
@media (min-width: 768px) {
  .table-empty-text {
    padding: 0;
  }
}

.toolbar {
  margin-bottom: 1.2em;
}
.toolbar .input-field:not(:last-child) {
  margin-bottom: 1.2em;
}

.state {
  color: #ff6e62;
  font-weight: bold;
  background-color: #eeeeee;
  padding: 0.25rem 1rem;
  line-height: 1.2;
}
.state--disabled {
  color: #555555;
}
@media (min-width: 992px) {
  .content-wrap:not(.content-wrap--has-sidebar) .table .state {
    background-color: transparent;
    color: #555555;
    padding: 0;
    line-height: 1.6;
    font-weight: normal;
  }
}
@media (min-width: 1280px) {
  .content-wrap--has-sidebar .table .state {
    background-color: transparent;
    color: #555555;
    padding: 0;
    line-height: 1.6;
    font-weight: normal;
  }
}

.sentence {
  text-align: left;
  margin-top: 1em;
}
.sentence__btn {
  padding: 0.25em 1.25em;
  background: #e5e5e5;
  border: none;
  border-radius: 20px;
  transition: background-color 0.2s, transform 0.2s;
  margin-bottom: 0.5em;
  margin-right: 0.5em;
}
.sentence__btn:hover {
  background: #ff6e62;
  color: #fff;
  cursor: pointer;
}
.sentence__btn:active {
  transform: scale(0.95);
}

.certification-mark {
  display: flex;
  align-items: center;
}
.certification-mark::after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  font-size: 16px;
  color: #ff6e62;
  margin-left: 5px;
}

.iziToast {
  font-family: inherit !important;
  border: 1px solid #e5e5e5 !important;
  min-height: 100px !important;
  display: inline-flex !important;
  align-items: center !important;
}
@media (min-width: 768px) {
  .iziToast {
    min-width: 500px !important;
    max-width: 500px !important;
  }
}
.iziToast .iziToast-body {
  flex: 1 1 auto !important;
  max-width: 100% !important;
  display: flex !important;
  justify-content: center !important;
}
.iziToast::after {
  box-shadow: 0 8px 8px -5px rgba(0, 0, 0, 0.25) !important;
}

.tippy-box {
  font-size: 12px;
}
.tippy-box[data-theme~=light-border] {
  background: rgba(255, 255, 255, 0.9);
}
.tippy-content {
  white-space: pre-line;
}

[data-tippy-content] {
  font-size: 16px;
  margin-left: 5px;
}
[data-tippy-content]:hover {
  cursor: pointer;
}

.d-flex-center {
  display: flex;
  justify-content: center;
}

.table-row--new > td:first-child {
  position: relative;
}
.table-row--new > td:first-child::before {
  content: "NEW" !important;
  display: block;
  position: absolute;
  color: #fff;
  top: 18px;
  left: 5px;
  margin: -5px;
  line-height: 14px;
  padding: 0.25em 0.5em;
  font-size: 12px;
  z-index: 10;
  transform: scale(0.85);
  background: #ff6e62;
  border-radius: 4px;
}

.title-link {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 1.4em;
  line-height: 1.4;
}

.text-oneline {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 1.4em;
  line-height: 1.4;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.text--icon {
  font-size: 26px;
  margin: 0 5px;
  vertical-align: middle;
}

.img-auto {
  width: auto;
}

.text-img-break {
  margin: 10px 0;
  display: block;
}

.img-shadow {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.text-img-gap {
  margin: 0 10px;
}

.box-p {
  line-height: 2;
  margin-bottom: 2rem;
}

/*******************************************************************************
 * Version 1.0 Release;
 * Copyright 2017
 ******************************************************************************/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html * {
  /* outline: 1px solid #f00; */
}

html {
  height: 100%;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
mark {
  background: #ff0;
  color: #000;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  max-width: 100%;
  background-color: transparent;
}

table > caption {
  height: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  width: 0;
}

input, select {
  vertical-align: middle;
}

/*==================== 表單元素 - 去除ios預設外觀 input ====================*/
input,
textarea,
button,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  margin: 0;
}

/*==================== 表單元素 - 去除ie預設外觀 select ====================*/
select::-ms-expand {
  display: none;
}

*:before,
*:after {
  box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /*改寫iOS Safari中可點擊元素的高亮顏色*/
  font-size: initial;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/*去除focus outline-chrome預設*/
a:focus,
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: 0;
}

form {
  width: 100%;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: none;
  padding: 0;
  line-height: inherit;
  color: #333;
  overflow: hidden;
  width: 100%;
}

label {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  margin-bottom: 3px;
  font-weight: bold;
}

/*隱藏小箭頭*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  /*margin: 0;*/
}

input[type=search] {
  box-sizing: border-box;
  -webkit-appearance: none;
}

input[type=radio],
input[type=checkbox] {
  margin-top: 1px \9 ;
  line-height: normal;
  vertical-align: baseline;
}

input[type=radio] {
  -webkit-appearance: radio;
  border-radius: 50%;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
}

input[type=file] {
  display: block;
}

input[type=range] {
  display: block;
  width: 100%;
}

/*file、radio、checkbox的focus設定*/
input[type=file]:focus,
input[type=radio]:focus,
input[type=checkbox]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/*placeholder*/
::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #aaa;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #aaa;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #aaa;
}

:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #aaa;
}

/*額外新增*/
* {
  box-sizing: border-box;
}

/*==================== 清單 ====================*/
ul,
ol {
  margin-top: 0;
  margin-bottom: 0.625em;
  /*10/16*/
  /* padding-left: 30px; */
}

/* 第二層崁套margin皆為0 */
ul > li > ul,
ul > li > ol,
ol > li > ol,
ol > li > ul {
  margin: 0;
  padding-left: 30px;
}

img {
  border: 0;
  margin: 0;
  max-width: 100%;
  vertical-align: middle;
}

img:not([width]):not([height]):not([class]) {
  width: 100%;
  height: auto;
}

pre {
  font-family: inherit;
  white-space: pre-wrap;
}

.statistics {
  border-top: 1px solid #D5D5D5;
  border-bottom: 1px solid #D5D5D5;
}

.statistics__inner {
  padding: 1.25em 0 1em 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 0;
}

.statistics__item {
  -webkit-box-flex: 1;
  flex: 1;
  margin-right: 0.5em;
}

.statistics__item:last-child {
  margin-right: 0;
}

.statistics__item--large {
  -webkit-box-flex: 1.5;
  flex: 1.5;
}

.statistics__item--line-after {
  margin-right: calc(1.5em + 1px);
  position: relative;
}

.statistics__item--line-after::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(-1.5em - 1px);
  background: #D5D5D5;
  width: 1px;
  height: 42px;
  margin-left: 0.5em;
  margin-right: 0.75em;
}

.statistics__title {
  color: #211C15;
  font-size: 0.875em;
  margin-bottom: 0.5em;
  font-weight: normal;
  line-height: 1;
  min-height: 28px;
}

.statistics__text {
  color: #211C15;
  font-weight: bold;
}

@media screen and (min-width: 414px) {
  .statistics__title {
    min-height: auto;
  }
}
@media screen and (min-width: 768px) {
  .statistics__inner {
    max-width: 460px;
    margin: 0 auto;
  }

  .statistics__title {
    min-height: auto;
  }

  .vertical-line {
    margin-left: 1em;
    margin-right: 1.25em;
  }
}
@media screen and (min-width: 992px) {
  .statistics__inner {
    max-width: none;
    margin: 0 auto;
  }

  .statistics__item {
    -webkit-box-flex: 0;
    flex: auto 0 0;
    margin-right: 1.875em;
    word-break: keep-all;
  }

  .statistics__item--large {
    -webkit-box-flex: 0;
    flex: auto 0 0;
  }

  .statistics__item--line-after {
    margin-right: calc(3.75em + 1px);
    position: relative;
  }

  .statistics__item--line-after::after {
    margin-left: 1.875em;
    margin-right: 1.875em;
    right: calc(-3.75em - 1px);
  }
}
/*一般頁籤*/
/*格式範例
<div class="tab .tab--sticky">
  <ul class="tab__items">
    <li class="tab__item" href="#tab1"></li>
  </ul>
  <div id="tab1" class="content-wrap tab__content tab__content--active">

  </div>
</div>
*/
@media (min-width: 992px) {
  .tab {
    max-width: calc(1440px + 3em);
    margin: 0 auto;
  }
}
.tab::before {
  content: "";
  display: block;
  height: 1px;
  margin-top: -1px;
}
.tab__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow-x: auto;
  margin-bottom: 1em;
  position: relative;
  width: 100%;
}
.tab__items-outer {
  overflow-x: auto;
  margin-bottom: 1em;
  max-width: 100%;
}
.tab__items-outer .tab__items {
  border-bottom: none;
  overflow-x: visible;
  margin-bottom: 0;
}
.tab__item {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #d5d5d5;
  border-right: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.tab__item:first-child {
  border-left: 1px solid #d5d5d5;
}
.tab__item--active {
  background: #211C15;
  color: #fff;
}
.tab__item--active .tab__link {
  color: #fff;
}
.tab__item .tab__link {
  -webkit-box-flex: 1;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 0.625em 1em;
  text-decoration: none;
}
.tab--sticky > .tab__items, .tab--sticky > .tab__items-outer .tab__items, .tab--sticky2 > .tab__items, .tab--sticky2 > .tab__items-outer .tab__items {
  position: fixed;
  position: -webkit-sticky;
  position: sticky;
  margin-bottom: 0;
  z-index: 1;
}
@media (min-width: 768px) {
  .tab--sticky > .tab__items, .tab--sticky > .tab__items-outer .tab__items, .tab--sticky2 > .tab__items, .tab--sticky2 > .tab__items-outer .tab__items {
    margin: 0 1.5em;
    position: static;
    border-bottom: 1px solid #d5d5d5;
  }
}
.tab--sticky > .tab__items > .tab__item, .tab--sticky > .tab__items-outer .tab__items > .tab__item, .tab--sticky2 > .tab__items > .tab__item, .tab--sticky2 > .tab__items-outer .tab__items > .tab__item {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .tab--sticky > .tab__items > .tab__item, .tab--sticky > .tab__items-outer .tab__items > .tab__item, .tab--sticky2 > .tab__items > .tab__item, .tab--sticky2 > .tab__items-outer .tab__items > .tab__item {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    border-bottom: none;
  }
}
.tab--sticky > .tab__items,
.tab--sticky > .tab__items-outer .tab__items {
  top: 54px;
}
@media (min-width: 992px) {
  .tab--sticky > .tab__items,
.tab--sticky > .tab__items-outer .tab__items {
    top: 66px;
  }
}
.tab--sticky2 > .tab__items,
.tab--sticky2 > .tab__items-outer .tab__items {
  top: 99px;
}
@media (min-width: 992px) {
  .tab--sticky2 > .tab__items,
.tab--sticky2 > .tab__items-outer .tab__items {
    top: 111px;
  }
}
@media (min-width: 768px) {
  .tab--sticky2 > .tab__items .tab__link,
.tab--sticky2 > .tab__items-outer .tab__items .tab__link {
    padding: 0.625em 4em;
  }
}
@media (min-width: 768px) {
  .tab--margin-less > .tab__items,
.tab--margin-less > .tab__items-outer .tab__items {
    margin: 0;
  }
}
.tab__content {
  display: none;
}
.tab__content--active {
  display: block;
}
.tab__inner {
  border: 1px solid #d5d5d5;
  border-top: none;
  padding: 30px 20px 40px;
  margin-top: -1em;
}
@media (min-width: 768px) {
  .tab__inner {
    padding: 30px 40px 40px;
  }
}
@media (min-width: 992px) {
  .tab__inner {
    padding: 30px 50px 64px;
  }
}
@media (max-width: 767px) {
  .tab__inner--mobile-no-padding {
    padding: 0;
  }
}
@media (max-width: 991px) {
  .tab__inner--borderless {
    border: none;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .tab__inner .table-title {
    padding-left: 20px;
    padding-right: 20px;
  }
  .tab__inner .table-title:first-child {
    padding-top: 30px;
  }
}
.tab--bottomline > .tab__items > .tab__item,
.tab--bottomline > .tab__items-outer .tab__items > .tab__item {
  border: none;
}
.tab--bottomline > .tab__items .tab__item,
.tab--bottomline > .tab__items-outer .tab__items .tab__item {
  border-bottom: 6px solid transparent;
  position: relative;
}
.tab--bottomline > .tab__items .tab__item--active,
.tab--bottomline > .tab__items-outer .tab__items .tab__item--active {
  background: #fff;
  color: #211c15;
}
.tab--bottomline > .tab__items .tab__item--active .tab__link,
.tab--bottomline > .tab__items-outer .tab__items .tab__item--active .tab__link {
  color: #211c15;
}
.tab--bottomline > .tab__items .tab__item--active::after,
.tab--bottomline > .tab__items-outer .tab__items .tab__item--active::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  background: #211c15;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
}
.tab--bottomline > .tab__items .tab__link,
.tab--bottomline > .tab__items-outer .tab__items .tab__link {
  padding: 0.6em 1.2em;
}
@media (min-width: 992px) {
  .tab--bottomline > .tab__items .tab__link,
.tab--bottomline > .tab__items-outer .tab__items .tab__link {
    padding: 0.6em 1.5em;
  }
}
.tab--bottomline > .tab__items,
.tab--bottomline > .tab__items-outer {
  border-bottom: 1px solid #d5d5d5;
}
.tab--bottomline > .tab__items-outer .tab__items {
  border-bottom: none;
}
.tab--bottomline-activeblock {
  background: #211c15;
  height: 6px;
  position: absolute;
  bottom: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.tab--hide-items > .tab__items,
.tab--hide-items > .tab__items-outer .tab__items {
  display: none;
}
@media (min-width: 992px) {
  .tab--full > .tab__items > .tab__item,
.tab--full > .tab__items-outer .tab__items > .tab__item {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
@media (min-width: 992px) {
  .tab--lg-content-bordered > .tab__items,
.tab--lg-content-bordered > .tab__items-outer .tab__items {
    margin-bottom: 0;
    padding: 0 2.5em;
  }
}
@media (min-width: 992px) {
  .tab--lg-content-bordered > .tab__content {
    border: 1px solid #d5d5d5;
    border-top: none;
    padding: 2em 2.5em;
  }
}
.tab--step .tab__items {
  counter-reset: num;
}
.tab--step .tab__link {
  font-weight: bold;
}
.tab--step .tab__link {
  position: relative;
}
.tab--step .tab__link::before {
  position: relative;
  content: counter(num);
  background: #211c15;
  color: #fff;
  font-size: 0.75em;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 auto 5px;
}
.tab--step .tab__item {
  counter-increment: num;
}
.tab--step .tab__item:not(:last-of-type) .tab__link::after {
  content: "";
  position: absolute;
  width: calc(100% - 20px);
  top: 20px;
  left: calc(50% + 10px);
  border-top: 1px solid #211c15;
  z-index: 1;
}
.tab--step .tab__item.tab__item--disabled .tab__link {
  color: #bbb;
}
.tab--step .tab__item.tab__item--disabled .tab__link:hover {
  cursor: default;
}
.tab--step .tab__item.tab__item--disabled .tab__link::before {
  background: #bbb;
  z-index: 2;
}
.tab--step .tab__item.tab__item--disabled:not(:last-of-type) .tab__link::after {
  border-color: #bbb;
}
.tab--step .tab__item--completed .tab__link::before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}

.tab__items::-webkit-scrollbar,
.tab__items::-webkit-scrollbar-track,
.tab__items::-webkit-scrollbar-thumb,
.tab__items::-webkit-scrollbar-button,
.tab__items-outer::-webkit-scrollbar,
.tab__items-outer::-webkit-scrollbar-track,
.tab__items-outer::-webkit-scrollbar-thumb,
.tab__items-outer::-webkit-scrollbar-button {
  display: none;
}

/*一般的table*/
.table {
  font-size: 0.875rem;
  display: block;
  border-top: 1px solid #e5e5e5;
}

/* table最下方有統計列*/
/*table與下方區塊的距離*/
.table--mb {
  margin-bottom: 3rem;
}

/*table與下方區塊的距離*/
.table--mb-between-btn {
  margin-bottom: 25px;
}

.table__head {
  display: none;
}

.table__body {
  display: block;
}

.table__row {
  display: block;
}

.table__col {
  display: -webkit-box;
  display: flex;
  line-height: 24px;
}

.text.table__col {
  line-height: 1.2;
}

.table th {
  white-space: nowrap;
}

.table th.table__col--money,
.table td.table__col--money,
.table-overflow th.table__col--money,
.table-overflow td.table__col--money,
.table th.table__col--right,
.table td.table__col--right,
.table-overflow th.table__col--right,
.table-overflow td.table__col--right {
  text-align: right;
}

.table th.table__col--center,
.table td.table__col--center,
.table-overflow th.table__col--center,
.table-overflow td.table__col--center {
  text-align: center;
}

.table th.table__col--money:not(:last-child),
.table td.table__col--money:not(:last-child),
.table-overflow th.table__col--money:not(:last-child),
.table-overflow td.table__col--money:not(:last-child),
.table th.table__col--right:not(:last-child),
.table td.table__col--right:not(:last-child),
.table-overflow th.table__col--right:not(:last-child),
.table-overflow td.table__col--right:not(:last-child) {
  padding-right: 1.75em;
}

.table__col::before {
  content: attr(data-title) "：";
  white-space: nowrap;
}

.table__operation {
  display: block;
}

.table__col--sm-hide {
  display: none;
}

/*最小寬度1440px的table(overflow)*/
.table-overflow {
  max-width: 100%;
  overflow-x: auto;
  font-size: 16px;
  margin-bottom: 3.5rem;
}

.table-overflow tbody {
  font-size: 13px;
}

.table-overflow__table {
  width: 100%;
  min-width: 1140px;
}

.table-overflow--lg .table-overflow__table {
  min-width: 1922px;
}

.table-overflow--sm .table-overflow__table {
  min-width: 1000px;
}

.table__head,
.table-overflow thead {
  background: #eee;
  color: #211C15;
}

.table-overflow th {
  white-space: nowrap;
}

.table-overflow th,
.table-overflow td {
  text-align: left;
  padding: 0.75em;
  font-weight: normal;
  vertical-align: middle;
}

.table-overflow th {
  font-weight: bold;
  white-space: nowrap;
}

.table-overflow td {
  font-size: 14px;
}

.table tbody tr,
.table-overflow tbody tr {
  border-bottom: 1px solid #d5d5d5;
}

.table tbody tr:last-child,
.table-overflow tbody tr:last-child {
  border-bottom: 4px solid #d5d5d5;
}

.table.table--has-sum tbody tr:last-child,
.table-overflow.table--has-sum tbody tr:last-child {
  border-bottom: none;
}

.table.table--has-sum tbody tr:nth-last-of-type(2),
.table-overflow.table--has-sum tbody tr:nth-last-of-type(2) {
  border-bottom: 4px solid #d5d5d5;
}

.table-overflow tbody tr:nth-child(2n+2) {
  /*background: #f2f2f2;*/
}

.table-overflow__max-limit-md {
  width: 100px;
}

.table-overflow__max-limit-lg {
  width: 200px;
}

.table-overflow__max-limit-xl {
  width: 245px;
}

.table-overflow_links > * + * {
  margin-top: 0.5em;
}

.table-overflow__link {
  display: -webkit-box;
  display: flex;
}

.table-overflow__link-text {
  flex-basis: calc(100% - 70px);
  max-width: calc(100% - 70px);
  padding-left: 10px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.table-overflow__img-outer {
  flex-basis: 70px;
  max-width: 70px;
  overflow: hidden;
  position: relative;
  background-color: #eee;
  height: 70px;
}

.table-overflow__img-outer--round {
  border-radius: 50%;
}

.table-overflow__img-outer::after {
  content: "";
  padding-top: 100%;
  display: block;
}

.table-overflow__img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/*table按鈕群*/
.table_btns {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  align-items: flex-end;
}

.table_btns .btn {
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  padding: 0.5em;
  width: 70px;
  max-width: 85px;
}

.table_btns .btn + .btn {
  margin-top: 0.75em;
}

/* 統計筆數 */
.table__sum {
  margin-top: 10px;
  color: #888;
  font-size: 14px;
}

/*fixed 表頭*/
/*.tabble-overflow__table--clone {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    pointer-events: none;*/
/*    width: 145px;*/
/*    min-width: 0;*/
/*}*/
/*.table-overflow__img-outer {*/
/*    height: 70px;*/
/*    max-width: 0;*/
/*}*/
/*.table-overflow__link-text {*/
/*    flex-basis: 100%;*/
/*    max-width: 100%;*/
/*}*/
/*.tabble-overflow__table--clone th:first-child,*/
/*.tabble-overflow__table--clone td:first-child {*/
/*    border-right: 1px solid #d5d5d5;*/
/*    max-width: 145px;*/
/*}*/
/*.tabble-overflow__table--clone td:first-child {*/
/*    background: #fff;*/
/*}*/
/*.tabble-overflow__table--clone td:not(:first-child),*/
/*.tabble-overflow__table--clone th:not(:first-child) {*/
/*    visibility: hidden;*/
/*    display: none;*/
/*}*/
/*.table-overflow__fixed {*/
/*    width: 145px;*/
/*}*/
@media screen and (min-width: 768px) {
  .table {
    display: table;
  }

  .table__head {
    display: table-header-group;
  }

  .table th,
.table td {
    text-align: left;
    padding: 0.75em;
    font-weight: normal;
    vertical-align: middle;
  }

  .table th {
    font-weight: bold;
  }

  .table th.text-center {
    text-align: center;
  }

  .table__body {
    display: table-row-group;
  }

  .table__row {
    display: table-row;
  }

  .table__col {
    display: table-cell;
  }

  .table__col::before {
    display: none;
  }

  .table_btns {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }

  .table_btns .btn + .btn {
    margin-top: 0;
    margin-left: 0.75em;
  }
}
@media screen and (min-width: 992px) {
  /*.table th.table__col--money + th,*/
  /*.table td.table__col--money + td,*/
  /*.table-overflow th.table__col--money + th,*/
  /*.table-overflow td.table__col--money + td {*/
  /*    padding-left: 1.75em;*/
  /*}*/
  .table {
    font-size: 1rem;
  }

  .table-overflow {
    font-size: 16px;
  }

  .table-overflow tbody {
    font-size: 14px;
  }

  .table-overflow__max-limit-md {
    width: 150px;
  }

  .table-overflow__max-limit-lg {
    width: 250px;
  }

  .table-overflow__max-limit-xl {
    width: 285px;
  }

  .table-overflow th:hover,
.table-overflow td:hover {
    /*cursor: move;*/
  }
}
.table-btn {
  font-size: 14px;
  height: 26px;
  width: auto;
  border-radius: 20px;
  text-decoration: underline;
  display: inline-flex;
}
@media (max-width: 413px) {
  .table-btn {
    width: 100%;
  }
  .table-btn:not(:last-child) {
    margin-bottom: 0.5em;
  }
}
@media (min-width: 992px) {
  .table-btn {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .table-btn__group {
    display: inline-flex;
    flex-direction: column;
  }
}
.table-btn__group .table-btn {
  font-size: 14px;
  text-decoration: none;
}
.table-btn__group .table-btn:not(:hover) [class^=icon-], .table-btn__group .table-btn:not(:hover) [class*=" icon-"] {
  color: #888;
}
.table-btn__group .table-btn:not(:last-child) {
  margin-right: 1em;
}
@media (min-width: 992px) {
  .table-btn__group .table-btn:not(:last-child) {
    margin-right: 0;
    margin-bottom: 0.5em;
  }
}

/*一般標籤*/
.tag {
  display: -webkit-inline-box;
  display: inline-flex;
  font-weight: normal;
  padding: 0.3em 0.75em;
  background: #211c15;
  color: #fff;
  border: 1px solid #211c15;
  border-radius: 20px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  text-decoration: none;
  font-size: 0.875em;
}

.tag:not(:last-child) {
  margin-right: 0.75em;
}

.tag__close-trigger {
  text-decoration: none;
  margin-left: 0.25em;
  width: 24px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tag__control:not(:last-child) {
  margin-right: 0.5em;
}

/*可做移除操作的標籤*/
.tag--removable {
  margin-bottom: 0.75em;
  font-size: 1em;
  background: #ff6e62;
  border: none;
  color: #fff;
}

.tag--removable .tag__close-trigger {
  color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

/*標籤式連結*/
.tag--link {
  margin-bottom: 0.75em;
  font-size: 1em;
  background: #eeeeee;
  border: none;
  color: #555;
}

.tag--link:active,
.tag--link:focus {
  background: #ff6e62;
  color: #fff;
}

.tag {
  /*
   方形的標籤
   */
  /*
   停用 like
   */
}
.tag--square {
  border-radius: 0;
}
.tag--disabled {
  background: #e4e4e4;
  border-color: #e4e4e4;
  font-weight: normal;
  color: #211c15;
}

/*
 方形的標籤
 */
.tag--main {
  background: #ff6e62;
  border-color: #ff6e62;
}

.tag .icon,
.tag .icon-sm,
.tag .icon-md {
  margin-top: auto;
  margin-bottom: auto;
}

/*複選式標籤*/
.selectable-tags {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5em;
}

.input-field > .selectable-tags {
  margin-bottom: 0;
}

.input-label + .selectable-tags {
  padding-top: 0.875em;
}

.input-field .input-field .selectable-tags {
  margin-bottom: 0;
}

.selectable-tags__item {
  margin-bottom: 0.75em;
  max-width: 100%;
}

.selectable-tags__item--icon [class^=icon-],
.selectable-tags__item--icon [class*=" icon-"] {
  font-size: 18px;
}

.selectable-tags__item--icon .selectable-tags__label {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.selectable-tags__item:not(:last-child) {
  margin-right: 0.75em;
}

.selectable-tags__input {
  display: none;
}

.selectable-tags__label {
  font-weight: normal;
  padding: 0.3em 0.75em;
  background: #eeeeee;
  border-radius: 20px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  /*  不可選取  */
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
               supported by Chrome, Opera and Firefox */
}

.selectable-tags__label * {
  /*  不可選取  */
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
               supported by Chrome, Opera and Firefox */
}

input[type=checkbox]:checked + .selectable-tags__label,
input[type=radio]:checked + .selectable-tags__label {
  background: #ff6e62;
  color: #fff;
}

.selectable-tags--black input[type=checkbox]:checked + .selectable-tags__label,
.selectable-tags--black input[type=radio]:checked + .selectable-tags__label {
  background: #211C15;
  color: #fff;
}

@media screen and (min-width: 768px) {
  @-webkit-keyframes check {
    0% {
      border-bottom: 0;
      border-right: 0;
      width: 0;
      height: 0;
    }
    75% {
      border-bottom: 2px solid #555;
      border-right: 0;
      width: 9px;
      height: 0;
    }
    100% {
      border-bottom: 2px solid #555;
      border-right: 2px solid #555;
      width: 9px;
      height: 11px;
    }
  }
  @keyframes check {
    0% {
      border-bottom: 0;
      border-right: 0;
      width: 0;
      height: 0;
    }
    75% {
      border-bottom: 2px solid #555;
      border-right: 0;
      width: 9px;
      height: 0;
    }
    100% {
      border-bottom: 2px solid #555;
      border-right: 2px solid #555;
      width: 9px;
      height: 11px;
    }
  }
  .selectable-tags-md-normalize .selectable-tags__item {
    flex-basis: 20%;
    max-width: 20%;
    margin-right: 0;
  }

  /* checkbox-label*/
  .selectable-tags-md-normalize .selectable-tags__label {
    cursor: pointer;
    display: block;
    position: relative;
    vertical-align: middle;
    padding: 0 0 0 35px;
    line-height: 2;
    /*建議不要變*/
    font-weight: normal;
    max-width: initial;
    text-align: left;
    border-radius: 0;
    background: none;
  }

  /* checkbox-外框*/
  .selectable-tags-md-normalize .selectable-tags__label:before {
    content: "";
    display: inline-block;
    height: 20px;
    width: 20px;
    position: absolute;
    top: calc(50% - 10px);
    left: 0;
    border: 1px solid #D5D5D5;
    background: #fff;
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
  }

  /* 複選-勾選*/
  .selectable-tags-md-normalize .selectable-tags__label:after {
    content: "";
    position: absolute;
    display: none;
    width: 8px;
    height: 14px;
    -webkit-transform: rotate(45deg) skew(10deg, 10deg);
    transform: rotate(45deg) skew(10deg, 10deg);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
    border-width: 2px;
    border-style: solid;
    border-color: #555;
    border-top: 0;
    border-left: 0;
    bottom: 50%;
    left: 3px;
    -webkit-animation: check 0.2s cubic-bezier(1, 0, 0.13, 1);
    animation: check 0.2s cubic-bezier(1, 0, 0.13, 1);
  }

  .selectable-tags-md-normalize .selectable-tags__input:checked + .selectable-tags__label:after {
    display: block;
  }

  .selectable-tags-md-normalize .selectable-tags__input:checked + .selectable-tags__label {
    background: none;
    color: #555;
  }
}
@media screen and (min-width: 992px) {
  /*一般標籤*/
  .tag--link:hover {
    background: #ff6e62;
    color: #fff;
  }

  /*複選式標籤*/
  .selectable-tags__label:hover {
    cursor: pointer;
  }

  .selectable-tags-md-normalize .selectable-tags__item {
    flex-basis: 14.285%;
    max-width: 14.285%;
  }

  .selectable-tags-md-normalize .selectable-tags__input:not(:checked) + .selectable-tags__label:hover {
    background: none;
    color: #555;
  }

  input[type=checkbox]:not(:checked) + .selectable-tags__label:hover {
    background: rgba(255, 110, 98, 0.75);
    color: #fff;
  }

  .selectable-tags--black input[type=checkbox]:not(:checked) + .selectable-tags__label:hover {
    background: rgba(33, 28, 21, 0.75);
    color: #fff;
  }

  /*可做移除操作的標籤*/
  .tag--removable:hover .tag__close-trigger {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
@media screen and (min-width: 1440px) {
  .selectable-tags-md-normalize .selectable-tags__item {
    flex-basis: 11.111%;
    max-width: 11.111%;
  }
}
body {
  color: #555;
  font: 100%/1.5 "微軟正黑體", "Lato", "-apple-system", BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "Microsoft JhengHei", sans-serif;
}

/*標題*/
:root {
  /* 陰影 */
  --bxsh: 0 5px 12px rgba(0, 0, 0, .16);
  /* 圓角 */
  --bdrs: 50px;
  /* 顏色 */
  --dark: #211C15;
  --dark1: #333333;
  --dark2: #555555;
  --gray:#888888;
  --gray1:#D5D5D5;
  --light: #EEEEEE;
  --light1: #E5E5E5;
  --main: #FF6E62;
  --main_alpha: rgba(255, 110, 98, .75);
  --main_hover: #F96166;
  --sub: #23C6C8;
  --sub_hover: #2AAFB1;
  --sub1: #BC8842;
}

/*==================== 標題 heading ====================*/
.heading1,
.heading2,
.heading3,
.heading4,
.heading5,
.heading6 {
  font-weight: bold;
  line-height: 1.25;
  text-transform: none;
}

/* 頁面標題 */
.page__heading {
  font-size: 1.875em;
  /*20/16*/
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 25px;
}

/* 標題文字尺寸*/
.heading1 {
  font-size: 1.875em;
  /*30/16*/
}

.heading2 {
  font-size: 1.125em;
  /*18/16*/
}

.heading3 {
  font-size: 1em;
  /*18/16*/
}

.heading6 {
  font-size: 1em;
  /*16/16*/
}

.heading-desc {
  text-align: center;
  font-size: 16px;
  margin-bottom: 20px;
}

/*==================== 內文 ====================*/
.page__paragraph {
  font-size: 16px;
  line-height: 1.75em;
  margin-bottom: 2em;
}
.page__paragraph.space-half {
  margin-bottom: 0.5em;
}
.page__paragraph.space-1 {
  margin-bottom: 1em;
}
.page__paragraph.space-1half {
  margin-bottom: 1.5em;
}

/*強調重點*/
strong {
  font-weight: normal;
}

.text {
  font-size: 14px;
  line-height: 1.5;
}

.text-xs {
  font-size: 12px;
  line-height: 1.5;
}

.text-lg {
  font-size: 1.125em;
}

.text-huge {
  font-size: 1.625em;
}

.text-small {
  font-size: 0.75em;
}

/* 粗體 */
.text-bold {
  font-weight: bold !important;
}

.text-nowrap {
  white-space: nowrap;
}

/* 藏字用 */
.text-indent {
  position: absolute;
  text-indent: -9999px;
}

/*強調重點*/
.text-primary {
  color: #ff6e62;
  font-weight: bold !important;
}

.text-primary1 {
  color: #ff6e62;
}

.text-normal {
  color: #555;
}

.text-primary2 {
  color: #211C15;
}

.text-primary3 {
  color: #211c15;
  font-weight: bold;
}

.text-secondary {
  color: #888;
}

.text-secondary2 {
  color: #bbb;
}

.text-secondary3 {
  color: #D5D5D5;
}

.text-white {
  color: #fff;
}

.text-danger {
  color: #ff6e62;
}

.text-success {
  color: #19B394;
}

.bg-primary {
  background: #211C15;
}

.bg-primary2 {
  background: #ff6e62;
}

.bg-secondary {
  background: #eeeeee;
}

.text-list1 {
  color: #429FE4;
}

.text-list2 {
  color: #19B394;
}

.text-list3 {
  color: #F96166;
}

.text-list4 {
  color: #23C6C8;
}

.text-instagram {
  color: #F44D91;
}

.text-youtube {
  color: #FD0D00;
}

.text-facebook {
  color: #4267B2;
}

.text-blog {
  color: #FF8933;
}

.text-important {
  color: #FF6E62;
  font-weight: bold !important;
}

.text-line-behind {
  text-align: center;
  position: relative;
}

.text-line-through {
  text-decoration: line-through;
}

.text-delete {
  text-decoration: line-through;
  font-weight: bold;
}

.text-pre-line {
  white-space: pre-line;
}

/*字體加粗加黑*/
.strong {
  font-weight: bold;
  color: #211c15;
}

.text-line-behind::before {
  content: "";
  border-top: 1px solid #d5d5d5;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50%;
  width: 100%;
  z-index: 0;
}

.text-line-behind__text {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 0 2em;
}

em {
  font-weight: normal;
  font-style: normal;
}

/*連結 a-文字連結*/
a {
  color: #211C15;
  text-decoration: underline;
  -ms-word-break: break-all;
  word-break: break-all;
}

a:active,
a:hover,
a:focus {
  text-decoration: none;
  outline: 0;
}

/*項目*/
.listtext {
  padding: 0;
}

.listtext__item {
  line-height: 1.75;
}

.fieldset__notes .listtext__item {
  line-height: 1.5;
}

/*------------------------------無序列項目------------------------------*/
/*無序項目列表-實心圓形*/
.listtext--disc > .listtext__item,
.listtext--disc > li {
  list-style-type: disc;
}

/*無序項目列表-空心圓點*/
.listtext--circle > .listtext__item {
  list-style-type: circle;
}

/*無序項目列表-實心方形*/
.listtext--square > .listtext__item {
  list-style-type: square;
}

/*無序項目列表-實心方形*/
.listtext--no > .listtext__item {
  list-style-type: none;
}

/*------------------------------有序列項目------------------------------*/
.listtext--disc,
.listtext--circle,
.listtext--square,
.listtext--no,
.listtext--decimal,
.listtext--cjk,
.listtext--lowerlatin {
  padding-left: 25px;
}

/*序列項目列表-數字(1,2,3)*/
.listtext--decimal > .listtext__item {
  list-style-type: decimal;
}

/*序列項目列表-中文數字(一,二,三)*/
.listtext--cjk > .listtext__item,
.listtext--cjk > li {
  list-style-type: cjk-ideographic;
}

/*序列項目列表-中文數字(一,二,三)*/
.listtext--circle, > .listtext__item,
.listtext--circle, > li {
  list-style-type: circle;
}

/*序列項目列表-小寫英文字母*/
.listtext--lowerlatin > .listtext__item {
  list-style-type: lower-latin;
}

/*項目列表的項目重直間距加大*/
.listtext--havespacing > .listtext__item {
  margin-bottom: 2em;
}

/*註解(註一:)*/
.listtext--notes {
  counter-reset: num;
  padding-left: 50px;
}

.listtext--notes > .listtext__item {
  position: relative;
}

.listtext--notes > .listtext__item::before {
  content: "註" counter(num, cjk-ideographic) "：";
  color: #211C15;
  counter-increment: num;
  position: absolute;
  left: -50px;
}

/*註解(※)*/
.listtext--mark {
  counter-reset: num;
  padding-left: 1.25em;
  margin-bottom: 0;
  font-size: 14px;
}

.listtext--mark > .listtext__item {
  position: relative;
  color: #888;
  line-height: 1.8;
}
.listtext--mark > .listtext__item.text-normal {
  color: #555555;
}

.listtext--mark > .listtext__item::before {
  content: "※";
  color: #888;
  counter-increment: num;
  position: absolute;
  left: -1.25em;
}

.listtext--danger > .listtext__item,
.listtext--danger > .listtext__item::before {
  color: #F96166 !important;
}

/*------------------------------小字------------------------------*/
.listtext--sm {
  font-size: 14px;
  padding-left: 16px;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.tour-guide {
  background: rgba(33, 28, 21, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.4s;
}
@media (min-width: 667px) and (max-height: 767px) {
  .tour-guide {
    align-items: flex-start;
  }
}
.tour-guide:not(.tour-guide--active) {
  display: none;
  opacity: 0;
}
.tour-guide__item {
  position: relative;
}
.tour-guide__item:not(.tour-guide__item--active) {
  display: none;
}
.tour-guide__image, .tour-guide__image-marked {
  max-height: 100vh;
  margin-top: 8px;
}
@media (min-width: 667px) and (max-height: 767px) {
  .tour-guide__image, .tour-guide__image-marked {
    max-height: calc(100vh - 86px);
  }
}
.tour-guide__image-marked {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
}
.tour-guide__skip {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1;
}
@media (min-width: 992px) {
  .tour-guide__skip {
    bottom: 50px;
    left: 50px;
  }
}
.tour-guide__skip-btn {
  border-radius: 0;
  width: 50px;
  height: 30px;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  background: transparent;
  border-color: #fff;
}
.tour-guide__skip-btn:not(:disabled):not(.btn--disabled):focus, .tour-guide__skip-btn:not(:disabled):not(.btn--disabled):active {
  color: #211c15;
  background: #fff;
  border-color: #fff;
}
@media (min-width: 992px) {
  .tour-guide__skip-btn:not(:disabled):not(.btn--disabled):hover {
    color: #211c15;
    background: #fff;
    border-color: #fff;
  }
}
@media (min-width: 992px) {
  .tour-guide__skip-btn {
    width: 80px;
    height: 40px;
    font-size: 24px;
  }
}
.tour-guide__control {
  position: fixed;
  bottom: 17%;
  width: 100vw;
}
@media (min-width: 414px) {
  .tour-guide__control {
    bottom: 22%;
  }
}
@media (min-height: 700px) {
  .tour-guide__control {
    bottom: 22%;
  }
}
@media (min-width: 768px) {
  .tour-guide__control {
    bottom: 9%;
  }
}
@media (min-width: 667px) and (max-height: 767px) {
  .tour-guide__control {
    bottom: 36px;
  }
}
@media (min-width: 992px) {
  .tour-guide__control {
    bottom: 19%;
  }
}
.tour-guide__control-inner {
  width: 330px;
  max-width: calc(100% - 30px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  .tour-guide__control-inner {
    width: 750px;
    max-width: none;
  }
}
.tour-guide__button {
  width: 140px;
  height: 50px;
  border-radius: 25px;
  font-size: 18px;
  border-width: 3px;
  color: #ff6e62;
  background: transparent;
  border-color: #ff6e62;
}
.tour-guide__button:not(:disabled):not(.btn--disabled):focus, .tour-guide__button:not(:disabled):not(.btn--disabled):active {
  color: #fff;
  background: #ff6e62;
  border-color: #ff6e62;
}
@media (min-width: 992px) {
  .tour-guide__button:not(:disabled):not(.btn--disabled):hover {
    color: #fff;
    background: #ff6e62;
    border-color: #ff6e62;
  }
}
@media (min-width: 992px) {
  .tour-guide__button {
    width: 350px;
    height: 80px;
    border-radius: 40px;
    font-size: 36px;
    font-weight: bold;
    border-width: 4px;
  }
}
.tour-guide__button:not(:disabled):not(:hover):not(:active):focus {
  border-color: #ff6e62;
  color: #ff6e62;
  background: transparent;
}
.tour-guide__button[disabled] {
  border-color: #999;
  color: #999;
  background: transparent;
}
.tour-guide__button + .tour-guide__button {
  margin-left: 20px;
}
@media (min-width: 992px) {
  .tour-guide__button + .tour-guide__button {
    margin-left: 50px;
  }
}
.tour-guide__dots {
  position: fixed;
  bottom: 12%;
  width: 100vw;
}
@media (min-width: 414px) {
  .tour-guide__dots {
    bottom: 17%;
  }
}
@media (min-height: 700px) {
  .tour-guide__dots {
    bottom: 17%;
  }
}
@media (min-width: 768px) {
  .tour-guide__dots {
    bottom: 5%;
  }
}
@media (min-width: 667px) and (max-height: 767px) {
  .tour-guide__dots {
    bottom: 10px;
  }
}
@media (min-width: 992px) {
  .tour-guide__dots {
    bottom: 12%;
  }
}
.tour-guide__dots-inner {
  display: flex;
  justify-content: center;
  width: 100%;
}
.tour-guide__dot {
  display: block;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 2px solid #ff6e62;
  transition: background-color 0.4s;
  padding: 0;
}
@media (min-width: 992px) {
  .tour-guide__dot {
    border-width: 3px;
  }
}
.tour-guide__dot:not(:disabled):not(.btn--disabeld):hover:not(.tour-guide__dot--active), .tour-guide__dot:not(:disabled):not(.btn--disabeld):active:not(.tour-guide__dot--active), .tour-guide__dot:not(:disabled):not(.btn--disabeld):focus:not(.tour-guide__dot--active) {
  background: #fff;
  border-color: #ff6e62;
}
.tour-guide__dot:not(:disabled):not(.btn--disabeld):hover.tour-guide__dot--active, .tour-guide__dot:not(:disabled):not(.btn--disabeld):active.tour-guide__dot--active, .tour-guide__dot:not(:disabled):not(.btn--disabeld):focus.tour-guide__dot--active {
  background: #ff6e62;
  border-color: #ff6e62;
}
.tour-guide__dot--active {
  background: #ff6e62;
}
.tour-guide__dot + .tour-guide__dot {
  margin-left: 16px;
}

@media (min-width: 992px) {
  .show-under-lg {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .show-from-lg {
    display: none !important;
  }
}

/*網紅頭像*/
.case-avatar,
.kol-avatar {
  width: 70px;
  height: 70px;
  position: relative;
  overflow: hidden;
}
.case-avatar--sm,
.kol-avatar--sm {
  width: 50px;
  height: 50px;
}
.case-avatar--lg,
.kol-avatar--lg {
  width: 180px;
  height: 180px;
}
.case-avatar::after,
.kol-avatar::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.case-avatar__img,
.kol-avatar__img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
}

.kol-avatar {
  border-radius: 50%;
}
.kol-avatar--lg {
  border-radius: 0;
}

/* 品牌資料 */
.brand-info {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .brand-info {
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .brand-info__main {
    display: flex;
  }
}
.brand-info__main .brand-info__logo {
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .brand-info__main .brand-info__logo {
    flex: 1 1 150px;
    max-width: 150px;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .brand-info__main .brand-info__logo {
    flex: 1 1 225px;
    max-width: 225px;
  }
}
.brand-info__main .brand-info__logo .brand-info__img-outer {
  position: relative;
  overflow: hidden;
}
.brand-info__main .brand-info__logo .brand-info__img-outer::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.brand-info__main .brand-info__logo .brand-info__img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
}
.brand-info__main .brand-info__logo .brand-info__img-outer {
  max-width: 150px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .brand-info__main .brand-info__logo .brand-info__img-outer {
    max-width: 225px;
  }
}
@media (min-width: 768px) {
  .brand-info__main .brand-info__detail {
    flex-basis: calc(100% - 150px);
    max-width: calc(100% - 150px);
    padding-left: 20px;
  }
}
@media (min-width: 992px) {
  .brand-info__main .brand-info__detail {
    flex-basis: calc(100% - 225px);
    max-width: calc(100% - 225px);
    padding-left: 65px;
  }
}
.brand-info__main .brand-info__name {
  font-size: 1.375em;
  font-weight: bold;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .brand-info__main .brand-info__name {
    font-size: 1.5625em;
  }
}
@media (min-width: 992px) {
  .brand-info__main .brand-info__name {
    font-size: 1.875em;
  }
}
.brand-info__main .brand-info__name a {
  color: #555555;
}
.brand-info__main .brand-info__star {
  margin-bottom: 0.5rem;
}
.brand-info__main .brand-info__media {
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.brand-info__main .brand-info__media span:first-child {
  margin-right: 1em;
}
@media (min-width: 992px) {
  .brand-info__main .brand-info__row {
    display: flex;
  }
}
@media (min-width: 992px) {
  .brand-info__main .brand-info__row .brand-info__col:nth-child(1) {
    flex: 1;
    flex-basis: calc(100% - 285px);
    max-width: calc(100% - 285px);
  }
}
@media (min-width: 992px) {
  .brand-info__main .brand-info__row .brand-info__col:nth-child(2) {
    flex: 1 1 285px;
    max-width: 285px;
  }
}
.brand-info__main .brand-info__intro {
  line-height: 26px;
  margin-bottom: 1.25em;
  word-break: break-all;
  white-space: pre-line;
}
.brand-info__main .brand-info__statistic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 12px 20px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .brand-info__main .brand-info__statistic {
    display: flex;
    margin-right: -10px;
    margin-left: -10px;
  }
}
@media (-ms-high-contrast: none) and (min-width: 992px), (-ms-high-contrast: active) and (min-width: 992px) {
  .brand-info__main .brand-info__statistic {
    flex-wrap: wrap;
  }
}
@media (max-width: 374px) {
  .brand-info__main .brand-info__statistic {
    grid-gap: 12px;
  }
}
@media (min-width: 992px) {
  .brand-info__main .brand-info__statistic {
    grid-template-columns: 1fr;
    margin-left: 85px;
  }
}
.brand-info__main .brand-info__statistic-item {
  border: 1px solid #707070;
  padding: 4px 8px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .brand-info__main .brand-info__statistic-item {
    flex: 1;
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media (-ms-high-contrast: none) and (min-width: 992px), (-ms-high-contrast: active) and (min-width: 992px) {
  .brand-info__main .brand-info__statistic-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .brand-info__main .brand-info__statistic-item:not(:last-child) {
    margin-bottom: 12px;
  }
}
.brand-info__main .brand-info__statistic-item span:first-child {
  margin-right: 0.75em;
}
@media (max-width: 374px) {
  .brand-info__main .brand-info__statistic-item span:first-child {
    font-size: 14px;
    display: block;
  }
}
.brand-info__main .brand-info__statistic-item span + span {
  color: #211c15;
}

/* 合作評價 */
.carousel__btn {
  border-radius: 50%;
  width: 28px;
  height: 28px;
  color: #fff;
  background: #ff6e62;
  border: 1px solid #ff6e62;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.25s;
}
.carousel__btn:not(.disabled):hover {
  cursor: pointer;
  background: #f96166;
}
.carousel__btn.disabled {
  color: #ff6e62;
  background: #fff;
}
.carousel__btn-prev .carousel__btn-icon.icon-select_arrow {
  transform: rotate(90deg);
}
.carousel__btn-next .carousel__btn-icon.icon-select_arrow {
  transform: rotate(-90deg);
}
.carousel .owl-nav {
  position: absolute;
  top: calc(50% - 14px);
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: -1;
}

* + .cancel-history {
  margin-top: 70px;
}
.cancel-history__field {
  color: #211c15;
  display: flex;
  border: 1px solid #d5d5d5;
  border-left: 4px solid #211c15;
  padding: 1em;
}
.cancel-history__img-outer {
  position: relative;
  overflow: hidden;
}
.cancel-history__img-outer::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.cancel-history__img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
}
.cancel-history__photo {
  flex: 1 1 60px;
  max-width: 60px;
}
.cancel-history__content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: calc(100% - 60px);
  max-width: calc(100% - 60px);
  padding-left: 1em;
  display: flex;
  align-items: center;
}
.cancel-history__inner {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 100%;
  max-width: 100%;
}
.cancel-history__name {
  order: 0;
  flex: 1 1 100%;
  max-width: 100%;
  margin-bottom: 0.25em;
}
@media (min-width: 768px) {
  .cancel-history__name {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: calc(100% - 160px);
    max-width: calc(100% - 160px);
  }
}
.cancel-history__time {
  font-size: 0.75em;
  order: 2;
  flex: 1 1 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .cancel-history__time {
    order: 1;
    flex: 1 1 160px;
    max-width: 160px;
    text-align: right;
  }
}
.cancel-history__reason {
  order: 1;
  flex: 1 1 100%;
  max-width: 100%;
  font-weight: bold;
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .cancel-history__reason {
    order: 2;
    margin-bottom: 0;
  }
}
.cancel-history__reason-status {
  display: block;
}
@media (min-width: 768px) {
  .cancel-history__reason-status {
    display: inline-block;
    margin-right: 1em;
  }
}
/*案件介紹*/
.case-info__img-outer {
  position: relative;
  overflow: hidden;
}
.case-info__img-outer::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.case-info__img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
}
.case-info__img-outer {
  margin-bottom: 1em;
  border: 1px solid #d5d5d5;
}
@media (min-width: 768px) {
  .case-info__img-outer {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .case-info__img-outer {
    max-width: none;
  }
}
@media (min-width: 768px) {
  .case-info__brand {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .case-info__brand {
    max-width: none;
  }
}
.case-info__name {
  font-size: 1.5em;
  margin-bottom: 0.4em;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 2.8em;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .case-info__name {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .case-info__name {
    max-width: none;
  }
}
.case-info__title {
  font-weight: normal;
}
.case-info__content {
  font-weight: bold;
  line-height: 1.6;
}
.case-info__control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5em;
}
@media (min-width: 768px) {
  .case-info__control {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .case-info__control {
    max-width: none;
    margin-bottom: 1em;
  }
}
.case-info__field {
  margin-bottom: 1.5em;
}
@media (min-width: 992px) {
  .case-info__fields {
    display: flex;
    margin-left: -20px;
  }
}
@media (min-width: 992px) {
  .case-info__fields .case-info__field {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .case-info__fields .case-info__field:not(:last-child) {
    margin-bottom: 36px;
  }
}
.case-info .statistics {
  margin-bottom: 1em;
}
.case-info .statistics__inner {
  padding: 0.75em 0;
  flex-wrap: wrap;
  margin-bottom: -0.75em;
}
@media (min-width: 768px) {
  .case-info .statistics__inner {
    max-width: none;
    margin-bottom: 0;
  }
}
.case-info .statistics__item {
  align-self: flex-start;
  flex: 1 1 50%;
  max-width: 50%;
  margin-right: 0;
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .case-info .statistics__item {
    flex: 1 1 25%;
    max-width: 25%;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .case-info .statistics__item {
    min-width: 20%;
  }
}
.case-info .statistics__title {
  font-size: 1em;
  min-height: 0;
  margin-bottom: 0.25em;
}
.case-info .statistics__text {
  font-size: 0.875em;
  font-weight: bold;
}
.case-info .statistics__text br {
  display: none;
}
@media (min-width: 768px) {
  .case-info .statistics__text br {
    display: block;
  }
}
.case-info__list {
  font-weight: normal;
  margin: 0;
}
.case-info__list-item {
  margin-bottom: 0.25em;
}
.case-info__list-label {
  font-weight: bold;
}
.case-info__list-value {
  display: inline-block;
  font-weight: bold;
}
@media (max-width: 991px) and (min-width: 768px) {
  .case-info__info {
    display: flex;
  }
  .case-info__info > .case-info__field:nth-child(1), .case-info__info > .case-info__field:nth-child(2) {
    flex: 1 1 30%;
    max-width: 30%;
  }
  .case-info__info > .case-info__field:nth-child(3) {
    flex: 1 1 40%;
    max-width: 40%;
  }
}
.case-info__detail .case-info__title {
  margin-bottom: 0.5em;
  font-weight: bold;
  color: #211c15;
}
@media (min-width: 768px) {
  .case-info__detail .case-info__title {
    font-size: 18px;
  }
}
.case-info__detail-content {
  padding: 1em 1em 2em;
  border: 1px solid #d5d5d5;
  word-break: break-all;
}
@media (min-width: 768px) {
  .case-info__detail-content {
    padding: 1.5em 2em 3em;
  }
}
.case-info__detail > .case-info__field:not(:last-child) {
  margin-bottom: 60px;
}
.case-info__short-intro {
  margin-bottom: 1.5em;
  line-height: 1.6;
  white-space: pre-line;
  word-break: break-all;
}
.case-info__top-info {
  display: flex;
  justify-content: flex-end;
}

.chat {
  border: 1px solid #ff6e62;
  margin-top: calc(-1em - 1px);
  padding: 0;
  position: relative;
  z-index: 1;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
}
.chat__header {
  background: #ff6e62;
  height: 30px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
.chat__header [class^=icon-], .chat__header [class*=" icon-"] {
  margin-right: 10px;
  font-size: 20px;
}
.chat__inner {
  padding: 1em;
  height: 570px;
  overflow: auto;
}
@media (min-width: 768px) {
  .chat__inner {
    padding: 1em 30px 30px;
  }
}
@media (min-width: 768px) {
  .chat__inner {
    padding: 30px 55px 55px;
  }
}
.chat__icon {
  flex: 1 0 30px;
  max-width: 30px;
  overflow: hidden;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  color: #ff6e62;
}
.chat__footer {
  border-top: 1px solid #ff6e62;
  padding: 20px;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .chat__footer {
    padding: 20px 20px 30px;
  }
}
.chat__footer [class^=icon-], .chat__footer [class*=" icon-"] {
  font-size: 24px;
}
.chat__footer .form-control {
  height: 30px;
  border: none;
  border-radius: 20px;
  transition: all 0.4s;
  padding: 0 1em;
}
.chat__footer textarea.form-control.calculating {
  overflow: hidden !important;
}
.chat__footer textarea.form-control.calculating::placeholder {
  line-height: 0;
}
.chat__footer textarea.form-control {
  min-height: 40px;
  transition: width 0.4s;
  resize: none;
}
.chat__footer textarea.form-control::placeholder {
  line-height: 40px;
}
.chat__textarea.form-control {
  background: transparent;
  border-radius: 0;
  padding: 7px 0;
}
.chat__textarea-outer {
  min-height: 40px;
  flex: 1 1 auto;
  padding: 0 1em;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #ff6e62;
}
.chat__textarea-outer.disabled, .chat__textarea-outer[disabled] {
  border-color: #eeeeee;
  background: #eeeeee;
  color: #888;
}
.chat__submit-btn {
  background: transparent;
  color: #ff6e62;
  margin-left: 5px;
  transition: all 0.3s;
  border: none;
  padding: 0;
  flex: 1 0 30px;
  max-width: 30px;
  height: 30px;
}
.chat__submit-btn:disabled {
  background: transparent;
  color: #e5e5e5;
}
.chat__submit-btn:not(:disabled):active, .chat__submit-btn:not(:disabled):focus, .chat__submit-btn:not(:disabled):hover {
  background: transparent;
  color: #ff6e62;
  opacity: 0.7;
}
.chat__submit-btn:not(:disabled):active {
  transition: none;
}

/* 對話件箭頭 */
.dialog {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.dialog__content {
  position: relative;
  border-radius: 25px;
  background: #fff;
  z-index: 1;
  word-break: break-all;
  padding: 0.5em 1em;
  margin-bottom: 6px;
  background: #e4e8eb;
  white-space: pre-line;
}
.dialog__content::before {
  content: "";
  position: absolute;
  border: 0 solid transparent;
  border-top: 13px solid #fff;
  border-radius: 26px 0 0 0;
  width: 40px;
  height: 27px;
  z-index: -1;
}
.dialog--otherside .dialog__content {
  background: #fff;
  filter: drop-shadow(0px 0px 1px #bbb);
  box-shadow: 0 1px 5px rgba(228, 232, 235, 0.3);
}
.dialog--otherside {
  justify-content: flex-start;
}
.dialog:not(:last-child) {
  margin-bottom: 2em;
}
.dialog__name {
  margin-bottom: 0.5em;
  font-weight: bold;
  flex: 1 1 100%;
  max-width: 100%;
  text-align: right;
  display: none;
}
.dialog--otherside .dialog__name {
  display: block;
  text-align: left;
}
.dialog__time {
  color: #888;
  font-size: 12px;
  text-align: right;
  flex: 1 1 100%;
  max-width: 100%;
}
.dialog--otherside .dialog__time {
  text-align: left;
}
.dialog .dialog__content::before {
  right: -6px;
  left: auto;
  top: auto;
  bottom: 0;
  transform: rotateX(180deg) rotateZ(192deg);
  border-color: #e4e8eb;
}
.dialog--otherside .dialog__content::before {
  left: -4px;
  top: -7px;
  bottom: auto;
  right: auto;
  transform: rotateX(180deg) rotateZ(12deg);
  border-color: #fff;
}

.contract {
  max-height: 500px;
  overflow: auto;
}
.contract__inner {
  word-break: break-all;
}

.tab__inner + .middle-wrap .fieldset__notes {
  margin-bottom: 1em;
}

.contract-status__title {
  color: #211c15;
  margin-bottom: 0.5em;
  font-size: 18px;
}
.contract-status__field {
  border: 1px solid #d5d5d5;
  padding: 1.5em;
  border-radius: 4px;
}
.contract-status__field--confirm {
  border-color: #ff6e62;
}
.contract-status__inner {
  display: flex;
}
.contract-status__info {
  flex-basis: calc(100% - 80px);
  max-width: calc(100% - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contract-status__icon-outer {
  flex: 1 1 80px;
  max-width: 80px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.contract-status__icon {
  width: 60px;
  height: 60px;
  background: #d5d5d5;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contract-status__icon [class^=icon-], .contract-status__icon [class*=" icon-"] {
  font-size: 1.875em;
}
.contract-status__field--confirm .contract-status__icon {
  background: #ff6e62;
}
.contract-status__name-field {
  color: #211c15;
  margin-bottom: 0.25em;
}
.contract-status__desc {
  color: #211c15;
  font-size: 0.875em;
  font-weight: bold;
  line-height: 20px;
  margin-bottom: 0.25em;
}
@media (min-width: 768px) {
  .contract-status__desc {
    margin-bottom: 0;
  }
}
.contract-status__time {
  color: #211c15;
  font-size: 0.75em;
  line-height: 18px;
  margin-top: 2px;
}
.contract-accessory__title {
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-weight: bold;
  color: #211c15;
  font-size: 18px;
}
.contract-accessory .tab__inner {
  margin-top: 0;
  border-top: 1px solid #d5d5d5;
  width: 100%;
  resize: vertical;
  display: block;
}
.contract-accessory + .middle-wrap {
  margin-bottom: 4rem;
}
.contract-accessory + .middle-wrap .fieldset__notes {
  margin-bottom: 1em;
}
.contract-accessory + .middle-wrap + .container {
  margin-bottom: 40px;
}
.contract-accessory + .system-warp {
  margin-top: 1em;
}

/*******************************************************************************
 * version 1.0 release;
 * copyright 2017
 ******************************************************************************/
/*編輯區-去除reset start*/
.editor html,
.editor body,
.editor fieldset,
.editor form,
.editor h1,
.editor h2,
.editor h3,
.editor h4,
.editor h5,
.editor h6,
.editor ol,
.editor ul {
  display: block;
}

.editor li {
  display: list-item;
}

.editor body {
  margin: 8px;
}

.editor h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

.editor h2 {
  font-size: 1.5em;
  margin: 0.75em 0;
}

.editor h3 {
  font-size: 1.17em;
  margin: 0.83em 0;
}

.editor h4,
.editor ul,
.editor fieldset,
.editor form,
.editor ol {
  margin: 1.12em 0;
}

.editor h5 {
  font-size: 0.83em;
  margin: 1.5em 0;
}

.editor h6 {
  font-size: 0.75em;
  margin: 1.67em 0;
}

.editor h1,
.editor h2,
.editor h3,
.editor h4,
.editor h5,
.editor h6 {
  font-weight: normal;
}

.editor strong {
  font-weight: bold;
}

.editor img:not([width]):not([height]) {
  width: auto;
  /*height: auto;*/
}

.editor img {
  max-width: 100%;
}

.editor i {
  font-style: italic;
}

.editor button,
.editor textarea,
.editor input,
.editor select {
  display: inline-block;
}

.editor ol,
.editor ul {
  padding-left: 30px;
}

.editor ol {
  list-style-type: decimal;
}

.editor ol li {
  list-style-type: decimal;
}

.editor ul {
  list-style-type: square;
}

.editor ul li {
  list-style-type: square;
}

.editor ol ul,
.editor ul ol,
.editor ul ul,
.editor ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

.editor :link,
.editor :visited {
  text-decoration: underline;
}

.editor :focus {
  outline: thin dotted invert;
}

/*==============================編輯區預設樣式==============================*/
.editor {
  font-size: 1em;
  /*16/16*/
  line-height: 1.75;
}

.editor ul,
.editor ol {
  margin: 0 0 1.25em;
}

.editor ol ul,
.editor ul ol,
.editor ul ul,
.editor ol ol {
  margin: 0 0 1.25em;
}

.editor__title1,
.editor__title2,
.editor__title3,
.editor__title4,
.editor__title5,
.editor__title6 {
  font-weight: normal;
  margin-bottom: 0.5em;
  line-height: 1.3;
}

.editor .editor__title1 {
  font-size: 1.5em;
  /*24/16*/
  margin-bottom: 0.3em;
}

.editor .editor__title2 {
  font-size: 1.5em;
  /*24/16*/
}

.editor .editor__title3 {
  font-size: 1.125em;
  /*15/16*/
  margin: 0 0 10px;
}

.editor .editor__title4 {
  font-size: 1.25em;
  /*20/16*/
}

.editor .editor__title5 {
  font-size: 1.125em;
  /*18/16*/
}

.editor .editor__title6 {
  font-size: 1em;
  /*16/16*/
}

.editor p {
  line-height: 1.75;
  margin-bottom: 1.875em;
  /*30*/
}

.editor .imgbox,
.editor__movie-box {
  width: auto;
  max-width: 100%;
  margin-bottom: 1.875em;
}

/* 前言 */
.editor__foreword,
.editor .editor__foreword {
  color: #999;
  line-height: 1.5;
  font-size: 1.125em;
  /*18/16*/
  border-left: 5px solid #ccc;
  margin-bottom: 1.875em;
  padding-left: 10px;
}

/* 圖片來源 */
.editor__img-source {
  margin-top: -10px;
  padding-bottom: 1.875em;
  color: #999;
  /* text-align: center; */
  font-size: 0.875em;
}

.editor img + * {
  margin-top: 20px;
}

.editor img + img {
  margin-top: 0;
}

/* 表格 */
.editor table {
  white-space: normal;
}

.editor td,
.editor th {
  border-width: 1px;
  border-style: solid;
  padding: 5px;
}

/* 表格scroll */
.scrolltable {
  width: 100%;
  position: relative;
}

.scrolltable__inner {
  overflow-x: auto;
  overflow-y: hidden;
}

/* 圖片RWD */
.desktopIMG {
  display: none;
}

/*如果使用者之視窗寬度>=480px，將會再載入這裡的 css。*/
/*如果使用者之視窗寬度>=768px，將會再載入這裡的 css。*/
@media screen and (min-width: 768px) {
  /* 圖片RWD */
  .mobileIMG {
    display: none;
  }

  .desktopIMG {
    display: block;
  }
}
/*如果使用者之視窗寬度>=1024px，將會再載入這裡的 css。*/
.filter-template {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.filter-template__filter {
  flex: 1 1 100%;
  max-width: 100%;
  padding: 0 15px;
}
@media (min-width: 992px) {
  .filter-template__filter {
    flex: 1 1 310px;
    max-width: 310px;
  }
}
.filter-template__content {
  flex: 1 1 auto;
  max-width: 100%;
  padding: 0 15px;
}
@media (min-width: 992px) {
  .filter-template__content {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: calc(100% - 310px);
    max-width: calc(100% - 310px);
  }
}

.filter {
  position: fixed;
  top: 54px;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 13;
  display: flex;
  flex-direction: column;
  height: 54px;
  min-height: 54px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .filter {
    height: auto;
    border: 1px solid #d5d5d5;
    position: static;
  }
}
.filter .selectable-tags {
  font-size: 0.875em;
}
.filter--open {
  height: auto;
  box-shadow: 0 10px 10px -5px rgba(33, 28, 21, 0.1);
}
@media (max-width: 991px) {
  .filter--open {
    max-height: calc(100vh - 53px);
  }
}
@media (min-width: 992px) {
  .filter--open {
    box-shadow: none;
    min-height: 0;
  }
}
.filter__inner {
  border: 1px solid #d5d5d5;
  flex: 1 1 auto;
  margin: 24px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .filter__inner {
    display: none;
  }
}
@media (min-width: 992px) {
  .filter__inner {
    border: 0 solid #d5d5d5;
    height: auto;
    margin: 0;
    transition: none;
  }
}
@media (max-width: 991px) {
  .filter--open .filter__inner {
    display: block;
  }
}
.filter__body {
  padding: 30px 24px 0;
}
@media (min-width: 992px) {
  .filter__body {
    padding: 24px 24px 30px;
  }
}
.filter__body::-webkit-scrollbar {
  display: none;
}
.filter__group:not(:last-child) {
  border-bottom: 1px solid #d5d5d5;
  margin-bottom: 1.5rem;
}
.filter__field {
  margin-bottom: 1.5rem;
}
.filter__header {
  padding: 20px 24px;
  border-bottom: 1px solid #d5d5d5;
  color: #211c15;
  font-size: 20px;
  font-weight: normal;
}
.filter__label {
  margin-bottom: 0.5em;
}
.filter__icon {
  font-size: 18px;
}
.filter__trigger {
  text-decoration: none;
  background: #211c15;
  color: #fff;
  width: 100%;
  position: relative;
  z-index: 1;
  height: 54px;
  min-height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .filter__trigger {
    display: none;
  }
}
.filter__trigger .filter__icon {
  display: inline-block;
  font-size: 1.25em;
  font-weight: bold;
  margin-left: 0.5em;
  line-height: 54px;
  transition: transform 0.4s;
}
.filter--open .filter__trigger .filter__icon {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .filter--mobile-full .filter__inner {
    margin: 0;
    height: calc(100vh - 53px - 54px);
  }
  .filter--mobile-full .filter__header {
    display: none;
  }
  .filter--mobile-full .filter__body {
    padding: 0;
    height: 100%;
    max-height: 100%;
  }
  .filter--mobile-full .filter__group {
    height: 100%;
  }
}

.form-text-field {
  margin-bottom: 1.625rem;
}

/*input基礎樣式_邊框*/
.form-control {
  color: #555555;
  font-family: "Lato", "-apple-system", BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  font-size: 16px;
  line-height: 1.15;
  width: 100%;
  height: 42px;
  padding: 7px 4px;
  border: 1px solid #d5d5d5;
  background: #fff;
  -webkit-transition: border-color 0.5s;
  -o-transition: border-color 0.5s;
  transition: border-color 0.5s;
}
@media (min-width: 375px) {
  .form-control {
    padding: 7px 10px;
  }
}
.form-control--prepend, .form-control--prepend-icon {
  display: flex;
  border: 1px solid #d5d5d5;
  position: relative;
}
.form-control--prepend.form-control--focus, .form-control--prepend-icon.form-control--focus {
  border-color: #211c15;
}
.form-control--prepend .prepend-text, .form-control--prepend-icon .prepend-text {
  line-height: 42px;
}
.form-control--prepend .form-control, .form-control--prepend-icon .form-control {
  border: none;
}
.form-control--prepend-absolute .prepend-text {
  position: absolute;
  left: 10px;
}
.input-field--height-light .form-control--prepend {
  border-color: #ff6e62 !important;
  color: #ff6e62 !important;
}
.form-control--prepend-icon [class^=icon-], .form-control--prepend-icon [class*=icon-] {
  display: inline-block;
  font-size: 20px;
  padding-left: 10px;
  text-align: center;
}
.lightbox .form-control--prepend-icon [class^=icon-], .lightbox .form-control--prepend-icon [class*=icon-] {
  line-height: 48px;
}
@media (min-width: 768px) {
  .form-control--md-limited {
    width: 280px;
  }
}
@media (min-width: 992px) {
  .form-control--lg-limited {
    width: 200px;
  }
}
.form-control::-webkit-input-placeholder {
  font-size: 0.875em;
}
.form-control::-moz-placeholder {
  font-size: 0.875em;
}
.form-control:-ms-input-placeholder {
  font-size: 0.875em;
}
.form-control::-ms-input-placeholder {
  font-size: 0.875em;
}
.form-control::placeholder {
  font-size: 0.875em;
}
.form-control:focus {
  border-color: #211c15;
}
.form-control--border-bottom {
  border: none;
  border-bottom: 1px solid #d5d5d5;
}
.form-control--primary {
  background: #f5f5f5;
  border: none;
  border-bottom: 1px solid #ff6e62;
}
.form-control--expand {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .form-control--expand-limted-small {
    max-width: 280px;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .form-control--expand-md {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .form-control--expand-limted-large {
    max-width: 60%;
  }
}
@media (min-width: 992px) {
  .form-control--expand-lg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .form-control--expand-limted-large {
    max-width: 420px;
  }
  .form-control--expand-limted-small {
    max-width: 280px;
  }
}
.input-field--height-light .form-control {
  border-color: #ff6e62 !important;
  color: #ff6e62 !important;
}
.form-control:-moz-read-only {
  border-color: #e5e5e5;
  background: #e5e5e5;
  color: #888;
}
.form-control:read-only {
  border-color: #d5d5d5;
  background: #e5e5e5;
  color: #888;
}
.form-control:disabled {
  border-color: #d5d5d5;
  background: #eeeeee;
  color: #888;
}
.form-control:disabled:hover {
  cursor: not-allowed;
}
.input-group--one-word-between .form-control:disabled {
  border-color: #d5d5d5;
}
.form-control--file {
  background: #555555;
  color: #fff;
}
.form-control--file + .input-field__desc {
  line-height: 20px;
}
.form-control[type=time] {
  text-align: left;
}
.form-control[type=date]::-webkit-clear-button {
  display: none;
}
.form-control[type=date]::-webkit-calendar-picker-indicator {
  color: transparent;
  height: 20px;
}
.form-control[type=date]:hover::-webkit-calendar-picker-indicator {
  background: transparent;
  cursor: pointer;
}
.form-control--date {
  position: relative;
}
.form-control--date .form-control {
  font-size: 14px;
  text-align: left;
}
@media (min-width: 414px) {
  .form-control--date .form-control {
    font-size: 16px;
  }
}
.form-control--date + .form-control__date-icon {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  position: absolute;
  right: 6px;
  top: 7px;
  font-size: 20px;
  line-height: 28px;
  pointer-events: none;
}
@media (min-width: 375px) {
  .form-control--date + .form-control__date-icon {
    right: 13px;
  }
}
.form-control--date::before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  position: absolute;
  right: 1px;
  top: 1px;
  height: calc(100% - 2px);
  width: 35px;
  font-size: 20px;
  line-height: 28px;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
@media (min-width: 414px) {
  .form-control--date::before {
    right: 3px;
    width: 40px;
  }
}
.form-control--date.form-control--disabled::before {
  background: #eeeeee;
}

.prepend-text {
  pointer-events: none;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                supported by Chrome, Opera and Firefox */
}

/*檔案上傳的拖拉至此區域*/
.file-label {
  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;
  background: #eeeeee;
  border: 1px solid #d5d5d5;
  font-weight: normal;
  width: 100%;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.file-label::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.file-label__text {
  display: flex;
  align-items: center;
}
.file-label__value {
  text-align: left;
  flex: 1 1 100%;
  padding: 0 0.75em;
}
.file-label__value:empty {
  display: none;
}
.file-label--dragover {
  background: #e5e5e5;
}
@media (min-width: 992px) {
  .file-label:hover {
    cursor: pointer;
    background: #e5e5e5;
  }
}
.file-label--all-type {
  height: 42px;
  background: #fff;
  border-radius: 4px;
  border-color: #211c15;
}
.file-label--all-type::after {
  display: none;
}
.file-label--all-type [class^=icon-], .file-label--all-type [class*=" icon-"] {
  color: #888;
}

/*text/input的外框基礎單位*/
.input-field,
.text-field {
  line-height: 1.5rem;
  margin-bottom: 2em;
}
.input-field-sm,
.text-field-sm {
  margin-bottom: 0.5em;
  line-height: 1em;
}
.input-field--closer,
.text-field--closer {
  margin-bottom: 5px;
}
.input-field--top-gap,
.text-field--top-gap {
  margin-top: 0.5em;
}
.form-group--d-block .input-field,
.form-group--d-block .text-field {
  margin-bottom: 1.2em;
}

@media (min-width: 768px) {
  .text-field--md-limited {
    max-width: 550px;
    margin: 0 auto;
    line-height: 24px;
  }
}
.text-field--border-bottom {
  border-bottom: 1px dashed #ddd;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
.text-field--border-bottom .listtext {
  margin-bottom: 0;
}
.text-field--border-bottom .listtext__item {
  line-height: 1.6;
}

.input-field {
  /*表單驗證提示*/
}
.input-field .input-field {
  margin-bottom: 0;
}
*:not([class*=col]) > .input-field:last-child {
  margin-bottom: 0;
}
.input-field--expand {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.input-field--column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.input-field--label-space .input-label {
  margin-bottom: 1.375em;
}
.input-field--required .input-label::before {
  content: "＊";
  color: #ff6e62;
  line-height: 1em;
}
.input-field--or {
  margin-bottom: 0;
}
.input-field--or .input-field {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .input-field--or [class^=col] {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
.input-field--or .or {
  padding: 0 15px;
  margin: 1em 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 100%;
  max-width: 100%;
  position: relative;
}
@media (min-width: 992px) {
  .input-field--or .or {
    flex: 1 1 40px;
    max-width: 40px;
    padding: 0;
  }
}
.input-field--or .or::before, .input-field--or .or::after {
  content: "";
  width: calc(50% - 40px);
  border-top: 1px solid #211c15;
  position: absolute;
  top: 50%;
  height: 50%;
}
@media (min-width: 992px) {
  .input-field--or .or::before, .input-field--or .or::after {
    display: none;
  }
}
.input-field--or .or::before {
  left: 15px;
}
.input-field--or .or::after {
  right: 15px;
}
.input-field--or .or__inner {
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background: #211c15;
  color: #fff;
  text-align: center;
}
.input-field__control--inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.input-field__control--inline .input-label {
  margin-bottom: 0;
  line-height: 42px;
  white-space: nowrap;
}
.input-field__control--inline > *:not(.input-label) {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.input-field__control--inline > * + * {
  margin-left: 0.75em;
}
.input-field__control--inline.input-field__control--large-gap > * + * {
  margin-left: 40px;
}
.input-field__control--inline .btn {
  max-width: 200px;
}
.input-field__control--md-inline > *:not(.input-label) + * {
  margin-top: 0.5em;
}
@media (min-width: 768px) {
  .input-field__control--md-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .input-field__control--md-inline .input-label {
    margin-bottom: 0;
    line-height: 42px;
    white-space: nowrap;
  }
  .input-field__control--md-inline > *:not(.input-label) {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .input-field__control--md-inline > *:not(.hide) + *,
.input-field__control--md-inline > *:not(:first-child) + * {
    margin-left: 0.75em;
  }
  .input-field__control--md-inline.input-field__control--large-gap > * + * {
    margin-left: 40px;
  }
  .input-field__control--md-inline > *:not(.input-label) + * {
    margin-top: 0;
  }
  .input-field__control--md-inline .btn {
    max-width: 200px;
  }
  .member-template .input-field__control--md-inline .btn {
    max-width: 140px;
  }
}
@media (min-width: 992px) {
  .input-field__control--lg-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
  }
  .input-field__control--lg-inline .input-label {
    margin-bottom: 0;
    line-height: 42px;
    white-space: nowrap;
  }
  .input-field__control--lg-inline > *:not(.input-label) {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .input-field__control--lg-inline > * + * {
    margin-left: 0.75em;
  }
  .input-field__control--lg-inline.input-field__control--large-gap > * + * {
    margin-left: 40px;
  }
  .input-field__control--lg-inline > .hide:first-child + * {
    margin-left: 0;
  }
}
.input-field__desc {
  margin-top: 0.5em;
  color: #888;
  font-size: 0.8125em;
  line-height: 1.5;
}
.input-field__desc--danger {
  font-weight: bold;
  color: #ff6e62;
}
.input-field__feedback {
  margin-top: 0.5em;
  font-size: 0.8125em;
  line-height: 1.5;
  padding-left: 1.5em;
  color: #F96166;
  position: relative;
  text-align: left;
  display: none;
}
.input-field__feedback::before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  left: 0;
  font-size: 1.25em;
}
.input-field__body .selectable-tags {
  margin-bottom: -0.5em;
}
.input-field__outcome {
  margin-top: 1em;
  margin-bottom: -0.5em;
}
.input-field--valid .input-field__feedback, .input-field--invalid .input-field__feedback, .input-field__control--valid .input-field__feedback, .input-field__control--invalid .input-field__feedback {
  display: block;
}
.input-field--valid .input-field__feedback, .input-field__control--valid .input-field__feedback {
  color: #19b394;
}
.input-field--valid .input-field__feedback::before, .input-field__control--valid .input-field__feedback::before {
  content: "";
}
@media (max-width: 767px) {
  .input-field > .row .col-12 + .col-12[class*=col-md-], .input-field > .row .col-12 + .col-12[class^=col-md-] {
    margin-top: 0.5em;
  }
}

/*表單基本樣式*/
/*表單區塊(表示同屬性的)*/
@media (min-width: 992px) {
  .fieldset {
    border: 1px solid #d5d5d5;
  }
}
@media (min-width: 768px) {
  .fieldset--border-purple {
    border: 1px solid #ff6e62;
  }
}
.fieldset--style-less {
  border: none;
}
@media (min-width: 768px) {
  .fieldset--input-field {
    border: 1px solid #d5d5d5;
  }
}
.fieldset--input-field .fieldset__title {
  font-size: 1em;
  padding: 0;
  border-top: none;
  border-bottom: none;
  margin-bottom: 0.75em;
}
@media (min-width: 768px) {
  .fieldset--input-field .fieldset__title {
    border-bottom: 1px solid #d5d5d5;
    margin-bottom: 0;
    padding: 1.25rem 3.75rem;
  }
}
.fieldset--input-field .fieldset__body {
  padding: 30px 20px;
  border: 1px solid #d5d5d5;
}
@media (min-width: 768px) {
  .fieldset--input-field .fieldset__body {
    border: none;
    padding: 1.25rem 3.75rem 3.375em;
  }
}
.fieldset__notes {
  letter-spacing: 0;
  background: #eeeeee;
  padding: 1rem;
  font-size: 0.75em;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .fieldset__notes {
    background: none;
    padding: 0;
  }
}
.fieldset__notes--background-less {
  background: none;
  padding: 0;
}
.fieldset__notes.text {
  font-size: 14px;
}
.fieldset__notes .listtext__item:not(:last-child) {
  margin-bottom: 1em;
}
@media (min-width: 992px) {
  .fieldset__notes .listtext__item:not(:last-child) {
    margin-bottom: 0.25rem;
  }
}
.form-field--form-group .fieldset__notes {
  margin-top: 2em;
}
@media (min-width: 992px) {
  .form-field--form-group .fieldset__notes {
    margin-top: 0;
  }
}
.fieldset__notes-mt {
  margin-top: 0.7em;
}
@media (max-width: 991px) {
  .fieldset__notes--mx-out {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.wrap__content > .fieldset__notes:last-child {
  margin-bottom: 3rem;
}
.fieldset__title {
  font-size: 1.125em;
  font-weight: bold;
  border-top: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
  padding: 1.25rem 0;
  margin-bottom: 2em;
  color: #211c15;
}
@media (min-width: 992px) {
  .fieldset__title {
    border-top: none;
    padding: 1.25rem 3.75rem;
    margin-bottom: 0;
  }
}
.fieldset__title--independent {
  border-top: 1px solid #d5d5d5;
  margin-top: 3.5em;
  margin-bottom: 30px;
  margin-left: -15px;
  margin-right: -15px;
}
@media (min-width: 992px) {
  .fieldset__title--independent {
    margin-left: 50px;
    margin-right: 50px;
    padding: 1.25rem 0;
  }
}
@media (max-width: 991px) {
  .step .fieldset__title--independent {
    margin-right: 0;
    margin-left: 0;
  }
}
.fieldset--style-less .fieldset__title--independent {
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 992px) {
  .fieldset--style-less .fieldset__title--independent {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1.25em;
  }
}
@media (min-width: 768px) {
  .fieldset--border-purple .fieldset__title {
    border-top: none;
    padding: 1.25rem 3.75rem;
    margin-bottom: 0;
  }
}
.fieldset__body > .fieldset__title {
  margin-top: 60px;
  border-top: 1px solid #d5d5d5;
  padding-left: 0;
  padding-right: 0;
  font-weight: normal;
}
@media (min-width: 992px) {
  .fieldset__body {
    padding: 2.125em 3.75em;
  }
}
@media (max-width: 991px) {
  .fieldset__body + .fieldset__body {
    margin-top: 1.5em;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .fieldset__body + .fieldset__body {
    margin-top: 2em;
  }
}
@media (max-width: 991px) {
  .form-field--row-used .fieldset__body > .row {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.fieldset__body--independent {
  margin: 0 -15px;
  padding-top: 0;
  padding-bottom: 0;
}
@media (min-width: 992px) {
  .fieldset__body--independent {
    margin: 0;
  }
}
.step .fieldset__body--independent {
  margin-left: 0;
  margin-right: 0;
}
.fieldset__body--independent > .row {
  margin-left: -15px;
  margin-right: -15px;
}
@media (min-width: 768px) {
  .fieldset--border-purple .fieldset__body {
    padding: 2.125em 3.75em;
  }
}
@media (min-width: 992px) {
  .fieldset__body--800 {
    max-width: calc(800px + 7.5em);
    margin: 0 auto;
  }
  .step .fieldset__body--800 {
    margin-left: auto;
    margin-right: auto;
  }
}
.fieldset--section {
  border: none;
}
@media (max-width: 767px) {
  .tab__inner--mobile-no-padding .fieldset--section {
    padding: 1em 1.5em;
    margin-bottom: 40px;
  }
}
.fieldset--section .fieldset__title {
  border: none;
  text-align: center;
  font-size: 16px;
  padding-bottom: 0.75em;
  margin-bottom: 0;
}
.tab__inner--mobile-no-padding .fieldset--section .fieldset__title {
  text-align: left;
  margin-bottom: 0.5em;
  padding: 0;
  font-weight: bold;
  font-size: 18px;
}
.fieldset--section .fieldset__body {
  border: 1px solid #ff6e62;
  border-radius: 4px;
  padding: 1em;
}
@media (min-width: 768px) {
  .fieldset--section .fieldset__body {
    padding: 1.75em 1.5em 1.875em;
  }
}
.fieldset--section .fieldset__body .row {
  margin-left: -15px;
  margin-right: -15px;
}
.fieldset--section:not(:last-child) {
  margin-bottom: 5em;
}

/*表單群組 + */
.form-field {
  margin-bottom: 4rem;
}
.form-field--notlast {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .form-field + .form-field {
    margin-top: 0.7em;
  }
}
.form-field + .form-field .listtext--mark {
  margin-top: 0.7em;
}
.form-field .input-field {
  margin-bottom: 1.5em;
}
@media (min-width: 768px) {
  .form-field .input-field {
    margin-bottom: 2em;
  }
}
@media (min-width: 768px) {
  .form-field .input-field.space-small {
    margin-bottom: 1.5em;
  }
}
.form-field--d-block .form-control {
  min-height: 50px;
  padding: 12px;
}
@media (min-width: 768px) {
  .form-field--form-group {
    padding: 0 130px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .form-field--form-group {
    max-width: none;
    padding: 0;
  }
}
@media (max-width: 991px) {
  .form-field--mobile-full {
    margin-left: -15px;
    margin-right: -15px;
  }
}

/*input單行群組(彼此相連的input)*/
.input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.input-group--xs-block {
  flex-wrap: wrap;
}
.input-group--xs-block .input-group__sort,
.input-group--xs-block .input-group__btn {
  flex: 1 1 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .input-group--xs-block .input-group__sort,
.input-group--xs-block .input-group__btn {
    max-width: none;
  }
}
.input-group--xs-block .input-group__btn {
  order: 0;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .input-group--xs-block .input-group__btn {
    order: 1;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .input-group--xs-block .input-group__btn {
    order: 0;
    flex: 1 1 auto;
  }
}
.input-group--xs-block .input-group__sort {
  order: 1;
}
@media (min-width: 768px) {
  .input-group--xs-block .input-group__sort {
    order: 0;
    flex: 0 0 280px;
  }
}
.input-group--separate > * + * {
  margin-left: 0.75em;
}
.input-group > *:not(:first-child) + *:not(.form-control):not(.input-group__field),
.input-group > *:first-child:not(.hide) + * {
  border-left: none;
}
.input-group__text {
  background: #e5e5e5;
  border: 1px solid #d5d5d5;
  padding: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  height: 42px;
}
.input-group__text:not(:last-child) {
  border-right: none;
}
.input-group__text--blank {
  border: none;
  background: none;
}
.input-group__field {
  flex: 1 1 auto;
}
.input-group--one-word-between .input-group__field {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: calc(50% - 16px);
  max-width: calc(50% - 16px);
}

/*input標題*/
.input-label {
  color: #211c15;
  font-weight: bold;
  margin-bottom: 0.5em;
  font-size: 1em;
}
.input-label--sm {
  font-size: 1em;
}
.input-label--lg {
  font-size: 1.125em;
  font-weight: normal;
  margin-bottom: 1em;
}
.input-label__link {
  display: none;
}
.input-label--link {
  display: flex;
  align-items: flex-end;
}
.input-label--link .input-label__link {
  display: inline-block;
  font-weight: normal;
  font-size: 0.875em;
  flex: 1 1 auto;
  text-align: right;
}
.input-label--link .input-label__link--btn {
  text-align: left;
  flex: 0 1 auto;
  background-color: #ff6e62;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
  margin-left: 0.5em;
  padding: 0 0.5em;
}
.input-label--link .input-label__link--btn:hover {
  background: #f96166;
}
.input-label--has-icon {
  line-height: 24px;
  display: flex;
  align-items: center;
}
.input-label--has-icon .icon {
  font-size: 1.5em;
  margin-right: 0.25em;
  line-height: 24px;
}
.input-label__status {
  color: #ff6e62;
  font-size: 0.875em;
  font-weight: bold;
  margin-left: 1.5em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.input-label__status::before {
  height: 14px;
  width: 1px;
  content: "";
  background: #ff6e62;
  transform: translateX(-0.75em);
}

.input-unit {
  display: flex;
  align-items: center;
}

.input-state {
  margin-left: 3px;
  font-size: 14px;
}
.input-state::before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 3px;
}
.input-state--success {
  color: #19b394;
}
.input-state--success::before {
  content: "";
}
.input-state--failed {
  color: #ff6e62;
}
.input-state--failed::before {
  content: "";
}
.input-state--failed a {
  color: #ff6e62;
}

/*textarea*/
textarea.form-control {
  resize: vertical;
  height: auto;
  min-height: 40px;
  line-height: 1.6;
  display: block;
}

/**
 表單區塊
 */
.fieldset .selectric,
.fieldset .selectric .button,
.fieldset .selectric .selectric-items,
.form-field .selectric,
.form-field .selectric .button,
.form-field .selectric .selectric-items {
  background: #fff;
}
.fieldset .btn-selector,
.form-field .btn-selector {
  height: 42px;
}

/*下拉式選單列表套件_樣式覆寫*/
select.select:not([data-ssid]) {
  background: #fff;
  position: relative;
  color: #ccc;
}
select.select:not([data-ssid]):after {
  position: absolute;
  content: "";
  top: calc(50% - 1em);
  left: calc(50% - 1em);
  width: 2em;
  height: 2em;
  -webkit-animation: form-spin 0.4s linear;
  animation: form-spin 0.4s linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  border-radius: 500rem;
  border-color: #767676 rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1);
  border-style: solid;
  border-width: 0.2em;
  box-shadow: 0px 0px 0px 1px transparent;
  visibility: visible;
  z-index: 1002;
}

.has-select-arrow {
  position: relative;
}
.has-select-arrow::after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 14px;
  width: 36px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.select.ss-main {
  padding: 0;
  border: none;
  background: none;
  color: #555555;
}
.select.ss-main .ss-single-selected,
.select.ss-main .ss-multi-selected {
  height: 42px;
  border-radius: 0;
  padding: 0 0 0 5px;
}
.select.ss-main .ss-single-selected.ss-disabled,
.select.ss-main .ss-multi-selected.ss-disabled {
  background: #eeeeee;
}
.select.ss-main .ss-single-selected {
  padding-left: 10px;
  border-color: #d5d5d5;
}
.select.ss-main .ss-single-selected .ss-arrow {
  margin-right: 14px;
}
.select.ss-main .ss-multi-selected .ss-values .ss-value {
  background-color: #ff6e62;
  border-radius: 4px;
  height: 24px;
  margin-top: auto;
  margin-bottom: auto;
}
.select.ss-main .ss-multi-selected .ss-add {
  margin-top: 15px;
}
.select--borderless.form-control {
  border: none;
  padding-left: 0;
}
.select--borderless.ss-main .ss-single-selected {
  border: none;
  padding-left: 0;
}
.select--borderless.ss-main .ss-single-selected .ss-arrow {
  margin-right: 2px;
}

.ss-content {
  box-shadow: 0 2px 6px -4px;
}
.ss-content .ss-list .ss-option.ss-highlighted, .ss-content .ss-list .ss-option:hover {
  background: #e5e5e5;
  color: #211c15;
}
.ss-content .ss-list .ss-option.ss-disabled {
  background: #d5d5d5;
  color: #211c15;
}

.selectric {
  height: 42px;
  -webkit-transition: border 0.5s;
  -o-transition: border 0.5s;
  transition: border 0.5s;
}
.wrap__section + .input-field .selectric, .selectric-select--white .selectric {
  background-color: #fff;
}
.wrap__section + .input-field .selectric .button, .selectric-select--white .selectric .button {
  background-color: #fff;
}
@media (min-width: 768px) {
  .selectric-form-control--md-limited {
    max-width: 280px;
  }
}
@media (min-width: 992px) {
  .selectric-form-control--lg-limited {
    max-width: 280px;
  }
}
.selectric-items ul,
.selectric-items li {
  font-size: 1em;
}
.selectric-items li {
  padding: 0.625em;
}
.selectric-items li.highlighted {
  background: #d5d5d5;
  color: #211c15;
}
.selectric-items li:not(.selected):hover {
  background: #e5e5e5;
  color: #211c15;
}
.selectric .label {
  font-size: 1em;
  line-height: 40px;
}
.selectric .button {
  width: 36px;
  height: 36px;
  line-height: 36px;
  margin-top: 1px;
  color: #211c15;
  font-size: 0;
}
.selectric .button::before {
  content: "";
  height: 10px;
  width: 10px;
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 5px);
  border-width: 7px 5px 0 5px;
  border-style: solid;
  border-color: #211c15 transparent transparent transparent;
}
.selectric .button::after {
  display: none;
}
.selectric-hover .selectric {
  color: #211c15;
  border-color: #211c15;
}
.selectric-hover .selectric .button {
  color: #211c15;
  border-color: #211c15;
}
.selectric-disabled {
  opacity: 1;
}
.selectric-disabled .selectric {
  background: #d5d5d5;
}
.selectric-disabled .selectric .button {
  background: #d5d5d5;
  color: #888;
}
.selectric-disabled .selectric .button::before {
  border-top-color: #888;
}
.selectric-disabled .label {
  color: #888;
}

/**
 表單群組
 */
@media (min-width: 768px) {
  .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 768px) {
  .form-group .input-field + .input-field {
    margin-left: 1em;
  }
}
@media (min-width: 768px) {
  .form-group .input-field--extend {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 140px;
  }
}
@media (min-width: 768px) {
  .form-group .form-control {
    min-width: 270px;
  }
}
@media (min-width: 992px) {
  .form-group .form-control {
    min-width: 245px;
  }
}
@media (min-width: 768px) {
  .form-group--d-block {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .form-group--d-block {
    max-width: 700px;
  }
}
.form-group--d-block:not(.form-group--input-size-normal) .form-control {
  height: 50px;
  line-height: 36px;
}
.form-group--d-block:not(.form-group--input-size-normal) .selectric {
  height: 50px;
  background: #fff;
}
.form-group--d-block:not(.form-group--input-size-normal) .selectric .label,
.form-group--d-block:not(.form-group--input-size-normal) .selectric .button {
  line-height: 50px;
  height: 48px;
  background: #fff;
}
.form-group--d-block:not(.form-group--input-size-normal) .ss-single-selected {
  height: 50px;
}
.form-group--d-block:not(.form-group--input-size-normal) .ss-single-selected .ss-arrow {
  margin-right: 14px;
}
.form-group--d-block:not(.form-group--input-size-normal) .ss-multi-selected {
  height: 50px;
}
.form-group--d-block:not(.form-group--input-size-normal) .ss-multi-selected .ss-add {
  margin-top: 18px;
  margin-right: 14px;
}
.form-group--d-block:not(.form-group--input-size-normal) .selectric-items li {
  background: #fff;
}
.form-group--d-block:not(.form-group--input-size-normal) .has-select-arrow::after {
  height: 50px;
}
.form-group--has-sub .input-field + .form-group {
  margin-left: -1px;
}

/*jquery範圍選擇器_樣式覆寫*/
.input-slider {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 6px;
  border-radius: 0;
  border: none !important;
  background: #d5d5d5;
}
@media (min-width: 992px) {
  .input-slider .ui-slider:hover {
    cursor: pointer;
  }
}
.input-slider .ui-slider-range {
  background: #ff6e62;
  border-radius: 0;
}
.input-slider .ui-slider-handle {
  background: transparent;
  border: none;
  top: calc(50% - 10px);
  height: 20px;
  width: 20px;
}
@media (min-width: 992px) {
  .input-slider .ui-slider-handle:hover {
    cursor: pointer;
  }
}
.input-slider .ui-slider-handle::before {
  content: "";
  display: block;
  height: 17px;
  width: 17px;
  border: 1px solid #d5d5d5;
  border-radius: 50%;
  background: #fff;
  margin-top: 1.5px;
  margin-left: 1.5px;
}

/*input列表(checkbox/radiobox)*/
.list-option {
  list-style: none;
  padding: 0;
  counter-reset: num;
  margin: 0;
}
.list-option__item {
  list-style: none;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.list-option__item > .row {
  flex: 1 1 auto;
}
.list-option__item + .list-option__item {
  margin-top: 0.75em;
}
.list-option__item .input-field__control {
  flex: 1 1 auto;
}
@media (min-width: 768px) {
  .list-option__input-fields {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
.list-option__button {
  min-width: 42px;
  height: 42px;
  background: #fff;
  border: 1px solid #211c15;
  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;
  margin-left: 1em;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
@media (min-width: 768px) {
  .list-option__button:hover {
    background: #211c15;
    border-color: #211c15;
    color: #fff;
  }
}
.list-option__button:active, .list-option__button:focus {
  background: #211c15;
  border-color: #211c15;
  color: #fff;
}
.list-option--fieldset {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .list-option--fieldset .input-field {
    margin-bottom: 0;
  }
}
.list-option--fieldset .list-option__item {
  display: block;
  background: #eeeeee;
  padding: 10px 20px 15px;
}
@media (min-width: 768px) {
  .list-option--fieldset .list-option__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 992px) {
  .list-option--fieldset .list-option__item {
    border-left: 2px solid #211c15;
  }
  .list-option--fieldset .list-option__item:nth-child(2n+1) {
    border-color: #ff6e62;
  }
}
.list-option--fieldset .list-option__item > *:not(.list-option__input-fields) {
  margin-bottom: 1.25em;
}
@media (min-width: 768px) {
  .list-option--fieldset .list-option__item > *:not(.list-option__input-fields) {
    margin-bottom: 0;
  }
}
.list-option--fieldset .list-option__item + .list-option__item {
  margin-top: 1.5em;
}
@media (min-width: 768px) {
  .fieldset--input-field .list-option--fieldset .list-option__item {
    background: none;
    padding: 0;
  }
}
@media (min-width: 992px) {
  .list-option--fieldset .list-option__item--labelless {
    border: none;
  }
}
.list-option--fieldset .list-option__item--labelless .input-label {
  display: none;
}
.list-option--fieldset .list-option__item--labelless .list-option__button {
  margin-top: 0;
}
.list-option--fieldset .list-option__button {
  margin-left: 0;
}
@media (min-width: 768px) {
  .list-option--fieldset .list-option__button {
    margin-bottom: 0;
    margin-left: 1em;
    margin-top: 33px;
  }
}

/*預設radio、checkbox*/
@-webkit-keyframes check {
  0% {
    border-bottom: 0;
    border-right: 0;
    width: 0;
    height: 0;
  }
  75% {
    border-bottom: 2px solid #555555;
    border-right: 0;
    width: 7px;
    height: 0;
  }
  100% {
    border-bottom: 2px solid #555555;
    border-right: 2px solid #555555;
    width: 7px;
    height: 12px;
  }
}
@keyframes check {
  0% {
    border-bottom: 0;
    border-right: 0;
    width: 0;
    height: 0;
  }
  75% {
    border-bottom: 2px solid #555555;
    border-right: 0;
    width: 7px;
    height: 0;
  }
  100% {
    border-bottom: 2px solid #555555;
    border-right: 2px solid #555555;
    width: 7px;
    height: 12px;
  }
}
@keyframes check-primary {
  0% {
    border-bottom: 0;
    border-right: 0;
    width: 0;
    height: 0;
  }
  75% {
    border-bottom: 2px solid #ff6e62;
    border-right: 0;
    width: 7px;
    height: 0;
  }
  100% {
    border-bottom: 2px solid #ff6e62;
    border-right: 2px solid #ff6e62;
    width: 7px;
    height: 12px;
  }
}
@keyframes masive-check {
  0% {
    border-bottom: 0;
    border-right: 0;
    width: 0;
    height: 0;
  }
  75% {
    border-bottom: 2px solid #555555;
    border-right: 0;
    width: 9px;
    height: 0;
  }
  100% {
    border-bottom: 2px solid #555555;
    border-right: 2px solid #555555;
    width: 9px;
    height: 16px;
  }
}
@keyframes masive-check-md {
  0% {
    border-bottom: 0;
    border-right: 0;
    width: 0;
    height: 0;
  }
  75% {
    border-bottom: 2px solid #555555;
    border-right: 0;
    width: 11px;
    height: 0;
  }
  100% {
    border-bottom: 2px solid #555555;
    border-right: 2px solid #555555;
    width: 11px;
    height: 20px;
  }
}
@keyframes masive-check-small {
  0% {
    border-bottom: 0;
    border-right: 0;
    width: 0;
    height: 0;
  }
  75% {
    border-bottom: 2px solid #555555;
    border-right: 0;
    width: 8px;
    height: 0;
  }
  100% {
    border-bottom: 2px solid #555555;
    border-right: 2px solid #555555;
    width: 8px;
    height: 14px;
  }
}
/*input - 多擇一選項*/
input[type=radio] {
  vertical-align: top;
}

/*input - checkbox核取方塊*/
input[type=checkbox] {
  vertical-align: middle;
}

/* 仿預設radio、checkbox*/
/*單選外框-圓*/
.radiobox {
  /*disabled-實心圓*/
}
.radiobox {
  display: none;
  position: absolute;
}
.radiobox__label {
  cursor: pointer;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  padding: 0 0 0 30px;
  line-height: 1.6;
  font-weight: normal;
  max-width: initial;
  text-align: left;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                supported by Chrome, Opera and Firefox */
}
.radiobox__label + .input-field__feedback {
  margin-top: 0;
  margin-left: 30px;
}
.radiobox__label::before {
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 2.8px;
  left: 0;
  border: 1px solid #d5d5d5;
  background: #fff;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
}
.radiobox__label::after {
  content: "";
  position: absolute;
  display: none;
}
.radiobox:checked + .radiobox__label::after {
  display: block;
}
.radiobox[disabled] {
  cursor: not-allowed;
}
.radiobox[disabled] + .radiobox__label {
  color: #d5d5d5;
  cursor: not-allowed;
}
.radiobox[disabled] + .radiobox__label::before, .radiobox[disabled] + .radiobox__label::after {
  cursor: not-allowed;
}
.radiobox[disabled] + .radiobox__label::before {
  border-color: #d5d5d5;
}
.radiobox__label::before {
  border-radius: 50%;
}
.radiobox__label::after {
  background: #555555;
  border-radius: 50%;
  height: 8px;
  width: 8px;
  top: 17px;
  left: 4px;
}
.radiobox:checked[disabled] + .radiobox__label:after {
  background: #d5d5d5;
}

/*複選-勾*/
.checkbox {
  /*disabled-打勾*/
}
.checkbox {
  display: none;
  position: absolute;
}
.checkbox__label {
  cursor: pointer;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  padding: 0 0 0 30px;
  line-height: 1.6;
  font-weight: normal;
  max-width: initial;
  text-align: left;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                supported by Chrome, Opera and Firefox */
}
.checkbox__label + .input-field__feedback {
  margin-top: 0;
  margin-left: 30px;
}
.checkbox__label::before {
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 2.8px;
  left: 0;
  border: 1px solid #d5d5d5;
  background: #fff;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
}
.checkbox__label::after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox:checked + .checkbox__label::after {
  display: block;
}
.checkbox[disabled] {
  cursor: not-allowed;
}
.checkbox[disabled] + .checkbox__label {
  color: #d5d5d5;
  cursor: not-allowed;
}
.checkbox[disabled] + .checkbox__label::before, .checkbox[disabled] + .checkbox__label::after {
  cursor: not-allowed;
}
.checkbox[disabled] + .checkbox__label::before {
  border-color: #d5d5d5;
}
.checkbox__label::after {
  width: 7px;
  height: 12px;
  -webkit-transform: rotate(52deg) skew(10deg, -5deg);
  -ms-transform: rotate(52deg) skew(10deg, -5deg);
  transform: rotate(52deg) skew(10deg, -5deg);
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
  border-width: 2px;
  border-style: solid;
  border-color: #555;
  border-top: 0;
  border-left: 0;
  bottom: calc(100% - 12.8px);
  left: 4px;
  -webkit-animation: check 0.2s cubic-bezier(1, 0, 0.13, 1);
  animation: check 0.2s cubic-bezier(1, 0, 0.13, 1);
}
.checkbox--primary + .checkbox__label {
  color: #ff6e62;
  font-weight: bold;
}
.checkbox--primary + .checkbox__label::after {
  animation-name: check-primary;
  border-color: #ff6e62;
}
.checkbox:checked[disabled] + .checkbox__label:after {
  border-color: #d5d5d5;
}

/*按鈕式單選*/
.btn-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 35px;
}
.btn-selector--lg .btn-selector__item {
  height: 40px;
  font-size: 18px;
}
.btn-selector--auto-width {
  flex-grow: 0 !important;
}
.btn-selector--auto-width .btn-selector__item {
  white-space: nowrap;
}
@media (min-width: 768px) {
  .btn-selector--auto-width .btn-selector__item {
    min-width: 140px;
  }
}
.btn-selector--bordered {
  height: 40px;
}
.btn-selector--bordered .btn-selector__item + .btn-selector__item::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #e5e5e5;
  position: absolute;
}
.btn-selector--bordered .btn-selector__label {
  background: #fff;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.btn-selector--bordered .btn-selector__item:first-child .btn-selector__label {
  border-left: 1px solid #e5e5e5;
  border-radius: 5px 0 0 5px;
}
.btn-selector--bordered .btn-selector__item:last-child .btn-selector__label {
  border-right: 1px solid #e5e5e5;
  border-radius: 0 5px 5px 0;
}
.btn-selector--bordered .btn-selector__item:first-child:last-child .btn-selector__label {
  border-radius: 5px;
}
.btn-selector--nodefault .btn-selector__input:checked + .btn-selector__label,
.btn-selector--nodefault .btn-selector__label {
  border-color: #211c15 !important;
}
.btn-selector--nodefault .btn-selector__input:checked + .btn-selector__label {
  background: #211c15;
}
.btn-selector--nodefault .btn-selector__item + .btn-selector__item::before {
  background: #211c15;
}
@media (min-width: 992px) {
  .btn-selector--nodefault .btn-selector__input:not(:checked):not(:disabled) + .btn-selector__label:hover {
    background: rgba(33, 28, 21, 0.75);
  }
}
@media (min-width: 768px) {
  .btn-selector--md-limited .btn-selector__item {
    max-width: 150px;
  }
}
@media (max-width: 767px) {
  .btn-selector--mobile-3-row {
    flex-wrap: wrap;
    height: auto !important;
  }
}
@media (max-width: 767px) {
  .btn-selector--mobile-3-row .btn-selector__item {
    flex: 1 1 33.333%;
    width: 33.333%;
    margin-bottom: 0.75em;
  }
  .btn-selector--mobile-3-row .btn-selector__item:nth-child(3n+3):not(:last-child) .btn-selector__label {
    border-radius: 0 4px 4px 0;
    border-right: 1px solid #e5e5e5;
  }
  .btn-selector--mobile-3-row .btn-selector__item:nth-child(3n+1):not(:first-child)::before {
    display: none;
  }
  .btn-selector--mobile-3-row .btn-selector__item:nth-child(3n+1):not(:first-child) .btn-selector__label {
    border-radius: 4px 0 0 4px;
    border-left: 1px solid #e5e5e5;
  }
}
.btn-selector__input {
  display: none;
}
.btn-selector__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}
.btn-selector__label {
  padding: 0.375em;
  text-align: center;
  -webkit-transition: 0.2s all;
  -o-transition: 0.2s all;
  transition: 0.2s all;
  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;
  height: 100%;
  background: #eeeeee;
  font-weight: normal;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                supported by Chrome, Opera and Firefox */
}
.btn-selector__input[disabled] + .btn-selector__label {
  background: #e5e5e5;
}
@media (min-width: 992px) {
  .btn-selector__input[disabled] + .btn-selector__label:hover {
    cursor: not-allowed !important;
  }
}
.btn-selector__input[disabled] + .btn-selector__label .btn-selector__text,
.btn-selector__input[disabled] + .btn-selector__label .btn-selector__icon {
  color: #888;
}
.btn-selector__text {
  color: #555555;
  font-weight: normal;
}
.btn-selector__icon {
  font-size: 1.25em;
}
.btn-selector__icon--lg {
  font-size: 1.5em;
}
.btn-selector__icon + .btn-selector__text {
  display: none;
}
.btn-selector__icon + .btn-selector__text--show {
  margin-left: 0.5em;
  display: inline-block;
}
@media (min-width: 768px) {
  .btn-selector__icon + .btn-selector__text--md-show {
    margin-left: 0.5em;
    display: inline-block;
  }
}
.btn-selector:not(.btn-selector--icon-no-default-color) .btn-selector__icon {
  color: #888;
}
.btn-selector__input:checked + .btn-selector__label {
  background: #ff6e62;
  border-color: #ff6e62 !important;
}
.btn-selector__input:checked + .btn-selector__label .btn-selector__icon,
.btn-selector__input:checked + .btn-selector__label .btn-selector__text {
  color: #fff;
}
@media (min-width: 992px) {
  .btn-selector__input:not(:checked):not(:disabled) + .btn-selector__label:hover {
    cursor: pointer;
    background: rgba(255, 110, 98, 0.75);
  }
  .btn-selector__input:not(:checked):not(:disabled) + .btn-selector__label:hover .btn-selector__icon,
.btn-selector__input:not(:checked):not(:disabled) + .btn-selector__label:hover .btn-selector__text {
    color: #fff;
  }
  .btn-selector--nodefault .btn-selector__input:not(:checked):not(:disabled) + .btn-selector__label:hover {
    background: rgba(33, 28, 21, 0.75);
  }
}

/*開關式單選按鈕*/
.switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 992px) {
  .switch:hover {
    cursor: pointer;
  }
}
.switch__input {
  display: none;
}
.switch__label {
  padding: 0.5em 1em;
  background: #ff6e62;
  color: #fff;
  font-weight: normal;
  margin-bottom: 0;
  min-width: 90px;
  height: 42px;
  text-align: center;
}
@media (min-width: 992px) {
  .switch__label:hover {
    cursor: pointer;
  }
}
.switch__thumb {
  background: #fff;
  border: 1px solid #ff6e62;
  height: 100%;
  position: absolute;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.switch__thumb--default {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

/*開關式核取方塊*/
.checkbox-switch {
  padding-top: 4px;
}
.checkbox-switch__input {
  display: none;
}
.checkbox-switch__label {
  height: 34px;
  line-height: calc(34px - 1em);
  background: #d5d5d5;
  color: #fff;
  padding: 0.5em 1em 0.5em 42px;
  border-radius: 30px;
  margin: 0;
  font-weight: normal;
  min-width: 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background-color 0.4s, padding 0.4s;
}
.checkbox-switch__label::after {
  content: "";
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  top: calc(50% - 13px);
  left: 4px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}
.checkbox-switch__input:checked + .checkbox-switch__label {
  color: #fff;
  background: #ff6e62;
  padding: 0.5em 42px 0.5em 1em;
}
.checkbox-switch__input:checked + .checkbox-switch__label::after {
  left: calc(100% - 30px);
}
@media (min-width: 992px) {
  .checkbox-switch__label:hover {
    cursor: pointer;
  }
}

/*搜尋輸入框*/
.searchbar {
  width: 100%;
  display: flex;
}
.searchbar > .input-field :not(:last-child) {
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .searchbar > .input-field :not(:last-child) {
    margin-bottom: 0;
  }
}
.searchbar > .input-field:first-child {
  position: relative;
}
@media (max-width: 767px) {
  .searchbar > .input-field:first-child {
    margin-bottom: 0 !important;
  }
}
.searchbar > .input-field:first-child::before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  font-size: 18px;
  left: 12px;
  top: calc(50% - 9px);
}
.searchbar > .input-field:first-child .form-control {
  padding-left: 36px;
  border-right: none;
}
.searchbar > .input-field:first-child + .input-field {
  margin-left: 0;
}
@media (max-width: 767px) {
  .searchbar > .input-field:first-child + .input-field {
    margin-bottom: 0 !important;
  }
}
.searchbar > .input-field:first-child + .input-field .btn {
  min-width: 70px;
  color: #fff;
  background: #555555;
  border-color: #555555;
  border-radius: 0 4px 4px 0;
}
.searchbar > .input-field:first-child + .input-field .btn:not(:disabled):not(.btn--disabled):focus, .searchbar > .input-field:first-child + .input-field .btn:not(:disabled):not(.btn--disabled):active {
  color: #fff;
  background: #211c15;
  border-color: #211c15;
}
@media (min-width: 992px) {
  .searchbar > .input-field:first-child + .input-field .btn:not(:disabled):not(.btn--disabled):hover {
    color: #fff;
    background: #211c15;
    border-color: #211c15;
  }
}
.searchbar--btn-less > .input-field:first-child .form-control {
  border-right: 1px solid #d5d5d5;
}
.searchbar--btn-less > .input-field:first-child .form-control:focus, .searchbar--btn-less > .input-field:first-child .form-control:active {
  border-color: #211c15;
}

/**
 編輯器圖片管理
 */
.image-manager {
  border: 1px solid #d5d5d5;
  padding: 14px;
}
.image-manager__content {
  padding: 24px 0 12px;
  overflow-x: auto;
  overflow-y: hidden;
}
.image-manager__list {
  margin: 0;
  display: flex;
}
.image-manager__item {
  position: relative;
}
.image-manager__item + .image-manager__item {
  margin-left: 10px;
}
.image-manager__add-btn {
  display: inline-flex;
  margin-bottom: 0;
  font-weight: normal;
}
.image-manager__link {
  transition: opacity 0.4s;
}
.image-manager__link:hover {
  opacity: 0.8;
}
.image-manager__delete-btn {
  position: absolute;
  background: transparent;
  top: 0;
  right: 0;
  border: none;
  z-index: 1;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.75);
  font-size: 1.25em;
  border-radius: 0;
  transition: all 0.4s;
  transform-origin: top right;
}
.image-manager__delete-btn:hover, .image-manager__delete-btn:focus, .image-manager__delete-btn:active {
  background: #fff;
  color: #211c15;
}
.image-manager__delete-btn:active {
  transform: scale(0.95);
}
.image-manager__img {
  width: 250px;
  position: relative;
  overflow: hidden;
}
.image-manager__img::after {
  content: "";
  display: block;
  padding-top: 75%;
}
.image-manager__img img {
  position: absolute;
  top: -99%;
  bottom: -99%;
  left: -99%;
  right: -99%;
  margin: auto;
}

.file-upload {
  width: 100%;
  /*
    平板以上有最大寬度
   */
}
.file-upload__label {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #d5d5d5;
  background: #fff;
  overflow: hidden;
  transition: background-color 0.4s;
  margin-bottom: 0;
}
.file-upload__label:hover {
  cursor: pointer;
  background: #f7f7f7;
}
.file-upload__icon {
  display: none;
  font-size: 2.3125em;
  margin: auto;
  z-index: 1;
}
.file-upload--empty .file-upload__icon {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.file-upload--empty .file-upload__icon::before, .file-upload--empty .file-upload__icon::after {
  flex: 1 100%;
  max-width: 100%;
  text-align: center;
}
.file-upload--empty .file-upload__icon::after {
  content: attr(data-str);
  display: block;
  font-family: "蘋果儷中黑", "微軟正黑體", Verdana, Arial, sans-serif, "新細明體";
  font-size: 0.4324324324em;
  color: #211c15;
  margin-top: 8px;
}
.file-upload__img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
}
.file-upload--empty .file-upload__img {
  display: none;
}
.file-upload__img-outer {
  display: flex;
  width: 100%;
  position: relative;
}
.file-upload__img-outer:after {
  content: "";
  display: block;
  padding-top: 75%;
}
.file-upload--16by9 .file-upload__img-outer:after {
  padding-top: 56.25%;
}
.file-upload--square .file-upload__img-outer:after {
  padding-top: 100%;
}
@media (min-width: 768px) {
  .file-upload--md-limited .file-upload__label {
    max-width: 225px;
  }
}

.profile-pic__form-group {
  text-align: center;
}
.profile-pic__label {
  margin-bottom: 24px;
  background: none;
  border: none;
}
.profile-pic__label:hover {
  cursor: default;
  background: none;
  border: none;
}
@media (min-width: 768px) {
  .profile-pic__label {
    margin-bottom: 30px;
  }
}
.profile-pic__img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 1px solid #d5d5d5;
}
.profile-pic__img:hover {
  cursor: pointer;
}
@media (min-width: 768px) {
  .profile-pic__img {
    width: 140px;
    height: 140px;
  }
}
.profile-pic__img img {
  z-index: 2;
}
.file-upload--empty .profile-pic__img img {
  display: none;
}
.profile-pic__img::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 0;
  background: #f7f7f7;
  top: 0;
  transition: background 0.4s;
}
.profile-pic__label:hover .profile-pic__img::before {
  background: #eeeeee;
}
.profile-pic__icon {
  display: none;
  font-size: 2.3125em;
  position: relative;
  z-index: 1;
}
.file-upload--empty .profile-pic__icon {
  display: inline-block;
}
.profile-pic__btn {
  display: block;
  width: 140px;
  margin: 0 auto;
  margin-bottom: 24px;
}
.file-upload--empty .profile-pic__btn {
  display: none;
}
.profile-pic__desc {
  font-size: 0.8125em;
  line-height: 20px;
  color: #888;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .profile-pic__desc {
    max-width: 370px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 1280px) {
  .profile-pic__desc {
    max-width: 230px;
  }
}
/**
 關聯子表單列表(如選子女幾人，下放的詳細資訊列表)
 */
.relative-form {
  margin-top: 1.5em;
  margin-bottom: 0;
  counter-reset: num;
}
.relative-form__field {
  counter-increment: num;
  display: block;
  border-radius: 4px;
  padding: 0.75em 0;
  margin-left: 40px;
  position: relative;
}
@media (min-width: 768px) {
  .relative-form__field {
    padding: 0.75em 1.5em;
    border-radius: 35px;
    background: #eeeeee;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .relative-form__field::before {
    content: counter(num);
    background: #211c15;
    color: #fff;
    border-radius: 50%;
    height: 26px;
    width: 26px;
    position: absolute;
    left: -40px;
    display: flex;
    justify-content: center;
  }
}
.relative-form__field .input-field {
  margin-bottom: 0;
}
.relative-form__field:not(:last-child) {
  margin-bottom: 1em;
}

/**
 長得像是input:readonly的文字
 */
.input-text {
  padding: 7px 10px;
  background: #eeeeee;
  font-size: 14px;
  min-height: 42px;
  display: flex;
  align-items: center;
}
@media (min-width: 375px) {
  .input-text {
    padding: 7px 15px;
  }
}
.input-textarea {
  padding: 7px 10px 10px;
  background: #eeeeee;
  white-space: pre-line;
  word-break: break-all;
}
@media (min-width: 375px) {
  .input-textarea {
    padding: 15px 15px 18px;
  }
}
.input-textarea--white {
  background: #fff;
  border: 1px solid #d5d5d5;
}
.input-text-list {
  counter-reset: num;
  padding: 1.5em 1em 1.625em;
  border-radius: 4px;
  margin-bottom: 0;
  border: 1px solid #d5d5d5;
}
@media (min-width: 768px) {
  .input-text-list {
    padding: 1.625em 2.25em 2.25em;
  }
}
.input-text-list__item {
  counter-increment: num;
}
.input-text-list__item:not(:last-child) {
  margin-bottom: 1em;
}
.input-text-list__title {
  color: #888;
  margin-bottom: 0.25em;
  margin-left: calc(1em + 5px);
  position: relative;
  font-weight: normal;
}
.input-text-list__title::before {
  content: counter(num) ". ";
  position: absolute;
  left: calc(-1em - 5px);
}
.input-text-list__desc {
  padding: 7px calc(1em + 5px);
  background: #eeeeee;
  font-size: 14px;
  word-break: break-all;
}
.input-text-list__desc:empty {
  display: none;
}
.input-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
}
.input-header > .input-label {
  margin-bottom: 0;
}

/**
 單選群組樣式-外框，checked打勾
 */
.radio-list {
  display: flex;
  flex-wrap: wrap;
}
.input-label + .radio-list {
  padding-top: 0.875em;
}
.radio-list--btn-like {
  display: block;
}
.radio-list__item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75em;
}
.radio-list__item:not(:last-child) {
  margin-right: 1em;
}
.radio-list--btn-like .radio-list__item:not(:last-child), .radio-list--block .radio-list__item:not(:last-child) {
  margin-right: 0;
}
.radio-list--block .radio-list__item:last-child {
  margin-bottom: 0;
}
.radio-list__item--grow {
  flex: 1 1 auto;
}
.radio-list__item--grow .radio-list__label {
  white-space: nowrap;
}
.radio-list__item--grow .radio-list__label,
.radio-list__item--grow .radio-list__custom-input {
  flex: 1 1 auto;
}
.radio-list__item--full {
  flex: 1 1 100%;
  max-width: 100%;
  margin-right: 0;
  margin-bottom: 0;
}
.radio-list__item--full .radio-list__label,
.radio-list__item--full .radio-list__custom-input {
  flex: 1 1 auto;
}
.radio-list--btn-like .radio-list__item {
  display: block;
}
.radio-list--block .radio-list__item {
  flex: 1 1 100%;
  max-width: 100%;
  margin-bottom: 1.5em;
}
.radio-list__input {
  display: none;
}
.radio-list__custom-input {
  border: none;
  padding: 0 0.5em;
}
.radio-list__custom-input:disabled {
  background-color: #eeeeee;
}
.radio-list__custom-input:disabled:hover {
  cursor: default;
}
.radio-list__label {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid #211c15;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                supported by Chrome, Opera and Firefox */
}
.radio-list__label-content {
  white-space: nowrap;
}
.radio-list__label::before,
.radio-list__label .radio-list__label-text::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #211c15;
  margin-right: 1em;
  /* fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.875em;
  transition: background 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.radio-list__input:checked + .radio-list__label::before,
.radio-list__input:checked + .radio-list__label .radio-list__label-text::before {
  content: "";
  background: #211c15;
  color: #fff;
  font-weight: normal;
}
.radio-list--btn-like .radio-list__label::before,
.radio-list--btn-like .radio-list__label .radio-list__label-text::before {
  display: none;
}
.radio-list__input:not(:disabled) + .radio-list__label:hover {
  cursor: pointer;
}
.radio-list__input:not(:disabled) + .radio-list__label:hover::before,
.radio-list__input:not(:disabled) + .radio-list__label:hover .radio-list__label-text::before {
  content: "";
  color: #f0f0f0;
}
.radio-list__input:disabled + .radio-list__label {
  background: #eeeeee;
  border-color: #eeeeee;
  color: #888;
}
.radio-list__input:disabled + .radio-list__label::before {
  background-color: #d5d5d5;
  border-color: #e5e5e5;
  color: #888;
}
.radio-list__input:disabled + .radio-list__label:hover {
  cursor: default;
}
.radio-list--btn-like .radio-list__input:checked + .radio-list__label {
  background: #211c15;
  color: #fff;
}
.radio-list--block .radio-list__label {
  padding: 0;
  border: none;
  flex: 1 1 100%;
  max-width: 100%;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .radio-list--block .radio-list__label {
    flex-wrap: wrap;
  }
}
.radio-list--block .radio-list__label::before {
  display: none;
}
.radio-list--block .radio-list__label .input-field {
  flex: 1 1 auto;
}
.radio-list__label-text {
  white-space: nowrap;
  display: flex;
  align-items: center;
  padding: 0.5em 0;
}
@media (max-width: 991px) {
  .radio-list__label-text {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .radio-list__label-text {
    height: 42px;
  }
}
.radio-list__label-text + * {
  margin-left: 0.5em;
}
@media (max-width: 991px) {
  .radio-list__label-text + * {
    margin-left: 0;
  }
}
.radio-list--btn-like .radio-list__label {
  border-radius: 4px;
  font-weight: normal;
  padding: 0.5em 0.75em 0.5em 1em;
  transition: background-color 0.2s;
}
.radio-list--btn-like .radio-list__label .radio-list__label-text {
  padding: 0;
  white-space: normal;
  flex: 1 1 auto;
  max-width: calc(100% - 35px);
}
@media (min-width: 992px) {
  .radio-list--btn-like .radio-list__label .radio-list__label-text {
    height: auto;
  }
}
.radio-list--btn-like .radio-list__label .type-label {
  flex: 1 1 32px;
  max-width: 32px;
  justify-content: flex-end;
}
.radio-list--btn-like .radio-list__label .type-label--instagram .type-label__inner {
  padding: 0;
  font-size: 14px;
  border-radius: 20px;
  min-width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #F44D91;
  font-size: 16px;
}
.radio-list--btn-like .radio-list__label .type-label--instagram .type-label__inner::before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}
.radio-list--btn-like .radio-list__label .type-label {
  flex: 1 1 32px;
  max-width: 32px;
  justify-content: flex-end;
}
.radio-list--btn-like .radio-list__label .type-label--youtube .type-label__inner {
  padding: 0;
  font-size: 14px;
  border-radius: 20px;
  min-width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #FD0D00;
  font-size: 16px;
}
.radio-list--btn-like .radio-list__label .type-label--youtube .type-label__inner::before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}
.radio-list--btn-like .radio-list__label .type-label {
  flex: 1 1 32px;
  max-width: 32px;
  justify-content: flex-end;
}
.radio-list--btn-like .radio-list__label .type-label--facebook .type-label__inner {
  padding: 0;
  font-size: 14px;
  border-radius: 20px;
  min-width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #4267B2;
  font-size: 16px;
}
.radio-list--btn-like .radio-list__label .type-label--facebook .type-label__inner::before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}
.radio-list--btn-like .radio-list__label .type-label {
  flex: 1 1 32px;
  max-width: 32px;
  justify-content: flex-end;
}
.radio-list--btn-like .radio-list__label .type-label--blog .type-label__inner {
  padding: 0;
  font-size: 14px;
  border-radius: 20px;
  min-width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #FF8933;
}
.radio-list--btn-like .radio-list__label .type-label--blog .type-label__inner::before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}
.radio-list--btn-like .radio-list__input:checked + .radio-list__label .type-label--instagram .type-label__inner {
  background: #fff;
  color: #F44D91;
}
.radio-list--btn-like .radio-list__input:checked + .radio-list__label .type-label--youtube .type-label__inner {
  background: #fff;
  color: #FD0D00;
}
.radio-list--btn-like .radio-list__input:checked + .radio-list__label .type-label--facebook .type-label__inner {
  background: #fff;
  color: #4267B2;
}
.radio-list--btn-like .radio-list__input:checked + .radio-list__label .type-label--blog .type-label__inner {
  background: #fff;
  color: #FF8933;
}
.radio-list__desc {
  margin-left: 24px;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  color: #888;
}
@media (max-width: 767px) {
  .radio-list__desc {
    margin-left: 0;
    margin-top: 0.5em;
  }
}
.radio-list__input:checked + .radio-list__label + .radio-list__desc, .radio-list__input:checked + .radio-list__label .radio-list__desc {
  color: #211c15;
}
.radio-list--full .radio-list__item, .radio-list--full .radio-list__label {
  flex: 1 1 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .radio-list--full .radio-list__item, .radio-list--full .radio-list__label {
    flex: 0 1 auto;
    max-width: none;
  }
}
@media (min-width: 992px) {
  .radio-list--full .radio-list__item, .radio-list--full .radio-list__label {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .radio-list--full .radio-list__item {
    flex-wrap: wrap;
  }
}
.radio-list--full .radio-list__item:not(:last-child) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .radio-list--full .radio-list__item:not(:last-child) {
    margin-bottom: 1.25em;
  }
}
.radio-list--dot .radio-list__label {
  border-color: #d5d5d5;
  color: #888;
  position: relative;
  transition: all 0.2s;
}
.radio-list--dot .radio-list__label::before {
  border-width: 3px;
  border-color: #d5d5d5;
  transition: all 0.2s;
}
.radio-list--dot .radio-list__label::after {
  content: "";
  background: transparent;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 16px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.2s;
}
.radio-list--dot .radio-list__input:checked + .radio-list__label {
  color: #211c15;
  border-color: #211c15;
}
.radio-list--dot .radio-list__input:checked + .radio-list__label::before {
  content: "";
  background: none;
  border-color: #211c15;
}
.radio-list--dot .radio-list__input:checked + .radio-list__label::after {
  opacity: 1;
  background: #211c15;
}
.radio-list--dot .radio-list__input:not(:disabled):not(:checked) + .radio-list__label:hover::before {
  content: "";
}
.radio-list--dot .radio-list__input:not(:disabled):not(:checked) + .radio-list__label:hover::after {
  opacity: 1;
  background: #d5d5d5;
}
.radio-list--dot .radio-list__input:checked + .radio-list__label + .radio-list__desc {
  color: #211c15;
}
.radio-list--dot .radio-list__input:disabled + .radio-list__label {
  border-color: #eeeeee;
  color: #888;
}
.radio-list--dot .radio-list__input:disabled + .radio-list__label:before {
  background-color: #eeeeee;
  border-color: #888;
}
.radio-list--dot .radio-list__input:disabled + .radio-list__label:after {
  background-color: #888;
}

/**
 巨大的checkbox區域
 */
.checkbox-massive {
  background: #ff6e62;
  padding: 40px 1.25em 50px;
  border-radius: 4px;
  color: #fff;
}
@media (min-width: 768px) {
  .checkbox-massive__inner {
    max-width: 440px;
    margin: 0 auto;
    text-align: center;
  }
}
.checkbox-massive__control {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .checkbox-massive__control {
    justify-content: center;
  }
}
.checkbox-massive__title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
.checkbox-massive__text {
  font-size: 1.125em;
  margin-left: 0.75em;
  font-weight: bold;
}
@media (min-width: 768px) {
  .checkbox-massive__text {
    font-size: 1.625em;
  }
}
.checkbox-massive__desc {
  font-weight: bold;
  max-width: 440px;
  margin-top: 1.25em;
  line-height: 1.6;
}
.checkbox-massive__desc:empty {
  display: none;
}
.checkbox-massive--multiple .checkbox-massive__desc {
  max-width: 100%;
  text-align: left;
}
.checkbox-massive .checkbox__label {
  margin-bottom: 0;
  padding-left: 29px;
}
@media (min-width: 768px) {
  .checkbox-massive .checkbox__label {
    height: 34px;
    padding-left: 35px;
  }
}
.checkbox-massive .checkbox__label::before {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  top: 0;
  border-color: #fff;
}
@media (min-width: 768px) {
  .checkbox-massive .checkbox__label::before {
    width: 34px;
    height: 34px;
    top: calc(50% - 17px);
  }
}
.checkbox-massive .checkbox__label::after {
  width: 9px;
  height: 16px;
  left: 6px;
  bottom: calc(100% - 14.8px);
  border-width: 3px;
  -webkit-animation: masive-check 0.2s cubic-bezier(1, 0, 0.13, 1);
  animation: masive-check 0.2s cubic-bezier(1, 0, 0.13, 1);
}
@media (min-width: 768px) {
  .checkbox-massive .checkbox__label::after {
    width: 11px;
    height: 20px;
    left: 8px;
    bottom: calc(100% - 17.8px);
    -webkit-animation: masive-check-md 0.2s cubic-bezier(1, 0, 0.13, 1);
    animation: masive-check-md 0.2s cubic-bezier(1, 0, 0.13, 1);
  }
}
.checkbox-massive--multiple {
  padding: 25px 1.25em 35px;
}
@media (min-width: 768px) {
  .checkbox-massive--multiple {
    padding-top: 28px;
    padding-bottom: 50px;
  }
}
.checkbox-massive--multiple .checkbox__label {
  height: auto;
  padding-left: 20px;
}
.checkbox-massive--multiple .checkbox__label::before {
  width: 20px;
  height: 20px;
  top: 0;
}
@media (min-width: 768px) {
  .checkbox-massive--multiple .checkbox__label::before {
    top: 2.5px;
  }
}
.checkbox-massive--multiple .checkbox__label::after {
  width: 8px;
  height: 14px;
  left: 3px;
  bottom: calc(100% - 10.8px);
  animation: masive-check-small 0.2s cubic-bezier(1, 0, 0.13, 1);
}
@media (min-width: 768px) {
  .checkbox-massive--multiple .checkbox__label::after {
    bottom: calc(100% - 12.8px);
  }
}
@media (min-width: 768px) {
  .checkbox-massive--multiple .checkbox-massive__inner {
    max-width: 500px;
  }
}
@media (min-width: 992px) {
  .checkbox-massive--multiple .checkbox-massive__inner {
    max-width: 600px;
  }
}
.checkbox-massive--multiple .checkbox-massive__text {
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .checkbox-massive--multiple .checkbox-massive__text {
    font-size: 18px;
  }
}
.checkbox-massive--multiple .checkbox-massive__text .text {
  font-weight: normal;
}
.checkbox-massive--multiple .checkbox-massive__text .checkbox-massive__text-main {
  min-height: 20px;
}
.checkbox-massive--multiple .checkbox-massive__control:not(:last-child) {
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .checkbox-massive--done {
    font-size: 1.3em;
  }
}
.checkbox-massive--done .checkbox-massive__desc {
  max-width: none;
  margin-top: 0;
}
@media (min-width: 768px) {
  .checkbox-massive--done .checkbox-massive__inner {
    max-width: none;
  }
}
@media (min-width: 1280px) {
  .checkbox-massive-outer {
    margin: 0 -10px;
  }
}
@media (min-width: 1280px) {
  .checkbox-massive-outer .checkbox-massive {
    flex: 1 1 100%;
    max-width: 100%;
    margin-right: 10px;
    margin-left: 10px;
  }
}
.checkbox-massive-outer .checkbox-massive:not(:last-child) {
  margin-bottom: 1em;
}
.checkbox-massive-outer .checkbox-massive__control {
  align-items: flex-start;
}
@media (min-width: 768px) {
  .checkbox-massive-outer .checkbox-massive__control {
    justify-content: flex-start;
  }
}
.checkbox-massive-outer .checkbox-massive__text {
  text-align: left;
}
.checkbox-massive-outer .checkbox-massive__text-main {
  min-height: 28px;
  display: flex;
  align-items: center;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .checkbox-massive-outer .checkbox-massive__text-main {
    min-height: 34px;
  }
}
.checkbox-massive-outer .checkbox-massive__text-main br {
  display: none;
}
.checkbox-massive-outer .checkbox-massive__text-sub {
  font-size: 14px;
  font-weight: normal;
}
.checkbox-massive-outer--multiple .checkbox-massive__text-main br {
  display: block;
}
.checkbox-massive--disabled {
  background: #eeeeee;
  color: #888;
}

/**
 按鈕群組(連在一起)
 */
.button-group {
  display: flex;
}
.button-group .btn:first-child {
  border-radius: 4px 0 0 4px;
}
.button-group .btn:last-child {
  border-radius: 0 4px 4px 0;
}

/**
 按鈕群組
 */
.btn-group {
  margin: 0 -15px;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .btn-group {
    flex-wrap: wrap;
  }
}
.step .btn-group {
  margin-left: 0;
  margin-right: 0;
}
.btn-group .btn {
  margin: 0;
  width: auto;
}
.btn-group > *:not(:last-child) {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .btn-group > *:not(:last-child) {
    margin-right: 30px;
  }
}
@media (max-width: 767px) {
  .btn-group > *:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1em;
  }
}
.btn-group__sub {
  flex: 1 1 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .btn-group__sub {
    flex-bottom: 100%;
    max-width: 100%;
  }
}
.btn-group__sub .btn {
  width: 100%;
}
.btn-group__main {
  flex: 1.25 1 260px;
  max-width: 260px;
}
@media (max-width: 767px) {
  .btn-group__main {
    flex-bottom: 100%;
    max-width: 100%;
  }
}
.btn-group__main .btn {
  width: 100%;
}
.btn-group__field {
  display: flex;
  flex-direction: column;
}
.btn-group__field .btn {
  flex: 1 1 auto;
}
.btn-group__field .btn:not(:last-child) {
  margin-right: 0;
}
.btn-group__desc {
  font-size: 14px;
  color: #888;
}
.btn-group__desc:not(:empty) {
  margin-top: 0.5em;
}
.btn-group__desc.text-primary {
  color: #ff6e62;
}
@media (max-width: 767px) {
  .btn-group__desc {
    text-align: left;
  }
}
.btn-group--left {
  justify-content: left;
  margin: 0 0 2em;
}
.btn-group--sm {
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .btn-group--sm {
    flex-wrap: nowrap;
  }
}
.btn-group--sm .btn {
  flex: 1 1 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  .btn-group--sm .btn {
    max-width: 150px;
  }
}
.btn-group--sm .btn:not(:last-child) {
  margin-right: 0;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .btn-group--sm .btn:not(:last-child) {
    margin-bottom: 0;
    margin-right: 20px;
  }
}
@media (max-width: 991px) {
  .btn-group--tablets-full {
    flex-wrap: wrap;
  }
  .btn-group--tablets-full .btn {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .btn-group--tablets-full .btn:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1.5em;
  }
}
@media (max-width: 991px) {
  .btn-group--tablets-half {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .btn-group--tablets-half .btn {
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .btn-group--tablets-half .btn {
    flex-basis: calc(50% - 7.5px);
    max-width: calc(50% - 7.5px);
  }
}
@media (max-width: 991px) {
  .btn-group--tablets-half .btn:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1.5em;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .btn-group--tablets-half .btn:not(:last-child) {
    margin-bottom: 0;
  }
}
.content-wrap--bordered.content-wrap--has-sidebar .btn-group, .content-wrap--bordered.content-wrap--normal .btn-group {
  margin: 3rem 0;
}
.container > .btn-group, .wrap__content + .btn-group {
  margin-bottom: 3rem;
}

.mt-lg {
  margin-top: 5em;
}

.input-list {
  counter-reset: num;
  margin-bottom: 0;
}
.input-list__item {
  counter-increment: num;
  margin-bottom: 0.75em;
}
.input-list__item:last-child {
  margin-bottom: 0;
}
.input-list__title {
  color: #211c15;
  margin-bottom: 0.25em;
  margin-left: calc(1em + 5px);
  position: relative;
  font-weight: normal;
}
.input-list__title::before {
  content: counter(num) ". ";
  position: absolute;
  left: -1em;
}

@media screen and (min-width: 768px) {
  /*手機區碼用column*/
  .col-md-130 {
    flex-basis: 130px;
    max-width: 130px;
  }
}
.file-multi {
  display: block;
  border: 1px solid #211c15;
  padding: 10px 14px;
  border-radius: 4px;
  transition: all 0.2s;
}
.file-multi:hover {
  cursor: pointer;
}
.file-multi__label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
}
.file-multi__label > [class^=icon-], .file-multi__label > [class*=" icon-"] {
  font-size: 26px;
  margin-right: 5px;
}
.file-multi__list {
  margin-bottom: 10px;
}
.file-multi__list:empty {
  display: none;
}
.file-multi--empty .file-multi__list {
  display: none;
}
.file-multi__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #eeeeee;
  border-radius: 4px;
  padding-left: 0.75em;
  padding-right: 0.25em;
  cursor: default;
  overflow: hidden;
}
.file-multi__item:not(:last-child) {
  margin-bottom: 12px;
}
.file-multi__item-text {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.file-multi__item .btn {
  background: transparent;
  color: #888;
  transition: border 0s;
  border: none;
}
.file-multi__item .btn:active, .file-multi__item .btn:hover, .file-multi__item .btn:focus {
  color: #211c15;
  border: none;
}
.file-multi__input[type=file], .file-multi__dropzone-input[type=file] {
  display: none;
}
.file-multi.loading::before, .file-multi.loading::after {
  position: absolute;
}
.file-multi.loading::after {
  top: calc(50% - 1em);
  left: calc(50% - 1em);
}

@keyframes fadein-left {
  from {
    transform: translateX(5px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.small-fieldset:not(:last-child) {
  margin-bottom: 40px;
}
.small-fieldset__inner {
  border: 1px solid #e5e5e5;
}
.small-fieldset__header {
  padding: 8px 16px;
  display: flex;
}
.small-fieldset__header-left, .small-fieldset__header-right {
  flex: 1 1 auto;
  max-width: 100%;
  display: flex;
  align-items: center;
}
.small-fieldset__header-left {
  font-weight: bold;
  color: #000;
}
.small-fieldset__header-right {
  justify-content: flex-end;
  font-size: 14px;
}
.small-fieldset__header-right .checkbox__label::before {
  top: 0;
}
.small-fieldset__header-right .checkbox__label::after {
  bottom: calc(100% - 10px);
}
.small-fieldset__content {
  overflow: hidden;
}
.small-fieldset__content-inner {
  padding: 20px 16px 30px;
  border-top: 1px solid #e5e5e5;
}
.small-fieldset--disabled .input-field__feedback {
  display: none;
}
.small-fieldset__row {
  margin-bottom: -24px;
}
@media (min-width: 768px) {
  .small-fieldset__row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -24px;
  }
}
.small-fieldset__col {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .small-fieldset__col {
    flex: 1 1 50%;
    max-width: 50%;
    padding: 0 15px;
  }
}

.grade__field {
  display: flex;
  flex-wrap: wrap;
}
.grade__field:not(:last-child) {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .grade__field:not(:last-child) {
    margin-bottom: 30px;
  }
}
.grade__field .input-field {
  display: none;
}
.grade__field--form .input-field {
  display: block;
}
.grade__photo {
  flex: 1 1 100%;
  max-width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .grade__photo {
    margin-bottom: 0;
    flex: 1 1 70px;
    max-width: 70px;
  }
}
.grade__photo .grade__img-outer {
  width: 70px;
  border-radius: 50%;
  overflow: hidden;
}
.grade__img-outer {
  position: relative;
  overflow: hidden;
}
.grade__img-outer::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.grade__img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
}
.grade__info {
  flex: 1 1 100%;
  max-width: 100%;
  text-align: center;
  margin-bottom: 0.5em;
  max-height: 70px;
}
@media (min-width: 768px) {
  .grade__info {
    padding-left: 1em;
    flex: 1 1 200px;
    max-width: 200px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    text-align: left;
  }
}
.grade__info-inner {
  max-width: 100%;
}
.grade__field--form .grade__info {
  display: none;
}
@media (min-width: 768px) {
  .grade__field--gradeless .grade__info {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: calc(100% - 70px);
    max-width: calc(100% - 70px);
  }
}
.grade__name {
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}
.grade__time {
  font-size: 0.75em;
}
.grade__field--gradeless .grade__time {
  display: none;
}
.grade__invite {
  display: none;
}
.grade__field--gradeless .grade__invite {
  display: block;
}
.grade__invite-text {
  font-size: 0.75em;
  color: #211c15;
  margin-bottom: 1em;
  display: none;
}
@media (min-width: 768px) {
  .grade__invite-text {
    margin-bottom: 0;
  }
}
.grade__field--gradeless .grade__invite-text {
  display: block;
}
.grade__invite-btn {
  width: 150px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .grade__invite-btn {
    margin-left: 2em;
  }
}
.grade__label {
  color: #211c15;
  display: none;
}
@media (min-width: 768px) {
  .grade__field--form .grade__label {
    display: inline-block;
  }
}
.grade__input {
  display: none;
}
.grade__grade {
  flex: 1 1 100%;
  max-width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .grade__grade {
    padding-left: 1em;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: calc(100% - 270px);
    max-width: calc(100% - 270px);
    text-align: left;
    justify-content: center;
  }
  .grade__field--form .grade__grade {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: calc(100% - 70px);
    max-width: calc(100% - 70px);
  }
}
@media (min-width: 768px) {
  .grade--single .grade__grade {
    padding-left: 0;
    flex: 1 1 100%;
    max-width: 100%;
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .grade__grade .grade__control {
    display: flex;
    align-items: center;
  }
}
.grade__grade .grade__control:not(:last-child) {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .grade__grade .grade__control:not(:last-child) {
    margin-bottom: 0;
  }
  .grade__field--form .grade__grade .grade__control:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .grade__grade .grade__control--align-top {
    align-items: flex-start;
  }
}
.grade--single .grade__grade .grade__control {
  display: flex;
}
.grade__grade .input-field {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .grade__grade .input-field {
    flex: 1 1 auto;
  }
}
.grade__field--gradeless .grade__grade {
  display: none;
}
.grade__star {
  font-size: 14px;
  width: 17px;
  height: 17px;
  color: #d5d5d5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grade__star::before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}
.grade__star--fill {
  color: #ff6e62;
}
.grade__star--fill::before {
  content: "";
}
.grade--lg .grade__star {
  font-size: 20px;
  width: 24px;
  height: 24px;
}
.grade__field--form .grade__star {
  font-size: 20px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.grade__field--form .grade__star:hover {
  cursor: pointer;
}
@media (min-width: 992px) {
  .grade__field--form .grade__star {
    font-size: 20px;
    width: 23px;
    height: auto;
  }
}
@media (min-width: 768px) {
  .grade__star + .input-field {
    margin-left: 10px;
    margin-bottom: 0;
  }
  .grade__star + .input-field .input-field__feedback {
    margin-top: 0;
  }
}
.grade__comment {
  display: none;
  border-radius: 4px;
}
.grade__field--form .grade__comment {
  display: block;
}
.grade__sentence {
  display: none;
  text-align: left;
  margin-top: 1em;
}
.grade__field--form .grade__sentence.grade__sentence--show {
  display: block;
}
.grade__sentence-btn {
  padding: 0.25em 1.25em;
  background: #e5e5e5;
  border: none;
  border-radius: 20px;
  transition: background-color 0.2s, transform 0.2s;
  margin-bottom: 0.5em;
  margin-right: 0.5em;
}
.grade__sentence-btn:hover {
  background: #ff6e62;
  color: #fff;
  cursor: pointer;
}
.grade__sentence-btn:active {
  transform: scale(0.95);
}
.invite-cart__img-outer {
  position: relative;
  overflow: hidden;
}
.invite-cart__img-outer::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.invite-cart__img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
}
.invite-cart__img-outer {
  border-radius: 50%;
}
.invite-cart__photo {
  flex: 1 1 70px;
  max-width: 70px;
}
.invite-cart__info {
  flex: 1 1 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.invite-cart__info-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .invite-cart__info-list {
    padding-left: 1.5em;
  }
}
.invite-cart__info-item {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .invite-cart__info-item {
    min-width: 100px;
  }
}
@media (min-width: 768px) {
  .invite-cart__info-item {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .invite-cart__info-item {
    flex-wrap: wrap;
  }
}
.invite-cart__info-item:not(:last-child) {
  margin-right: 1.25em;
}
@media (min-width: 768px) {
  .invite-cart__info-item:not(:last-child) {
    margin-right: 1.25em;
  }
}
@media (min-width: 992px) {
  .invite-cart__info-item:not(:last-child) {
    margin-right: 0;
  }
}
.invite-cart__item-title {
  font-weight: normal;
  margin-right: 0.5em;
}
@media (min-width: 992px) {
  .invite-cart__item-title {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.invite-cart__item-value {
  font-weight: bold;
}
@media (min-width: 992px) {
  .invite-cart__item-value {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.invite-cart__item-unit {
  margin-left: 5px;
}
@media (min-width: 992px) {
  .invite-cart__item-unit {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.invite-cart__field {
  margin-left: 16px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: calc(100% - 88px);
  max-width: calc(100% - 88px);
  padding-bottom: 0.5em;
}
@media (max-width: 767px) {
  .invite-cart__field {
    border-bottom: 1px solid #d5d5d5;
  }
}
@media (min-width: 768px) {
  .invite-cart__field {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .invite-cart__field {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .invite-cart__left-info {
    padding-right: 1.5em;
    position: relative;
  }
  .invite-cart__left-info::after {
    content: "";
    position: absolute;
    right: 0;
    height: 80%;
    border-right: 1px solid #d5d5d5;
    top: 10%;
  }
}
.invite-cart__name {
  display: flex;
  font-size: 16px;
  margin-bottom: 0.5em;
}
@media (min-width: 992px) {
  .invite-cart__name {
    font-size: 18px;
    width: 230px;
  }
}
.invite-cart__name-content {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 1.4em;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .invite-cart__name-content {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 1.6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.24em;
    line-height: 1.4;
  }
}
.invite-cart__star {
  display: inline-block;
  margin-right: 1em;
  margin-bottom: 0.5em;
}
@media (min-width: 992px) {
  .invite-cart__star {
    margin-bottom: 0;
  }
}
.invite-cart__cpe {
  display: inline-block;
  margin-bottom: 0.5em;
}
@media (min-width: 992px) {
  .invite-cart__cpe {
    margin-bottom: 0;
  }
}
.invite-cart__cpe .tag {
  padding: 0.1em 0.75em;
  font-size: 12px;
}
@media (max-width: 767px) {
  .invite-cart .table__head {
    display: block;
    padding: 0.75em;
  }
  .invite-cart .table__head th:not(:first-child) {
    display: none;
  }
}
@media (min-width: 768px) {
  .invite-cart .table__head {
    font-size: 16px;
  }
}
.invite-cart .table__head th.text-right {
  text-align: right;
}
@media (max-width: 767px) {
  .invite-cart .table__row {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 10px;
  }
}
.invite-cart .table__row:last-child {
  border-bottom: 2px solid #888;
}
@media (max-width: 767px) {
  .invite-cart .table__col {
    padding: 1em 1em;
    flex: 1 1 100%;
    max-width: 100%;
  }
  .invite-cart .table__col::before {
    display: none;
  }
}
@media (max-width: 374px) {
  .invite-cart .table__col {
    padding: 1em 0 0;
  }
}
@media (max-width: 767px) {
  .invite-cart__info-field.table__col {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .invite-cart__delete-field {
    order: 3;
    justify-content: flex-end;
  }
  .invite-cart__delete-field.table__col {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    flex: 1 1 auto;
  }
  .invite-cart__delete-field .btn {
    position: relative;
  }
  .invite-cart__delete-field .btn [class*=icon-], .invite-cart__delete-field .btn [class^=icon-] {
    position: relative;
    z-index: 1;
  }
  .invite-cart__delete-field .btn::after {
    content: "";
    position: absolute;
    background: #eeeeee;
    width: 30px;
    height: 30px;
    top: calc(50% - 15px);
    left: calc(50% - 15px);
    z-index: 0;
    border-radius: 4px;
  }
}
@media (max-width: 374px) {
  .invite-cart__delete-field {
    margin-left: 88px;
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .invite-cart__delete-field.table__col {
    text-align: center;
  }
  .invite-cart__delete-field .btn {
    display: inline-block;
  }
}
.invite-cart__price-field {
  font-size: 14px;
}
.invite-cart__price-field.table__col {
  font-weight: bold;
}
@media (max-width: 767px) {
  .invite-cart__price-field {
    order: 2;
    margin-left: 88px;
    display: flex;
    align-items: center;
  }
  .invite-cart__price-field.table__col {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0 !important;
    flex: 1 1 auto;
  }
}
@media (max-width: 374px) {
  .invite-cart__price-field.table__col {
    padding-top: 0.5em;
  }
}
.invite-cart__sum-field {
  margin-bottom: 4em;
}
.invite-cart .collapse__body-container {
  padding-bottom: 0;
}
.invite-cart .table__row {
  position: relative;
  transform: scale(1);
}
.invite-cart .table__row.disabled .disable-block {
  display: flex;
}
@media (min-width: 768px) {
  .invite-cart .table__row.disabled .disable-block__inner {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .invite-cart .table__row.disabled .disable-block__control {
    margin-top: 0;
    margin-left: 1rem;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .invite-cart .table__row.disabled td {
    position: relative;
    overflow: hidden;
  }
  .invite-cart .table__row.disabled td:not(:first-child)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 3;
    background: rgba(33, 28, 21, 0.5);
  }
}

.sum-total__content {
  border-bottom: 2px solid #888;
  margin-bottom: 0.5em;
}
@media (min-width: 768px) {
  .sum-total__content {
    padding: 0 0.75em;
    margin-bottom: 1em;
  }
}
@media (min-width: 768px) {
  .sum-total__outcome {
    display: flex;
    padding: 0 0.75em;
  }
}
.sum-total__list {
  padding: 1em 0;
  font-size: 14px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .sum-total__list {
    max-width: 400px;
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  .sum-total__list {
    padding: 1.5em 0;
  }
}
.sum-total__item {
  display: flex;
}
.sum-total__item:not(:last-child) {
  margin-bottom: 0.5em;
}
.sum-total__label {
  flex: 1 1 35%;
  max-width: 35%;
  text-align: right;
}
@media (min-width: 768px) {
  .sum-total__label {
    font-size: 16px;
  }
}
.sum-total__sum .sum-total__label {
  font-size: 16px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .sum-total__sum .sum-total__label {
    font-size: 18px;
  }
}
.sum-total__value {
  flex: 1 1 65%;
  max-width: 65%;
  text-align: right;
  font-weight: bold;
}
.sum-total__sum .sum-total__value {
  font-size: 16px;
  font-weight: bold;
  color: #ff6e62;
}
@media (min-width: 768px) {
  .sum-total__sum .sum-total__value {
    font-size: 18px;
  }
}
.sum-total__item-count {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0.5em;
}
@media (min-width: 768px) {
  .sum-total__item-count {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: calc(100% - 400px);
    max-width: calc(100% - 400px);
    font-size: 16px;
  }
}
.sum-total__sum {
  display: flex;
}
@media (min-width: 768px) {
  .sum-total__sum {
    flex: 1 1 400px;
    max-width: 400px;
  }
}

/*kol介紹部分*/
.kol-info__title--hidden {
  display: none;
}
.kol-info__img-outer {
  margin: 0 auto 1em auto;
}
@media (min-width: 768px) {
  .kol-info__img-outer {
    max-width: 260px;
  }
}
@media (min-width: 992px) {
  .kol-info__img-outer {
    max-width: 400px;
    margin: 0 auto;
  }
}
.kol-info__img-outer img {
  width: 100%;
}
.kol-info__field {
  margin-bottom: 1.25em;
}
.kol-info__rank, .kol-info__name, .kol-info__cpe {
  text-align: center;
}
.kol-info__name {
  font-size: 1.3em;
  font-weight: normal;
}
@media (min-width: 992px) {
  .kol-info__name {
    margin-bottom: 10px;
  }
}
.kol-info__name-content {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 1em;
  line-height: 1;
}
@media (min-width: 992px) {
  .kol-info__rank {
    margin-right: 1em;
    margin-bottom: 0;
  }
}
.kol-info__rank, .kol-info__name {
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  .kol-info__rank, .kol-info__name {
    justify-content: flex-start;
  }
}
.kol-info__introduction {
  margin: 1em 0;
  line-height: 1.75em;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 5.25em;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .kol-info__introduction {
    margin-bottom: 1.5em;
  }
}
@media (min-width: 992px) {
  .kol-info__introduction {
    max-width: 830px;
  }
}
.kol-info__info-field {
  margin-bottom: 1.5em;
}
@media (min-width: 992px) {
  .kol-info__info-field {
    margin-bottom: 1em;
  }
  .kol-info__info-field .btn--block {
    max-width: 200px;
  }
  .kol-info__info-field .ss-main,
.kol-info__info-field .selectric {
    max-width: 420px;
  }
}
.kol-info__info-title {
  font-weight: normal;
}
.kol-info__info-content {
  font-weight: bold;
  color: #211c15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.kol-info__info-content .btn-icon-link {
  margin-right: 0.5em;
}
.kol-info__quote {
  background: #eeeeee;
  border-radius: 5px;
  margin-bottom: 0.5em;
}
@media (min-width: 768px) {
  .kol-info__quote {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 2em;
  }
}
.kol-info__quote-header {
  padding: 1em 1.5em;
  border-bottom: 1px solid #d5d5d5;
}
@media (min-width: 768px) {
  .kol-info__quote-header {
    border: none;
    padding-right: 0.25em;
  }
}
.kol-info__quote-content {
  padding: 1em 1.5em 2.5em 1.5em;
  line-height: 1.25em;
}
@media (min-width: 768px) {
  .kol-info__quote-content {
    padding: 1.5em;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    line-height: 1.5em;
  }
}
.kol-info-title {
  padding-top: 1.5rem;
  border: none;
}
@media (min-width: 768px) {
  .kol-info-title {
    margin: 0 1.5rem 1em 1.5rem;
    border-bottom: 1px solid #d5d5d5;
  }
}
.kol-info__header {
  margin: 1.5rem 1.5rem 0;
}
@media (max-width: 767px) {
  .kol-info__header {
    border-bottom: none;
  }
}
@media (min-width: 768px) {
  .kol-info__header {
    margin: 1.5rem 1.5rem 1.875rem;
  }
}
.kol-info__cards .card__body {
  padding-top: 1em;
}
@media (min-width: 992px) {
  .kol-info__control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.kol-info__control > * + * {
  margin-left: 50px;
}
@media (min-width: 768px) {
  .kol-info-tab:not(.tab--hide-items) {
    padding-top: 4em;
  }
}
.kol-info__main-info {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
}
@media (min-width: 768px) {
  .kol-info__main-info {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .kol-info__main-info {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
}
.kol-info__main-info > * {
  display: flex;
  align-items: center;
}
.kol-info__main-info > *:nth-child(2n+1) {
  flex: 1 1 calc(100% - 90px);
  max-width: calc(100% - 90px);
}
@media (min-width: 992px) {
  .kol-info__main-info > *:nth-child(2n+1) {
    flex: 0 1 auto;
    max-width: none;
  }
}
.kol-info__main-info > *:nth-child(2n) {
  flex: 1 1 90px;
  max-width: 90px;
}
@media (min-width: 992px) {
  .kol-info__main-info > *:nth-child(2n) {
    flex: 0 1 auto;
    max-width: none;
  }
}
.kol-info__main-info .kol-info__control {
  margin-bottom: 1em;
}
@media (min-width: 992px) {
  .kol-info__main-info .kol-info__control {
    margin-bottom: 0;
  }
}
.kol-info__main-info .kol-info__control--mb-less {
  margin-bottom: 0;
}
.kol-info__main-info .kol-info__control--mb-less:nth-child(2n+1) {
  flex: 1 1 100px;
  max-width: 100px;
}
@media (min-width: 992px) {
  .kol-info__main-info .kol-info__control--mb-less:nth-child(2n+1) {
    flex: 1 1 120px;
    max-width: 120px;
  }
}
@media (max-width: 991px) {
  .kol-info__main-info .kol-info__control--mb-less:nth-child(2n) {
    flex: 1 1 calc(100% - 100px);
    max-width: calc(100% - 100px);
  }
}
@media (min-width: 992px) {
  .kol-info__main-info .kol-info__control--full {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .kol-info__main-info .kol-info__control--order-last {
    order: 99;
  }
}
@media (min-width: 992px) {
  .kol-info__main-info .kol-info__control--grow {
    flex: 1 1 auto;
  }
}
.kol-info__main-info .kol-info__control:nth-child(2n) {
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .kol-info__main-info .kol-info__control:nth-child(2n) {
    justify-content: flex-start;
  }
}
.kol-info__main-info .kol-info__control > * {
  text-align: left;
}
.kol-info__main-info .hide + .kol-info__control:nth-child(2n) {
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .kol-info__main-info .hide + .kol-info__control:nth-child(2n) {
    justify-content: center;
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .kol-info__main-info--rank-less .kol-info__control--order-last {
    order: 2;
    flex: 0 1 auto;
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .kol-info__main-info--rank-less .kol-info__control--full {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .kol-info__main-info--rank-less .hide + .kol-info__control:nth-child(2n) {
    flex: 1 0 auto;
    justify-content: flex-start;
  }
}

.status {
  padding: 0 1em;
  color: #211c15;
  border: 1px solid #211c15;
}

@media (min-width: 992px) {
  .photo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 0 220px;
    flex: 0 0 220px;
    max-width: 220px;
  }
}
@media (min-width: 1280px) {
  .photo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 0 430px;
    flex: 0 0 430px;
    max-width: 430px;
  }
}
@media (min-width: 992px) {
  .photo-rest {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(100% - 220px);
    max-width: calc(100% - 220px);
  }
}
@media (min-width: 1280px) {
  .photo-rest {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(100% - 430px);
    max-width: calc(100% - 430px);
    padding-left: 2.5em;
  }
}

/*加入最愛資料夾Lightbox*/
.lightbox-favorite .lightbox__body {
  max-height: calc(100vh - 53px - 2.5em);
  margin-bottom: 0;
  padding-top: 0;
}
.lightbox-favorite .lightbox__desc {
  display: flex;
  flex-direction: column;
  overflow-y: hidden;
  padding: 0;
}
@media (min-width: 768px) {
  .lightbox-favorite .lightbox__desc {
    flex-direction: row;
    max-width: none;
  }
}
.lightbox-favorite__kol-info {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .lightbox-favorite__kol-info {
    flex: 1 1 180px;
    max-width: 180px;
    margin: 60px 0 0;
  }
}
.lightbox-favorite__content {
  order: 2;
}
@media (min-width: 768px) {
  .lightbox-favorite__content {
    flex: 1 1 auto;
    max-width: calc(100% - 180px);
    padding-left: 1em;
  }
}
.lightbox-favorite__content .searchbar {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .lightbox-favorite__content .searchbar .form-control {
    min-width: 0;
  }
}
.lightbox-favorite__kol-name {
  margin-top: 10px;
  font-size: 14px;
  max-width: 180px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 1.4em;
  line-height: 1.4;
}
.lightbox-favorite__title {
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  margin: 20px 0;
  order: 1;
}
.lightbox-favorite .folder {
  border: 1px solid #d5d5d5;
  padding: 5px 0;
  max-height: 200px;
  overflow: auto;
  margin-bottom: 14px;
}
.lightbox-favorite .folder__delete, .lightbox-favorite .folder__add {
  min-width: 40px;
  height: 40px;
}
@media (min-width: 992px) {
  .lightbox-favorite .folder__delete, .lightbox-favorite .folder__add {
    min-width: 55px;
    display: none;
  }
}
@media (max-width: 991px) {
  .lightbox-favorite .folder__delete {
    display: none;
  }
}
.lightbox-favorite .folder__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  transition: all 0.2s;
  position: relative;
  min-height: 40px;
}
.lightbox-favorite .folder__item:hover, .lightbox-favorite .folder__item:focus, .lightbox-favorite .folder__item:active {
  background: #eeeeee;
}
@media (max-width: 991px) {
  .lightbox-favorite .folder__item--exist .folder__add {
    display: none;
  }
}
@media (max-width: 991px) {
  .lightbox-favorite .folder__item--exist .folder__delete {
    display: block;
  }
}
.lightbox-favorite .folder__item--exist:hover .folder__delete {
  display: block;
}
@media (min-width: 992px) {
  .lightbox-favorite .folder__item:hover:not(.folder__item--exist) .folder__add {
    display: block;
  }
}
.lightbox-favorite .folder__inner {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 1.4em;
  line-height: 1.4;
}
.lightbox-favorite .folder__link {
  text-decoration: none;
  white-space: nowrap;
  color: #ff6e62;
  display: flex;
  align-items: center;
  min-height: 40px;
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  justify-content: flex-end;
  padding: 0 10px;
}
@media (max-width: 991px) {
  .lightbox-favorite .folder__link {
    min-width: 100%;
    justify-content: flex-end;
  }
}
@media (min-width: 992px) {
  .lightbox-favorite .folder__link {
    overflow: hidden;
  }
}
@media (max-width: 991px) {
  .lightbox-favorite .folder__link-text {
    display: none;
  }
}
.lightbox-favorite .folder__link [class^=icon-], .lightbox-favorite .folder__link [class*=icon-] {
  font-size: 20px;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .lightbox-favorite .folder__link [class^=icon-], .lightbox-favorite .folder__link [class*=icon-] {
    margin-right: 0;
  }
}
.lightbox-favorite .btn {
  width: 140px;
  margin: 0 auto;
  min-height: 40px;
}
.lightbox-favorite .btn + .btn {
  margin-top: 10px;
}
.lightbox-favorite .btn--block {
  width: 100%;
  margin: 10px 0 0;
}
.lightbox-favorite__tab {
  position: relative;
  margin-bottom: 0;
}
.lightbox-favorite__tab-item {
  width: 100%;
  display: none;
  background-color: #fff;
  z-index: 0;
}
.lightbox-favorite__tab-item--active {
  display: block;
  z-index: 1;
}

.lightbox-share-case .lightbox__head {
  padding-left: 0;
  padding-right: 0;
  text-align: left;
  border-bottom: none;
}
.lightbox-share-case .lightbox__body {
  max-height: calc(100vh - 191px - 6.75em);
}
.lightbox-share-case .lightbox__title {
  text-align: left;
  margin-bottom: 5px;
}
.lightbox-share-case .lightbox__title-desc {
  color: #211c15;
}
.lightbox-share-case .lightbox__content {
  padding-left: 28px;
  padding-right: 0;
}
.lightbox-share-case .lightbox__head {
  margin-left: 5px;
  margin-right: 32px;
}
.lightbox-share-case .lightbox__desc {
  padding: 0;
  margin: 0;
  max-width: none;
  overflow: visible;
}
.lightbox-share-case .input-fieldset:not(:last-child) {
  margin-bottom: 2rem;
}
.lightbox-share-case .input-fieldset .input-field {
  margin-bottom: 0;
}
.lightbox-share-case .input-fieldset .input-field:last-child {
  margin-top: 2rem;
}
.lightbox-share-case .role-select:not(.hide) {
  margin-bottom: 20px;
}
.lightbox-share-case .form-control {
  height: 42px;
}
.lightbox-share-case .input-field {
  margin-left: 5px;
  margin-right: 32px;
}
.lightbox-share-case .radio-list {
  padding-top: 0;
  margin-bottom: 0;
}
.lightbox-share-case .radio-list__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .lightbox-share-case .radio-list__label {
    flex: 1 0 230px;
    max-width: 230px;
  }
}
.lightbox-share-case .tag {
  justify-content: center;
  line-height: 26px;
  height: 42px;
  width: 42px;
  padding: 0;
  display: flex;
  align-items: center;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .lightbox-share-case .tag {
    height: 26px;
    border-radius: 0;
    margin-bottom: 3px;
  }
}
.lightbox-share-case .ss-main,
.lightbox-share-case .ss-main .ss-single-selected,
.lightbox-share-case select.form-control {
  height: 26px;
  font-size: 13px;
  font-weight: bold;
  background: transparent;
}
.lightbox-share-case .ss-main .ss-single-selected .ss-arrow > span.arrow-down, .lightbox-share-case .ss-main .ss-single-selected .ss-arrow > span.arrow-up {
  margin: 0;
  border: none;
  transform-origin: center;
}
.lightbox-share-case .ss-main .ss-single-selected .ss-arrow > span.arrow-down {
  transform: rotate(0deg);
}
.lightbox-share-case .ss-main .ss-single-selected .ss-arrow > span.arrow-up {
  transform: rotate(180deg);
}
.lightbox-share-case .ss-main .ss-single-selected .ss-arrow > span:after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}
@media (min-width: 768px) {
  .lightbox-share-case .case-fieldset {
    max-height: 220px;
    overflow-y: auto;
  }
}
.lightbox-share-case .share-case__list {
  margin-bottom: 0;
}
.lightbox-share-case .share-case__status {
  grid-area: status;
}
.lightbox-share-case .share-case__content-main {
  grid-area: content-main;
}
.lightbox-share-case .share-case__content-sub {
  grid-area: content-sub;
}
.lightbox-share-case .share-case__role {
  grid-area: role;
}
.lightbox-share-case .share-case__item {
  min-height: 52px;
  display: flex;
  align-items: center;
}
.lightbox-share-case .share-case__item.share-case__item--active {
  background: #f0f0f0;
}
@media (min-width: 768px) {
  .lightbox-share-case .share-case__item:hover {
    background: #f0f0f0;
  }
}
.lightbox-share-case .share-case__item:not(:last-child) {
  margin-bottom: 10px;
}
.lightbox-share-case .share-case__inner {
  display: grid;
  grid-gap: 0 8px;
  padding: 5px 32px 5px 5px;
  transition: background-color 0.25s;
  border-radius: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .lightbox-share-case .share-case__inner {
    grid-template: "content-main role" "content-sub role" "status role"/auto 65px;
  }
  .lightbox-share-case .share-case__inner__status {
    grid-area: status;
  }
  .lightbox-share-case .share-case__inner__content-main {
    grid-area: content-main;
  }
  .lightbox-share-case .share-case__inner__content-sub {
    grid-area: content-sub;
  }
  .lightbox-share-case .share-case__inner__role {
    grid-area: role;
  }
}
@media (min-width: 768px) {
  .lightbox-share-case .share-case__inner {
    border-radius: 4px 0 0 4px;
    grid-template: "content-main status role" "content-sub content-sub role"/auto 1fr 65px;
  }
}
.lightbox-share-case .share-case__inner > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lightbox-share-case .share-case__content-main {
  font-weight: bold;
  color: #211c15;
  font-size: 14px;
  display: block !important;
}
.lightbox-share-case .share-case__content-sub {
  font-weight: bold;
  font-size: 13px;
  color: #888;
  display: block !important;
}
.lightbox-share-case .share-case__content-sub span:first-child {
  font-weight: bold;
}
.lightbox-share-case .share-case__role {
  color: #555555;
  font-weight: bold;
  font-size: 13px;
}
.lightbox-share-case .share-case__status {
  color: #ff6e62;
  font-size: 13px;
  font-weight: bold;
  white-space: nowrap;
  justify-content: flex-start !important;
}

.ss-content.ss-content--small .ss-list .ss-option {
  font-size: 13px;
}

.list-case-kol__header {
  display: none;
}
@media (min-width: 992px) {
  .list-case-kol__header {
    display: block;
    background: #eeeeee;
    color: #211c15;
    font-weight: bold;
    padding: 0.75em;
  }
}
.list-case-kol__list {
  margin-bottom: 3rem;
}
.list-case-kol__item {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ccc;
  margin-bottom: 36px;
  position: relative;
}
@media (min-width: 1280px) {
  .list-case-kol__item {
    border-left: none;
    border-right: none;
    margin-bottom: 0;
  }
  .list-case-kol__item:not(:last-child) {
    border-bottom: none;
  }
}
.list-case-kol__item--new::before {
  content: "NEW";
  position: absolute;
  color: #fff;
  position: absolute;
  top: 18px;
  left: 5px;
  margin: -5px;
  line-height: 14px;
  padding: 0.25em 0.5em;
  font-size: 12px;
  z-index: 10;
  transform: scale(0.85);
  background: #ff6e62;
  border-radius: 4px;
}
.list-case-kol__item.disabled .disable-block {
  display: flex;
}
@media (min-width: 768px) {
  .list-case-kol__item.disabled .disable-block__inner {
    display: flex;
  }
}
@media (min-width: 768px) {
  .list-case-kol__item.disabled .disable-block__control {
    margin-top: 0;
    margin-left: 1rem;
  }
}
.list-case-kol__item.disabled::before {
  z-index: 1;
}
.list-case-kol__base {
  font-size: 0.875em;
  flex: 1 1 100%;
  max-width: 100%;
  display: flex;
  padding: 1em;
}
@media (min-width: 768px) {
  .list-case-kol__base {
    align-items: center;
  }
}
@media (min-width: 1280px) {
  .list-case-kol__base {
    flex: 1 1 70%;
    max-width: 70%;
  }
}
.list-case-kol__base-img {
  flex: 1 1 70px;
  max-width: 70px;
  width: 70px;
  height: 70px;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
}
.list-case-kol__base-img::after {
  content: "";
  padding-top: 100%;
  display: block;
}
.list-case-kol--case .list-case-kol__base-img {
  border-radius: 0;
  align-self: flex-start;
}
.list-case-kol__base-img img {
  position: absolute;
  top: -99%;
  bottom: -99%;
  left: -99%;
  right: -99%;
  margin: auto;
}
.list-case-kol__base-other {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: calc(100% - 70px);
  max-width: calc(100% - 70px);
  padding-left: 18px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .list-case-kol__base-other {
    max-width: 100%;
    display: grid;
    grid-template: "name name info" 24px "cpe indicator info" 30px/106px calc(50% - 150px) 1fr;
  }
}
@media (min-width: 768px) and (-ms-high-contrast: none), (min-width: 768px) and (-ms-high-contrast: active) {
  .list-case-kol__base-other {
    grid-template: "name name info" 1fr "cpe indicator info" 1fr/90px 90px 1fr;
  }
}
@media (min-width: 1280px) {
  .list-case-kol__base-other {
    display: grid;
    grid-template: "name name info" 24px "cpe indicator info" 1fr/auto auto 1fr;
  }
}
@media (min-width: 768px) {
  .list-case-kol--case .list-case-kol__base-other {
    margin-left: -70px;
    padding-left: 0;
    grid-template: "brand info" 24px "name info" 24px "payment info" auto/1fr 1fr;
  }
}
@media (min-width: 768px) and (-ms-high-contrast: none), (min-width: 768px) and (-ms-high-contrast: active) {
  .list-case-kol--case .list-case-kol__base-other {
    grid-template: "name name info" 1fr "cpe indicator info" 1fr/90px 90px 1fr;
  }
}
@media (min-width: 992px) {
  .list-case-kol--case .list-case-kol__base-other {
    grid-template: "brand info" 26px "name info" 24px "payment info" auto/1fr 1fr;
  }
}
@media (min-width: 992px) and (-ms-high-contrast: none), (min-width: 992px) and (-ms-high-contrast: active) {
  .list-case-kol--case .list-case-kol__base-other {
    grid-template: "brand info" 1fr "name info" 1fr "payment info" 1fr/1fr 1fr;
  }
}
.list-case-kol--case .list-case-kol__base {
  padding-left: 18px;
}
.list-case-kol__name {
  flex: 1 1 100%;
  max-width: 100%;
  margin-bottom: 0.5em;
  display: flex;
}
@media (min-width: 768px) {
  .list-case-kol__name {
    max-width: 200px;
    grid-area: name;
    margin-bottom: 0;
    line-height: 24px;
    max-height: 24px;
  }
}
@media (min-width: 992px) {
  .list-case-kol__name {
    font-size: 16px;
    max-width: 100%;
  }
}
@media (min-width: 1280px) {
  .list-case-kol__name {
    width: 212px;
    max-width: 212px;
  }
}
.list-case-kol__name-content {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 1.4em;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .list-case-kol__name-content {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 1em;
    line-height: 1;
  }
}
.list-case-kol--case .list-case-kol__name {
  font-size: 16px;
  line-height: 20px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 1em;
  line-height: 1;
}
@media (min-width: 768px) {
  .list-case-kol--case .list-case-kol__name {
    max-width: 325px;
    padding-left: 88px;
  }
}
@media (min-width: 992px) {
  .list-case-kol--case .list-case-kol__name {
    max-width: 100%;
    width: auto;
  }
}
@media (min-width: 992px) and (-ms-high-contrast: none), (min-width: 992px) and (-ms-high-contrast: active) {
  .list-case-kol--case .list-case-kol__name {
    max-width: 288px;
    width: 288px;
  }
}
.list-case-kol__name .certification-mark {
  align-items: flex-start;
}
.list-case-kol__name .certification-mark::after {
  line-height: 1.2;
}
.list-case-kol__cpe {
  display: flex;
  align-items: center;
  margin-right: 16px;
}
.list-case-kol__cpe .tag {
  padding: 0.1em 0.75em;
}
@media (min-width: 768px) {
  .list-case-kol__cpe {
    grid-area: cpe;
    height: 28px;
  }
}
.list-case-kol__indicator {
  display: flex;
  align-items: center;
  flex: 1 1 100%;
  max-width: 100%;
  margin-top: 0.25em;
}
@media (min-width: 375px) {
  .list-case-kol__indicator {
    flex: 1 1 auto;
    margin-top: 0;
    max-width: none;
    margin-left: 26px;
    height: 28px;
  }
}
@media (min-width: 768px) {
  .list-case-kol__indicator {
    grid-area: indicator;
    margin-left: 0;
  }
}
.list-case-kol__info {
  margin-top: 1em;
  flex: 1 1 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .list-case-kol__info {
    grid-area: info;
    margin-top: 0;
    padding-left: 36px;
    position: relative;
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 1280px) {
  .list-case-kol__info {
    margin-left: 40px;
    padding-left: 0;
  }
}
.list-case-kol--case .list-case-kol__info {
  margin-top: 1.5em;
}
@media (min-width: 768px) {
  .list-case-kol--case .list-case-kol__info {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .list-case-kol--case .list-case-kol__info {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .list-case-kol__info::before {
    content: "";
    position: absolute;
    top: calc(50% - 25px);
    left: -1px;
    display: block;
    height: 50px;
    border-left: 1px solid #d5d5d5;
  }
}
@media (min-width: 1280px) {
  .list-case-kol__info::before {
    left: -21px;
  }
}
@media (min-width: 768px) {
  .list-case-kol--case .list-case-kol__info::before {
    height: 70px;
    top: calc(50% - 35px);
  }
}
.list-case-kol__operation {
  flex: 1 1 100%;
  max-width: 100%;
  padding: 12px;
  background: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1280px) {
  .list-case-kol__operation {
    flex: 1 1 30%;
    max-width: 30%;
    background: none;
    justify-content: flex-end;
  }
}
.list-case-kol__operation .btn {
  flex: 1 1 120px;
  max-width: 120px;
  height: 36px;
}
.list-case-kol__operation .btn + .btn {
  margin-left: 15px;
}
.list-case-kol__brand {
  font-weight: bold;
  color: #211c15;
}
@media (min-width: 768px) {
  .list-case-kol__brand {
    grid-area: brand;
    padding-left: 88px;
  }
}
.list-case-kol__payment {
  font-weight: bold;
}
@media (min-width: 768px) {
  .list-case-kol__payment {
    grid-area: payment;
    padding-left: 88px;
  }
}
.list-case-kol__payment-text {
  color: #ff6e62;
}
.list-case-kol__deadline {
  display: inline-block;
  font-weight: bold;
  color: #211c15;
  line-height: 20px;
  height: 24px;
}
@media (min-width: 992px) {
  .list-case-kol__deadline {
    line-height: 16px;
  }
}
.list-case-kol__status {
  height: 24px;
  line-height: 24px;
}
@media (max-width: 767px) {
  .list-case-kol__status {
    margin-bottom: 0.25em;
  }
}
@media (min-width: 992px) {
  .list-case-kol__status {
    height: 26px;
    line-height: 21px;
  }
}
.list-case-kol__status-inner {
  color: #211c15;
  font-weight: bold;
}
@media (max-width: 767px) {
  .list-case-kol--case .list-case-kol__status-inner {
    padding: 0.25em 1em;
    border: 1px solid #211c15;
  }
}
@media (min-width: 992px) {
  .list-case-kol--case .list-case-kol__last-action {
    font-size: 14px;
  }
}

.list-comment__item, .list-comment__tbody {
  display: flex;
  flex-wrap: wrap;
}

.list-comment__content, .list-comment__rank, .list-comment__time, .list-comment__brand-name, .list-comment__case-name {
  display: block;
}
@media (min-width: 992px) {
  .list-comment__content, .list-comment__rank, .list-comment__time, .list-comment__brand-name, .list-comment__case-name {
    display: table-cell;
    width: initial;
    border: none !important;
    padding: 0.75em;
    text-align: left !important;
    vertical-align: middle;
  }
}

.list-comment__time, .list-comment__brand-name {
  font-size: 0.875em;
  color: #888;
  line-height: 1.25em;
}

.list-comment {
  margin-bottom: 2.5em;
}
@media (min-width: 768px) {
  .list-comment {
    margin-bottom: 3.5em;
  }
}
@media (min-width: 992px) {
  .list-comment {
    margin-bottom: 6.5em;
  }
}
@media (min-width: 768px) {
  .list-comment__tbody {
    margin-left: -0.75em;
    margin-right: -0.75em;
  }
}
@media (min-width: 992px) {
  .list-comment__tbody {
    display: table-row-group;
  }
}
.list-comment__thead {
  display: none;
}
@media (min-width: 992px) {
  .list-comment__thead {
    display: table-header-group;
    background: #eeeeee;
    color: #211c15;
    text-align: left;
    padding: 0 1.5em;
  }
}
.list-comment__item {
  margin-bottom: 1.5em;
  flex-direction: column;
  position: relative;
  flex: 1 1 100%;
}
@media (min-width: 768px) {
  .list-comment__item {
    flex-basis: 50%;
    max-width: 50%;
    padding: 0 0.75em;
    margin-bottom: 1.5em;
  }
}
@media (min-width: 992px) {
  .list-comment__item {
    display: table-row;
    border-bottom: 1px solid #e5e5e5;
  }
}
.list-comment__control {
  display: flex;
}
.list-comment__img-outer {
  width: 70px;
  min-width: 70px;
  position: relative;
}
.list-comment__img-outer::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.list-comment__img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
}
@media (min-width: 992px) {
  .list-comment__title {
    padding: 0.75em;
    font-weight: bold;
    text-align: left;
  }
}
.list-comment__text {
  padding-left: 10px;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 992px) {
  .list-comment__text {
    align-items: center;
  }
}
.list-comment__case-name {
  order: 2;
  color: #211C15;
  padding: 0 1em;
  border-left: 1px solid #d5d5d5;
  border-right: 1px solid #d5d5d5;
  border-top: 1px solid #ccB;
  width: 100%;
  padding-bottom: 10px;
  padding-top: 1em;
}
@media (min-width: 992px) {
  .list-comment__case-name {
    width: 25%;
    padding: 1em 0.75em;
  }
}
.list-comment__case-name .list-comment__text > div {
  min-height: 48px;
}
@media (min-width: 992px) {
  .list-comment__case-name .list-comment__text > div {
    min-height: auto;
  }
}
.list-comment__brand-name {
  text-align: right;
  order: 1;
  position: absolute;
  left: calc(.75rem + 70px + 1rem);
  top: 15px;
  max-width: calc(100% - 180px - 2rem);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (min-width: 768px) {
  .list-comment__brand-name {
    left: calc(1.5rem + 70px + 1rem);
  }
}
@media (min-width: 992px) {
  .list-comment__brand-name {
    position: static;
    width: 15%;
    padding: 1em 0.75em;
  }
}
.list-comment__time {
  width: calc(100% - 120px);
  order: 3;
  padding-right: 1em;
  padding-bottom: 3px;
  padding-top: 3px;
  border-right: 1px solid #d5d5d5;
  position: absolute;
  top: calc(70px + 1rem + 10px);
  right: 0;
  text-align: right;
}
@media (min-width: 768px) {
  .list-comment__time {
    right: 0.75rem;
  }
}
@media (min-width: 992px) {
  .list-comment__time {
    position: static;
    width: 16%;
    padding: 1em 0.75em;
  }
}
.list-comment__rank {
  order: 3;
  width: 120px;
  padding: 0 10px 0 1rem;
  border-left: 1px solid #d5d5d5;
  border-top: none;
  font-size: 0.875em;
  padding-bottom: 10px;
}
@media (min-width: 375px) {
  .list-comment__rank {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .list-comment__rank {
    background: none;
    width: 12%;
    padding: 1em 0.75em;
  }
}
.list-comment__content {
  order: 4;
  line-height: 1.5em;
  padding: 10px 1em calc(1rem + 10px);
  border-left: 1px solid #d5d5d5;
  border-right: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
  width: 100%;
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-all;
}
@media (min-width: 992px) {
  .list-comment__content {
    width: 31%;
    font-size: 16px;
    padding: 1em 0.75em;
  }
}

@media (max-width: 991px) {
  .list-edit {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
}
.list-edit__list {
  overflow: hidden;
}
@media (min-width: 992px) {
  .list-edit__list {
    max-height: 500px;
    overflow-y: auto;
  }
}
@media (min-width: 992px) {
  .filter .list-edit__list {
    margin: 0 -10px 30px;
  }
  .filter .list-edit__list:empty {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .filter .list-edit__list {
    margin-bottom: 0;
    overflow-y: auto;
    height: calc(100vh - 53px - 54px - 50px);
  }
}
.list-edit__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 991px) {
  .list-edit__item {
    border-bottom: 1px solid #d5d5d5;
    background: #fff;
  }
  .list-edit__item:last-child {
    border-bottom: none;
  }
}
@media (min-width: 992px) {
  .list-edit__item:hover, .list-edit__item:active, .list-edit__item:focus {
    background: #eeeeee;
  }
}
.list-edit__text {
  margin-right: 5px;
  line-height: 38px;
  max-height: 38px;
}
.list-edit__count {
  white-space: nowrap;
}
.list-edit__link {
  flex: 1 1 100%;
  max-width: 100%;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  text-decoration: none;
  touch-action: auto;
}
@media (max-width: 991px) {
  .list-edit__link {
    transition: margin-right 0.4s;
    padding-right: 50px;
    padding-left: 30px;
    min-height: 50px;
    position: relative;
    z-index: 1;
    background: #fff;
    top: 0 !important;
  }
  .list-edit__link::after {
    content: "";
    position: absolute;
    top: 0;
    right: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    font-family: "icomoon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
@media (max-width: 991px) and (-ms-high-contrast: none), (max-width: 991px) and (-ms-high-contrast: active) {
  .list-edit__link::after {
    height: 50px;
  }
}
@media (min-width: 992px) {
  .list-edit__item:hover .list-edit__link {
    margin-right: 60px;
  }
}
@media (max-width: 991px) {
  .list-edit__item--active .list-edit__link {
    margin-right: 140px;
  }
}
.list-edit__function {
  position: absolute;
  top: calc(50% - 18px);
  right: -60px;
  display: flex;
  margin-right: -10px;
}
@media (max-width: 991px) {
  .list-edit__function {
    right: 10px;
    top: calc(50% - 25px);
    z-index: 0;
  }
}
.list-edit__function .btn {
  width: 30px;
  height: 36px;
  color: #888;
  background: transparent;
  border-color: transparent;
}
.list-edit__function .btn:not(:disabled):not(.btn--disabled):focus, .list-edit__function .btn:not(:disabled):not(.btn--disabled):active {
  color: #ff6e62;
  background: transparent;
  border-color: transparent;
}
@media (min-width: 992px) {
  .list-edit__function .btn:not(:disabled):not(.btn--disabled):hover {
    color: #ff6e62;
    background: transparent;
    border-color: transparent;
  }
}
.list-edit__function .btn [class^=icon-], .list-edit__function .btn [class*=icon-] {
  margin-right: 0.25em;
}
@media (min-width: 992px) {
  .list-edit__function .btn [class^=icon-], .list-edit__function .btn [class*=icon-] {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .list-edit__function .btn {
    height: 50px;
    width: 70px;
    border-radius: 0;
  }
  .list-edit__function .btn.btn-edit {
    color: #fff;
    background: #ff6e62;
    border-color: #ff6e62;
  }
  .list-edit__function .btn.btn-edit:not(:disabled):not(.btn--disabled):focus, .list-edit__function .btn.btn-edit:not(:disabled):not(.btn--disabled):active {
    color: #fff;
    background: #f96166;
    border-color: #f96166;
  }
}
@media (max-width: 991px) and (min-width: 992px) {
  .list-edit__function .btn.btn-edit:not(:disabled):not(.btn--disabled):hover {
    color: #fff;
    background: #f96166;
    border-color: #f96166;
  }
}
@media (max-width: 991px) {
  .list-edit__function .btn.btn-delete {
    color: #555555;
    background: #eeeeee;
    border-color: #eeeeee;
  }
  .list-edit__function .btn.btn-delete:not(:disabled):not(.btn--disabled):focus, .list-edit__function .btn.btn-delete:not(:disabled):not(.btn--disabled):active {
    color: #fff;
    background: #555555;
    border-color: #555555;
  }
}
@media (max-width: 991px) and (min-width: 992px) {
  .list-edit__function .btn.btn-delete:not(:disabled):not(.btn--disabled):hover {
    color: #fff;
    background: #555555;
    border-color: #555555;
  }
}
.list-edit__function .btn .btn-text {
  font-size: 14px;
}
@media (min-width: 992px) {
  .list-edit__function .btn .btn-text {
    display: none;
  }
}
@media (min-width: 992px) {
  .list-edit__item:hover .list-edit__function {
    right: 10px;
  }
}
.list-edit .btn-add {
  display: inline-flex;
  padding: 0;
  color: #ff6e62;
  background: transparent;
  border-color: transparent;
}
.list-edit .btn-add:not(:disabled):not(.btn--disabled):focus, .list-edit .btn-add:not(:disabled):not(.btn--disabled):active {
  color: #f96166;
  background: transparent;
  border-color: transparent;
}
@media (min-width: 992px) {
  .list-edit .btn-add:not(:disabled):not(.btn--disabled):hover {
    color: #f96166;
    background: transparent;
    border-color: transparent;
  }
}
@media (max-width: 991px) {
  .list-edit .btn-add {
    padding-right: 30px;
    padding-left: 30px;
    min-height: 50px;
    border-top: 2px solid #ff6e62;
    border-radius: 0;
    justify-content: flex-start;
    background: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
    transition: 0.4s all;
    z-index: 1;
  }
  .filter--open .list-edit .btn-add {
    transform: translateY(0);
  }
}
.list-edit .btn-add [class^=icon-], .list-edit .btn-add [class*=icon-] {
  font-size: 14px;
}

/*kol管理列表*/
.type2-only {
  display: none;
}
.kollist__content--blog.kollist__content[data-type="2"] .type2-only {
  display: block;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}
.kollist__content[data-type="4"] .type2-only {
  display: block;
}

@media (min-width: 992px) {
  .kollist {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-right: 0;
    margin-left: 0;
  }
  .kollist__content[data-type="1"] .kollist {
    padding: 0;
  }
}
@media (min-width: 1440px) {
  .kollist--wrap > .container {
    max-width: calc(100vw - 50px - 30px);
  }
}
.kollist__item-outer {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 1;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .kollist__item-outer:nth-child(2n+1) {
    padding-right: 6px;
    padding-left: 0;
  }
  .kollist__item-outer:nth-child(2n) {
    padding-right: 0;
    padding-left: 6px;
  }
}
@media (min-width: 768px) {
  .kollist__item-outer:nth-child(3n+1) {
    padding-right: 8px;
    padding-left: 0;
  }
  .kollist__item-outer:nth-child(3n+2) {
    padding-right: 4px;
    padding-left: 4px;
  }
  .kollist__item-outer:nth-child(3n+3) {
    padding-right: 0;
    padding-left: 8px;
  }
}
@media (min-width: 992px) {
  .kollist__item-outer {
    padding: 0 6px !important;
  }
  .kollist--wrap.kollist--active .kollist__item-outer {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
  }
}
@media (min-width: 1440px) {
  .kollist__item-outer {
    padding: 0 10px !important;
    margin-bottom: 20px;
  }
}
@media (min-width: 1600px) {
  .kollist__item-outer {
    -ms-flex-preferred-size: 14.285%;
    flex-basis: 14.285%;
    max-width: 14.285%;
  }
}
.kollist__item-outer--remove {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
}
.kollist__item-outer--remove > * {
  display: none;
}
.kollist__item-outer.disabled .disable-block {
  display: flex;
}
@media (min-width: 768px) {
  .kollist__control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.kollist__img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  margin: auto;
  align-self: flex-start;
}
.kollist__img-outer--empty {
  background: #e5e5e5;
  font-size: 140px;
}
.kollist__img-outer--empty::before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  position: absolute;
  left: calc(50% - 70px);
  color: #fff;
}
.kollist__img-outer, .kollist__item-link--title {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
}
.kollist__item {
  border: 1px solid #eeeeee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.kollist__item-link--img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.kollist__item-link--img::after {
  padding-top: 100%;
  content: "";
  display: block;
}
.kollist__name {
  font-weight: normal;
}
.kollist__desc {
  padding: 0.625em 1em 0.75em 1.4em;
}
@media (min-width: 992px) {
  .kollist__desc {
    padding: 0.625em 1em 0.75em 1.625em;
  }
}
.kollist__desc-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /*margin-bottom: .375em;*/
}
.kollist__desc-item-lg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.kollist__desc-text {
  font-size: 0.875em;
  line-height: 1.75em;
  margin-left: 0.5em;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (min-width: 992px) and (max-width: 1365px) {
  .kollist__like-label {
    letter-spacing: 0;
    display: block;
  }
  .kollist__content[data-type="3"] .kollist__like-label {
    display: inline-block;
  }
}
.kollist__like {
  font-size: 0.8125em;
}
.kollist__like_text {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  /*max-width: calc(100% - 30px);*/
  line-height: 20px;
  margin-bottom: 4px;
  margin-top: 4px;
}
@media (min-width: 768px) {
  .kollist__like .kollist__icon.kollist__like--active {
    padding-top: 0.25em;
  }
}
.kollist__instagram .icon-instagram {
  color: #CC2F70;
}
.kollist__youtube .icon-youtube {
  color: #D73E32;
}
.kollist__facebook .icon-facebook {
  color: #4267B2;
}
.kollist__blog .icon-blog {
  color: #D97F00;
}
.kollist__collection {
  text-decoration: none;
}
@media (min-width: 768px) {
  .kollist__collection {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
@media (min-width: 992px) {
  .kollist__collection {
    -webkit-box-pack: initial;
    -ms-flex-pack: initial;
    justify-content: initial;
    text-decoration: none;
  }
  .kollist__collection:hover {
    cursor: pointer;
  }
  .kollist__collection:hover .kollist__icon.icon-like {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  .kollist__collection:hover .kollist__icon.icon-like::before {
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    color: #f96166;
  }
}
@media (min-width: 1440px) {
  .kollist__collection {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
.kollist__collection .icon-liked {
  -webkit-animation: pop 0.5s cubic-bezier(1, 0, 0.13, 1.09);
  animation: pop 0.5s cubic-bezier(1, 0, 0.13, 1.09);
}
.kollist__collection .icon-liked::before {
  color: #f96166;
}
.kollist__collection .icon-like {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.kollist__collection .icon-like::before {
  color: #888;
}
@media (min-width: 992px) {
  .kollist__content {
    margin: 0 !important;
  }
}
.kollist__content--blog {
  overflow: auto;
  margin: 0 -15px;
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist {
  margin: 0 -15px;
  min-width: 960px;
}
@media (min-width: 992px) {
  .kollist__content--blog.kollist__content[data-type="2"] .kollist {
    min-width: 0;
    margin: 0 10px;
  }
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__col-control {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: none;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  line-height: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(1) {
  -ms-flex-preferred-size: 24%;
  flex-basis: 24%;
  max-width: 120px;
  padding-left: 0 !important;
}
@media (min-width: 992px) {
  .kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(1) {
    max-width: 24%;
    padding-left: 0 !important;
  }
}
@media (min-width: 1440px) {
  .kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(1) {
    flex-basis: 20%;
    max-width: 20%;
  }
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(2) {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}
@media (min-width: 992px) {
  .kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(2) {
    -ms-flex: 0 0 18%;
    flex: 0 0 18%;
    max-width: 18%;
  }
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(3), .kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(4), .kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(5) {
  -ms-flex-preferred-size: 18%;
  flex-basis: 18%;
  max-width: 18%;
}
@media (min-width: 992px) {
  .kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(3), .kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(4), .kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(5) {
    -ms-flex: 0 0 14%;
    flex: 0 0 14%;
    max-width: 14%;
  }
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(7) {
  -ms-flex-preferred-size: 6%;
  flex-basis: 6%;
  max-width: 6%;
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__item, .kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border: none;
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__desc, .kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__control {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: hidden;
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__desc-item, .kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__desc-item-lg {
  margin: 0;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__control {
  margin-left: -0.75em;
  margin-right: -0.75em;
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__desc-text {
  margin-left: 0;
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__item-link--img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  display: none;
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__item-outer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 1.5em !important;
  border-bottom: 1px solid #e5e5e5;
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__item-outer:nth-child(2n+2) .kollist__img-outer--empty > .kollist__item-link--img {
  background: #fff;
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__item-outer:nth-child(2n+2) .kollist__img-outer--empty > .kollist__item-link--img::before {
  color: #eeeeee;
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__name {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__img-outer {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__img-outer--empty {
  font-size: 30px;
  background: transparent;
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__img-outer--empty::before {
  display: none;
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__img-outer--empty > .kollist__item-link--img {
  background: #eeeeee;
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .kollist__img-outer--empty > .kollist__item-link--img::before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  position: absolute;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  color: #fff;
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist__header {
  height: 50px;
  background: #eeeeee;
  color: #211c15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5em 1.5em;
  margin: 0 -15px;
  min-width: 960px;
}
@media (min-width: 992px) {
  .kollist__content--blog.kollist__content[data-type="2"] .kollist__header {
    min-width: 0;
    margin: 0 10px;
  }
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .type2-none {
  display: none;
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .type2--flex-nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .type2-order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .type2-order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.kollist__content--blog.kollist__content[data-type="2"] .kollist .type2-order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}
.kollist__content--blog .kollist__like-label {
  display: none;
}
.kollist__content--blog .kollist__header-item:nth-child(1) {
  max-width: 120px;
}
@media (min-width: 992px) {
  .kollist__content--blog .kollist__header-item:nth-child(1) {
    max-width: 24%;
  }
}
@media (min-width: 1440px) {
  .kollist__content--blog .kollist__header-item:nth-child(1) {
    max-width: 20%;
  }
}
.kollist__content--blog .kollist__header-item:nth-child(2) {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
@media (min-width: 992px) {
  .kollist__content--blog .kollist__header-item:nth-child(2) {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 18%;
    flex: 0 0 18%;
    max-width: 18%;
  }
}
.kollist__content--blog .kollist__header-item:nth-child(3), .kollist__content--blog .kollist__header-item:nth-child(4), .kollist__content--blog .kollist__header-item:nth-child(5) {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 18%;
  flex: 0 0 18%;
  max-width: 18%;
}
@media (min-width: 992px) {
  .kollist__content--blog .kollist__header-item:nth-child(3), .kollist__content--blog .kollist__header-item:nth-child(4), .kollist__content--blog .kollist__header-item:nth-child(5) {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 14%;
    flex: 0 0 14%;
    max-width: 14%;
  }
}
.kollist__content--blog .kollist__header-item:nth-child(6) {
  display: none !important;
}
@media (min-width: 1440px) {
  .kollist__content--blog .kollist__header-item:nth-child(6) {
    display: block !important;
    flex: 0 0 14%;
    max-width: 14%;
  }
}
@media (min-width: 1440px) {
  .kollist__content--blog .kollist__header-item:nth-child(7) {
    flex: 0 0 6%;
    max-width: 6%;
  }
}
.kollist__content--blog .kollist__col-control:nth-child(6) {
  display: none !important;
}
@media (min-width: 1440px) {
  .kollist__content--blog .kollist__col-control:nth-child(6) {
    display: block !important;
    flex: 0 0 14%;
    max-width: 14%;
  }
}
@media (min-width: 1440px) {
  .kollist__content--blog .kollist__col-control:nth-child(7) {
    flex: 0 0 6%;
    max-width: 6%;
  }
}
.kollist__post, .kollist__data-length {
  display: none;
}
.kollist__data-length {
  color: #211c15;
  font-size: 14px;
  margin: 0 -15px;
  padding-bottom: 12px;
}
@media (min-width: 992px) {
  .kollist__content[data-type="1"] .kollist__item-outer {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .kollist--wrap.kollist--active .kollist__content[data-type="1"] .kollist__item-outer {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (min-width: 1440px) {
  .kollist__content[data-type="1"] .kollist__item-outer {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .kollist--wrap.kollist--active .kollist__content[data-type="1"] .kollist__item-outer {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
}
@media (min-width: 992px) {
  .kollist__content[data-type="2"] .kollist {
    margin: 0 10px;
  }
  .kollist__content[data-type="2"] .kollist .type2-only {
    display: block;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .kollist__content[data-type="2"] .kollist .type2-none {
    display: none;
  }
  .kollist__content[data-type="2"] .kollist .type2--flex-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-left: calc(-60px - .75em) !important;
    width: calc(100% + 60px + 1.5em);
    margin-right: -1.5em !important;
  }
  .kollist__content[data-type="2"] .kollist .type2-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .kollist__content[data-type="2"] .kollist .type2-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .kollist__content[data-type="2"] .kollist .type2-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .kollist__content[data-type="2"] .kollist .kollist__col-control {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: none;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    line-height: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(1) {
    -ms-flex-preferred-size: 24%;
    flex-basis: 24%;
    max-width: 24%;
    padding-left: calc(60px + .75em) !important;
  }
}
@media (min-width: 992px) and (min-width: 1440px) {
  .kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(1) {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
    padding-left: calc(60px + .75em) !important;
  }
}
@media (min-width: 992px) {
  .kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(2) {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
    min-width: 160px;
  }
}
@media (min-width: 992px) and (min-width: 1440px) {
  .kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(2) {
    display: flex;
    -ms-flex-preferred-size: 18%;
    flex-basis: 18%;
    max-width: 18%;
  }
}
@media (min-width: 992px) {
  .kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(3), .kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(4), .kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(5) {
    -ms-flex-preferred-size: 14%;
    flex-basis: 14%;
    max-width: 14%;
  }
}
@media (min-width: 992px) and (min-width: 1440px) {
  .kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(3), .kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(4), .kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(5), .kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(6) {
    -ms-flex-preferred-size: 14%;
    flex-basis: 14%;
    max-width: 14%;
  }
}
@media (min-width: 992px) {
  .kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(7) {
    -ms-flex-preferred-size: 8%;
    flex-basis: 8%;
    max-width: 8%;
  }
}
@media (min-width: 992px) and (min-width: 1440px) {
  .kollist__content[data-type="2"] .kollist .kollist__col-control:nth-child(7) {
    -ms-flex-preferred-size: 6%;
    flex-basis: 6%;
    max-width: 6%;
  }
}
@media (min-width: 992px) {
  .kollist__content[data-type="2"] .kollist .kollist__name {
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
  .kollist__content[data-type="2"] .kollist .kollist__name > a {
    text-decoration: underline;
  }
}
@media (min-width: 992px) {
  .kollist__content[data-type="2"] .kollist .kollist__like-label {
    display: none;
  }
}
@media (min-width: 992px) {
  .kollist__content[data-type="2"] .kollist .kollist__img-outer {
    position: relative;
    z-index: 1;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .kollist__content[data-type="2"] .kollist .kollist__img-outer--empty {
    font-size: 30px;
    background: transparent;
  }
  .kollist__content[data-type="2"] .kollist .kollist__img-outer--empty::before {
    display: none;
  }
  .kollist__content[data-type="2"] .kollist .kollist__img-outer--empty > .kollist__item-link--img {
    background: #eeeeee;
  }
  .kollist__content[data-type="2"] .kollist .kollist__img-outer--empty > .kollist__item-link--img::before {
    font-family: "icomoon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    position: absolute;
    left: calc(50% - 15px);
    top: calc(50% - 15px);
    color: #fff;
  }
}
@media (min-width: 992px) {
  .kollist__content[data-type="2"] .kollist .kollist__item-link--img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
  }
  .kollist__content[data-type="2"] .kollist .kollist__item-outer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 1.5em !important;
    border-bottom: 1px solid #e5e5e5;
  }
  .kollist__content[data-type="2"] .kollist .kollist__item-outer:nth-child(2n+2) .kollist__img-outer--empty > .kollist__item-link--img {
    background: #fff;
  }
  .kollist__content[data-type="2"] .kollist .kollist__item-outer:nth-child(2n+2) .kollist__img-outer--empty > .kollist__item-link--img::before {
    color: #eeeeee;
  }
}
@media (min-width: 992px) {
  .kollist__content[data-type="2"] .kollist .kollist__item, .kollist__content[data-type="2"] .kollist .kollist__desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 80px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border: none;
  }
}
@media (min-width: 992px) {
  .kollist__content[data-type="2"] .kollist .kollist__desc, .kollist__content[data-type="2"] .kollist .kollist__control {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    overflow: hidden;
  }
}
@media (min-width: 992px) {
  .kollist__content[data-type="2"] .kollist .kollist__desc-item, .kollist__content[data-type="2"] .kollist .kollist__desc-item-lg {
    margin: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .kollist__content[data-type="2"] .kollist .kollist__desc {
    padding: 0.75em 1em;
  }
  .kollist__content[data-type="2"] .kollist .kollist__desc-text {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .kollist__content[data-type="3"] .kollist__item-outer {
    -ms-flex-preferred-size: 22.22%;
    flex-basis: 22.22%;
    max-width: 22.22%;
    margin-bottom: 12px;
    max-height: 100%;
    position: relative;
    overflow: hidden;
  }
}
@media (min-width: 992px) and (min-width: 1440px) {
  .kollist__content[data-type="3"] .kollist__item-outer {
    -ms-flex-preferred-size: 18.18%;
    flex-basis: 18.18%;
    max-width: 18.18%;
    margin-bottom: 20px;
    max-height: 100%;
    position: relative;
    overflow: hidden;
  }
}
@media (min-width: 992px) and (max-width: 1439px) {
  .kollist__content[data-type="3"] .kollist__item-outer:nth-child(16n), .kollist__content[data-type="3"] .kollist__item-outer:nth-child(16n+1), .kollist__content[data-type="3"] .kollist__item-outer:nth-child(16n+6), .kollist__content[data-type="3"] .kollist__item-outer:nth-child(16n+11) {
    -ms-flex-preferred-size: 33.33%;
    flex-basis: 33.33%;
    max-width: 33.33%;
  }
}
@media (min-width: 992px) and (min-width: 1440px) {
  .kollist__content[data-type="3"] .kollist__item-outer:nth-child(25n), .kollist__content[data-type="3"] .kollist__item-outer:nth-child(25n+1), .kollist__content[data-type="3"] .kollist__item-outer:nth-child(25n+7), .kollist__content[data-type="3"] .kollist__item-outer:nth-child(25n+13), .kollist__content[data-type="3"] .kollist__item-outer:nth-child(25n+19) {
    -ms-flex-preferred-size: 27.27%;
    flex-basis: 27.27%;
    max-width: 27.27%;
  }
}
@media (min-width: 992px) {
  .kollist__content[data-type="3"] .kollist__item {
    overflow: hidden;
    height: auto;
    max-height: 100%;
    border: none;
  }
  .kollist__content[data-type="3"] .kollist__item:hover .kollist__desc {
    bottom: 0;
    opacity: 1;
  }
  .kollist__content[data-type="3"] .kollist__item-link--img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .kollist__content[data-type="3"] .kollist__desc {
    position: absolute;
    background: #fff;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    bottom: -100%;
    opacity: 0.5;
    max-width: 100%;
    width: calc(100% - 12px);
    border: 1px solid #eeeeee;
  }
}
@media (min-width: 992px) {
  .kollist__content[data-type="3"] .col-1440-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66%;
    flex: 0 0 16.66%;
    max-width: 16.66%;
  }
  .kollist__content[data-type="3"] .col-1440-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 0 50%;
    flex: 0 0 0 50%;
    max-width: 50%;
  }
  .kollist__content[data-type="3"] .col-1440-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33%;
    flex: 0 0 83.33%;
    max-width: 83.33%;
  }
}
.kollist__content[data-type="4"] .kollist {
  display: block;
  max-width: calc(100% + 30px);
}
@media (min-width: 992px) {
  .kollist__content[data-type="4"] .kollist {
    max-width: 100%;
    margin: 0 10px;
  }
}
.kollist__content[data-type="4"] .kollist__item-outer {
  max-width: 100%;
  margin-bottom: 0;
  padding-right: 0;
}
@media (min-width: 992px) {
  .kollist__content[data-type="4"] .kollist__item-outer {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.kollist__content[data-type="4"] .kollist__item-outer:not(:first-child) {
  margin-top: -1px;
  padding-left: 0;
  padding-right: 0;
}
.kollist__content[data-type="4"] .kollist__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  border-color: #e5e5e5;
  border-left: none;
  border-right: none;
  max-width: 100%;
}
@media (min-width: 768px) {
  .kollist__content[data-type="4"] .kollist__item {
    padding: 0;
    min-height: 132px;
  }
}
@media (min-width: 992px) {
  .kollist__content[data-type="4"] .kollist__item {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1440px) {
  .kollist__content[data-type="4"] .kollist__item {
    padding: 0 34px 0 22px;
  }
}
.kollist__content[data-type="4"] .kollist__img-outer {
  flex: 0 0 60px;
  height: 60px;
  border-radius: 50%;
  margin-top: 16px;
  margin-bottom: auto;
}
@media (min-width: 992px) {
  .kollist__content[data-type="4"] .kollist__img-outer {
    flex: 0 0 60px;
    height: 94px;
    display: flex;
    align-items: flex-start;
    border-radius: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .kollist__content[data-type="4"] .kollist__img-outer .kollist__item-link--img {
    border-radius: 50%;
  }
}
@media (min-width: 1280px) {
  .kollist__content[data-type="4"] .kollist__img-outer {
    flex: 0 0 90px;
    height: 90px;
  }
}
@media (min-width: 1440px) {
  .kollist__content[data-type="4"] .kollist__img-outer {
    flex: 0 0 100px;
    height: 100px;
  }
}
.kollist__content[data-type="4"] .kollist__desc {
  flex: 1 1 auto;
  max-width: calc(100% - 60px);
  padding-right: 0;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media (max-width: 374px) {
  .kollist__content[data-type="4"] .kollist__desc {
    padding-left: 8px;
  }
}
@media (min-width: 768px) {
  .kollist__content[data-type="4"] .kollist__desc {
    max-width: 300px;
    padding-right: 20px;
  }
}
@media (min-width: 992px) {
  .kollist__content[data-type="4"] .kollist__desc {
    max-width: 360px;
    padding-right: 24px;
  }
}
@media (min-width: 1280px) {
  .kollist__content[data-type="4"] .kollist__desc {
    max-width: 374px;
    padding-right: 24px;
  }
}
@media (min-width: 1440px) {
  .kollist__content[data-type="4"] .kollist__desc {
    padding-right: 40px;
  }
}
.kollist__content[data-type="4"] .kollist__desc-text, .kollist__content[data-type="4"] .kollist__like_text {
  color: #211c15;
}
.kollist__content[data-type="4"] .kollist__cpe-text {
  font-size: 13px;
  font-weight: bold;
  background: #211c15;
  color: #fff;
  height: 24px;
  padding: 0 10px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.kollist__content[data-type="4"] .kollist__cpe-text:before {
  content: "CPE";
  padding-right: 6px;
}
.kollist__content[data-type="4"] .kollist__collection {
  margin-top: 0;
}
.kollist__content[data-type="4"] .kollist__post {
  display: block;
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .kollist__content[data-type="4"] .kollist__post {
    flex: 0 0 330px;
    max-width: 330px;
    padding-left: 20px;
    border-left: 1px solid #e5e5e5;
    height: 132px;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .kollist__content[data-type="4"] .kollist__post {
    flex: 0 0 200px;
    max-width: 200px;
    padding: 0 12px;
    height: 150px;
  }
  .kollist-main-warp:not(.kollist-main-warp--searchshow) .kollist__content[data-type="4"] .kollist__post {
    flex: 0 0 410px;
    max-width: 410px;
  }
}
@media (min-width: 1280px) {
  .kollist__content[data-type="4"] .kollist__post {
    flex: 0 0 438px;
    max-width: 438px;
    padding: 0 24px;
  }
  .kollist-main-warp:not(.kollist-main-warp--searchshow) .kollist__content[data-type="4"] .kollist__post {
    flex: 0 0 658px;
    max-width: 658px;
  }
}
@media (min-width: 1440px) {
  .kollist__content[data-type="4"] .kollist__post {
    flex: 0 0 548px;
    max-width: 548px;
  }
  .kollist-main-warp:not(.kollist-main-warp--searchshow) .kollist__content[data-type="4"] .kollist__post {
    flex: 0 0 768px;
    max-width: 768px;
  }
}
@media (min-width: 1600px) {
  .kollist__content[data-type="4"] .kollist__post {
    flex: 0 0 706px;
    max-width: 706px;
    padding-left: 36px;
    padding-right: 0;
  }
  .kollist-main-warp:not(.kollist-main-warp--searchshow) .kollist__content[data-type="4"] .kollist__post {
    flex: 0 0 926px;
    max-width: 926px;
  }
}
@media (min-width: 1920px) {
  .kollist__content[data-type="4"] .kollist__post {
    flex: 0 0 1036px;
    max-width: 1036px;
  }
  .kollist-main-warp:not(.kollist-main-warp--searchshow) .kollist__content[data-type="4"] .kollist__post {
    flex: 0 0 1256px;
    max-width: 1256px;
  }
}
.kollist__content[data-type="4"] .kollist__data-length {
  display: block;
}
@media (min-width: 992px) {
  .kollist__content[data-type="4"] .kollist__data-length {
    display: none;
  }
}
@media (min-width: 992px) {
  .kollist__content[data-type="4"].kollist__content--post-no-image .kollist__post {
    flex: 0 0 300px;
    max-width: 300px;
  }
  .kollist-main-warp:not(.kollist-main-warp--searchshow) .kollist__content[data-type="4"].kollist__content--post-no-image .kollist__post {
    flex: 0 0 511px;
    max-width: 511px;
  }
}
@media (min-width: 1280px) {
  .kollist__content[data-type="4"].kollist__content--post-no-image .kollist__post {
    flex: 0 0 374px;
    max-width: 374px;
  }
  .kollist-main-warp:not(.kollist-main-warp--searchshow) .kollist__content[data-type="4"].kollist__content--post-no-image .kollist__post {
    flex: 0 0 636px;
    max-width: 636px;
  }
}
@media (min-width: 1440px) {
  .kollist__content[data-type="4"].kollist__content--post-no-image .kollist__post {
    flex: 0 0 584px;
    max-width: 584px;
  }
  .kollist-main-warp:not(.kollist-main-warp--searchshow) .kollist__content[data-type="4"].kollist__content--post-no-image .kollist__post {
    flex: 0 0 820px;
    max-width: 820px;
  }
}
@media (min-width: 1600px) {
  .kollist__content[data-type="4"].kollist__content--post-no-image .kollist__post {
    flex: 0 0 684px;
    max-width: 684px;
  }
  .kollist-main-warp:not(.kollist-main-warp--searchshow) .kollist__content[data-type="4"].kollist__content--post-no-image .kollist__post {
    flex: 0 0 946px;
    max-width: 946px;
  }
}
@media (min-width: 1920px) {
  .kollist__content[data-type="4"].kollist__content--post-no-image .kollist__post {
    flex: 0 0 946px;
    max-width: 946px;
  }
  .kollist-main-warp:not(.kollist-main-warp--searchshow) .kollist__content[data-type="4"].kollist__content--post-no-image .kollist__post {
    flex: 0 0 1208px;
    max-width: 1208px;
  }
}
.kollist__content[data-type="4"] .desc-container {
  display: grid;
  grid-template: "name name cpe cpe" "follower engagement engagement engagement" "media media media like"/auto auto 1fr 30px;
}
@media (min-width: 992px) {
  .kollist__content[data-type="4"] .desc-container {
    grid-template: "name name cpe cpe" "media media media media" "follower engagement engagement like" 40px/auto auto 1fr 30px;
  }
}
.kollist__content[data-type="4"] .desc-container__name {
  grid-area: name;
  max-width: 100% !important;
  display: flex;
  align-items: center;
}
.kollist__content[data-type="4"] .desc-container__name a {
  text-decoration: underline;
  max-width: 89px;
}
@media (min-width: 375px) {
  .kollist__content[data-type="4"] .desc-container__name a {
    max-width: 124px;
  }
}
@media (min-width: 414px) {
  .kollist__content[data-type="4"] .desc-container__name a {
    max-width: 175px;
  }
}
@media (min-width: 768px) {
  .kollist__content[data-type="4"] .desc-container__name a {
    max-width: 127px;
  }
}
@media (min-width: 992px) {
  .kollist__content[data-type="4"] .desc-container__name a {
    max-width: 200px;
  }
}
.kollist__content[data-type="4"] .desc-container__name .kollist__name {
  max-width: 100%;
}
.kollist__content[data-type="4"] .desc-container__media {
  grid-area: media;
  max-width: 100% !important;
  display: flex;
  align-items: center;
  margin-left: -10px;
  margin-bottom: -10px;
}
.kollist__content[data-type="4"] .desc-container__engagement {
  grid-area: engagement;
  max-width: 100% !important;
  display: flex;
  align-items: center;
  margin-top: 5px;
  font-size: 13px;
}
@media (min-width: 414px) {
  .kollist__content[data-type="4"] .desc-container__engagement {
    font-size: 14px;
  }
}
@media (min-width: 414px) {
  .kollist__content[data-type="4"] .desc-container__engagement .kollist__desc-text,
.kollist__content[data-type="4"] .desc-container__engagement .kollist__like_text {
    font-size: 14px;
  }
}
.kollist__content[data-type="4"] .desc-container__engagement span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  vertical-align: middle;
  line-height: 1.4;
}
@media (min-width: 414px) {
  .kollist__content[data-type="4"] .desc-container__engagement span {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .kollist__content[data-type="4"] .desc-container__engagement .kollist__like {
    font-size: 14px;
  }
}
.kollist__content[data-type="4"] .desc-container__engagement .kollist__like_text {
  margin: 0;
}
@media (min-width: 992px) {
  .kollist__content[data-type="4"] .desc-container__engagement .kollist__like_text {
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .kollist__content[data-type="4"] .desc-container__engagement .kollist__like_text {
    padding-left: 0.5rem;
  }
}
.kollist__content[data-type="4"] .desc-container__follower {
  grid-area: follower;
  max-width: 100% !important;
  display: flex;
  align-items: center;
  margin-top: 5px;
  font-size: 13px;
}
@media (min-width: 414px) {
  .kollist__content[data-type="4"] .desc-container__follower {
    font-size: 14px;
  }
}
@media (min-width: 414px) {
  .kollist__content[data-type="4"] .desc-container__follower .kollist__desc-text,
.kollist__content[data-type="4"] .desc-container__follower .kollist__like_text {
    font-size: 14px;
  }
}
.kollist__content[data-type="4"] .desc-container__follower span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  vertical-align: middle;
  line-height: 1.4;
}
@media (min-width: 414px) {
  .kollist__content[data-type="4"] .desc-container__follower span {
    font-size: 14px;
  }
}
.kollist__content[data-type="4"] .desc-container__follower .kollist__icon {
  display: none;
}
.kollist__content[data-type="4"] .desc-container__follower .kollist__desc-text {
  margin-left: 0;
}
.kollist__content[data-type="4"] .desc-container__cpe {
  grid-area: cpe;
  max-width: 100% !important;
  display: flex;
  align-items: center;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .kollist__content[data-type="4"] .desc-container__cpe {
    padding-left: 0.5rem;
    justify-content: flex-start;
    margin-top: 5px;
  }
  .kollist__content[data-type="4"] .desc-container__cpe .kollist__desc-text {
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .kollist__content[data-type="4"] .desc-container__cpe {
    display: block;
    padding-left: 10px;
  }
  .kollist__content[data-type="4"] .desc-container__cpe .kollist__cpe-text {
    margin-left: 0;
  }
}
.kollist__content[data-type="4"] .desc-container__grade {
  grid-area: grade;
  max-width: 100% !important;
  display: flex;
  align-items: center;
}
.kollist__content[data-type="4"] .desc-container__like {
  grid-area: like;
  max-width: 100% !important;
  display: flex;
  align-items: center;
  display: flex;
  justify-content: flex-end;
  margin-bottom: -10px;
}
.kollist__header {
  display: none;
  height: 0;
}
@media (min-width: 992px) {
  .kollist__content[data-type="2"] .kollist__header {
    height: 50px;
    background: #eeeeee;
    color: #211c15;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.5em 1.5em;
    margin: 0 10px;
    max-width: calc(100% - 20px);
  }
}
.kollist__header-item {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.kollist__header-item:nth-child(1) {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24%;
  flex: 0 0 24%;
  max-width: 24%;
}
@media (min-width: 1440px) {
  .kollist__header-item:nth-child(1) {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.kollist__header-item:nth-child(2) {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  min-width: 160px;
}
@media (min-width: 1440px) {
  .kollist__header-item:nth-child(2) {
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 18%;
    flex: 0 0 18%;
    max-width: 18%;
  }
}
.kollist__header-item:nth-child(3), .kollist__header-item:nth-child(4), .kollist__header-item:nth-child(5) {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 14%;
  flex: 0 0 14%;
  max-width: 14%;
}
@media (min-width: 1440px) {
  .kollist__header-item:nth-child(3), .kollist__header-item:nth-child(4), .kollist__header-item:nth-child(5), .kollist__header-item:nth-child(6) {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 14%;
    flex: 0 0 14%;
    max-width: 14%;
  }
}
.kollist__header-item:nth-child(7) {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8%;
  flex: 0 0 8%;
  max-width: 8%;
}
@media (min-width: 1440px) {
  .kollist__header-item:nth-child(7) {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 6%;
    flex: 0 0 6%;
    max-width: 6%;
  }
}

@media (min-width: 992px) {
  .star__control .icon::before,
.star__control .icon-md::before,
.star__control .icon-sm::before {
    color: #aa6900;
  }
}

/**
 列表工具列
 */
.function-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 992px) {
  .function-bar {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: 0 -20px;
    padding: 10px 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.function-bar__sort {
  margin-bottom: 1em;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (min-width: 992px) {
  .function-bar__sort {
    flex: 1 1 200px;
    max-width: 200px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    margin-bottom: 0;
  }
  .function-bar__sort + .function-bar__sort {
    margin-left: 0.75rem;
  }
}
@media (min-width: 1440px) {
  .function-bar__sort {
    flex: 1 1 280px;
    max-width: 280px;
  }
}
.function-bar__group {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .function-bar__group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.function-bar__export {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  margin-bottom: 1em;
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}
@media (min-width: 768px) {
  .function-bar__export {
    position: relative;
    margin-left: 40px;
  }
}
@media (min-width: 992px) {
  .function-bar__export {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 40px;
  }
}
@media (min-width: 768px) {
  .function-bar__export::after {
    content: "";
    display: block;
    background: #211c15;
    width: 1px;
    height: 30px;
    position: absolute;
    left: -15px;
    top: calc(50% - 15px);
  }
}
@media (min-width: 992px) {
  .function-bar__export::after {
    content: "";
    display: block;
    background: #211c15;
    width: 1px;
    height: 30px;
    position: absolute;
    left: calc(100% + 15px);
  }
}
@media (min-width: 768px) {
  .function-bar__export-text {
    display: none;
  }
}
.function-bar__search {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media (min-width: 768px) {
  .function-bar__search {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
}
@media (min-width: 992px) {
  .function-bar__search {
    padding: 0 40px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
}
@media (min-width: 992px) {
  .kollist--active .function-bar__search {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .kollist--active .function-bar__search {
    padding: 0 40px;
  }
}
@media (min-width: 992px) {
  .function-bar__search .form-group .form-control {
    min-width: 0;
  }
}

/**
 列表顯示類型
 */
.listtype {
  display: none;
}
@media (min-width: 992px) {
  .listtype {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: 0.3em 0;
  }
}
.listtype__type {
  color: #888;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.listtype__type--active .icon, .listtype__type--active .icon-md, .listtype__type--active .icon-sm {
  color: #211c15;
}
@media (min-width: 992px) {
  .listtype__type:hover:not(.listtype__type--active) {
    color: #555555;
  }
}

.icon__control {
  width: 40px;
  height: 40px;
  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;
}

@-webkit-keyframes pop {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.5;
  }
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0.99);
    transform: scale(0.99);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes pop {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.5;
  }
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0.99);
    transform: scale(0.99);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
/*連結列表*/
.list-links {
  margin-bottom: 1em;
  /* 有子選單 */
}
.header__member-menu .list-links {
  overflow: auto;
  max-height: calc(100% - 120px - 60px);
}
.list-links__item, .list-links__subitem {
  font-size: 1em;
  padding: 0 0.5em;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.member-template .list-links__item, .member-template .list-links__subitem {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  height: 56px;
}
@media (min-width: 768px) {
  .member-template .list-links__item, .member-template .list-links__subitem {
    flex: 1 1 33.333%;
    max-width: 33.333%;
  }
}
@media (min-width: 992px) {
  .member-template .list-links__item, .member-template .list-links__subitem {
    font-size: 1.125em;
    justify-content: flex-start;
    padding: 0 0 0 40px;
    height: 40px;
    max-width: none;
  }
}
.member-template .list-links__item > a, .member-template .list-links__subitem > a {
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
  transition: background 0.4s;
}
@media (max-width: 991px) {
  .member-template .list-links__item > a, .member-template .list-links__subitem > a {
    flex: 1 1 auto;
    border: 1px solid #211c15;
    height: 30px;
    text-align: center;
    text-decoration: none;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .member-template .list-links__item > a:hover, .member-template .list-links__subitem > a:hover {
    text-decoration: underline;
  }
}
@media (max-width: 991px) {
  .member-template .list-links__item > a:focus, .member-template .list-links__item > a:active, .member-template .list-links__subitem > a:focus, .member-template .list-links__subitem > a:active {
    background: #211c15;
    color: #fff;
  }
}
@media (max-width: 991px) {
  .member-template .list-links__item--current > a, .member-template .list-links__subitem--current > a {
    background: #211c15;
    color: #fff;
  }
}
@media (min-width: 992px) {
  .member-template .list-links__item--current > a, .member-template .list-links__subitem--current > a {
    text-decoration: underline;
  }
  .member-template .list-links__item--current > a .list-links__item-content, .member-template .list-links__subitem--current > a .list-links__item-content {
    text-decoration: underline;
  }
}
.list-links__item--current > a, .list-links__subitem--current > a {
  text-decoration: underline;
}
.list-links__item-icon {
  flex: 1 1 24px;
  max-width: 24px;
  background: #ff6e62;
  color: #fff;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 16px;
}
@media (min-width: 992px) {
  .list-links__item-icon {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .list-links__item-icon {
    font-size: 16px;
  }
}
.list-links__item--active .list-links__item-icon {
  background: #f96166;
}
.list-links__item-content {
  flex: 0 1 auto;
  padding-left: 8px;
  font-size: 16px;
  line-height: 24px;
  color: #211c15;
}
@media (min-width: 1440px) {
  .list-links__item-content {
    font-size: 18px;
  }
}
.list-links__sublist {
  flex: 1 1 100%;
  max-width: 100%;
  padding: 0;
  height: 0;
  transition: all 0.2s;
  overflow: hidden;
}
.member-template .list-links {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}
@media (min-width: 992px) {
  .member-template .list-links {
    display: block;
    margin: 0;
    padding: 0;
  }
}
.member-template .list-links--has-sub {
  margin: 0;
}
.list-links--has-sub .list-links__item, .list-links--has-sub .list-links__subitem {
  font-size: 16px;
  height: auto;
}
@media (min-width: 1440px) {
  .list-links--has-sub .list-links__item, .list-links--has-sub .list-links__subitem {
    font-size: 18px;
  }
}
.list-links--has-sub .list-links__item:not(:last-child), .list-links--has-sub .list-links__subitem:not(:last-child) {
  margin-bottom: 10px;
}
@media (min-width: 1440px) {
  .list-links--has-sub .list-links__item:not(:last-child), .list-links--has-sub .list-links__subitem:not(:last-child) {
    margin-bottom: 16px;
  }
}
.list-links--has-sub .list-links__item {
  padding-left: 20px;
}
@media (max-width: 991px) {
  .list-links--has-sub .list-links__item {
    padding: 0;
    flex: 1 1 100%;
    max-width: 100%;
  }
  .list-links--has-sub .list-links__item:not(:last-child) {
    margin-bottom: 0;
  }
  .list-links--has-sub .list-links__item--has-sub {
    position: relative;
  }
  .list-links--has-sub .list-links__item--has-sub > a::after {
    font-family: "icomoon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    position: absolute;
    right: 1.25em;
    transition: all 0.2s;
  }
  .list-links--has-sub .list-links__item--active > a::after {
    transform: rotate(180deg);
  }
  .list-links--has-sub .list-links__item--current .list-links__item-content {
    text-decoration: underline;
  }
}
.list-links--has-sub .list-links__item > a {
  text-decoration: none;
}
.list-links--has-sub .list-links__item > a:hover {
  text-decoration: none;
}
.list-links--has-sub .list-links__item > a:hover .list-links__item-content {
  text-decoration: underline;
}
@media (max-width: 991px) {
  .list-links--has-sub .list-links__item > a {
    background: none;
    height: 50px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #d5d5d5;
    justify-content: flex-start;
    padding: 0.75em 1.25em;
  }
  .list-links--has-sub .list-links__item > a:active, .list-links--has-sub .list-links__item > a:focus {
    background: none;
    color: #211c15;
  }
}
.list-links--has-sub .list-links__subitem {
  padding-left: 32px;
  text-align: left;
}
@media (max-width: 991px) {
  .list-links--has-sub .list-links__subitem {
    flex: 1 1 100%;
    max-width: 100%;
    background: none;
    border-bottom: 1px solid #d5d5d5;
    padding: 0.75em 1.25em;
    height: 50px;
    background: #e5e5e5;
  }
  .list-links--has-sub .list-links__subitem:not(:last-child) {
    margin-top: 0;
    margin-bottom: 0;
  }
  .list-links--has-sub .list-links__subitem > a {
    border-radius: 0;
    border: none;
    justify-content: flex-start;
    padding-left: 32px;
  }
  .list-links--has-sub .list-links__subitem > a:active, .list-links--has-sub .list-links__subitem > a:focus {
    background: #e5e5e5;
    color: #211c15;
  }
  .member-template .list-links--has-sub .list-links__subitem--current > a {
    background: none;
    color: #211c15;
    text-decoration: underline;
  }
}
.list-links--has-sub .list-links__subitem:first-child {
  margin-top: 10px;
}
@media (min-width: 1440px) {
  .list-links--has-sub .list-links__subitem:first-child {
    margin-top: 16px;
  }
}
@media (max-width: 991px) {
  .list-links--has-sub .list-links__subitem:first-child {
    margin-top: 0;
  }
}
.list-links--has-sub .list-links__subitem:last-child {
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .list-links--has-sub .list-links__subitem:last-child {
    margin-bottom: 0;
  }
}

/*  方案列表 */
.plan-list {
  color: #211c15;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .plan-list {
    margin-left: -12px;
    margin-right: -12px;
  }
}
@media (min-width: 992px) {
  .plan-list {
    justify-content: center;
  }
}
.plan-list__item {
  flex: 1 1 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .plan-list__item {
    flex-basis: 50%;
    max-width: 50%;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .plan-list__item {
    flex-basis: 33.333%;
    max-width: 320px;
  }
}
@media (max-width: 991px) {
  .plan-list__item:nth-child(1) {
    order: 3;
  }
}
@media (max-width: 991px) {
  .plan-list__item:nth-child(2) {
    order: 2;
  }
}
@media (max-width: 991px) {
  .plan-list__item:nth-child(3) {
    order: 1;
  }
}
@media (max-width: 991px) {
  .plan-list__item:nth-child(4) {
    order: 0;
  }
}
.plan-list__item:not(:first-child) {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .plan-list__item:not(:first-child) {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .plan-list__item:nth-child(3) {
    flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 60px;
  }
  .plan-list__item:nth-child(1) .plan-list__note, .plan-list__item:nth-child(2) .plan-list__note {
    min-height: 63px;
  }
}
.plan-list__content {
  border: 1px solid #d5d5d5;
}
@media (min-width: 768px) {
  .plan-list__content {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
}
.plan-list__inner {
  padding: 30px 15px 80px;
  width: calc(75% + 30px);
  margin-left: auto;
  margin-right: auto;
}
.plan-list__saving {
  background: #ff6e62;
  color: #fff;
  line-height: 30px;
  font-weight: bold;
  text-align: center;
  margin-top: -1px;
  margin-left: -1px;
  margin-right: -1px;
  width: calc(100% + 2px);
}
@media (min-width: 992px) {
  .plan-list__saving {
    min-height: 30px;
  }
  .plan-list__saving:empty {
    background: transparent;
  }
}
.plan-list__title {
  font-size: 1.375em;
  text-align: center;
  margin-bottom: 5px;
}
.plan-list__price-block {
  display: flex;
  justify-content: center;
  font-size: 30px;
  margin: 0 -20px 16px;
}
@media (min-width: 768px) {
  .plan-list__price-block {
    min-height: 70px;
    margin-bottom: 0;
  }
}
.plan-list__currency {
  line-height: 1;
  font-weight: bold;
}
.plan-list__values {
  display: inline-block;
  text-align: center;
  font-weight: bold;
}
.plan-list__values > * {
  display: block;
  line-height: 1;
}
.plan-list__values > *:last-child {
  margin-top: 10px;
}
.plan-list__values > *:empty {
  display: none;
}
.plan-list__item--free .plan-list__price {
  font-size: 25px;
  line-height: 34px;
}
.plan-list__original-price {
  font-size: 16px;
  line-height: 16px;
  font-weight: normal;
  text-decoration: line-through;
}
.plan-list__unit {
  padding-left: 6px;
  font-size: 14px;
  height: 30px;
  display: flex;
  align-items: flex-end;
}
.plan-list__btn {
  width: 160px;
  margin-left: auto;
  margin-right: auto;
  color: #ff6e62;
  border: 1px solid #ff6e62;
  border-radius: 20px;
  font-weight: bold;
}
.plan-list__btn:active, .plan-list__btn:focus, .plan-list__btn:hover {
  background: #ff6e62;
  color: #fff !important;
  border-color: #ff6e62;
}
.plan-list hr {
  margin-top: 35px;
  margin-bottom: 35px;
}
.plan-list__detail {
  max-width: 90%;
  margin: 0 auto;
}
.plan-list__heading {
  color: #ff6e62;
  font-size: 18px;
  font-weight: bold;
  line-height: 26px;
  min-height: 52px;
  margin-bottom: 0.75em;
}
.plan-list__desc {
  color: #211c15;
  font-size: 16px;
  line-height: 28px;
  font-weight: bold;
}
.plan-list__info-list {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.plan-list__info-item:not(:last-child) {
  margin-bottom: 10px;
}
.plan-list__note {
  font-size: 14px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .plan-list__note {
    min-height: 42px;
  }
}
@media (min-width: 992px) {
  .plan-list__note {
    min-height: 65px;
  }
}
@media (max-width: 767px) {
  .plan-list__note:empty {
    display: none;
  }
}

/*最新發文*/
.list-post__thead {
  display: none;
}
@media (min-width: 992px) {
  .list-post__thead {
    display: table-header-group;
    font-size: 1em;
    background: #eee;
    color: #211C15;
    text-align: left;
    padding: 0 1.5em;
  }
}
@media (min-width: 992px) {
  .list-post__title {
    padding: 0.75em;
    font-weight: bold;
    text-align: left;
  }
}
.list-post__tbody {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .list-post__tbody {
    display: flex;
    flex: 1;
    flex-basis: calc(100% + 1.5rem);
    width: calc(100% + 1.5rem);
    flex-wrap: wrap;
    margin-left: -0.75em;
    margin-right: -0.75em;
  }
}
@media (min-width: 992px) {
  .list-post__tbody {
    display: table-row-group;
  }
}
.list-post__item {
  flex-basis: 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .list-post__item {
    flex: 1 1 50%;
    width: 50%;
    max-width: 50%;
    padding: 0 0.75em;
    margin-bottom: 1.375em;
  }
}
@media (min-width: 992px) {
  .list-post__item {
    display: table-row;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.5s;
  }
  .list-post__item:nth-child(2n+2) {
    /*background: #f2f2f2;*/
  }
  .list-post__item:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
.list-post__item:not(:last-child) {
  margin-bottom: 1.375em;
}
.list-post__body {
  display: flex;
  padding: 1em 1em 1.875em 1em;
  border: 1px solid #d5d5d5;
  border-bottom: none;
  height: calc(100% - 105px);
  flex-basis: 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  .list-post__body {
    display: table-cell;
    border: none;
    height: auto;
    padding: 1em;
  }
}
.list-post__body-control {
  display: flex;
  flex: 1 1 100%;
  width: 100%;
}
@media (min-width: 992px) {
  .list-post__body-control {
    display: block;
  }
}
.list-post__img-outer {
  flex-basis: 100px;
  max-width: 100px;
  position: relative;
  overflow: hidden;
  background: #eee;
}
@media (min-width: 992px) {
  .list-post__img-outer {
    float: left;
    max-width: 70px;
  }
}
.list-post__post-outer {
  margin-left: 1em;
  width: calc(100% - 1em - 100px);
  max-width: calc(100% - 1em - 100px);
  flex: 1;
  flex-basis: calc(100% - 1em - 100px);
}
@media (min-width: 992px) {
  .list-post__post-outer {
    margin-left: 80px;
    max-width: calc(100% - 1em - 70px);
  }
}
.list-post__post-time {
  font-size: 0.875em;
  color: #888;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .list-post__post-time {
    margin-bottom: 0.7px;
  }
}
.list-post__post-content {
  font-size: 0.875em;
  line-height: 1.5em;
  word-break: break-all;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 4.5em;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .list-post__post-content {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3em;
    line-height: 1.5;
  }
}
.list-post__field {
  display: block;
  position: relative;
  flex-basis: 33.333%;
  max-width: 33.333%;
  text-align: center;
  padding: 1em;
  background: #eeeeee;
  padding-top: 65px;
  border-bottom: 1px solid #d5d5d5;
}
@media (min-width: 992px) {
  .list-post__field {
    background: none;
    text-align: left;
    min-width: 120px;
    display: table-cell;
    border: none;
    height: auto;
    padding: 1em;
  }
}
.list-post__field::before {
  content: attr(data-title);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.75em;
  background: #eeeeee;
  border-bottom: 1px solid #888;
}
@media (min-width: 992px) {
  .list-post__field::before {
    display: none;
  }
}
.list-post__field:nth-child(2) {
  border-left: 1px solid #d5d5d5;
}
@media (min-width: 992px) {
  .list-post__field:nth-child(2) {
    display: table-cell;
    border: none;
    height: auto;
    padding: 1em;
  }
}
.list-post__field:nth-child(4) {
  border-right: 1px solid #d5d5d5;
}
@media (min-width: 992px) {
  .list-post__field:nth-child(4) {
    display: table-cell;
    border: none;
    height: auto;
    padding: 1em;
  }
}

.instagram-post {
  padding: 12px 40px 0;
}
@media (max-width: 767px) {
  .instagram-post {
    margin-top: -3px;
    margin-bottom: 30px;
    border-top: 1px dashed #e5e5e5;
  }
}
@media (min-width: 768px) {
  .instagram-post {
    padding-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1600px) {
  .instagram-post {
    padding: 0 70px;
    margin-bottom: 0;
  }
}
.instagram-post__item {
  max-width: 60px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .instagram-post__item {
    max-width: 90px;
  }
}
.instagram-post__item > a {
  text-decoration: none;
}
.instagram-post__date, .instagram-post__relative-date {
  font-size: 12px;
  line-height: 1.3;
  font-weight: bold;
  color: #888;
  text-align: center;
}
@media (min-width: 992px) {
  .instagram-post__date, .instagram-post__relative-date {
    font-size: 14px;
    line-height: 20px;
  }
}
.instagram-post__date {
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .instagram-post__date {
    display: none;
  }
}
@media (min-width: 992px) {
  .instagram-post__relative-date {
    display: none;
  }
}
.instagram-post__image-outer {
  display: block;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 5px;
  position: relative;
  background: #eee;
}
@media (min-width: 992px) {
  .instagram-post__image-outer {
    margin-bottom: 0;
  }
}
.instagram-post__image-outer::after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: calc(100% - 5px);
}
.instagram-post__image {
  position: absolute;
  top: -99%;
  bottom: -99%;
  left: -99%;
  right: -99%;
  margin: auto;
}
.instagram-post .owl-nav {
  top: calc(50% - 14px - 15px);
}
@media (min-width: 992px) {
  .instagram-post .owl-nav {
    top: calc(50% - 14px);
  }
}
.kollist__content:not(.kollist__content--post-no-image) .instagram-post__article, .kollist__content:not(.kollist__content--post-no-image) .instagram-post__interactive-rate {
  display: none;
}
.kollist__content--post-no-image .instagram-post__image-outer, .kollist__content--post-no-image .instagram-post__relative-date {
  display: none;
}
.kollist__content--post-no-image .instagram-post__date {
  grid-area: date;
}
.kollist__content--post-no-image .instagram-post__article {
  grid-area: article;
}
.kollist__content--post-no-image .instagram-post__interactive-rate {
  grid-area: interactive-rate;
}
.kollist__content--post-no-image .instagram-post__item {
  max-width: none;
}
.kollist__content--post-no-image .instagram-post__item a {
  background: #F5F5F5;
  border-radius: 30px;
  padding: 16px 20px;
  display: grid;
  grid-gap: 3px 0;
  grid-template: "date date" "interactive-rate interactive-rate" "article article"/auto auto;
}
@media (min-width: 375px) {
  .kollist__content--post-no-image .instagram-post__item a {
    grid-template: "date interactive-rate" "article article"/auto auto;
  }
}
@media (max-width: 1279px) and (min-width: 992px) {
  .kollist__content--post-no-image .instagram-post__item a {
    grid-template: "interactive-rate" "date" "article";
  }
}
.kollist__content--post-no-image .instagram-post__date {
  text-align: left;
  color: #000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .kollist__content--post-no-image .instagram-post__date {
    display: block;
    font-size: 14px;
  }
}
.kollist__content--post-no-image .instagram-post__interactive-rate {
  font-size: 14px;
  color: #000;
  font-weight: bold;
  text-align: left;
}
@media (min-width: 375px) {
  .kollist__content--post-no-image .instagram-post__interactive-rate {
    text-align: right;
  }
}
@media (max-width: 1279px) and (min-width: 992px) {
  .kollist__content--post-no-image .instagram-post__interactive-rate {
    text-align: left;
  }
}
@media (max-width: 1279px) and (min-width: 992px) {
  .kollist__content--post-no-image .instagram-post__date, .kollist__content--post-no-image .instagram-post__interactive-rate {
    font-size: 12px;
  }
}
.kollist__content--post-no-image .instagram-post__article {
  font-size: 14px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 2.8em;
  line-height: 1.4;
  min-height: 38px;
}
.kollist__content--post-no-image .instagram-post .owl-nav {
  top: calc(50% - 14px);
}

.list-quote__section {
  margin-bottom: 2em;
}
@media (min-width: 1280px) {
  .list-quote__section {
    display: flex;
    align-items: center;
  }
}
.list-quote__title {
  margin-left: 30px;
  margin-bottom: 0.5em;
}
@media (min-width: 1280px) {
  .list-quote__title {
    flex-basis: 80px;
    min-width: 80px;
    max-width: 80px;
    height: 80px;
    margin-left: 0;
    border-radius: 50%;
    margin-right: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .list-quote__section.text-facebook .list-quote__title {
    background: #4267B2;
  }
  .list-quote__section.text-instagram .list-quote__title {
    background: #F44D91;
  }
  .list-quote__section.text-youtube .list-quote__title {
    background: #FD0D00;
  }
  .list-quote__section.text-blog .list-quote__title {
    background: #FF8933;
  }
}
.list-quote__title-icon {
  display: none;
}
@media (min-width: 1280px) {
  .list-quote__title-icon {
    display: inline-block;
    font-size: 30px;
  }
}
.list-quote__title-icon-outer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.list-quote__title-text {
  font-weight: normal;
}
@media (min-width: 1280px) {
  .list-quote__title-text {
    display: none;
  }
}
.list-quote__items {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1280px) {
  .list-quote__items {
    flex: 1 1 auto;
    margin-bottom: 0;
  }
}
.list-quote__item {
  color: #211c15;
  flex: 1 1 33.333%;
  max-width: 33.333%;
  padding: 0.875em 15px;
  font-size: 0.875em;
  margin-bottom: 0.5em;
  border-top: 1px solid;
  border-bottom: 1px solid;
}
@media (min-width: 768px) {
  .list-quote__item {
    flex: 1 1 20%;
    max-width: 20%;
    padding: 0.875em 22.5px;
  }
}
.list-quote__item:nth-child(3n+1) {
  padding-left: 30px;
  padding-right: 0;
  border-radius: 40px 0 0 40px;
  border-left: 1px solid;
}
.list-quote__item:nth-child(3n+3), .list-quote__item:last-child {
  padding-left: 0;
  padding-right: 30px;
  border-radius: 0 40px 40px 0;
  border-right: 1px solid;
}
.list-quote__item:nth-child(3n+3):nth-child(3n+2), .list-quote__item:last-child:nth-child(3n+2) {
  flex-basis: calc(33.333% + 20px);
  max-width: calc(33.333% + 20px);
  padding-left: 22.5px;
  padding-right: 20px;
}
.list-quote__item:nth-child(3n+3):nth-child(3n+1), .list-quote__item:last-child:nth-child(3n+1) {
  flex-basis: calc(33.333% + 20px);
  max-width: calc(33.333% + 20px);
  padding-left: 30px;
  padding-right: 20px;
  border-radius: 40px;
  border-left: 1px solid;
  border-right: 1px solid;
}
@media (min-width: 768px) {
  .list-quote__item:nth-child(3n+1), .list-quote__item:nth-child(3n+3), .list-quote__item:last-child:nth-child(3n+1), .list-quote__item:last-child:nth-child(3n+2) {
    flex: 1 1 20%;
    max-width: 20%;
    padding: 0.875em 22.5px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .list-quote__item:nth-child(5n+1) {
    padding-left: 40px;
    padding-right: 5px;
    border-radius: 40px 0 0 40px;
    border-left: 1px solid;
  }
  .list-quote__item:nth-child(5n+5) {
    padding-left: 5px;
    padding-right: 40px;
    border-radius: 0 40px 40px 0;
    border-right: 1px solid;
  }
  .list-quote__item:last-child:nth-child(5n+2), .list-quote__item:last-child:nth-child(5n+3), .list-quote__item:last-child:nth-child(5n+4) {
    flex-basis: calc(20% + 20px);
    max-width: calc(20% + 20px);
  }
  .list-quote__item:last-child:nth-child(5n+2), .list-quote__item:last-child:nth-child(5n+3), .list-quote__item:last-child:nth-child(5n+4), .list-quote__item:last-child:nth-child(5n+5) {
    border-radius: 0 40px 40px 0;
    border-right: 1px solid;
  }
  .list-quote__item:last-child:nth-child(5n+1) {
    padding-left: 40px;
    padding-right: 40px;
    flex-basis: calc(20% + 40px);
    max-width: calc(20% + 40px);
    border-radius: 40px;
    border-left: 1px solid;
    border-right: 1px solid;
  }
  .list-quote__item:last-child:nth-child(5n+5) {
    padding-left: 5px;
    padding-right: 40px;
  }
}
@media (min-width: 1280px) {
  .list-quote__item, .list-quote__item:nth-child(3n+1), .list-quote__item:nth-child(3n+3), .list-quote__item:last-child:nth-child(3n+1), .list-quote__item:last-child:nth-child(3n+2) {
    flex: 1 1 20%;
    max-width: 200px;
  }
  .list-quote__item:last-child:nth-child(5n+1) {
    max-width: 260px;
  }
  .list-quote__item-title, .list-quote__item-value {
    text-align: center;
  }
}
.list-quote__section.text-facebook .list-quote__item {
  background: rgba(66, 103, 178, 0.1);
  border-color: #4267B2 !important;
}
.list-quote__section.text-instagram .list-quote__item {
  background: rgba(244, 77, 145, 0.1);
  border-color: #F44D91 !important;
}
.list-quote__section.text-youtube .list-quote__item {
  background: rgba(253, 13, 0, 0.1);
  border-color: #FD0D00 !important;
}
.list-quote__section.text-blog .list-quote__item {
  background: rgba(255, 137, 51, 0.1);
  border-color: #FF8933 !important;
}
.list-quote__item-title {
  font-weight: normal;
  font-size: 16px;
}

.tb-review-file {
  margin-bottom: 3em;
}
@media (min-width: 768px) {
  .tb-review-file {
    margin-bottom: 65px;
  }
}
@media (min-width: 768px) {
  .tb-review-file__col-date {
    width: 110px;
  }
}
@media (min-width: 992px) {
  .tb-review-file__col-date {
    width: 200px;
  }
}
@media (min-width: 768px) {
  .tb-review-file__col-status {
    width: 120px;
  }
}
@media (min-width: 992px) {
  .tb-review-file__col-status {
    width: 160px;
  }
}
@media (min-width: 768px) {
  .tb-review-file__col-file {
    width: 240px;
  }
}
@media (max-width: 767px) {
  .tb-review-file .table__row {
    display: flex;
    flex-wrap: wrap;
    padding: 1.5em;
    border-left: none;
    border-right: none;
    border-top: none;
  }
}
@media (max-width: 767px) {
  .tb-review-file .table__col:nth-child(1), .tb-review-file .table__col:nth-child(4) {
    flex: 1 1 100%;
    max-width: 100%;
    order: 3;
  }
  .tb-review-file .table__col:nth-child(1):empty, .tb-review-file .table__col:nth-child(4):empty {
    display: none;
  }
  .tb-review-file .table__col:nth-child(2) {
    flex: 1 1 70%;
    max-width: 70%;
    order: 0;
    margin-bottom: 1em;
  }
  .tb-review-file .table__col:nth-child(2)::before {
    display: none;
  }
  .tb-review-file .table__col:nth-child(3) {
    flex: 1 1 30%;
    max-width: 30%;
    order: 1;
    font-weight: bold;
    justify-content: flex-end;
  }
  .tb-review-file .table__col:nth-child(3)::before {
    display: none;
  }
}
@media (min-width: 768px) {
  .tb-review-file .table__col {
    padding: 10px 0.75em;
    line-height: 1.4;
  }
}
.tb-review-file-blcok {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .tb-review-file-blcok {
    margin-left: -20px;
    margin-right: -20px;
  }
  .tb-review-file-blcok .table-title {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .tb-review-file-blcok .table-empty-text {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.file-list {
  margin-bottom: -10px;
  display: flex;
  flex-wrap: wrap;
}
.file-list__item {
  margin-right: 10px;
  margin-bottom: 10px;
}

.file-download {
  display: inline-flex;
  align-items: center;
  padding: 0.25em 0.75em;
  border-radius: 15px;
  border: 1px solid #d5d5d5;
  text-decoration: none;
  transition: background 0.2s;
  min-width: 100px;
}
.file-download:hover {
  background: #e5e5e5;
}
.file-download__text {
  display: inline-block;
  max-width: 75px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #211c15;
}
@media (min-width: 375px) {
  .file-download__text {
    max-width: 70px;
  }
}
.file-download::before {
  font-size: 1.5em;
  margin-right: 0.25em;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.file-download:hover .file-download::before {
  color: #fff;
}
.file-download--pdf::before {
  content: "";
  color: #FD0D00;
}
.file-download--word::before {
  content: "";
  color: #4B88E5;
}
.file-download--picture::before {
  content: "";
  color: #FD0D00;
}
.file-download--ppt::before {
  content: "";
  color: #FE7541;
}
.file-download--link::before {
  content: "";
  color: #555555;
}

/*預設radio、checkbox*/
@-webkit-keyframes review-check {
  0% {
    border-bottom: 0;
    border-right: 0;
    width: 0;
    height: 0;
  }
  75% {
    border-bottom: 2px solid #555555;
    border-right: 0;
    width: 8px;
    height: 0;
  }
  100% {
    border-bottom: 2px solid #555555;
    border-right: 2px solid #555555;
    width: 8px;
    height: 15px;
  }
}
@keyframes review-check {
  0% {
    border-bottom: 0;
    border-right: 0;
    width: 0;
    height: 0;
  }
  75% {
    border-bottom: 2px solid #555555;
    border-right: 0;
    width: 8px;
    height: 0;
  }
  100% {
    border-bottom: 2px solid #555555;
    border-right: 2px solid #555555;
    width: 8px;
    height: 15px;
  }
}
.review-check__title {
  margin-bottom: 0.5em;
  color: #211c15;
  padding-left: 1.5em;
  font-size: 1.125em;
}
@media (min-width: 768px) {
  .review-check__title {
    padding-left: 0;
  }
}
.review-check__inner {
  padding: 0.5em 1.5em 2em 1.5em;
}
@media (min-width: 768px) {
  .review-check__inner {
    padding: 0.5em 0 0;
    border-radius: 4px;
  }
}
.review-check__list {
  margin-bottom: 1em;
}
.review-check__item {
  display: flex;
}
.review-check__item:not(:last-child) {
  margin-bottom: 1em;
}
.review-check__item .checkbox__label {
  height: 30px;
  margin-bottom: 0;
  padding: 0 0 0 30px;
}
.review-check__item .checkbox__label::before {
  width: 30px;
  height: 30px;
  top: calc(50% - 15px);
}
.review-check__item .checkbox__label::after {
  width: 8px;
  height: 15px;
  left: 7px;
  bottom: calc(100% - 15.8px);
  -webkit-animation: review-check 0.2s cubic-bezier(1, 0, 0.13, 1);
  animation: review-check 0.2s cubic-bezier(1, 0, 0.13, 1);
}
.review-check__item-text {
  flex: 1 1 auto;
  background: #e5e5e5;
  min-height: 30px;
  padding: 0 0.5em;
  margin-left: 0.875em;
  word-break: break-all;
  font-size: 0.875em;
  line-height: 1.8;
  display: flex;
  align-items: center;
  color: #211c15;
}
.review-check--view-only {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .review-check--view-only {
    padding: 0;
  }
}
.review-check--view-only .review-check__title {
  padding-left: 0;
  padding-right: 0;
}
.review-check--view-only .review-check__inner {
  padding: 0;
  background: #fff;
}
.review-check--view-only .review-check__list {
  counter-reset: num;
}
.review-check--view-only .review-check__item {
  counter-increment: num;
}
.review-check--view-only .review-check__item-text {
  margin-left: 0;
  background: #eeeeee;
}
.review-check--view-only .review-check__item-text::before {
  content: counter(num) ".";
  text-align: center;
  margin-right: 0.5em;
  font-weight: bold;
  align-self: flex-start;
  line-height: 30px;
}
.review-check__outcome {
  margin-left: 2.75em;
}
.review-check__outcome-value {
  font-weight: bold;
}

.review-radio {
  margin-left: calc(30px + 1.25em);
}
.review-radio__list {
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
}
.review-radio__item {
  margin-bottom: 0.5em;
}
.review-radio__item:not(:last-child) {
  margin-right: 1em;
}
.review-radio__input {
  display: none;
}
.review-radio__label {
  background: #fff;
  color: #211c15;
  border: 1px solid #211c15;
  transition: background-color 0.2s;
  padding: 0.25em 0.75em;
  min-width: 90px;
  border-radius: 4px;
  text-align: center;
}
@media (min-width: 768px) {
  .review-radio__label {
    min-width: 120px;
  }
}
.review-radio__input:checked + .review-radio__label {
  background: #211c15;
  color: #fff;
}
.review-radio__input:disabled + .review-radio__label {
  background: #e5e5e5;
  color: #888;
  border-color: #fff;
}
.review-radio__input:not(:disabled) + .review-radio__label:hover {
  cursor: pointer;
}

.status-label {
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  min-height: 24px;
  display: block;
  text-align: center;
  border: 1px solid #211c15;
  margin-bottom: 2px;
  max-width: 77px;
}
@media (min-width: 992px) {
  .status-label {
    display: inline-block;
    text-align: center;
    min-width: 77px;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .status-label + * {
    margin-left: 0.75em;
  }
}
.status-label--success {
  color: #19b394;
  border-color: #19b394;
}
.status-label--primary {
  color: #ff6e62;
  border-color: #ff6e62;
}
.status-label__link {
  font-weight: bold;
}

@media (max-width: 767px) {
  .status-label-outer {
    width: 70px;
    text-align: right;
  }
}
@media (min-width: 992px) {
  .status-label-outer {
    display: flex;
    align-items: flex-end;
  }
}

.unpassed-reason {
  margin-bottom: 0;
  counter-reset: num;
  margin-left: 20px;
}
.unpassed-reason__item {
  counter-increment: num;
  line-height: 24px;
  position: relative;
  margin-bottom: 0.75em;
  display: flex;
}
.unpassed-reason__item::before {
  content: counter(num) ". ";
  display: block;
  white-space: nowrap;
  margin-left: 0.25em;
  margin-right: 0.25em;
}
.unpassed-reason__item::after {
  position: absolute;
  top: 0;
  left: -20px;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 24px;
  content: "";
  color: #211c15;
}
.unpassed-reason__item--success {
  color: #19b394;
}
.unpassed-reason__item--success::after {
  color: #19b394;
  content: "";
}

.iconlist {
  display: block;
  margin-bottom: 2px;
}
@media (min-width: 992px) {
  .iconlist {
    display: inline-block;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .iconlist + * {
    display: inline-block;
  }
}
.iconlist [class^=icon-], .iconlist [class*=" icon-"] {
  font-size: 24px;
}
@media (min-width: 992px) {
  .iconlist [class^=icon-]:last-child, .iconlist [class*=" icon-"]:last-child {
    margin-right: 10px;
  }
}

.review-file-detail {
  display: block;
}
.review-file-detail__btn {
  font-weight: bold;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .review-file-detail__btn {
    display: block;
  }
}

.review-upload__title {
  font-size: 18px;
  color: #211c15;
  margin-bottom: 20px;
  line-height: 1;
}

.image-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .image-list {
    grid-gap: 16px;
    margin-bottom: 16px;
  }
}
.image-list__item {
  border: 1px solid transparent;
  transition: border 0.3s;
  background: #eeeeee;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-list__item:hover, .image-list__item:active, .image-list__item:focus {
  border-color: #ff6e62;
}

.download-list__item {
  height: 42px;
  border: 1px solid #d5d5d5;
  transition: border 0.3s;
}
.download-list__item > a {
  padding: 0 14px;
  height: 100%;
}
.download-list__item:not(:last-child) {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .download-list__item:not(:last-child) {
    margin-bottom: 16px;
  }
}
.download-list__item [class^=icon-], .download-list__item [class*=" icon-"] {
  font-size: 24px;
}
.download-list__item:hover, .download-list__item:active, .download-list__item:focus {
  border-color: #ff6e62;
}
.download-list__inner {
  flex: 1 1 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}
.download-list__name {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.download-list__name [class^=icon-], .download-list__name [class*=" icon-"] {
  margin-right: 8px;
}
.download-list__text {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.iconlist .icon-picture,
.iconlist .icon-pdf,
.download-list .icon-picture,
.download-list .icon-pdf {
  color: #FD0D00;
}
.iconlist .icon-word,
.download-list .icon-word {
  color: #4B88E5;
}
.iconlist .icon-ppt,
.download-list .icon-ppt {
  color: #FE7541;
}

.iconlist [class^=icon-]:not(:last-child) {
  margin-right: 5px;
}

.list-status__field:not(:last-child) .list-status__list::after {
  content: "";
  display: block;
  margin: 1.5em 5px;
  border-bottom: 1px solid #d5d5d5;
}
.list-status__field--all {
  border-bottom: none;
}
.list-status__field--all:not(:last-child) .list-status__list {
  margin-bottom: 0;
}
.list-status__field--all:not(:last-child) .list-status__list::after {
  display: none;
}
.list-status__item {
  margin-bottom: 0.25em;
}
.list-status__item:first-child .list-status__name {
  color: #ff6e62;
  font-weight: bold;
}
.list-status__item:first-child .list-status__name::before {
  background: #ff6e62;
}
.list-status__field--all .list-status__item:first-child .list-status__name::before {
  display: none;
}
.list-status__item:first-child .list-status__name::after {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  border-radius: 50%;
  border: 1px solid #ff6e62;
  left: 0;
  width: 20px;
  height: 20px;
}
.list-status__field--all .list-status__item:first-child .list-status__name::after {
  display: none;
}
.list-status__field--all .list-status__item:first-child .list-status__name {
  padding-left: 0;
}
.list-status__item:not(:first-child):not(:last-child) {
  position: relative;
}
.list-status__item:not(:first-child):not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 9px;
  width: 1px;
  height: 28px;
  background: #ff6e62;
  z-index: 1;
}
.list-status__link {
  max-width: 260px;
  display: flex;
  text-decoration: none;
  margin-left: -24px;
  margin-right: 0;
  padding: 0.25em 12px 0.25em 24px;
  border-radius: 0 15px 15px 0;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.list-status__link > * {
  position: relative;
  z-index: 2;
}
.list-status__item--current .list-status__link {
  background: #e5e5e5;
}
.list-status__item:not(.list-status__item--current) .list-status__link:hover {
  background: #eeeeee;
}
.list-status__active {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  background: radial-gradient(#eeeeee 0%, #eeeeee 20%, rgba(213, 213, 213, 0.8) 90%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.list-status__amount {
  padding-left: 10px;
  font-size: 0.875em;
  text-align: right;
}
.list-status__item:first-child .list-status__amount {
  color: #ff6e62;
}
.list-status__name {
  flex: 1 1 auto;
  padding-left: 30px;
  position: relative;
}
.list-status__name::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid #ff6e62;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 5px);
  left: 5px;
}
.list-status__icon {
  margin-right: 0.25em;
  display: none;
}
.list-status__new-count {
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  text-align: center;
  background: #ff6e62;
  border-radius: 10px;
  color: #fff;
  font-size: 0.75em;
  line-height: 20px;
  display: none;
}
.list-status__item--has-new .list-status__new-count {
  display: block;
}

/*步驟內容頁面*/
.step {
  counter-reset: steps;
  overflow: hidden;
}
.step__process {
  display: flex;
  overflow-x: auto;
  margin-bottom: 3em;
}
@media (min-width: 768px) {
  .step__process {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1em;
  }
}
@media (min-width: 992px) {
  .step__process {
    max-width: 700px;
  }
}
.step__process::-webkit-scrollbar, .step__process::-webkit-scrollbar-track, .step__process::-webkit-scrollbar-thumb, .step__process::-webkit-scrollbar-button {
  display: none;
}
.step__process-inner {
  flex: 1 0 auto;
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  .step__process-title {
    font-size: 1.125em;
  }
}
.step__process-item {
  counter-increment: steps;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-basis: 150px;
  min-width: 80px;
  max-width: 150px;
  flex-grow: 1;
  position: relative;
}
.step__process-block {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #aaa;
  color: #fff;
  border-radius: 50%;
  margin-bottom: 0.5em;
}
.step__process-item--active .step__process-block {
  background: #211c15;
}
.step__process-item:not(:last-child) .step__process-block::after {
  content: "";
  position: absolute;
  width: calc(100% - 30px);
  top: 25px;
  left: calc(50% + 25px);
  border-top: 1px solid #888;
}
.step__process-label--auto-count::before {
  content: counter(steps);
  font-size: 1.25em;
}
@media (min-width: 992px) {
  .step__process-label--auto-count::before {
    font-size: 1.75em;
  }
}
.step__contents {
  position: relative;
}
.step__content {
  background: #fff;
  display: none;
  transform-origin: top;
  margin-bottom: 4rem;
}
.step__content--active {
  display: block;
}
.step__content-header {
  margin-bottom: 2em;
}
.step__content-header--title-only {
  margin-bottom: 25px;
}
.step__content-header--title-only .step__content-title {
  margin-bottom: 0;
}
.step__content-title {
  font-size: 1.375em;
  color: #211c15;
  text-align: center;
  margin-bottom: 0.375rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .step__content-title {
    font-size: 1.5625em;
  }
}
@media (min-width: 992px) {
  .step__content-title {
    font-size: 1.875em;
  }
}
.step__content-header--hasline .step__content-title {
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  border-bottom: 1px solid #d5d5d5;
}
.step__content-subtitle {
  font-size: 1em;
  text-align: center;
}
@media (min-width: 768px) {
  .step__content-subtitle {
    font-size: 1.125em;
  }
}
.step__content--closing-pre, .step__content--closing-next, .step__content--entering-next, .step__content--entering-pre {
  display: block;
}
.step__content--closing-pre, .step__content--closing-next {
  top: 0;
  position: absolute;
  overflow: hidden;
}
.step__content--closing-pre > *:not(.step__content-header), .step__content--closing-next > *:not(.step__content-header) {
  display: none;
}
.step__content--entering-next, .step__content--entering-pre {
  position: relative;
}
.step__content--closing-pre {
  animation: stepLeftOut 0.5s forwards ease-in-out;
}
.step__content--closing-next {
  animation: stepRightOut 0.5s forwards ease-in-out;
}
.step__content--entering-next {
  animation: stepRightIn 0.5s forwards ease-in-out;
}
.step__content--entering-pre {
  animation: stepLeftIn 0.5s forwards ease-in-out;
}
@media (min-width: 1440px) {
  .step__content--sm {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
.step__footer .btn {
  height: 50px;
}
@media (min-width: 992px) {
  .step__fieldset .title-field {
    border: none;
    margin-bottom: 60px;
    padding: 0;
  }
}

/*.step__content動畫*/
@keyframes stepLeftOut {
  0% {
    transform: scale(1);
    left: 0;
  }
  20% {
    opacity: 1;
    transform: scale(0.8);
    left: 0;
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
    left: -100%;
  }
}
@keyframes stepRightOut {
  0% {
    transform: scale(1);
    right: 0;
  }
  20% {
    opacity: 1;
    transform: scale(0.8);
    right: 0;
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
    right: -100%;
  }
}
@keyframes stepRightIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateX(100%);
  }
  80% {
    opacity: 1;
    transform: scale(0.8) translateX(0);
  }
  100% {
    transform: scale(1) translateX(0);
  }
}
@keyframes stepLeftIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateX(-100%);
  }
  80% {
    opacity: 1;
    transform: scale(0.8) translateX(0);
  }
  100% {
    transform: scale(1) translateX(0);
  }
}
/* 列表 */
.table__btn-more {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  transition: all 0.1s, font-size 0s;
  padding: 0.25em 0;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                supported by Chrome, Opera and Firefox */
}
@media (max-width: 1279px) {
  .table__btn-more {
    border: 1px solid #211c15;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    background-color: #fff;
    position: relative;
    z-index: 3;
  }
}
@media (max-width: 1279px) and (min-width: 768px) {
  .table__btn-more {
    display: none;
  }
}
.table__btn-more .table__btn-more-icon {
  margin-left: 0.5em;
}
@media (max-width: 1279px) {
  .table__btn-more .table__btn-more-icon {
    width: 14px;
    height: 11px;
    position: relative;
    overflow: hidden;
  }
  .table__btn-more .table__btn-more-icon:after {
    content: "";
    position: absolute;
    top: calc(50% - 9px);
    border: 6px solid transparent;
    border-bottom: 8px solid #211c15;
    transition: all 0.1s linear;
    opacity: 1;
  }
  .table__btn-more .table__btn-more-icon:before {
    content: "";
    position: absolute;
    top: calc(50% + 17px);
    border: 6px solid transparent;
    border-top: 8px solid #211c15;
    transition: all 0.1s linear;
    opacity: 0;
  }
}
@media (min-width: 1280px) {
  .table__btn-more .table__btn-more-icon {
    display: none;
  }
}
.table__btn-more::after {
  margin-left: 0.5em;
}
@media (min-width: 1280px) {
  .table__btn-more::after {
    font-family: "icomoon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
  }
}
@media (min-width: 1280px) {
  .table__btn-more:hover, .table__btn-more:active, .table__btn-more:focus {
    background-color: transparent;
    border: none;
  }
}
@media (min-width: 1280px) {
  .table__btn-more:hover {
    cursor: pointer;
    color: #ff6e62;
  }
}
@media (max-width: 1279px) {
  .table__btn-more--active .table__btn-more-icon:after {
    top: calc(50% - 20px);
    opacity: 0;
  }
  .table__btn-more--active .table__btn-more-icon:before {
    top: calc(50% - 4px);
    opacity: 1;
  }
}
@media (min-width: 1280px) {
  .table__btn-more--active {
    color: #ff6e62;
  }
}
.table__btn-more-outer {
  display: inline-block;
  position: relative;
}
@media (max-width: 1279px) {
  .table__btn-more-outer {
    width: 100%;
  }
}
.dropdown-links {
  background-color: #fff;
  position: absolute;
  top: 100%;
  right: 0;
  border: 1px solid #e5e5e5;
  padding: 8px 0;
  z-index: 2;
  margin-bottom: 0;
  transform: scaleY(0);
  transition: all 0.1s ease-out, font-size 0s, opacity 0s;
  transform-origin: top;
  opacity: 0;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                supported by Chrome, Opera and Firefox */
}
@media (max-width: 1279px) {
  .dropdown-links {
    width: 100%;
    bottom: 100%;
    top: auto;
    transform-origin: bottom;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    padding: 14px 12px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 16px 10px;
  }
}
@media (max-width: 1279px) and (min-width: 414px) {
  .dropdown-links {
    padding: 20px 18px 36px;
    grid-gap: 16px 20px;
  }
}
@media (max-width: 1279px) and (min-width: 768px) {
  .dropdown-links {
    display: flex;
    justify-content: center;
    transform: scale(1);
    transition: none;
    position: relative;
    box-shadow: none;
    background: #eeeeee;
    border-color: #eeeeee;
    padding: 10px 14px;
    opacity: 1;
  }
}
@media (min-width: 1280px) {
  .dropdown-links {
    border-radius: 10px;
  }
}
.dropdown-links--active {
  transform: scaleY(1);
  opacity: 1;
}
@media (max-width: 1279px) and (min-width: 768px) {
  .dropdown-links__item {
    flex: 1 1 100px;
    max-width: 100px;
  }
}
.dropdown-links__link {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0.5em 17px;
  transition: all 0.1s;
  opacity: 0;
}
@media (max-width: 1279px) {
  .dropdown-links__link {
    border: 1px solid #211c15;
    padding: 0 4px;
    border-radius: 40px;
    justify-content: center;
  }
}
@media (max-width: 1279px) and (min-width: 768px) {
  .dropdown-links__link {
    opacity: 1;
    background: #fff;
  }
}
.dropdown-links__link:hover {
  background-color: #eeeeee;
}
.dropdown-links--active .dropdown-links__link {
  opacity: 1;
}
.dropdown-links__icon {
  font-size: 20px;
  color: #888;
  margin-right: 0.75em;
}
@media (max-width: 1279px) {
  .dropdown-links__icon {
    margin-right: 5px;
  }
}
.dropdown-links__text {
  font-size: 14px;
  white-space: nowrap;
}
.dropdown-links--expand .table__btn-more {
  display: none;
}
@media (min-width: 1280px) {
  .dropdown-links--expand .dropdown-links {
    opacity: 1;
    position: static;
    transform: none;
    transition: none;
    padding: 0;
    border: none;
  }
  .dropdown-links--expand .dropdown-links__item:not(:last-child) {
    margin-bottom: 10px;
  }
  .dropdown-links--expand .dropdown-links__link {
    opacity: 1;
    border: 1px solid #211c15;
    padding: 1px 0.75em;
    border-radius: 40px;
  }
  .dropdown-links--expand .dropdown-links__icon {
    margin-right: 5px;
  }
}
@media (max-width: 767px) {
  .dropdown-links--expand .dropdown-links {
    opacity: 1;
    position: static;
    transform: none;
    transition: none;
    border: none;
    padding: 10px 14px;
    box-shadow: none;
    background: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .dropdown-links--expand .dropdown-links__link {
    opacity: 1;
    border: 1px solid #211c15;
    padding: 1px 0.75em;
    border-radius: 40px;
    background: #fff;
  }
}

.table-bank-account {
  margin-bottom: 80px;
}
@media (max-width: 1439px) {
  .table-bank-account {
    border-top: none;
  }
}
@media (max-width: 1439px) {
  .table-bank-account .table__head {
    display: none;
  }
}
.table-bank-account .table__body {
  font-size: 14px;
}
@media (max-width: 1439px) {
  .table-bank-account .table__row {
    display: grid;
    grid-template: "status" "bank-name" "name" "account" "date" "operation"/1fr;
    padding-top: 1em;
    margin-bottom: 2em;
    border-top: 1px solid #d5d5d5;
    border-bottom: none;
  }
}
@media (max-width: 1439px) and (min-width: 768px) {
  .table-bank-account .table__row {
    padding-top: 0;
    padding-left: 1em;
    padding-right: 1em;
    margin-bottom: 0;
    grid-template: ". . . operation" 20px "bank-name line status operation" "name line date operation" "account line . operation" ". . . operation" 20px/320px 40px 1fr 140px;
  }
}
@media (max-width: 1439px) and (min-width: 768px) and (-ms-high-contrast: none), (max-width: 1439px) and (min-width: 768px) and (-ms-high-contrast: active) {
  .table-bank-account .table__row {
    grid-template: ". . operation" 20px "bank-name status operation" "name date operation" "account . operation" ". . operation" 20px/360px 1fr 140px;
  }
}
@media (max-width: 1439px) and (min-width: 768px) {
  .table-bank-account .table__row::before {
    content: "";
    grid-area: line;
    width: 1px;
    height: 90%;
    margin: auto;
    background: #d5d5d5;
  }
}
@media (max-width: 1439px) and (min-width: 768px) and (-ms-high-contrast: none), (max-width: 1439px) and (min-width: 768px) and (-ms-high-contrast: active) {
  .table-bank-account .table__row::before {
    grid-area: initial;
    position: absolute;
    left: 340px;
    height: 80px;
  }
}
@media (max-width: 1439px) and (-ms-high-contrast: none), (max-width: 1439px) and (-ms-high-contrast: active) {
  .table-bank-account .table__row {
    position: relative;
  }
}
@media (max-width: 1439px) {
  .table-bank-account .table__col {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 1439px) and (min-width: 768px) {
  .table-bank-account .table__col {
    padding: 0;
  }
}
.table-bank-account__bank-name {
  grid-area: bank-name;
}
@media (max-width: 1439px) {
  .table-bank-account__bank-name {
    font-size: 14px;
  }
  .table-bank-account__bank-name::before {
    font-weight: bold;
    color: #211c15;
    content: attr(data-title);
    display: inline-block;
    margin-right: 1em;
  }
}
@media (max-width: 1439px) {
  .table-bank-account__bank-name {
    font-size: 16px;
    margin-bottom: 0.25em;
  }
  .table-bank-account__bank-name.table__col {
    font-weight: bold;
  }
  .table-bank-account__bank-name::before {
    display: none;
  }
}
@media (min-width: 1440px) {
  .table-bank-account__bank-name {
    width: 260px;
  }
}
.table-bank-account__name {
  grid-area: name;
}
@media (max-width: 1439px) {
  .table-bank-account__name {
    font-size: 14px;
  }
  .table-bank-account__name::before {
    font-weight: bold;
    color: #211c15;
    content: attr(data-title);
    display: inline-block;
    margin-right: 1em;
  }
}
@media (min-width: 1440px) {
  .table-bank-account__name {
    width: 180px;
  }
}
.table-bank-account__account {
  grid-area: account;
}
@media (max-width: 1439px) {
  .table-bank-account__account {
    font-size: 14px;
  }
  .table-bank-account__account::before {
    font-weight: bold;
    color: #211c15;
    content: attr(data-title);
    display: inline-block;
    margin-right: 1em;
  }
}
.table-bank-account__type {
  grid-area: type;
}
@media (max-width: 1439px) {
  .table-bank-account__type {
    font-size: 14px;
  }
  .table-bank-account__type::before {
    font-weight: bold;
    color: #211c15;
    content: attr(data-title);
    display: inline-block;
    margin-right: 1em;
  }
}
@media (max-width: 1439px) {
  .table-bank-account__type.table__col {
    display: none;
  }
}
@media (min-width: 1440px) {
  .table-bank-account__type--grid-show {
    display: none;
  }
}
.table-bank-account__status {
  grid-area: status;
}
@media (max-width: 1439px) {
  .table-bank-account__status {
    font-size: 14px;
  }
  .table-bank-account__status::before {
    font-weight: bold;
    color: #211c15;
    content: attr(data-title);
    display: inline-block;
    margin-right: 1em;
  }
}
@media (max-width: 1439px) {
  .table-bank-account__status::after {
    line-height: 24px;
  }
  .table-bank-account__status::before {
    display: none;
  }
}
@media (max-width: 1439px) and (min-width: 768px) {
  .table-bank-account__status.table__col {
    align-items: flex-start;
  }
}
.table-bank-account__date {
  grid-area: date;
}
@media (max-width: 1439px) {
  .table-bank-account__date {
    font-size: 14px;
  }
  .table-bank-account__date::before {
    font-weight: bold;
    color: #211c15;
    content: attr(data-title);
    display: inline-block;
    margin-right: 1em;
  }
}
.table-bank-account .table__operation {
  grid-area: operation;
  margin-top: 1em;
}
@media (min-width: 768px) {
  .table-bank-account .table__operation {
    margin-top: 0;
    padding: 0;
  }
}
@media (min-width: 1440px) {
  .table-bank-account .table__operation {
    width: 100px;
    display: table-cell;
  }
}
@media (min-width: 992px) {
  .table-bank-account .table__operation {
    justify-content: flex-start;
  }
}
.table-bank-account .table__operation .table_btns {
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 1439px) and (max-width: 767px) {
  .table-bank-account .table__operation .table_btns {
    padding: 0.75em;
    background: #eeeeee;
  }
}
@media (max-width: 1439px) and (min-width: 768px) {
  .table-bank-account .table__operation .table_btns {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .table-bank-account .table__operation .table_btns > .btn {
    flex: 0 1 auto;
  }
}
@media (max-width: 1439px) {
  .table-bank-account .table__operation .table_btns .btn + .btn {
    margin-top: 0;
    margin-left: 0.75em;
  }
}
@media (max-width: 1439px) and (min-width: 768px) {
  .table-bank-account .table__operation .table_btns .btn + .btn {
    margin-top: 0.75em;
    margin-left: 0;
  }
}
@media (max-width: 1439px) and (max-width: 767px) {
  .table-bank-account .table__operation .table_btns .btn--third {
    background: #888;
    color: #fff;
  }
  .table-bank-account .table__operation .table_btns .btn--third:active, .table-bank-account .table__operation .table_btns .btn--third:focus {
    background: #211c15;
  }
}
@media (min-width: 1440px) {
  .table-bank-account .table__operation .table_btns {
    justify-content: flex-start;
  }
}
@media (min-width: 1440px) {
  .table-bank-account .table__operation .table_btns .btn {
    max-width: calc(50% - .375em);
    min-width: 70px;
  }
}

.table-comment {
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .table-comment {
    border: none;
  }
}
@media (max-width: 991px) {
  .table-comment .table__head {
    display: none;
  }
}
@media (max-width: 991px) {
  .table-comment .table__body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
}
@media (max-width: 991px) and (-ms-high-contrast: none), (max-width: 991px) and (-ms-high-contrast: active) {
  .table-comment .table__body {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) and (-ms-high-contrast: none) and (min-width: 768px), (max-width: 991px) and (-ms-high-contrast: active) and (min-width: 768px) {
  .table-comment .table__body {
    margin-left: -0.75em;
    margin-right: -0.75em;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .table-comment .table__body {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 991px) {
  .table-comment .table__row {
    padding: 1em;
    border: 1px solid #d5d5d5;
    display: grid;
    gap: 10px;
    grid-template: "kol kol" 70px "grade time" 17px "comment comment" auto/auto 1fr;
  }
}
@media (max-width: 991px) and (-ms-high-contrast: none), (max-width: 991px) and (-ms-high-contrast: active) {
  .table-comment .table__row {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 991px) and (-ms-high-contrast: none) and (min-width: 768px), (max-width: 991px) and (-ms-high-contrast: active) and (min-width: 768px) {
  .table-comment .table__row {
    flex-basis: calc(50% - 1.5em);
    max-width: calc(50% - 1.5em);
    margin-left: 0.75em;
    margin-right: 0.75em;
    margin-bottom: 1.5em;
  }
}
@media (max-width: 991px) {
  .table-comment .table__row:last-child {
    border-bottom-width: 1px;
  }
}
@media (max-width: 991px) and (-ms-high-contrast: none), (max-width: 991px) and (-ms-high-contrast: active) {
  .table-comment .table__row:not(:last-child) {
    margin-bottom: 1.5em;
  }
}
@media (max-width: 991px) {
  .table-comment .table__col::before {
    display: none;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .table-comment .table__col {
    display: block;
    padding: 0;
  }
}
.table-comment__name {
  font-size: 16px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 2.8em;
  line-height: 1.4;
}
@media (max-width: 991px) {
  .table-comment__kol {
    grid-area: kol;
    font-size: 16px;
  }
  .table-comment__kol > .d-flex {
    width: 100%;
  }
  .table-comment__kol a {
    color: #555555;
  }
}
@media (max-width: 991px) {
  .table-comment__grade {
    grid-area: grade;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .table-comment__comment {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .table-comment__comment {
    grid-area: comment;
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .table-comment__time {
    grid-area: time;
    justify-content: flex-end;
    line-height: 1;
    color: #888;
    align-self: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .table-comment__time.table__col {
    text-align: right;
  }
}
@media (max-width: 991px) {
  .table-comment__time br {
    display: none;
  }
}

.notification {
  font-size: 14px;
}
.notification__row {
  border: 1px solid #d5d5d5;
}
@media (max-width: 991px) {
  .notification__row {
    padding: 1em 1em 1.25em;
    min-height: 100px;
    display: grid;
    grid-gap: 10px;
    grid-template: "state time operation" 26px "content content operation"/50px 1fr 40px;
  }
  .notification__row:not(:first-child) {
    margin-top: -1px;
  }
}
@media (min-width: 992px) {
  .notification__col {
    padding: 26px 10px;
    vertical-align: middle;
  }
  .notification__col:first-child {
    padding-left: 20px;
  }
  .notification__col:last-child {
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .notification__state {
    grid-area: state;
  }
}
@media (max-width: 991px) {
  .notification__time {
    grid-area: time;
  }
}
@media (max-width: 991px) {
  .notification__content {
    grid-area: content;
  }
}
@media (max-width: 991px) {
  .notification__operation {
    grid-area: operation;
  }
}
@media (min-width: 992px) {
  .notification__state {
    width: 70px;
  }
}
.notification__tag {
  font-size: 14px;
  font-weight: bold;
  background: #e5e5e5;
  color: #fff;
  width: 50px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.notification__row--new .notification__tag {
  background: #ff6e62;
}
.notification__content {
  font-size: 16px;
}
.notification__content a {
  color: #ff6e62;
  font-weight: bold;
}
.notification__inner {
  word-break: break-all;
}
@media (min-width: 992px) {
  .notification__inner {
    min-height: 48px;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .notification__time {
    line-height: 26px;
  }
}
@media (min-width: 992px) {
  .notification__time {
    width: 110px;
  }
}
@media (min-width: 992px) {
  .notification__time span {
    display: block;
  }
}
@media (min-width: 992px) {
  .notification__operation {
    width: 115px;
  }
}
.notification .btn {
  max-width: 85px;
}
@media (max-width: 991px) {
  .notification .btn {
    height: 40px;
    border-radius: 4px;
    background: transparent;
    border-color: transparent;
    transition: all 0.2s;
  }
  .notification .btn:active {
    transform: scale(0.8);
  }
  .notification .btn:active, .notification .btn:focus {
    color: #211c15;
  }
  .notification .btn [class^=icon] {
    margin-right: 0;
  }
  .notification .btn .btn-text {
    display: none;
  }
}

.table-quotation {
  margin-bottom: 25px;
  border-top: 5px solid #d5d5d5;
  border-bottom: 5px solid #d5d5d5;
}
@media (min-width: 768px) {
  .table-quotation {
    border-top: none;
    border-bottom: none;
  }
}
.table-quotation .table__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  -ms-grid-columns: 1fr 100px;
  grid-template-columns: 1fr 100px;
  padding: 0.75em;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 768px) {
  .table-quotation .table__row {
    display: table-row;
  }
}
.table-quotation .table__row > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.table-quotation .table__row > *:nth-child(2) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.table-quotation .table__row > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.table-quotation .table__row > *:nth-child(5) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.table-quotation .table__row:last-child {
  border-bottom: 4px solid #d5d5d5;
}
.table-quotation .table__operation {
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 3;
  grid-row-end: 4;
  -ms-grid-column: 2;
  grid-column-start: 2;
  justify-items: center;
}
@media (min-width: 768px) {
  .table-quotation .table__operation {
    width: 100px;
    display: table-cell;
  }
}

.table-rate {
  margin-bottom: 3rem;
}
@media (max-width: 1279px) {
  .table-rate {
    border: none;
  }
}
@media (max-width: 1279px) {
  .table-rate .table__head {
    display: none;
  }
}
@media (max-width: 1279px) {
  .table-rate .table__body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
}
@media (max-width: 1279px) and (-ms-high-contrast: none), (max-width: 1279px) and (-ms-high-contrast: active) {
  .table-rate .table__body {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 1279px) and (-ms-high-contrast: none) and (min-width: 768px), (max-width: 1279px) and (-ms-high-contrast: active) and (min-width: 768px) {
  .table-rate .table__body {
    margin-left: -0.75em;
    margin-right: -0.75em;
  }
}
@media (max-width: 1279px) and (min-width: 768px) {
  .table-rate .table__body {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1279px) {
  .table-rate .table__row {
    padding: 1em;
    border: 1px solid #d5d5d5;
    display: grid;
    gap: 10px;
    grid-template: "case case" 70px "grade time" 17px "kol kol" 14px "comment comment" auto/auto 1fr;
  }
}
@media (max-width: 1279px) and (-ms-high-contrast: none), (max-width: 1279px) and (-ms-high-contrast: active) {
  .table-rate .table__row {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 1279px) and (-ms-high-contrast: none) and (min-width: 768px), (max-width: 1279px) and (-ms-high-contrast: active) and (min-width: 768px) {
  .table-rate .table__row {
    flex-basis: calc(50% - 1.5em);
    max-width: calc(50% - 1.5em);
    margin-left: 0.75em;
    margin-right: 0.75em;
    margin-bottom: 1.5em;
  }
}
@media (max-width: 1279px) {
  .table-rate .table__row:last-child {
    border-bottom-width: 1px;
  }
}
@media (max-width: 1279px) and (-ms-high-contrast: none), (max-width: 1279px) and (-ms-high-contrast: active) {
  .table-rate .table__row:not(:last-child) {
    margin-bottom: 1.5em;
  }
}
@media (max-width: 1279px) {
  .table-rate .table__col::before {
    display: none;
  }
}
@media (max-width: 1279px) and (min-width: 768px) {
  .table-rate .table__col {
    display: block;
    padding: 0;
  }
}
.table-rate__name {
  font-size: 16px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 2.8em;
  line-height: 1.4;
}
.table-rate__kol {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (min-width: 1280px) {
  .table-rate__kol {
    max-width: 100px;
  }
}
@media (max-width: 1279px) {
  .table-rate__case {
    grid-area: case;
    font-size: 16px;
  }
  .table-rate__case > .d-flex {
    width: 100%;
  }
  .table-rate__case a {
    color: #555555;
  }
}
@media (max-width: 1279px) {
  .table-rate__kol {
    grid-area: kol;
  }
  .table-rate__kol.table__col {
    font-weight: bold;
    line-height: 1;
  }
}
@media (max-width: 1279px) {
  .table-rate__grade {
    grid-area: grade;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .table-rate__comment {
    font-size: 16px;
  }
}
.table-rate__comment-inner {
  word-break: break-all;
}
@media (max-width: 1279px) {
  .table-rate__comment {
    grid-area: comment;
    margin-bottom: 10px;
  }
}
@media (max-width: 1279px) {
  .table-rate__time {
    grid-area: time;
    justify-content: flex-end;
    line-height: 1;
    color: #888;
    align-self: center;
  }
}
@media (max-width: 1279px) and (min-width: 768px) {
  .table-rate__time.table__col {
    text-align: right;
  }
}
@media (max-width: 1279px) {
  .table-rate__time br {
    display: none;
  }
}

.disable-block {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  z-index: 3;
  background: rgba(33, 28, 21, 0.5);
}
.disable-block__text {
  font-size: 24px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .disable-block__text {
    font-size: 26px;
  }
}
.disable-block__control {
  display: flex;
  justify-content: center;
  margin-top: 0.25rem;
}
.disable-block__control .btn {
  width: 120px;
}

.info-block {
  background: #000;
}
.info-block--active, .info-block--part-active {
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 10;
}
.info-block__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.info-block__bar {
  position: relative;
}
.info-block__button {
  width: 150px;
  height: 50px;
  border: 2px solid #fff;
  font-size: 20px;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  background: #211c15;
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.info-block__button-inner {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.info-block--active .info-block__button-inner {
  display: none;
}
.info-block__button-inner--active {
  display: none;
}
.info-block--active .info-block__button-inner--active {
  display: flex;
}

/*------------------------------麵包屑------------------------------*/
.breadcrumb {
  display: none;
  font-size: 0.875em;
  /*14px/16px*/
  padding: 8px 0;
  margin: 0;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .breadcrumb {
    padding: 14px 0;
  }
}
@media (min-width: 992px) {
  .breadcrumb {
    display: block;
    padding: 15px 0;
  }
}
.breadcrumb__item {
  display: inline;
  color: #888;
}
.breadcrumb__item::before {
  content: ">";
  margin: 0 3px;
}
.breadcrumb__item:first-child::before {
  display: none;
}
.breadcrumb__item:not(.breadcrumb__item--current) .breadcrumb__link:focus, .breadcrumb__item:not(.breadcrumb__item--current) .breadcrumb__link:active {
  color: #666;
}
@media (min-width: 992px) {
  .breadcrumb__item:not(.breadcrumb__item--current) .breadcrumb__link:active, .breadcrumb__item:not(.breadcrumb__item--current) .breadcrumb__link:hover {
    color: #666;
    text-decoration: none;
  }
}
.breadcrumb__item.breadcrumb__item--current {
  text-decoration: none;
}
.breadcrumb__item.breadcrumb__item--current .breadcrumb__link {
  text-decoration: none;
}
.breadcrumb__item.breadcrumb__item--current .breadcrumb__link:focus, .breadcrumb__item.breadcrumb__item--current .breadcrumb__link:active {
  color: #888;
}
.breadcrumb__link {
  color: #888;
  text-decoration: underline;
}
.breadcrumb__icon {
  margin-top: -4px;
  font-size: 22px;
}

/*下拉選單*/
/*身分選單*/
.dropdown-menu {
  border-top: 1px solid #707070;
  padding-top: 0.875em;
  overflow-y: auto;
  min-height: calc(100% - 40px);
  max-height: calc(100% - 40px);
}
@media (min-width: 992px) {
  .dropdown-menu {
    max-height: 200px;
  }
}
.dropdown-menu:not(:last-child) {
  margin-bottom: 1.875em;
}
.dropdown-menu__link {
  display: block;
  padding: 0.5em 0.75em;
  text-decoration: none;
  color: #211c15;
  transition: background 0.2s;
}
.dropdown-menu__link:hover {
  background: #eeeeee;
}
.dropdown-menu__item--current .dropdown-menu__link {
  font-weight: bold;
  color: #ff6e62;
}
.dropdown-menu__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.dropdown-menu__img {
  width: 40px;
}
.dropdown-menu__text {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 1.4em;
  line-height: 1.4;
}

/*頁底*/
.footer {
  background: #211c15;
  color: #fff;
}
.footer__fields {
  padding: 45px 5% 55px;
}
@media (min-width: 768px) {
  .footer__fields {
    display: flex;
    padding: 40px 20px 40px;
  }
}
@media (min-width: 992px) {
  .footer__fields {
    max-width: calc(1440px + 5em);
    margin: 0 auto;
  }
}
.footer__field:not(:last-child) {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .footer__field:not(:last-child) {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .footer__field:nth-child(1) {
    flex: 1 1 400px;
    max-width: 400px;
  }
}
@media (min-width: 992px) {
  .footer__field:nth-child(1) {
    flex: 1 1 350px;
    max-width: 350px;
  }
}
@media (min-width: 1280px) {
  .footer__field:nth-child(1) {
    flex: 1 1 500px;
    max-width: 500px;
  }
}
@media (min-width: 768px) {
  .footer__field:nth-child(2) {
    flex: 1 1 0px;
    max-width: 0px;
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .footer__field:nth-child(2) {
    flex: 1 1 170px;
    max-width: 170px;
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .footer__field:nth-child(3) {
    flex: 1 1 260px;
    max-width: 260px;
    margin-left: 5%;
  }
}
@media (min-width: 992px) {
  .footer__field:nth-child(3) {
    flex: 1 1 280px;
    max-width: 280px;
    margin-left: 45px;
  }
}
@media (min-width: 992px) {
  .footer__inner {
    padding: 0 1em;
    max-width: calc(1440px + 5em);
    margin: 0 auto;
  }
}
.footer__inner--bg-gray {
  background: #333;
}
@media (min-width: 992px) {
  .footer__inner--bg-gray {
    padding: 0 1em;
    max-width: none;
  }
}
.footer__title {
  font-size: 1.25em;
  font-weight: normal;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .footer__title {
    margin-bottom: 1.5rem;
  }
}
.footer__items {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.footer__items--auto {
  margin: 0 -10px;
}
@media (min-width: 768px) {
  .footer__items--auto {
    flex-direction: column;
  }
}
.footer__item {
  text-align: left;
  font-size: 14px;
  line-height: 34px;
}
.footer__items--col .footer__item {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}
@media (min-width: 768px) {
  .footer__items--col .footer__item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}
@media (min-width: 992px) {
  .footer__items--col .footer__item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}
.footer__items--auto .footer__item {
  flex: 0 0 auto;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .footer__item {
    width: auto;
  }
}
.footer__logo {
  width: 126px;
}
.footer__link {
  color: #d5d5d5;
}
.footer__text {
  line-height: 50px;
  font-size: 14px;
  text-align: center;
}
.footer__contact {
  margin-bottom: 0.5rem;
  color: #fff;
}
.footer__info {
  color: #d5d5d5;
  font-size: 0.875em;
  line-height: 24px;
}
.footer__contact, .footer__copyright {
  display: block;
}
@media (min-width: 992px) {
  .footer__contact, .footer__copyright {
    display: inline-block;
  }
}
html {
  position: relative;
}

body.header-fixed {
  overflow: hidden;
}

body.scroll-fixed {
  overflow: hidden;
}

/*wrap 最外框 */
.main-warp {
  margin-top: 54px;
  /*min-height: calc(100vh - 54px - 84px);*/
  /*避免內容重疊回到頂端按鈕*/
}
@media (min-width: 992px) {
  .main-warp {
    margin-top: 66px;
    min-height: calc(100vh - 66px - 40px);
  }
}

.content-wrap {
  padding: 1.5em 5%;
}
.content-wrap--have-filter {
  margin-top: 108px;
}
@media (min-width: 992px) {
  .content-wrap--have-filter {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .content-wrap {
    padding: 2em 1.5em 1.5em;
  }
}
.content-wrap--empty .wrap__content {
  display: none;
}
.content-wrap--empty .wrap__header {
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .content-wrap .container {
    max-width: calc(100vw - 1.5em);
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .content-wrap .container {
    max-width: 1440px;
    margin: 0 auto;
  }
  .content-wrap .content-wrap .container {
    max-width: 1280px;
  }
}
@media (min-width: 992px) {
  .content-wrap--medium .container {
    max-width: 1280px;
  }
}

.wrap {
  background: #fff;
  min-height: 100%;
  position: relative;
}
.wrap__inner {
  margin: 0 auto;
  max-width: 1920px;
  padding: 0 20px;
}
@media (min-width: 1440px) {
  .wrap__inner {
    padding: 0 40px;
  }
}
.wrap__inner--no-padding {
  padding: 0;
}
.wrap__title {
  border-bottom: 1px solid #d5d5d5;
  font-size: 1.375em;
  padding-bottom: 14px;
  margin-bottom: 1em;
  font-weight: bold;
  color: #211c15;
}
@media (min-width: 768px) {
  .wrap__title {
    font-size: 1.5625em;
  }
}
@media (min-width: 992px) {
  .wrap__title {
    font-size: 1.75em;
  }
}
.wrap__title--nodesc {
  border: none;
  margin-bottom: 0;
  margin-top: 1.75rem;
}
.wrap__title--hide {
  overflow: hidden;
  width: 0;
  height: 0;
}
.wrap__link {
  text-decoration: none;
}
.wrap__desc {
  font-size: 1em;
  margin-bottom: 1em;
}
@media (min-width: 1440px) {
  .wrap__desc:not(.wrap__desc--normal) {
    font-size: 1.125em;
    line-height: 30px;
  }
}
.wrap__desc--have-link {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .wrap__desc--have-link {
    flex-wrap: nowrap;
  }
}
.wrap__desc-text {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 2.8em;
  line-height: 1.4;
  margin-bottom: 0.5em;
  text-decoration: none;
}
@media (min-width: 768px) {
  .wrap__desc-text {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 1.4em;
    line-height: 1.4;
    flex: 1 1 auto;
  }
}
.wrap__desc-link {
  white-space: nowrap;
  display: block;
  flex: 1 1 100%;
  max-width: 100%;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .wrap__desc-link {
    margin-left: 100px;
    flex: 1 1 100px;
    max-width: 100px;
    text-align: right;
  }
  .wrap__link:hover .wrap__desc-link {
    text-decoration: none;
  }
}
.wrap__desc--has-type {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .wrap__desc--has-type {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .wrap__desc--has-type > * {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .wrap__desc--has-type {
    justify-content: space-between;
  }
}
.wrap__desc--has-type .wrap__desc-is-link {
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .wrap__desc--has-type .wrap__desc-is-link {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.8em;
    line-height: 1.4;
  }
}
@media (min-width: 768px) {
  .wrap__desc--has-type .wrap__desc-is-link {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 0;
    max-width: calc(100% - 300px);
  }
}
.wrap__desc--has-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .wrap__desc--has-btn {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .wrap__desc--has-btn > * {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.wrap__desc-btn {
  margin-top: 1em;
}
@media (min-width: 768px) {
  .wrap__desc-btn {
    margin-top: 0;
    flex: 1 1 140px;
    max-width: 140px;
  }
}
.content-wrap--empty .wrap__desc-btn {
  display: none;
}
.wrap__header {
  margin-bottom: 1em;
}
.wrap__header .wrap__title {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #211c15;
  line-height: 1.2;
}
.wrap__header .wrap__desc {
  margin-bottom: 0;
}
.wrap__header--bordered {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 1.5rem;
}
.wrap__header--bordered .wrap__desc {
  margin-bottom: 14px;
}
.wrap__header--bordered-mobile {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .wrap__header--bordered-mobile {
    margin-bottom: 0;
    border-bottom: none;
  }
}
.wrap__header--center {
  text-align: center;
}
@media (max-width: 991px) {
  .wrap__header--center-mobile {
    text-align: center;
  }
}
.wrap__header--paddingless {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .wrap__header--paddingless-mobile {
    padding-bottom: 0;
  }
}
.wrap__section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.2rem;
}
.wrap__section--bordered {
  border-top: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
}
.wrap__section--bordered + .text.line-height--normal {
  margin-bottom: 3rem;
}
.wrap__section--bg {
  background: #e5e5e5;
  padding: 12px;
}
.wrap__section-title {
  font-weight: bold;
  color: #211c15;
}
@media (min-width: 992px) {
  .wrap__section-title {
    padding: 0;
  }
}
.wrap__section .input-field:last-child {
  margin-bottom: 0;
}
.wrap__section + .input-field {
  margin-bottom: 1.2rem;
}
.wrap__message {
  font-size: 14px;
  margin-top: 0.75em;
  background: #eeeeee;
  padding: 10px 12px;
}
@media (min-width: 768px) {
  .wrap__message {
    font-size: 16px;
  }
}
.wrap__content-mb {
  margin-bottom: 80px;
}

/*主要頁面內容 main-content*/
.main-content {
  min-height: calc(100vh - 54px - 74px);
}

/*有下方系統操作按鈕類別頁面的內容部分(為區隔按鈕與內容)*/
.system-warp {
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .system-warp {
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
  }
}
@media (min-width: 992px) {
  .system-warp--content {
    max-width: calc(1280px + 3em);
  }
}
.content-wrap > .container > .row > .system-warp {
  margin-bottom: 0;
}

/**
有邊框且最大寬度1280px的部分
 */
.content-wrap--bordered .wrap__header {
  border-bottom: 1px solid #d5d5d5;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .content-wrap--bordered .wrap__header {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.content-wrap--bordered .wrap__title {
  text-align: center;
}
@media (min-width: 768px) {
  .content-wrap--bordered .wrap__title {
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media (min-width: 992px) {
  .content-wrap--bordered .wrap__title {
    border: none;
    margin-bottom: 0;
  }
}
.content-wrap--bordered .wrap__content {
  position: relative;
  padding-bottom: 4em;
}
@media (min-width: 768px) {
  .content-wrap--bordered .wrap__content {
    padding-left: 130px;
    padding-right: 130px;
  }
}
.content-wrap--bordered .wrap__content::after {
  content: "";
  border-bottom: 1px solid #d5d5d5;
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  .content-wrap--bordered .wrap__content::after {
    width: calc(100% - 100px);
    left: 50px;
  }
}
@media (min-width: 992px) {
  .content-wrap--bordered .wrap__content::after {
    border-bottom: none;
  }
}
@media (min-width: 992px) {
  .content-wrap--bordered .wrap__content {
    padding: 50px;
    border: 1px solid #d5d5d5;
  }
}
@media (min-width: 992px) {
  .content-wrap--bordered {
    margin-left: auto;
    margin-right: auto;
    max-width: calc(1280px + 3em);
  }
  .content-wrap--bordered > .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  .content-wrap--bordered.content-wrap--has-sidebar {
    max-width: none;
  }
}
.content-wrap--bordered .wrap__header--align-left .wrap__title {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0.5rem;
}
.content-wrap--bordered .wrap__header--align-left .wrap__title,
.content-wrap--bordered .wrap__header--align-left .wrap__desc {
  text-align: left;
}
@media (min-width: 768px) {
  .content-wrap--bordered-content-fill .wrap__content {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .content-wrap--has-sidebar {
    margin-top: 108px;
  }
}
.content-wrap--has-sidebar .wrap__title {
  text-align: center;
}
.content-wrap--has-sidebar .wrap__header .wrap__desc {
  text-align: center;
}
.content-wrap--has-sidebar .wrap__header--align-left .wrap__title,
.content-wrap--has-sidebar .wrap__header--align-left .wrap__desc {
  text-align: left;
}
.content-wrap--normal .wrap__header {
  margin-left: -15px;
  margin-right: -15px;
}
@media (min-width: 992px) {
  .content-wrap--normal .wrap__header {
    margin-left: 0;
    margin-right: 0;
  }
}
.content-wrap--normal .wrap__title {
  margin-left: -15px;
  margin-right: -15px;
}
@media (min-width: 992px) {
  .content-wrap--normal .wrap__title {
    margin-left: 0;
    margin-right: 0;
  }
}
.content-wrap--normal .wrap__content {
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .content-wrap--normal .wrap__content {
    padding-left: 0;
    padding-right: 0;
  }
}
.content-wrap--normal .wrap__content::after {
  width: calc(100% + 30px);
  left: -15px;
}
@media (max-width: 991px) {
  .content-wrap--title-desc .wrap__header {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 2em;
    padding-bottom: 1em;
    border-bottom: 1px solid #d5d5d5;
  }
}
@media (min-width: 992px) {
  .content-wrap--title-desc .wrap__title {
    margin-bottom: 0.5rem;
  }
}
.content-wrap--title-desc .wrap__content::after {
  width: calc(100% + 30px);
  left: -15px;
}

/*自訂滾動條*/
::-webkit-scrollbar {
  width: 10px !important;
  height: 10px !important;
}

::-webkit-scrollbar:hover {
  width: 20px;
  height: 20px;
}

::-webkit-scrollbar-track {
  background-color: #fafafa;
  border: 1px solid #f0f0f0;
}

::-webkit-scrollbar-thumb {
  background-color: #e5e5e5;
  border-radius: 16px;
  border: 4px solid rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-button {
  display: none;
}

.noscrollbar::-webkit-scrollbar,
.noscrollbar::-webkit-scrollbar-track,
.noscrollbar::-webkit-scrollbar-thumb,
.noscrollbar::-webkit-scrollbar-button {
  display: none;
}

.noscrollbar *::-webkit-scrollbar,
.noscrollbar *::-webkit-scrollbar-track,
.noscrollbar *::-webkit-scrollbar-thumb,
.noscrollbar *::-webkit-scrollbar-button {
  display: none;
}

/*列表無資料*/
.emptyshow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  padding: 70px 0;
  flex: 1 1 auto;
}
@media (min-width: 768px) {
  .emptyshow {
    padding: 70px;
    border: 1px solid #d5d5d5;
    min-height: 590px;
  }
  .member-template__content .emptyshow {
    min-height: 200px;
    padding: 50px;
  }
}
.content-wrap .emptyshow {
  display: none;
}
.content-wrap--empty .emptyshow {
  display: flex;
}
.emptyshow__img {
  max-width: 200px;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .emptyshow__img {
    max-width: 250px;
  }
}
@media (min-width: 992px) {
  .emptyshow__img {
    max-width: 265px;
  }
  .kollist-main-warp .emptyshow__img {
    margin-top: 100px;
  }
}
@media (min-width: 992px) {
  .member-template__content .emptyshow__img {
    max-width: 212px;
    margin-bottom: 1.25em;
  }
}
.emptyshow__btn {
  width: 260px;
}
.member-template__content .emptyshow__btn {
  width: 200px;
}
.emptyshow__text {
  max-width: 260px;
  margin: 0 auto;
  color: #211c15;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .emptyshow__text {
    max-width: 420px;
  }
}
@media (min-width: 992px) {
  .emptyshow__text {
    max-width: 530px;
  }
}
@media (min-width: 992px) {
  .member-template__content .emptyshow__text {
    max-width: 370px;
    margin-bottom: 1.25em;
  }
}

.trigger-icon {
  margin-left: 0.5em;
  font-size: 1.25em;
  font-weight: bold;
  transition: transform 0.4s;
}
.sidebar--open .trigger-icon {
  transform: rotate(180deg);
}

@media (min-width: 992px) {
  .member-template {
    display: flex;
  }
}
@media (min-width: 992px) {
  .member-template__sidebar {
    flex: 1 1 280px;
    max-width: 280px;
  }
}
@media (min-width: 992px) {
  .member-template__content {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: calc(100% - 280px);
    max-width: calc(100% - 280px);
    padding: 0 15px;
  }
}

/**
 側選單
 */
@media (max-width: 991px) {
  .sidebar {
    position: fixed;
    top: 54px;
    left: 0;
    width: 100%;
    z-index: 11;
    background: #fff;
  }
}
.sidebar__trigger {
  display: none;
}
@media (max-width: 991px) {
  .sidebar__trigger {
    background: #211c15;
    color: #fff;
    height: 54px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 2;
  }
}
@media (max-width: 991px) {
  .sidebar__content {
    transition: height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    height: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  .sidebar--open .sidebar__content {
    height: calc(100vh - 54px);
  }
}
@media (max-width: 991px) {
  .sidebar__inner {
    padding: 2em;
    overflow-y: auto;
    max-height: calc(100vh - 108px);
  }
}
@media (min-width: 992px) {
  .sidebar__inner {
    max-width: 200px;
  }
}
.sidebar__header {
  padding: 0 0 1em;
  font-size: 1.125em;
  color: #211c15;
  font-weight: bold;
  border-bottom: 1px solid #211c15;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .sidebar__header {
    display: block;
    font-size: 1.25em;
    padding: 12px 40px 10px;
  }
}
.sidebar--has-sub .sidebar__header {
  display: none;
  padding-left: 52px;
}
@media (min-width: 992px) {
  .sidebar--has-sub .sidebar__header {
    display: block;
  }
}
.sidebar--has-sub .sidebar__inner {
  padding: 0;
}

.type-label {
  font-size: 16px;
  font-weight: bold;
  height: 100%;
  line-height: 26px;
  display: flex;
}
@media (min-width: 768px) {
  .type-label {
    justify-content: flex-end;
    flex: 1 1 300px;
    max-width: 300px;
  }
}
.type-label__inner {
  padding: 4px 15px;
  line-height: 1;
  border: 1px solid #211c15;
  position: relative;
}
.type-label__inner::after {
  content: "";
  display: block;
  border: 6px solid transparent;
  position: absolute;
  transform: rotate(-135deg);
  top: -6px;
  right: -6px;
}
.type-label--facebook .type-label__inner {
  color: #4267B2;
  border: 1px solid #4267B2;
}
.type-label--facebook .type-label__inner::before {
  content: "Facebook";
}
.type-label--facebook .type-label__inner::after {
  border-top: 6px solid #4267B2;
}
.type-label--instagram .type-label__inner {
  color: #F44D91;
  border: 1px solid #F44D91;
}
.type-label--instagram .type-label__inner::before {
  content: "Instagram";
}
.type-label--instagram .type-label__inner::after {
  border-top: 6px solid #F44D91;
}
.type-label--youtube .type-label__inner {
  color: #FD0D00;
  border: 1px solid #FD0D00;
}
.type-label--youtube .type-label__inner::before {
  content: "Youtube";
}
.type-label--youtube .type-label__inner::after {
  border-top: 6px solid #FD0D00;
}
.type-label--blog .type-label__inner {
  color: #FF8933;
  border: 1px solid #FF8933;
}
.type-label--blog .type-label__inner::before {
  content: "Blog";
}
.type-label--blog .type-label__inner::after {
  border-top: 6px solid #FF8933;
}

@media screen and (min-width: 992px) {
  /*lg時20%*/
  .col-lg-20percent {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media screen and (min-width: 1440px) {
  .col-1440-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-1440-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33%;
    flex: 0 0 83.33%;
    max-width: 83.33%;
  }

  .col-1440-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66%;
    flex: 0 0 16.66%;
    max-width: 16.66%;
  }
}
/*logo區*/
.logo {
  overflow: hidden;
  height: 43px;
}
.logo__img {
  width: 82px;
}
@media (min-width: 992px) {
  .logo__img {
    width: 126px;
  }
}
.logo__link {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.logo__name {
  font-size: 0;
  width: 0;
  position: absolute;
  text-indent: -9999px;
}
@media (min-width: 375px) {
  .logo__name {
    /*display: inline-block;*/
  }
}
@media (min-width: 1440px) {
  .logo__name {
    font-size: 1.5em;
    margin-left: 0.25em;
  }
}

/*頁首按鈕*/
.user__trigger,
.notification__trigger,
.invite-cart__trigger,
.nav-wrap__trigger,
.nav-wrap__close_trigger,
.addcase__trigger {
  min-width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative;
}
@media (min-width: 992px) {
  .user__trigger:hover,
.notification__trigger:hover,
.invite-cart__trigger:hover,
.nav-wrap__trigger:hover,
.nav-wrap__close_trigger:hover,
.addcase__trigger:hover {
    cursor: pointer;
  }
}

.addcase__trigger-text {
  display: none;
  font-size: 14px;
  margin: 0 0 0 2px;
}
@media (min-width: 992px) {
  .addcase__trigger-text {
    display: inline;
  }
}

@media (min-width: 768px) {
  .notification__trigger,
.invite-cart__trigger {
    min-width: 55px;
  }
}

/**
  購物車按鈕
 */
.invite-cart__trigger .header__btn-icon {
  display: flex;
  align-items: center;
}

/**
 頁首選單外框
 */
.header {
  height: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #d5d5d5;
  z-index: 14;
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
}
@media (min-width: 992px) {
  .header {
    height: 66px;
  }
}
.header-icon__count {
  background: #d5d5d5;
  color: #fff;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  font-size: 12px;
  padding: 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
  margin-left: -7px;
  margin-top: -15px;
}
@media (min-width: 768px) {
  .header-icon__count {
    margin-left: 0;
    margin-top: 0;
  }
}
.invite-cart__trigger--highlight .header-icon__count, .notification__trigger--have-msg .header-icon__count {
  background: #f96166;
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 35px;
}
@media (min-width: 992px) {
  .header__logo {
    margin-left: 0;
    position: absolute;
    left: 20px;
    top: calc(50% - 21.5px);
  }
}
@media (min-width: 1440px) {
  .header__logo {
    left: 40px;
  }
}
.header--menuless .header__logo {
  margin-left: 0;
}
.header__list-count {
  color: #211c15;
  font-size: 13px;
  align-self: flex-end;
  margin-left: 1em;
  font-weight: bold;
  border-bottom: 1px solid #211c15;
  padding: 2px 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}
@media (max-width: 767px) {
  .header__list-count {
    display: none;
  }
}
@media (min-width: 768px) {
  .header__list-count {
    margin-bottom: 8px;
  }
}
@media (min-width: 992px) {
  .header__list-count {
    display: none;
  }
}
@media (min-width: 1280px) {
  .header__list-count {
    display: block;
    margin-bottom: 4px;
  }
}
.header__list-count.header__list-count--animating {
  opacity: 1;
  transform: translateX(0);
}
.header__inner {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  height: 100%;
  padding: 0 10px;
}
@media (min-width: 992px) {
  .header__inner {
    max-width: 1920px;
    padding: 0 20px;
  }
}
@media (min-width: 1440px) {
  .header__inner {
    padding: 0 40px;
  }
}
.header__navbar, .header__right-side-nav {
  position: absolute;
  top: 48.5px;
  width: 100%;
  left: 0;
}
@media (min-width: 768px) {
  .header__navbar, .header__right-side-nav {
    width: auto;
  }
}
@media (min-width: 992px) {
  .header__navbar {
    position: static;
  }
}
.header--menuless .header__navbar {
  display: none;
}
.header__inner-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
@media (min-width: 992px) {
  .header__inner-bar {
    position: static;
    justify-content: center;
  }
}
.header__function {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 375px) {
  .header__function {
    margin-right: -5px;
  }
}
@media (min-width: 992px) {
  .header__function {
    position: absolute;
    right: 20px;
    top: calc(50% - 20px);
  }
}
@media (min-width: 1440px) {
  .header__function {
    right: 40px;
  }
}
@media (min-width: 375px) {
  .header__function > * {
    margin-right: 5px;
  }
}
.header__icon-brand--bar {
  width: 20px;
  height: 10px;
  display: block;
  border: 2px solid #555555;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  background: #555555;
}
.header__icon-brand--bar:not(:last-child) {
  margin-bottom: 2px;
}
.header__icon-brand--bar:nth-child(1) .header__icon-brand--dot {
  left: 13px;
}
.header__brand--active .header__icon-brand--bar:nth-child(1) .header__icon-brand--dot {
  left: 3px;
}
.header__icon-brand--bar:nth-child(2) .header__icon-brand--dot {
  left: 3px;
}
.header__brand--active .header__icon-brand--bar:nth-child(2) .header__icon-brand--dot {
  left: 13px;
}
.header__icon-brand--bar:nth-child(1) .header__icon-brand--dot::before, .header__icon-brand--bar:nth-child(2) .header__icon-brand--dot::before {
  content: "";
  display: block;
  border-radius: 50%;
  border: 2px solid #555555;
  height: 10px;
  width: 10px;
  position: absolute;
  top: 0;
  left: -5px;
  transition: all 0.2s;
  background: #fff;
}
.header__icon-brand--dot {
  width: 20px;
  height: 10px;
  right: 7px;
  top: -2px;
  position: absolute;
  background: #fff;
  transition: all 0.2s;
}
.header__btn-icon {
  font-size: 1.5625em;
}
.header__btn-icon--sm {
  font-size: 1.25em;
}
.notification__trigger--have-msg .header__btn-icon::after, .invite-cart__trigger--highlight .header__btn-icon::after {
  display: none;
}
.invite-cart__trigger--highlight .header__btn-icon::after {
  display: none;
}
.header__notification {
  display: none;
}
.header__function--login .header__notification {
  display: flex;
}
.header__invite-cart {
  display: none;
}
.header__function--login.header__function--inviting .header__invite-cart {
  display: flex;
}
.header__right-side-nav {
  z-index: 1;
  top: 54px;
  left: auto;
  right: -100vw;
  opacity: 0;
}
@media (min-width: 992px) {
  .header__right-side-nav {
    width: 280px;
  }
}
.header__right-side-nav--active {
  -webkit-animation: menuRightIn 0.2s forwards;
  animation: menuRightIn 0.2s forwards;
  right: 0;
  opacity: 1;
}
@media (min-width: 992px) {
  .header__right-side-nav--active {
    -webkit-animation: menuRightIn--desk 0.2s forwards;
    animation: menuRightIn--desk 0.2s forwards;
    top: 66px;
    position: fixed;
  }
}
.header__right-side-nav--closing {
  -webkit-animation: menuRightOut 0.2s ease-in-out forwards;
  animation: menuRightOut 0.2s ease-in-out forwards;
  right: -100%;
}
.header__brand {
  display: none;
}
.header__function--login .header__brand {
  display: inline-block;
}

/**
 頁首選單
 */
.nav-wrap {
  height: 100%;
}
.nav-wrap__trigger {
  position: absolute;
  top: -43px;
}
@media (min-width: 992px) {
  .nav-wrap__trigger {
    display: none;
  }
}
.nav-wrap__icon-nav {
  height: 3px;
  width: 20px;
  background: #555555;
  content: "";
  display: block;
  border-radius: 0.5px;
  border: 1px solid #555555;
  position: relative;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
.nav-wrap__icon-nav::before, .nav-wrap__icon-nav::after {
  content: "";
  height: 3px;
  width: 20px;
  background: #555555;
  display: block;
  border-radius: 0.5px;
  border: 1px solid #555555;
  position: absolute;
  left: -1px;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
.nav-wrap__icon-nav::before {
  top: -6px;
}
.nav-wrap__icon-nav::after {
  bottom: -6px;
}
.header__navbar--active .nav-wrap__icon-nav {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  height: 1px;
}
.header__navbar--active .nav-wrap__icon-nav::before {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  height: 1px;
  top: -1px;
  left: -1px;
}
.header__navbar--active .nav-wrap__icon-nav::after {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  top: -1px;
  left: -1px;
  opacity: 0;
  height: 0;
}
@media (min-width: 992px) {
  .nav-wrap__dropbox-background {
    background: rgba(33, 28, 21, 0.8);
    height: 0;
    width: 100%;
    position: absolute;
    top: 65px;
    left: 0;
    transition: height 0.5s;
  }
}
.nav-wrap__dropbox-overlay {
  background: rgba(33, 28, 21, 0.8);
  width: 100vw;
  position: absolute;
  z-index: 1;
  height: calc(100vh - 53px);
  top: 5px;
  left: calc(-100vw - 10px);
}
@media (min-width: 992px) {
  .nav-wrap__dropbox-overlay {
    position: static;
    background: none;
    width: auto;
    height: 100%;
  }
}
@media (min-width: 992px) {
  .nav-wrap__dropbox-overlay--closing {
    -webkit-animation: none;
    animation: none;
  }
}
.header__navbar--active .nav-wrap__dropbox-overlay {
  -webkit-animation: menuLeftIn 0.2s forwards;
  animation: menuLeftIn 0.2s forwards;
}
.header__navbar--closing .nav-wrap__dropbox-overlay {
  -webkit-animation: menuLeftOut 0.2s ease-in-out forwards;
  animation: menuLeftOut 0.2s ease-in-out forwards;
}
@media (min-width: 992px) {
  .header__navbar--closing .nav-wrap__dropbox-overlay {
    animation: none;
  }
}
.nav-wrap__dropbox-overlay-white {
  background: #fff;
  width: 100%;
  height: calc(100vh - 53px);
  padding: 2em;
}
@media (min-width: 768px) {
  .nav-wrap__dropbox-overlay-white {
    width: 100vw;
    border-left: 1px solid #eeeeee;
  }
}
@media (min-width: 992px) {
  .nav-wrap__dropbox-overlay-white {
    width: 280px;
    height: calc(100vh - 66px);
    border-bottom: 1px solid #e5e5e5;
    box-shadow: -5px 5px 7px -8px rgba(0, 0, 0, 0.2);
  }
}
.header__right-side-nav--shrink .nav-wrap__dropbox-overlay-white {
  height: auto;
  border-left: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}
.nav-wrap__dropbox-overlay-white .btn + .btn {
  margin-top: 1rem;
}
.nav-wrap__close_trigger {
  float: right;
  position: relative;
  z-index: 2;
}
.nav-wrap__heading {
  text-align: center;
  margin-bottom: 1em;
  color: #555555;
}
.nav-wrap__heading--withline {
  text-align: center;
  margin-bottom: 1em;
  padding: 0.5em 0;
  color: #211c15;
  border-bottom: 1px solid #d5d5d5;
  font-size: 1.125em;
}

.user__name {
  display: none;
  font-size: 0.875em;
}
@media (min-width: 768px) {
  .user__name {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100px;
  }
  .header__function--login .user__name {
    display: inline-block;
  }
}
@media (min-width: 1440px) {
  .user__name {
    max-width: 180px;
  }
}

/*頁首主選單*/
.nav {
  max-height: calc(100vh - 54px);
  overflow-y: auto;
  margin: 0;
  height: 100%;
}
@media (min-width: 992px) {
  .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
  }
}
.nav__item {
  color: #fff;
  background: rgba(33, 28, 21, 0.8);
}
@media (min-width: 992px) {
  .nav__item {
    background: none;
  }
}
.nav__item--has-sub .nav__heading {
  position: relative;
  padding: 0.75em calc(1.25em + 24px) 0.75em 1.25em;
}
@media (min-width: 992px) {
  .nav__item--has-sub .nav__heading {
    padding: 0.75em;
  }
}
@media (min-width: 1440px) {
  .nav__item--has-sub .nav__heading {
    padding: 0.75em 1.25em;
  }
}
.nav__item--has-sub .nav__heading::after {
  color: #fff;
  position: absolute;
  top: calc(50% - 8px);
  right: 1.25em;
  content: "";
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: transform 0.2s;
}
@media (min-width: 992px) {
  .nav__item--has-sub .nav__heading::after {
    display: none;
  }
}
.nav__item--has-sub.nav__item--sub-open .nav__heading::after {
  transform: rotate(180deg);
}
.nav__heading, .nav__subheading {
  display: block;
  padding: 0.75em 1.25em;
  text-decoration: none;
}
.nav__heading {
  border-bottom: 1px solid #d5d5d5;
}
@media (min-width: 992px) {
  .nav__heading {
    border: none;
    height: 100%;
    position: relative;
    line-height: 42px;
  }
  .nav__heading:hover {
    cursor: pointer;
  }
}
@media (min-width: 992px) {
  .nav__item--active .nav__heading::after, .nav__item:hover .nav__heading::after {
    content: "";
    position: absolute;
    top: calc(100% - .3em);
    left: 0;
    width: 100%;
    height: 0.3em;
    background: #211C15;
    -webkit-animation: scale 0.2s linear forwards;
    animation: scale 0.2s linear forwards;
  }
}
.nav__text {
  color: #fff;
}
@media (min-width: 992px) {
  .nav__text {
    color: inherit;
    font-size: 1em;
  }
}
@media (min-width: 1440px) {
  .nav__text {
    font-size: 1.125em;
  }
}
.nav__subnav {
  padding: 0;
  overflow: hidden;
  display: none;
}
@media (min-width: 992px) {
  .nav__subnav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    /*background: rgba(33, 28, 21, .8);*/
    z-index: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1em 0;
  }
  .nav__item:hover .nav__subnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: menuTopIn 0.2s linear forwards;
    animation: menuTopIn 0.2s linear forwards;
  }
}
.nav__subnav--active {
  /*display: block;*/
}
@media (min-width: 992px) {
  .nav__subnav--closing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: menuTopOut 0.2s linear forwards;
    animation: menuTopOut 0.2s linear forwards;
  }
}
.nav__subheading {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid #555555;
}
@media (min-width: 992px) {
  .nav__subheading {
    background: none;
    border: none;
  }
}
.nav__subtext {
  color: #333333;
}
@media (min-width: 992px) {
  .nav__subtext {
    position: relative;
    color: #fff;
  }
}
@media (min-width: 992px) {
  .nav__subitem {
    opacity: 0;
    transition: all 0.5s;
  }
  .nav__subnav--active .nav__subitem {
    position: relative;
    bottom: -10px;
    opacity: 0;
    -webkit-animation: menuBottomIn 0.3s linear 0.2s forwards;
    animation: menuBottomIn 0.3s linear 0.2s forwards;
  }
  .nav__subitem:hover .nav__subtext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    -webkit-animation: scale 0.2s linear forwards;
    animation: scale 0.2s linear forwards;
  }
}

/*選單動畫*/
@-webkit-keyframes menuLeftIn {
  0% {
    opacity: 0;
    left: calc(-100vw - 10px);
  }
  100% {
    opacity: 1;
    left: -10px;
  }
}
@keyframes menuLeftIn {
  0% {
    opacity: 0;
    left: -100vw;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@-webkit-keyframes menuLeftOut {
  0% {
    opacity: 1;
    left: -10px;
  }
  100% {
    opacity: 0;
    left: calc(-100vw - 10px);
  }
}
@keyframes menuLeftOut {
  0% {
    opacity: 1;
    left: 0;
  }
  100% {
    opacity: 0;
    left: calc(-100vw - 10px);
  }
}
@-webkit-keyframes menuRightIn {
  0% {
    opacity: 0;
    right: calc(-100vw - 10px);
  }
  100% {
    opacity: 1;
    right: 0;
  }
}
@keyframes menuRightIn {
  0% {
    opacity: 0;
    right: calc(-100vw - 10px);
  }
  100% {
    opacity: 1;
    right: 0;
  }
}
@-webkit-keyframes menuRightIn--desk {
  0% {
    opacity: 0;
    right: -100vw;
  }
  100% {
    opacity: 1;
    right: 0;
  }
}
@keyframes menuRightIn--desk {
  0% {
    opacity: 0;
    right: -100vw;
  }
  100% {
    opacity: 1;
    right: 0;
  }
}
@-webkit-keyframes menuRightOut {
  0% {
    opacity: 1;
    right: 0;
  }
  100% {
    opacity: 0;
    right: calc(-100vw - 10px);
  }
}
@keyframes menuRightOut {
  0% {
    opacity: 1;
    right: -10px;
  }
  100% {
    opacity: 0;
    right: calc(-100vw - 10px);
  }
}
@-webkit-keyframes menuTopIn {
  0% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: rotate3d(1, 0, 0, -60deg);
    transform: rotate3d(1, 0, 0, -60deg);
  }
  100% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }
}
@keyframes menuTopIn {
  0% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: rotate3d(1, 0, 0, -60deg);
    transform: rotate3d(1, 0, 0, -60deg);
  }
  100% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }
}
@-webkit-keyframes menuTopOut {
  0% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }
  100% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    transform: rotate3d(1, 0, 0, -90deg);
    visibility: hidden;
  }
}
@keyframes menuTopOut {
  0% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }
  100% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    transform: rotate3d(1, 0, 0, -90deg);
    visibility: hidden;
  }
}
@-webkit-keyframes menuBottomIn {
  0% {
    opacity: 0;
    bottom: -1em;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
@keyframes menuBottomIn {
  0% {
    opacity: 0;
    bottom: -1em;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
@-webkit-keyframes scale {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.header__user {
  display: flex;
}
@media (max-width: 767px) {
  .header__user {
    order: 5;
  }
}

.user__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.header__function--login .user__nav {
  display: none;
}
.user__nav-item {
  list-style: none;
  margin: 0;
  padding: 0;
}
.user__nav-link {
  padding: 0 5px;
  display: block;
  font-size: 14px;
  color: #555;
  text-decoration: none;
}
@media (min-width: 1440px) {
  .user__nav-link {
    padding: 0 10px;
    font-size: 16px;
  }
}

/*# sourceMappingURL=main.css.map */
