@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;500&display=swap');

/* raccordion-set
---------------------------------------------------------*/

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fiel.accordion-set,input,textarea,p,blockquote,th,td {margin:0; padding:0;}
table {border-collapse:collapse;border-spacing:0;}
fiel.accordion-set,img,iframe {border:0;}
address,caption,cite,code,dfn,em,th,var {font-style:normal;font-weight:normal;}
caption,th {text-align:left;}
q:before,q:after {content:'';}
abbr,acronym {border:0;}
select:focus,textarea:focus,input[type="text"]:focus,input[type="password"]:focus,button:focus{
  outline: 0;
}
a:active, a:hover,a:focus,select:focus {outline: 0 none;}

*:focus {outline: 0;}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

/* common
---------------------------------------------------------*/

*,
:before,
:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  word-wrap: break-word;
  font-size: 16px;
  color: #222;
  font-family:-apple-system,"Microsoft JhengHei", 'Open Sans', Sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

html,
body {
  position: relative;
  height: 100%;
}

.container{
  width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.container:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

@media (max-width: 1140px) {

  .container{
    width: 100%;
  }

}

a{
  text-decoration: none;
  color: #222;
}

.txt-decoration{
  text-decoration: underline;
}

.txt-center{
  text-align: center;
}

.txt-left{
  text-align: left!important;
}

.txt-danger{
  color: #ff3f3f!important;
  font-weight: 400;
}

.txt-link{
  font-size: 0.9em;
  color: #4A8080;
  text-decoration: underline;
}

.txt-sm{
  font-size: 0.9em;
  color: rgb(0,0,0,0.8);
}

.mt-10{
  margin-top: 10px;
}

.mt-20{
  margin-top: 20px;
}

.mb-10{
  margin-bottom: 10px;
}

.mr-10{
  margin-right: 10px;
}

.ml-10{
  margin-left: 10px;
}

.ml-20{
  margin-left: 20px;
}

.mb-0{
  margin-bottom: 0!important;
}

.mg-b-20{
  margin-bottom: 20px;
}

.mg-b-40{
  margin-bottom: 40px;
}

.pd-t-0{
  padding-top: 0!important;
}


/* ------------------------------------------------------------------- 
 * header logo - (_site-layout.css) 
 * ------------------------------------------------------------------- */

.header-logo {
 
}

.header-logo a{
  display: block;
}

.header-logo a img {
  max-width: 220px;
  max-height: 65px;
  display: block;
}

@media (max-width: 1140px) {

  .header-logo a img{
    height: 50px;
  }

}

/* ===================================================================
 *  page-header
 * ------------------------------------------------------------------- */

.page-header {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
  position: fixed;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 100;
}

.page-header .container{
  width: 1140px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  height: 112px;
}

.page-header .container:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

@media (max-width: 1140px) {

  .page-header .container{
    width: 100%;
    padding:0px 20px;
    height: 80px;
  }

}


/* ------------------------------------------------------------------- 
 * menu trigger - (_site-layout.css) 
 * ------------------------------------------------------------------- */

.header-menu-toggle {
  display: none;
  position: absolute;
  right:10px;
  top: 20px;
  height: 42px;
  width: 42px;
  line-height: 42px;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}

.header-menu-toggle:hover,
.header-menu-toggle:focus {
  color: #FFFFFF;
}

.header-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin-top: -1px;
  position: absolute;
  left: 9px;
  top: 50%;
  right: auto;
  bottom: auto;
  background-color: #000;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
}

.header-menu-toggle span::before,
.header-menu-toggle span::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: inherit;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.header-menu-toggle span::before {
  top: -8px;
}

.header-menu-toggle span::after {
  bottom: -8px;
}

.header-menu-toggle.is-clicked span {
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.header-menu-toggle.is-clicked span::before,
.header-menu-toggle.is-clicked span::after {
  background-color: #000;
}

.header-menu-toggle.is-clicked span::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.header-menu-toggle.is-clicked span::after {
  bottom: 0;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}


/* ------------------------------------------------------------------- 
 * navigation - (_layout.scss) 
 * ------------------------------------------------------------------- */

.header-nav-wrap {
 padding-left: 40px;
}

.header-nav-wrap .header-main-nav {
  display: inline-block;
  list-style: none;
}

.header-nav-wrap .header-main-nav li {
  display: inline-block;
  font-size: 1.1em;
  letter-spacing: 1px;
}

.header-nav-wrap .header-main-nav li a {
  display: block;
  padding: 0px 15px;
  transition: 0.4s;
  position: relative;
}

.header-nav-wrap .header-main-nav li a,
.header-nav-wrap .header-main-nav li a:visited {
  color: #222;
}

.header-nav-wrap .header-main-nav li a:hover,
.header-nav-wrap .header-main-nav li a:focus {
  color: #000;
  background: #D8EDED;
  padding: 10px 15px;
  border-radius: 100px;
}

.header-nav-wrap .header-main-nav li.current a {
  color: #000;
  background: #D8EDED;
  padding: 8px 15px;
  border-radius: 100px;
}

.header-nav-wrap .header-main-nav li.cta {
  display: none;
}


/* ------------------------------------------------------------------- 
 * responsive:
 * header
 * ------------------------------------------------------------------- */

@media only screen and (max-width: 1230px) {
  .page-header {
    max-width: none;
  }
}

@media only screen and (max-width: 1100px) {
  .header-logo a {
    width: 88px;
    background-size: 88px 20px;
  }
  .header-nav-wrap {
    position: absolute;
    display: none;
    height: auto;
    width: 100%;
    right: auto;
    top: 0;
    left: 0;
    background-color: #D8EDED;
    padding: 20px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 0 15px 0 rgb(0,0,0,0.2);
  }
  .header-nav-wrap .header-main-nav {
    display: block;
    height: auto;
  }
  .header-nav-wrap .header-main-nav li {
    display: block;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }
  .header-nav-wrap .header-main-nav li a {
    padding: 10px 0;
  }
  .header-nav-wrap .header-main-nav li.current a{
    background: transparent;
  }

  .header-nav-wrap .header-main-nav li.cta {
    display: block;
  }
  .header-menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .header-menu-toggle {
    right: 10px;
  }
}


/* -------------------------------------------------------------------
 * make sure the menu is visible on larger screens
 * ------------------------------------------------------------------- */

@media only screen and (min-width: 1100px) {
  .header-nav-wrap {
    display: block !important;
  }
}


/* ------------------------------------------------------------------- 
 * top-nav
 * ------------------------------------------------------------------- */

.top-nav{
  position: absolute;
  right: 10px;
  top: 10px;
}

.top-nav li{
  list-style: none;
  display: inline-block;
  font-size: 1.2em;
}

.top-nav li a{
  color: #000;
  display: block;
  padding: 5px;
}

.top-nav li.icon-user{}

.top-nav li.icon-search{}

@media (max-width: 1100px) {

  .top-nav li{
    font-size: 1.3em;
    font-weight: 100;
  }

  .top-nav{
    top: 22px;
    right: 55px;
  }

  .top-nav li.icon-user{
    display: none;
  }

}

/* ------------------------------------------------------------------- 
 * search-btn
 * ------------------------------------------------------------------- */

#search-btn{
  color: #000;
  padding: 8px;
  cursor: pointer;
}

#search-overlay{
  display:none;
}

.block {
  position: fixed;
  top: 0;
  right: 0;
  bottom:0 ;
  left: 0;
  overflow: auto;
  text-align: center;
  background: rgba(68, 177, 177, 0.9);
  margin: 0;
  z-index: 3;
  z-index: 111;
}

.block:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: 0;
  /* Adjusts for spacing */
  /* For visualization 
  background: #808080; width: 5px;
  */
}

.centered {
  display: inline-block;
  vertical-align: middle;
  width: 80%;
  color: #FFF;
  border: none;
  background: transparent;
}

#search-box {
  position: relative;
  width: 100%;
  margin: 0;
}

.search-form {
  height: 45px;
  border-radius: 50px;
  background-color: #fff;
  overflow: hidden;
  line-height: 43px;
}

.search-text {
  color: #ddd;
  border-width: 0;
  background: transparent;
}

#search-box input[type="text"] {
  width: 100%;
  outline: none;
  border-width: 0;
  height: 45px;
  padding: 0 20px;
  font-size: 1.05em;
}

#close-btn{
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 3em;
  -webkit-transition:all .3s;
  -moz-transition:all .3s;
  -ms-transition:all .3s;
  transition:all .3s;
}

#close-btn:hover{
  color: rgba(255,255,255,0.8);
  cursor: pointer;
}


/* ------------------------------------------------------------------- 
 * index-slider-warp
 * ------------------------------------------------------------------- */

.index-slider-warp{
  width: 100%;
}

.owl-dots {
  position: absolute;
  bottom: 15px;
  width: 100%
}

.owl-theme .owl-dots .owl-dot span{
  width: 15px;
  height: 15px;
}

.owl-theme .owl-dots .owl-dot.active span{
  background: #29babc;
}

.owl-theme .owl-dots .owl-dot span{
  box-shadow: 0 0 3px 0 rgb(0,0,0,0.4);
}

/* ------------------------------------------------------------------- 
 * btn-more
 * ------------------------------------------------------------------- */

.btn-more-box{
  width: 100%;
  clear: both;
  text-align: right;
  padding-top: 40px;
}

.btn-more{
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
  position: relative;
  min-width: 150px;
  text-align: center;
  font-size: 0.95em;
  letter-spacing: 1px;
}

.btn-more:after{
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background: #000;
  position: absolute;
  right: 0;
  bottom: 0;
  transform-origin: right bottom;
  transform: rotate(-45deg)
}

.btn-more:hover{
  min-width: 170px;
  -webkit-transition:all .3s;
-moz-transition:all .3s;
-ms-transition:all .3s;
transition:all .3s;
}


/* ------------------------------------------------------------------- 
 * index-section index-themeA
 * ------------------------------------------------------------------- */

.index-section{
  padding: 80px 0 80px;
}

.index-themeA .section-thumb{
  width: 22%;
  float: left;
}

.index-themeA .section-thumb img{
  display: block;
  width: 100%
}

.index-themeA .section-content{
  margin-left: 22%;
  padding-left: 20px;
}

@media (max-width: 1140px) {

  .index-section img{
    max-width: 100%
  }

  .index-section .container{
    padding: 20px;
  }

  .index-section{
    padding: 50px 0 50px;
  }

  .index-themeB .container{
    padding: 50px;
  }

  .index-themeA .section-content{
    padding-left: 0;
  }

}


/* ------------------------------------------------------------------- 
 * section-header-1 section-header-2
 * ------------------------------------------------------------------- */

.index-section .section-header-1,.index-section .section-header-2{
  text-align: center;
  position: relative;
  margin-bottom: 70px;
}

.index-section .section-header-1 h2,.index-section .section-header-2 h2{
  font-size: 1.5em;
  color: #222;
  font-weight: normal;
  display: inline-block;
  line-height: 2; 
  padding-left: 20px;
  font-weight: 300;
  letter-spacing: 1px;
}

.index-section .section-header-1 h2{
  background: url(../img/section-header-1.png) no-repeat left 4px;
}

.index-section .section-header-2 h2{
  background: url(../img/section-header-2.png) no-repeat left 4px;
}

.index-section .section-header-1:after,.index-section .section-header-2:after{
  position: absolute;
  content: "";
  width: 40px;
  background: #000;
  height: 1px;
  bottom: -30px;
  right: 50%;
  margin-right: -20px;
}


.index-themeA .section-header-1{
  display: none;
}

@media (max-width: 900px) {

  .index-themeA .section-thumb{
    display: none;
  }

  .index-themeA .section-content{
    width: 100%;
    margin-left: 0;
  }

  .index-themeA .section-header-1{
    display: block;
  }

}


/* ------------------------------------------------------------------- 
 *  index-themeB
 * ------------------------------------------------------------------- */

.index-themeB,.index-section:nth-child(even){
  background: #EDF6F6;
}

.index-section:nth-child(4n){
  background: #f9f9f9;
}

.index-themeB .section-thumb{
  width: 30%;
  float: right;
}

.index-themeB .section-thumb img{
  width: 100%;
    display: block;
}

.index-themeB .section-content{
  width: 70%;
  float: left;
  padding-right: 20px;
}

.index-themeB .section-header{
  margin-bottom: 20px;
}

.index-themeB .section-header h2{
  font-size: 1.5em;
  color: #222;
  font-weight: 300;
  letter-spacing: 1px;
}

.index-themeB .entry-txt{
  line-height: 1.8;
  height: 90px;
  overflow: hidden;
}

.section-flex{
  display: flex;
  flex: 0 0 25%;
}

@media (max-width: 900px) {

  .index-themeB .section-thumb{
    width: 65%;
    float: none;
    margin: 0 auto 20px;
  }

  .index-themeB .section-header{
    margin-bottom: 10px;
    text-align: center;
  }

  .index-themeB .section-content{
    width: 100%;
    padding-right: 0;
    float: none;
  }

}


/* ------------------------------------------------------------------- 
 *  index-themeC
 * ------------------------------------------------------------------- */

.index-themeC{
  background: #f9f9f9;
}

.flex-col-4{
  display: flex;
  flex-wrap: wrap;
}

.flex-col-4 .list-post{
  flex: 0 0 25%;
  margin-bottom: 20px;
}

/* ------------------------------------------------------------------- 
 * list-avaster
 * ------------------------------------------------------------------- */

.flex-col-4 .list-avaster{
  flex: 0 0 25%;
}

.list-avaster-content:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.list-avaster{
  padding-left: 15px;
  padding-right: 15px;
}

.list-avaster .entry-thumb{
  width: 90%;
  margin: 0 auto 8px;
  position: relative;
}

.list-avaster .entry-thumb img{
  display: block;
  border-radius: 100%;
  width: 100%;
}

.list-avaster .entry-thumb img:hover{
  box-shadow: 0 0 0 6px #fbe7e0;
  -webkit-transition:all .3s;
  -moz-transition:all .3s;
  -ms-transition:all .3s;
  transition:all .3s;
}

.list-avaster .entry-name{
  font-size: 1.1em;
  text-align: center;
  height: 30px;
  overflow: hidden;
  font-weight: 300;
  letter-spacing: 1px;
}

.list-avaster .entry-name a{
  color: #000;
}

.list-avaster .entry-name:hover a{
  color: #289596;
  -webkit-transition:all .3s;
  -moz-transition:all .3s;
  -ms-transition:all .3s;
  transition:all .3s;
}

.list-avaster .entry-txt{
  font-size: 0.9em;
  height: 90px;
  overflow: hidden;
  line-height: 1.6;
  word-break: break-word;
}

@media (max-width: 900px) {

  .list-avaster-content{
    width: 100%;
    margin: 0 auto;
  }

  .list-avaster{
    padding-left: 15px;
    padding-right: 15px;
  }

  .flex-col-4 .list-avaster{
    flex: 0 0 50%;
    margin-bottom: 20px;
  }

  .list-avaster .entry-thumb{
    width: 60%;
    margin: 0 auto 10px;
  }

}


/* ------------------------------------------------------------------- 
 * badge-status
 * ------------------------------------------------------------------- */

.badge-status{
  font-size: 0.8em;
  color:#fff;
  background: #777;
  position: absolute;
  bottom: 0;
  left: 50%;
  padding: 1px 10px;
  margin-left: -23px;
  border-radius: 30px;
}

.badge-status.online{
  background: #0DA031
}

.badge-status.offline{
  background: #777;
}

/* ------------------------------------------------------------------- 
 *  good-points
 * ------------------------------------------------------------------- */

.good-points-wrap{

}

.good-points{
  position: relative;
  width: 25%;
  float: left;
  padding: 20px 15px 0;
  text-align: center;
}

.good-points:after{
  position: absolute;
  background: #fcf1e9;
  content:"";
  z-index: -1;
  width: 170px;
  height: 170px;
  left: 50%;
  top: 0;
  margin-left: -85px;
  border-radius: 200px;
}

.good-points h3{
  font-size: 1.1em;
  color: #222;
  letter-spacing: 1px;
  font-weight: normal;
}

.good-points .eng{
  font-size: 0.9em;
  letter-spacing: 1px;
  font-style: initial;
  padding:8px 0;
  color: #000;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.good-points .entry-txt{
  height: 70px;
  overflow: hidden;
  font-size: 0.9em;
  line-height: 1.6;
}

@media (max-width: 900px) {

  .good-points{
    width: 70%;
    float: none;
    margin: 0 auto 50px;
  }

  .good-points:last-child{
    margin: 0 auto 0;
  }

}

/* ------------------------------------------------------------------- 
 * list-post
 * ------------------------------------------------------------------- */

.list-post{
  padding-left: 10px;
  padding-right: 10px;
}

.list-post .entry-thumb{
  width: 100%;
  margin: 0 auto 8px;
}


.list-post .entry-thumb img:hover{
  opacity: 0.8;
  -webkit-transition:all .3s;
-moz-transition:all .3s;
-ms-transition:all .3s;
transition:all .3s;
}

.list-post .entry-thumb a{
  position: relative;
  height: 240px;
  overflow: hidden;
  display: block;
}

.list-post .entry-thumb img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.list-post .entry-title{
  font-size: 1em;
  line-height: 1.5;
  height: 50px;
  overflow: hidden;
  margin-bottom: 5px;
}

.list-post .entry-title:hover a{
  color: #555;
  -webkit-transition:all .3s;
  -moz-transition:all .3s;
  -ms-transition:all .3s;
  transition:all .3s;
}

.list-post .entry-txt{
  font-size: 0.9em;
  height: 45px;
  overflow: hidden;
  line-height: 1.6;
}


@media (max-width: 900px) {

  .flex-col-4 .list-post{
    flex: 0 0 50%;
  }

  .list-post .entry-title{
    font-size: 0.95em;
    height: 47px;
    margin-bottom: 0;
  }

  .list-post .entry-thumb a{
    height: 190px;
  } 

}

@media (max-width: 600px) {

  .list-post .entry-thumb a{
    height: 140px;
  }

}


/* ------------------------------------------------------------------- 
 * footer
 * ------------------------------------------------------------------- */

.page-footer{
  background: #EDF6F6;
  padding: 40px;
  margin-top: 100px;
}

.page-footer:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.footer-info{
  float: left;
}

.footer-info.w-1{
  width: 20%
}

.footer-info.w-2{
  width: 30%
}

.footer-info.w-r{
  float: right;
  width: 30%;
}

.footer-info h4{
  margin-bottom: 10px;
  color: #459090;
  letter-spacing: 1px;
}

.page-footer li{
  list-style: none;
  font-size: 0.85em;
  line-height: 1.7;
}

.page-footer li a{
  color: #459090;
  -webkit-transition:all .3s;
  -moz-transition:all .3s;
  -ms-transition:all .3s;
  transition:all .3s;
}

.page-footer li a:hover{
  color: #222;
}

.copyright-wrap{
  padding: 10px 0;
  font-size: 0.8em;
}

.copyright-right{
  float: right;
  text-align: right;
}

.copyright-left{
  float: left;
}

@media (max-width: 900px) {

  .page-footer{
    padding: 30px 20px;
  }

  .footer-info.w-1,.footer-info.w-2,.footer-info.w-r{
    width: 30%;
    
  }

}

@media (max-width: 768px) {

  .copyright-left,.copyright-right{
    float: none;
    text-align: center;
    line-height: 1.5;
  }

  .page-footer{
    padding: 30px 20px;
  }

  .footer-info.w-1,.footer-info.w-2,.footer-info.w-r{
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
  }

  .footer-info.w-r{
    margin-bottom: 0;
  }

}


/* ------------------------------------------------------------------- 
 * social-link
* ------------------------------------------------------------------- */

.social-link{
  text-align: center;
  width: 36px;
  height: 36px;
  line-height: 46px;
  display: inline-block;
  color: #fff;
  background: #71C1C1;
  border-radius: 50px;
  -webkit-transition:all .3s;
  -moz-transition:all .3s;
  -ms-transition:all .3s;
  transition:all .3s;
  margin-right: 5px;
  font-size: 1.5em;
  font-family: 'boxicons'!important;
  position: relative;
}

.social-link i{
  color: #fff;
  font-size: 1.5em;
}

.social-link:hover{
  background: #4EA8A8;
}

.social-link.social-facebook:before{
  content: "\e920";
  top: -4px;
  position: absolute;
  right:6px;
}

.social-link.social-youtube:before{
  content: "\e970";
  top: -4px;
  position: absolute;
  right:6px;
}


/* ------------------------------------------------------------------- 
 * toTop
 * ------------------------------------------------------------------- */

#toTop{
  position: fixed;
  background: #71C1C1;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 58px;
  bottom: 20px;
  right: 20px;
  border-radius: 45px;
  color: #fff;
  -webkit-transition:all .3s;
  -moz-transition:all .3s;
  -ms-transition:all .3s;
  transition:all .3s;
}

#toTop:hover{
  background: #2ba3a3;
}

#toTop i{
  font-size: 2em;
}


/* ------------------------------------------------------------------- 
 * sub-header
 * ------------------------------------------------------------------- */

  .mgtop{
    margin-top: 112px;
  }

.mgtop-1{
  margin-top: 150px
}

.sub-header-wrap{
  height: 180px;
  display: flex;
  align-items: center;
}

.sub-header-wrap.themes-1{
  background: url(../img/banner/sub-banner-1.jpg) no-repeat #bccad4;
  background-size: cover;
}

.sub-header-wrap.themes-2{
  background: url(../img/banner/sub-banner-2.jpg) no-repeat #bccad4;
  background-size: cover;
}

.sub-header-wrap h2{
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 100;
  font-size: 2em;
  color: #000;
  letter-spacing: 2px;
}

@media (max-width: 1140px) {

  .sub-header-wrap{
    height: 100px;
  }

  .mgtop{
    margin-top: 80px;
  }

  .mgtop-1{
    margin-top: 100px
  }

  .sub-header-wrap .container{
    padding-left: 20px; 
  }

  .sub-header-wrap h2{
    font-weight: 400;
    font-size: 1.4em;
  }

}

/* ------------------------------------------------------------------- 
 * erro-wrap
 * ------------------------------------------------------------------- */

 .erro-wrap{
  min-height: 300px;
 }

.erro-wrap .erro-icon{
  height: 180px;
  display: block;
  margin: 0 auto 20px;
}

.erro-wrap .erro-title{
  font-size: 1.8em;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.erro-wrap .erro-txt{
  text-align: center;
}

/* ------------------------------------------------------------------- 
 * breadcrumb
 * ------------------------------------------------------------------- */

.breadcrumb-wrap .container{
  padding: 0 20px;
}

ul.breadcrumb {
  padding: 20px 0;
  list-style: none;
  background: transparent;
  margin: 0;
}

ul.breadcrumb li {
  display: inline;
  font-size: 0.9em;
  color: #222;
}

ul.breadcrumb li+li:before {
  padding: 8px;
  color: #888;
  content: "/\00a0";
}

ul.breadcrumb li a {
  text-decoration: none;
  color: #888;
}

ul.breadcrumb li a:hover {
  color: #000;
  text-decoration: underline;
}


/* ------------------------------------------------------------------- 
 * list-avaster-main
 * ------------------------------------------------------------------- */

.list-avaster-main{
  display: flex;
  flex-wrap: wrap;
}

.list-avaster-main .single-item{
  flex:0 0 25%;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 20px;
}

.list-avaster .entry-meta{
  text-align: center;
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 400;
  margin-bottom: 6px;
  font-size: 0.95em;
}

.single-item .list-avaster{
  padding: 30px 20px;
  border-radius: 6px;
  border: 1px solid #E2E2E2;
}

.single-item .list-avaster .entry-thumb{
  width: 55%;
  margin: 0 auto 8px;
}

.single-item .list-avaster .entry-txt{
  height: 70px;
}

@media (max-width: 1000px) {

  .list-avaster-main .single-item{
    flex:0 0 33%;
  }

}

@media (max-width: 768px) {

  .list-avaster-main .single-item{
    flex:0 0 50%;
    padding: 0 8px;
  }

  .single-item .list-avaster{
    padding: 10px;
  }

}

/* ------------------------------------------------------------------- 
 * list main
 * ------------------------------------------------------------------- */

.list-post-main,.list-post-main{
  display: flex;
  flex-wrap: wrap;
}

.list-post-main .list-post{
  flex: 0 0 33%;
  margin-bottom: 20px;
}

@media (max-width: 800px) {

  .list-post-main .list-post{
    flex: 0 0 50%;
  }

}


/* ------------------------------------------------------------------- 
 * pagination
 * ------------------------------------------------------------------- */

 .pagination{
  width: 100%;
  padding-top: 40px;
 }

.pagination a {
  color: #53B5B5;
  float: left;
  padding: 8px 16px;
  transition: background-color .3s;
  border: 1px solid #53B5B5;
  background: #fff;
  margin: 0 4px;
  margin-bottom: 5px;
}

.pagination a.active {
  background-color: #53B5B5;
  color: white;
}

.pagination a:hover:not(.active) {
  background-color: #EDF6F6;
}

.pagination i{
  font-size: 1.1em;
}

.pagination .no-click{
  color: #53B5B5;
  float: left;
  background: #fff;
  display: inline-block;
  width: 50px;
  height: 39px;
  margin-bottom: 5px;
  font-weight: bold;
  text-align: center;
}


/* ------------------------------------------------------------------- 
 * page-content-section,page-sidebar-section
 * ------------------------------------------------------------------- */

.page-main .page-content-section{
  border-radius: 6px;
  border:1px solid #E2E2E2;
  padding: 20px;
  float: left;
  width: calc(100% - 390px)
}

.page-main .page-sidebar-section{
  float: right;
  width: 370px;
}

.sidebar-widget{
  border-radius: 6px;
  border:1px solid #E2E2E2;
  padding: 20px;
  margin-bottom: 20px;
}

.sidebar-widget:last-child{
  margin-bottom: 0;
}

.sidebar-widget.no-border{
  padding: 0;
  border: none;
}

.sidebar-widget .widget-title{
  background: #F6E9E0;
  padding:8px 0;
  text-align: center;
  font-size: 1em;
  border-radius: 20px;
  margin-bottom: 25px;
}

@media (max-width: 900px) {

  .page-main .page-content-section{
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }

  .page-main .page-sidebar-section{
    float: none;
    width: 100%;
  }

}


/* ------------------------------------------------------------------- 
 * article-main
 * ------------------------------------------------------------------- */

.article-main{}

.article-main .article-featured-media img{
  width: 100%;
  display: block;
  margin-bottom: 25px;
}

.article-date{
  font-size: 0.85em;
  color: #888;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.article-title{
  font-size: 1.3em;
  color: #111;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.article-meta{
  display: flex;
  justify-content: space-between;
  align-items:center;
  margin-bottom: 30px;
}

.article-writer i{
  margin-right: 10px;
  font-size: 1.5em;
  display: inline-block;
  vertical-align: middle;
}

.article-writer a{
  text-decoration: underline;
  color: #4A8080;
  display: inline-block;
}

.article-meta.writer-lg{
  border-bottom: 1px solid #E2E2E2;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.article-meta.writer-lg .article-writer{
  font-size: 1.4em;
}

.article-writer.writer-lg i{
  font-size: 1.3em;
}

.social-post .fb_iframe_widget{
  vertical-align: top;
}

.social-post iframe{
  vertical-align: middle;
}

@media (max-width: 800px) {

  .article-meta{
    display: block;
  }

  .article-writer{
    margin-bottom: 10px;
  }

}

/* ------------------------------------------------------------------- 
 * article-widget
 * ------------------------------------------------------------------- */

.article-widget{
  margin-bottom: 30px;
}

.article-widget .widget-title{
  margin-bottom: 10px;
  display: flex;
}

.article-widget .widget-title h2{
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 100;
  font-size: 1.2em;
  letter-spacing: 1px;
  color: #000;
}

.article-widget .widget-title i{
  color: #71C1C1;
}

.article-widget .widget-body{
  line-height: 1.7;
  color: #222;
  margin-bottom: 30px;
}

.article-widget .widget-body img{
  width: 100%;
}


.article-widget .widget-body ul,.article-widget .widget-body ol{
  margin-left: 20px;
}

.article-widget:last-child{
  margin-bottom: 0;
}


/* ------------------------------------------------------------------- 
 * expert-meta
 * ------------------------------------------------------------------- */

.expert-meta-box{
  margin-bottom: 15px;
}

.expert-meta-box .entry-item{
  display: flex;
  margin-bottom: 15px;
  line-height: 1.5;
}

.expert-meta-box .entry-item:last-child{
  margin-bottom: 0;
}

.expert-meta-box .entry-label{
  color: #888;
  font-size: 1.1em;
  font-family: 'Noto Sans TC', sans-serif
}

.expert-meta-box .entry-label i{
  color: #71C1C1;
  margin-right: 3px;
  font-size: 1.1em;
}

.expert-meta-box p{
  color: #111;
  font-size: 1.05em;
}

.expert-meta-box span{
  font-size: 0.8em;
  color: #d2d2d2;
  padding: 4px 0 ;
}

.entry-item.no-flex {
  display: block;
}

.entry-item.no-flex .entry-label{
  display: block;
  margin-bottom: 3px;
}

.entry-item.no-flex p{
  padding-left: 20px;
}


/* ------------------------------------------------------------------- 
 * article-content
 * ------------------------------------------------------------------- */

.article-content{
  line-height: 1.7;
  color: #222;
  margin-bottom: 30px;
}

.article-content a{
  text-decoration: underline;
  color: #4A8080;
}

.article-content ul,.article-content ol{
  margin-left:20px;
}

.article-content img{
  max-width:100%;
  height: auto!important;
  display: block;
}

.article-tag li{
  list-style: none;
  float: left;
  margin-right: 5px;
  margin-bottom: 5px;
}

.article-tag:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
  margin-bottom: 30px;
}

.article-tag li a{
  background: #71C1C1;
  color: #fff;
  padding: 6px 15px;
  display: block;
  font-size: 0.9em;
  border-radius: 20px;
  -webkit-transition:all .3s;
  -moz-transition:all .3s;
  -ms-transition:all .3s;
  transition:all .3s;
}

.article-tag li a:hover{
  background: #55b5b5;
}

.article-tag li a:last-child{
  margin-right: 0;
}

.article-tag.ctg a{
  background: #EDF6F6;
  color: #459090;
}

.article-tag.ctg a:hover{
  color: #fff;
}

.article-tag.ctg li a.active{
  background: #44B1B1;
  color: #fff;
}

@media (max-width: 1000px) {

  .article-content img{
    width:100%;
  }

}

/* ------------------------------------------------------------------- 
 * video-wrap
 * ------------------------------------------------------------------- */

.video-wrap{
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.video-wrap iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* ------------------------------------------------------------------- 
 * thumbnail-post
 * ------------------------------------------------------------------- */

.thumbnail-post li{
  list-style: none;
  margin-bottom: 20px;
}

.thumbnail-post li:last-child{
  margin-bottom: 0;
}

.thumbnail-post a{
  display: table;
  clear: both;
}

.thumbnail-post .thumbnail{
  width: 125px;
  float: left;
}

.thumbnail-post .thumbnail img{
  width: 100%;
  display: block;
}

.thumbnail-post .post-content{
  display: table-cell;
  vertical-align:top;
  width: 100%;
  padding-left: 10px;
  line-height: 1.6;
}

.thumbnail-post h3{
  font-size: 0.9em;
  font-weight: normal;
}

.sidebar-widget .thumbnail-post h3{
  height: 90px;
  overflow: hidden;
}


/* ------------------------------------------------------------------- 
 * btn
 * ------------------------------------------------------------------- */

.btn{
  background: #32c1ce;
  color: #fff;
  text-align: center;
  cursor: pointer;
  border-radius: 6px;
  padding: 8px 20px;
  outline: 0;
  border: 0;
  -webkit-transition:all .3s;
  -moz-transition:all .3s;
  -ms-transition:all .3s;
  transition:all .3s;
  display: inline-block;
}

.btn-lg{
  padding: 10px 10px;
  font-size: 1.1em;
}

.btn-sm{
  padding: 3px 10px;
  font-size: 0.85em;
}

.btn-block{
  display: block;
  width: 100%;
}

.btn-block + .btn-block{
  margin-top: 10px;
}

.btn-primary{
  background: #F06A16;
}

.btn:hover{
  background: #20b1bf;
}

.btn i{
  font-size: 1.4em;
  vertical-align: sub;
}

.btn-primary:hover{
  background: #d65606;
}

.btn-secondary{
  background: #8acaca;
}

.btn-disabled{
  background: #dedede!important;
  color: #aeaeae;
  cursor: not-allowed;
}

.btn-danger{
  background: #ff3f3f;
}

.btn-danger:hover{
  background: #c82222;
}

.btn-disable:hover{
  background: #dedede!important;
  color: #aeaeae;
  cursor: not-allowed;
}

.btn-box{
  width: 100%;
  padding-top: 30px;
  text-align: center;
}

.btn-box:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}


/* ------------------------------------------------------------------- 
 * expert-section
 * ------------------------------------------------------------------- */

.expert-section{
  padding: 30px 0;
  background: url(../img/banner/expert-banner-1.jpg) no-repeat #7d603f;
  background-size: cover;
}

.expert-section .expert-content{
  text-align: center;
  width: auto;
  margin: 0 auto;
}

.expert-section .avatar{
  width: 140px;
  margin: 0 auto 10px;
  position: relative;
}

.expert-section .avatar .badge-status{
  bottom: -5px;
}

.expert-section .avatar img{
  width: 100%;
  display: block;
  border-radius: 200px;
  box-shadow:0 0 0 5px rgb(0,0,0,0.2);
}

.expert-section h2{
  font-size: 1.2em;
  font-weight: normal;
  color: #fff;
  letter-spacing: 1px;
  display: inline-block;
}

.expert-section cite{
  color: #fff;
  letter-spacing:1px;
}

.expert-section .btn-box{
  padding-top: 10px;
}

/* ------------------------------------------------------------------- 
 * calendar
 * ------------------------------------------------------------------- */

.cart-widget .calendar-box{
  padding: 10px;
  border: 1px solid #E2E2E2;
  border-radius: 8px;
}

.calendar-box li{
  list-style: none;
  list-style-type: none;
}

.month {
  padding: 15px 10px;
  width: 100%;
  text-align: center;
  line-height: 1.5em;
}

.month ul {
  margin: 0;
  padding: 0;
}

.month ul li {
  color: #273646;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.month .prev i,.month .next i{
  font-size: 1.5em;
  cursor: pointer;
  vertical-align: sub;
}

.month .prev {
  float: left;
}

.month .next {
  float: right;
}

.weekdays {
  margin: 0;
  padding: 10px 0;
  display: flex;
}

.weekdays li {
  flex: 1;
  color: #666;
  text-align: center;
  font-size: 0.8em;
}

.days {
  padding: 10px 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.days li {
  list-style-type: none;
  flex: 0 0 14.28%;
  text-align: center;
  padding: 14px 0;
  color: rgb(0,0,0,0.5);
  font-family: 'Roboto', sans-serif;
  font-size: 0.8em;
  margin-bottom: 3px;
}

.days li.bookable{
  color: #000;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition:all .3s;
  -moz-transition:all .3s;
  -ms-transition:all .3s;
  transition:all .3s;
}

.days li.bookable:hover{
  color: #F06A16;
}

.days li.booking{
  background: #F06A16;
  color: #fff;
  border-radius: 50px;
}

.days li.booking:hover{
  background: #f48138;
  color: #fff;
}

.days li.active {
  color: #F06A16;
  background: #F6E9E0;
  border-radius: 50px;
}

/* ------------------------------------------------------------------- 
 * page-main-secton
 * ------------------------------------------------------------------- */

.page-main-secton{
  border: 1px solid #E2E2E2;
  border-radius: 6px;
  padding: 40px 30px;
  background: #fff;
}

.page-main-secton .entry-info{
  line-height:2;
}

.page-main-secton:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.section-title{
  margin-bottom: 20px;
}

.section-title h3{
  font-size: 1.2em;
  color:#44B1B1;
  padding-left: 10px;
}

.section-title i{
  font-size: 1.4em;
  vertical-align: bottom;
  margin-right: 5px;
}

@media (max-width: 768px) {

  .page-main-secton{
    border: 1px solid #E2E2E2;
    border-radius: 6px;
    padding: 20px 15px;
  }

}



/* ------------------------------------------------------------------- 
 * faq
 * ------------------------------------------------------------------- */

.anchor{
  display: block;
  height: 120px;
  margin-top: -120px;
  visibility: hidden;
 }

 .accordion-section{
  margin-bottom: 30px;
 }

.accordion {
  margin: 0 auto 0;
  padding: 0 10px;
}
.accordion li {
  border-bottom: 1px solid #E2E2E2;
  position: relative;
  list-style: none;
  padding: 10px 0;
}

.accordion li:last-child{
  border-bottom: none;
}

.accordion li p {
  display: none;
  color: #517f82;
}
.accordion a {
  width: 100%;
  display: block;
  cursor: pointer;
  font-weight: 600;
  line-height: 1.6;
  user-select: none;
  padding-right: 20px;
  -webkit-transition:all .3s;
  -moz-transition:all .3s;
  -ms-transition:all .3s;
  transition:all .3s;
}
.accordion a:after {
  width: 8px;
  height: 8px;
  border-right: 1px solid #4a6e78;
  border-bottom: 1px solid #4a6e78;
  position: absolute;
  right: 10px;
  content: " ";
  top: 17px;
  transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.accordion p {
  line-height: 1.8;
  padding: 10px;
}

.accordion a.active:after {
  transform: rotate(45deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 900px) {

  .anchor{
    display: block;
    height: 95px;
    margin-top: -95px;
    visibility: hidden;
  }

}



/* ------------------------------------------------------------------- 
 * list-txt
 * ------------------------------------------------------------------- */

.list-txt li{
  list-style: none;
  border-bottom: 1px solid #E2E2E2; 
  padding: 15px 0;
}

.list-txt li:last-child{
  border-bottom:none; 
}

.list-txt li:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.list-txt .entry-title{
  float: left;
  width: calc(100% - 160px);
  font-size: 1em;
  font-weight: normal;
  -webkit-transition:all .3s;
  -moz-transition:all .3s;
  -ms-transition:all .3s;
  transition:all .3s;
}

.list-txt .entry-title:hover{
  color: #53B5B5;
}

.list-txt .entry-time{
  width: 150px;
  float: right;
  text-align: right;
  font-size: 0.9em;
  font-family: 'Roboto', sans-serif;
}

/* ------------------------------------------------------------------- 
 * iframe-panel
 * ------------------------------------------------------------------- */

.iframe-panel{

}

.iframe-panel .panel-header{
  padding: 20px;
  border-bottom:1px solid #E2E2E2;
}

.iframe-panel .panel-header h2{
  color: #222;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 1.4em;
  letter-spacing: 1px;
}

.iframe-panel .entry-time{
  font-size: 0.9em;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 15px;
}

.iframe-panel .panel-body{
  padding: 20px ;
  line-height: 1.7;
  color: #222;
  font-size: 0.95em;
}

.iframe-panel .panel-body a{
  text-decoration: underline;
  color: #4A8080;
}

/* ------------------------------------------------------------------- 
 * page-single
 * ------------------------------------------------------------------- */

.page-single,.page-single-1{
  min-height: 100vh;
    display: flex;
  justify-content: center;
  align-items: center;
  
}

.page-single{
  background: url(../img/login-bg.jpg) no-repeat #EDF6F6;
  background-size: cover;
  padding: 40px 0;
}

.page-single-1{
  background:#EDF6F6; 
}

.single-wrap{
  width: 450px;
}

.single-wrap-1{
  width: 600px;
  margin: 0 auto;
}

.single-wrap-1{
  width: 900px;
}

.single-wrap-logo img{
  max-width: 250px;
  margin: 0 auto 30px;
  display: block;
  max-height:60px;
}

.page-single-footer{
  padding: 30px 15px 0;
  text-align: center;
}

.page-single-footer img.footer-logo {
  height: 40px;
  display: inline-block;
}

.page-single-footer p{
  font-size: 0.8em;
}

.page-single-footer a{
  text-decoration: underline;
}

@media (max-width: 1000px) {

  .single-wrap-1{
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

}

@media (max-width: 1000px) {

  .single-wrap-1{
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

}

@media (max-width: 768px) {

  .single-wrap{
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

}

/* ------------------------------------------------------------------- 
 * card
 * ------------------------------------------------------------------- */

.card{
  background:#fff;
  padding: 50px 30px;
  border-radius:10px;
  box-shadow: 0 0 8px 0 rgb(0,0,0,0.2);
}

.card:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.card-title{
  text-align: center;
  color: #222;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 1.8em;
  letter-spacing: 2px;
  font-weight: 100;
  margin-bottom: 30px;
}

.card-logo{
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

.card-logo img{
  max-width: 250px;
  max-height:40px;
}

.card-logo span{
  display: block;
  text-align: center;
  font-size: 2em;
  color: #e2e2e2;
  display: block;
}

@media (max-width: 768px) {

  .card{
    padding: 30px 15px;
  }

}

/* ------------------------------------------------------------------- 
 * form
 * ------------------------------------------------------------------- */

 input[type=date]{
  font-size: 1.1em;
  font-family: 'Roboto', sans-serif;
 }

.form-control{
  display: block;
  padding: 12px 10px;
  background: #fff;
  color: #444;
  border-radius: 6px;
  border: 1px solid #ced4da;
  width: 100%;
  line-height: initial;
  -webkit-transition:all .3s;
  -moz-transition:all .3s;
  -ms-transition:all .3s;
  transition:all .3s;
}

textarea.form-control{
  height: auto;
  min-height: 80px;
}

.label-setting a{
  color: #4A8080;
  text-decoration: underline;
}

.form-control:focus{
  border: 1px solid #44B1B1;
  box-shadow: 0 0 0 3px rgb(68,177,177,0.3);
}

.form-group{
  margin-bottom: 20px;
}

.form-group:last-child{
  margin-bottom: 0;
}

.form-label{
  font-size: 0.9em;
  letter-spacing: 1px;
  margin-bottom: 5px;
  display: block;
}

.form-group-flex{
  display: flex;
  align-items: center;
}

.form-group-flex .form-label{
  margin-right: 10px;
  width: 80px;
}

.form-control.w-auto{
  width: auto!important;
}

.request{
  color: #ff5c75;
  font-size: 1.1em;
}

.form-control.w-sm{
  width: 31.95%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1%
}

.input-group-addon{
  background: #edf0f2;
  width: 41px;
  height: 41px;
  text-align: center;
  line-height: 40px;
  margin: 0 5px;
}


.form-control.w-3{
  flex: 0 0 30%;
}

.form-control.w-7{
  flex: 0 0 67%;
}

.form-control.w-auto{
  width: auto;;
}

.form-control.w-sm:nth-child(3){
  margin-right: 0;
}

.form-control.w-sm:last-child{
  margin-right: 0;
}

.invalid-feedback-box{
  text-align: center;
  padding-top: 20px;
}

.invalid-feedback-box ul li{
  list-style: none;
  text-align: center;
  padding: 3px 0;
  color:#D34242;
  font-size: 0.85em;
}

.invalid-feedback{
  font-size: 0.85em;
  color:#D34242;
}

.invalid-feedback i{
  font-size: 1.2em;
  vertical-align: middle;
  margin-right: 4px;
}

.form-flex{
  display: flex;
  justify-content: space-around;
}

.btn-order-search{
  margin-left: 10px;
}

.form-main:after,.form-field:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.form-main .form-main-title{

}

input[type="text"]:disabled {
  background: #dddddd;
}

@media (max-width: 768px) {

  .form-group-flex{
    display: block;
  }

  .btn-order-search{
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }

}

/* ------------------------------------------------------------------- 
 * Checkboxes
 * ------------------------------------------------------------------- */

label.label-setting {
  color: #495057;
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 25px !important;
  vertical-align: middle;
  margin-right:20px;
  margin-bottom: 5px;
}

input[type="radio"], input[type="checkbox"] {
 display: none;
}

input[type="checkbox"]:optional + label.label-setting:before {
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
}

label.label-setting:before {
  background-color: #fff;
  border: 1px solid #cdcfd1;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  bottom: 0px;
  content: "";
  display: inline-block;
  height: 20px;
  left: 0px;
  margin-right: 15px;
  position: absolute;
  width: 20px;
}

input[type="radio"]:checked + label.label-setting:before {
  background: #43a8eb;
  border: 1px solid #43a8eb;
  content: "";
  border-radius: 80px;
  box-shadow:inset 0px 0px 0px 3px #ffffff;
}

input[type="checkbox"]:checked + label.label-setting:before {
  background: #43a8eb;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  font-family: 'boxicons'!important;
  content: "\ea0f";
  text-align: center;
  color: #fff;
  border: 1px solid #43a8eb;
  line-height: 18px;
  font-size: 1.2em;
}

input[type="radio"]:checked + label.label-setting:before, label.label-setting:before {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}


/* ------------------------------------------------------------------- 
 * col-3
 * ------------------------------------------------------------------- */

.form-field .col-flex{
  display: flex;
  align-items: center;
}

.col-flex .flex-col-3{
  flex: 0 0 33.33%;
  padding: 0 5px;
}

.col-flex .flex-col-2{
  flex: 0 0 50%;
  padding: 0 5px;
}

.col-flex .flex-col-3:first-child,.col-flex .flex-col-2:first-child{
  padding: 0;
  padding-right: 5px;
}

.col-flex .flex-col-3:last-child,.col-flex .flex-col-2:last-child{
  padding-right: 0px;
}

.col-fliud .btn-box{
  text-align: left;
  padding-top: 0;
}

@media (max-width: 768px) {

  .col-flex.col-fliud{
    display: block;
  }

  .col-flex.col-fliud .flex-col-3{
    width: 100%;
  }

  .col-flex.col-fliud .flex-col-3 + .flex-col-3{
    margin-top: 10px;
    padding: 0;
  }

  .col-fliud .btn-box{
    padding-top: 5px;
  }

}


/* ------------------------------------------------------------------- 
 * single-wrap
 * ------------------------------------------------------------------- */

.single-wrap .txt-center{
  padding: 30px 0 0;
}

.single-wrap .msg-box{
  margin-bottom: 30px;
  font-size: 0.9em;
  text-align: center;
}

.single-wrap .btn-box{
  padding-top: 30px;
}

.single-wrap .sp{
  font-size: 0.85em;
  color: #d3d3d5;
  padding: 0 10px;
  vertical-align: top;
}

/* ------------------------------------------------------------------- 
 * msg-box
 * ------------------------------------------------------------------- */

.bg-success{
  background: #ebf6f0!important;
}

.bg-danger{
  background: #feeeef!important;
}

.bg-default{
  background: #edf6f8!important;
}

.msg-box{
  font-size: 0.9em;
  padding: 20px 15px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 20px;
  color: #222;
}

.msg-box.msg-sm{
  padding: 10px;
  margin-bottom: 20px;
}

.msg-box p{
  line-height: 1.6;
}

.msg-box .msg-title{
  font-size: 1.4em;
  margin-bottom: 10px;
}

.bg-success .msg-title{
  color: #248e59;
}

.bg-danger .msg-title{
  color: #ff323a;
}


/* ------------------------------------------------------------------- 
 * sns-btn
 * ------------------------------------------------------------------- */

.sns-btn-box{
  text-align: center;
  margin-bottom: 20px;
}

.sns-btn{
  border-radius: 40px;
  color: #fff;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  border: 0;
  font-size: 1em;
  width: 49%;
  display: inline-block;
  -webkit-transition:all .3s;
  -moz-transition:all .3s;
  -ms-transition:all .3s;
  transition:all .3s;
}

.sns-btn i{
  font-size: 1.4em;
  margin-right: 4px;
  vertical-align: bottom;

}

.sns-btn.btn-fb{
  background: #4267B2;
}

.sns-btn.btn-fb:hover{
  background: #224ca0;
}

.sns-btn.btn-google{
  background: #EB4335;
}

.sns-btn.btn-line{
  background: #00B900;
}

.sns-btn.btn-google:hover{
  background: #d22213;
}

.sns-btn img{
  height: 23px;
  display: inline-block;
  vertical-align: bottom;
  margin-right: 8px;
}


@media (max-width: 768px) {

  .sns-btn{
    width: 100%;
    margin-bottom: 10px;
  }

}

/* ------------------------------------------------------------------- 
 * progressbar
 * ------------------------------------------------------------------- */

.progressbar-wrapper {
  background: #fff;
  padding-top: 10px;
  padding-bottom: 5px;
  margin-bottom: 50px;
  font-size: 0.9em;
}

.progressbar{
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.progressbar:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.progressbar li {
  list-style-type: none;
  width: 25%;
  float: left;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}

.progressbar.setp3 li{
  width: 33%;
}

.progressbar li:before {
  font-family: 'boxicons'!important;
  width: 60px;
  height: 60px;
  content: "\ea0f";
  line-height: 60px;
  display: block;
  text-align: center;
  margin: 0 auto 3px auto;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  background-color:#D0D0D0;
  color: #fff;
  font-size: 2em;
}

.progressbar li:after {
  width: 100%;
  height: 9px;
  content: '';
  position: absolute;
  background-color:#D0D0D0;
  top: 30px;
  left: -50%;
  z-index: 0;
}

.progressbar li:first-child:after {
  content: none;
}

.progressbar li.active {
  color:#6BBF82;
  font-weight: bold;
}

.progressbar li.active:before {
  background:#6BBF82;
}

.progressbar li.active+li:after {
  background-color: #55b776;
}

.progressbar-2 li.active:before {
  background: #55b776 url(user.svg) no-repeat center center;
  background-size: 60%;
}

.progressbar-2 li::before {
  background: #fff url(user.svg) no-repeat center center;
  background-size: 60%;
}


@media (max-width: 600px) {

  .progressbar li{
    font-size: 0.9em;
    padding: 0 5px;
  }

  .progressbar li:before{
    width: 50px;
    height: 50px;
    line-height: 50px;
  }

  .progressbar li:after{
    top: 20px;
  }

}


/* ------------------------------------------------------------------- 
 * cart-widget
 * ------------------------------------------------------------------- */

.cart-widget{
  margin-bottom: 30px;
}

.cart-widget hr{
  border-top: 1px solid #d2d2d2;
  margin: 15px 0;
}

.cart-widget .widget-title i{
  font-size: 1.2em;
  color: #e0e0e0;
  vertical-align: sub;
  margin-right: 5px;
}

.cart-widget .widget-title{
  margin-bottom: 10px;
}

.cart-widget .widget-title h4{
  color: #222;
}

.cart-item{
  background: #F2F2F2;
  padding: 15px 20px;
  border-radius: 6px;
  position: relative;
}

.cart-item .icon-calendar{
  position: absolute;
  right: 35px;
  top: 25px;
  font-size: 1.8em;
  cursor: pointer;
}

.cart-list-meta li{
  list-style: none;
  margin-bottom: 10px;
  color: #222;
}

.cart-list-meta li:last-child{
  margin-bottom: 0;
}


/* ------------------------------------------------------------------- 
 * chosen-item
 * ------------------------------------------------------------------- */

.time-item-box{}

.time-item-box .time-item{
  display: inline-block;
  background: #fff;
  padding: 8px 15px;
  color: #000;
  margin: 0 3px;
  cursor: pointer;
  box-shadow:inset 0 0 0 2px rgb(0,0,0,0.2);
  border-radius: 6px;
  -webkit-transition:all .3s;
  -moz-transition:all .3s;
  -ms-transition:all .3s;
  transition:all .3s;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 5px;
}

.time-item-box .time-item.disabled{
  background: #E5E5E5;
  color: #555;
  cursor: not-allowed;
}

.time-item-box .chosen,.time-item-box .time-item:hover{
  background: #F06A16;
  color: #fff;
}

.time-item-box .time-item.disabled:hover{
  background: #E5E5E5;
  color: #555;
  cursor: not-allowed;
}


/* ------------------------------------------------------------------- 
 * service-item
 * ------------------------------------------------------------------- */

.price{
  color: #A71313;
  font-family: 'Roboto', sans-serif;
}

.service-item{
  background: #fdf3ed;
  padding: 12px 20px;
  color: #222;
  border-radius: 8px;
  box-shadow:inset 0 0 0 2px rgb(0,0,0,0.15);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  -webkit-transition:all .3s;
  -moz-transition:all .3s;
  -ms-transition:all .3s;
  transition:all .3s;
}

.service-item .entry-title{
  flex: 0 0 80%;
}

.service-item .entry-meta{
  flex: 0 0 20%;
  text-align: right;
}

.service-item:last-child{
  margin-bottom: 0;
}

.service-item:hover{
  background: #F06A16;
  color: #fff;
}

.service-item:hover .price,.service-item.chosen .price{
  color: #fff;
}

.service-item .price{
  font-weight: 400;
  font-size: 1.05em;
}

.service-item.chosen{
  background: #F06A16;
  color: #fff;
}

@media (max-width: 768px) {

  .service-item{
    display: block;
  }

  .service-item .entry-meta{
    text-align: left;
    font-size: 0.9em;
  }

}

/* ------------------------------------------------------------------- 
 * service-item-big
 * ------------------------------------------------------------------- */

.service-item-big{
  background: #F9F9F9;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-item-big:last-child{
  margin-bottom: 0;
}

.service-item-big .entry-header{
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.service-item-big .entry-header h3{
  color: #000;
  font-size: 1.1em;
  flex: 0 0 75%;
}

.service-item-big .price{
  font-weight: 400;
  font-size: 1.1em;
  flex: 0 0 25%;
}

.service-item-big .entry-content{
  display: flex;
  justify-content: space-between;
}

.service-item-big .entry-btn{
  margin-top: 4px;
  width: 90px;
  height: 65px;
  display: block;
  background: #44B1B1;
  color: #fff;
  border:0;
  border-radius: 6px;
  line-height: 65px;
  text-align: center;
  -webkit-transition:all .3s;
  -moz-transition:all .3s;
  -ms-transition:all .3s;
  transition:all .3s;
}

.service-item-big .entry-btn:hover{
  background: #2ba3a3;
  box-shadow: 0 0 0 3px rgb(0,0,0,0.15);
}

.service-item-big .entry-txt{
  width: calc(100% - 110px);
  font-size: 0.9em;
  line-height: 1.6;
}


@media (max-width: 768px) {

  .service-item-big .entry-header{
    display: block;
  }

  .service-item-big .entry-content{
    display: block;
  }

  .service-item-big .entry-txt{
    width: 100%;
  }

  .service-item-big .entry-btn{
    width: 100%;
    height: auto;
    padding: 8px 0;
    line-height:1.5;
  }

}


/* ------------------------------------------------------------------- 
 * pay-item
 * ------------------------------------------------------------------- */

.pay-item{
  background: #F8EBE2;
  padding: 12px 20px;
  color: #222;
  display: block;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 10px;
  -webkit-transition:all .3s;
  -moz-transition:all .3s;
  -ms-transition:all .3s;
  transition:all .3s;
}

.pay-item small{
  font-size: 0.85em;
  padding-left: 5px;
}

.pay-item:hover,.pay-item.chosen{
  background: #F06A16;
  color: #fff;
  box-shadow:inset 0 0 0 2px rgb(0,0,0,0.2);
}


/* ------------------------------------------------------------------- 
 * payment-detail-wrap
 * ------------------------------------------------------------------- */

.payment-detail-item{
  display: flex;
  justify-content:flex-end;
  padding: 5px;
}

.payment-detail-item .entry-label{
  color: #777;
}

.payment-detail-item .entry-value{
  color: #000;
  min-width: 200px;
  text-align: right;
  font-family: 'Roboto', sans-serif;
}

.payment-detail-item .price{
  color: #A71313;
  font-weight: 400;
  font-size: 1.4em;
}


/* ------------------------------------------------------------------- 
 * account-profile-wrap
 * ------------------------------------------------------------------- */

.account-profile-item{
  padding: 6px 0;
  display: flex;
}

.account-profile-item .entry-label{
  min-width: 100px;
  text-align: right;
  color: #7E7E7E;
}

.account-profile-item .entry-data{
  padding-left: 20px;
  color: #222;
}

.account-profile-item small{
  color: #888;
}


/* ------------------------------------------------------------------- 
 * list-post-1
 * ------------------------------------------------------------------- */

.list-post-1{
  margin-bottom: 15px;
  border-bottom: 1px solid #E2E2E2;
  padding-bottom: 15px;
}

.list-post-1:last-child{
  margin-bottom: 0;
  border-bottom: 0;
}

.list-post-1:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.list-post-1 .entry-thumb{
  width: 350px;
  float: left;
}

.list-post-1 .entry-thumb img{
  display: block;
  width: 100%;
}

.list-post-1 .entry-content{
  width: calc(100% - 370px);
  float: right;
}

.list-post-1 .entry-title{
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #222;
}

.list-post-1 .entry-txt{
  line-height: 1.6;
}

@media (max-width: 768px) {

  .list-post-1{
    width: 90%;
    margin: 0 auto 20px;
  }

  .list-post-1 .entry-thumb{
    margin-bottom: 10px;
  }

  .list-post-1 .entry-thumb,.list-post-1 .entry-content{
    width: 100%;
    float: none;
  }

}

/* ms-navbar
---------------------------------------------------------*/

/* ============ only desktop view ============ */
@media all and (min-width: 992px) {
  .ms-navbar .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .ms-navbar .navbar .nav-item:hover .nav-link {
    color: #fff;
  }

  .ms-navbar .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .ms-navbar .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .ms-navbar .navbar .nav-item:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
} 
/* ============ desktop view .end// ============ */

.ms-navbar .navbar-brand{
  font-weight: bold;
  font-size: 1em;
}

.ms-navbar .navbar{
  padding: 8px 15px;
  margin-bottom: 30px;
}

.ms-navbar .bg-primary{
  background: #44B1B1;
  border-radius: 8px;
}

.ms-navbar .navbar-toggler{
  padding: 3px;
}

/* ------------------------------------------------------------------- 
 * border-section
 * ------------------------------------------------------------------- */

.border-section{
  padding: 20px;
  border: 1px solid #E2E2E2;
  border-radius: 6px;
}

/* ------------------------------------------------------------------- 
 * sidebar-nav
 * ------------------------------------------------------------------- */

@media (min-width: 992px) {

  .sidebar-nav .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: static;
  }

  .sidebar-nav .nav-link{
    padding: 0;
  }

  .sidebar-nav .navbar li a {
    padding: 8px;
  }

  .sidebar-nav .navbar{
    padding: 0;
  }

  .sidebar-nav .navbar-light .navbar-nav .nav-link{
    color: rgba(0, 0, 0, 0.7);
  }

  .sidebar-nav .navbar-nav .nav-link.active{
    font-weight: bold;
    color: rgba(0, 0, 0, 1);
  }

  
}

 @media (min-width: 768px) {
  .sidebar-nav .navbar .navbar-collapse {
    padding: 0;
    max-height: none;
  }
  .sidebar-nav .navbar ul {
    float: none;
    display: block;
  }
  .sidebar-nav .navbar li {
    float: none;
    display: block;
  }

}

/* ------------------------------------------------------------------- 
 * page-main-1 會員中心
 * ------------------------------------------------------------------- */

.page-main-1 .page-content-section{
  border-radius: 6px;
  border:1px solid #E2E2E2;
  padding: 20px;
  float: right;
  width: calc(100% - 240px)
}

.page-main-1 .page-sidebar-section{
  width: 220px;
  float: left;
}

.page-content-section .content-header{
  border-bottom: 1px solid #E2E2E2;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.page-content-section .content-header:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.page-main-1 .sidebar-widget{
  padding: 0;
  border: 0;
  position: relative;
}

.page-main-1 .sidebar-widget .widget-title{
  margin-bottom: 10px;
}

.page-content-section .content-header h3{
  display: inline-block;
  vertical-align:middle;
  padding-top: 5px;
}

.content-header .dropdown{
  display: none;
}

.content-widget .widget-title{
  color: #222;
  margin-bottom: 10px;
}

.content-widget .widget-title i{
  color: #f0cdb5;
}

@media (max-width: 992px) {

  .page-content-section .content-header{
  }

  .page-main-1 .sidebar-widget .widget-title{
    text-align: left;
    padding-left: 20px;
  }

  .page-main-1 .page-content-section{
    width: 100%;
    float: none;
  }

  .page-main-1 .page-sidebar-section{
    display: none;
  }

  .content-header .dropdown{
    display: block;
    float: right;
  }

}


/* ------------------------------------------------------------------- 
 * order-item
 * ------------------------------------------------------------------- */

.order-item{
  padding: 10px;
  background: #F9F9F9;
  border-radius: 6px;
  margin-bottom: 15px;
}

.order-item .order-header{
  display: flex;
  padding: 10px 15px;
  justify-content: space-between;
  font-size: 0.9em;
  margin-bottom: 15px;
  border-bottom: 1px solid #E2E2E2;
}

.order-item .order-content{
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
}

.order-item .entry-title{
  color: #000;
  margin-bottom: 6px;
}

.order-item .order-meta{
  font-size: 0.95em;
}

.order-item .order-btns{
  flex: 0 0 150px;
  text-align: right;
}

.order-item .order-btns .btn{
  margin-bottom: 5px;
}

.order-item .payment-detail-item{
  justify-content: flex-start;
}

.order-item .entry-label{
text-align: right;
}

.order-item .entry-value{
  min-width: auto;
}

.order-item .payment-detail-item{
  padding: 2px 0;
  font-size: 0.95em;
}


@media (max-width: 768px) {
  .order-item .order-header{
    display: block;
  }

  .order-item .order-content{
    display: block;
  }

  .order-item .order-btns{
    padding-top: 10px;
    text-align: left;
  }

}

/* ------------------------------------------------------------------- 
 * page-header-sm
 * ------------------------------------------------------------------- */

.page-header-sm{
  padding: 10px 0;
  text-align: center;
}

.page-header-sm img{
  height: 40px;
  display: inline-block;
}

/* ------------------------------------------------------------------- 
 * interview-wrap
 * ------------------------------------------------------------------- */

.interview-wrap{
  min-height: 100vh;
  background: #ccc;
  margin: 0 auto;
}

.interview-main{
  background: #e9e8c1;
  width: 1140px;
  margin: 0 auto;
}

.interview-header{
  display: flex;
  background: #fff;
  justify-content: space-between;
  align-content: center;
  padding: 15px;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
}

.interview-header a{
  display: block;
}

.interview-header a img{
  height: 45px;
  display: block;
}

.interview-header .entry-tool{
  text-align: right;
}

.live-video-wrap{
  background: #000;
}

.live-video-content{
  width: 100%;
  position: relative;
}

.live-video-content .big-video{
  height: 70vh;
  overflow-y: hidden;
}

.live-video-content .big-video iframe{
  height: 70vh;
  background: #ddd;
  width: 100%;
  overflow:hidden;
}

.live-video-content.end-bg{
  background: #000;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70vh;
  background: url(../img/login-bg.jpg) no-repeat #EDF6F6;
}

.live-video-content .end-txt{
  width: 50%;
  color: #000;
  padding: 20px;
  border-radius: 7px;
  background: rgb(255,255,255,0.6);
}

.live-video-content .big-video img{
  height: 80%;
  display: block;
  margin: 0 auto;
}

.live-video-content .sm-video{
  width: 100px;
  display: block;
  border-radius: 10px;
  position: absolute;
  right: 30px;
  top: 50px;
  background: red;
  box-shadow: 0 0 10px 0 rgb(0,0,0,0.8);
}

.live-video-content .sm-video img{
  width: 100%;
  display: block;
  border-radius: 8px;
}

.interview-info{
  background: #fff;
  padding: 15px;
}

.interview-info .entry-time{
  background: #ececec;
  padding: 7px 20px;
  border-radius: 6px;
  color: #000;
  display: inline-block;
  font-weight: bold;
}

.interview-info .entry-time i{
  font-size: 1.4em;
  vertical-align: bottom;
}

.interview-info .entry-meta{
  color: #000;
  margin-bottom: 10px;
}

.interview-info .sp{
  font-size: 0.8em;
  color: rgb(0,0,0,0.2);
  padding: 0 6px;
}

.interview-footer{
  padding: 20px 10px 10px;
  text-align: left;
  font-size: 0.85em;
}

.interview-footer img{
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 1140px) {

  .interview-main{
    width: 100%;
  }

  .interview-info .entry-time{
    margin-bottom: 5px;
  }

  .video-btn{
    width: 50px;
    height: 50px;
    line-height: 55px;
    margin-left: -25px;
  }

  .video-btn i{
    font-size: 1.3em;
  }

}

@media (max-width: 768px) {

  .live-video-content .big-video img{
    width: 100%;
    height: auto;
  }

}


/* ------------------------------------------------------------------- 
 * LIVE-CHAT
 * ------------------------------------------------------------------- */


#live-chat {
  bottom: 0;
  font-size: 0.95em;
  right: 20px;
  position: fixed;
  width: 300px;
  box-shadow: 0 0 10px 0 rgb(0,0,0,0.3);
}

#live-chat header {
  border-radius: 5px 5px 0 0;
  color: #fff;
  cursor: pointer;
  padding: 12px 20px;
  background: rgb(52,130,246);
  background: linear-gradient(0deg, rgba(52,130,246,1) 4%, rgba(97,164,244,1) 97%);
}

#live-chat header i{
  font-size: 1.3em;
  vertical-align: bottom;
}

#live-chat input[type="text"] {
  
}

.chat-message-counter {
  background: #e62727;
  border: 1px solid #fff;
  border-radius: 50%;
  display: none;
  font-size:0.8em;
  font-weight: bold;
  height: 28px;
  left: 0;
  line-height: 28px;
  margin: -15px 0 0 -15px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 28px;
}

.chat {
  background: #fff;
}

.chat-history {
  padding: 15px 15px 10px;
}

.chat-room{
  height: calc( 100% - 50px );
  overflow-y: scroll;
  padding-right: 15px;
  padding-left: 15px;
}

.chat-room:after,.chat:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.chat-history .form-field{
  display: flex;
  padding-top: 10px;
}

.chat-history .btn-send{
  min-width: 40px;
  line-height: 40px;
  text-align: center;
  background:#32c1ce;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  margin-left: 5px;
  -webkit-transition:all .3s;
  -moz-transition:all .3s;
  -ms-transition:all .3s;
  transition:all .3s;
}

.chat-history .btn-send:hover{
  background: #20b1bf;
}

.note-area{
  height: calc( 100% - 10px );
}

.chat-history textarea{
  height: calc( 100% - 30px );
}

/* ------------------------------------------------------------------- 
 * tab
 * ------------------------------------------------------------------- */

.tabs-interview li {
  list-style: none;
  display: inline;
}

.tabs-interview a {
  padding: 6px 12px;
  display: inline-block;
  background: #edeff1;
  color: #000;
  text-decoration: none;
}

.tabs-interview a.active {
  background: #4baff9;
  color: #fff;
}

.tabs-content{
  padding-top: 15px;
  height: 350px;
}

/* ------------------------------------------------------------------- 
 * chat-bubble
 * ------------------------------------------------------------------- */

.chat-bubble{
  position: relative;
  display: inline-block;
  clear: both;
  margin-bottom: 18px;
  padding: 13px 15px;
  vertical-align: top;
  border-radius: 6px;
  word-break: break-word; 
}

.chat-bubble:before{
  position: absolute;
  display: block;
  top: 19px;
  width: 8px;
  height: 6px;
  content: '\00a0';
  transform: rotate(29deg) skew(-35deg);
}

.chat-bubble.me{
  float: right;
  background: #4baff9;
  color: #fff;
}

.chat-bubble.me:before{
  right: -3px;
  background: #4baff9;
}

.chat-bubble.you{
  float: left;
  background: #edeff1;
  color: #000;
}

.chat-bubble.you:before{
  left: -3px;
  background: #edeff1;
}


/* ------------------------------------------------------------------- 
 * .badge
 * ------------------------------------------------------------------- */

.badge{
  font-size: 0.85em;
  font-weight: bold;
}


/* ------------------------------------------------------------------- 
 * sp-line
 * ------------------------------------------------------------------- */

.sp-line {
  width: 100%;
  height: 20px;
  position: relative;
  margin: 20px 0;
}

.sp-line:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  top:10px;
  border-top: 1px dashed #e8e8e8;
}


.sp-line span{
  width: 24px;
  height: 24px;
  background: #fff;
  margin:0 auto;
  display: block;
  z-index: 3;
  position: relative;
  font-size: 0.8em;
  text-align: center;
}

/* ------------------------------------------------------------------- 
 * btn-icon
 * ------------------------------------------------------------------- */

.btn-icon{
  width: 30px;
  height: 30px;
  border-radius: 40px;
  text-align: center;
  line-height: 30px;
  color: #fff;
  display: inline-block;
  font-size: 0.9em;
}

.btn-icon.fb{
  background: #4267B2;
}

.btn-icon.line{
  background: #00B900;
}

.btn-icon.line img{
  height: 15px;
  margin-bottom: 3px;
}

/* ------------------------------------------------------------------- 
 * nav-tabs-1
 * ------------------------------------------------------------------- */

.nav-tabs-1{
  display: flex;
}

.nav-tabs-1 li {
  list-style: none;
  margin-right: 5px;
  flex: 0 0 50%;
}

.nav-tabs-1 a{
  padding: 6px 10px;
  display: block;
 border: 1px solid transparent;
 border-color: #dee2e6 #dee2e6 #fff;
 border-top-left-radius:6px;
 border-top-right-radius:6px;
 
 text-align: center;
}

.nav-tabs-1 a.active {
  background: #32c1ce;
  color: #fff;
}

.nav-tab-content{
  padding-top: 20px;
}

/* ------------------------------------------------------------------- 
 * nav-tabs
 * ------------------------------------------------------------------- */

.nav-tabs{
  border-radius: 6px;
  background: #44B1B1;
  margin-bottom: 20px;
 }

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus{
  background: #999;
  color: #000;
}

.nav > li > a {
  padding: 10px 10px;
  display: block;
  color: rgb(255,255,255,0.85);
  -webkit-transition:all .3s;
  -moz-transition:all .3s;
  -ms-transition:all .3s;
  transition:all .3s;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: rgb(255,255,255,1);
  font-weight: bold; 
}

.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background: #249c9c;
}

/* ------------------------------------------------------------------- 
 * order-widget
 * ------------------------------------------------------------------- */

.order-widget{
  margin-bottom: 20px;
}

.order-widget:last-child{
  margin-bottom: 0;
}

.order-widget .widget-title{
  margin-bottom: 15px;
}

.order-widget .widget-title h3{
  font-size: 1.05em;
  letter-spacing: 1px;
  position: relative;
  padding-left: 20px;
}

.order-widget .widget-title h3:before{
  width: 12px;
  height: 12px;
  background: #6CC4CF;
  border-radius: 12px;
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
}

.order-widget .entry-txt{
  font-size: 0.95em;
  color: #666;
  font-family: "Microsoft JhengHei";
}


/* ------------------------------------------------------------------- 
 * form-quiz
 * ------------------------------------------------------------------- */

.form-quiz{
  border: 1px solid #D8D8D8;
  border-radius: 8px;
  background: #FAFAFA;
}

.form-quiz .quiz-item{
  border-bottom: 1px solid #D5D5D5;
  padding: 10px 15px;
}

.form-quiz .form-label{
  color: #000;
  font-size: 0.95em;
}

.form-quiz .label-setting{
  color: #666;
}

.form-quiz .quiz-item:last-child{
  border-bottom: 0;
}

/* ------------------------------------------------------------------- 
 * expert-bubble-wrap
 * ------------------------------------------------------------------- */

.expert-bubble-wrap{

}

.expert-bubble-wrap .entry-thumb{
  text-align: center;
  display: block;
  margin: 0 auto -60px;
}

.expert-bubble-wrap .entry-thumb img{
  border-radius: 80px;
  width: 70px;
  display: block;
  margin: 0 auto;
}

.expert-bubble-wrap .entry-thumb span{
  font-size: 0.9em;
  font-style: italic;
}

.expert-bubble-wrap .entry-content{
  background: #EDF5F3;
  border-radius: 8px;
  padding: 70px 20px 20px;
  font-size: 0.9em;
  line-height: 1.65;
  color: #666;
  font-family: "Microsoft JhengHei";
}

/* ------------------------------------------------------------------- 
 * onoffswitch
 * ------------------------------------------------------------------- */

.onoffswitch {
  position: relative;
  width: 150px;
  float: left;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.onoffswitch-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.onoffswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border-radius: 20px;
}

.onoffswitch-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before,
.onoffswitch-inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 30px;
  padding: 0;
  line-height: 30px;
  font-size: 14px;
  color: white;
  font-family:"Microsoft JhengHei", sans-serif;
  font-weight: bold;
  box-sizing: border-box;
}

.onoffswitch-inner:before {
  content: "facebook已綁定";
  padding-left: 15px;
  background-color: #4267B2;
  color: #FFFFFF;
}

.onoffswitch-inner:after {
  content: "facebook未綁定";
  padding-right: 10px;
  background-color: #EEEEEE;
  color: #999999;
  text-align: right;
}

.line .onoffswitch-inner:before{
  content: "LINE已綁定";
  background-color: #00B900;
  padding-left:32px;
}

.line .onoffswitch-inner:after {
  content: "LINE未綁定";
  padding-right: 30px;
}

.onoffswitch-switch {
  display: block;
  width: 18px;
  height: 18px;
  margin: 6px;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 120px;
  border-radius: 20px;
  transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inner {
  margin-left: 0;
}

.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch {
  right: 0px;
}



/* ------------------------------------------------------------------- 
 * panel-rule
 * ------------------------------------------------------------------- */

.panel-rule .panel-title{
  margin-bottom: 30px;
}

.panel-rule .panel-title h2{
  font-size: 1.1em;
  letter-spacing: 1px;
  color: #222;
}

.txt-rule{
  font-size: 0.95em;
  line-height: 1.6;
  color: #444;
  font-family:"Microsoft JhengHei", 'Open Sans', Sans-serif;
}

.txt-rule strong{
  color: #000;
}

.txt-rule ul,.txt-rule ol{
  margin-left:20px;
}

.vertical-layout{
  background: #f2f5fa;
}

.simple-header{
  background: #fff;
}

.main-logo{
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
}

.main-logo img{
  height: 40px;
}

/* ------------------------------------------------------------------- 
 * table-receipt
 * ------------------------------------------------------------------- */

.table-receipt{
  width: 800px;
  margin: 0 auto;
}

.table-receipt td td,.table-receipt td th{
  padding: 20px 15px;
  border: 1px solid #CBCBCB;
  text-align: center;
}


/* ------------------------------------------------------------------- 
 * accountbox
 * ------------------------------------------------------------------- */

.top-nav li{
  position: relative;
}

.btn-icon-account{
  position: relative;
  cursor: pointer;
}

.accountbox{
  padding: 10px;
  font-size: 0.8em;
  background: #fff;
  border-radius: 6px;
  width: 100px;
  display: none;
  position: absolute;
  top: 30px;
  right: -10px;
  box-shadow: 0 0 0 1px rgb(0,0,0,0.1);
  text-align: center;
  font-family: "Microsoft JhengHei";
  z-index: 2;
}

.accountbox a{
  display: block;
  padding: 5px 0;
}