@charset "UTF-8";
/* ==========================
 Variables
========================== */
/* Microsoft Jhenghei 400, 700 */
/* tab */
/* Column */
/* Import
----------------------------- */
/* Crimson Pro ,Noto Serif TC */
@import url("https://fonts.googleapis.com/css2?family=Crimson+Pro:ital@0;1&family=Noto+Serif+TC:wght@400;500;700&display=swap");
/* Rubik, Nanum Myeongjo */
@import url("https://fonts.googleapis.com/css?family=Rubik:400|Nanum+Myeongjo:400,700");
/* ----------------------------------------------- */
/* tab */
/* Column */
/* ==========================
 Mixins
========================== */
/* ==========================
 Middle Part
========================== */
/* ================================
Variables, Functions & Mixins 
================================ */
/*no transiton*/
.bgi_16x9 {
  width: 100%;
  padding: 0;
  padding-top: 56.25%;
  border-radius: 10px;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}

.bgi_4x3 {
  width: 100%;
  padding: 0;
  padding-top: 75%;
  border-radius: 10px;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}

/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  https://github.com/matthieua/sass-css3-mixins

------------------------------------------------------------- */
/*   
  For example:
  @include col(xs,  7); 
  @include col($m-xs-min, 7);
  @include col('(min-width: 1400px)', 7);
  @include col(md, calc(100% - 20px));
*/
@keyframes owlPrev {
  from {
    transform: translate3d(0, 0px, 0);
  }
  50% {
    transform: translate3d(-8px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0px, 0);
  }
}
@keyframes owlNext {
  from {
    transform: translate3d(0, 0px, 0);
  }
  50% {
    transform: translate3d(8px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0px, 0);
  }
}
/* --------------------------
2018.11.07 - Edit scrollbar
-------------------------- */
/* Button Mixins */
/* Arrow Right */
.btn_arrow_r {
  display: block;
  position: relative;
  color: white;
  text-align: right;
  padding: 0.5em;
  padding-right: 2em;
  line-height: 1em;
}
.btn_arrow_r:before {
  content: "\f101";
  position: absolute;
  font-family: FontAwesome;
  font-size: 1.5em;
  width: 1em;
  line-height: 1em;
  text-align: center;
  color: white;
  top: calc(50% - 0.5em);
  right: 0.25em;
}
@media screen and (min-width: 0) and (-webkit-min-device-pixel-ratio: 0.75), screen and (min-width: 0) and (min-resolution: 72dpi) {
  .btn_arrow_r:before {
    font-size: 20px;
  }
}
.btn_arrow_r:hover, .btn_arrow_r:focus {
  color: white;
}
.btn_arrow_r:hover:before, .btn_arrow_r:focus:before {
  animation: arrowR 1s both infinite;
}

@keyframes arrowR {
  from {
    -khtml-transform: translateX(-0.1em);
    transform: translateX(-0.1em);
  }
  50% {
    -khtml-transform: translateX(0.1em);
    transform: translateX(0.1em);
  }
  to {
    -khtml-transform: translateX(-0.1em);
    transform: translateX(-0.1em);
  }
}
.btn_arrow_btm {
  position: relative;
  display: block;
  text-align: center;
  padding-bottom: 20px;
}
.btn_arrow_btm:before {
  content: "\f103";
  position: absolute;
  font-family: FontAwesome;
  font-size: 20px;
  color: #a4c7e5;
  bottom: 0;
  left: calc(50% - 6px);
}
.btn_arrow_btm:hover {
  text-shadow: 0 3px 12px rgba(255, 255, 255, 0.7);
}
.btn_arrow_btm:hover:before {
  text-shadow: 0 3px 12px rgba(255, 255, 255, 0.7);
  animation-name: arrowBtm;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

@keyframes arrowBtm {
  from {
    transform: translate3d(0, 0px, 0);
  }
  50% {
    transform: translate3d(0, 8px, 0);
  }
  100% {
    transform: translate3d(0, 0px, 0);
  }
}
/* Button Cornoer Right Bottom */
.btn_corner_rbtm {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 70px 70px;
  border-color: transparent transparent #a4c7e5 transparent;
  margin: 0;
  transition: all 0.1s ease-in-out;
}
.btn_corner_rbtm span {
  position: absolute;
  right: 0px;
  top: 2.5em;
  -khtml-transform: rotate(-45deg);
  transform: rotate(-45deg);
  color: #727272;
  width: 50px;
  font-size: 12px;
  font-weight: 700;
}
.btn_corner_rbtm:hover {
  border-color: transparent transparent #ccdff0 transparent;
}

/* Button with Icon and Dashed line */
.btn_dashed, .btn_icon_dashed {
  position: relative;
  display: inline-block;
  margin: 20px 0px;
  color: #a4c7e5;
  border-bottom: 1px dotted #a4c7e5;
}
.btn_dashed:hover, .btn_icon_dashed:hover {
  color: #2b0066;
  border-bottom-style: dashed;
}

.btn_icon_dashed {
  margin: 60px 10px;
}
.btn_icon_dashed:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: url(../images/common/icon_btn_id.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: calc(50% - 50px);
  left: -20px;
  z-index: -1;
  color: #a4c7e5;
}

.btn_ghost {
  display: inline-block;
  position: relative;
  line-height: 1em;
  padding: 0.5em;
  border: 1px solid;
  padding-right: 40px;
}
.btn_ghost:before {
  content: "\f101";
  position: absolute;
  font-family: FontAwesome;
  font-size: 20px;
  height: 20px;
  line-height: 20px;
  top: calc(50% - 10px);
  right: 10px;
}
.btn_ghost {
  border-color: #a4c7e5;
  background-color: transparent;
  color: #a4c7e5;
}
.btn_ghost:before {
  color: #a4c7e5;
}
.btn_ghost:hover {
  color: #fff;
  background-color: #a4c7e5;
}
.btn_ghost:hover:before {
  color: #fff;
}
.btn_ghost.main-text {
  border-color: #595757;
  background-color: transparent;
  color: #595757;
}
.btn_ghost.main-text:before {
  color: #595757;
}
.btn_ghost.main-text:hover {
  color: #fff;
  background-color: #595757;
}
.btn_ghost.main-text:hover:before {
  color: #fff;
}
.btn_ghost.reverse {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}
.btn_ghost.reverse:before {
  color: #fff;
}
.btn_ghost.reverse:hover {
  color: #595757;
  background-color: #fff;
}
.btn_ghost.reverse:hover:before {
  color: #595757;
}

.btn_tilt_arrow {
  display: inline-block;
  position: relative;
  line-height: 1em;
  padding: 12px;
  padding-right: 40px;
  color: #a4c7e5;
  margin: 0 10px;
}
.btn_tilt_arrow:before {
  content: "\f101";
  position: absolute;
  font-family: FontAwesome;
  font-size: 20px;
  height: 20px;
  line-height: 20px;
  top: calc(50% - 0.5em);
  right: 10px;
  color: #a4c7e5;
}
.btn_tilt_arrow:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 1px solid #a4c7e5;
  background-color: transparent;
  -khtml-transform: skew(20deg);
  transform: skew(20deg);
  z-index: -1;
}
.btn_tilt_arrow:hover {
  color: #fff;
}
.btn_tilt_arrow:hover:after {
  border-color: transparent;
  background-color: #a4c7e5;
}
.btn_tilt_arrow:hover:before {
  color: #fff;
}

/* Button Action */
.btn_action {
  display: inline-block;
  padding: 3px 5px;
  margin: 2px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1em;
  border-radius: 4px;
  text-align: center;
  white-space: nowrap;
  transition: all 0s ease-in-out;
  border: 1px solid #a4c7e5;
  background-color: #a4c7e5;
}
.btn_action:hover, .btn_action:focus {
  background-color: #7cafda;
  border-color: #7cafda;
}
.btn_action:hover, .btn_action:focus {
  color: #fff;
}
.btn_action.full {
  border: 1px solid #a4c7e5;
  background-color: #a4c7e5;
}
.btn_action.full:hover, .btn_action.full:focus {
  background-color: #7cafda;
  border-color: #7cafda;
}
.btn_action i {
  width: 16px;
  height: 16px;
  line-height: 16px;
}
.btn_action.warning {
  border: 1px solid rgba(211, 151, 0, 0.65);
  background-color: rgba(211, 151, 0, 0.65);
}
.btn_action.warning:hover, .btn_action.warning:focus {
  background-color: rgba(160, 114, 0, 0.65);
  border-color: rgba(160, 114, 0, 0.65);
}
.btn_action.danger {
  border: 1px solid rgba(245, 105, 84, 0.5);
  background-color: rgba(245, 105, 84, 0.5);
}
.btn_action.danger:hover, .btn_action.danger:focus {
  background-color: rgba(242, 63, 36, 0.5);
  border-color: rgba(242, 63, 36, 0.5);
}
.btn_action.outline {
  border: 1px solid #a4c7e5;
  background-color: transparent;
  color: #a4c7e5;
}
.btn_action.outline:hover {
  background-color: #a4c7e5;
  color: white;
}

/* --------------------------
2018.10.03 - Add _lang
2018.11.07 - Edit _scrollbar
           - Add _fonts
           - Edit _custom
2018.11.08 - Edit _custom
2018.11.09 - Edit _custom
           - Add _buttons
2018.11.29 - Add _gridSystem

-------------------------- */
/* ==========================
 Middle Part
========================== */
/* Setting
=============== */
body {
  -webkit-font-smoothing: antialiased;
  color: #595757;
  font-family: "Microsoft Jhenghei", "Noto Serif TC", "Rubik", sans-serif;
}
body.lang-2nd {
  font-family: "Microsoft Jhenghei", sans-serif;
}

button {
  line-height: 1em;
  background-color: transparent;
  border: 0;
  padding: 0;
}

button:hover,
button:active,
button:focus {
  outline: unset;
}

img {
  -webkit-backface-visibility: hidden;
  max-width: 100%;
  height: auto;
}

ul {
  margin: 0px;
  padding: 0px;
}

input[type=submit] {
  width: auto;
}

input[type=button],
input[type=text],
input[type=email],
input[type=search],
input[type=password],
textarea,
input[type=submit] {
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

iframe {
  border: 0;
}

.sound iframe {
  width: 100%;
}

a, a:before, a:after,
a *, a *:before, a *:after {
  transition: all 0.1s ease-in-out;
}

/* Highlight
------------------------ */
::-moz-selection {
  color: #a4c7e5;
  background: rgba(0, 0, 0, 0.05);
}
::selection {
  color: #a4c7e5;
  background: rgba(0, 0, 0, 0.05);
}

::-moz-selection {
  color: #a4c7e5;
  background: rgba(0, 0, 0, 0.05);
}

body {
  line-height: 1.5em;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  text-transform: unset;
  margin: 0;
  padding: 0;
  color: inherit;
  line-height: 1.5em;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
}

h1, .h1,
h2, .h2 {
  font-weight: 700;
}
@media (max-width: 767px ) {
  h1, .h1,
  h2, .h2 {
    font-weight: 500;
  }
}

p, .p {
  margin: 0em 0;
  line-height: 1.8em;
}

code, kbd, pre, samp {
  font-family: inherit;
}

/* Desktop Font Size
--------------------- */
body {
  font-size: 14px;
  line-height: 1.5em;
}

h1, .h1 {
  font-size: 24.5px;
}

h2, .h2 {
  font-size: 22.96875px;
}

h3, .h3 {
  font-size: 21px;
}

h4, .h4 {
  font-size: 17.5px;
}

h5, .h5 {
  font-size: 15.75px;
}

h6, .h6 {
  font-size: 14px;
}

p, .p {
  font-size: 14px;
}

a {
  font-size: inherit;
}

li {
  font-size: 14px;
}

code, kbd, pre, samp {
  font-size: 14px;
}

input,
textarea,
select,
option,
.btn {
  font-size: 14px;
}

/* Input
------------ */
/* Mobile Font Size
--------------------- */
@media (max-width: 767px) {
  body {
    font-size: 13px;
    line-height: 1.5em;
  }
  h1, .h1 {
    font-size: 21.125px;
  }
  h2, .h2 {
    font-size: 19.8046875px;
  }
  h3, .h3 {
    font-size: 19.5px;
  }
  h4, .h4 {
    font-size: 16.25px;
  }
  h5, .h5 {
    font-size: 14.625px;
  }
  h6, .h6 {
    font-size: 13px;
  }
  p, .p {
    font-size: 13px;
  }
  a {
    font-size: inherit;
  }
  li {
    font-size: 13px;
  }
  code, kbd, pre, samp {
    font-size: 13px;
  }
  input,
  textarea,
  select,
  option,
  .btn {
    font-size: 13px;
  }
  /* Input
  ------------ */
}
/* Plugin Fix
=============== */
a, a:hover, a:focus {
  text-decoration: none;
  outline: none;
}

/* Grid System
----------------- */
.container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.container {
  padding: 0 8px;
}
.container.wide {
  width: 100%;
  max-width: 100%;
}
@media (max-width: 1199px ) {
  .container {
    width: 100%;
  }
}
@media (min-width: 1200px ) {
  .container {
    width: 1200px;
    max-width: 100%;
  }
  .container.wide {
    width: 1400px;
  }
}

[class*=col-lg], [class*=col-md], [class*=col-sm], [class*=col-xs] {
  padding-left: 8px;
  padding-right: 8px;
}

.row {
  margin: 0;
}

/* Components
-------------------- */
/* nav-tabs
------------- */
.nav-tabs > li > a {
  line-height: 1em;
  padding: 12px;
}

/* breadcrumb
------------- */
.breadcrumb {
  background-color: transparent;
  padding: 6px 0;
  padding-left: 8px;
  margin: 0;
}
.breadcrumb:after, .breadcrumb:before {
  content: "";
  display: block;
  clear: both;
}
.breadcrumb li, .breadcrumb a {
  line-height: 1em;
}
.breadcrumb li {
  font-size: 0.8em;
  display: block;
  float: left;
  position: relative;
}
.breadcrumb > li + li {
  padding-left: 20px;
}
.breadcrumb > li + li:before {
  content: "»";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  text-align: center;
}
.breadcrumb a {
  display: block;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/* alert
------------- */
.alert {
  padding: 5px;
  margin-bottom: 10px;
}

/* Button
------------- */
.btn:hover, .btn:hover:hover, .btn:active, .btn:active:hover, .btn:focus, .btn:focus:hover {
  outline: none;
}

/* Custom Float Class
-------------------- */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

@media (max-width: 767px) {
  .xs-pull-right {
    float: right;
  }
  .xs-pull-left {
    float: left;
  }
  .xs-pull-none {
    float: none !important;
  }
}
@media (max-width: 575px) {
  .xxs-pull-right {
    float: right;
  }
  .xxs-pull-left {
    float: left;
  }
  .xxs-pull-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .sm-pull-right {
    float: right;
  }
  .sm-pull-left {
    float: left;
  }
  .sm-float-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .md-pull-right {
    float: right;
  }
  .md-pull-left {
    float: left;
  }
  .md-float-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .lg-pull-right {
    float: right;
  }
  .lg-pull-left {
    float: left;
  }
  .lg-float-none {
    float: none !important;
  }
}
/* Custom Column Width
------------------- */
@media (max-width: 575px ) {
  .col-xxs-3 {
    width: 25%;
  }
  .col-xxs-4 {
    width: 33.3333333333%;
  }
  .col-xxs-6 {
    width: 50%;
  }
  .col-xxs-9 {
    width: 75%;
  }
  .col-xxs-12 {
    width: 100%;
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sm-only-w-100 {
    width: 100%;
  }
}
.tab:after, .tab:before {
  content: "";
  display: block;
  clear: both;
}
.tab > li {
  float: left;
  display: block;
}
.tab > li.active a {
  background-color: #eee;
}
.tab a {
  display: block;
  line-height: 1em;
}

/*-- Responsive Robot --*/
@media screen and (max-height: 575px) {
  #rc-imageselect, .g-recaptcha {
    transform: scale(0.77);
    -webkit-transform: scale(0.77);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }
}
.fb-page blockquote {
  border: 0;
  display: none;
}

.wow {
  visibility: hidden;
}

.no-animation {
  visibility: visible;
}

/* ---------------------
Multiple
--------------------- */
.select2-multiple-skin .select2-selection--multiple {
  letter-spacing: 0px;
  vertical-align: middle;
  resize: vertical;
  max-width: 100%;
  border: 1px solid #ccc;
  border-radius: 2px;
}
@media (max-width: 767px) {
  .select2-multiple-skin .select2-selection--multiple {
    min-height: calc(1.8em + 20px);
  }
}
.select2-multiple-skin .select2-selection--multiple ul.select2-selection__rendered {
  display: block;
  padding: 5px 2px;
  padding-right: 30px;
}
.select2-multiple-skin .select2-selection--multiple ul.select2-selection__rendered li {
  height: 22px;
}
.select2-multiple-skin .select2-selection--multiple .select2-selection__choice {
  margin: 1px;
}
@media (max-width: 767px) {
  .select2-multiple-skin .select2-selection--multiple .select2-selection__choice {
    margin: 3px 2px;
  }
}
.select2-multiple-skin .select2-container {
  width: 100% !important;
}
.select2-multiple-skin .select2-container .select2-search--inline .select2-search__field {
  margin-top: 0;
}

.modal-dialog.custom {
  max-width: 400px;
  margin: 30px auto;
}
@media (max-width: 575px) {
  .modal-dialog.custom {
    max-width: unset;
  }
}

.modal-body .row {
  margin: 0;
}
.modal-body [class*=col-lg],
.modal-body [class*=col-md],
.modal-body [class*=col-sm],
.modal-body [class*=col-xs] {
  padding: 8px;
}

/* Components
=============== */
/* Owl Carousel Default */
.owl-carousel .owl-item:hover {
  z-index: 2;
}
.owl-carousel .content {
  display: block;
  text-align: left;
  position: relative;
}
.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 0px;
  width: 100%;
}
.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
}
.owl-carousel .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  margin: 0px 1px;
  background: transparent;
  border: 1px solid #a4c7e5;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
.owl-carousel .owl-dots .owl-dot.active span, .owl-carousel .owl-dots .owl-dot:hover span {
  background-color: #a4c7e5;
}
.owl-carousel .owl-nav {
  position: absolute;
  top: calc(50% - 50px * 0.5);
  left: 0;
  z-index: 3;
  width: 100%;
}
.owl-carousel .owl-nav [class*=owl-] {
  position: relative;
  color: #fff;
  background-color: transparent;
  font-size: 40px;
  margin: 0px;
  padding: 0;
  width: 50px;
  text-align: center;
  position: absolute;
  border-radius: 50px;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  opacity: 1;
}
.owl-carousel .owl-nav [class*=owl-] i {
  line-height: 0;
}
.owl-carousel .owl-nav [class*=owl-] i:before {
  line-height: 50px;
}
.owl-carousel .owl-nav [class*=owl-].disabled, .owl-carousel .owl-nav [class*=owl-].disabled:hover {
  opacity: 0.2;
}
.owl-carousel .owl-prev {
  left: 10px;
}
.owl-carousel .owl-prev i {
  margin-right: 5px;
}
.owl-carousel .owl-next {
  right: 10px;
}
.owl-carousel .owl-next i {
  margin-left: 5px;
}
.owl-carousel .owl-nav {
  opacity: 0.5;
}
.owl-carousel:hover .owl-nav {
  opacity: 1;
}
.owl-carousel .owl-dots {
  position: absolute;
}

.big-images {
  margin-bottom: 4px;
}

/* Row Wrapper
------------------- */
.row_wrapper {
  overflow: hidden;
}

/* tag */
/* tag */
.tag {
  display: inline-block;
  padding: 5px;
  margin: 2px;
  font-size: 12px;
  font-weight: normal;
  line-height: 1;
  border-radius: 4px;
  border: 1px;
  border-style: solid;
  color: #fff !important;
  text-align: center;
  white-space: nowrap;
  text-indent: 0;
  transition: all 0s ease-in-out;
}
.tag {
  border-color: #595757;
  background-color: #595757;
}
.tag.success {
  border-color: rgba(110, 196, 80, 0.65);
  background-color: rgba(110, 196, 80, 0.65);
}
.tag.info {
  border-color: rgba(42, 178, 183, 0.65);
  background-color: rgba(42, 178, 183, 0.65);
}
.tag.warning {
  border-color: rgba(211, 151, 0, 0.65);
  background-color: rgba(211, 151, 0, 0.65);
}
.tag.danger {
  border-color: rgba(242, 63, 36, 0.6);
  background-color: rgba(242, 63, 36, 0.6);
}
.tag[disabled=true] {
  border-color: rgba(128, 128, 128, 0.6);
  background-color: rgba(128, 128, 128, 0.6);
}
.tag.disabled {
  border-color: rgba(128, 128, 128, 0.6);
  background-color: rgba(128, 128, 128, 0.6);
}
.tag.outline.white {
  border-color: white;
  background-color: transparent;
  color: white;
}

a.tag:hover, button.tag:hover {
  opacity: 0.6;
  color: #fff;
}

.tag_icon {
  margin: 0;
  padding: 0;
  font-size: 11px;
  display: inline-block;
  padding-right: 8px;
  text-align: left;
  color: #727272;
}
.tag_icon:before {
  content: "\f02b";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  color: #a4c7e5;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-right: 8px;
}
.tag_icon:hover {
  text-decoration: underline;
  color: #727272;
}

/* pagination */
/*--- pagination ---*/
.pagination {
  margin: 10px 0;
}
.pagination li {
  text-align: center;
}
.pagination li a {
  font-size: 16px;
  padding: 4px 8px;
  border-radius: 15px !important;
  min-width: 29px;
  display: inline-block;
  border: none;
  margin: 0 2px;
  transition: all 0s ease-in-out;
  background-color: transparent;
  color: #595757;
}
.pagination li a:hover, .pagination li a:focus {
  background-color: rgba(164, 199, 229, 0.05);
  color: #595757;
}
.pagination li.active a, .pagination li.active a:hover, .pagination li.active a:focus, .pagination li.active a.active {
  background-color: #a4c7e5;
  color: #fff;
}

/* Button */
a {
  color: #0275d8;
}

a:hover, a:focus {
  color: #0275d8;
}

.underline,
.hover_underline,
.underline_blue,
.hover_underline_blue,
.underline_highlight,
.underline_highlight,
.hover_underline_highlight {
  transition: all 0s ease-in-out;
}

.underline {
  color: #a4c7e5;
}
.underline:hover {
  color: #0275d8;
  text-decoration: underline;
  opacity: 1;
}

.hover_underline {
  color: inherit;
  text-decoration: none;
}
.hover_underline:hover {
  color: inherit;
  text-decoration: underline;
}

.underline_blue {
  color: #595757;
}
.underline_blue:hover {
  color: #a4c7e5;
  text-decoration: underline;
}

.hover_underline_blue {
  text-decoration: none;
  transition: all 0s ease-in-out;
}
.hover_underline_blue:hover {
  color: #0275d8;
  text-decoration: underline;
}

.underline_highlight {
  color: #0275d8;
}
.underline_highlight:hover {
  color: inherit;
  text-decoration: underline;
}

.hover_underline_highlight {
  text-decoration: none;
}
.hover_underline_highlight:hover {
  color: #0275d8;
  text-decoration: underline;
}

/* Bootstrap Button
-------------- */
.btn-theme {
  background-color: #E9E488;
  border-color: #e5df72;
  color: white;
}
.btn-theme:hover, .btn-theme:hover:hover, .btn-theme:hover:active, .btn-theme:hover:focus, .btn-theme:active, .btn-theme:active:hover, .btn-theme:active:active, .btn-theme:active:focus, .btn-theme:focus, .btn-theme:focus:hover, .btn-theme:focus:active, .btn-theme:focus:focus {
  color: white;
  background-color: #ede99e;
  border-color: #f1eeb3;
}

/* Button Main */
.btn_main {
  line-height: 1em;
  padding: 14px 20px;
  border-radius: 4px;
  background-color: #a4c7e5;
  color: #595757;
  display: inline-block;
  border: 1px solid transparent;
}
.btn_main, .btn_main i:before {
  transition: all 0.1s ease-in-out;
}
.btn_main:hover, .btn_main:focus {
  color: white;
  background-color: #90bbdf;
}
.btn_main.large {
  font-size: 20px;
  padding: 18px 24px;
}
.btn_main.radius {
  border-radius: 30px;
}
.btn_main.reverse {
  background-color: white;
  color: #a4c7e5;
}

.btn_main_outline {
  line-height: 1em;
  padding: 14px 20px;
  border-radius: 4px;
  background-color: #a4c7e5;
  color: #595757;
  display: inline-block;
  border: 1px solid transparent;
  background-color: transparent;
  border: 1px solid #a4c7e5;
  color: #a4c7e5;
}
.btn_main_outline, .btn_main_outline i:before {
  transition: all 0.1s ease-in-out;
}
.btn_main_outline:hover {
  background-color: rgba(164, 199, 229, 0.1);
}
.btn_main_outline:hover, .btn_main_outline:focus {
  color: white;
  background-color: #90bbdf;
}
.btn_main_outline.large {
  font-size: 20px;
  padding: 18px 24px;
}
.btn_main_outline.radius {
  border-radius: 30px;
}
.btn_main_outline.reverse {
  background-color: white;
  color: #a4c7e5;
}

.btn_main, .btn_special {
  white-space: nowrap;
}

/* Btn Wrapper
-------------- */
.btn_wr .btn_main, .btn_wr .btn_special {
  display: inline-block;
}

/* 2018.10.01 */
/* Marquee */
.abgne_marquee_wrapper {
  position: relative;
  overflow: hidden;
  z-index: 2;
  background-color: #fff;
  color: #595757;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 8px;
}
@media (max-width: 767px ) {
  .abgne_marquee_wrapper {
    margin: 0 15px;
  }
}

#abgne_marquee {
  height: 31px;
  position: relative;
  overflow: hidden;
  /* RWD */
}
#abgne_marquee ul {
  position: absolute;
  width: 100%;
  height: 100%;
}
#abgne_marquee ul li {
  display: table;
  height: 100%;
  text-align: center;
  width: 100%;
}
#abgne_marquee ul .td {
  display: table-cell;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 0;
  width: 100%;
  padding: 0 12px;
}
#abgne_marquee a:hover, #abgne_marquee a:focus {
  text-decoration: underline;
}
/* Blocky */
/* 2018.10.11 */
.blocky_container {
  padding: 8px;
}
.blocky_container > [class*=col-lg], .blocky_container > [class*=col-md], .blocky_container > [class*=col-sm], .blocky_container > [class*=col-xs] {
  padding: 8px;
}

.blocky {
  background-color: #f9f9f9;
  overflow: hidden;
}
.blocky.highlight {
  border: 2px dotted #a4c7e5;
}
.blocky .blocky_body {
  padding: 8px;
}
.blocky .blocky_body:after, .blocky .blocky_body:before {
  content: "";
  display: block;
  clear: both;
}
.blocky .blocky_body.article {
  padding: 8px 16px 16px;
}
.blocky .blocky_body.min-medium {
  min-height: 300px;
}
.blocky .blocky_body.padding-large {
  padding: 16px;
}
.blocky .blocky_footer {
  padding: 16px;
  text-align: right;
  border-top: 1px solid #e1e1e1;
}
.blocky .blocky_footer.padding-small {
  padding: 8px;
}
.blocky .date {
  margin: 0;
  line-height: 24px;
}
.blocky .thumb {
  width: 80px;
}
.blocky .dv_line {
  position: relative;
  border-top: 1px solid #e1e1e1;
}
.blocky .dv_line.m-tb {
  margin-top: 8px;
  margin-bottom: 8px;
}

/* margin */
.blocky {
  margin-bottom: 15px;
}

/* no border */
.blocky.no-border {
  border: 0;
}

.blocky .blocky_body.form_table {
  padding: 0;
}

/* blocky_header */
.blocky_header {
  padding: 8px 8px;
  border-bottom: 1px solid #a4c7e5;
  font-weight: 700;
  background-color: rgba(164, 199, 229, 0.7);
}

.blocky_header {
  border-top: 1px solid #e1e1e1;
}
.blocky_header:nth-child(1) {
  border-top: 0;
}

/* blocky_header Component */
.blocky_header:after, .blocky_header:before {
  content: "";
  display: block;
  clear: both;
}
.blocky_header h1,
.blocky_header h2,
.blocky_header h3,
.blocky_header h4,
.blocky_header .title {
  float: left;
}
.blocky_header .align-center {
  width: 100%;
}
.blocky_header .title ~ .input_simple {
  margin: -6px 0;
}
.blocky_header .title + .input_simple {
  margin-right: -14px;
}
.blocky_header .input-daterange {
  float: right;
  max-width: 300px;
  margin: -3px 0;
  margin-right: -5px;
}
@media (max-width: 575px) {
  .blocky_header .input-daterange {
    width: calc(100% + 8px);
    max-width: none;
    margin: 5px -5px -3px;
  }
}
.blocky_header .nav-tabs {
  border-bottom: 0px;
  margin-bottom: -10px;
  margin-top: -3px;
  margin-left: -7px;
  margin-right: -7px;
}
.blocky_header .nav-tabs.justify {
  display: flex;
  flex-wrap: wrap;
}
.blocky_header .nav-tabs.justify li {
  flex: 1;
}
.blocky_header .nav-tabs li a {
  color: #a4c7e5;
  background-color: transparent;
  border: 1px solid #a4c7e5;
  border-bottom-color: transparent;
  text-align: center;
}
.blocky_header .nav-tabs li a:hover, .blocky_header .nav-tabs li a:focus {
  color: #fff;
  background-color: #a4c7e5;
  border: 1px solid #a4c7e5;
}
.blocky_header .nav-tabs li.active a, .blocky_header .nav-tabs li.active a:hover, .blocky_header .nav-tabs li.active a:focus {
  color: #fff;
  background-color: #a4c7e5;
  border: 1px solid #a4c7e5;
}

/* Block Border Top
-------------- */
.blocky > .blocky_body + .blocky_body {
  border-top: 1px solid #e1e1e1;
}

.action_bar .alert {
  padding: 8px;
}
.action_bar .alert,
.action_bar .btn_action {
  margin-bottom: 8px;
}
.action_bar .alert:nth-last-child(1),
.action_bar .btn_action:nth-last-child(1) {
  margin: 0;
}

.nowrap {
  white-space: nowrap;
}

.blocky .row {
  margin: 0;
}
.blocky .row > [class*=col-lg],
.blocky .row > [class*=col-md],
.blocky .row > [class*=col-sm],
.blocky .row > [class*=col-xs] {
  padding: 0 8px;
}

/* Narrow */
.blocky.narrow .blocky_footer,
.blocky .blocky_footer.narrow {
  padding: 4px;
}

/* Pagination */
.blocky .pagination {
  margin: 0;
  width: 100%;
  text-align: center;
}
.blocky .pagination li {
  display: inline-block;
}

/* Stepper */
.stepper {
  padding: 4px;
  margin-bottom: 16px;
  background-color: #f9f9f9;
  font-weight: 900;
}
.stepper > li {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px;
}
.stepper > li:nth-last-child(1) {
  border-right: 0px;
}
.stepper > li p {
  margin: 0;
}
.stepper > li p.step {
  font-size: 11px;
  font-weight: 700;
}
.stepper > li p {
  color: #595757;
}
.stepper > li p.step {
  color: #595757;
}
.stepper > li.active {
  background-color: #E9E488;
  border: 0;
}
.stepper > li.active p {
  color: #595757;
}

/* Tab */
.blocky_tab a {
  padding: 10px 15px;
  border-radius: 4px 4px 0 0;
  color: #595757;
  background-color: transparent;
}
.blocky_tab a:hover {
  background-color: #e2e2e2;
}
.blocky_tab > li.active a {
  background-color: #a4c7e5;
  color: white;
}
@media (min-width: 768px ) {
  .blocky_tab {
    border-bottom: 2px solid #a4c7e5;
    background-color: #efefef;
    border-radius: 4px 4px 0 0;
  }
}
@media (max-width: 767px ) {
  .blocky_tab {
    border-bottom: 2px solid #a4c7e5;
  }
  .blocky_tab a {
    padding: 10px;
    border-radius: 4px;
    background-color: #efefef;
  }
}

/* Form
-------------------- */
.form_table {
  width: 100%;
}
.form_table tr th, .form_table tr td {
  padding: 8px;
}
.form_table thead th, .form_table thead td, .form_table tfoot th, .form_table tfoot td {
  padding: 4px 8px;
  font-size: 14px;
}
.form_table p {
  margin: 0px;
}
@media (min-width: 576px ) {
  .form_table.xxs-responsive {
    /* Desktop */
    /* 2018.10.04 */
    /* Vertical Align
    ----------------- */
    /* Eliminate Bottom Line When ROWSPAN (simple rowspan)
    ------------- */
  }
  .form_table.xxs-responsive th, .form_table.xxs-responsive td {
    border-bottom: 1px solid #e1e1e1;
  }
  .form_table.xxs-responsive th.w-1, .form_table.xxs-responsive td.w-1 {
    width: 10%;
  }
  .form_table.xxs-responsive th.w-2, .form_table.xxs-responsive td.w-2 {
    width: 20%;
  }
  .form_table.xxs-responsive th.w-3, .form_table.xxs-responsive td.w-3 {
    width: 30%;
  }
  .form_table.xxs-responsive th.w-4, .form_table.xxs-responsive td.w-4 {
    width: 40%;
  }
  .form_table.xxs-responsive th.w-5, .form_table.xxs-responsive td.w-5 {
    width: 50%;
  }
  .form_table.xxs-responsive th.w-6, .form_table.xxs-responsive td.w-6 {
    width: 60%;
  }
  .form_table.xxs-responsive th.w-7, .form_table.xxs-responsive td.w-7 {
    width: 70%;
  }
  .form_table.xxs-responsive th.w-8, .form_table.xxs-responsive td.w-8 {
    width: 80%;
  }
  .form_table.xxs-responsive th.w-9, .form_table.xxs-responsive td.w-9 {
    width: 90%;
  }
  .form_table.xxs-responsive th.w-f-1, .form_table.xxs-responsive td.w-f-1 {
    width: 45px;
  }
  .form_table.xxs-responsive th.w-f-2, .form_table.xxs-responsive td.w-f-2 {
    width: 90px;
  }
  .form_table.xxs-responsive th.w-f-3, .form_table.xxs-responsive td.w-f-3 {
    width: 135px;
  }
  .form_table.xxs-responsive th.w-f-4, .form_table.xxs-responsive td.w-f-4 {
    width: 180px;
  }
  .form_table.xxs-responsive th.w-f-5, .form_table.xxs-responsive td.w-f-5 {
    width: 225px;
  }
  .form_table.xxs-responsive tbody tr:nth-last-child(1) th, .form_table.xxs-responsive tbody tr:nth-last-child(1) td {
    border-bottom: 0px;
  }
  .form_table.xxs-responsive thead th, .form_table.xxs-responsive thead td, .form_table.xxs-responsive tfoot th, .form_table.xxs-responsive tfoot td {
    background-color: #fcfcfc;
    border-style: solid;
    border-color: #e1e1e1;
    border-width: 0;
    margin: 0;
  }
  .form_table.xxs-responsive thead th, .form_table.xxs-responsive thead td {
    border-bottom-width: 1px;
  }
  .form_table.xxs-responsive tfoot th, .form_table.xxs-responsive tfoot td {
    border-top-width: 1px;
  }
  .form_table.xxs-responsive tbody, .form_table.xxs-responsive tfoot, .form_table.xxs-responsive thead, .form_table.xxs-responsive tr {
    vertical-align: middle;
  }
  .form_table.xxs-responsive.vertical-middle th, .form_table.xxs-responsive.vertical-middle td {
    vertical-align: middle;
  }
  .form_table.xxs-responsive.vertical-top th, .form_table.xxs-responsive.vertical-top td {
    vertical-align: top;
  }
  .form_table.xxs-responsive.vertical-bottom th, .form_table.xxs-responsive.vertical-bottom td {
    vertical-align: bottom;
  }
  .form_table.xxs-responsive tr:nth-last-child(2) td[rowspan="2"], .form_table.xxs-responsive tr:nth-last-child(2) th[rowspan="2"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(3) td[rowspan="3"], .form_table.xxs-responsive tr:nth-last-child(3) th[rowspan="3"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(4) td[rowspan="4"], .form_table.xxs-responsive tr:nth-last-child(4) th[rowspan="4"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(5) td[rowspan="5"], .form_table.xxs-responsive tr:nth-last-child(5) th[rowspan="5"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(6) td[rowspan="6"], .form_table.xxs-responsive tr:nth-last-child(6) th[rowspan="6"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(7) td[rowspan="7"], .form_table.xxs-responsive tr:nth-last-child(7) th[rowspan="7"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(8) td[rowspan="8"], .form_table.xxs-responsive tr:nth-last-child(8) th[rowspan="8"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(9) td[rowspan="9"], .form_table.xxs-responsive tr:nth-last-child(9) th[rowspan="9"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(10) td[rowspan="10"], .form_table.xxs-responsive tr:nth-last-child(10) th[rowspan="10"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(11) td[rowspan="11"], .form_table.xxs-responsive tr:nth-last-child(11) th[rowspan="11"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(12) td[rowspan="12"], .form_table.xxs-responsive tr:nth-last-child(12) th[rowspan="12"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(13) td[rowspan="13"], .form_table.xxs-responsive tr:nth-last-child(13) th[rowspan="13"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(14) td[rowspan="14"], .form_table.xxs-responsive tr:nth-last-child(14) th[rowspan="14"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(15) td[rowspan="15"], .form_table.xxs-responsive tr:nth-last-child(15) th[rowspan="15"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(16) td[rowspan="16"], .form_table.xxs-responsive tr:nth-last-child(16) th[rowspan="16"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(17) td[rowspan="17"], .form_table.xxs-responsive tr:nth-last-child(17) th[rowspan="17"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(18) td[rowspan="18"], .form_table.xxs-responsive tr:nth-last-child(18) th[rowspan="18"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(19) td[rowspan="19"], .form_table.xxs-responsive tr:nth-last-child(19) th[rowspan="19"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(20) td[rowspan="20"], .form_table.xxs-responsive tr:nth-last-child(20) th[rowspan="20"] {
    border-bottom: 0;
  }
}
@media (max-width: 575px ) {
  .form_table.xxs-responsive {
    /* 2018.10.09 */
  }
  .form_table.xxs-responsive {
    table-layout: fixed;
  }
  .form_table.xxs-responsive tr {
    border-bottom: 3px double #e1e1e1;
  }
  .form_table.xxs-responsive tr:nth-last-child(1) {
    border-bottom: 0px;
  }
  .form_table.xxs-responsive tr th, .form_table.xxs-responsive tr td {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .form_table.xxs-responsive tr th {
    display: none;
  }
  .form_table.xxs-responsive tr td {
    display: block;
    border-bottom: 1px dotted rgba(225, 225, 225, 0.7);
    padding-left: 80px;
    position: relative;
    min-height: calc(1em + 8px);
  }
  .form_table.xxs-responsive tr td:before {
    content: attr(data-head) "";
    font-weight: bold;
    font-size: 12px;
    position: absolute;
    line-height: 1em;
    left: 8px;
    top: calc(50% - 0.5em);
    color: #595757;
  }
  .form_table.xxs-responsive tr td:nth-last-child(1) {
    border-bottom: 0;
  }
  .form_table.xxs-responsive thead {
    display: none;
  }
  .form_table.xxs-responsive .align-left, .form_table.xxs-responsive .align-center, .form_table.xxs-responsive .align-right {
    text-align: left !important;
  }
  .form_table.xxs-responsive tbody, .form_table.xxs-responsive tfoot, .form_table.xxs-responsive thead, .form_table.xxs-responsive tr {
    vertical-align: top;
  }
}
@media (min-width: 768px ) {
  .form_table.xs-responsive {
    /* Desktop */
    /* 2018.10.04 */
    /* Vertical Align
    ----------------- */
    /* Eliminate Bottom Line When ROWSPAN (simple rowspan)
    ------------- */
  }
  .form_table.xs-responsive th, .form_table.xs-responsive td {
    border-bottom: 1px solid #e1e1e1;
  }
  .form_table.xs-responsive th.w-1, .form_table.xs-responsive td.w-1 {
    width: 10%;
  }
  .form_table.xs-responsive th.w-2, .form_table.xs-responsive td.w-2 {
    width: 20%;
  }
  .form_table.xs-responsive th.w-3, .form_table.xs-responsive td.w-3 {
    width: 30%;
  }
  .form_table.xs-responsive th.w-4, .form_table.xs-responsive td.w-4 {
    width: 40%;
  }
  .form_table.xs-responsive th.w-5, .form_table.xs-responsive td.w-5 {
    width: 50%;
  }
  .form_table.xs-responsive th.w-6, .form_table.xs-responsive td.w-6 {
    width: 60%;
  }
  .form_table.xs-responsive th.w-7, .form_table.xs-responsive td.w-7 {
    width: 70%;
  }
  .form_table.xs-responsive th.w-8, .form_table.xs-responsive td.w-8 {
    width: 80%;
  }
  .form_table.xs-responsive th.w-9, .form_table.xs-responsive td.w-9 {
    width: 90%;
  }
  .form_table.xs-responsive th.w-f-1, .form_table.xs-responsive td.w-f-1 {
    width: 45px;
  }
  .form_table.xs-responsive th.w-f-2, .form_table.xs-responsive td.w-f-2 {
    width: 90px;
  }
  .form_table.xs-responsive th.w-f-3, .form_table.xs-responsive td.w-f-3 {
    width: 135px;
  }
  .form_table.xs-responsive th.w-f-4, .form_table.xs-responsive td.w-f-4 {
    width: 180px;
  }
  .form_table.xs-responsive th.w-f-5, .form_table.xs-responsive td.w-f-5 {
    width: 225px;
  }
  .form_table.xs-responsive tbody tr:nth-last-child(1) th, .form_table.xs-responsive tbody tr:nth-last-child(1) td {
    border-bottom: 0px;
  }
  .form_table.xs-responsive thead th, .form_table.xs-responsive thead td, .form_table.xs-responsive tfoot th, .form_table.xs-responsive tfoot td {
    background-color: #fcfcfc;
    border-style: solid;
    border-color: #e1e1e1;
    border-width: 0;
    margin: 0;
  }
  .form_table.xs-responsive thead th, .form_table.xs-responsive thead td {
    border-bottom-width: 1px;
  }
  .form_table.xs-responsive tfoot th, .form_table.xs-responsive tfoot td {
    border-top-width: 1px;
  }
  .form_table.xs-responsive tbody, .form_table.xs-responsive tfoot, .form_table.xs-responsive thead, .form_table.xs-responsive tr {
    vertical-align: middle;
  }
  .form_table.xs-responsive.vertical-middle th, .form_table.xs-responsive.vertical-middle td {
    vertical-align: middle;
  }
  .form_table.xs-responsive.vertical-top th, .form_table.xs-responsive.vertical-top td {
    vertical-align: top;
  }
  .form_table.xs-responsive.vertical-bottom th, .form_table.xs-responsive.vertical-bottom td {
    vertical-align: bottom;
  }
  .form_table.xs-responsive tr:nth-last-child(2) td[rowspan="2"], .form_table.xs-responsive tr:nth-last-child(2) th[rowspan="2"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(3) td[rowspan="3"], .form_table.xs-responsive tr:nth-last-child(3) th[rowspan="3"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(4) td[rowspan="4"], .form_table.xs-responsive tr:nth-last-child(4) th[rowspan="4"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(5) td[rowspan="5"], .form_table.xs-responsive tr:nth-last-child(5) th[rowspan="5"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(6) td[rowspan="6"], .form_table.xs-responsive tr:nth-last-child(6) th[rowspan="6"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(7) td[rowspan="7"], .form_table.xs-responsive tr:nth-last-child(7) th[rowspan="7"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(8) td[rowspan="8"], .form_table.xs-responsive tr:nth-last-child(8) th[rowspan="8"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(9) td[rowspan="9"], .form_table.xs-responsive tr:nth-last-child(9) th[rowspan="9"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(10) td[rowspan="10"], .form_table.xs-responsive tr:nth-last-child(10) th[rowspan="10"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(11) td[rowspan="11"], .form_table.xs-responsive tr:nth-last-child(11) th[rowspan="11"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(12) td[rowspan="12"], .form_table.xs-responsive tr:nth-last-child(12) th[rowspan="12"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(13) td[rowspan="13"], .form_table.xs-responsive tr:nth-last-child(13) th[rowspan="13"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(14) td[rowspan="14"], .form_table.xs-responsive tr:nth-last-child(14) th[rowspan="14"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(15) td[rowspan="15"], .form_table.xs-responsive tr:nth-last-child(15) th[rowspan="15"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(16) td[rowspan="16"], .form_table.xs-responsive tr:nth-last-child(16) th[rowspan="16"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(17) td[rowspan="17"], .form_table.xs-responsive tr:nth-last-child(17) th[rowspan="17"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(18) td[rowspan="18"], .form_table.xs-responsive tr:nth-last-child(18) th[rowspan="18"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(19) td[rowspan="19"], .form_table.xs-responsive tr:nth-last-child(19) th[rowspan="19"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(20) td[rowspan="20"], .form_table.xs-responsive tr:nth-last-child(20) th[rowspan="20"] {
    border-bottom: 0;
  }
}
@media (max-width: 767px ) {
  .form_table.xs-responsive {
    /* 2018.10.09 */
  }
  .form_table.xs-responsive {
    table-layout: fixed;
  }
  .form_table.xs-responsive tr {
    border-bottom: 3px double #e1e1e1;
  }
  .form_table.xs-responsive tr:nth-last-child(1) {
    border-bottom: 0px;
  }
  .form_table.xs-responsive tr th, .form_table.xs-responsive tr td {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .form_table.xs-responsive tr th {
    display: none;
  }
  .form_table.xs-responsive tr td {
    display: block;
    border-bottom: 1px dotted rgba(225, 225, 225, 0.7);
    padding-left: 80px;
    position: relative;
    min-height: calc(1em + 8px);
  }
  .form_table.xs-responsive tr td:before {
    content: attr(data-head) "";
    font-weight: bold;
    font-size: 12px;
    position: absolute;
    line-height: 1em;
    left: 8px;
    top: calc(50% - 0.5em);
    color: #595757;
  }
  .form_table.xs-responsive tr td:nth-last-child(1) {
    border-bottom: 0;
  }
  .form_table.xs-responsive thead {
    display: none;
  }
  .form_table.xs-responsive .align-left, .form_table.xs-responsive .align-center, .form_table.xs-responsive .align-right {
    text-align: left !important;
  }
  .form_table.xs-responsive tbody, .form_table.xs-responsive tfoot, .form_table.xs-responsive thead, .form_table.xs-responsive tr {
    vertical-align: top;
  }
}
@media (min-width: 992px ) {
  .form_table.sm-responsive {
    /* Desktop */
    /* 2018.10.04 */
    /* Vertical Align
    ----------------- */
    /* Eliminate Bottom Line When ROWSPAN (simple rowspan)
    ------------- */
  }
  .form_table.sm-responsive th, .form_table.sm-responsive td {
    border-bottom: 1px solid #e1e1e1;
  }
  .form_table.sm-responsive th.w-1, .form_table.sm-responsive td.w-1 {
    width: 10%;
  }
  .form_table.sm-responsive th.w-2, .form_table.sm-responsive td.w-2 {
    width: 20%;
  }
  .form_table.sm-responsive th.w-3, .form_table.sm-responsive td.w-3 {
    width: 30%;
  }
  .form_table.sm-responsive th.w-4, .form_table.sm-responsive td.w-4 {
    width: 40%;
  }
  .form_table.sm-responsive th.w-5, .form_table.sm-responsive td.w-5 {
    width: 50%;
  }
  .form_table.sm-responsive th.w-6, .form_table.sm-responsive td.w-6 {
    width: 60%;
  }
  .form_table.sm-responsive th.w-7, .form_table.sm-responsive td.w-7 {
    width: 70%;
  }
  .form_table.sm-responsive th.w-8, .form_table.sm-responsive td.w-8 {
    width: 80%;
  }
  .form_table.sm-responsive th.w-9, .form_table.sm-responsive td.w-9 {
    width: 90%;
  }
  .form_table.sm-responsive th.w-f-1, .form_table.sm-responsive td.w-f-1 {
    width: 45px;
  }
  .form_table.sm-responsive th.w-f-2, .form_table.sm-responsive td.w-f-2 {
    width: 90px;
  }
  .form_table.sm-responsive th.w-f-3, .form_table.sm-responsive td.w-f-3 {
    width: 135px;
  }
  .form_table.sm-responsive th.w-f-4, .form_table.sm-responsive td.w-f-4 {
    width: 180px;
  }
  .form_table.sm-responsive th.w-f-5, .form_table.sm-responsive td.w-f-5 {
    width: 225px;
  }
  .form_table.sm-responsive tbody tr:nth-last-child(1) th, .form_table.sm-responsive tbody tr:nth-last-child(1) td {
    border-bottom: 0px;
  }
  .form_table.sm-responsive thead th, .form_table.sm-responsive thead td, .form_table.sm-responsive tfoot th, .form_table.sm-responsive tfoot td {
    background-color: #fcfcfc;
    border-style: solid;
    border-color: #e1e1e1;
    border-width: 0;
    margin: 0;
  }
  .form_table.sm-responsive thead th, .form_table.sm-responsive thead td {
    border-bottom-width: 1px;
  }
  .form_table.sm-responsive tfoot th, .form_table.sm-responsive tfoot td {
    border-top-width: 1px;
  }
  .form_table.sm-responsive tbody, .form_table.sm-responsive tfoot, .form_table.sm-responsive thead, .form_table.sm-responsive tr {
    vertical-align: middle;
  }
  .form_table.sm-responsive.vertical-middle th, .form_table.sm-responsive.vertical-middle td {
    vertical-align: middle;
  }
  .form_table.sm-responsive.vertical-top th, .form_table.sm-responsive.vertical-top td {
    vertical-align: top;
  }
  .form_table.sm-responsive.vertical-bottom th, .form_table.sm-responsive.vertical-bottom td {
    vertical-align: bottom;
  }
  .form_table.sm-responsive tr:nth-last-child(2) td[rowspan="2"], .form_table.sm-responsive tr:nth-last-child(2) th[rowspan="2"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(3) td[rowspan="3"], .form_table.sm-responsive tr:nth-last-child(3) th[rowspan="3"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(4) td[rowspan="4"], .form_table.sm-responsive tr:nth-last-child(4) th[rowspan="4"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(5) td[rowspan="5"], .form_table.sm-responsive tr:nth-last-child(5) th[rowspan="5"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(6) td[rowspan="6"], .form_table.sm-responsive tr:nth-last-child(6) th[rowspan="6"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(7) td[rowspan="7"], .form_table.sm-responsive tr:nth-last-child(7) th[rowspan="7"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(8) td[rowspan="8"], .form_table.sm-responsive tr:nth-last-child(8) th[rowspan="8"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(9) td[rowspan="9"], .form_table.sm-responsive tr:nth-last-child(9) th[rowspan="9"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(10) td[rowspan="10"], .form_table.sm-responsive tr:nth-last-child(10) th[rowspan="10"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(11) td[rowspan="11"], .form_table.sm-responsive tr:nth-last-child(11) th[rowspan="11"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(12) td[rowspan="12"], .form_table.sm-responsive tr:nth-last-child(12) th[rowspan="12"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(13) td[rowspan="13"], .form_table.sm-responsive tr:nth-last-child(13) th[rowspan="13"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(14) td[rowspan="14"], .form_table.sm-responsive tr:nth-last-child(14) th[rowspan="14"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(15) td[rowspan="15"], .form_table.sm-responsive tr:nth-last-child(15) th[rowspan="15"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(16) td[rowspan="16"], .form_table.sm-responsive tr:nth-last-child(16) th[rowspan="16"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(17) td[rowspan="17"], .form_table.sm-responsive tr:nth-last-child(17) th[rowspan="17"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(18) td[rowspan="18"], .form_table.sm-responsive tr:nth-last-child(18) th[rowspan="18"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(19) td[rowspan="19"], .form_table.sm-responsive tr:nth-last-child(19) th[rowspan="19"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(20) td[rowspan="20"], .form_table.sm-responsive tr:nth-last-child(20) th[rowspan="20"] {
    border-bottom: 0;
  }
}
@media (max-width: 991px ) {
  .form_table.sm-responsive {
    /* 2018.10.09 */
  }
  .form_table.sm-responsive {
    table-layout: fixed;
  }
  .form_table.sm-responsive tr {
    border-bottom: 3px double #e1e1e1;
  }
  .form_table.sm-responsive tr:nth-last-child(1) {
    border-bottom: 0px;
  }
  .form_table.sm-responsive tr th, .form_table.sm-responsive tr td {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .form_table.sm-responsive tr th {
    display: none;
  }
  .form_table.sm-responsive tr td {
    display: block;
    border-bottom: 1px dotted rgba(225, 225, 225, 0.7);
    padding-left: 80px;
    position: relative;
    min-height: calc(1em + 8px);
  }
  .form_table.sm-responsive tr td:before {
    content: attr(data-head) "";
    font-weight: bold;
    font-size: 12px;
    position: absolute;
    line-height: 1em;
    left: 8px;
    top: calc(50% - 0.5em);
    color: #595757;
  }
  .form_table.sm-responsive tr td:nth-last-child(1) {
    border-bottom: 0;
  }
  .form_table.sm-responsive thead {
    display: none;
  }
  .form_table.sm-responsive .align-left, .form_table.sm-responsive .align-center, .form_table.sm-responsive .align-right {
    text-align: left !important;
  }
  .form_table.sm-responsive tbody, .form_table.sm-responsive tfoot, .form_table.sm-responsive thead, .form_table.sm-responsive tr {
    vertical-align: top;
  }
}
.form_table.no-responsive {
  /* Desktop */
  /* 2018.10.04 */
  /* Vertical Align
  ----------------- */
  /* Eliminate Bottom Line When ROWSPAN (simple rowspan)
  ------------- */
}
.form_table.no-responsive th, .form_table.no-responsive td {
  border-bottom: 1px solid #e1e1e1;
}
.form_table.no-responsive th.w-1, .form_table.no-responsive td.w-1 {
  width: 10%;
}
.form_table.no-responsive th.w-2, .form_table.no-responsive td.w-2 {
  width: 20%;
}
.form_table.no-responsive th.w-3, .form_table.no-responsive td.w-3 {
  width: 30%;
}
.form_table.no-responsive th.w-4, .form_table.no-responsive td.w-4 {
  width: 40%;
}
.form_table.no-responsive th.w-5, .form_table.no-responsive td.w-5 {
  width: 50%;
}
.form_table.no-responsive th.w-6, .form_table.no-responsive td.w-6 {
  width: 60%;
}
.form_table.no-responsive th.w-7, .form_table.no-responsive td.w-7 {
  width: 70%;
}
.form_table.no-responsive th.w-8, .form_table.no-responsive td.w-8 {
  width: 80%;
}
.form_table.no-responsive th.w-9, .form_table.no-responsive td.w-9 {
  width: 90%;
}
.form_table.no-responsive th.w-f-1, .form_table.no-responsive td.w-f-1 {
  width: 45px;
}
.form_table.no-responsive th.w-f-2, .form_table.no-responsive td.w-f-2 {
  width: 90px;
}
.form_table.no-responsive th.w-f-3, .form_table.no-responsive td.w-f-3 {
  width: 135px;
}
.form_table.no-responsive th.w-f-4, .form_table.no-responsive td.w-f-4 {
  width: 180px;
}
.form_table.no-responsive th.w-f-5, .form_table.no-responsive td.w-f-5 {
  width: 225px;
}
.form_table.no-responsive tbody tr:nth-last-child(1) th, .form_table.no-responsive tbody tr:nth-last-child(1) td {
  border-bottom: 0px;
}
.form_table.no-responsive thead th, .form_table.no-responsive thead td, .form_table.no-responsive tfoot th, .form_table.no-responsive tfoot td {
  background-color: #fcfcfc;
  border-style: solid;
  border-color: #e1e1e1;
  border-width: 0;
  margin: 0;
}
.form_table.no-responsive thead th, .form_table.no-responsive thead td {
  border-bottom-width: 1px;
}
.form_table.no-responsive tfoot th, .form_table.no-responsive tfoot td {
  border-top-width: 1px;
}
.form_table.no-responsive tbody, .form_table.no-responsive tfoot, .form_table.no-responsive thead, .form_table.no-responsive tr {
  vertical-align: middle;
}
.form_table.no-responsive.vertical-middle th, .form_table.no-responsive.vertical-middle td {
  vertical-align: middle;
}
.form_table.no-responsive.vertical-top th, .form_table.no-responsive.vertical-top td {
  vertical-align: top;
}
.form_table.no-responsive.vertical-bottom th, .form_table.no-responsive.vertical-bottom td {
  vertical-align: bottom;
}
.form_table.no-responsive tr:nth-last-child(2) td[rowspan="2"], .form_table.no-responsive tr:nth-last-child(2) th[rowspan="2"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(3) td[rowspan="3"], .form_table.no-responsive tr:nth-last-child(3) th[rowspan="3"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(4) td[rowspan="4"], .form_table.no-responsive tr:nth-last-child(4) th[rowspan="4"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(5) td[rowspan="5"], .form_table.no-responsive tr:nth-last-child(5) th[rowspan="5"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(6) td[rowspan="6"], .form_table.no-responsive tr:nth-last-child(6) th[rowspan="6"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(7) td[rowspan="7"], .form_table.no-responsive tr:nth-last-child(7) th[rowspan="7"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(8) td[rowspan="8"], .form_table.no-responsive tr:nth-last-child(8) th[rowspan="8"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(9) td[rowspan="9"], .form_table.no-responsive tr:nth-last-child(9) th[rowspan="9"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(10) td[rowspan="10"], .form_table.no-responsive tr:nth-last-child(10) th[rowspan="10"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(11) td[rowspan="11"], .form_table.no-responsive tr:nth-last-child(11) th[rowspan="11"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(12) td[rowspan="12"], .form_table.no-responsive tr:nth-last-child(12) th[rowspan="12"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(13) td[rowspan="13"], .form_table.no-responsive tr:nth-last-child(13) th[rowspan="13"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(14) td[rowspan="14"], .form_table.no-responsive tr:nth-last-child(14) th[rowspan="14"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(15) td[rowspan="15"], .form_table.no-responsive tr:nth-last-child(15) th[rowspan="15"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(16) td[rowspan="16"], .form_table.no-responsive tr:nth-last-child(16) th[rowspan="16"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(17) td[rowspan="17"], .form_table.no-responsive tr:nth-last-child(17) th[rowspan="17"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(18) td[rowspan="18"], .form_table.no-responsive tr:nth-last-child(18) th[rowspan="18"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(19) td[rowspan="19"], .form_table.no-responsive tr:nth-last-child(19) th[rowspan="19"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(20) td[rowspan="20"], .form_table.no-responsive tr:nth-last-child(20) th[rowspan="20"] {
  border-bottom: 0;
}

table.form_table {
  border-top: 1px solid #e1e1e1;
}
.blocky_header + table.form_table {
  border-top: 0;
}
table.form_table:nth-child(1) {
  border: 0;
}

/* Attachment List
------------------ */
.attach_list {
  text-align: left !important;
  padding: 8px/2 !important;
}
.attach_list .item {
  padding: 4px 8px;
  border-top-style: solid;
  border-top-color: #e1e1e1;
}
.attach_list .item + .item {
  border-top-width: 1px;
}

.attach_other,
.attach_doc,
.attach_pdf,
.attach_ppt,
.attach_img {
  position: relative;
  text-align: left;
  display: inline-block;
  padding: 4px 0;
  padding-left: 40px;
}
.attach_other:before,
.attach_doc:before,
.attach_pdf:before,
.attach_ppt:before,
.attach_img:before {
  content: "";
  width: 24px;
  height: 30px;
  background-size: contain;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
  background-image: url(../images/common/ic/ic_file_other.png);
  position: absolute;
  left: 8px;
  top: calc(50% - 15px);
}
@media (max-width: 767px ) {
  .attach_other,
  .attach_doc,
  .attach_pdf,
  .attach_ppt,
  .attach_img {
    padding-left: 30px;
  }
  .attach_other:before,
  .attach_doc:before,
  .attach_pdf:before,
  .attach_ppt:before,
  .attach_img:before {
    width: 18px;
    height: 22.5px;
    left: 4px;
    top: 3px;
  }
}

.attach_doc:before {
  background-image: url(../images/common/ic/ic_file_doc.png);
}

.attach_pdf:before {
  background-image: url(../images/common/ic/ic_file_pdf.png);
}

.attach_ppt:before {
  background-image: url(../images/common/ic/ic_file_ppt.png);
}

.attach_img:before {
  background-image: url(../images/common/ic/ic_file_img.png);
}

/* Form Column, List in Basic Block */
.blocky .form_column > .item {
  padding: 8px 0;
}
.blocky .form_column {
  padding: 8px 16px;
}
.blocky .form_column > .item > .title {
  vertical-align: top;
}
@media (max-width: 991px) {
  .blocky .form_column.sm_style {
    padding: 0;
  }
  .blocky .form_column.sm_style > .item {
    padding: 0;
  }
  .blocky .form_column.sm_style > .item .title {
    padding-bottom: 0;
  }
  .blocky .form_column.sm_style > .item .content {
    padding: 8px;
  }
  .blocky .form_column.sm_style > .item + .item {
    border-top: 3px double #e1e1e1;
  }
}

/* Cols in Basic Block
Use or Not?
------------------------- */
/* 2018.10.11 */
.cube-row {
  margin: 0 0px !important;
  padding: 8px;
}
.cube-row:after, .cube-row:before {
  content: "";
  display: block;
  clear: both;
}
.cube-row [class*=col-lg], .cube-row [class*=col-md], .cube-row [class*=col-sm], .cube-row [class*=col-xs] {
  padding-left: 8px;
  padding-right: 8px;
}
.cube-row .cube {
  float: left;
  width: 100%;
}
@media (min-width: 768px ) {
  .cube-row .cube.w-50 {
    width: 50%;
  }
}

/* Cube
------------------ */
.cube {
  padding: 8px 8px;
}
.cube.shadow:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cube-header {
  padding: 4px 8px;
  background: #eee;
  border-radius: 4px;
}

.cube-body {
  padding: 2px 0;
}

/* Form in Cube
--------------- */
.cube input, .cube textarea, .cube select {
  display: block;
  width: 100%;
}
.cube .caret_select {
  display: block;
}
.cube input, .cube textarea, .cube .caret_select {
  margin-top: 2px;
  margin-bottom: 2px;
}
.cube .checkbox-inline, .cube .radio-inline {
  margin-top: 2px;
}
.cube .checkbox-inline + .checkbox-inline {
  margin-top: 2px;
}
.cube .radio-inline + .radio-inline {
  margin-top: 2px;
}

/* 

Modify: 
. basic_container        > . blocky_container
. basic_block            > . blocky
. basic_block . header   > . blocky_header
. basic_block . block    > . blocky_body
. basic_block . footer   > . blocky_footer

. basic_block_tab        > . blocky_tab

 */
/* Sidebar */
/* Selected Show */
.nav_side_solid .layer_1st, .nav_side_solid .layer_2nd, .sidebar_body .layer_1st, .sidebar_body .layer_2nd, .prdl_sidebar-body .layer_1st, .prdl_sidebar-body .layer_2nd {
  display: none;
}
.nav_side_solid .selected > .layer_1st, .nav_side_solid .selected > .layer_2nd, .sidebar_body .selected > .layer_1st, .sidebar_body .selected > .layer_2nd, .prdl_sidebar-body .selected > .layer_1st, .prdl_sidebar-body .selected > .layer_2nd {
  display: block;
}

.nav_side_solid > li + li {
  border-top: 1px solid #ccc;
}
.nav_side_solid i {
  text-align: center;
  width: 15px;
}
.nav_side_solid .layer_1st > li > a {
  padding-left: 28px;
  border-top: 1px solid #ccc;
}
.nav_side_solid .layer_2nd > li > a {
  padding-left: calc(28px + 1em);
  border-top: 0px solid #ccc;
}
.nav_side_solid h1, .nav_side_solid h2, .nav_side_solid h3, .nav_side_solid h4 {
  margin: 0;
  padding-left: 0px;
  font-size: inherit;
}

.nav_side_solid > li a, .nav_side_solid .layor_title {
  display: block;
  position: relative;
  line-height: 1em;
  transition: all 0s ease-in-out;
  padding: 4px 8px;
  font-size: 16px;
}
.nav_side_solid > li a:hover, .nav_side_solid > li a:focus, .nav_side_solid .layor_title:hover, .nav_side_solid .layor_title:focus {
  background-color: rgba(0, 0, 0, 0.02);
}

.prdl_sidebar-body a {
  display: block;
  position: relative;
}

/* Parchment */
.parchment_header {
  position: relative;
  padding: 4px 0 6px;
  border-bottom: 3px double #dfdfdf;
  margin-bottom: 8px;
}
.parchment_header:after, .parchment_header:before {
  content: "";
  display: block;
  clear: both;
}
.parchment_header .title {
  position: relative;
  display: inline-block;
  color: #a4c7e5;
}
.parchment_header .date {
  float: right;
  display: inline-block;
  font-size: 85%;
  color: #999;
}

.parchment_body {
  padding: 8px;
  background-color: #fffdf3;
  border: 1px solid #f6eedd;
  border-radius: 4px;
  margin-bottom: 15px;
  /* form_column */
}
.parchment_body .form_column.border > .item + .item {
  border-color: #f6eedd;
}
.parchment_body .divide_text:before {
  border-top-color: #f6eedd;
}
.parchment_body hr {
  border-color: #f6eedd;
  margin: 8px 0;
}

.parchment_banner img {
  width: 100%;
  display: block;
  margin: 0 auto 0px;
  border-radius: 4px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.parchment_banner + .parchment_body {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* img */
.article_img {
  display: block;
  margin: 0px auto 15px;
  border-radius: 4px;
}

/* List Second */
.list_second {
  display: block;
  width: 100%;
  background-color: white;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 3px double #dfdfdf;
}
.list_second:after, .list_second:before {
  content: "";
  display: block;
  clear: both;
}
.list_second .item {
  padding: 8px;
}
.list_second .item:after, .list_second .item:before {
  content: "";
  display: block;
  clear: both;
}
.list_second a {
  color: inherit;
}
.list_second a:hover {
  text-decoration: underline;
}
.list_second .item + .item {
  border-top: 1px solid #e1e1e1;
}
.list_second .title, .list_second .date {
  display: block;
}
.list_second .title {
  color: #a4c7e5;
  float: left;
}
.list_second .date {
  float: right;
  font-size: 85%;
  color: #727272;
}
@media (max-width: 767px ) {
  .list_second .title, .list_second .date {
    width: 100%;
  }
}

.list_col_1 .item:nth-child(2n+1) {
  background-color: #fff8f3;
}
.list_col_1 .item:nth-child(2n+2) {
  background-color: white;
}

/* Statictics */
.blocky .list_second {
  padding-bottom: 0;
}

.list_year, .list_month {
  border-bottom: 3px double #dfdfdf;
  margin-bottom: 0px;
}

.list_year .item {
  width: 16.6666666667%;
}
@media (max-width: 575px ) {
  .list_year .item {
    width: 25%;
  }
}
@media (min-width: 576px ) {
  .list_year .item:nth-child(6n+1):nth-last-child(1) {
    width: 100%;
  }
  .list_year .item:nth-child(6n+2):nth-last-child(1) {
    width: 83.3333333333%;
  }
  .list_year .item:nth-child(6n+3):nth-last-child(1) {
    width: 66.6666666667%;
  }
  .list_year .item:nth-child(6n+4):nth-last-child(1) {
    width: 50%;
  }
  .list_year .item:nth-child(6n+5):nth-last-child(1) {
    width: 33.3333333333%;
  }
  .list_year .item:nth-child(12n+1) {
    background-color: #fff8f3;
  }
  .list_year .item:nth-child(12n+2) {
    background-color: #fff8f3;
  }
  .list_year .item:nth-child(12n+3) {
    background-color: #fff8f3;
  }
  .list_year .item:nth-child(12n+4) {
    background-color: #fff8f3;
  }
  .list_year .item:nth-child(12n+5) {
    background-color: #fff8f3;
  }
  .list_year .item:nth-child(12n+6) {
    background-color: #fff8f3;
  }
  .list_year .item:nth-child(12n+7) {
    background-color: white;
  }
  .list_year .item:nth-child(12n+8) {
    background-color: white;
  }
  .list_year .item:nth-child(12n+9) {
    background-color: white;
  }
  .list_year .item:nth-child(12n+10) {
    background-color: white;
  }
  .list_year .item:nth-child(12n+11) {
    background-color: white;
  }
  .list_year .item:nth-child(12n+12) {
    background-color: white;
  }
}
@media (max-width: 575px ) {
  .list_year .item:nth-child(4n+1):nth-last-child(1) {
    width: 100%;
  }
  .list_year .item:nth-child(4n+2):nth-last-child(1) {
    width: 75%;
  }
  .list_year .item:nth-child(4n+3):nth-last-child(1) {
    width: 50%;
  }
  .list_year .item:nth-child(8n+1) {
    background-color: #fff8f3;
  }
  .list_year .item:nth-child(8n+2) {
    background-color: #fff8f3;
  }
  .list_year .item:nth-child(8n+3) {
    background-color: #fff8f3;
  }
  .list_year .item:nth-child(8n+4) {
    background-color: #fff8f3;
  }
  .list_year .item:nth-child(8n+5) {
    background-color: white;
  }
  .list_year .item:nth-child(8n+6) {
    background-color: white;
  }
  .list_year .item:nth-child(8n+7) {
    background-color: white;
  }
  .list_year .item:nth-child(8n+8) {
    background-color: white;
  }
}

.list_month .inner_title {
  width: 8.3333333333%;
}
@media (max-width: 575px ) {
  .list_month .inner_title {
    width: 100%;
  }
}
.list_month .inner_content {
  width: 91.6666666667%;
}
@media (max-width: 575px ) {
  .list_month .inner_content {
    width: 100%;
  }
}
.list_month .inner_content_item {
  width: 16.6666666667%;
}
@media (max-width: 575px ) {
  .list_month .inner_content_item {
    width: 25%;
  }
}
@media (min-width: 992px ) {
  .list_month .inner_content_item {
    width: 8.3333333333%;
  }
}
@media (min-width: 576px ) {
  .list_month .inner_content_item:nth-child(12n+1):nth-last-child(1) {
    width: 100%;
  }
  .list_month .inner_content_item:nth-child(12n+2):nth-last-child(1) {
    width: 91.6666666667%;
  }
  .list_month .inner_content_item:nth-child(12n+3):nth-last-child(1) {
    width: 83.3333333333%;
  }
  .list_month .inner_content_item:nth-child(12n+4):nth-last-child(1) {
    width: 75%;
  }
  .list_month .inner_content_item:nth-child(12n+5):nth-last-child(1) {
    width: 66.6666666667%;
  }
  .list_month .inner_content_item:nth-child(12n+6):nth-last-child(1) {
    width: 58.3333333333%;
  }
  .list_month .inner_content_item:nth-child(12n+7):nth-last-child(1) {
    width: 50%;
  }
  .list_month .inner_content_item:nth-child(12n+8):nth-last-child(1) {
    width: 41.6666666667%;
  }
  .list_month .inner_content_item:nth-child(12n+9):nth-last-child(1) {
    width: 33.3333333333%;
  }
  .list_month .inner_content_item:nth-child(12n+10):nth-last-child(1) {
    width: 25%;
  }
  .list_month .inner_content_item:nth-child(12n+11):nth-last-child(1) {
    width: 16.6666666667%;
  }
}
@media (max-width: 575px ) {
  .list_month .inner_content_item:nth-child(4n+1):nth-last-child(1) {
    width: 100%;
  }
  .list_month .inner_content_item:nth-child(4n+2):nth-last-child(1) {
    width: 75%;
  }
  .list_month .inner_content_item:nth-child(4n+3):nth-last-child(1) {
    width: 50%;
  }
}
.list_month .inner_title, .list_month .title {
  text-align: center;
}
.list_month .title {
  width: 100%;
}
@media (max-width: 575px ) {
  .list_month .item {
    padding-top: 0;
  }
  .list_month .inner_title {
    border-bottom: 3px double #e1e1e1;
  }
}

/* Column */
/* Form Column
--------------- */
/* 2018.10.05 */
.form_column {
  padding: 4px 0;
}
.form_column:after, .form_column:before {
  content: "";
  display: block;
  clear: both;
}
.form_column > .item,
.form_column > .divide_text {
  float: left;
  width: 100%;
}
.form_column > .item {
  padding-top: 4px;
  padding-bottom: 4px;
}

.form_column {
  font-size: 14px;
}
.form_column:after, .form_column:before {
  content: "";
  display: block;
  clear: both;
}
.form_column .title,
.form_column .content {
  display: block;
  float: left;
}
.form_column .title {
  vertical-align: top;
  text-align: left;
}
.form_column .title .title_text {
  font-size: inherit;
}
.form_column .content {
  vertical-align: middle;
}
.form_column p {
  margin: 0;
}
@media (max-width: 767px) {
  .form_column .title {
    text-align: left;
  }
}

/* Content: Pure Txt
----------------- */
.pure_text {
  padding: 8px 0px 8px 0px;
}

/* Input in Form Column */
.form_column input, .form_column textarea, .form_column select {
  display: block;
  width: 100%;
}
.form_column .caret_select {
  display: block;
}
.form_column input, .form_column textarea, .form_column .caret_select {
  margin-top: 2px;
  margin-bottom: 2px;
}
.form_column .checkbox-inline, .form_column .radio-inline {
  margin-top: 2px;
}
.form_column .checkbox-inline + .checkbox-inline {
  margin-top: 2px;
}
.form_column .radio-inline + .radio-inline {
  margin-top: 2px;
}

/* Style
------------- */
.form_column.narrow {
  padding: 4px;
}
.form_column.narrow > .item {
  padding: 0px 0;
}

/* RWD
------------------ */
.form_column .divide_text {
  text-align: left;
}
@media (min-width: 768px) {
  .form_column {
    /* Column Desktop */
    /* Item Width */
  }
  .form_column .title {
    width: calc((6em + 8px * 2));
    padding: 8px 8px 0;
  }
  .form_column .content {
    width: calc(100% - (6em + 8px * 2));
  }
  .form_column .divide_text {
    padding-left: "(6em + 8px * 2)";
  }
  .form_column .item.title-w-2 .title {
    width: calc(1em * 2 + 16px);
  }
  .form_column .item.title-w-2 .content {
    width: calc(100% - (1em * 2 + 16px));
  }
  .form_column .item.title-w-3 .title {
    width: calc(1em * 3 + 16px);
  }
  .form_column .item.title-w-3 .content {
    width: calc(100% - (1em * 3 + 16px));
  }
  .form_column .item.title-w-4 .title {
    width: calc(1em * 4 + 16px);
  }
  .form_column .item.title-w-4 .content {
    width: calc(100% - (1em * 4 + 16px));
  }
  .form_column .item.title-w-5 .title {
    width: calc(1em * 5 + 16px);
  }
  .form_column .item.title-w-5 .content {
    width: calc(100% - (1em * 5 + 16px));
  }
  .form_column .item.title-w-6 .title {
    width: calc(1em * 6 + 16px);
  }
  .form_column .item.title-w-6 .content {
    width: calc(100% - (1em * 6 + 16px));
  }
  .form_column .item.title-w-7 .title {
    width: calc(1em * 7 + 16px);
  }
  .form_column .item.title-w-7 .content {
    width: calc(100% - (1em * 7 + 16px));
  }
  .form_column .item.title-w-8 .title {
    width: calc(1em * 8 + 16px);
  }
  .form_column .item.title-w-8 .content {
    width: calc(100% - (1em * 8 + 16px));
  }
  .form_column .item.title-w-9 .title {
    width: calc(1em * 9 + 16px);
  }
  .form_column .item.title-w-9 .content {
    width: calc(100% - (1em * 9 + 16px));
  }
  .form_column .item.title-w-10 .title {
    width: calc(1em * 10 + 16px);
  }
  .form_column .item.title-w-10 .content {
    width: calc(100% - (1em * 10 + 16px));
  }
  .form_column > .item.w-50 {
    width: 50%;
  }
  .form_column > .item:nth-child(2n+1) {
    clear: left;
  }
  .form_column > .item:nth-child(2n) {
    clear: right;
  }
  .form_column.border > .item + .item {
    border-top-width: 1px;
    border-top-style: solid;
    border-color: #e1e1e1;
  }
  .form_column.border > .item.w-50 + .item.w-50:nth-child(2) {
    border-top-width: 0;
  }
}
@media (max-width: 767px) {
  .form_column {
    /* Column Mobile
    ----------------- */
  }
  .form_column .title, .form_column .content, .form_column .item.w-50 {
    width: 100%;
  }
  .form_column .title {
    padding: 4px 0px 4px;
  }
  .form_column .pure_text {
    padding: 8px 0px 8px 0px;
  }
  .form_column.narrow {
    padding: 8px 8px;
  }
  .form_column.border > .item + .item {
    border-top: 1px solid #e1e1e1;
  }
}
.form_column.no-responsive {
  /* Column Desktop */
  /* Item Width */
}
.form_column.no-responsive .title {
  width: calc((6em + 8px * 2));
  padding: 8px 8px 0;
}
.form_column.no-responsive .content {
  width: calc(100% - (6em + 8px * 2));
}
.form_column.no-responsive .divide_text {
  padding-left: "(6em + 8px * 2)";
}
.form_column.no-responsive .item.title-w-2 .title {
  width: calc(1em * 2 + 16px);
}
.form_column.no-responsive .item.title-w-2 .content {
  width: calc(100% - (1em * 2 + 16px));
}
.form_column.no-responsive .item.title-w-3 .title {
  width: calc(1em * 3 + 16px);
}
.form_column.no-responsive .item.title-w-3 .content {
  width: calc(100% - (1em * 3 + 16px));
}
.form_column.no-responsive .item.title-w-4 .title {
  width: calc(1em * 4 + 16px);
}
.form_column.no-responsive .item.title-w-4 .content {
  width: calc(100% - (1em * 4 + 16px));
}
.form_column.no-responsive .item.title-w-5 .title {
  width: calc(1em * 5 + 16px);
}
.form_column.no-responsive .item.title-w-5 .content {
  width: calc(100% - (1em * 5 + 16px));
}
.form_column.no-responsive .item.title-w-6 .title {
  width: calc(1em * 6 + 16px);
}
.form_column.no-responsive .item.title-w-6 .content {
  width: calc(100% - (1em * 6 + 16px));
}
.form_column.no-responsive .item.title-w-7 .title {
  width: calc(1em * 7 + 16px);
}
.form_column.no-responsive .item.title-w-7 .content {
  width: calc(100% - (1em * 7 + 16px));
}
.form_column.no-responsive .item.title-w-8 .title {
  width: calc(1em * 8 + 16px);
}
.form_column.no-responsive .item.title-w-8 .content {
  width: calc(100% - (1em * 8 + 16px));
}
.form_column.no-responsive .item.title-w-9 .title {
  width: calc(1em * 9 + 16px);
}
.form_column.no-responsive .item.title-w-9 .content {
  width: calc(100% - (1em * 9 + 16px));
}
.form_column.no-responsive .item.title-w-10 .title {
  width: calc(1em * 10 + 16px);
}
.form_column.no-responsive .item.title-w-10 .content {
  width: calc(100% - (1em * 10 + 16px));
}
.form_column.no-responsive > .item.w-50 {
  width: 50%;
}
.form_column.no-responsive > .item:nth-child(2n+1) {
  clear: left;
}
.form_column.no-responsive > .item:nth-child(2n) {
  clear: right;
}
.form_column.no-responsive.border > .item + .item {
  border-top-width: 1px;
  border-top-style: solid;
  border-color: #e1e1e1;
}
.form_column.no-responsive.border > .item.w-50 + .item.w-50:nth-child(2) {
  border-top-width: 0;
}

/* Q & A 
---------------------*/
@media (min-width: 992px) {
  .form_column.column_qa > .item.item_border + .item,
  .form_column.column_qa .item.item_border {
    border-top: 0;
  }
  .form_column.column_qa > .item.item_border {
    padding: 4px;
    border: 1px dotted #e1e1e1;
    background-color: #fff;
    border-radius: 4px;
    margin: 0 0 0;
  }
  .form_column.column_qa > .item.item_border:nth-child(1) {
    margin-top: 0;
    border-top-width: 1px;
  }
}

/* Forms */
/* 2018.10.09 */
input,
textarea,
select {
  display: inline-block;
  letter-spacing: 0px;
  vertical-align: middle;
  resize: vertical;
  max-width: 100%;
  border: 1px solid #ccc;
}
@media (max-width: 767px) {
  input,
  textarea,
  select {
    height: calc(1.8em + 20px);
  }
}

input,
textarea,
select,
.btn-input,
.input-group .btn {
  padding: 6px 8px;
  margin: 0px 0;
  border-radius: 2px;
  line-height: 1.5em;
  height: calc(1.5em + 12px);
}
@media (max-width: 767px) {
  input,
  textarea,
  select,
  .btn-input,
  .input-group .btn {
    padding: 10px 8px;
    height: calc(1.8em + 20px);
  }
}

select {
  background-color: white;
}

option {
  color: #595757;
  background-color: white;
  border-width: 1px;
}

input:focus,
textarea:focus,
select:focus {
  border: 1px solid rgba(164, 199, 229, 0.5);
  outline: none;
}

textarea {
  height: unset;
}

/* Placeholder
------------------------ */
::-webkit-input-placeholder {
  color: #bbb;
  text-overflow: ellipsis;
}

:-moz-placeholder {
  color: #bbb !important;
  text-overflow: ellipsis;
  opacity: 1;
}

::-moz-placeholder {
  color: #bbb !important;
  text-overflow: ellipsis;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #bbb !important;
  text-overflow: ellipsis;
  opacity: 1;
}

/* caret
----------------------- */
.n_lang_caret {
  display: block;
  text-align: center;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 70px;
  height: 44px;
  line-height: 44px;
  border-radius: 4px;
  background-color: #ea6000;
  color: #fff;
}

.caret_select {
  position: relative;
  z-index: 0;
  display: inline-block;
  margin-top: 8px;
  margin-right: 8px;
  color: #333;
}
.caret_select::after {
  content: "\f107";
  display: block;
  position: absolute;
  font-family: "FontAwesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: inherit;
  z-index: 0;
  pointer-events: none;
  right: 12px;
  top: calc(50% - 10px);
  line-height: 20px;
}
.caret_select select {
  padding-right: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-color: #f2f2f2;
  border: none;
}
.caret_select select[disabled=disabled] {
  cursor: auto;
}
.caret_select select option {
  background-color: #f2f2f2;
  color: #333;
}

.prd_select {
  border: 1px solid;
  border-color: #f3f8fc;
}

@media (max-width: 767px ) {
  .nl_m_wrapper {
    display: none;
  }
}
/* Datepicker Range */
.input-daterange {
  float: right;
  width: 100%;
  max-width: 300px;
  margin: 2px;
}
.input-daterange .form-control, .input-daterange .input-group-addon, .input-daterange .btn {
  float: left;
}
.input-daterange .input-group-addon {
  width: 40px;
  border-width: 1px;
  margin: 0 -1px;
}
.input-daterange .btn {
  width: 60px;
  height: 30px;
  padding: 2px;
  border-radius: 0 2px 2px 0;
}
.input-daterange .form-control {
  width: calc((100% - 40px - 60px) / 2) !important;
  padding: 0;
}
.input-daterange .form-control:nth-last-child(2) {
  border-radius: 0;
}
@media (max-width: 767px) {
  .input-daterange {
    max-width: 280px;
  }
}

/* 2018.10.04 */
/*--- Custom Checkbox ---*/
.checkbox-primary, .radio-primary {
  display: block;
  position: relative;
  min-width: 33px;
  min-height: 33px;
  padding-left: 33px !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  margin: 0px 0;
  /* Hover
  -------------- */
  /* Checked
  ----------------- */
}
.checkbox-primary .checkmark, .radio-primary .checkmark {
  position: absolute;
  top: calc(33px / 2 - 20px / 2);
  left: 6.5px;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
  cursor: pointer;
}
.checkbox-primary .checkmark:after, .radio-primary .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1px;
  width: 8px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -khtml-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkbox-primary input[type=checkbox], .checkbox-primary input[type=radio], .radio-primary input[type=checkbox], .radio-primary input[type=radio] {
  position: absolute;
  opacity: 0;
  margin: 0;
  height: 0;
  width: 0;
  /* Disabled
  ----------------- */
}
.checkbox-primary input[type=checkbox]:disabled ~ .checkmark, .checkbox-primary input[type=radio]:disabled ~ .checkmark, .radio-primary input[type=checkbox]:disabled ~ .checkmark, .radio-primary input[type=radio]:disabled ~ .checkmark {
  cursor: not-allowed;
  border-color: #ccc;
}
.checkbox-primary input[type=checkbox]:disabled:checked ~ .checkmark, .checkbox-primary input[type=radio]:disabled:checked ~ .checkmark, .radio-primary input[type=checkbox]:disabled:checked ~ .checkmark, .radio-primary input[type=radio]:disabled:checked ~ .checkmark {
  border-color: #ccc;
}
.checkbox-primary input[type=checkbox]:disabled:checked ~ .checkmark:after, .checkbox-primary input[type=radio]:disabled:checked ~ .checkmark:after, .radio-primary input[type=checkbox]:disabled:checked ~ .checkmark:after, .radio-primary input[type=radio]:disabled:checked ~ .checkmark:after {
  display: block;
  background-color: #ccc;
}
.checkbox-primary:hover input[type=checkbox] ~ .checkmark, .checkbox-primary:hover input[type=radio] ~ .checkmark, .radio-primary:hover input[type=checkbox] ~ .checkmark, .radio-primary:hover input[type=radio] ~ .checkmark {
  background-color: #fcfcfc;
}
.checkbox-primary input[type=checkbox]:checked ~ .checkmark, .checkbox-primary input[type=checkbox]:checked:hover ~ .checkmark, .checkbox-primary input[type=radio]:checked ~ .checkmark, .checkbox-primary input[type=radio]:checked:hover ~ .checkmark, .radio-primary input[type=checkbox]:checked ~ .checkmark, .radio-primary input[type=checkbox]:checked:hover ~ .checkmark, .radio-primary input[type=radio]:checked ~ .checkmark, .radio-primary input[type=radio]:checked:hover ~ .checkmark {
  background-color: #a4c7e5;
  border-color: #a4c7e5;
}
.checkbox-primary input[type=checkbox]:checked ~ .checkmark:after, .checkbox-primary input[type=checkbox]:checked:hover ~ .checkmark:after, .checkbox-primary input[type=radio]:checked ~ .checkmark:after, .checkbox-primary input[type=radio]:checked:hover ~ .checkmark:after, .radio-primary input[type=checkbox]:checked ~ .checkmark:after, .radio-primary input[type=checkbox]:checked:hover ~ .checkmark:after, .radio-primary input[type=radio]:checked ~ .checkmark:after, .radio-primary input[type=radio]:checked:hover ~ .checkmark:after {
  display: block;
}

/* radio */
.radio-primary .checkmark {
  border-radius: 20px;
}
.radio-primary .checkmark:after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 4px solid #fff;
  border-radius: 50%;
  background-color: #a4c7e5;
  -khtml-transform: rotate(0deg);
  transform: rotate(0deg);
}

/*--- Checkbox inline item ---*/
.checkbox-inline, .radio-inline {
  max-height: 80vh;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  padding-left: 0;
  margin-left: 0 !important;
  /* a tag */
}
.checkbox-inline.no-border, .radio-inline.no-border {
  border: 0px;
}
.checkbox-inline > .item, .radio-inline > .item {
  display: inline-block;
}
.checkbox-inline > .item > label, .radio-inline > .item > label {
  display: block;
  width: auto;
  line-height: 1.5em;
  padding: calc((33px - 1.5em) / 2) 8px;
  border-radius: 4px;
}
.checkbox-inline a, .radio-inline a {
  font-size: inherit;
  color: #0275d8;
}
.checkbox-inline a:hover, .radio-inline a:hover {
  color: #0275d8;
  text-decoration: underline;
}
.checkbox-inline > .item:hover > label, .radio-inline > .item:hover > label {
  background-color: rgba(0, 0, 0, 0.02);
}

/* Width */
.checkbox-inline > .item.w-100, .radio-inline > .item.w-100 {
  width: 100%;
}

/*--- Checkbox list ---*/
/* checkbox in table
--------------------- */
table td > .checkbox-primary, table td > .radio-primary, table th > .checkbox-primary, table th > .radio-primary {
  display: inline;
}
table td > .checkbox-primary .checkmark, table td > .radio-primary .checkmark, table th > .checkbox-primary .checkmark, table th > .radio-primary .checkmark {
  top: calc(50% - 20px / 2);
}

/* Unit Input
------------- */
.unit_input {
  position: relative;
}
.unit_input > input {
  padding-right: 18px;
}
.unit_input > span {
  position: absolute;
  right: 10px;
  top: calc(50% - 12px);
}

.unit_input_left {
  position: relative;
}
.unit_input_left > span {
  position: absolute;
  left: 10px;
  top: calc(50% - 12px);
}

label.required {
  position: relative;
}
label.required:before {
  content: "*";
  color: #f56954;
  position: absolute;
  left: -10px;
  top: calc(50% - 5px);
  width: 10px;
  line-height: 10px;
  font-weight: 700;
}

/* Search Group
-------------- */
.search_group:after, .search_group:before {
  content: "";
  display: block;
  clear: both;
}
.search_group > input, .search_group > button {
  float: left;
}
.search_group > input {
  width: calc(100% - 50px);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.search_group > button {
  width: 51px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-left: -1px;
}

/* divide text */
.divide_text {
  position: relative;
  padding: 8px 0;
  font-size: 14px;
  text-align: center;
}
.divide_text span {
  color: #666;
  padding: 0 8px;
  background-color: #fff;
  z-index: 1;
  position: relative;
  display: inline-block;
  background: #eee;
  border-radius: 520px;
}
.divide_text:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 50%;
  left: 0;
  border-top: 1px solid #e1e1e1;
}
.divide_text + .item {
  border-top: 0;
}
@media (max-width: 991px) {
  .divide_text {
    padding-left: 0 !important;
    text-align: center !important;
  }
}

/* Width 100
-------------- */
.form_column .divide_text.dt-100 {
  padding-left: 0;
}
.form_column .divide_text.dt-100 span {
  width: 100%;
}

/* 
inline input (maybe filter bar)
------------------ */
.input_inline:after, .input_inline:before {
  content: "";
  display: block;
  clear: both;
}
.input_inline li {
  display: inline-block;
  margin: 2px 0;
  padding-left: 8px;
  vertical-align: middle;
}
.input_inline li > .input_label,
.input_inline li > .search_group {
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 575px ) {
  .input_inline.xxs-responsive li {
    display: block;
  }
  .input_inline.xxs-responsive li:after, .input_inline.xxs-responsive li:before {
    content: "";
    display: block;
    clear: both;
  }
  .input_inline.xxs-responsive li > .input_label {
    width: 80px;
    text-align: right;
    padding-right: 8px;
    margin-top: 1em;
  }
  .input_inline.xxs-responsive li > input,
  .input_inline.xxs-responsive li > textarea,
  .input_inline.xxs-responsive li > .caret_select,
  .input_inline.xxs-responsive li > .search_group {
    width: calc(100% - 80px - 5px);
    float: right;
  }
  .input_inline.xxs-responsive li .caret_select select {
    width: 100%;
  }
}

.input_simple {
  position: relative;
  padding: 1px !important;
}
.input_simple > label {
  height: 24px;
  width: 100%;
}
.input_simple > label:only-child {
  margin-top: 8px;
}
.input_simple > label .lock {
  color: #539c49;
  font-size: 12px;
  font-weight: 400;
}
.input_simple > label, .input_simple > p {
  margin: 4px 0;
}
.input_simple.closet {
  padding: 0 !important;
}
.input_simple.inline {
  padding: 6px 0 !important;
}
.input_simple.inline > label, .input_simple.inline > input, .input_simple.inline > p {
  float: left;
  margin: 0;
}
.input_simple.inline > label {
  width: 80px;
  height: unset;
}
.input_simple.inline > input, .input_simple.inline > p {
  width: calc(100% - 80px);
  padding-left: 8px;
}
.input_simple.inline:after, .input_simple.inline:before {
  content: "";
  display: block;
  clear: both;
}
.input_simple.notation {
  padding-top: 10px;
}

/* ====== Input in... input_row ====== */
.input_row {
  margin: 0 -2px !important;
}
.input_row > [class*=col],
.input_row > [class*=col-lg],
.input_row > [class*=col-md],
.input_row > [class*=col-sm],
.input_row > [class*=col-xs] {
  padding-left: 2px !important;
  padding-right: 2px !important;
}
.input_row input,
.input_row textarea,
.input_row select {
  width: 100%;
}
.input_row .caret_select {
  display: block;
}

/* Line */
hr {
  width: 100%;
  margin: 15px 0;
  border-color: #eee;
}

/* Video */
/* video */
.item_video_wrapper .img {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
  transition: all 0.1s ease-in-out;
}
.item_video_wrapper:hover .img {
  -khtml-transform: scale(1.05);
  transform: scale(1.05);
}

.artc_video_wrapper, .item_video_wrapper {
  position: relative;
  width: 100%;
  padding: 0;
  padding-top: 56.25%;
  border-radius: 10px;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
}
.artc_video_wrapper iframe, .item_video_wrapper iframe {
  position: absolute;
  left: 0;
  top: 0;
}

.video_frame {
  padding-top: 56.25%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}
.video_frame > iframe {
  position: absolute;
  top: 0;
  left: 0;
}

.img_preview {
  position: relative;
  display: flex;
  -moz-flex-direction: row;
  flex-direction: row;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.img_preview.border {
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
.img_preview .imageWrapper {
  overflow: hidden;
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 4px;
  margin-right: 15px;
}
.img_preview .imageWrapper .image {
  height: 105%;
  width: initial;
  max-height: 100%;
  max-width: initial;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.img_preview .file-upload {
  position: relative;
  overflow: hidden;
  margin: 20px 0;
  width: 100%;
  max-width: 150px;
  text-align: center;
}
.img_preview .file-upload input.file-input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
  height: 100%;
}

/* ======================== 
Custom Classes
======================== */
.section_complete_form {
  position: relative;
  min-height: calc(100vh - 220px);
  border-top: 1px solid transparent !important;
  text-align: center;
}
.section_complete_form .container {
  position: relative;
  height: 100%;
  display: flex;
  -moz-flex-direction: column;
  flex-direction: column;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding: 60px 30px;
}
.section_complete_form .container, .section_complete_form h2, .section_complete_form p, .section_complete_form a {
  text-align: center;
  max-width: 100%;
}
.section_complete_form h2 {
  color: #999;
}
.section_complete_form .check {
  font-size: 120px;
  color: #a4c7e5;
  margin-bottom: 10px;
}
.section_complete_form .btn_main {
  margin-top: 20px;
}
.section_complete_form.min-height-none {
  min-height: unset;
}
.editor {
  padding: 8px;
  position: relative;
  /* ul */
  /* ol */
  /* table */
  /* RWD Table */
  /* blockquote */
  /* a */
  /* buton */
  /* RED */
}
.editor * {
  max-width: 100% !important;
}
.editor img {
  height: auto !important;
  border-radius: 10px;
}
.editor h1, .editor h2, .editor h3, .editor h4 {
  color: #a4c7e5;
  margin-top: 10px;
  line-height: 1.8em;
  font-weight: 700;
}
.editor h1:nth-child(1), .editor h2:nth-child(1), .editor h3:nth-child(1), .editor h4:nth-child(1) {
  margin-top: 0;
}
.editor h1, .editor .h1 {
  font-size: 30px;
}
.editor h2, .editor .h2 {
  font-size: 24px;
}
.editor h3, .editor .h3 {
  font-size: 20px;
}
.editor h4, .editor .h4 {
  font-size: 18px;
  font-weight: 700;
}
.editor ul, .editor ol {
  margin: 8px 0;
  padding: 0;
}
.editor ul > li, .editor ol > li {
  line-height: 1.6em;
  position: relative;
  margin-bottom: 0px;
}
.editor ul {
  margin: 8px 0;
  font-size: inherit;
  list-style: none;
}
.editor ul > li {
  position: relative;
  padding-left: 1.8em;
  font-size: inherit;
}
.editor ul > li:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #a4c7e5;
  left: 0.7em;
  top: 0.6em;
  border-radius: 0.2em;
}
.editor ol {
  padding: 0 20px;
  list-style-type: decimal;
  padding-left: 1.8em;
}
.editor ol > li {
  position: relative;
}
.editor table {
  border-spacing: 0;
  border-collapse: collapse;
  border-color: #e1e1e1;
  border-style: solid;
  overflow: auto;
  width: 100%;
}
.editor table th, .editor table td {
  border-width: 1px;
  border-style: solid;
  border-color: #e1e1e1;
  padding: 8px;
}
.editor table th {
  background-color: rgba(164, 199, 229, 0.1);
  color: #a4c7e5;
}
.editor table h1,
.editor table h2,
.editor table h3,
.editor table h4 {
  margin: 0;
}
.editor .tbl_wrapper {
  overflow-x: auto;
}
.editor .tbl_wrapper::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
@media (max-width: 767px ) {
  .editor .tbl_shadow {
    position: relative;
  }
  .editor .tbl_shadow:before, .editor .tbl_shadow:after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 5px;
  }
  .editor .tbl_shadow:before {
    left: 0;
    box-shadow: inset 6px 0 9px -7px rgba(0, 0, 0, 0.3);
  }
  .editor .tbl_shadow:after {
    right: 0;
    box-shadow: inset -6px 0 9px -7px rgba(0, 0, 0, 0.3);
  }
}
.editor blockquote p {
  margin: 0;
}
.editor a {
  color: #3C37C7;
}
.editor a:hover {
  color: #3C37C7;
  text-decoration: underline;
}
.editor input[type=button] {
  line-height: 1em;
  padding: 14px 20px;
  border-radius: 4px;
  background-color: #a4c7e5;
  color: #595757;
  display: inline-block;
  border: 1px solid transparent;
  border-color: transparent;
  width: auto;
  padding: 8px 16px;
  height: auto;
}
.editor input[type=button], .editor input[type=button] i:before {
  transition: all 0.1s ease-in-out;
}
.editor input[type=button]:hover, .editor input[type=button]:focus {
  color: white;
  background-color: #90bbdf;
}
.editor input[type=button].large {
  font-size: 20px;
  padding: 18px 24px;
}
.editor input[type=button].radius {
  border-radius: 30px;
}
.editor input[type=button].reverse {
  background-color: white;
  color: #a4c7e5;
}
@media (max-width: 767px) {
  .editor h1 {
    font-size: 26px;
  }
  .editor h2 {
    font-size: 20px;
  }
  .editor h3 {
    font-size: 18px;
  }
  .editor h4 {
    font-size: 16px;
    font-weight: 700;
  }
}

.editor:empty {
  display: none;
}

/* Recover Bootstrap
-------------------- */
.editor {
  /* blockquote */
  /* hr */
}
.editor blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}
.editor hr {
  margin-top: 10px;
  margin-bottom: 10px;
  border: 0;
  border-top: 1px solid #eee;
}
.editor .container.section_simple > .editor {
  padding-left: 20px;
  padding-right: 20px;
}

body {
  padding-top: 1px;
  margin-top: -1px;
  position: relative;
}

.section_main {
  padding: 30px 0;
}
@media (max-width: 767px ) {
  .section_main {
    padding: 20px 0;
  }
}

/* Title */
.title_main:empty, .title_special:empty {
  display: none !important;
}

.title_special {
  display: inline-block;
  position: relative;
  text-align: left;
  z-index: 1;
  line-height: 1;
  margin: 10px 0;
}

.tt_wr > .title_special, .tt_wr .title_main {
  display: inline-block;
}

/* Contact Info List */
ul.ci_list {
  padding: 0 15px 10px;
  padding-left: 0;
  position: relative;
  text-align: left;
}
ul.ci_list li {
  display: block;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 5px;
  padding-left: 0;
  line-height: 1.5em;
}
ul.ci_list li:before {
  display: inline-block;
  content: "\f105";
  font-family: "FontAwesome";
  position: relative;
  color: inherit;
  font-size: 1em;
  line-height: 1.5em;
  width: 1.5em;
  height: 1.5em;
  text-align: center;
  left: 0;
  vertical-align: middle;
}
ul.ci_list li.map-marker:before {
  content: "\f041";
  background-image: none;
}
ul.ci_list li.phone:before {
  content: "\f095";
  background-image: none;
}
ul.ci_list li.mobile-phone:before {
  content: "\f10b";
  background-image: none;
}
ul.ci_list li.fax:before {
  content: "\f1ac";
  background-image: none;
}
ul.ci_list li.envelope:before {
  content: "\f003";
  background-image: none;
}
ul.ci_list li.link:before {
  content: "\f0c1";
  background-image: none;
}
ul.ci_list li.calendar:before {
  content: "\f274";
  background-image: none;
}
ul.ci_list li.line:before {
  content: "";
  background-image: url(../images/common/ic_social_line_green.svg);
  width: 1.5em;
  height: 1.5em;
  background-size: contain;
  background-repeat: no-repeat;
}
ul.ci_list li:empty {
  display: none;
}
ul.ci_list li:before {
  left: 0;
  top: 0;
}
ul.ci_list a:hover {
  text-decoration: underline;
}

/* Footer Common
------------------ */
footer.footer a {
  color: inherit;
}
footer.footer [class*=col-lg], footer.footer [class*=col-md], footer.footer [class*=col-sm], footer.footer [class*=col-xs] {
  padding-right: 0;
  padding-left: 0;
}

/* Footer Logo
------------------ */
.f_logo {
  position: relative;
  overflow: hidden;
}
.f_logo img {
  position: relative;
  display: block;
  z-index: 1;
  padding: 0;
}

/* Footer Info
------------------ */
.f_info_ul {
  position: relative;
  text-align: left;
  padding: 0;
  font-size: 14px;
}
.f_info_ul li {
  display: inline-block;
  position: relative;
  padding-left: 0;
  line-height: 1.5em;
}
.f_info_ul li:before {
  display: inline-block;
  content: "\f105";
  font-family: "FontAwesome";
  position: relative;
  color: inherit;
  font-size: 1em;
  line-height: 1.5em;
  width: 1.5em;
  height: 1.5em;
  text-align: center;
  left: 0;
  vertical-align: middle;
}
.f_info_ul li.map-marker:before {
  content: "\f041";
  background-image: none;
}
.f_info_ul li.phone:before {
  content: "\f095";
  background-image: none;
}
.f_info_ul li.mobile-phone:before {
  content: "\f10b";
  background-image: none;
}
.f_info_ul li.fax:before {
  content: "\f1ac";
  background-image: none;
}
.f_info_ul li.envelope:before {
  content: "\f003";
  background-image: none;
}
.f_info_ul li.link:before {
  content: "\f0c1";
  background-image: none;
}
.f_info_ul li.calendar:before {
  content: "\f274";
  background-image: none;
}
.f_info_ul li.line:before {
  content: "";
  background-image: url(../images/common/ic_social_line_green.svg);
  width: 1.5em;
  height: 1.5em;
  background-size: contain;
  background-repeat: no-repeat;
}
.f_info_ul li:empty {
  display: none;
}
.f_info_ul li:before {
  margin-right: 8px;
}

/* Footer Copyright
------------------ */
.f_copyright {
  position: relative;
  overflow: hidden;
}
.f_copyright p {
  display: block;
  z-index: 1;
  position: relative;
  line-height: 1.8em;
  margin: 0;
}

/* Footer Fix
------------------ */
.footer_fix {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-style: inset;
}

.slider {
  border-radius: 10px !important;
}
.slider .img {
  width: 100%;
  padding: 0;
  padding-top: 66.6666666667%;
  border-radius: 10px;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
@media (max-width: 767px ) {
  .slider .img {
    width: 100%;
    padding: 0;
    padding-top: 66.6666666667%;
    border-radius: 10px;
    background-size: cover;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    z-index: 1;
  }
}
.slider .owl-dots {
  text-align: center;
  margin-top: 0px;
  width: 100%;
}
.slider .owl-dots .owl-dot {
  display: inline-block;
}
.slider .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  margin: 0px 1px;
  background: transparent;
  border: 1px solid #a4c7e5;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
.slider .owl-dots .owl-dot.active span, .slider .owl-dots .owl-dot:hover span {
  background-color: #a4c7e5;
}
.slider .owl-dots {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 767px ) {
  .slider .img_desktop {
    display: none;
  }
}
@media (min-width: 768px ) {
  .slider .img_mobile {
    display: none;
  }
}

/* custom */
.slider_wrapper {
  position: relative;
}

.owl-nav-custom {
  position: absolute;
  top: calc(50% - 25px);
  left: 0;
  z-index: 3;
  width: 100%;
  /* hover */
  opacity: 0.5;
}
.owl-nav-custom .owl_wrapper {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.owl-nav-custom [class*=owl-] {
  position: relative;
  color: white;
  background-color: transparent;
  font-size: 40px;
  margin: 0px;
  padding: 0;
  width: 50px;
  text-align: center;
  position: absolute;
  border-radius: 25px;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  opacity: 1;
}
.owl-nav-custom [class*=owl-] i {
  line-height: 50px;
}
.owl-nav-custom [class*=owl-].disabled, .owl-nav-custom [class*=owl-].disabled:hover {
  opacity: 0.2;
}
.owl-nav-custom .owl-prev {
  left: 15px;
}
.owl-nav-custom .owl-prev i {
  margin-right: 5px;
}
.owl-nav-custom .owl-next {
  right: 15px;
}
.owl-nav-custom .owl-next i {
  margin-left: 5px;
}
.slider_wrapper:hover .owl-nav-custom {
  opacity: 1;
}

/* common
---------------- */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

/* --- fade --- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-30%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-25%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(25%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

/* Flip */
@keyframes flipIn {
  from {
    opacity: 0;
    -khtml-transform: rotateX(8deg) translateY(-20px);
    transform: rotateX(8deg) translateY(-20px);
  }
  to {
    opacity: 1;
    -khtml-transform: rotateX(0);
    transform: rotateX(0);
  }
}
.flipIn {
  animation-name: flipIn;
}

body {
  font-family: "Microsoft Jhenghei", "Noto Serif TC", "Rubik", sans-serif;
  background-color: #f9faf9;
  min-width: 320px;
}

a {
  color: #595757;
}

a:hover,
a:focus {
  color: #595757;
}

select:focus,
input:focus,
textarea:focus {
  border: 1px solid rgba(164, 199, 229, 0.5);
}

::-moz-selection {
  color: #a4c7e5;
  background: #eee;
}

::selection {
  color: #a4c7e5;
  background: #eee;
}

::-moz-selection {
  color: #a4c7e5;
  background: #eee;
}

::-webkit-scrollbar-thumb {
  background: #999999;
}

/* Cover */
/* Editor (cover global)
-------------------------- */
.editor {
  font-size: 14px;
  /* table */
}
.editor h1, .editor h2, .editor h3, .editor h4, .editor h5, .editor h6 {
  color: #595757;
  font-weight: 700;
}
.editor ul > li:before {
  background-color: #E9E488;
}
.editor table {
  /* th, td */
}
.editor table th, .editor table td {
  padding: 4px 8px;
}
.editor table {
  border-color: #e1e1e1;
}
.editor table th, .editor table td {
  border-color: #e1e1e1;
}
.editor table th {
  background-color: rgba(164, 199, 229, 0.1);
  color: #595757;
}
.editor a, .editor a:hover {
  color: #E9E488;
}

/* Independent Comp */
/* Action Bar
============ */
.prd_actionbar {
  /* RWD */
}
@media (max-width: 575px ) {
  .prd_actionbar.xxs-responsive {
    /* breadcrumb */
  }
  .prd_actionbar.xxs-responsive .caret_select, .prd_actionbar.xxs-responsive select {
    width: 100%;
  }
  .prd_actionbar.xxs-responsive .caret_select {
    margin-bottom: 2px;
  }
  .prd_actionbar.xxs-responsive .breadcrumb_wrapper {
    float: left;
    width: 100%;
  }
  .prd_actionbar.xxs-responsive .breadcrumb {
    padding-bottom: 5px;
  }
}

/* Album Date Note
---------------- */
.divide_note {
  margin: 0 0 5px;
  text-align: left;
  font-size: 11px;
  color: #999;
}
.divide_note > li {
  display: inline-block;
}
.divide_note > span, .divide_note > li + li, .divide_note.display-block > li {
  padding-left: 20px;
  position: relative;
}
.divide_note > span:before, .divide_note > li + li:before, .divide_note.display-block > li:before {
  content: "";
  position: absolute;
  background-color: #999;
  width: 4px;
  height: 4px;
  left: calc((20px - 4px) / 2);
  top: calc(50% - 4px / 2);
  border-radius: 2px;
  -khtml-transform: rotate(45deg);
  transform: rotate(45deg);
}
.divide_note.display-block > li {
  display: block;
}

/* Wrapper
-------------- */
.tt_wr {
  margin-top: 16px;
  margin-bottom: 16px;
}
.tt_wr:after, .tt_wr:before {
  content: "";
  display: block;
  clear: both;
}

/* Common Default */
.crsl_basic:after, .crsl_basic:before,
.grid_basic:after,
.grid_basic:before,
.list_basic:after,
.list_basic:before {
  content: "";
  display: block;
  clear: both;
}
.crsl_basic .item,
.grid_basic .item,
.list_basic .item {
  display: block;
  position: relative;
  overflow: hidden;
}
.crsl_basic .inner,
.crsl_basic .img_wrapper,
.grid_basic .inner,
.grid_basic .img_wrapper,
.list_basic .inner,
.list_basic .img_wrapper {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background-position: center;
  background-size: cover;
}
.crsl_basic .inner.shortcut_wrap,
.crsl_basic .img_wrapper.shortcut_wrap,
.grid_basic .inner.shortcut_wrap,
.grid_basic .img_wrapper.shortcut_wrap,
.list_basic .inner.shortcut_wrap,
.list_basic .img_wrapper.shortcut_wrap {
  width: 100%;
  padding-top: 100%;
  border-radius: 0.8rem;
  background-color: rgba(164, 199, 229, 0.5);
  position: relative;
}
.crsl_basic .inner.shortcut_wrap img,
.crsl_basic .img_wrapper.shortcut_wrap img,
.grid_basic .inner.shortcut_wrap img,
.grid_basic .img_wrapper.shortcut_wrap img,
.list_basic .inner.shortcut_wrap img,
.list_basic .img_wrapper.shortcut_wrap img {
  position: absolute;
  top: -12px;
  left: 0;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  scale: 0.6 !important;
}
.crsl_basic .shortcut_title,
.grid_basic .shortcut_title,
.list_basic .shortcut_title {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.6rem;
  font-weight: 800;
  color: black;
  min-width: 180px;
  text-align: center;
}
.crsl_basic .img,
.grid_basic .img,
.list_basic .img {
  transition: all 0.1s ease-in-out;
  width: 100%;
  padding: 0;
  padding-top: 100%;
  border-radius: 10px;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.crsl_basic .brand_bg,
.grid_basic .brand_bg,
.list_basic .brand_bg {
  transition: all 0.1s ease-in-out;
  width: 100%;
  padding: 0;
  padding-top: 100%;
  border-radius: 10px;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.crsl_basic .brand_bg img,
.grid_basic .brand_bg img,
.list_basic .brand_bg img {
  position: absolute;
  top: 0;
  left: 0;
  padding: 25px;
}
.crsl_basic .brand_bg p,
.grid_basic .brand_bg p,
.list_basic .brand_bg p {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding-top: 40%;
  font-size: 22px;
  text-align: center;
}
.crsl_basic .brand_name,
.grid_basic .brand_name,
.list_basic .brand_name {
  margin: 8px auto;
}
.crsl_basic img,
.grid_basic img,
.list_basic img {
  width: 100%;
  border-radius: 10px;
}
.crsl_basic .content_wrapper,
.grid_basic .content_wrapper,
.list_basic .content_wrapper {
  position: relative;
}
.crsl_basic .content,
.grid_basic .content,
.list_basic .content {
  transition: all 0.1s ease-in-out;
}
.crsl_basic .brand_name,
.grid_basic .brand_name,
.list_basic .brand_name {
  transition: all 0.1s ease-in-out;
}
.crsl_basic .title,
.grid_basic .title,
.list_basic .title {
  margin: 0;
}
.width_md {
  padding: 0px 50px;
}
.width_md:after, .width_md:before {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 991px) {
  .width_md {
    width: 100%;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .width_md {
    padding: 0px 126px;
  }
}
@media (min-width: 966px) and (max-width: 1023px) {
  .width_md {
    padding: 0px 100px;
  }
}
@media (min-width: 768px) and (max-width: 965px) {
  .width_md {
    padding: 0px 70px;
  }
}
@media (max-width: 768px) {
  .width_md {
    padding: 0;
  }
}

.brand_item_p {
  padding: 0px 50px;
}
.brand_item_p:after, .brand_item_p:before {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 1199px) {
  .brand_item_p {
    padding: 0;
  }
}

.brand_block {
  float: left;
  box-shadow: 1px 1px 6px #ddd;
  width: 30%;
  margin: 15px;
  border-radius: 10px;
}
@media (max-width: 991px ) {
  .brand_block {
    width: 29%;
  }
}
@media (max-width: 767px ) {
  .brand_block {
    width: 45%;
  }
}
@media (max-width: 575px ) {
  .brand_block {
    width: 100%;
    float: none;
    margin: 20px 0;
  }
}
.brand_block .brand_name {
  margin: 8px auto;
}
.brand_block:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.modal-body h4 {
  color: #a4c7e5;
  margin-bottom: 10px;
}
.modal-body .warning, .modal-body .note {
  padding: 4px 0;
  text-align: center;
  font-size: 12px;
  margin: 0;
}
.modal-body .warning {
  color: #d9534f;
}
.modal-body .warning a {
  text-decoration: underline;
}
.modal-body .warning a:hover {
  text-decoration: none;
}
.modal-body .note {
  margin: 0;
}
.modal-body a {
  text-decoration: underline;
}
.modal-body a:hover {
  text-decoration: none;
}

.section_main {
  position: relative;
  z-index: 1;
  padding-left: 0;
  padding-right: 0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.section_main:after, .section_main:before {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 1230px) {
  .section_main {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Prd 商品
---------------- */
/* Comps */
/* Prd Custom Class
======================== */
.price {
  font-family: "Crimson Pro", "Nanum Myeongjo", "Microsoft Jhenghei", sans-serif;
  font-weight: 500;
}
.crsl_prd .price,
.prdi_content .price,
.item_price .price {
  font-size: 140%;
}

.price_del {
  text-decoration: line-through;
  color: #999;
}

/* Title
------------------------ */
.prdl_title {
  display: inline-block;
  padding: 7px 14px;
  font-size: 140%;
  background-color: #d55340;
  color: white;
}
.prdl_title.bg_green {
  background-color: #5cb85c;
}
.prdl_title.bg_brown {
  background-color: #a4c7e5;
}

/* Wrapper
------------------------ */
.shopping_wrapper {
  background-color: transparent;
}
.shopping_wrapper:after, .shopping_wrapper:before {
  content: "";
  display: block;
  clear: both;
}
.shopping_wrapper .like_btn_wrapper {
  padding: 0px;
}
@media (max-width: 767px) {
  .shopping_wrapper {
    position: relative;
    opacity: 1;
  }
}

/* Group
------------------------ */
.btn_shopping_group {
  display: block;
  width: 100%;
}
.btn_shopping_group:after, .btn_shopping_group:before {
  content: "";
  display: block;
  clear: both;
}
.btn_shopping_group li {
  display: block;
  float: left;
  margin: 0;
  width: 50%;
  padding: 2px;
}
.btn_shopping_group .btn_shopping, .btn_shopping_group .btn_shopping_outline {
  display: block;
  width: 100%;
}

/* Buttons
------------------------ */
.btn_shopping {
  text-align: center;
  cursor: pointer;
  line-height: 1em;
  padding: 14px 20px;
  border-radius: 4px;
  background-color: #a4c7e5;
  color: #595757;
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 2px;
}
.btn_shopping, .btn_shopping i:before {
  transition: all 0.1s ease-in-out;
}
.btn_shopping:hover, .btn_shopping:focus {
  color: white;
  background-color: #90bbdf;
}
.btn_shopping.large {
  font-size: 20px;
  padding: 18px 24px;
}
.btn_shopping.radius {
  border-radius: 30px;
}
.btn_shopping.reverse {
  background-color: white;
  color: #a4c7e5;
}
.grid_prd .btn_shopping, .grid_prd .btn_shopping .btn_shopping, .prdi_content .btn_shopping, .prdi_content .btn_shopping .btn_shopping {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 991px ) {
  .grid_prd .btn_shopping, .crsl_prd .btn_shopping {
    padding: 0px 4px;
    font-size: 80%;
    line-height: 26px;
  }
  .grid_prd .btn_shopping span, .crsl_prd .btn_shopping span {
    display: none;
  }
}

.btn_shopping_outline {
  line-height: 1em;
  padding: 14px 20px;
  border-radius: 4px;
  background-color: #a4c7e5;
  color: #595757;
  display: inline-block;
  border: 1px solid transparent;
  background-color: transparent;
  border: 1px solid #a4c7e5;
  color: #a4c7e5;
  text-align: center;
  border-radius: 2px;
}
.btn_shopping_outline, .btn_shopping_outline i:before {
  transition: all 0.1s ease-in-out;
}
.btn_shopping_outline:hover {
  background-color: rgba(164, 199, 229, 0.1);
}
.btn_shopping_outline:hover, .btn_shopping_outline:focus {
  color: white;
  background-color: #90bbdf;
}
.btn_shopping_outline.large {
  font-size: 20px;
  padding: 18px 24px;
}
.btn_shopping_outline.radius {
  border-radius: 30px;
}
.btn_shopping_outline.reverse {
  background-color: white;
  color: #a4c7e5;
}

/* like */
.btn_like {
  display: inline-block;
  float: right;
  padding: 4px;
  color: #d55340;
}
.btn_like i {
  font-size: 120%;
  margin-left: 8px;
}
.btn_like span {
  color: #727272;
}

.btn_like_lg i {
  font-size: 140%;
}
.btn_like_lg span {
  padding-right: 8px;
}

/* shopping */
/* Sold out
------------ */
.soldout_wrapper {
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  text-align: center;
  top: calc(50% - 36px / 2);
}
.soldout_wrapper p {
  line-height: 36px;
}

.prd_countdown {
  font-family: "Crimson Pro", "Nanum Myeongjo", "Microsoft Jhenghei", sans-serif;
  font-weight: 500;
}
.prd_countdown span {
  display: inline-block;
  background-color: rgba(213, 83, 64, 0.8);
  font-size: 14px;
  line-height: 1em;
  padding: 4px;
  color: white;
  margin: 1px;
}

/* in item */
.img_wrapper .prd_countdown {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 100%;
  text-align: right;
  background-position: center;
  background-size: cover;
}

/* Prd List */
/* Buy Together
============== */
.buytogether_banner {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}
.buytogether_banner .img {
  width: 100%;
  padding: 0;
  padding-top: 18.2926829268%;
  border-radius: 10px;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
@media (max-width: 767px ) {
  .buytogether_banner {
    display: none;
  }
}

/* Actionbar
----------------- */
.buytogether_actionbar {
  position: relative;
}
.buytogether_actionbar .dsc {
  padding: 0 8px;
  float: left;
}
.buytogether_actionbar .btn_shopping {
  float: right;
}

/* item btn group
----------------- */
.buytogether_btn_group {
  margin: 8px 0;
  /* input */
  /* Select */
}
.buytogether_btn_group:after, .buytogether_btn_group:before {
  content: "";
  display: block;
  clear: both;
}
.buytogether_btn_group .input-number, .buytogether_btn_group .btn_shopping {
  float: left;
}
.buytogether_btn_group .btn_shopping {
  width: 58px;
  text-align: center;
}
.buytogether_btn_group .input-number {
  width: calc(100% - 58px - 8px);
  margin-right: 8px;
}
.buytogether_btn_group .input-number > input, .buytogether_btn_group .input-number .decrement, .buytogether_btn_group .input-number .increment {
  height: 26px;
  line-height: 22px;
}
.buytogether_btn_group .caret_select, .buytogether_btn_group .caret_select select {
  width: 100%;
}
.buytogether_btn_group .caret_select {
  margin-bottom: 8px;
}
@media (max-width: 767px ) {
  .buytogether_btn_group .input-number {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 8px;
  }
}

/* Prd In */
/* Cart 購物車
---------------- */
/* 2018.10.09 */
.cart_subtotal {
  text-align: right;
}
@media (max-width: 767px ) {
  .cart_subtotal {
    text-align: left;
  }
}
.cart_subtotal.price_del {
  font-size: 85%;
  font-family: "Microsoft Jhenghei", "Noto Serif TC", "Rubik", sans-serif !important;
}

.cart_total {
  color: #a4c7e5;
  white-space: nowrap;
  text-align: right;
  position: relative;
}
.cart_total small {
  position: absolute;
  right: 140px;
  top: calc(50% - 0.5em);
  font-weight: 400;
}
.cart_total .number {
  color: #d55340;
}

/* Note Block
--------------- */
.note_block {
  border-color: #e1e1e1;
  border-style: solid;
  border-width: 0 0 0 1px;
  font-size: 14px;
}
.note_block p,
.note_block .editor p {
  font-size: inherit;
  margin-top: 0;
}
.note_block .editor {
  padding: 0;
}
@media (max-width: 991px ) {
  .note_block.col-sm-12 {
    border-width: 1px 0 0 0;
    padding-top: 8px !important;
    margin-top: 8px;
  }
}
@media (max-width: 767px ) {
  .note_block.col-xs-12 {
    border-width: 1px 0 0 0;
    padding-top: 8px !important;
    margin-top: 8px;
  }
}

/* Cart Item note */
.cart_item_note {
  font-size: 80%;
}

/* Footer
----------- */
.cart_footer hr {
  margin: 8px 0;
}

/* Cart List
--------------- */
/* receipt note
------------- */
.cart_receipt_note {
  padding: 8px;
}
.cart_receipt_note img {
  max-width: 200px;
}

/* Log in 登入
---------------- */
/* Login Modal (inherit: modalBasic)
---------------- */
.modal_login {
  width: 680px;
  margin: 20px auto;
  max-width: 100%;
}
@media (max-width: 575px ) {
  .modal_login {
    max-width: 100%;
    margin: 0px auto;
  }
}
@media (min-width: 768px ) {
  .modal_login .modal-body {
    padding: 15px 8px;
  }
  .modal_login [class*=col-lg], .modal_login [class*=col-md], .modal_login [class*=col-sm], .modal_login [class*=col-xs] {
    padding: 8px 15px;
  }
}
@media (min-width: 992px ) {
  .modal_login {
    margin: 100px auto;
  }
}

/* email */
@media (min-width: 768px ) {
  .email_login {
    border-right: 1px solid #e1e1e1;
  }
}
@media (max-width: 767px ) {
  .email_login {
    padding-bottom: 15px !important;
    margin-bottom: 8px;
    border-bottom: 1px solid #e1e1e1;
  }
}

/* Social */
@media (min-width: 768px ) {
  .social_login {
    padding-top: 18px !important;
  }
}

.login_block {
  border-top: 0;
  margin-top: 0;
  padding: 8px 0;
}
.login_block .btn_wrapper {
  padding-top: 20px !important;
  margin-bottom: 0;
}
.login_block .btn_wrapper .width-50 {
  width: calc(50% - 8px) !important;
}
.login_block .note {
  text-align: center;
}
.login_block input, .login_block textarea, .login_block select {
  display: block;
  width: 100%;
}
.login_block .caret_select {
  display: block;
}
.login_block input, .login_block textarea, .login_block .caret_select {
  margin-top: 2px;
  margin-bottom: 2px;
}
.login_block .checkbox-inline, .login_block .radio-inline {
  margin-top: 2px;
}
.login_block .checkbox-inline + .checkbox-inline {
  margin-top: 2px;
}
.login_block .radio-inline + .radio-inline {
  margin-top: 2px;
}

/* Google & Facebook */
.clr-google {
  color: #db4a3c;
}

.bg-clr-google {
  background-color: #db4a3c !important;
  color: #fff;
}
.bg-clr-google:hover, .bg-clr-google:focus {
  background-color: #d63728 !important;
}

.clr-fb {
  color: #db4a3c;
}

.bg-clr-fb {
  background-color: #264184 !important;
  color: #fff;
}
.bg-clr-fb:hover, .bg-clr-fb:focus {
  background-color: #203770 !important;
}

.width-100 {
  width: 100%;
}

/* Member 會員
----------------- */
/* 005.mmbr
------------------ */
/* Register
------------ */
.register_block .tt_wr {
  padding: 10px 0;
  margin: 0;
}
.register_block .block_left,
.register_block .block_right {
  padding: 20px 15px 20px !important;
}
.register_block .block_left {
  border-color: #e1e1e1;
  border-style: solid;
  border-width: 0;
  border-right-width: 1px;
}
.register_block .block_right {
  padding-top: 50px !important;
  padding-bottom: 20px !important;
}
.register_block .note {
  border-top: 1px solid #e1e1e1;
  margin: 0;
  padding: 0.5em 0;
}
@media (max-width: 767px ) {
  .register_block .block_left {
    border-width: 0 0 1px 0;
  }
  .register_block .block_right {
    padding-top: 20px !important;
  }
}

/* Member Home
------------ */
@media (min-width: 768px ) {
  .mmbr_home .mh_left {
    border-right: 1px solid #e1e1e1;
  }
}
.mmbr_home .mh_right {
  padding: 8px 16px;
}

/* Member Level */
.mh_level {
  height: 300px;
  color: white;
  text-align: center;
  position: relative;
}
.mh_level:before, .mh_level:after {
  content: "";
  position: absolute;
}
.mh_level:before {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  border-radius: 8px;
}
.mh_level:after {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  left: 10px;
  top: 10px;
  border: 4px dashed rgba(255, 255, 255, 0.5);
  border-radius: 2px;
}
.mh_level.lv1:before {
  background-color: #6F4D9D;
}
.mh_level.lv2:before {
  background-color: #1D83D7;
}
.mh_level.lv3:before {
  background-color: #34CA91;
}
.mh_level.lv4:before {
  background-color: #F38D20;
}
.mh_level.lv5:before {
  background-color: #727272;
}
.mh_level .level {
  font-size: 40px;
}

/* Coupon
------------ */
/* commpn */
.coupon_denomination {
  text-align: center;
  padding: 8px;
  background-color: #d55340;
  color: white;
  font-family: "Crimson Pro", "Nanum Myeongjo", "Microsoft Jhenghei", sans-serif;
  font-size: 160%;
}

/* table */
/* Footer 頁尾
----------------- */
footer.footer {
  background-color: #a4c7e5;
  background-color: white;
  color: #595757;
  border-top: 4px solid #f2f2f2;
  position: relative;
}
footer.footer a {
  color: #595757;
}
footer.footer a, footer.footer ul, footer.footer li {
  font-size: inherit;
}
@media (max-width: 1499px ) {
  footer.footer {
    font-size: 14px;
  }
}

.footer_inner {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding: 30px 0 5px;
  color: #595757;
}
.footer_inner:after, .footer_inner:before {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 1230px) {
  .footer_inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.f_menu a:hover {
  text-decoration: underline;
}

/* Brand & Logo
-------------- */
.f_brand {
  font-size: 160%;
  margin-bottom: 10px;
  font-weight: 400;
}

.f_logo_wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0px 0;
}

.f_logo {
  content: "";
  background-image: url(../images/v2/icons.png);
  background-size: 1200px auto;
  background-repeat: no-repeat;
  width: 185px;
  height: 130px;
  background-position: -5px -80px;
  background-size: 1200px auto;
  display: inline-block;
  margin-bottom: 15px;
}
/* Social
-------------- */
.f_social {
  text-align: inherit;
  margin-bottom: 10px;
  display: flex;
}
@media (max-width: 1199px ) {
  .f_social {
    justify-content: center;
  }
}
.f_social li {
  display: inline-block;
  padding-right: 5px;
}
.f_social a {
  display: inline-block;
}

/* social_btn style & color 
-------------- */
.f_social .btn_social {
  display: inline-block;
  background-color: white;
  color: #595757;
  width: 36px;
  height: 36px;
  text-align: center;
  border-radius: 18px;
}
.f_social .btn_social i {
  font-size: 20px;
  line-height: 36px;
}
.f_social .btn_social .ic_line {
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  background-image: url("../images/common/ic_social_line_white.svg");
  background-size: 22px;
  background-position: center center;
  background-repeat: no-repeat;
}
.f_social .btn_social:hover, .f_social .btn_social:focus {
  color: white;
  background-color: #ccdff0;
}

/* Contact Info
-------------- */
.f_info_ul {
  padding: 0 15px 10px;
  color: #595757;
}
.f_info_ul li {
  display: block;
  padding-bottom: 8px;
}

/* Footer Menu
------------------ */
.f_menu {
  display: inline-block;
}
.f_menu a {
  color: white;
}

.f_menu_hor {
  display: block;
  text-align: center;
}
.f_menu_hor > li {
  display: inline-block;
  vertical-align: top;
  padding: 0 8px 10px;
}
@media (max-width: 767px ) {
  .f_menu_hor > li {
    padding: 0 4px 10px;
  }
}
.f_menu_hor a {
  display: block;
}

.f_menu_ver {
  max-width: 100%;
  width: 300px;
  margin-top: 0;
  text-align: left;
}
.f_menu_ver li {
  padding: 6px 0 4px;
  border-bottom: 1px solid #ccc;
}

.f_menu_layors {
  display: inline-block;
  padding: 0 0 10px;
  text-align: left;
}
.f_menu_layors > li {
  display: inline-block;
  vertical-align: top;
  padding: 0 15px 10px;
}
.f_menu_layors > li > a {
  font-weight: bold;
}
.f_menu_layors > li > a:hover {
  text-decoration: none;
}
.f_menu_layors a {
  display: block;
  padding: 0 0 8px;
  max-width: 140px;
  max-height: calc(3.5em + 8px);
  overflow: hidden;
}
.f_menu_layors i.fa {
  font-size: 50px;
}
@media (max-width: 767px ) {
  .f_menu_layors > li {
    padding: 0 8px 10px;
  }
}

/* Footer copyright
-------------- */
.f_copyright {
  background-color: white;
  text-align: center;
  padding: 4px 0;
}
.f_copyright p, .f_copyright a {
  color: #595757;
  font-family: "Crimson Pro", "Nanum Myeongjo", "Microsoft Jhenghei", sans-serif;
}
@media (max-width: 767px ) {
  .f_copyright {
    text-align: center;
  }
}

@media (max-width: 767px ) {
  .home_body .f_copyright {
    margin-bottom: 51px;
  }
}
/* Layout
------------------ */
.footer_inner .inner_left {
  float: left;
  width: 100%;
}
@media (min-width: 1200px ) {
  .footer_inner .inner_left {
    width: 280px;
  }
}
@media (min-width: 1200px ) {
  .footer_inner .inner_left {
    text-align: left;
  }
}
@media (max-width: 1199px ) {
  .footer_inner .inner_left {
    text-align: center;
  }
}
.footer_inner .inner_right {
  float: left;
  width: 100%;
}
@media (min-width: 1200px ) {
  .footer_inner .inner_right {
    width: calc(100% - 280px);
  }
}
@media (max-width: 1199px ) {
  .footer_inner .inner_right {
    text-align: center;
  }
}

.f_info_ul {
  vertical-align: top;
}
@media (min-width: 1200px ) {
  .f_info_ul {
    float: right;
  }
}
@media (max-width: 1199px ) {
  .f_info_ul {
    display: inline-block;
  }
}

.f_menu_wrapper {
  vertical-align: top;
}
@media (min-width: 1200px ) {
  .f_menu_wrapper {
    float: right;
  }
}
@media (max-width: 1199px ) {
  .f_menu_wrapper {
    display: inline-block;
  }
}

/* Footer Fix */
.footer_fix {
  min-height: calc(100vh - 328px);
}

/* Landing Page 暫時無用
----------------- */
/* common & components */
/* common 
------------------------ */
.navbar {
  transition: all 0.2s ease-in-out;
}
.navbar [class*=col-lg],
.navbar [class*=col-md],
.navbar [class*=col-sm],
.navbar [class*=col-xs] {
  padding: 0;
}
.navbar .container-fluid {
  padding: 0;
}
@media (min-width: 768px ) and (max-width: 1199px ) {
  .navbar .container {
    width: 100%;
  }
}

.navbar-collapse {
  padding: 0;
}
@media (max-width: 767px ) {
  .navbar-collapse {
    padding: 0;
    margin: 0 !important;
    max-height: calc(100vh - 120px);
  }
}

.navbar {
  border-bottom: 0;
  padding: 0px 0;
}
.navbar.add_class {
  padding: 0;
}
.navbar > .container-fluid, .navbar .container {
  padding: 0;
}
.navbar .navbar-header {
  margin: 0;
}
.navbar .navbar-nav {
  padding: 0;
}

.navbar,
.dsk_menu {
  z-index: 1030;
  width: 100%;
  position: relative;
}

.navbar {
  z-index: 1030;
}
@media (max-width: 767px ) {
  .navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
}

.navbar-header {
  float: unset;
}

@media (max-width: 767px ) {
  .navbar-collapse {
    z-index: 1030;
    position: fixed;
    left: 0;
    top: 49px !important;
    width: 100%;
  }
}

@media (min-width: 768px ) and (max-width: 1199px ) {
  .navbar .navbar-nav {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .navbar {
    padding: 0;
  }
  .navbar .navbar-header {
    border-bottom: 0px;
  }
}
/* Mobile Nav Scroll Bar
----------------------- */
.navbar-collapse::-webkit-scrollbar,
.js-offcanvas::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* Nav Brand Header Layout
---------------- */
.navbar-header {
  text-align: center;
}
.navbar-header .brand {
  display: inline-block;
  vertical-align: bottom;
}
@media (min-width: 768px ) {
  .navbar-header .brand {
    padding: 5px 8px;
  }
}
@media (max-width: 767px ) {
  .navbar-header .brand {
    padding: 6px;
  }
}
.navbar-header .brand .brand_logo {
  float: left;
  width: auto;
  content: "";
  background-image: url(../images/v2/icons.png);
  background-size: 1200px auto;
  background-repeat: no-repeat;
  width: 250px;
  height: 50px;
  background-position: -5px -5px;
  background-size: 1200px auto;
}
@media (max-width: 767px ) {
  .navbar-header .brand .brand_logo {
    width: 175px;
    height: 35px;
    background-position: -3.5px -3.5px;
    background-size: 840px auto;
  }
}
.navbar-header .brand h3 {
  padding-left: 8px;
}
.navbar-header .brand_title {
  float: left;
  padding: 8px 0;
}
@media (min-width: 768px ) {
  .navbar-header .brand_title {
    display: none;
  }
}

@media (max-width: 767px ) {
  .navbar-header {
    text-align: left;
  }
}
@media (min-width: 768px ) and (max-width: 991px ) {
  .navbar-header {
    text-align: center;
  }
}
@media (min-width: 992px ) and (max-width: 1199px ) {
  .navbar-header {
    text-align: center;
  }
}
@media (min-width: 1200px ) {
  .navbar-header {
    text-align: center;
  }
}

/* components
------------------------ */
/* Toggle Button */
.navbar-toggle {
  border: 0px;
  padding: 14px 14px;
  margin: 0;
  border-radius: 0;
  background-color: transparent;
}
.navbar-toggle .icon-bar {
  background-color: #E9E488;
  margin: 4px 0;
}
.navbar-toggle:hover, .navbar-toggle:focus {
  background-color: transparent;
}
.navbar-toggle:hover .icon-bar, .navbar-toggle:focus .icon-bar {
  background: #E9E488;
}
.navbar-toggle[aria-expanded=true] .icon-bar:nth-child(2) {
  -khtml-transform: translateY(6px) rotate(45deg);
  transform: translateY(6px) rotate(45deg);
}
.navbar-toggle[aria-expanded=true] .icon-bar:nth-child(3) {
  -khtml-transform: scaleX(0.01);
  transform: scaleX(0.01);
}
.navbar-toggle[aria-expanded=true] .icon-bar:nth-child(4) {
  -khtml-transform: translateY(-6px) rotate(-45deg);
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile - Menu */
.js-offcanvas {
  padding: 0;
  padding-top: 80px;
  left: 0;
  overflow-x: none;
  overflow-y: auto;
  background-color: #fff;
}
.js-offcanvas ul.navbar-nav {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.js-offcanvas ul.navbar-nav, .js-offcanvas .list-unstyled {
  margin: 0;
}
.js-offcanvas ul.navbar-nav li a, .js-offcanvas .list-unstyled li a {
  display: block;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.js-offcanvas ul.navbar-nav li.open a, .js-offcanvas ul.navbar-nav li a:hover, .js-offcanvas ul.navbar-nav li a:focus, .js-offcanvas .list-unstyled li.open a, .js-offcanvas .list-unstyled li a:hover, .js-offcanvas .list-unstyled li a:focus {
  border-color: rgba(0, 0, 0, 0.2);
}
.js-offcanvas ul.navbar-nav > li, .js-offcanvas .list-unstyled > li {
  margin: 0;
}
.js-offcanvas ul.navbar-nav > li > a, .js-offcanvas .list-unstyled > li > a {
  color: #595757;
}
.js-offcanvas ul.navbar-nav > li > a, .js-offcanvas ul.navbar-nav > li > a:active, .js-offcanvas ul.navbar-nav > li > a:focus, .js-offcanvas ul.navbar-nav > li.active > a, .js-offcanvas ul.navbar-nav > li.active > a:active, .js-offcanvas ul.navbar-nav > li.active > a:focus, .js-offcanvas ul.navbar-nav > li.open > a, .js-offcanvas ul.navbar-nav > li.open > a:active, .js-offcanvas ul.navbar-nav > li.open > a:focus, .js-offcanvas .list-unstyled > li > a, .js-offcanvas .list-unstyled > li > a:active, .js-offcanvas .list-unstyled > li > a:focus, .js-offcanvas .list-unstyled > li.active > a, .js-offcanvas .list-unstyled > li.active > a:active, .js-offcanvas .list-unstyled > li.active > a:focus, .js-offcanvas .list-unstyled > li.open > a, .js-offcanvas .list-unstyled > li.open > a:active, .js-offcanvas .list-unstyled > li.open > a:focus {
  background: white;
}
.js-offcanvas ul.navbar-nav > .dropdown > a:after, .js-offcanvas .list-unstyled > .dropdown > a:after {
  display: block;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  right: 10px;
  top: calc(50% - 5px);
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #a4c7e5;
  -khtml-transform: rotate(0deg);
  transform: rotate(0deg);
}
.js-offcanvas ul.navbar-nav > .dropdown.open > a:after, .js-offcanvas .list-unstyled > .dropdown.open > a:after {
  -khtml-transform: rotate(90deg);
  transform: rotate(90deg);
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu {
  display: none;
  margin-left: 0px;
  width: 100%;
  padding: 0;
  border-radius: 0px;
  overflow: hidden;
  background: #f2f2f2;
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu *, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu * {
  background: unset;
  transition-duration: 0s;
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu > li > a, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu > li > a {
  color: #595757 !important;
  padding: 12px !important;
  border-left: 4px solid #a4c7e5;
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu .dropdown-submenu > .dropdown-menu, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu .dropdown-submenu > .dropdown-menu {
  top: 0px;
  margin-top: 0;
  background: rgba(164, 199, 229, 0.04);
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu .dropdown-submenu > .dropdown-menu a, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu .dropdown-submenu > .dropdown-menu a {
  border-left-color: #5596ce;
  padding: 8px 12px !important;
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu .dropdown-submenu > a, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu .dropdown-submenu > a {
  padding-right: 30px;
  position: relative;
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu .dropdown-submenu > a:after, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu .dropdown-submenu > a:after {
  display: block;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  right: 10px;
  top: calc(50% - 5px);
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #a4c7e5;
  -khtml-transform: rotate(0deg);
  transform: rotate(0deg);
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu .dropdown-submenu.open > a:after, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu .dropdown-submenu.open > a:after {
  -khtml-transform: rotate(90deg);
  transform: rotate(90deg);
}
.js-offcanvas ul.navbar-nav > .dropdown.open > .dropdown-menu, .js-offcanvas .list-unstyled > .dropdown.open > .dropdown-menu {
  display: block;
}
.js-offcanvas ul.navbar-nav > .dropdown.open > a, .js-offcanvas ul.navbar-nav > .dropdown.open > a:hover, .js-offcanvas ul.navbar-nav > .dropdown.open > a:focus, .js-offcanvas .list-unstyled > .dropdown.open > a, .js-offcanvas .list-unstyled > .dropdown.open > a:hover, .js-offcanvas .list-unstyled > .dropdown.open > a:focus {
  border-color: rgba(0, 0, 0, 0.2);
}
.js-offcanvas ul.navbar-nav > .dropdown .caret:after, .js-offcanvas .list-unstyled > .dropdown .caret:after {
  color: #117ad5;
}
@media (min-width: 768px) {
  .js-offcanvas {
    display: none;
  }
}
.js-offcanvas.is-closed a {
  display: none;
}

.cart_btn_wrapper {
  float: right;
  padding: 8px;
  position: relative;
}
@media (max-width: 767px) {
  .cart_btn_wrapper {
    display: none;
  }
}

/* Cart Button */
.cart_btn {
  display: block;
  text-align: center;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background-color: white;
}
.cart_btn > i {
  color: #e9d437;
  font-size: 24px;
  line-height: 44px;
}

/* Small Number (Web & Mobile)*/
.btn_inner_absolute {
  position: relative;
}
.btn_inner_absolute span.inner {
  position: absolute;
  line-height: 1em;
  border-radius: 100px;
  padding: 2px 5px;
  background-color: #fff;
  border: 2px solid #a4c7e5;
  color: #a4c7e5;
  top: 10%;
  right: 10%;
  font-size: 12px;
}
.btn_inner_absolute.mini span.inner {
  border: 1px solid #444;
  background-color: #ccdff0;
  color: #444;
  top: 12%;
  right: 12%;
}

/* Cart Popup */
.cart_popup_wrapper {
  height: 0;
  z-index: 1010;
}

.cart_popup {
  margin: 0;
  position: absolute;
  border-radius: 3px;
  padding: 0;
  display: none;
  background: #fff;
  width: 480px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  top: 60px;
  right: 0;
}
.cart_popup.active {
  display: block;
}
.cart_popup .cart_itms {
  padding: 0 4px;
}
.cart_popup .cart_itms {
  max-height: 307px;
  overflow-x: hidden;
  overflow-y: auto;
}
.cart_popup .cart_itms::-webkit-scrollbar {
  width: 4px;
}
.cart_popup .cart_itms::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.cart_popup .cart_itms::-webkit-scrollbar-thumb {
  background-color: rgba(164, 199, 229, 0.5);
  outline: 0px solid;
}
.cart_popup li {
  padding: 4px 0;
}
.cart_popup li:after, .cart_popup li:before {
  content: "";
  display: block;
  clear: both;
}
.cart_popup li + li {
  border-top: 1px solid #e1e1e1;
}
.cart_popup li p {
  margin: 0;
}
.cart_popup .img_wrapper, .cart_popup .title, .cart_popup .price_col {
  display: block;
  margin: 0;
  float: left;
}
.cart_popup .img_wrapper {
  width: 60px;
  height: 60px;
  background-position: center;
  background-size: cover;
}
.cart_popup .img {
  width: 100%;
  height: 100%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.cart_popup .price_col {
  position: relative;
  width: 100px;
  padding-left: 40px;
}
.cart_popup .price_col .num_title {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 80%;
}
.cart_popup .price_col .price {
  line-height: 1.5em;
}
.cart_popup .price_col p {
  white-space: nowrap;
}
.cart_popup .price, .cart_popup .price_del {
  font-family: "Microsoft Jhenghei", "Noto Serif TC", "Rubik", sans-serif !important;
}
.cart_popup .title {
  width: calc(100% - 60px - 100px);
  padding: 0 4px;
  overflow: hidden;
}
.cart_popup .prd_title {
  overflow: hidden;
  line-height: 1.5em;
  max-height: 3em;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.cart_popup .footer {
  padding: 4px;
  border-top: 1px solid #e1e1e1;
}
.cart_popup .footer p {
  float: right;
  margin-left: 16px;
  margin-top: 0;
  margin-bottom: 0;
}
.cart_popup:after {
  bottom: 100%;
  right: 22px;
  top: -8px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #E9E488;
  border-width: 8px;
}

.nav_social_wrapper {
  padding: 8px 0;
}
.nav_social_wrapper ul:after, .nav_social_wrapper ul:before {
  content: "";
  display: block;
  clear: both;
}
.nav_social_wrapper ul > li {
  display: block;
  float: left;
  margin-right: 8px;
}
.nav_social_wrapper a {
  display: block;
  position: relative;
  text-align: center;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background-color: #E9E488;
  background-size: cover;
  background-repeat: no-repeat;
}
.nav_social_wrapper a:before {
  font-family: "FontAwesome";
  position: absolute;
  color: #fff;
  width: 44px;
  height: 44px;
  line-height: 44px;
  font-size: 24px;
  text-align: center;
  left: 0;
  top: 0;
}
.nav_social_wrapper a.line {
  background-color: #00bb00;
  background-image: none;
}
.nav_social_wrapper a.line:before {
  content: "\ ";
  background-image: none;
}
.nav_social_wrapper a.line:hover {
  background-color: #008800;
}
.nav_social_wrapper a.line:before {
  background: transparent no-repeat url(../images/common/ic_social_line_white.svg) center;
  background-size: 26px;
}
.nav_social_wrapper a.facebook {
  background-color: #2c6ac4;
  background-image: none;
}
.nav_social_wrapper a.facebook:before {
  content: "\f09a";
  background-image: none;
}
.nav_social_wrapper a.facebook:hover {
  background-color: #23539a;
}
.nav_social_wrapper a.line:before {
  background: transparent no-repeat url(../images/common/ic_social_line_white.svg) center;
  background-size: 26px;
}
.nav_social_wrapper a.instagram {
  background-color: transparent;
  background-image: url(../images/common/bg_social_ig.jpg);
}
.nav_social_wrapper a.instagram:before {
  content: "\f16d";
  background-image: none;
}
.nav_social_wrapper a.instagram:hover {
  background-color: rgba(0, 0, 0, 0);
}
.nav_social_wrapper a.line:before {
  background: transparent no-repeat url(../images/common/ic_social_line_white.svg) center;
  background-size: 26px;
}

.js-offcanvas .nav_social_wrapper {
  padding: 8px;
}
.js-offcanvas .nav_social_wrapper ul {
  text-align: center;
}
.js-offcanvas .nav_social_wrapper li {
  clear: none;
  display: inline-block;
  float: none;
}

@media (max-width: 767px ) {
  .nav_right_group .nav_social_wrapper {
    display: none;
  }
}

/* Search Collaspe
------------------- */
.s_f_wrapper {
  max-width: 220px;
  float: right;
  padding: 8px 0 0;
}
.s_f_wrapper input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.s_f_wrapper #s_form {
  background-color: #fff !important;
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 20px 20px;
  text-indent: 1em;
  display: inline-block;
  border: 0 none;
  width: 0;
  height: 40px;
  border-radius: 4px;
  transition: 0.3s;
  outline: none;
  padding: 12px 19px;
  cursor: pointer;
  -webkit-appearance: none;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  vertical-align: baseline;
  margin: 0;
  background-image: url(../images/common/ic_search_fa.svg);
}
.s_f_wrapper #s_form:hover, .s_f_wrapper #s_form:focus {
  background-image: url(../images/common/ic_search_fa_hover.svg);
}
@media (max-width: 767px ) {
  .s_f_wrapper #s_form:hover, .s_f_wrapper #s_form:focus {
    background-image: url(../images/common/ic_search_fa_hover.svg);
  }
}
.s_f_wrapper #s_form:focus {
  width: 240px;
  cursor: text;
}
@media (max-width: 767px ) {
  .s_f_wrapper {
    position: fixed;
    right: 0px;
    top: 80px;
    padding-left: 5px;
    padding-right: 5px;
    margin: 0;
    max-width: unset;
    color: #595757;
  }
  .s_f_wrapper:hover, .s_f_wrapper:focus {
    width: 100%;
  }
  .s_f_wrapper #s_form {
    background-position: calc(50px / 2 - 12px) center;
    width: 50px;
    height: 50px;
    padding: calc(50px / 2 - 12px) calc(50px / 2 - 5px);
    border-radius: calc(50px / 2);
    float: right;
    box-shadow: 0 3.2px 10px rgba(0, 0, 0, 0.32);
    background-color: #a4c7e5;
  }
  .s_f_wrapper #s_form:hover, .s_f_wrapper #s_form:focus {
    width: 100%;
    background-color: #efefef;
  }
  .s_f_wrapper #s_form:focus {
    padding-left: 32px;
  }
}
@media (min-width: 768px ) {
  .s_f_wrapper #s_form {
    color: #595757;
    border: 1px solid transparent;
    background-color: #a4c7e5;
    background-position: calc(44px / 2 - 12px) center;
    width: 44px;
    height: 44px;
    padding: calc(44px / 2 - 12px) calc(44px / 2 - 5px);
  }
  .s_f_wrapper #s_form:hover, .s_f_wrapper #s_form:focus {
    background-color: white;
    border: 1px solid #a4c7e5;
  }
  .s_f_wrapper #s_form:focus {
    padding-left: 32px;
  }
}

/* no desktop */
/* Search Desktop (Normal)
---------------------- */
.s_desktop {
  float: right;
  width: 300px;
  padding: 4px 0 4px;
  position: relative;
}
.s_desktop .search_input {
  float: left;
  outline: none;
  padding: 0;
  padding-left: 20px;
  width: 100%;
  color: #595757;
  border: 0px solid #a4c7e5;
  background-color: #f1f1f1;
}
.s_desktop .search_button {
  position: absolute;
  right: 0px;
  width: 28px;
  height: 28px;
  border-radius: 0 14px 14px 0;
  border: 0px solid #a4c7e5;
  background-color: #f1f1f1;
  text-align: center;
  cursor: pointer;
  font-size: 16px;
}
.s_desktop .search_button i {
  height: 28px;
  line-height: 27px;
}
.s_desktop .search_button i:before {
  color: rgba(77, 77, 77, 0.7);
}
@media (max-width: 767px ) {
  .s_desktop .search_button i {
    height: 38px;
    line-height: 38px;
  }
}
.s_desktop .search_button:hover {
  background-color: #f1f1f1;
}

@media (max-width: 767px) {
  .s_desktop {
    margin: 10px 8px 0 0;
  }
}

/* Top Nav
------------------ */
.top_nav {
  background-color: #fff;
}
.top_nav:after, .top_nav:before {
  content: "";
  display: block;
  clear: both;
}

/* 
  Nav Mobile Button
----------------- */
.nav_m_btns {
  display: block;
  position: absolute;
  height: 50px;
  right: 50px;
  top: 0;
  z-index: 1031;
}
@media (max-width: 991px ) {
  .nav_m_btns {
    right: -200px;
  }
}
.nav_m_btns > li {
  display: block;
  float: right;
}
.nav_m_btns > li a {
  display: block;
  width: 28px;
  text-align: center;
  color: #E9E488;
}
.nav_m_btns > li a i {
  font-size: 20px;
  line-height: 50px;
}
.nav_m_btns > li .nl_d_wrapper {
  margin-top: 8px;
  border: 1px solid #eee;
  border-radius: 5px;
}
.nav_m_btns > li .nl_d_wrapper:hover {
  border: 1px solid #E9E488;
}
.nav_m_btns > li .nl_d_wrapper a {
  padding: 5px;
}
@media (min-width: 768px ) {
  .nav_m_btns {
    display: none;
  }
}

/* Inner Number */
.btn_inner_absolute {
  position: relative;
}
.btn_inner_absolute span.inner {
  background-color: #fff;
  border: 2px solid #E9E488;
  color: #E9E488;
  position: absolute;
  padding: 2px 5px;
  top: 20%;
  right: 15%;
  font-size: 12px;
  line-height: 1em;
  border-radius: 100px;
}
.btn_inner_absolute.mini span.inner {
  border: 1px solid #fff;
  background-color: #E9E488;
  color: #fff;
  top: 12%;
  right: 0%;
}

.menu_s {
  padding: 8px 0;
}
.menu_s:after, .menu_s:before {
  content: "";
  display: block;
  clear: both;
}
.menu_s > li {
  display: block;
  float: left;
  padding: 0 15px;
  font-size: 14px;
  color: #595757;
  line-height: 1em;
  border-right: 1px solid #595757;
}
.menu_s > li > a {
  display: block;
  color: #595757;
  font-size: inherit;
}
.menu_s > li > a:hover {
  text-decoration: underline;
}
.menu_s > li i {
  margin-right: 6px;
}
.menu_s > li:nth-last-child(1) {
  border-right: 0px;
}

.center_block {
  text-align: center; /* 使文本在 div 中水平居中 */
  float: none; /* 確保 div 不受 float 影響 */
  margin: 0 auto; /* 使用 margin 使 div 水平居中 */
  display: inline-block; /* 使 div 成為 inline-block 元素 */
  vertical-align: middle; /* 垂直對齊 */
  height: 100%; /* 確保 div 佔滿父容器的高度 */
  line-height: 1; /* 確保行高正常 */
  color: #575757;
  background-color: #fff;
}

/* Nav Member
------------------ */
@media (max-width: 767px ) {
  .nav_member .menu_s {
    display: none;
  }
}
/* components */
/* --------------------------------------------
Desktop Menu & Mobile Bootstrap Menu Style
--------------------------------------------
import files:
- _menuColor


-------------------------------------------- */
/* Desktop Navbar
----------------------- */
/* Layout */
@media (min-width: 768px) {
  .navbar-nav {
    position: inherit;
    /* Hover Dropdown */
  }
  .navbar-nav > li {
    font-size: 16px;
  }
  .navbar-nav > li > a {
    text-align: center;
    z-index: 1001;
    white-space: nowrap;
    background-color: transparent;
    font-weight: 400;
    font-size: 16px;
    transition: all 0s ease-in-out;
  }
  .navbar-nav .dropdown_v2:hover > .menu_v2 {
    display: flex;
  }
  .navbar-nav .dropdown_v2 .menu_v2 {
    padding: 2rem 10rem 2rem 15rem;
    width: 100vw;
    background-color: rgba(249, 250, 249, 0.95);
    display: none;
    flex-wrap: wrap;
    justify-content: flex-start;
    max-height: 400px;
    overflow-y: scroll;
    scrollbar-width: thick;
  }
  .navbar-nav .dropdown_v2 .menu_v2::-webkit-scrollbar {
    width: 20px;
  }
  .navbar-nav .dropdown_v2 .menu_v2 .wrap {
    min-width: 150px;
    margin-inline: 1rem;
  }
  .navbar-nav .dropdown_v2 .menu_v2 .title {
    font-size: 1.8rem;
    font-weight: 800;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9d437;
    display: block;
  }
  .navbar-nav .dropdown_v2 .menu_v2 .sub_menu {
    margin-block: 2rem;
  }
  .navbar-nav .dropdown_v2 .menu_v2 .sub_menu li {
    padding: 0.3rem 0;
  }
  .navbar-nav .dropdown_v2 .menu_v2 .sub_menu a {
    font-size: 1.7rem;
    font-weight: 600;
  }
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
  }
  .navbar-nav .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}
/* Mobile Navbar
----------------------- */
@media (max-width: 767px) {
  .banner {
    display: none;
  }
  .sub-ul > li a {
    display: block;
  }
  .sub-ul > li a:hover {
    color: #a4c7e5;
  }
}
/* Style */
@media (min-width: 768px) {
  ul.navbar-nav > li > a {
    border-color: transparent;
  }
  ul.navbar-nav > li > a:hover, ul.navbar-nav > li > a:focus {
    background-color: white;
    color: #e9d437;
  }
  ul.navbar-nav > li > a:hover, ul.navbar-nav > li > a:focus, ul.navbar-nav > li > a.mPS2id-highlight {
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent;
    background-color: white;
    color: #e9d437;
  }
  ul.navbar-nav > li.active > a, ul.navbar-nav > li.active > a:hover, ul.navbar-nav > li.active > a:focus {
    color: #e9d437;
    background-color: white;
    border-color: transparent;
  }
  ul.navbar-nav .dropdown > a:after {
    border-top-color: #595757;
  }
  ul.navbar-nav .dropdown > a:hover:after {
    border-top-color: #e9d437;
  }
  ul.navbar-nav .dropdown-menu {
    background-color: white;
  }
  ul.navbar-nav .dropdown-menu > li > a {
    background-color: transparent;
  }
  ul.navbar-nav .dropdown-menu > li > a:hover, ul.navbar-nav .dropdown-menu > li > a:focus {
    background-color: rgba(0, 0, 0, 0.05);
  }
  ul.navbar-nav .dropdown-menu .dropdown-submenu > .dropdown-menu {
    border-left: 1px solid white;
  }
  ul.navbar-nav .dropdown-menu .dropdown-submenu > a:after {
    border-left-color: #a4c7e5;
  }
  ul.navbar-nav .dropdown-menu .dropdown-submenu:hover > a:after {
    border-left-color: #a4c7e5;
  }
  ul.navbar-nav a {
    color: #595757;
  }
  ul.navbar-nav .dropdown-menu a {
    color: #595757;
  }
  ul.navbar-nav .dropdown-menu a:hover, ul.navbar-nav .dropdown-menu a:focus {
    color: #a4c7e5;
  }
  .add_class ul.navbar-nav > li > a {
    border-color: transparent;
  }
  .add_class ul.navbar-nav > li > a:hover, .add_class ul.navbar-nav > li > a:focus {
    background-color: white;
    color: #e9d437;
  }
  .add_class ul.navbar-nav > li > a:hover, .add_class ul.navbar-nav > li > a:focus, .add_class ul.navbar-nav > li > a.mPS2id-highlight {
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent;
    background-color: white;
    color: #e9d437;
  }
  .add_class ul.navbar-nav > li.active > a, .add_class ul.navbar-nav > li.active > a:hover, .add_class ul.navbar-nav > li.active > a:focus {
    color: #e9d437;
    background-color: white;
    border-color: transparent;
  }
  .add_class ul.navbar-nav .dropdown > a:after {
    border-top-color: #595757;
  }
  .add_class ul.navbar-nav .dropdown > a:hover:after {
    border-top-color: #e9d437;
  }
  .add_class ul.navbar-nav .dropdown-menu {
    background-color: white;
  }
  .add_class ul.navbar-nav .dropdown-menu > li > a {
    background-color: transparent;
  }
  .add_class ul.navbar-nav .dropdown-menu > li > a:hover, .add_class ul.navbar-nav .dropdown-menu > li > a:focus {
    background-color: rgba(0, 0, 0, 0.05);
  }
  .add_class ul.navbar-nav .dropdown-menu .dropdown-submenu > .dropdown-menu {
    border-left: 1px solid white;
  }
  .add_class ul.navbar-nav .dropdown-menu .dropdown-submenu > a:after {
    border-left-color: #a4c7e5;
  }
  .add_class ul.navbar-nav .dropdown-menu .dropdown-submenu:hover > a:after {
    border-left-color: #a4c7e5;
  }
  .add_class ul.navbar-nav a {
    color: #595757;
  }
  .add_class ul.navbar-nav .dropdown-menu a {
    color: #595757;
  }
  .add_class ul.navbar-nav .dropdown-menu a:hover, .add_class ul.navbar-nav .dropdown-menu a:focus {
    color: #a4c7e5;
  }
  .navbar {
    background-color: #E6E7E9;
  }
  .navbar.add_class {
    background-color: #E6E7E9;
  }
  .dsk_menu {
    background-color: #e9d437;
    position: relative;
  }
  .dsk_menu.add_class {
    background-color: #E6E7E9;
  }
  .dsk_menu .menu_v2 {
    position: absolute;
    top: 60px;
    left: 0;
  }
}
/* Mobile Navbar
----------------------- */
@media (max-width: 767px) {
  .navbar-collapse {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  }
  ul.navbar-nav {
    border-top: 1px solid #e1e1e1;
    margin: 0 !important;
    overflow-y: auto;
    overflow-x: hidden;
  }
  ul.navbar-nav ul {
    padding: 0;
  }
  ul.navbar-nav a, ul.navbar-nav li.dropdown ul.dropdown-menu a {
    padding: 10px 15px;
    color: #595757;
    font-size: 18px;
  }
  ul.navbar-nav li.dropdown-submenu ul.dropdown-menu a {
    padding: 8px 12px !important;
  }
  ul.navbar-nav a, ul.navbar-nav a:hover, ul.navbar-nav a:focus, ul.navbar-nav .open a, ul.navbar-nav .open a:hover, ul.navbar-nav .open a:focus {
    border-bottom: 1px solid #e1e1e1;
    background-color: white;
  }
  ul.navbar-nav li.dropdown > a, ul.navbar-nav li.dropdown-submenu > a {
    position: relative;
  }
  ul.navbar-nav li.dropdown > a:after, ul.navbar-nav li.dropdown-submenu > a:after {
    display: block;
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    right: 10px;
    top: calc(50% - 5px);
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #a4c7e5;
    -khtml-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  ul.navbar-nav li.dropdown.open > a:after, ul.navbar-nav li.dropdown-submenu.open > a:after {
    -khtml-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  ul.navbar-nav > li.dropdown.open > a {
    background-color: white;
  }
  ul.navbar-nav > li.dropdown > ul.dropdown-menu {
    width: 100%;
    position: relative;
  }
  ul.navbar-nav > li.dropdown > ul.dropdown-menu > li > a {
    border-left: 4px solid #a4c7e5;
    background-color: #f7f7f7;
  }
  ul.navbar-nav > li.dropdown > ul.dropdown-menu > li.open > a {
    background-color: #f7f7f7;
  }
  ul.navbar-nav li.dropdown-submenu ul.dropdown-menu > li > a {
    border-left: 4px solid #5596ce;
    background-color: #f2f2f2;
  }
  .navbar, .dsk_menu {
    background-color: white;
  }
  .navbar.add_class, .dsk_menu.add_class {
    background-color: white;
  }
}
/* middle */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
}

/* Template */
/* Nav Li Style 
----------------*/
/* Desktop Menu
--------------- */
@media (min-width: 768px ) {
  .navbar-header {
    float: left;
  }
  .navbar-collapse {
    float: left;
    padding-left: 15px;
  }
  ul.navbar-nav > li > a {
    padding: 20px 12px;
  }
}
/* tablet
--------------- */
@media (min-width: 768px ) and (max-width: 1199px ) {
  ul.navbar-nav > li > a {
    padding-left: 8px;
    padding-right: 8px;
  }
}
/* Mobile Menu
--------------- */
@media (max-width: 767px ) {
  .nav_top_menu {
    display: none;
  }
}
/* Layout - Right Group
------------- */
.nav_right_group {
  float: right;
}
.nav_right_group > div {
  float: left;
}

/* Nav Add Class 
----------------*/
.navbar {
  border-radius: 0;
  border-width: 0 0 1px;
}
.navbar.add_class {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* IE Fix
---------------- */
/* header Member login */
.navbar-header {
  position: relative;
  z-index: 1031;
}

/* nav Theme */
.nav_fix {
  margin-top: 91px;
}
@media (min-width: 768px ) and (max-width: 1199px ) {
  .nav_fix {
    margin-top: 91px;
  }
}
@media (max-width: 767px ) {
  .nav_fix {
    margin-top: 80px;
  }
}

.nav_fix_home {
  margin-top: 0px;
}
@media (min-width: 768px ) and (max-width: 1199px ) {
  .nav_fix_home {
    margin-top: 0px;
  }
}
@media (max-width: 767px ) {
  .nav_fix_home {
    margin-top: 80px;
  }
}

.nav_fix_ci {
  margin-top: 0px;
}
@media (min-width: 768px ) and (max-width: 1199px ) {
  .nav_fix_ci {
    margin-top: 0px;
  }
}
@media (max-width: 767px ) {
  .nav_fix_ci {
    margin-top: 80px;
  }
}

.nav_fix_vendor {
  margin-top: 70px;
}
@media (min-width: 768px ) and (max-width: 1199px ) {
  .nav_fix_vendor {
    margin-top: 70px;
  }
}
@media (max-width: 767px ) {
  .nav_fix_vendor {
    margin-top: 0px;
  }
}

.lang_st {
  padding-top: 8px;
}
.lang_st:hover > a {
  color: #fff;
  background-color: #ccdff0;
}
@media (max-width: 767px ) {
  .lang_st {
    display: none;
  }
}

/* theme */
/* Common
----------------- */
.crsl_prd .content {
  padding-top: 10px;
  padding-bottom: 10px;
}
.crsl_prd .owl-dots {
  position: relative;
}

.crsl_prd .title,
.grid_prd .title {
  overflow: hidden;
  line-height: 1.5em;
  max-height: 3em;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  margin-bottom: 5px;
  font-weight: bold;
}
.crsl_prd .content,
.grid_prd .content {
  padding: 8px 0;
}
.crsl_prd .bread_name,
.grid_prd .bread_name {
  margin-bottom: 5px;
}
.crsl_prd .item:hover .img,
.crsl_prd .item:hover img,
.grid_prd .item:hover .img,
.grid_prd .item:hover img {
  -khtml-transform: scale(1.05);
  transform: scale(1.05);
}
.crsl_prd .item:hover .prd_tag img,
.grid_prd .item:hover .prd_tag img {
  -khtml-transform: scale(1);
  transform: scale(1);
}

.grid_prd .item {
  margin-bottom: 14px;
}

/* Sold out
------------ */
.soldout_wrapper {
  top: calc(50% - 36px / 2);
}
.soldout_wrapper p {
  background-color: rgba(128, 128, 128, 0.6);
  font-size: 24px;
  display: inline-block;
  padding: 0 5px;
  margin: 2px;
  font-weight: normal;
  line-height: 36px;
  border-radius: 4px;
  color: white;
  text-align: center;
  white-space: nowrap;
  text-indent: 0;
}

/* price */
.price,
.price_del {
  font-family: "Crimson Pro", "Nanum Myeongjo", "Microsoft Jhenghei", sans-serif;
}

.price {
  font-weight: 700;
}

/* Tags */
.prd_tag {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: #a4c7e5;
  border-radius: 50%;
  color: white;
  text-align: center;
  letter-spacing: 1px;
  font-size: 15px;
  z-index: 999;
}
.prd_tag.freetrans {
  background-color: #a4c7e5;
}
.prd_tag.selling {
  background-color: #E9E488;
}
.prd_tag.onsale {
  background-color: #d55340;
}
.prd_tag.transparent {
  background-color: transparent;
}
@media (max-width: 767px ) {
  .prd_tag {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}

.hprd_wrapper .prd_tag:nth-child(2),
.grid_prd .prd_tag:nth-child(2) {
  top: 60px;
}
.hprd_wrapper .prd_tag:nth-child(3),
.grid_prd .prd_tag:nth-child(3) {
  top: 110px;
}
.hprd_wrapper .prd_tag:nth-child(4),
.grid_prd .prd_tag:nth-child(4) {
  top: 160px;
}

/* More Btn */
.more_sale {
  display: inline-block;
  float: right;
}
.more_sale a {
  color: #5179bf;
}
.more_sale:hover {
  text-decoration: underline;
}

/* breadcrumb */
.breadcrumb > li + li:before {
  content: "/";
}

/* Home
----------------- */
.home_section {
  position: relative;
  padding-top: 40px;
  padding-left: 0;
  padding-right: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.home_section + .home_section {
  padding-top: 1px;
}
.home_section .tt_wr {
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 2.8em;
}
@media (max-width: 1230px) {
  .home_section {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 767px ) {
  .home_section {
    padding-top: 15px;
    margin-bottom: 30px;
  }
  .home_section .tt_wr {
    margin-top: 0px;
    margin-bottom: 10px;
  }
}

.slider {
  border-radius: 0px;
  overflow: hidden;
  padding-top: 0;
}
.slider .img {
  width: 100%;
  padding: 0;
  padding-top: 44.1666666667%;
  border-radius: 10px;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
@media (max-width: 767px ) {
  .slider .img_desktop {
    display: none;
  }
}
@media (min-width: 768px ) {
  .slider .img_mobile {
    display: none;
  }
}
.slider .owl-dots {
  text-align: center;
  margin-top: 0px;
  width: 100%;
}
.slider .owl-dots .owl-dot {
  display: inline-block;
}
.slider .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  margin: 0px 1px;
  background: transparent;
  border: 1px solid #a4c7e5;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
.slider .owl-dots .owl-dot.active span, .slider .owl-dots .owl-dot:hover span {
  background-color: #a4c7e5;
}
.slider .owl-dots {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 767px ) {
  .slider {
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
  }
}

/* custom */
.slider_wrapper {
  position: relative;
}

.h_crsl_wrapper {
  position: relative;
}

.hprd_wrapper {
  position: relative;
}

.leaflet_wrapper {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.leaflet_wrapper:after, .leaflet_wrapper:before {
  content: "";
  display: block;
  clear: both;
}
.leaflet_wrapper.first {
  margin-top: 20px;
}
@media (max-width: 767px ) {
  .leaflet_wrapper.first {
    margin-top: 15px;
  }
}
@media (max-width: 767px ) {
  .leaflet_wrapper {
    margin: 15px;
  }
}

.grid_leaflet_brick_wrapper {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px;
}
.grid_leaflet_brick_wrapper:after, .grid_leaflet_brick_wrapper:before {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 767px ) {
  .grid_leaflet_brick_wrapper {
    margin-bottom: 30px;
  }
}

.grid_leaflet_brick {
  margin-right: -15px;
  margin-top: 15px;
}
.grid_leaflet_brick:after, .grid_leaflet_brick:before {
  content: "";
  display: block;
  clear: both;
}
.grid_leaflet_brick .item {
  padding-right: 15px;
}
.grid_leaflet_brick .item {
  float: left;
  margin-bottom: 15px;
}
.grid_leaflet_brick .block:after, .grid_leaflet_brick .block:before {
  content: "";
  display: block;
  clear: both;
}
.grid_leaflet_brick .block .item {
  width: 100%;
}
@media (min-width: 768px ) {
  .grid_leaflet_brick .block .item {
    width: 100%;
  }
}
.grid_leaflet_brick .block.column2:after, .grid_leaflet_brick .block.column2:before {
  content: "";
  display: block;
  clear: both;
}
.grid_leaflet_brick .block.column2 .item {
  width: 100%;
}
@media (min-width: 768px ) {
  .grid_leaflet_brick .block.column2 .item {
    width: 50%;
  }
}
.grid_leaflet_brick .block.column3:after, .grid_leaflet_brick .block.column3:before {
  content: "";
  display: block;
  clear: both;
}
.grid_leaflet_brick .block.column3 .item {
  width: 100%;
}
@media (min-width: 768px ) {
  .grid_leaflet_brick .block.column3 .item {
    width: 33.3333333333%;
  }
}
@media (max-width: 1199px ) {
  .grid_leaflet_brick {
    margin-right: 0;
  }
  .grid_leaflet_brick .item {
    padding-right: 0;
  }
}
@media (max-width: 767px ) {
  .grid_leaflet_brick {
    margin-right: 0;
  }
  .grid_leaflet_brick .item {
    width: 100%;
    max-width: 425px;
    float: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
  }
}

.crsl_new .content {
  padding: 10px 0;
}
.crsl_new .content .date {
  color: #E9E488;
  margin-bottom: 5px;
}
.crsl_new .content .title {
  font-weight: bold;
  overflow: hidden;
  line-height: 1.5em;
  max-height: 3em;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.h_brand2_wrapper {
  position: relative;
  background-color: #f2f2f2;
}
.h_brand2_wrapper .home_section {
  padding-bottom: 40px;
  margin-bottom: 0;
}
.h_brand2_wrapper .crsl_brand .item {
  background-color: white;
  padding: 20px;
}
.h_brand2_wrapper .crsl_brand .item .img_wrapper {
  display: inline-block;
  vertical-align: middle;
  width: 35%;
  background-position: center;
  background-size: cover;
}
.h_brand2_wrapper .crsl_brand .item .content {
  display: inline-block;
  vertical-align: middle;
  width: 64%;
  padding-left: 15px;
}
.h_brand2_wrapper .crsl_brand .item .content .title {
  color: #595757;
  font-weight: 700;
}
.h_brand2_wrapper .crsl_brand .item .content .desc {
  padding: 8px 0;
  color: #727272;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 5.5em;
}
.h_brand2_wrapper .crsl_brand .item .content .more {
  font-weight: 700;
  text-decoration: underline;
}

.fix_btn_wrapper {
  position: fixed;
  right: 0;
  bottom: 15px;
  z-index: 9;
}
.fix_btn_wrapper ul {
  list-style: none;
}
.fix_btn_wrapper ul li {
  width: 50px;
  height: 50px;
  padding: 8px;
  line-height: 34px;
  margin-bottom: 6px;
  margin-right: 1.3rem;
  background-color: #a4c7e5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  text-align: center;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  transform: translateX(5px);
}
.fix_btn_wrapper ul li:hover, .fix_btn_wrapper ul li:focus {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transform: translateX(0px);
}
.fix_btn_wrapper ul li a {
  color: white;
  font-size: 1.5rem;
}
.fix_btn_wrapper ul li:nth-child(1) {
  background-color: #00c300;
}
@media (max-width: 767px ) {
  .fix_btn_wrapper {
    display: none;
  }
  .fix_btn_wrapper ul li {
    margin-bottom: 8px;
  }
}

/* mobFixBtn */
.mobile_btn_fix {
  display: none;
}
@media (max-width: 767px ) {
  .mobile_btn_fix {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
    background: #a4c7e5;
    color: #fff;
    text-align: center;
    font-size: 18px;
  }
  .mobile_btn_fix a {
    color: #fff;
    list-style: none;
  }
  .mobile_btn_fix .item {
    padding: 16px 0px;
    border-right: 1px solid #fff;
  }
  .mobile_btn_fix .item.last {
    border-right: 0;
  }
  .mobile_btn_fix .item i {
    margin-right: 8px;
  }
  .mobile_btn_fix .item .ic_line {
    background-image: url("../images/common/ic_line.png");
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    margin-bottom: -3px;
  }
  .mobile_btn_fix .line_st {
    background-color: #00c300;
  }
}

/* Prd
----------------- */
/* comps */
/*--- nav_side_solid ---*/
.prdl_sidebar-body {
  padding-right: 0px;
  /* active */
}
.prdl_sidebar-body > li {
  padding-top: 4px;
  padding-bottom: 4px;
}
.prdl_sidebar-body > li + li {
  margin-top: 0;
  border-top: 1px solid #ccc;
}
.prdl_sidebar-body i {
  width: 1.2em;
  text-align: center;
}
.prdl_sidebar-body > li a {
  font-size: 1.6rem;
  padding: 8px 8px;
  font-weight: 600;
}
.prdl_sidebar-body .active > a,
.prdl_sidebar-body .active > a:hover,
.prdl_sidebar-body .active > a:focus {
  font-weight: 700;
  color: #004B26;
  font-weight: 700;
}
.prdl_sidebar-body .layer_1st > li > a {
  padding-left: 24px;
}
.prdl_sidebar-body .layer_1st > li > a:before {
  content: "\f105";
  position: absolute;
  font: normal normal normal 14px/1 FontAwesome;
  right: 0;
  top: calc(50% - 7px);
  width: 24px;
  padding-left: 8px;
  text-align: center;
  color: #004B26;
}
.prdl_sidebar-body .layer_2nd > li > a {
  padding-left: calc(24px + 1em);
}

/* Prd List */
.prdl-section {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.prdl-section:after, .prdl-section:before {
  content: "";
  display: block;
  clear: both;
}
.prdl-section .prdl_content-wrapper {
  float: left;
  width: 100%;
}
@media (min-width: 992px ) {
  .prdl-section .prdl_content-wrapper {
    width: 83.3333333333%;
  }
}

.prdl_ad {
  margin-bottom: 2.5rem;
}

.prdl_sidebar-wrapper,
.prdl_content-wrapper {
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 1.5rem;
}
.prdl_sidebar-wrapper:after, .prdl_sidebar-wrapper:before,
.prdl_content-wrapper:after,
.prdl_content-wrapper:before {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 767px ) {
  .prdl_sidebar-wrapper,
  .prdl_content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

.prdl_sidebar-wrapper {
  float: left;
  width: 100%;
}
@media (min-width: 992px ) {
  .prdl_sidebar-wrapper {
    width: 16.6666666667%;
  }
}

.prdl-header:after, .prdl-header:before {
  content: "";
  display: block;
  clear: both;
}
.prdl-header .title {
  font-size: inherit;
  line-height: inherit;
  display: inline-block;
}
.prdl-header .breadcrumb_wrapper {
  float: right;
  color: white;
}
/* actionbar */
.prd_actionbar {
  margin-bottom: 15px;
  display: inline-block;
  float: right;
  /* breadcrumb */
}
.prd_actionbar .breadcrumb_wrapper {
  float: right;
}
.prd_actionbar .breadcrumb {
  padding: 10px 8px;
}
@media (min-width: 576px ) and (max-width: 767px ) {
  .prd_actionbar .breadcrumb {
    padding: 15px 8px;
  }
}
.prd_actionbar .caret_select {
  margin-top: 0;
}
.prd_actionbar .btn_order {
  color: white;
  background-color: #E3B667;
}
.prd_actionbar .btn_order:hover {
  background-color: #f1eeb3;
}
@media (max-width: 767px ) {
  .prd_actionbar {
    float: none;
    display: block;
    margin: 15px 0;
  }
  .prd_actionbar .btn_order {
    margin-top: 8px;
  }
}

/* grid */
.grid_prd {
  margin-right: -15px;
}
.grid_prd .item {
  padding-right: 15px;
}
.grid_prd .item {
  float: left;
  width: 33.3333333333%;
}
@media (max-width: 575px ) {
  .grid_prd .item {
    width: 50%;
  }
}
@media (min-width: 768px ) {
  .grid_prd .item {
    width: 33.3333333333%;
  }
}
@media (min-width: 992px ) {
  .grid_prd .item {
    width: 25%;
  }
}
@media (max-width: 575px ) {
  .grid_prd .item:nth-child(2n+1) {
    clear: left;
  }
}
@media (min-width: 576px ) and (max-width: 767px ) {
  .grid_prd .item:nth-child(3n+1) {
    clear: left;
  }
}
@media (min-width: 768px ) and (max-width: 991px ) {
  .grid_prd .item:nth-child(3n+1) {
    clear: left;
  }
}
@media (min-width: 992px ) {
  .grid_prd .item:nth-child(4n+1) {
    clear: left;
  }
}

/* Prd List Sidebar
======================= */
/* prdl_sidebar
-------------------- */
.prdl_sidebar {
  margin-bottom: 8px;
  overflow: hidden;
}

/* sidebar-header
-------------------- */
.prdl_sidebar-header {
  font-size: 110%;
}
.prdl_sidebar-header .title {
  font-size: inherit;
  line-height: inherit;
  display: inline-block;
}

/* sidebar-body
-------------------- */
.prdl_sidebar-body {
  /* RWD */
}
@media (max-width: 991px ) {
  .prdl_sidebar-body {
    display: none;
  }
}
@media (min-width: 768px ) {
  .prdl_sidebar-body .layer_1st {
    display: block;
  }
}

.brand_banner {
  position: relative;
  overflow: hidden;
  float: left;
  width: 100%;
}
@media (max-width: 575px ) {
  .brand_banner {
    width: 100%;
  }
}
@media (min-width: 768px ) {
  .brand_banner {
    width: 100%;
  }
}
@media (min-width: 992px ) {
  .brand_banner {
    width: 100%;
  }
}
.brand_banner img {
  width: 100%;
  border-radius: 4px;
}
@media (min-width: 576px ) {
  .brand_banner .img_mobile {
    display: none;
  }
}
@media (max-width: 575px ) {
  .brand_banner {
    padding-bottom: 15px;
  }
  .brand_banner .img_desktop {
    display: none;
  }
}
.brand_banner .info {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  width: 500px;
  top: 27%;
  right: 8%;
}
@media (min-width: 991px) and (max-width: 1366px) {
  .brand_banner .info {
    width: 450px;
    top: 12%;
  }
}
@media (min-width: 768px) and (max-width: 990px) {
  .brand_banner .info {
    width: 400px;
    top: 3%;
    right: 4%;
    padding: 8px;
  }
}
@media (max-width: 767px) {
  .brand_banner .info {
    padding: 8px;
    width: 320px;
    top: 3%;
    right: 8%;
  }
}
@media (max-width: 575px) {
  .brand_banner .info {
    position: relative;
    top: 0;
    right: 0;
    width: auto;
  }
}
.brand_banner .info p {
  text-align: center;
  color: #a4c7e5;
}

.brand_offset {
  width: 0;
  float: left;
  clear: both;
}

/*Logo+介紹的版型*/
.brand_banner1 {
  position: relative;
  overflow: hidden;
  max-width: 1673px;
  padding: 15px 0;
  margin-bottom: 2em;
  float: left;
  width: 100%;
  background-image: url("../../_images/v2/brand1.jpg");
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 575px ) {
  .brand_banner1 {
    width: 100%;
  }
}
@media (min-width: 768px ) {
  .brand_banner1 {
    width: 100%;
  }
}
@media (min-width: 992px ) {
  .brand_banner1 {
    width: 100%;
  }
}
.brand_banner1 .block1 {
  float: left;
  width: 33.3333333333%;
}
@media (max-width: 575px ) {
  .brand_banner1 .block1 {
    width: 100%;
  }
}
@media (min-width: 768px ) {
  .brand_banner1 .block1 {
    width: 41.6666666667%;
  }
}
@media (min-width: 992px ) {
  .brand_banner1 .block1 {
    width: 50%;
  }
}
.brand_banner1 .block2 {
  float: left;
  width: 66.6666666667%;
}
@media (max-width: 575px ) {
  .brand_banner1 .block2 {
    width: 100%;
  }
}
@media (min-width: 768px ) {
  .brand_banner1 .block2 {
    width: 58.3333333333%;
  }
}
@media (min-width: 992px ) {
  .brand_banner1 .block2 {
    width: 50%;
  }
}
.brand_banner1 .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 273px;
}
@media (max-width: 575px) {
  .brand_banner1 .flex {
    height: auto;
  }
}
.brand_banner1 .img1 {
  position: relative;
  width: 330px;
  margin: 0 auto;
}
.brand_banner1 .info1 {
  position: relative;
  background-color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  padding: 20px 40px;
  text-align: center;
  margin-right: 8px;
}
@media (max-width: 768px) {
  .brand_banner1 .info1 {
    max-width: unset;
    margin: 0 8px;
  }
}
@media (max-width: 575px) {
  .brand_banner1 .info1 {
    padding: 20px;
    margin: 0;
    margin-top: 8px;
  }
}
.brand_banner1 .h1 {
  color: #E9E488;
}

.sale_banner {
  position: relative;
  overflow: hidden;
  max-width: 1673px;
  padding: 15px 0;
  height: 200px;
  margin-bottom: 2em;
  float: left;
  width: 100%;
  background-image: url("../images/v2/banner_bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 575px ) {
  .sale_banner {
    width: 100%;
  }
}
@media (min-width: 768px ) {
  .sale_banner {
    width: 100%;
  }
}
@media (min-width: 992px ) {
  .sale_banner {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .sale_banner {
    height: 130px;
  }
}
.sale_banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/v2/banner_text.png");
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 575px) {
  .sale_banner:before {
    background-size: 300px auto;
  }
}

.brand_actionbar {
  padding-right: 43px;
}
@media (max-width: 991px ) {
  .brand_actionbar {
    padding-right: 24px;
  }
}
@media (max-width: 767px ) {
  .brand_actionbar {
    padding-right: 0px;
  }
}
@media (max-width: 575px ) {
  .brand_actionbar .s_desktop {
    margin: 0;
    float: none;
    width: auto;
  }
}

.brand_title {
  font-size: 30px;
  margin-bottom: 30px;
  text-align: center;
}

.brand_info_wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
}
.brand_info_wrapper:after, .brand_info_wrapper:before {
  content: "";
  display: block;
  clear: both;
}
.brand_info_wrapper .brand_img_wp {
  width: 100%;
}
@media (min-width: 768px ) {
  .brand_info_wrapper .brand_img_wp {
    width: 50%;
  }
}
@media (min-width: 992px ) {
  .brand_info_wrapper .brand_img_wp {
    width: 50%;
  }
}
.brand_info_wrapper .brand_img_wp .brand_img {
  width: 100%;
  padding: 0;
  padding-top: 100%;
  border-radius: 10px;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.brand_info_wrapper .brand_content {
  width: 100%;
  padding-left: 30px;
  color: #b3b3b3;
}
@media (min-width: 768px ) {
  .brand_info_wrapper .brand_content {
    width: 50%;
  }
}
@media (min-width: 992px ) {
  .brand_info_wrapper .brand_content {
    width: 50%;
  }
}
.brand_info_wrapper .brand_content .title {
  padding: 8px;
}
.brand_info_wrapper .brand_content .info {
  padding: 8px;
}
.brand_info_wrapper .brand_content .info li {
  display: inline-block;
  margin-right: 15px;
}
.brand_info_wrapper .brand_content .prd_info {
  padding: 8px;
  display: flex;
}
.brand_info_wrapper .brand_content .prd_info .item {
  padding: 8px;
  margin-right: 8px;
}
.brand_info_wrapper .brand_content .prd_info .item p {
  font-size: 16px;
}
.brand_info_wrapper .brand_content .prd_info .item .num {
  color: #a4c7e5;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767px ) {
  .brand_info_wrapper {
    flex-direction: column;
  }
  .brand_info_wrapper .brand_content {
    padding-left: 0;
    padding: 4px;
  }
  .brand_info_wrapper .brand_content .prd_info .item {
    margin-right: 0;
  }
}

.brandCrsl_wp {
  position: relative;
  padding-top: 10px;
  padding-left: 0;
  padding-right: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

/* Prd In */
.prdi_img {
  float: left;
  width: 100%;
}
@media (min-width: 992px ) {
  .prdi_img {
    width: 50%;
  }
}

.prdi_content {
  float: left;
  width: 100%;
}
@media (min-width: 992px ) {
  .prdi_content {
    width: 50%;
  }
}
@media (max-width: 767px ) {
  .prdi_content {
    margin-top: 30px;
  }
}

/* img */
.crsl_prdi_wrapper {
  position: relative;
}
.crsl_prdi_wrapper .crsl_prdi .img {
  width: 100%;
  padding: 0;
  padding-top: 75%;
  border-radius: 10px;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.crsl_prdi_wrapper .crsl_prdi .owl-dots {
  bottom: 0;
}

.crsl_prdi.thumbs {
  width: 60%;
  margin: 0 auto;
}

/* content */
@media (min-width: 768px ) {
  .prdi_content {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.prdi_content-header {
  margin-bottom: 15px;
}
@media (min-width: 768px ) {
  .prdi_content-header .breadcrumb_wrapper {
    text-align: center;
  }
  .prdi_content-header .breadcrumb {
    display: inline-block;
  }
  .prdi_content-header .title {
    font-size: 29px;
  }
}
@media (min-width: 768px ) and (max-width: 767px ) {
  .prdi_content-header .title {
    font-size: 21px;
  }
}

.breadcrumb_wrapper {
  margin-bottom: 1rem;
}

/*btn-share*/
.prdi_title:after, .prdi_title:before {
  content: "";
  display: block;
  clear: both;
}

.prd_share {
  margin-bottom: calc(15px + 3%);
}
@media (max-width: 767px ) {
  .prd_share {
    margin-bottom: 15px;
  }
}
.prd_share li {
  display: inline-block;
  padding-right: 5px;
}
.prd_share a {
  display: inline-block;
}

.prd_share .btn_share {
  display: inline-block;
  color: #595757;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 15px;
}
.prd_share .btn_share:hover, .prd_share .btn_share:focus {
  color: #e1da5d;
}
.prd_share .btn_share i {
  font-size: 20px;
  line-height: 30px;
}

.prd_share .btn_color_line .ic_line {
  display: inline-block;
  width: 20px;
  height: 23px;
  background-size: auto 23px;
  background-repeat: no-repeat;
  background-position: 0 3px;
  background-image: url(../images/common/ic_social_line_main_color.svg);
}
.prd_share .btn_color_line .ic_line:hover, .prd_share .btn_color_line .ic_line:focus {
  background-image: url(../images/common/ic_social_line_main_color_hover.svg);
}
.prd_share .btn_color_sub {
  background-color: #a4c7e5;
}
.prd_share .btn_color_sub:hover, .prd_share .btn_color_sub:focus {
  color: white;
  background-color: #ccdff0;
}

/* on-sale */
.prdi_onsale {
  margin-bottom: calc(15px + 3%);
}
.prdi_onsale:after, .prdi_onsale:before {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 767px ) {
  .prdi_onsale {
    margin-bottom: 15px;
  }
}

.onsale_dsc {
  display: block;
}
.onsale_dsc a {
  transition: all 0s ease-in-out;
  text-decoration: underline;
}
.onsale_dsc a, .onsale_dsc a:hover, .onsale_dsc a:focus {
  color: inherit;
}

.activity_link, .onsale_dsc {
  display: inline-block;
  background-color: #d55340;
  color: white;
  padding: 4px 8px;
  margin-left: 2px;
  line-height: 1.5em;
}
.activity_link:hover, .activity_link:focus, .onsale_dsc:hover, .onsale_dsc:focus {
  color: white;
  background-color: #8f2e20;
}

/* Prd Brief */
.prdi_brief {
  margin-bottom: calc(15px + 3%);
}
@media (max-width: 767px ) {
  .prdi_brief {
    margin-bottom: 15px;
  }
}

/* Prd Price */
.prdi_price {
  margin-bottom: calc(15px + 3%);
}
@media (max-width: 767px ) {
  .prdi_price {
    margin-bottom: 15px;
  }
}
.prdi_price .price {
  margin-right: 10px;
  padding-left: 4px;
  font-size: 29px;
}
@media (max-width: 767px ) {
  .prdi_price .price {
    font-size: 21px;
  }
}

/* Specification */
.prdi_spec {
  margin-bottom: calc(15px + 3%);
}
@media (max-width: 767px ) {
  .prdi_spec {
    margin-bottom: 15px;
  }
}
.prdi_spec.no-responsive.border > .item + .item {
  border-top-width: 0;
}
@media (min-width: 768px ) {
  .prdi_spec > .item:nth-child(2) {
    border-top: none !important;
  }
}

.prdi_content-body {
  /* Shopping Btn */
}
.prdi_content-body .shopping_wrapper {
  margin-bottom: calc(15px + 3%);
}
@media (max-width: 767px ) {
  .prdi_content-body .shopping_wrapper {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px ) {
  .prdi_content-body .btn_like_wrapper {
    float: left;
  }
  .prdi_content-body .btn_shopping_group {
    width: auto;
  }
  .prdi_content-body .btn_shopping_group li {
    width: 50%;
  }
  .prdi_content-body .btn_shopping {
    font-size: 120%;
    line-height: 1.5em;
    padding: 8px 32px;
  }
}

/* Tab */
.prdinfo_tab {
  padding-top: 60px;
}
@media (max-width: 767px ) {
  .prdinfo_tab {
    padding-top: 15px;
  }
}

.prdinfo_tab-nav {
  text-align: center;
  border-bottom: 1px solid #999;
}
.prdinfo_tab-nav li {
  display: inline-block;
  position: relative;
  margin-bottom: 15px;
}
.prdinfo_tab-nav li a {
  color: #999;
}
.prdinfo_tab-nav li + li {
  padding-left: 60px;
}
.prdinfo_tab-nav li + li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  text-align: center;
  color: #999;
}
@media (max-width: 767px ) {
  .prdinfo_tab-nav li + li {
    padding-left: 20px;
  }
  .prdinfo_tab-nav li + li:before {
    width: 20px;
  }
}
.prdinfo_tab-nav a {
  font-size: 120%;
}
.prdinfo_tab-nav .active a {
  font-weight: 700;
  color: #595757;
}

/*prdi_assess*/
.prdi_assess_warpper {
  padding: 25px 60px;
}
@media (max-width: 768px) {
  .prdi_assess_warpper {
    padding: 10px;
  }
}

.prdi_assess {
  padding-bottom: 0.8em;
  margin-bottom: 1em;
  border-bottom: 1px solid #666;
  position: relative;
}
.prdi_assess:after, .prdi_assess:before {
  content: "";
  display: block;
  clear: both;
}
.prdi_assess a {
  color: #0275d8;
}
.prdi_assess a:hover, .prdi_assess a:focus, .prdi_assess a:active {
  color: #a4c7e5;
}
.prdi_assess .img {
  float: left;
  width: 150px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .prdi_assess .img {
    width: 130px;
  }
}
.prdi_assess .content {
  float: left;
  width: calc(100% - 150px);
  padding: 0 10px 10px;
}
@media (max-width: 768px) {
  .prdi_assess .content {
    width: calc(100% - 130px);
  }
}
.prdi_assess .content .text_color {
  color: #999;
}
.prdi_assess .date {
  float: right;
  margin: 13px 30px 0 10px;
}
@media (max-width: 768px) {
  .prdi_assess .date {
    margin: 0 16px 0 10px;
  }
}
.prdi_assess .date img {
  float: left;
}
.prdi_assess .date p {
  float: left;
  margin-top: 1em;
  margin-left: 5px;
}
.prdi_assess .rating {
  font-size: 20px;
  color: red;
}
.prdi_assess .rating span {
  padding-left: 3px;
}

.prdi_assess:nth-child(2n) .img {
  float: right;
}
.prdi_assess:nth-child(2n) .date {
  float: left;
}

.prdi_assess:nth-last-child(2) {
  border-bottom: 0px solid transparent;
}

.orderrating span {
  color: red;
  font-size: 20px;
}

.element div {
  color: red;
}

.freegift_grid {
  overflow: hidden;
  padding-bottom: 0;
}
.freegift_grid:after, .freegift_grid:before {
  content: "";
  display: block;
  clear: both;
}
.freegift_grid a {
  cursor: pointer;
}
.freegift_grid .img {
  width: 100%;
  padding-top: 100%;
  border-radius: 10px;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.freegift_grid .freegift_title {
  height: 3.6em;
  overflow: hidden;
}
.freegift_grid .check_wrp, .freegift_grid .img_wrp, .freegift_grid .content_wrp, .freegift_grid .num_wrp {
  float: left;
}
.freegift_grid .item {
  padding: 8px;
  margin-bottom: -1px;
  border-bottom: 1px solid #e1e1e1;
}
.freegift_grid .img_wrp {
  width: 60px;
}
.freegift_grid .content_wrp {
  padding: 0px 8px;
  width: calc(100% - 60px - 110px);
}
.freegift_grid .num_wrp {
  position: relative;
  padding-right: 0px;
  padding-top: 0px;
  width: 110px;
}
.freegift_grid .num_wrp small {
  position: absolute;
  left: 4px;
  top: calc(50% - 11px);
}
.freegift_grid .num_wrp input {
  display: block;
  width: 43%;
}
.freegift_grid .item:hover {
  background-color: rgba(0, 0, 0, 0.025);
}

/* Pages
----------------- */
.artc_about .img {
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}
.artc_about .content {
  text-align: center;
}
.artc_about .content .editor {
  padding: 8px 20px;
}
.artc_about .title_special {
  position: relative;
  display: inline-block;
  float: none;
  color: #a4c7e5;
  font-weight: 700;
  font-family: "Crimson Pro", "Nanum Myeongjo", "Microsoft Jhenghei", sans-serif;
  margin: 1em 0;
}
.artc_about .title_special:before, .artc_about .title_special:after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  width: 15vw;
  max-width: 400px;
  height: 1px;
  border-radius: 1px;
  background-color: #a4c7e5;
}
.artc_about .title_special:after {
  left: calc(100% + 30px);
}
.artc_about .title_special:before {
  right: calc(100% + 30px);
}
.artc_about .tt_wr_center {
  padding-top: 1px;
  padding-bottom: 1px;
  text-align: center;
}
.artc_about .tt_wr_center > .title_special {
  display: inline-block;
}

.news_title {
  font-family: "Crimson Pro", "Nanum Myeongjo", "Microsoft Jhenghei", sans-serif;
  color: #a4c7e5;
  text-align: center;
  margin-bottom: 30px;
}

.newsl_btn {
  display: inline-block;
  font-family: "Crimson Pro", "Nanum Myeongjo", "Microsoft Jhenghei", sans-serif;
}
.newsl_btn:hover {
  -khtml-transform: rotate(15deg);
  transform: rotate(15deg);
}

.news_date {
  font-family: "Crimson Pro", "Nanum Myeongjo", "Microsoft Jhenghei", sans-serif;
  color: #999;
  margin-bottom: 8px;
}

.grid_news {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  width: 100%;
  /* hover */
}
@media (min-width: 768px ) {
  .grid_news {
    width: 100%;
  }
}
@media (min-width: 992px ) {
  .grid_news {
    width: 100%;
  }
}
.grid_news .item {
  width: 100%;
  float: left;
  padding: 10px;
  margin-bottom: 15px;
}
.grid_news .item img {
  border-radius: 10px;
}
.grid_news .item:after, .grid_news .item:before {
  content: "";
  display: block;
  clear: both;
}
@media (min-width: 768px ) {
  .grid_news .item {
    width: 50%;
  }
}
@media (min-width: 992px ) {
  .grid_news .item {
    width: 33.3333333333%;
  }
}
@media (min-width: 992px ) {
  .grid_news .item:nth-child(3n+1) {
    clear: left;
  }
}
@media (max-width: 991px ) and (min-width: 768px ) {
  .grid_news .item:nth-child(2n+1) {
    clear: left;
  }
}
.grid_news .content {
  padding: 8px 0;
}
.grid_news .title {
  font-weight: bold;
  overflow: hidden;
  line-height: 1.5em;
  max-height: 3em;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.grid_news .date {
  margin-bottom: 2px;
}
.grid_news .newsl_img {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.grid_news .item:hover .newsl_img {
  -khtml-transform: scale(1.05);
  transform: scale(1.05);
}

/* News In */
.artc_news .newsi_img {
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}
@media (min-width: 768px ) {
  .artc_news .img_mobile {
    display: none;
  }
}
@media (max-width: 767px ) {
  .artc_news .img_desktop {
    display: none;
  }
}
.artc_news .content {
  margin-top: 20px;
  text-align: center;
}
.artc_news .date {
  color: #999;
  font-family: "Crimson Pro", "Nanum Myeongjo", "Microsoft Jhenghei", sans-serif;
}
.artc_news .editor {
  display: inline-block;
  text-align: left;
  padding: 8px 0;
}
.artc_news .btn_wrapper {
  margin-top: 15px;
}
.artc_news .newsl_btn {
  display: inline-block;
  color: #a4c7e5;
  font-size: 140%;
}

/* Contact
-------------- */
.contact_section {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.contact_section:after, .contact_section:before {
  content: "";
  display: block;
  clear: both;
}

.c_content {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.c_content:after, .c_content:before {
  content: "";
  display: block;
  clear: both;
}

.c_left,
.c_right {
  padding-left: 15px;
  padding-right: 15px;
}
.c_left:after, .c_left:before,
.c_right:after,
.c_right:before {
  content: "";
  display: block;
  clear: both;
}

.c_left {
  padding-bottom: 20px;
  padding-top: 10px;
  width: 100%;
}

.c_right {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 992px ) {
  .c_right {
    width: 50%;
  }
}

/* Contact Map
-------------- */
.c_map {
  height: 230px;
  width: 100%;
  padding: 0;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}

/* QR code & Info
----------- */
.c_info,
.c_qrcode_wrapper {
  float: left;
}

.c_info {
  width: 100%;
}
@media (max-width: 575px ) {
  .c_info {
    width: 100%;
  }
}

/* Contact Info
----------- */
.c_info li {
  position: relative;
  padding-left: 0;
  line-height: 1.5em;
  width: 100%;
}
.c_info li:before {
  display: inline-block;
  content: "\f105";
  font-family: "FontAwesome";
  position: relative;
  color: inherit;
  font-size: 1em;
  line-height: 1.5em;
  width: 1.5em;
  height: 1.5em;
  text-align: center;
  left: 0;
  vertical-align: middle;
}
.c_info li.map-marker:before {
  content: "\f041";
  background-image: none;
}
.c_info li.phone:before {
  content: "\f095";
  background-image: none;
}
.c_info li.mobile-phone:before {
  content: "\f10b";
  background-image: none;
}
.c_info li.fax:before {
  content: "\f1ac";
  background-image: none;
}
.c_info li.envelope:before {
  content: "\f003";
  background-image: none;
}
.c_info li.link:before {
  content: "\f0c1";
  background-image: none;
}
.c_info li.calendar:before {
  content: "\f274";
  background-image: none;
}
.c_info li.line:before {
  content: "";
  background-image: url(../images/common/ic_social_line_green.svg);
  width: 1.5em;
  height: 1.5em;
  background-size: contain;
  background-repeat: no-repeat;
}
.c_info li:empty {
  display: none;
}
@media (min-width: 992px ) {
  .c_info li {
    width: calc(20% - 4px);
  }
}
.c_info li a:hover {
  color: #a4c7e5;
}
@media (min-width: 992px ) {
  .c_info {
    padding: 30px 0;
  }
  .c_info li {
    text-align: center;
    display: inline-block;
  }
  .c_info li:before {
    font-size: 200%;
    display: block;
    margin: 0 auto 10px;
  }
  .c_info li + li {
    border-left: 1px dotted #e9e488;
  }
}
@media (max-width: 991px ) {
  .c_info {
    padding-right: 15px;
  }
  .c_info li {
    padding: 10px;
  }
  .c_info li:before {
    margin-right: 8px;
  }
  .c_info li + li {
    border-top: 1px dotted #e9e488;
  }
}
@media (max-width: 575px ) {
  .c_info {
    margin-bottom: 10px;
  }
}

/* QR Code
----------------- */
.c_qrcode_wrapper {
  position: relative;
  padding: 10px;
  border: 1px solid #e1e1e1;
  max-width: 160px;
  margin: 0 auto 0;
}
@media (max-width: 575px ) {
  .c_qrcode_wrapper {
    float: none;
    clear: both;
  }
}

.img_qrcode {
  width: 100%;
  padding: 0;
  padding-top: 100%;
  border-radius: 10px;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}

/* Contact Form
----------------- */
.c_form_wrapper {
  border-radius: 10px;
  background-color: rgba(233, 228, 136, 0.4);
  padding: 15px 25px;
}
.c_form_wrapper .btn_wrapper {
  padding-right: 0;
  padding-left: 0;
}
@media (min-width: 576px ) {
  .c_form_wrapper .btn_wrapper {
    margin-top: 30px !important;
  }
}

.mmbr_login_wrapper {
  padding: 60px 0;
}
.mmbr_login_wrapper:after, .mmbr_login_wrapper:before {
  content: "";
  display: block;
  clear: both;
}
.mmbr_login_wrapper .main_title {
  margin-bottom: 20px;
}
.mmbr_login_wrapper .note {
  text-align: center;
  padding: 4px 0;
}
.mmbr_login_wrapper .email_login, .mmbr_login_wrapper .social_login {
  padding: 0 5rem;
}
.mmbr_login_wrapper .form_column {
  padding: 12px 0 4px 0;
}
.mmbr_login_wrapper .btn_wrapper .btn_main, .mmbr_login_wrapper .btn_wrapper .btn_main_outline {
  width: 100%;
}
.mmbr_login_wrapper .btn_wrapper > a {
  display: block;
}
.mmbr_login_wrapper .btn_wrapper > a + a {
  margin-top: 12px;
}
@media (max-width: 767px ) {
  .mmbr_login_wrapper {
    padding: 30px 0;
  }
  .mmbr_login_wrapper .form_column {
    padding: 4px 0;
  }
  .mmbr_login_wrapper .email_login, .mmbr_login_wrapper .social_login {
    padding: 0;
  }
}

.new_letter_wp {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 60px;
  border-top: 1px solid #ddd;
  padding: 30px 0;
  text-align: center;
}
.new_letter_wp .input_block {
  margin: 1rem auto;
}
.new_letter_wp .input_block input {
  box-shadow: 2px 2px 3px #ddd;
  border-color: #ddd;
}
.new_letter_wp .btn_cancel_letter:hover {
  text-decoration: underline;
}
@media (max-width: 767px ) {
  .new_letter_wp {
    margin-top: 45px;
    padding: 15px 0;
  }
  .new_letter_wp input {
    height: calc(1.8em + 15px);
  }
}

.searchResult_wrap {
  position: relative;
  padding: 60px 8px;
  max-width: 1600px;
}
@media (max-width: 767px ) {
  .searchResult_wrap {
    padding: 30px 8px;
  }
}
.searchResult_wrap .header {
  padding: 30px 8px;
}
.searchResult_wrap .srch_item {
  position: relative;
  padding: 16px 8px;
  padding-bottom: 2rem;
}
.searchResult_wrap .srch_item:before {
  content: "";
  border-top: 2px solid;
  color: #E9E488;
  margin: auto;
  position: absolute;
  top: 0;
  left: 8px;
  transform: scale(1);
  width: 4rem;
}
.searchResult_wrap .srch_item .title {
  color: #a4c7e5;
}
.searchResult_wrap .srch_item .dsc {
  overflow: hidden;
  line-height: 1.5em;
  max-height: 3em;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.searchResult_wrap .srch_highlight {
  color: #E9E488;
  font-weight: 700;
}

.search_wrap {
  z-index: 9999;
  position: fixed;
  min-width: 100vw;
  min-height: 100vh;
  background-color: #a4c7e5;
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #595757;
  /* WebKit browsers (Chrome, Safari, Edge) */
  /* Mozilla Firefox */
  /* Internet Explorer 10+ */
  /* Microsoft Edge */
  /* General placeholder styling for other browsers */
}
.search_wrap .inner-form {
  padding: 1rem;
}
.search_wrap .inner-form p {
  font-size: 18px;
}
.search_wrap .inner-form i {
  display: block;
  font-size: 40px;
  margin-bottom: 40px;
}
.search_wrap .search_style {
  width: 100%;
  margin: 1.5rem 0;
  border: 0;
  border-bottom: 2px solid white;
  border-radius: 0;
  background-color: transparent;
  color: #595757;
}
.search_wrap .search_style::-moz-placeholder {
  color: #595757;
}
.search_wrap .search_style::placeholder {
  color: #595757;
}

.btn_close {
  position: absolute;
  right: 15px;
  top: 15px;
  color: white;
  font-size: 40px;
}

.hashtag_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 500px;
  margin: 1rem 0;
}
.hashtag_wrap li {
  padding: 0.5rem;
}
.hashtag_wrap li button {
  background-color: rgba(239, 239, 239, 0.8);
  border-radius: 18px;
  padding: 0.8rem 1.2rem;
  color: #2b2b2b;
}
.hashtag_wrap li button:hover {
  background-color: #efefef;
}

/* ==========================
 Final Part
========================== */
/* Custom Classes */
/* 2018.10.04 */
/* ====== Custom Class ====== */
/* Color */
.white {
  color: #fff;
}

.red {
  color: #f56954;
}

.green {
  color: #4fc47f;
}

.blue {
  color: #0275d8;
}

.light-gray {
  color: #999;
}

.main-color {
  color: #a4c7e5;
}

/* Font Size */
.font-size-xxs, i.font-size-xxs:before {
  font-size: 12px;
}
@media (max-width: 767px ) {
  .font-size-xxs, i.font-size-xxs:before {
    font-size: 12px;
  }
}

.font-size-xs, i.font-size-xs:before {
  font-size: 14px;
}
@media (max-width: 767px ) {
  .font-size-xs, i.font-size-xs:before {
    font-size: 14px;
  }
}

.font-size-sm, i.font-size-sm:before {
  font-size: 16px;
}
@media (max-width: 767px ) {
  .font-size-sm, i.font-size-sm:before {
    font-size: 14px;
  }
}

.font-size-md, i.font-size-md:before {
  font-size: 20px;
}
@media (max-width: 767px ) {
  .font-size-md, i.font-size-md:before {
    font-size: 18px;
  }
}

.font-size-lg, i.font-size-lg:before {
  font-size: 24px;
}
@media (max-width: 767px ) {
  .font-size-lg, i.font-size-lg:before {
    font-size: 20px;
  }
}

.font-size-xl, i.font-size-xl:before {
  font-size: 40px;
}
@media (max-width: 767px ) {
  .font-size-xl, i.font-size-xl:before {
    font-size: 30px;
  }
}

/* Font Faminly */
.font-family-alt {
  font-family: "Crimson Pro", "Nanum Myeongjo", "Microsoft Jhenghei", sans-serif;
  font-weight: 500;
}
.lang-2nd .font-family-alt {
  font-family: "Nanum Myeongjo", "Microsoft Jhenghei", sans-serif;
}

/* letter spacing */
.no-letter-s {
  letter-spacing: 0px !important;
}

.letter-s125 {
  letter-spacing: 0.125em !important;
}

.letter-s25 {
  letter-spacing: 0.25em !important;
}

.letter-s50 {
  letter-spacing: 0.5em !important;
}

.letter-s75 {
  letter-spacing: 0.75em !important;
}

.letter-s100 {
  letter-spacing: 1em !important;
}

/* font weight */
.font-w400 {
  font-weight: 400 !important;
}

.font-w700 {
  font-weight: 700 !important;
}

/* text property */
.text-transform-unset {
  text-transform: unset !important;
}

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

.word-wrap {
  word-wrap: break-word;
}

.text-transform-none {
  text-transform: none !important;
}

.text-transform-uppercase {
  text-transform: uppercase !important;
}

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

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

.align-left {
  text-align: left !important;
}

/* background */
.bg-full,
.opacity-light,
.opacity-medium,
.opacity-full {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}

.opacity-light {
  opacity: 0.5;
}

.opacity-medium {
  opacity: 0.7;
}

.opacity-full {
  opacity: 0.8;
}

.fix-background {
  background-size: cover !important;
}
@media (min-width: 1200px ) {
  .fix-background {
    background-size: cover !important;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    z-index: -1;
  }
}

.cover-background {
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: -1;
}

/*center-col*/
.center-col {
  float: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* margin */
.no-margin {
  margin: 0 !important;
}

.no-margin-lr {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.no-margin-top {
  margin-top: 0 !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.no-margin-left {
  margin-left: 0 !important;
}

.no-margin-right {
  margin-right: 0 !important;
}

.margin-bottom {
  margin-bottom: 60px;
}

.m-top5 {
  margin-top: 5px !important;
}

.m-bottom5 {
  margin-bottom: 5px !important;
}

.m-top10 {
  margin-top: 10px !important;
}

.m-bottom10 {
  margin-bottom: 10px !important;
}

.m-top15 {
  margin-top: 15px !important;
}

.m-bottom15 {
  margin-bottom: 15px !important;
}

.m-top20 {
  margin-top: 20px !important;
}

.m-bottom20 {
  margin-bottom: 20px !important;
}

.m-top30 {
  margin-top: 30px !important;
}

.m-bottom30 {
  margin-bottom: 30px !important;
}

.m-top40 {
  margin-top: 40px !important;
}

.m-bottom40 {
  margin-bottom: 40px !important;
}

.m-top50 {
  margin-top: 50px !important;
}

.m-bottom50 {
  margin-bottom: 50px !important;
}

.m-top60 {
  margin-top: 60px !important;
}

.m-bottom60 {
  margin-bottom: 60px !important;
}

.m-top70 {
  margin-top: 70px !important;
}

.m-bottom70 {
  margin-bottom: 70px !important;
}

.m-top80 {
  margin-top: 80px !important;
}

.m-bottom80 {
  margin-bottom: 80px !important;
}

.m-top90 {
  margin-top: 90px !important;
}

.m-bottom90 {
  margin-bottom: 90px !important;
}

.m-top100 {
  margin-top: 100px !important;
}

.m-bottom100 {
  margin-bottom: 100px !important;
}

.m-top110 {
  margin-top: 110px !important;
}

.m-bottom110 {
  margin-bottom: 110px !important;
}

.m-top120 {
  margin-top: 120px !important;
}

.m-bottom120 {
  margin-bottom: 120px !important;
}

.m-top130 {
  margin-top: 130px !important;
}

.m-bottom130 {
  margin-bottom: 130px !important;
}

.m-top140 {
  margin-top: 140px !important;
}

.m-bottom140 {
  margin-bottom: 140px !important;
}

.m-top150 {
  margin-top: 150px !important;
}

.m-bottom150 {
  margin-bottom: 150px !important;
}

.m-top160 {
  margin-top: 160px !important;
}

.m-bottom160 {
  margin-bottom: 160px !important;
}

.m-top170 {
  margin-top: 170px !important;
}

.m-bottom170 {
  margin-bottom: 170px !important;
}

.m-top180 {
  margin-top: 180px !important;
}

.m-bottom180 {
  margin-bottom: 180px !important;
}

.m-top190 {
  margin-top: 190px !important;
}

.m-bottom190 {
  margin-bottom: 190px !important;
}

.m-top200 {
  margin-top: 200px !important;
}

.m-bottom200 {
  margin-bottom: 200px !important;
}

/* padding-custom */
.padding-lr8 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.padding-lr15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.padding-lr30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.padding-tb8 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.padding-tb15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.padding-tb20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.padding-tb30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.padding-tb40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.padding-tb50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.padding-tb60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.padding-tb70 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.padding-tb80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.padding-left-right-px {
  padding: 0 15px;
}

.no-padding-lr {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.no-padding-section {
  padding: 0px !important;
}

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

.no-padding-top {
  padding-top: 0 !important;
}

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

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

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.no-padding-tb {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

.section-padding-inner {
  padding: 140px 0;
}

/* float */
.f-left {
  float: left !important;
}

.f-right {
  float: right !important;
}

.no-float {
  float: none !important;
}

/* display */
.display-block {
  display: block !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-hidden-mobile {
  position: fixed !important;
  overflow: hidden !important;
}

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

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

.display-none {
  display: none !important;
}

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

/* position */
.position-relative {
  position: relative !important;
  z-index: 5;
}

.position-absolute {
  position: absolute !important;
}

.position-right {
  right: 0 !important;
}

.position-left {
  left: 0 !important;
}

.position-top {
  top: 0 !important;
}

/* width */
.width {
  display: inline-block;
  position: relative;
  width: 90%;
}

.width-20 {
  width: 20% !important;
}

.width-30 {
  width: 30% !important;
}

.width-40 {
  width: 40% !important;
}

.width-50 {
  width: 50% !important;
}

.width-60 {
  width: 60% !important;
}

.width-70 {
  width: 70% !important;
}

.width-80 {
  width: 80% !important;
}

.width-90 {
  width: 90% !important;
}

.width-100 {
  width: 100% !important;
}

.width-auto {
  width: auto !important;
}

/* height */
.height-100 {
  height: 100% !important;
}

.height-auto {
  height: auto !important;
}

.clear-both {
  clear: both;
}

.roundedimage {
  border-radius: 100%;
}

.vertical-align-top {
  vertical-align: top !important;
}

.vertical-align-middle {
  vertical-align: middle !important;
}

.vertical-align-bottom {
  vertical-align: bottom !important;
}

.no-box-shadow {
  box-shadow: none !important;
}

p.uppercase {
  text-transform: uppercase !important;
}

p.uppercase a {
  text-decoration: underline !important;
}

p.uppercase a:hover {
  text-decoration: none;
}

.line-break {
  display: block !important;
}

.z-index-1 {
  z-index: 1 !important;
}

.z-index-0 {
  z-index: 0 !important;
}

/*animate & transiton*/
.animated {
  -moz-transition-duration: 0s !important;
}

/*##*/
.transition2s, .transition2s * {
  transition: all 0.2s ease-in-out;
}

.transition1s, .transition1s * {
  transition: all 0.1s ease-in-out;
}

/*no transiton*/
.no-transition, .no-transition * {
  transition: all 0s ease-in-out;
}

/* ====== //Custom Class ====== *//*# sourceMappingURL=shop-v2.css.map */