@charset "UTF-8";
@font-face {
  font-family: "Uniform";
  src: url(../fonts/Uniform.otf);
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Uniform";
  src: url(../fonts/Uniform-Medium.otf);
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Uniform";
  src: url(../fonts/Uniform-Bold.otf);
  font-weight: 700;
  font-display: swap;
}
/**
 * * Allows you to use retina images at various pixel densities.
 * * Examples:
 * *
 * *   +retina(/images/mypic.jpg, 2);
 * *   +retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent);
 * *
 * * @param  {Value}  $path               The path to the file name minus extension.
 * * @param  {Number} $cap:    2          The highest pixel density level images exist for.
 * * @param  {Value}  $size:   auto auto  The intended width of the rendered image.
 * * @param  {Value}  $extras: null       Any other `background` values to be added.
 * */
/**
 * * 往上適應
 * * 引用方式: +media-up($breakpoint-value)
 * */
/**
 * * 往上適應
 * * 引用方式: +media-up-num(自訂數值)
 * */
/**
 * * 往下適應
 * * 引用方式: +media-down($breakpoint-value)
 * */
/**
 * * 往下適應
 * * 引用方式: +media-up-num(自訂數值)
 * */
/**
 * * 範圍內適應
 * * 引用方式: +media-between($lower-breakpoint, $upper-breakpoint)
 * */
/**
 * * 引用方式: +lh(15,22) 前面放 line-height 的 px 值, 後面放 font-size 的 px 值（計算）
 * */
/**
 * * 引用方式: +ls(15,22) 前面放 letter-spacing 的 px 值, 後面放 font-size 的 px 值（計算）
 * */
/*  ===== firefox font weight bold 統一設定為 normal (firefox 在小字為粗體的時候會過粗) ===== */
/**
 * * 引用方式: +gradient(180deg,#fff,4%,#eee,92%)
 * */
/**
 * * margin
 * * 引用方式: +mb(15,22) 前面放 margin 的 px 值, 後面放 font-size 的 px 值
 * */
/**
 * * padding
 * * 引用方式: +pb(15,22) 前面放 padding 的 px 值, 後面放 font-size 的 px 值
 * */
.tabScroller {
  list-style: none;
  display: flex;
  align-items: center;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.tabScroller::-webkit-scrollbar-track {
  background-color: transparent;
}

.tabScroller::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.tabScroller::-webkit-scrollbar-thumb:hover {
  background-color: transparent;
}

.tabScroller::-webkit-scrollbar {
  background-color: transparent;
  display: none;
}

.classTabScroller .scroller-item .scroller-link {
  display: block;
  padding: 12px 24px;
  min-width: 144px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.03rem;
  font-weight: 500;
  color: #B0B0B0;
  text-align: center;
  transition: all ease 400ms;
}
@media (hover: hover) {
  .classTabScroller .scroller-item .scroller-link:hover {
    background-color: #B3934D;
    color: #ffffff;
  }
}
@media (max-width: 991.98px) {
  .classTabScroller .scroller-item .scroller-link {
    min-width: 100px;
    white-space: nowrap;
    width: 100%;
    padding: 4px;
  }
}
.classTabScroller .scroller-item-active .scroller-link {
  background-color: #B3934D;
  color: #ffffff;
}

.orderTabScroller .scroller-item .scroller-link {
  display: block;
  white-space: nowrap;
  height: 100%;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.05);
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.03rem;
  font-weight: 500;
  color: #ffffff;
  border-bottom: 3px solid transparent;
  text-align: center;
  opacity: 0.5;
  transition: all ease 400ms;
}
@media (hover: hover) {
  .orderTabScroller .scroller-item .scroller-link:hover {
    opacity: 1;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
  }
}
.orderTabScroller .scroller-item-active .scroller-link {
  opacity: 1;
  color: #B3934D;
  border-bottom: 3px solid #B3934D;
}

/*# sourceMappingURL=tabScroller.css.map */
