@charset "UTF-8";
/* ================================
Variables, Functions & Mixins
================================ */
/* Microsoft Jhenghei 400, 700 */
/* tab */
/* Column */
/*no transiton*/
.bgi_16x9 {
    width: 100%;
    padding: 0;
    padding-top: 56.25%;
    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%;
    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

------------------------------------------------------------- */
@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: "";
    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 (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 {
    -webkit-animation: arrowR 1s both infinite;
    -khtml-animation: arrowR 1s both infinite;
    -moz-animation: arrowR 1s both infinite;
    -ms-animation: arrowR 1s both infinite;
    -o-animation: arrowR 1s both infinite;
    animation: arrowR 1s both infinite;
}

@keyframes arrowR {
    from {
        -webkit-transform: translateX(-0.1em);
        -khtml-transform: translateX(-0.1em);
        -moz-transform: translateX(-0.1em);
        -ms-transform: translateX(-0.1em);
        -o-transform: translateX(-0.1em);
        transform: translateX(-0.1em);
    }
    50% {
        -webkit-transform: translateX(0.1em);
        -khtml-transform: translateX(0.1em);
        -moz-transform: translateX(0.1em);
        -ms-transform: translateX(0.1em);
        -o-transform: translateX(0.1em);
        transform: translateX(0.1em);
    }
    to {
        -webkit-transform: translateX(-0.1em);
        -khtml-transform: translateX(-0.1em);
        -moz-transform: translateX(-0.1em);
        -ms-transform: translateX(-0.1em);
        -o-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: "";
    position: absolute;
    font-family: FontAwesome;
    font-size: 20px;
    color: #1EB7C8;
    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 #1EB7C8 transparent;
    margin: 0;
    -webkit-transition: all 0.1s ease-in-out;
    -khtml-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.btn_corner_rbtm span {
    position: absolute;
    right: 0px;
    top: 2.5em;
    -webkit-transform: rotate(-45deg);
    -khtml-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    color: #999;
    width: 50px;
    font-size: 12px;
    font-weight: 700;
}
.btn_corner_rbtm:hover {
    border-color: transparent transparent #cef5e8 transparent;
}

/* Button with Icon and Dashed line */
.btn_dashed, .btn_icon_dashed {
    position: relative;
    display: inline-block;
    margin: 20px 0px;
    color: #1EB7C8;
    border-bottom: 1px dotted #1EB7C8;
}
.btn_dashed:hover, .btn_icon_dashed:hover {
    color: #50daae;
    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: #1EB7C8;
}

.btn_ghost {
    display: inline-block;
    position: relative;
    line-height: 1em;
    padding: 0.5em;
    border: 1px solid;
    padding-right: 40px;
}
.btn_ghost:before {
    content: "";
    position: absolute;
    font-family: FontAwesome;
    font-size: 20px;
    height: 20px;
    line-height: 20px;
    top: calc(50% - 10px);
    right: 10px;
}
.btn_ghost {
    border-color: #1EB7C8;
    background-color: transparent;
    color: #1EB7C8;
}
.btn_ghost:before {
    color: #1EB7C8;
}
.btn_ghost:hover {
    color: #fff;
    background-color: #1EB7C8;
}
.btn_ghost:hover:before {
    color: #fff;
}
.btn_ghost.main-text {
    border-color: #4d4d4d;
    background-color: transparent;
    color: #4d4d4d;
}
.btn_ghost.main-text:before {
    color: #4d4d4d;
}
.btn_ghost.main-text:hover {
    color: #fff;
    background-color: #4d4d4d;
}
.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: #4d4d4d;
    background-color: #fff;
}
.btn_ghost.reverse:hover:before {
    color: #4d4d4d;
}

.btn_tilt_arrow {
    display: inline-block;
    position: relative;
    line-height: 1em;
    padding: 12px;
    padding-right: 40px;
    color: #1EB7C8;
    margin: 0 10px;
}
.btn_tilt_arrow:before {
    content: "";
    position: absolute;
    font-family: FontAwesome;
    font-size: 20px;
    height: 20px;
    line-height: 20px;
    top: calc(50% - 0.5em);
    right: 10px;
    color: #1EB7C8;
}
.btn_tilt_arrow:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border: 1px solid #1EB7C8;
    background-color: transparent;
    -webkit-transform: skew(20deg);
    -khtml-transform: skew(20deg);
    -moz-transform: skew(20deg);
    -ms-transform: skew(20deg);
    -o-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: #1EB7C8;
}
.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;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    -webkit-transition: all 0s ease-in-out;
    -khtml-transition: all 0s ease-in-out;
    -moz-transition: all 0s ease-in-out;
    -ms-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
    border: 1px solid #1EB7C8;
    background-color: #1EB7C8;
}
.btn_action:hover, .btn_action:focus {
    background-color: #7ae3c2;
    border-color: #7ae3c2;
}
.btn_action:hover, .btn_action:focus {
    color: #fff;
}
.btn_action.full {
    border: 1px solid #1EB7C8;
    background-color: #1EB7C8;
}
.btn_action.full:hover, .btn_action.full:focus {
    background-color: #7ae3c2;
    border-color: #7ae3c2;
}
.btn_action i {
    width: 16px;
    height: 16px;
    line-height: 16px;
}
.btn_action.warning {
    border: 1px solid rgba(236, 151, 31, 0.65);
    background-color: rgba(236, 151, 31, 0.65);
}
.btn_action.warning:hover, .btn_action.warning:focus {
    background-color: rgba(199, 124, 17, 0.65);
    border-color: rgba(199, 124, 17, 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 #1EB7C8;
    background-color: transparent;
    color: #1EB7C8;
}
.btn_action.outline:hover {
    background-color: #1EB7C8;
    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: #4d4d4d;
    font-family: "Microsoft Jhenghei", 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 {
    -webkit-transition: all 0.1s ease-in-out;
    -khtml-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

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

::-moz-selection {
    color: #1EB7C8;
    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;
    padding: 0;
    color: inherit;
    letter-spacing: 1px;
    text-transform: none;
}

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

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

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

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

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

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

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

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

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

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

a {
    font-size: inherit;
}

li {
    font-size: 16px;
}

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

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

/* Input
------------ */
/* font-weight
------------ */
.fw-b {
    font-weight: bold;
}

/* Mobile Font Size
--------------------- */
@media (max-width: 767px) {
    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: 14.7px;
    }

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

    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
  ------------ */
    /* font-weight
  ------------ */
    .fw-b {
        font-weight: bold;
    }
}
/* 2018.10.04 */
/* ====== Custom Class ====== */
/* Color */
.red {
    color: #f56954;
}

.green {
    color: #4fc47f;
}

.light-gray {
    color: #999;
}

.main-color {
    color: #1EB7C8;
}

/* 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: "Microsoft Jhenghei", sans-serif;
    font-weight: 500;
}
.lang-2nd .font-family-alt {
    font-family: "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-top10 {
    margin-top: 10px !important;
}

.m-bottom10 {
    margin-bottom: 10px !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 * {
    -webkit-transition: all 0.2s ease-in-out;
    -khtml-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.transition1s, .transition1s * {
    -webkit-transition: all 0.1s ease-in-out;
    -khtml-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

/*no transiton*/
.no-transition, .no-transition * {
    -webkit-transition: all 0s ease-in-out;
    -khtml-transition: all 0s ease-in-out;
    -moz-transition: all 0s ease-in-out;
    -ms-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
}

/* ====== //Custom Class ====== */
/* 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;
    }
    .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;
    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%;
    }
}
.form-group {
    margin-bottom: 10px;
}

.form-control:focus {
    -webkit-box-shadow: inset 0 1px 1px rgba(94, 171, 51, 0.075), 0 0 8px rgba(94, 171, 51, 0.6);
    box-shadow: inset 0 1px 1px rgba(94, 171, 51, 0.075), 0 0 8px rgba(94, 171, 51, 0.6);
    border-color: rgba(94, 171, 51, 0.5);
}

.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 #dfdfdf;
    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 */
/* tag */
/* tag */
.tag {
    display: inline-block;
    padding: 4px 5px;
    margin: 2px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    border-radius: 2px;
    border: 1px;
    border-style: solid;
    color: #fff !important;
    text-align: center;
    white-space: nowrap;
    text-indent: 0;
    -webkit-transition: all 0s ease-in-out;
    -khtml-transition: all 0s ease-in-out;
    -moz-transition: all 0s ease-in-out;
    -ms-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
}
.tag {
    border-color: rgba(150, 38, 37, 0.8);
    background-color: rgba(150, 38, 37, 0.8);
}
.tag.success {
    border-color: rgba(92, 184, 92, 0.65);
    background-color: rgba(92, 184, 92, 0.65);
}
.tag.info {
    border-color: rgba(70, 184, 218, 0.65);
    background-color: rgba(70, 184, 218, 0.65);
}
.tag.warning {
    border-color: rgba(236, 151, 31, 0.65);
    background-color: rgba(236, 151, 31, 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: #999;
}
.tag_icon:before {
    content: "";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    color: #1EB7C8;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-right: 8px;
}
.tag_icon:hover {
    text-decoration: underline;
    color: #999;
}

/* pagination */
/*--- pagination ---*/
.pagination {
    margin: 10px 0;
}
.pagination li {
    text-align: center;
}
.pagination li a {
    font-size: 16px;
    padding: 8px 16px;
    min-width: 29px;
    display: inline-block;
    border: none;
    -webkit-transition: all 0s ease-in-out;
    -khtml-transition: all 0s ease-in-out;
    -moz-transition: all 0s ease-in-out;
    -ms-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
    background-color: transparent;
    color: #1EB7C8;
}
.pagination li a:hover, .pagination li a:focus {
    background-color: rgba(164, 236, 213, 0.05);
    color: #1EB7C8;
}
.pagination li.active a, .pagination li.active a:hover, .pagination li.active a:focus, .pagination li.active a.active {
    background-color: #1EB7C8;
    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 {
    -webkit-transition: all 0s ease-in-out;
    -khtml-transition: all 0s ease-in-out;
    -moz-transition: all 0s ease-in-out;
    -ms-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
}

.underline {
    color: #1EB7C8;
}
.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: #0275d8;
}
.underline_blue:hover {
    color: inherit;
    text-decoration: underline;
}

.hover_underline_blue {
    text-decoration: none;
    -webkit-transition: all 0s ease-in-out;
    -khtml-transition: all 0s ease-in-out;
    -moz-transition: all 0s ease-in-out;
    -ms-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    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: #1EB7C8;
    border-color: #8fe8cb;
    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: #8fe8cb;
    border-color: #7ae3c2;
}

.btn-warning {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
    color: white;
}
.btn-warning:hover, .btn-warning:hover:hover, .btn-warning:hover:active, .btn-warning:hover:focus, .btn-warning:active, .btn-warning:active:hover, .btn-warning:active:active, .btn-warning:active:focus, .btn-warning:focus, .btn-warning:focus:hover, .btn-warning:focus:active, .btn-warning:focus:focus {
    color: white;
    background-color: #eea236;
    border-color: #ec971f;
}

/* Button Main */
.btn_main {
    line-height: 1em;
    padding: 14px 20px;
    border-radius: 4px;
    background-color: #1EB7C8;
    color: #4d4d4d;
    display: inline-block;
    border: 1px solid transparent;
    -webkit-transition: all 0.1s ease-in-out;
    -khtml-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    padding: 12px 16px;
    letter-spacing: 0.05em;
}
.btn_main:hover, .btn_main:focus {
    color: #4d4d4d;
    background-color: #8fe8cb;
}
.btn_main.large {
    font-size: 20px;
    padding: 18px 24px;
}
.btn_main.radius {
    border-radius: 30px;
}
.btn_main.reverse {
    background-color: transparent;
    color: #1EB7C8;
    border-color: #1EB7C8;
}
.btn_main.reverse:hover {
    background-color: rgba(164, 236, 213, 0.05);
}
.btn_main.outline {
    border: 1px solid #1EB7C8;
    background-color: transparent;
    color: #1EB7C8;
}
.btn_main.outline:hover {
    background-color: #1EB7C8;
    color: white;
}

.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: #1EB7C8;
}

#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%;
    color: #fff;
}
#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 {
    color: inherit;
}
#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 {
    border-radius: 4px;
    background-color: #f9f9f9;
    border-radius: 4px;
    overflow: hidden;
}
.blocky.highlight {
    border: 2px dotted #1EB7C8;
}
.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 #e6e6e6;
}
.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 #e6e6e6;
}
.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 #1EB7C8;
    color: #4d4d4d;
    background-color: rgba(164, 236, 213, 0.15);
}

.blocky_header {
    border-top: 1px solid #e6e6e6;
}
.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: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.blocky_header .nav-tabs.justify li {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.blocky_header .nav-tabs li a {
    color: #1EB7C8;
    background-color: transparent;
    border: 1px solid #1EB7C8;
    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: #1EB7C8;
    border: 1px solid #1EB7C8;
}
.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: #1EB7C8;
    border: 1px solid #1EB7C8;
}

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

.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: 0px;
    margin-bottom: 16px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #f9f9f9;
}
.stepper > li {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px;
}
.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: #4d4d4d;
}
.stepper > li p.step {
    color: #1EB7C8;
}
.stepper > li.active {
    background-color: #f7e5e0;
    border: 0;
}
.stepper > li.active p {
    color: #4d4d4d;
}
.stepper > li.active .step {
    color: #4d4d4d;
}

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

/* 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 #e6e6e6;
    }
    .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: #e6e6e6;
        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 #e6e6e6;
    }
    .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-top: 0;
        border-bottom: 1px dotted rgba(230, 230, 230, 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: #4d4d4d;
    }
    .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 #e6e6e6;
    }
    .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: #e6e6e6;
        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 #e6e6e6;
    }
    .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-top: 0;
        border-bottom: 1px dotted rgba(230, 230, 230, 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: #4d4d4d;
    }
    .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 #e6e6e6;
    }
    .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: #e6e6e6;
        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 #e6e6e6;
    }
    .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-top: 0;
        border-bottom: 1px dotted rgba(230, 230, 230, 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: #4d4d4d;
    }
    .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 #e6e6e6;
}
.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: #e6e6e6;
    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 #e6e6e6;
}
.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: #e6e6e6;
}
.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 #e6e6e6;
    }
}

/* 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

 */
.basic_container {
    padding: 8px;
}
.basic_container > [class*=col-lg], .basic_container > [class*=col-md], .basic_container > [class*=col-sm], .basic_container > [class*=col-xs] {
    padding: 8px;
}

.basic_block {
    background-color: #f9f9f9;
    overflow: hidden;
}
.basic_block:nth-child(1) {
    margin-top: 0;
}
.basic_block.highlight {
    border: 2px dotted #1EB7C8;
}
.basic_block .header {
    padding: 8px 8px;
    border-bottom: 1px solid #1EB7C8;
    color: #1EB7C8;
    background-color: rgba(164, 236, 213, 0.15);
}
.basic_block .header.prd_header {
    color: #1EB7C8;
}
.basic_block .header.center h3, .basic_block .header.center h4 {
    width: 100%;
    text-align: center;
}
.basic_block .header {
    border-top: 1px solid #e6e6e6;
}
.basic_block .header:nth-child(1) {
    border-top: 0;
}
.basic_block .block {
    padding: 8px;
}
.basic_block .block:after, .basic_block .block:before {
    content: "";
    display: block;
    clear: both;
}
.basic_block .block.article {
    padding: 8px 16px 16px;
}
.basic_block .block.min-medium {
    min-height: 300px;
}
.basic_block .block.padding-large {
    padding: 16px;
}
.basic_block .footer {
    padding: 16px;
    text-align: right;
    border-top: 1px solid #e6e6e6;
}
.basic_block .footer.padding-small {
    padding: 8px;
}
.basic_block .date {
    margin: 0;
    line-height: 24px;
}
.basic_block .thumb {
    width: 80px;
}
.basic_block .dv_line {
    position: relative;
    border-top: 1px solid #e6e6e6;
}
.basic_block .dv_line.m-tb {
    margin-top: 8px;
    margin-bottom: 8px;
}

/* margin */
.basic_block {
    margin: 16px 0;
}
/* Second Header */
.second_header {
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    background-color: #fcfcfc;
    padding: 4px 8px;
}
.header + .second_header {
    border-top: 0;
}
.second_header:nth-child(1) {
    border-top: 0;
}

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

.basic_block .block.form_table {
    padding: 0;
}

/* Header Component */
.basic_block .header:after, .basic_block .header:before {
    content: "";
    display: block;
    clear: both;
}
.basic_block .header h3, .basic_block .header h4 {
    float: left;
}
.basic_block .header h4 ~ .input_simple {
    margin: -6px 0;
}
.basic_block .header h3 ~ .input_simple {
    margin: -4px 0;
}
.basic_block .header h4 + .input_simple,
.basic_block .header h3 + .input_simple {
    margin-right: -14px;
}
.basic_block .header .input-daterange {
    float: right;
    max-width: 300px;
    margin: -3px 0;
    margin-right: -10px;
}
@media (max-width: 575px) {
    .basic_block .header .input-daterange {
        width: calc(100% + 20px);
        max-width: none;
        margin: 5px -10px -3px;
    }
}

/* Block Border Top
-------------- */
.basic_block > .block + .block {
    border-top: 1px solid #e6e6e6;
}

.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;
}

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

/* Narrow */
.basic_block.narrow .block, .basic_block .block.narrow {
    padding: 4px;
}
.basic_block.narrow .footer, .basic_block .footer.narrow {
    padding: 4px;
}

/* Stepper */
.stepper {
    padding: 4px;
    margin-bottom: 16px;
    background-color: #f9f9f9;
}
.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: #4d4d4d;
}
.stepper > li p.step {
    color: #1EB7C8;
}
.stepper > li.active {
    background-color: #1EB7C8;
    border: 0;
}
.stepper > li.active p {
    color: #fff;
}
.stepper > li.active .step {
    color: #fff;
}

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

/* Sidebar */
/* Parchment */
/* List Second */
/* 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: 992px) {
    .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.w-33 {
        width: 33%;
    }
    .form_column > .item.w-25 {
        width: 25%;
    }
    .form_column > .info_gorup > .item.w-50 {
        width: 50%;
    }
    .form_column > .info_gorup > .item.w-33 {
        width: 33%;
    }
    .form_column > .info_gorup > .item.w-25 {
        width: 25%;
    }
    .form_column.border > .item + .item {
        border-top-width: 1px;
        border-top-style: solid;
        border-color: #e6e6e6;
    }
    .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 #e6e6e6;
    }
}
.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.w-33 {
    width: 33%;
}
.form_column.no-responsive > .item.w-25 {
    width: 25%;
}
.form_column.no-responsive > .info_gorup > .item.w-50 {
    width: 50%;
}
.form_column.no-responsive > .info_gorup > .item.w-33 {
    width: 33%;
}
.form_column.no-responsive > .info_gorup > .item.w-25 {
    width: 25%;
}
.form_column.no-responsive.border > .item + .item {
    border-top-width: 1px;
    border-top-style: solid;
    border-color: #e6e6e6;
}
.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 #e6e6e6;
        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 */
/* 2019.01.29 */
input,
textarea,
select {
    display: inline-block;
    letter-spacing: 0px;
    vertical-align: middle;
    resize: vertical;
    max-width: 100%;
    border: 1px solid #dfdfdf;
}
@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 + 13px);
}
@media (max-width: 767px) {
    input,
    textarea,
    select,
    .btn-input,
    .input-group .btn {
        padding: 8px;
        height: calc(1.8em + 11px);
    }
}

select {
    background-color: white;
}

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

input:focus,
textarea:focus,
select:focus {
    border: 1px solid rgba(164, 236, 213, 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
----------------------- */
.caret_select {
    position: relative;
    z-index: 0;
    display: inline-block;
}
.caret_select::after {
    content: "";
    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;
}
.caret_select select[disabled=disabled] {
    cursor: auto;
}

/* 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;
    -ms-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 #dfdfdf;
    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;
    -webkit-transform: rotate(45deg);
    -khtml-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-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: #1EB7C8;
    border-color: #1EB7C8;
}
.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: #1EB7C8;
    -webkit-transform: rotate(0deg);
    -khtml-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

/*--- Checkbox inline item ---*/
.checkbox-inline, .radio-inline {
    max-height: 80vh;
    border: 1px solid #dfdfdf;
    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);
}

span.required {
    position: relative;
}
span.required:before {
    content: "*";
    color: #f56954;
    position: absolute;
    right: -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 #e6e6e6;
}
.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: calc(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_simple input,
.input_simple textarea,
.input_simple .caret_select,
.input_simple select {
    width: 100%;
}

/* ====== 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: 10px 0;
    border-color: #eee;
}

/* Video */
/* Video */
/* ========================
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: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: 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: #ccc;
}
.section_complete_form .check {
    font-size: 120px;
    color: #ccc;
    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;
}
.editor h1, .editor h2, .editor h3, .editor h4 {
    color: #1EB7C8;
    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 p {
    line-height: 1.6em;
}
.editor ul, .editor ol {
    margin: 8px 0;
    padding: 0;
}
.editor ul > li, .editor ol > li {
    line-height: 1.6em;
    position: relative;
    margin-bottom: 5px;
}
.editor ul {
    margin: 8px 0;
    font-size: inherit;
    list-style: none;
}
.editor ul > li {
    position: relative;
    padding-left: 1.8em;
    margin-bottom: 0.4em;
    font-size: inherit;
}
.editor ul > li:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #1EB7C8;
    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: #e6e6e6;
    border-style: solid;
    overflow: auto;
    width: 100%;
}
.editor table th, .editor table td {
    border-width: 1px;
    border-style: solid;
    border-color: #e6e6e6;
    padding: 8px;
}
.editor table th {
    background-color: rgba(164, 236, 213, 0.1);
    color: #1EB7C8;
}
.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: #1EB7C8;
    color: #4d4d4d;
    display: inline-block;
    border: 1px solid transparent;
    -webkit-transition: all 0.1s ease-in-out;
    -khtml-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    padding: 12px 16px;
    letter-spacing: 0.05em;
    border-color: transparent;
    width: auto;
    padding: 8px 16px;
    height: auto;
}
.editor input[type=button]:hover, .editor input[type=button]:focus {
    color: #4d4d4d;
    background-color: #8fe8cb;
}
.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: transparent;
    color: #1EB7C8;
    border-color: #1EB7C8;
}
.editor input[type=button].reverse:hover {
    background-color: rgba(164, 236, 213, 0.05);
}
.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;
}

.section_main {
    padding: 15px 0;
    margin-top: 15px;
    margin-bottom: 15px;
}
@media (max-width: 767px ) {
    .section_main {
        padding: 10px 0;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

/* 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: 32px;
    line-height: 1.5em;
}
ul.ci_list li:before {
    content: "";
    font-family: "FontAwesome";
    position: absolute;
    color: inherit;
    font-size: 1em;
    line-height: inherit;
    width: 1.5em;
    text-align: center;
    left: 0;
}
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;
}

/* Not Use
-------------- */
/* Footer Common
------------------ */
footer a {
    color: inherit;
}
footer [class*=col-lg], footer [class*=col-md], footer [class*=col-sm], 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: 32px;
    line-height: 1.5em;
}
.f_info_ul li:before {
    content: "";
    font-family: "FontAwesome";
    position: absolute;
    color: inherit;
    font-size: 1em;
    line-height: inherit;
    width: 1.5em;
    text-align: center;
    left: 0;
}
.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;
}

/* 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;
    min-height: calc(100vh - 148px);
}

/* Microsoft Jhenghei 400, 700 */
/* ========================
  Reusable Classes (RUC)
======================== */
/* ========================
  Reusable Classes (RUC) 重複使用
======================== */
/* BEM
------------------ */
a.underline {
    color: inherit;
    text-decoration: none;
}
a.underline:hover {
    color: inherit;
    text-decoration: underline;
}

/* New */
a.underline_hover {
    color: inherit;
    text-decoration: none;
}
a.underline_hover:hover {
    color: inherit;
    text-decoration: underline;
}

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

a.underline_blue_hover {
    color: #0275d8;
    text-decoration: none;
}
a.underline_blue_hover:hover {
    color: inherit;
    text-decoration: underline;
}

/* Button Main Style */
.btn_special {
    display: inline-block;
    position: relative;
    text-align: center;
    line-height: 2em;
    height: 2em;
    margin-right: 1em;
    margin-left: 1em;
    color: #fff;
    background-color: #3e3a39;
    white-space: nowrap;
}
.btn_special:before, .btn_special:after {
    content: "";
    position: absolute;
    line-height: inherit;
    width: 1em;
    height: 2em;
    background-size: auto 100%;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    z-index: 1;
    background-image: url(../images/common/ic_btn_spe.png);
}
.btn_special:before {
    left: -1em;
    background-position: left;
}
.btn_special:after {
    right: -1em;
    background-position: right;
}
.btn_special:hover {
    color: #FF9800;
    -webkit-transform: translateY(2px);
    -moz-transform: translateY(2px);
    -ms-transform: translateY(2px);
    transform: translateY(2px);
}

.btn_arrow_r {
    display: block;
    position: relative;
    color: #4d4d4d;
    text-align: right;
    padding: 0.5em;
    padding-right: 2em;
    line-height: 1em;
}
.btn_arrow_r:before {
    content: "";
    position: absolute;
    font-family: FontAwesome;
    font-size: 1.5em;
    width: 1em;
    line-height: 1em;
    text-align: center;
    color: #4d4d4d;
    top: calc(50% - 0.5em);
    right: 0.25em;
}
@media 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: #4d4d4d;
}
.btn_arrow_r:hover:before, .btn_arrow_r:focus:before {
    -webkit-animation: arrowR 1s both infinite;
    -khtml-animation: arrowR 1s both infinite;
    -moz-animation: arrowR 1s both infinite;
    -ms-animation: arrowR 1s both infinite;
    -o-animation: arrowR 1s both infinite;
    animation: arrowR 1s both infinite;
}

/* Btn Wrapper
---------- */
.btn_wr {
    padding: 10px 0;
}

.breadcrumb_wrapper {
    background-color: #f9f9f9;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    padding: 4px;
}
.breadcrumb_wrapper .breadcrumb {
    float: right;
}

/* Title Main
--------------------*/
.title_main {
    position: relative;
    font-weight: 700;
    padding: 0em 0.75em;
    margin-bottom: 10px;
    color: #4d4d4d;
    border-left: 8px solid #1EB7C8;
}

/* Title special
--------------------*/
.title_special {
    position: relative;
    font-weight: 700;
    padding: 0.5em 0.75em;
    margin-bottom: 10px;
    color: #4d4d4d;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-left: 8px solid #1EB7C8;
    background-color: #f1f1f1;
}

.caret_select.special select {
    color: white;
    padding: 0.5em;
    padding-right: 2em;
    line-height: 1em;
    font-size: 14px;
    border-radius: 4px;
    background-color: #333;
    border: none;
    height: 2em;
}
.caret_select.special:after {
    color: white;
}

.editor h1, .editor h2, .editor h3, .editor h4 {
    color: #4d4d4d;
}
.editor ul > li:before {
    background-color: #f0899e;
}
.editor table {
    border-color: #e6e6e6;
}
.editor table th, .editor table td {
    border-color: #e6e6e6;
}
.editor table th {
    background-color: rgba(164, 236, 213, 0.1);
    color: #4d4d4d;
}
.editor a, .editor a:hover {
    color: #f0899e;
}

.newst_tag {
    display: inline-block;
    position: relative;
    line-height: 1.8em;
    height: 1.8em;
    padding: 0 8px;
    background-color: #4d4d4d;
    color: white;
}
.newst_tag:before, .newst_tag:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    right: -0.9em;
    border-style: solid;
}
.newst_tag:before {
    bottom: 0;
    border-width: 0.9em 0.9em 0 0;
    border-color: #4d4d4d transparent transparent transparent;
}
.newst_tag:after {
    top: 0;
    border-width: 0.9em 0 0 0.9em;
    border-color: transparent transparent transparent #4d4d4d;
}
.newst_tag.nstg_2nd {
    background-color: #f0899e;
}
.newst_tag.nstg_2nd:before {
    border-color: #f0899e transparent transparent transparent;
}
.newst_tag.nstg_2nd:after {
    border-color: transparent transparent transparent #f0899e;
}
.newst_tag.nstg_3rd {
    background-color: #5cb85c;
}
.newst_tag.nstg_3rd:before {
    border-color: #5cb85c transparent transparent transparent;
}
.newst_tag.nstg_3rd:after {
    border-color: transparent transparent transparent #5cb85c;
}
.newst_tag.nstg_4th {
    background-color: #5bc0de;
}
.newst_tag.nstg_4th:before {
    border-color: #5bc0de transparent transparent transparent;
}
.newst_tag.nstg_4th:after {
    border-color: transparent transparent transparent #5bc0de;
}
.newst_tag.nstg_5th {
    background-color: #f0ad4e;
}
.newst_tag.nstg_5th:before {
    border-color: #f0ad4e transparent transparent transparent;
}
.newst_tag.nstg_5th:after {
    border-color: transparent transparent transparent #f0ad4e;
}
.newst_tag.nstg_6th {
    background-color: #f56954;
}
.newst_tag.nstg_6th:before {
    border-color: #f56954 transparent transparent transparent;
}
.newst_tag.nstg_6th:after {
    border-color: transparent transparent transparent #f56954;
}
.newst_tag.nstg_7th {
    background-color: #0275d8;
}
.newst_tag.nstg_7th:before {
    border-color: #0275d8 transparent transparent transparent;
}
.newst_tag.nstg_7th:after {
    border-color: transparent transparent transparent #0275d8;
}

/* Album Date Note
---------------- */
.divide_note {
    margin: 0 0 5px;
    text-align: left;
    font-size: 11px;
    color: #ccc;
}
.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: #ccc;
    width: 4px;
    height: 4px;
    left: calc((20px - 4px) / 2);
    top: calc(50% - 4px / 2);
    border-radius: 2px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.divide_note.display-block > li {
    display: block;
}

/* Action Bar

1. Search Number
2. filter input
3. search input

inherit: .input_inline
---------------- */
.actionbar {
    padding-left: 8px;
    padding-right: 8px;
}
.actionbar:after, .actionbar:before {
    content: "";
    display: block;
    clear: both;
}
@media (max-width: 991px ) {
    .actionbar .actionbar_left,
    .actionbar .actionbar_right {
        float: left;
        width: 100%;
    }
}
@media (min-width: 992px ) {
    .actionbar .actionbar_left {
        float: left;
    }
    .actionbar .actionbar_right {
        float: right;
    }
}
.actionbar .search_book {
    background-color: white;
    border-radius: 5px;
    padding: 4px 8px;
}
.actionbar .search_book .caret_select {
    display: inline-block;
}
.actionbar .search_book .caret_select .select {
    width: 320px;
}
@media (max-width: 1200px) {
    .actionbar .search_book .caret_select .select {
        width: 310px;
    }
}
@media (min-width: 768px) {
    .actionbar .search_book .input-daterange {
        max-width: 93%;
    }
}
@media (max-width: 767px) {
    .actionbar .search_book .input-daterange {
        max-width: 100%;
    }
}
.actionbar .search_book .input-daterange .form-control {
    margin: 0;
}
.actionbar .search_book .search_group {
    display: inline-block;
}
@media (min-width: 768px) {
    .actionbar .search_book .search_group {
        width: 90%;
    }
}
@media (max-width: 767px) {
    .actionbar .search_book .search_group {
        width: 99%;
    }
}
.actionbar .search_book .search_group input {
    margin: 0;
}
.actionbar .change_list {
    padding: 4px 0;
}
.actionbar .change_list:after, .actionbar .change_list:before {
    content: "";
    display: block;
    clear: both;
}
.actionbar .change_list .actionbar_left {
    width: 50%;
}
.actionbar .change_list .actionbar_left .search_number {
    text-align: left;
}
.actionbar .change_list .actionbar_right {
    width: 50%;
    padding-right: 28px;
}
@media (max-width: 767px) {
    .actionbar .change_list .actionbar_right {
        padding-right: 16px;
    }
}
.actionbar .change_list .actionbar_right li {
    display: inline-block;
    margin: 2px 0;
    padding-left: 8px;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 500;
}
.actionbar .change_list .actionbar_right li a {
    font-weight: 500;
}

.basic_block .actionbar {
    padding-left: 2px;
    padding-right: 2px;
}

/* Search Number
------------ */
.search_number {
    color: #ccc;
    padding: 8px;
}
@media (max-width: 991px ) {
    .search_number {
        text-align: right;
    }
}

/* (design For OOCSS) */
.crsl_basic .item {
    display: block;
    padding: 0;
}
.crsl_basic .item:after, .crsl_basic .item:before {
    content: "";
    display: block;
    clear: both;
}
.crsl_basic [class*=col-lg], .crsl_basic [class*=col-md], .crsl_basic [class*=col-sm], .crsl_basic [class*=col-xs] {
    padding: 0;
}
.crsl_basic .inner {
    display: block;
    overflow: hidden;
    border-radius: 0px;
}
.crsl_basic .img_wrapper {
    overflow: hidden;
}
.crsl_basic .img {
    width: 100%;
    padding: 0;
    padding-top: 56.25%;
    background-size: cover;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    z-index: 1;
    background-size: cover;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    z-index: 1;
}
.crsl_basic .content {
    padding: 15px;
}
.crsl_basic .title {
    color: #4d4d4d;
    font-weight: 700;
    overflow: hidden;
    line-height: 1.5em;
    max-height: 3em;
    white-space: normal;
    text-overflow: initial;
}
.crsl_basic .dsc {
    color: #999;
    overflow: hidden;
    line-height: 1.5em;
    max-height: 4.5em;
    white-space: normal;
    text-overflow: initial;
}
.crsl_basic .date {
    position: relative;
    color: #ccc;
    font-size: 0.6em;
}
.crsl_basic .item:hover .img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
.crsl_basic .owl-nav {
    position: absolute;
    top: calc(50% - 25px);
    left: 0;
    z-index: 3;
    width: 100%;
}
.crsl_basic .owl-nav [class*=owl-] {
    position: relative;
    color: white;
    background-color: transparent;
    font-size: 40px;
    margin: 0px;
    padding: 0;
    width: 50px;
    height: 50px;
    text-align: center;
    position: absolute;
    border-radius: 25px;
    top: 0;
    background: #1EB7C8;
    color: white;
    opacity: 1;
    line-height: 0;
}
.crsl_basic .owl-nav [class*=owl-] i {
    line-height: 50px;
}
.crsl_basic .owl-nav [class*=owl-].disabled, .crsl_basic .owl-nav [class*=owl-].disabled:hover {
    opacity: 0.2;
}
.crsl_basic .owl-prev {
    left: 20px;
}
.crsl_basic .owl-prev i {
    margin-right: 5px;
}
.crsl_basic .owl-next {
    right: 20px;
}
.crsl_basic .owl-next i {
    margin-left: 5px;
}
.crsl_basic .owl-nav {
    opacity: 0;
}
.crsl_basic:hover .owl-nav {
    opacity: 1;
}
.crsl_basic .owl-dots {
    position: relative;
}
.grid_basic:after, .grid_basic:before {
    content: "";
    display: block;
    clear: both;
}
.grid_basic .item {
    display: block;
    position: relative;
    padding: 8px;
}
@media (max-width: 575px ) {
    .grid_basic .item.col-xxs-6:nth-child(2n+1) {
        clear: left;
    }
    .grid_basic .item.col-xxs-4:nth-child(3n+1) {
        clear: left;
    }
    .grid_basic .item.col-xxs-3:nth-child(4n+1) {
        clear: left;
    }
    .grid_basic .item.col-xxs-2:nth-child(6n+1) {
        clear: left;
    }
}
@media (min-width: 576px ) and (max-width: 767px ) {
    .grid_basic .item.col-xs-6:nth-child(2n+1) {
        clear: left;
    }
    .grid_basic .item.col-xs-4:nth-child(3n+1) {
        clear: left;
    }
    .grid_basic .item.col-xs-3:nth-child(4n+1) {
        clear: left;
    }
    .grid_basic .item.col-xs-2:nth-child(6n+1) {
        clear: left;
    }
}
@media (min-width: 768px ) and (max-width: 991px ) {
    .grid_basic .item.col-sm-6:nth-child(2n+1) {
        clear: left;
    }
    .grid_basic .item.col-sm-4:nth-child(3n+1) {
        clear: left;
    }
    .grid_basic .item.col-sm-3:nth-child(4n+1) {
        clear: left;
    }
    .grid_basic .item.col-sm-2:nth-child(6n+1) {
        clear: left;
    }
}
@media (min-width: 992px ) {
    .grid_basic .item.col-md-6:nth-child(2n+1) {
        clear: left;
    }
    .grid_basic .item.col-md-4:nth-child(3n+1) {
        clear: left;
    }
    .grid_basic .item.col-md-3:nth-child(4n+1) {
        clear: left;
    }
    .grid_basic .item.col-md-2:nth-child(6n+1) {
        clear: left;
    }
}
.grid_basic .img_wrapper {
    border-radius: 0px;
    overflow: hidden;
    position: relative;
}
.grid_basic .img {
    -webkit-transition: all 0.1s ease-in-out;
    -khtml-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    width: 100%;
    padding: 0;
    padding-top: 56.25%;
    background-size: cover;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    z-index: 1;
}
.grid_basic .img_tag_wrapper {
    position: absolute;
    left: 0px;
    top: 10px;
    color: white;
    z-index: 2;
}
.grid_basic .img_tag_wrapper > .img_tag {
    display: block;
    padding: 4px 10px;
    margin-bottom: 4px;
    border-radius: 0 4px 4px 0;
}
.grid_basic .img_tag_wrapper > .img_tag {
    border-color: #f56954;
    background-color: #f56954;
}
.grid_basic .img_tag_wrapper > .img_tag.success {
    border-color: #5cb85c;
    background-color: #5cb85c;
}
.grid_basic .img_tag_wrapper > .img_tag.info {
    border-color: #5bc0de;
    background-color: #5bc0de;
}
.grid_basic .img_tag_wrapper > .img_tag.warning {
    border-color: #f0ad4e;
    background-color: #f0ad4e;
}
.grid_basic .img_tag_wrapper > .img_tag.mainc {
    border-color: #1EB7C8;
    background-color: #1EB7C8;
}
.grid_basic .img_tag_wrapper > .img_tag.secc {
    border-color: #f0899e;
    background-color: #f0899e;
}
.grid_basic .content {
    -webkit-transition: all 0.1s ease-in-out;
    -khtml-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    padding: 8px;
}
.grid_basic .title {
    margin: 0;
    font-weight: 700;
    overflow: hidden;
    line-height: 1.5em;
    max-height: 3em;
    white-space: normal;
    text-overflow: initial;
}
.grid_basic .dsc {
    overflow: hidden;
    line-height: 1.8em;
    max-height: 5.4em;
    white-space: normal;
    text-overflow: initial;
    height: auto;
    max-height: 5.4em;
}
.grid_basic .item:hover .img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
.grid_basic .item:hover .title {
    color: #1EB7C8;
}
@media (max-width: 767px ) {
    .grid_basic .item {
        padding: 4px;
    }
}

.artc_basic > [class*=col-lg], .artc_basic > [class*=col-md], .artc_basic > [class*=col-sm], .artc_basic > [class*=col-xs] {
    padding: 0 16px;
}
.artc_basic .img {
    width: 100%;
    padding: 0;
    padding-top: 56.25%;
    background-size: cover;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    z-index: 1;
    border-radius: 8px;
    margin-bottom: 10px;
}

.artc_header {
    padding: 8px;
}
.artc_header .date {
    margin: 0;
}

/*
Table Basic
-------------- */
.form_table .date {
    color: #999;
    line-height: 1.4em;
}
.form_table p {
    line-height: 1.5em;
}
.modal-body h4 {
    color: #1EB7C8;
    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;
}

/* Basic Block
--------------- */
.basic_block {
    border: 1px solid #e6e6e6;
    background-color: white;
}

.basic_block .header {
    color: #4d4d4d;
    border-bottom: 0;
    background-color: transparent;
    border-bottom: 2px solid #1EB7C8;
    position: relative;
}
.basic_block .header h1, .basic_block .header h2, .basic_block .header h3, .basic_block .header h4 {
    font-weight: 700;
}

/* a.underline in
Basic Block Table &
form_column
--------------- */
.form_table a.underline, .form_column a.underline {
    color: #0275d8;
}
/*
Page In
Sidebar Title
--------------- */
.pi_ttwr .title_special {
    margin: 0;
}
.pi_ttwr .title_main {
    margin-top: 10px;
    margin-bottom: 10px;
}
.pi_ttwr .input_inline {
    margin-top: 10px;
}

/* Nav Sidebar Solid
-------------- */
.nav_side_solid li a {
    border-left: 0px solid #1EB7C8;
}
.nav_side_solid li.active a, .nav_side_solid li.active a:hover, .nav_side_solid li.active a:focus {
    color: #4d4d4d;
    border-left: 4px solid #1EB7C8;
}

/* Sidebar - Simple
----------------- */
.sdb_simple .header {
    border-bottom: 1px solid #e6e6e6;
    color: #999;
    padding: 10px 8px;
    padding-left: 8px;
}
.sdb_simple .header p {
    margin: 0;
}
.sdb_simple ul {
    padding: 6px 0;
}
.sdb_simple li {
    padding: 8px;
    font-size: 14px;
    border-bottom: 1px solid rgba(230, 230, 230, 0.5);
    background: #fff;
    margin-bottom: 4px;
}
.sdb_simple li .link {
    display: block;
}
.sdb_simple li .title {
    color: #999;
    text-align: left;
    overflow: hidden;
    line-height: 1.8em;
    max-height: 5.4em;
    white-space: normal;
    text-overflow: initial;
    margin: 0;
}
.sdb_simple li .date {
    margin: 0;
}
.sdb_simple li {
    -webkit-transition: all 0.1s ease-in-out;
    -khtml-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.sdb_simple li:hover {
    -webkit-transform: translateX(8px);
    -moz-transform: translateX(8px);
    -ms-transform: translateX(8px);
    transform: translateX(8px);
}
.sdb_simple li:hover .title {
    color: #f0899e;
}

/* Vertical Align Middle
--------------- */
.vam_full {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    top: 0;
    left: 0;
}

.vam_table {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    display: table;
    position: relative;
}
.vam_table .vam_td {
    display: table-cell;
    overflow: hidden;
    vertical-align: middle;
    padding: 15px;
}

.vam_wrapper {
    height: 1px;
}

/* in wrapper
------------ */
.vam_wrapper .vam_table, .vam_full .vam_table {
    position: absolute;
}

/*
-------------- */
.vam_h_100 {
    height: 100%;
}

/*  there are some repeat use class,
    need fix
------------------- */
html, body, p, textarea, input, button, span, select, samp, article, table, tr, td, pre, ul, li, ol, article, strong {
    font-family: "Microsoft JhengHei", sans-serif !important;
    -webkit-text-size-adjust: none;
}

body {
    color: #444;
    background-color: #fff;
}

*, :after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a, a:focus, a:hover {
    text-decoration: none;
}

h1 {
    font-size: 1.5em;
}

h2 {
    font-size: 1.4em;
}

h3 {
    font-size: 1.2em;
}

h4 {
    font-size: 1.25em;
}

h5 {
    font-size: 1em;
}

h6 {
    font-size: 0.8em;
}

p {
    font-size: 1em;
    line-height: 1.8;
}

/*background*/
.bg-black {
    background: #1EB7C8 !important;
}

.bg-blue {
    background: #1EB7C8 !important;
}

.bg-white {
    background: #fff !important;
}

.bg-gray {
    background: #f7f7f7 !important;
}

.bg-yellow {
    background: #ffd700 !important;
}

/*color*/
.blue {
    color: #00AB2F !important;
}

.white {
    color: #fff !important;
}

.blue-2 {
    color: #86c4dd !important;
}

.orange {
    color: #ff9b00 !important;
}

.royal-blue {
    color: #2683d9 !important;
}

.indicate {
    color: #3a00a9 !important;
}

.red {
    color: #e43232 !important;
}

.green {
    color: #27a230 !important;
}

.yellow {
    color: #fff200 !important;
}

.black {
    color: #444 !important;
}

.pink {
    color: #d9534f !important;
}

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

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

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

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

.float-left {
    float: left !important;
}

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

.font-bold {
    font-weight: bold;
}

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

/*margin*/
.margin0 {
    margin: 0 !important;
}

.margin10 {
    margin: 10px !important;
}

.m-right5 {
    margin-right: 5px !important;
}

.m-right10 {
    margin-right: 10px !important;
}

.m-bottom0 {
    margin-bottom: 0 !important;
}

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

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

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

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

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

.m-top0 {
    margin-top: 0 !important;
}

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

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

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

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

/*padding*/
.padding0 {
    padding: 0 !important;
}

.left10 {
    padding-left: 10px !important;
}

.right10 {
    padding-right: 10px !important;
}

.p-top10 {
    padding-top: 10px !important;
}

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

.padding10 {
    padding: 10px !important;
}

.padding15 {
    padding: 15px !important;
}

.padding20 {
    padding: 20px !important;
}

/*col*/
.col-2 {
    width: calc(100% * 1 / 2 - 6px );
    margin-right: 10px;
    margin-bottom: 20px;
    float: left;
}
.col-2:nth-child(2n) {
    margin-right: 0;
}
.col-2:nth-child(2n+1) {
    clear: left;
}

.col-3 {
    width: calc(100% * 1 / 3 - 7px );
    margin-right: 10px;
    margin-bottom: 20px;
    float: left;
}
.col-3:nth-child(3n) {
    margin-right: 0;
}
.col-3:nth-child(3n+1) {
    clear: left;
}

.col-4 {
    width: calc(100% * 1 / 4 - 8px );
    margin-right: 10px;
    margin-bottom: 20px;
    float: left;
}
.col-4:nth-child(4n) {
    margin-right: 0;
}
.col-4:nth-child(4n+1) {
    clear: left;
}

@media (max-width: 767px ) {
    .col-1-mo {
        width: calc(100% * 1 / 1 - 1px );
        margin-right: 10px !important;
        margin-bottom: 20px;
        float: left;
        clear: none !important;
    }
    .col-1-mo:nth-child(1n) {
        margin-right: 0 !important;
    }
    .col-1-mo:nth-child(1n+1) {
        clear: left !important;
    }
}
@media (max-width: 767px ) {
    .col-2-mo {
        width: calc(100% * 1 / 2 - 6px );
        margin-right: 10px !important;
        margin-bottom: 20px;
        float: left;
        clear: none !important;
    }
    .col-2-mo:nth-child(2n) {
        margin-right: 0 !important;
    }
    .col-2-mo:nth-child(2n+1) {
        clear: left !important;
    }
}
@media (max-width: 767px ) {
    .col-3-mo {
        width: calc(100% * 1 / 3 - 7px );
        margin-right: 10px !important;
        margin-bottom: 20px;
        float: left;
        clear: none !important;
    }
    .col-3-mo:nth-child(3n) {
        margin-right: 0 !important;
    }
    .col-3-mo:nth-child(3n+1) {
        clear: left !important;
    }
}
@media (max-width: 767px ) {
    .col-4-mo {
        width: calc(100% * 1 / 4 - 8px );
        margin-right: 10px !important;
        margin-bottom: 20px;
        float: left;
        clear: none !important;
    }
    .col-4-mo:nth-child(4n) {
        margin-right: 0 !important;
    }
    .col-4-mo:nth-child(4n+1) {
        clear: left !important;
    }
}
.col-6 {
    width: calc(100%/2 - 10px);
    margin-left: calc(10px * 2 / 2);
    margin-bottom: calc(10px * 2 / 2);
    float: left;
}

.col-4 {
    width: calc(100%/4 - 10px);
    margin-left: calc(5px * 4 / 2);
    margin-bottom: calc(10px * 4 / 2);
    float: left;
}

.col-3 {
    width: calc(100%/3 - 7px);
    margin-right: 10px;
    margin-bottom: 30px;
    float: left;
}

.col-3:nth-child(3n+3) {
    margin-right: 0;
}

.col-5 {
    width: calc(100%/5 - 15px);
    margin-left: calc(4px * 5 / 2);
    float: left;
}

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

/*border*/
.border-bottom-1px {
    border-bottom: 1px solid #dcdcdc !important;
}

.border-bottom-2px {
    border-bottom: 2px solid #dcdcdc !important;
}

.border-radius0 {
    border-radius: 0 !important;
}

/*modal*/
.modal-content {
    border-radius: 0;
}

.form_control_default {
    border-radius: 0;
    font-size: 16px;
}

.modal.modal-fullscreen .modal-dialog, .modal.modal-fullscreen .modal-content {
    overflow: auto;
}

/*form*/
.form_input {
    padding: 10px 16px;
    height: 45px;
}

.checkbox input.checkbox_top[type=checkbox] {
    margin-top: 10px;
}

/*-------crumb------*/
.crumb {
    list-style-type: none;
    margin-bottom: 0;
    padding: 5px 0;
}

.crumb li, .crumb li a {
    color: #fff;
}

.crumb li a:hover {
    color: #cbcbcb;
}

.crumb li {
    display: inline-block;
}

.crumb .fa-angle-right {
    padding: 0 5px;
}

/*-------crumb end------*/
/*----Footer----*/
.footer_line {
    padding: 10px;
    min-height: 160px;
}

.footer .bg-blue {
    padding: 10px 0;
}

.footer_fb {
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    width: 100%;
}

.footer_fb img {
    padding-right: 5px;
}

.footer_contact {
    border: 2px solid #fff;
    padding: 10px;
    color: #fff;
    width: 100%;
}

.footer_service {
    padding: 10px;
    width: 100%;
    min-height: 160px;
}

.copyright {
    text-align: center;
    padding: 10px;
}
.copyright a {
    color: inherit;
}

/*----Footer end----*/
/*----course----*/
.course {
    background-size: cover !important;
    background-position: center !important;
    padding: 60px 0;
}

.course_score {
    color: #fff200;
}

.c_score_qty {
    color: #e0e0e0;
}

.course_preview_top {
    border: 1px solid #fff;
    border-radius: 0;
    margin-top: 10px;
}

.course_preview_top:hover {
    background: rgba(49, 49, 49, 0.5);
}

/*sidebar*/
.leftSidebar {
    float: left;
    position: relative;
}

.contentBar {
    float: left;
    position: relative;
}

.rightSidebar {
    float: right;
    position: relative;
}

.course_box {
    margin: 0 0 30px 0;
    background: #f7f7f7;
    border-radius: 5px;
}

.course_preview a {
    position: relative;
    display: block;
}

.course_preview_i_bg {
    background: rgba(0, 0, 0, 0.3);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.course_preview_i_bg:hover {
    background: rgba(0, 0, 0, 0.5);
}

.course_preview_i {
    position: absolute;
    top: 50%;
    left: 50%;
    background: rgba(0, 0, 0, 0.5);
    padding: 22px 35px;
    border-radius: 50%;
    font-size: 3.1em;
    width: 100px;
    height: 100px;
    color: #fff;
    margin-top: -46px;
    margin-left: -50px;
}

.course_preview_text {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    font-size: 0.8em;
    margin-top: 20px;
    margin-left: -23px;
}

.course_others h2 {
    margin-top: 0;
}

.course_promotion {
    background: #000;
    color: #fff;
    padding: 5px 10px;
}

.c_rightbar_infor {
    padding: 10px 15px 20px;
}

.cri_price {
    font-weight: bold;
}

.cri_price .cri_original_price {
    font-size: 0.7em;
    padding-left: 10px;
    color: #929292;
    text-decoration: line-through;
}

.cri_item {
    padding-bottom: 5px;
}

.cri_item ul {
    padding-left: 20px;
}

.course_collected {
    display: none;
}

.courselike_button.cl_selected .course_heart {
    color: #fff;
    background-color: #ff7d7d;
    border: 1px solid #ff7d7d;
}

.courselike_button.cl_selected .course_heart {
    color: #fff;
}

.courselike_button.cl_selected .course_collected {
    display: inline;
}

.courselike_button.course_collect.cl_selected {
    color: #73ce00;
    background: transparent;
    border: none;
}

.courselike_button.course_collect.cl_selected .course_heart {
    color: #73ce00;
    background-color: #73ce00;
}

.course_gocart {
    margin-top: 10px;
    border-top: 1px solid #ccc;
}

.course_gocart .btn {
    padding: 10px 12px;
    border-radius: 0;
    margin-top: 12px;
}

.cg_mycart, .cg_mycart:hover, .cg_mycart:focus {
    border: 1px solid #1EB7C8;
    background: #fff;
    color: #1EB7C8;
}

.cg_gobuy, .cg_gobuy:hover, .cg_gobuy:focus {
    background: #1EB7C8;
    color: #fff;
}

.course_gocart .btn:hover {
    opacity: 0.8;
}

.cg_visitors {
    text-align: center;
    margin: 0 auto;
    color: #636363;
    display: block;
    text-decoration: underline;
    margin-top: 5px;
}

.cg_visitors:hover {
    text-decoration: underline;
    color: #9a9a9a;
}

/* Center Contetn */
.course_content p {
    line-height: 2;
}

.course_others {
    padding: 40px;
    margin-top: 30px;
}
@media (max-width: 767px ) {
    .course_others {
        padding: 15px;
        margin-top: 15px;
    }
}

/* Course Overview */
.course_overview {
    margin-top: 30px;
}

.course_overview h2 span {
    font-size: 0.6em;
    padding-left: 10px;
}

.course_item {
    border-top: 2px solid #1EB7C8;
}

.ci_item {
    display: flex;
    background: #fff;
    width: 100%;
    padding: 10px 15px;
    align-items: center;
}

.ci_head {
    display: block;
    flex: 1;
    color: #444;
}

.ci_head img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.ci_total_time {
    display: block;
    color: #aaa;
    font-size: 0.95em;
}

.ci_total_time i {
    font-size: 1.3em;
}

.course_item .ci_item:nth-child(even) {
    background: #f7f7f7;
}

.ci_item:nth-child(n+11) {
    display: none;
}

#readmore_course {
    padding: 10px;
    border-radius: 0;
}

.ci_free_to_watch {
    padding: 2px 8px;
    margin-right: 8px;
}

/* average */
.course_average_score {
    margin-top: 40px;
}

.cas_number {
    font-size: 8em;
    line-height: 1.2em;
}

.cas_star {
    color: #1EB7C8;
    font-size: 1.5em;
}

.cas_digital {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-right: 30px;
    margin-top: 8px;
}

.cas_progressbar {
    display: flex;
    flex: 1 0 auto;
    min-width: 1px;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.cas_d_p {
    display: flex;
}

.casp_ratio {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-bottom: 5px;
    width: 100%;
}

.progress {
    display: block;
    width: 100%;
    margin-bottom: 0;
    margin-right: 15px;
    border-radius: 0;
}

.casp_star {
    white-space: nowrap;
    display: inline-block;
    color: #1EB7C8;
    font-size: 1.5em;
}

.progress-bar {
    background-color: #1EB7C8;
}

.cas_gorate {
    display: block;
    margin: auto;
    border-radius: 0;
}

/* student_comment */
.course_student_comment {
    margin-top: 40px;
}

.csc_item {
    background: #f7f7f7;
    padding: 20px;
    display: flex;
    margin-bottom: 20px;
    position: relative;
}

.csc_mug_shot {
    margin-right: 10px;
    width: 49px;
    height: 49px;
}

.csc_name_time {
    flex: 0 0 auto;
    min-width: 1px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    flex-direction: column;
    margin-right: 10px;
    width: 25%;
}

.csc_time {
    color: #b1b1b1;
}

.csc_name {
    color: #444;
    font-size: 1.1em;
    line-height: 1.2;
}

.csc_comment p {
    margin-bottom: 0;
    font-size: 1.1em;
}

.csc_readmore {
    display: block;
    margin: auto;
    border-radius: 0;
}

.course-top-bar {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 5000;
    left: 0;
    padding: 10px;
    display: flex;
}

.csc_item_reply {
    margin-left: 50px;
}

.csc_item_reply:before {
    content: "";
    position: absolute;
    top: -15px;
    left: 29px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 15px 15px;
    border-color: transparent transparent #f7f7f7 transparent;
}

/*----H_main_content end----*/
/*---- Watch Course ----*/
/* Course Menu */
.course_navbar .navbar-toggle .icon-bar {
    background-color: #fff;
}

body.off-canvas-nav-left nav.course_navbar .navbar-toggle {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 5;
    margin: 0;
    background: none;
}

body.off-canvas-nav-left nav.course_navbar .navbar-collapse {
    left: -300px;
    right: auto;
    border: none;
    border-right: 1px solid #e7e7e7;
}

nav.course_navbar .navbar-collapse {
    display: block !important;
    position: fixed;
    top: 0;
    right: -300px;
    bottom: 0;
    z-index: 10000;
    width: 300px;
    height: 100vh !important;
    margin: 0;
    background-color: inherit;
    border: none;
    box-shadow: none;
    border-left: 1px solid #e7e7e7;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
}

body.off-canvas-nav-left.out {
    -webkit-transform: translate3d(300px, 0, 0) !important;
    transform: translate3d(300px, 0, 0) !important;
}

body.off-canvas-nav-left.out nav.course_navbar .navbar-collapse {
    box-shadow: -6px 0 50px 0 rgba(0, 0, 0, 0.75);
}

nav.course_navbar .navbar-nav {
    margin: 0 -15px 7.5px -15px;
}

nav.course_navbar .navbar-nav {
    z-index: 10010;
}

.course_navbar .navbar-nav > li {
    float: none;
}

.course_navbar .navbar-nav {
    float: none;
}

.course_navbar .navbar-nav > li > a {
    font-size: 1.4em;
}

.course_navbar .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}

.course_navbar .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

nav.course_navbar .navbar-collapse .dropdown .dropdown-menu li a, nav .navbar-collapse .dropdown .dropdown-menu li.dropdown-header {
    padding: 5px 15px 5px 25px;
    color: #777777;
}

.course_navbar .navbar-collapse.in {
    overflow-y: auto !important;
}

.course_navbar .navbar-nav > li > a {
    color: #777;
}

.course_navbar .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #1EB7C8;
}

.course_navbar .navbar-nav > .active > a > .course_menu_icon, .navbar-default .navbar-nav > .active > a:hover > .course_menu_icon, .navbar-default .navbar-nav > .active > a:focus > .course_menu_icon {
    color: #fff;
}

.course_menu_text {
    flex: 1;
}

.course_menu_icon {
    color: #1EB7C8;
    font-size: 1.3em;
}

.course_navbar .ci_free_to_watch {
    font-size: 0.5em;
}

.course_navbar .not_purchased {
    display: flex;
    align-items: center;
    font-size: 1.4em;
    color: #c7c7c7;
    padding: 10px 15px;
}

.not_purchased .course_menu_icon {
    color: #c7c7c7;
}

/* goback-course */
.goback-course, .goprevious-course, .gonext-course {
    position: fixed;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    border: 1px solid #fff;
    width: 88px;
}

.goback-course {
    top: 10px;
}

.goprevious-course {
    top: 58px;
}

.gonext-course {
    top: 106px;
}

/* recording */
.recording .vjs-poster {
    background-size: 50%;
}

/* pure_text */
.pure_text {
    position: relative;
}

.pure_text ul li {
    font-size: 1.2em;
}

/*pdf*/
.pdfobject-container {
    width: 100%;
}

.pdfobject {
    border: solid 1px #666;
}

/*---- Watch Course end----*/
/*---- mycourse ----*/
.mycourse {
    background: #000;
    padding: 30px 0;
}

.mycourse_score {
    display: block;
    color: #fff200;
    font-size: 1.5em;
}

.mycourse_score:hover, .mycourse_score:focus {
    color: #fff200;
    opacity: 0.8;
}

.mycourse_score_2 {
    font-size: 1.2em;
}

.continue_watch {
    border-radius: 0;
    padding: 10px 20px;
    font-size: 1.2em;
}

.currently_schedule {
    font-size: 1.2em;
    line-height: 1.8em;
}

.mycourse_progress_bar {
    margin-top: 40px;
}

.mycourse_tabs > li {
    width: 100%;
}

.mycourse_tabs > li > a {
    border-radius: 0;
    font-size: 1.1em;
    background: #f7f7f7;
    color: #444;
}

.mycourse_tabs > li.active > a, .mycourse_tabs > li.active > a:hover, .mycourse_tabs > li.active > a:focus {
    color: #1EB7C8;
    background-color: #f7f7f7;
}

.mycourse_tabs > li + li {
    margin-left: 0;
}

.mycourse_tabs > li {
    width: 100%;
}

.course_item .mci_item:nth-child(even) {
    background: #f7f7f7;
}

.mci_item {
    display: flex;
    background: #fff;
    width: 100%;
    padding: 10px 15px;
    align-items: center;
}

.mycourse_item .active {
    background: #1EB7C8;
}

.mycourse_item .active .ci_head, .mycourse_item .active .ci_total_time {
    color: #fff;
}

#hearts-existing {
    color: #1EB7C8;
}

#hearts-existing span {
    font-family: "FontAwesome" !important;
    font-size: 1.5em;
    padding-right: 5px;
    cursor: pointer;
}

.modal-fullscreen .modal-body {
    font-size: 1.3em;
}

.modal-fullscreen .modal-body ul li {
    font-size: 1.3em;
}

.download_file_item {
    display: flex;
    text-align: center;
    color: #fff;
    font-size: 1.1em;
    line-height: 1.4;
    background: #1EB7C8;
    flex-direction: column;
    padding: 28px 12px 20px 12px;
}

.d_f_i_font {
    font-size: 3em;
    display: flex;
    flex-direction: column;
}

.download_file_item:hover {
    background: #eee;
    color: #444;
}

.d_f_i_name {
    display: flex;
    align-items: center;
    height: 42px;
    justify-content: center;
}

.course_all_item .cai_prog {
    width: 15%;
    text-align: center;
}
.course_all_item .cai_prog h3 {
    font-weight: 700;
    font-size: 1.2em;
}
.course_all_item .cai_prog .prog {
    font-size: 36px;
    vertical-align: middle;
    color: #4d3e33;
}
@media (max-width: 767px) {
    .course_all_item .cai_prog .prog {
        font-size: 26px;
    }
}
.course_all_item .cai_t_description {
    margin-right: 0;
}
@media (max-width: 991px) {
    .course_all_item .cai_text {
        width: 70%;
    }
    .course_all_item .cai_prog {
        width: 25%;
        text-align: center;
    }
    .course_all_item .cai_prog h3 {
        margin: 0;
    }
    .course_all_item .cai_prog .prog {
        font-size: 26px;
    }
}
@media (max-width: 575px) {
    .course_all_item .cai_prog .prog {
        font-size: 22px;
    }
}

/*----mycourse end----*/
/*---- mycourse + love list ----*/
.mycourse-list {
    background: #000;
    padding: 30px 0;
}

.mycourse-list_item .cp_text p {
    font-size: 1.3em;
}

.mycourse-list_item .cp_text {
    height: 150px;
}

.search_mycourse_btn {
    padding: 9px 12px;
}

.pagination {
    display: inline-block;
    margin: 0;
}

.pagination a {
    color: #1EB7C8;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color 0.3s;
    border: 1px solid #1EB7C8;
}

.pagination a:hover {
    background: #f7f7f7;
}

.pagination a.active {
    background-color: #1EB7C8;
    color: white;
}

.pagination-number a {
    border: 1px solid transparent;
}

/*----mycourse + love list end----*/
/*---- All Course ----*/
.course_all_item {
    display: flex;
    border: 1px solid #ccc;
    margin-bottom: 30px;
    position: relative;
}

.cai_pic {
    width: 30%;
    position: relative;
}

.cai_pic figure {
    overflow: hidden;
    width: 100%;
    height: auto;
}

.cai_pic figure img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.course_all_item:hover .cai_pic figure img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.cai_text {
    padding: 15px;
    width: 70%;
    position: relative;
}

.cai_t_head a {
    font-size: 120%;
    display: block;
    color: #4d4d4d;
    font-weight: 700;
}
@media (min-width: 768px ) {
    .cai_t_head a {
        line-height: 1.8em;
        max-height: 3.6em;
        overflow: hidden;
    }
}

.cai_t_head a:hover {
    color: #1EB7C8;
}

.cai_t_description {
    font-size: 1.1em;
    margin-right: 170px;
    line-height: 1.5;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.cai_t_price_score {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: #f7f7f7;
    padding: 10px;
}

.cai_t_price_score .cps_qty {
    color: #929292;
}

.cai_t_score {
    font-size: 1.4em;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    color: #fff200;
}

.cai_cri_item {
    position: absolute;
    bottom: 10px;
    font-size: 1.2em;
}

.cai_cri_item ul {
    padding-left: 0;
    margin: 0;
}

.cai_cri_item ul li {
    display: inline-block;
}

.cai_cri_item ul li:before {
    content: "•";
    padding: 0 8px;
}

.cai_t_price_score:after {
    position: absolute;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    content: "";
    width: 0;
    bottom: 0;
    height: 2px;
    background: #f0899e;
    right: 0;
    left: auto;
}

.course_all_item:hover .cai_t_price_score:after {
    width: 100%;
    left: 0;
}

.cai_label {
    background: #1EB7C8;
    padding: 2px 8px;
}

/*----All Course end----*/
/*----teacher----*/
.teacher {
    background-color: #1EB7C8;
    padding: 40px;
    color: #fff;
    font-size: 14px;
}

.teacher_basic {
    font-size: 1.3em;
    padding: 20px 20px 20px 14px;
    border-bottom: gold 4px solid;
    border-top: gold 4px solid;
}

.teacher_pic {
    border: 8px solid #fff;
    margin: 0 auto;
}

.t_b_name, .t_b_name_en {
    font-weight: bolder;
    font-style: italic;
    text-align: center;
}

.t_b_name {
    margin: 0;
    font-size: 2em;
}

.t_b_skill {
    list-style-type: none;
    padding-left: 10px;
    margin: 0;
}

.teacher_text p {
    font-size: 1.8em;
    font-weight: bold;
    font-style: italic;
}

.ttl-bar01 {
    position: relative;
    top: -28px;
    text-align: center;
    color: #FFF;
    font-size: 158%;
    font-weight: bold;
    line-height: 1.3;
}

.ttl-bar01 span {
    display: inline-block;
    position: relative;
    padding: 15px 35px;
    background: #444;
}

.ttl-bar01 span:after {
    content: "";
    position: absolute;
    border-top: 17px solid #444;
    border-left: 1px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 14px solid transparent;
    top: 52px;
    left: 25%;
}

/*----teacher end----*/
/*----News----*/
/*list*/
.news-list {
    padding: 40px 0;
}

.news_item_wrapper {
    padding-left: 8px;
    padding-right: 8px;
}
@media (max-width: 575px ) {
    .news_item_wrapper.col-xxs-6:nth-child(2n+1) {
        clear: left;
    }
    .news_item_wrapper.col-xxs-4:nth-child(3n+1) {
        clear: left;
    }
    .news_item_wrapper.col-xxs-3:nth-child(4n+1) {
        clear: left;
    }
    .news_item_wrapper.col-xxs-2:nth-child(6n+1) {
        clear: left;
    }
}
@media (min-width: 576px ) and (max-width: 767px ) {
    .news_item_wrapper.col-xs-6:nth-child(2n+1) {
        clear: left;
    }
    .news_item_wrapper.col-xs-4:nth-child(3n+1) {
        clear: left;
    }
    .news_item_wrapper.col-xs-3:nth-child(4n+1) {
        clear: left;
    }
    .news_item_wrapper.col-xs-2:nth-child(6n+1) {
        clear: left;
    }
}
@media (min-width: 768px ) and (max-width: 991px ) {
    .news_item_wrapper.col-sm-6:nth-child(2n+1) {
        clear: left;
    }
    .news_item_wrapper.col-sm-4:nth-child(3n+1) {
        clear: left;
    }
    .news_item_wrapper.col-sm-3:nth-child(4n+1) {
        clear: left;
    }
    .news_item_wrapper.col-sm-2:nth-child(6n+1) {
        clear: left;
    }
}
@media (min-width: 992px ) {
    .news_item_wrapper.col-md-6:nth-child(2n+1) {
        clear: left;
    }
    .news_item_wrapper.col-md-4:nth-child(3n+1) {
        clear: left;
    }
    .news_item_wrapper.col-md-3:nth-child(4n+1) {
        clear: left;
    }
    .news_item_wrapper.col-md-2:nth-child(6n+1) {
        clear: left;
    }
}

.news_item {
    padding: 4px;
    position: relative;
    margin-bottom: 80px;
    background-color: #1EB7C8;
}

.news_i_date {
    position: absolute;
    left: 50%;
    top: -36px;
    margin-left: -34px;
    width: 76px;
    height: 76px;
}

.news_i_font {
    background: gold;
    border-radius: 50%;
    font-style: italic;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    line-height: 1.5em;
    padding: 18px 10px;
}

.n_i_d_years {
    font-size: 0.8em;
}

.n_i_d_date {
    font-size: 1.25em;
    margin-left: -3px;
}

.news_item .bg-white {
    padding: 34px 15px 15px;
}

.news_item h4, .news_item h4 a {
    color: #444;
    line-height: 1.4em;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.news_item h4:hover, .news_item h4 a:hover {
    color: #1EB7C8;
}

.news_i_text {
    font-size: 1.1em;
    color: #444;
    line-height: 1.4em;
}

.news_i_readqty {
    display: block;
}

.news_item:before, .leftbar:before, .news:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 30px 0 0;
    border-color: #535252 transparent transparent transparent;
}
.news_item:after, .leftbar:after, .news:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 30px 30px;
    border-color: transparent transparent #ffffff transparent;
}

/*leftbar*/
.leftbar {
    background-color: #1EB7C8;
    padding-bottom: 10px;
    position: relative;
}

.leftbar-title {
    padding: 20px 0;
}

.leftbar-title h2 {
    color: #fff;
    text-align: center;
    background-repeat: no-repeat !important;
    background-position: top center !important;
    -webkit-background-size: 20px !important;
    -moz-background-size: 20px !important;
    background-size: 20px !important;
    padding-top: 30px;
    font-size: 1.2em;
    font-weight: bold;
    margin: 0;
}

.leftbar-menu {
    list-style-type: none;
    padding-left: 0;
    margin: 0 10px;
    text-align: center;
}

.leftbar-menu li {
    border-bottom: 2px solid #1EB7C8;
}

.leftbar-menu li:last-child {
    border-bottom: 0;
}

.leftbar-menu li a {
    display: block;
    padding: 12px;
    font-size: 1.1em;
    color: #444;
}

.leftbar-menu li a:hover, .leftbar-menu .active a {
    background: #f7f7f7;
    color: #1EB7C8;
}

/*News in*/
.news {
    background-color: #1EB7C8;
    padding: 30px 15px;
    position: relative;
}

.news_in_top {
    display: flex;
}

.news_title_h1 {
    font-size: 2em;
    font-weight: bold;
    padding-left: 15px;
    margin: 0;
    display: flex;
    align-items: center;
}

.news_text_defalt {
    font-size: 1.15em;
    line-height: 2;
}

.news_text_defalt img {
    max-width: 100%;
    margin: 0 auto;
}

.news_in_date {
    width: 76px;
    height: 76px;
    min-width: 76px;
}

.news_in_readqty {
    display: flex;
    font-size: 1.2em;
}

@media (max-width: 991px) {
    .m-top-60 {
        margin-top: 60px;
    }
}
/*----News end----*/
/*----Login/Register/Personal Info/Cart----*/
.sign_in_text p {
    font-size: 0.8em;
    line-height: 1.5;
}

/*Cart*/
.shopping__cart {
    background: #f7f7f7;
    padding: 20px;
}

.shopping_cart_item {
    display: flex;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.s_c_i_preview {
    width: 25%;
}

.s_c_i_text {
    padding: 0 20px;
    width: 75%;
    position: relative;
}

.s_c_i_text .cai_t_head {
    margin-right: 160px;
}

.s_c_i_price_score {
    position: absolute;
    right: 10px;
    top: 0;
    text-align: right;
    padding: 0;
}

.s_c_i_close {
    position: absolute;
    bottom: 0px;
    font-size: 1.2em;
    background: #f7f7f7;
    padding: 0 5px;
}

.cart_tatal_price {
    font-size: 2.5em;
    line-height: 1;
    display: block;
    float: right;
}

.car_tatal_text {
    font-size: 1.5em;
    line-height: 1.2;
}

.cart_tatal_discount {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.cart_tatal_discount span {
    text-decoration: line-through;
}

.cart_tatal .search_mycourse_btn {
    padding: 12px;
    font-size: 13.5px;
    border: 1px solid #1EB7C8;
}

.shopping__cart_img {
    max-width: 165px;
}

.cart_tatal_right {
    display: flex;
    margin-bottom: 20px;
}

.cart_tatal_right:last-child {
    margin-bottom: 0;
}

.c_t_r_coursepic {
    width: 120px;
    height: 70px;
}

.cart_tatal_right span {
    padding-left: 15px;
    font-size: 1.4em;
    line-height: 1.4;
}

.cart_tatal__right .car_tatal_text {
    font-size: 1.2em;
}

.cart_tatal__right .cart_tatal_price {
    font-size: 2em;
}

.cart_tatal .tab-content .tab-pane {
    padding: 20px 0 0px 0;
}

.finish_checkout {
    font-size: 1.5em;
}

.personal_file_upload {
    position: relative;
    display: inline-block;
}

.personal_file_upload label {
    display: block;
    padding: 6px 12px;
    background: #222;
    border-radius: 0.4em;
    transition: background 0.3s;
}

.personal_file_upload label :hover {
    cursor: pointer;
    background: #000;
}

.personal_file_upload input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    /*font-size: 1;*/
    width: 0;
    height: 100%;
    opacity: 0;
}

.car_pay label {
    display: block;
    max-width: 400px;
    font-size: 14px;
    /*line-height: 20px;*/
}

.car_pay label {
    display: inline-block;
    margin-right: 20px;
    font-size: 1.5em;
    font-weight: 400;
    line-height: 1;
}

.pa_opt_style {
    display: block;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 12px;
    margin: 0px 0 0;
}

.car_table tr td {
    padding-right: 10px;
    font-size: 12.1px;
    line-height: 1.4;
    color: #929292;
}

/*----Login/Register/Personal Info/Cart end----*/
/*----receipt----*/
.receipt_data {
    float: right;
    width: 75%;
    margin: 0;
}

.receipt_data label {
    display: block;
    max-width: 400px;
    font-size: 16.5px;
    line-height: 22px;
}

.car_tatal_input {
    height: 34px;
    width: 100%;
    margin: 10px 0;
    padding-left: 4px;
}

.car_tatal_sect {
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 12px;
    margin: 12px 0 0 -20px;
}

.reveal-if-active {
    display: none;
}

input[type=radio]:checked + .reveal-if-active {
    display: block;
}

/*----receipt end----*/
/*----purchase-history----*/
.purchase-history {
    width: 100%;
    background-color: #ffffff;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.purchase-history tr {
    border-bottom: 1px solid #eee;
}

.purchase-history td, .purchase-history th {
    padding: 10px 5px;
}

.receipt {
    font-size: 1.4em;
}

.purchase_history_collapse {
    cursor: pointer;
}

/*----purchase-history end----*/
/*----coupon----*/
.coupon {
    width: 100%;
    background-color: #ffffff;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.coupon tr {
    border-bottom: 1px solid #eee;
}

.coupon td, .coupon th {
    padding: 10px 5px;
}

.coupon-money {
    display: block;
    color: #1EB7C8;
    white-space: nowrap;
    border: 3px double #1EB7C8;
    border-radius: 8px;
    padding: 8px;
    margin-right: 8px;
}

.usable, .unusable, .executory {
    display: block;
    white-space: nowrap;
    padding: 8px;
    border-radius: 2px;
}

.usable {
    background: #d7f7d3;
}

.unusable {
    background: #efefef;
}

.executory {
    background: #c5f0ff;
}

/*----coupon end----*/
/*----course_introduction----*/
.course_introduction {
    font-size: 1.2em;
    background: #f7f7f7;
    overflow: auto;
}

.course_introduction .info {
    font-size: 0.9em;
    margin-bottom: 10px;
}

.youtube_liubaba {
    position: relative;
    background-color: #1EB7C8;
}

.html5-video-player a {
    font-family: "Microsoft JhengHei", sans-serif !important;
}

.c-movie {
    position: relative;
    padding: 100% 0 0 0;
    overflow: hidden;
}

.c-movie-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

.c-movie-thumbnail img {
    display: block;
    width: 100%;
    height: auto;
}

.c-movie-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*----course_introduction end----*/
/*---Mmbr Message---*/
.message_item {
    padding: 4px;
    position: relative;
    margin-bottom: 40px;
    background-color: #1EB7C8;
}

.message_item:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 30px 0 0;
    border-color: #535252 transparent transparent transparent;
}
.message_item:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 30px 30px;
    border-color: transparent transparent #ffffff transparent;
}

.message_item .bg-white {
    padding: 34px 15px 15px;
}

.message_item h4, .message_item h4 a {
    color: #444;
    line-height: 1.4em;
    font-weight: bold;
    overflow: hidden;
}

.message_date {
    line-height: 1.4em;
    font-weight: bold;
}

.message_item p {
    line-height: 1.4em;
}

.message_item h4:hover, .message_item h4 a:hover {
    color: #1EB7C8;
}

.message_unread {
    color: #18b350;
}

.message_have_read {
    color: #ccc;
}

.message_sort {
    padding: 5px;
    background: #ffd700 !important;
    color: #444 !important;
}

.terms_modal {
    font-size: 1.2em;
}

/*---Mmbr Message end---*/
/*---Search Result---*/
.search_item {
    margin-bottom: 30px;
    border-bottom: 1px solid #f7f7f7;
    padding: 10px;
}

.search_item_head {
    font-size: 1.4em;
}

.search_item p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 10px;
    margin-top: 5px;
}

/*---Search Result end---*/
/*--- Modal Register ---*/
.modal p {
    font-size: 1.3em;
}

/*--- Mobile menu Divide*/
#bs-example-navbar-collapse-1 .divider-text p {
    padding: 10px 15px;
    line-height: 20px;
    font-size: 1.4em;
    color: #777;
    margin: 0;
}

/* fix news */
.H_news_item h4 a {
    max-height: 2.8em;
    display: block;
    overflow: hidden;
}
.H_news_item p {
    line-height: 1.8em;
    max-height: 3.6em;
    overflow: hidden;
}

@media (min-width: 991px) {
    /*coupon*/
    .coupon tr th:nth-child(1) {
        /*min-width: 107px;*/
    }

    .coupon tr th:nth-child(2) {
        min-width: 120px;
    }

    .coupon tr th:nth-child(3) {
        min-width: 120px;
    }

    .coupon tr th:nth-child(5) {
        min-width: 120px;
    }
}
@media (min-width: 768px) {
    .course_top_bar {
        display: none;
    }

    .course_navbar .navbar-toggle {
        display: block;
    }
}
@media (min-width: 1170px) {
    th.purchase-history-course {
        min-width: 265px;
    }
}
@media (max-width: 991px) {
    /*my Course*/
    .course_preview {
        margin-top: 30px;
    }

    .mycourse-list_item .cp_text {
        height: 192px;
    }

    /*footer*/
    .footer_contact {
        margin-bottom: 10px;
    }

    .footer_mid {
        padding-right: 0;
    }

    /*All Course*/
    .course_all_item {
        border-top: 0;
        border-left: 0;
        border-right: 0;
    }

    .cai_t_description {
        display: none;
    }

    .cai_t_price_score {
        position: inherit;
        background: none;
        display: flex;
        flex-direction: column;
        padding-bottom: 0;
        bottom: 0;
    }

    .cai_cri_item {
        display: none;
    }

    .cai_text {
        padding: 0 10px;
    }

    .cai_t_price_score:after {
        height: 0;
    }

    /*My Cart*/
    .s_c_i_price_score {
        position: relative;
    }

    .s_c_i_text .cai_t_head {
        margin-right: 0;
    }

    .s_c_i_price_score {
        position: relative;
        text-align: left;
        right: auto;
    }

    .s_c_i_close {
        position: relative;
        bottom: auto;
        float: right;
    }

    /*coupon*/
    .coupon, .coupon thead, .coupon tbody, .coupon th, .coupon td, .coupon tr {
        display: block;
    }

    .coupon thead tr {
        display: none;
    }

    .coupon tr {
        margin-bottom: 10px;
        background-color: #ffffff;
    }

    .coupon td {
        border: none !important;
        border-bottom: 1px solid #eee !important;
        position: relative;
        padding-left: 100px !important;
        white-space: normal;
        text-align: left;
    }

    .coupon td:before {
        content: attr(data-title);
    }

    .coupon td:before {
        position: absolute;
        top: 10px;
        left: 6px;
        width: 30%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
        color: #1a1a1a;
    }

    .coupon .usable, .coupon .unusable, .coupon .executory {
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 991px) and (min-width: 768px) {
    .news-list {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media (max-width: 767px) {
    /*News*/
    .header_bottom, .header_left, .header_mid, .login, .sign_up {
        display: none;
    }

    .header_top {
        height: 0;
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
    }

    .glyphicon-chevron-right, .glyphicon-chevron-left {
        margin-top: -10px;
    }

    /*Popular Course*/
    .cp_score {
        font-size: 1em;
    }

    .cp_text {
        padding: 13px;
    }

    .cpt_title, .cpt_title a {
        font-size: 1.05em;
    }

    .cp_price {
        bottom: 0;
        right: 0;
        width: 100%;
        text-align: left;
    }

    .cpp_special {
        font-size: 1.2em;
    }

    /*rightSidebar*/
    .H_main_content .rightSidebar {
        display: none;
    }

    .course_heart {
        margin: auto;
    }

    .course_like {
        float: right;
        margin-top: 10px;
    }

    .course_rightsiderbar_ul {
        font-size: 1.3em;
    }

    .cg_visitors {
        text-align: left;
    }

    .course_rightsiderbar_ul {
        float: left;
        padding-left: 20px;
    }

    .course-top-bar .course_gocart, .course-top-bar .cri_price {
        width: 50%;
    }

    .course-top-bar .cg_mycart, .course-top-bar .cg_visitors {
        display: none;
    }

    .course-top-bar .course_gocart, .course-top-bar .cg_gobuy {
        margin-top: 0;
    }

    .course-top-bar .cri_price {
        display: flex;
        align-items: center;
        font-size: 1.2em;
    }

    /*My course*/
    .mycourse_tabs {
        margin-bottom: 20px;
    }

    /*purchase-history*/
    .purchase-history, .purchase-history thead, .purchase-history tbody, .purchase-history th, .purchase-history td, .purchase-history tr {
        display: block;
    }

    .purchase-history thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .purchase-history tr {
        margin-bottom: 10px;
        background-color: #ffffff;
    }

    .purchase-history td {
        border: none !important;
        border-bottom: 1px solid #eee !important;
        position: relative;
        padding-left: 35% !important;
        white-space: normal;
        text-align: left;
    }

    .purchase-history td:before {
        content: attr(data-title);
    }

    .purchase-history td:before {
        position: absolute;
        top: 10px;
        left: 6px;
        width: 30%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
        color: #1a1a1a;
    }

    /*Course List*/
    .cai_t_score {
        font-size: 1em;
    }

    .cai_t_score .cps_qty {
        display: none;
    }

    /*Cart*/
    .shopping__cart {
        margin-left: -15px;
        margin-right: -15px;
        margin-top: 0px;
        margin-bottom: 0px !important;
    }

    .cart_bg_responsive.shopping__cart {
        margin-left: -30px;
        margin-right: -30px;
    }
}
@media (max-width: 600px) {
    .col-3:nth-child(3n+3) {
        margin-right: 10px;
    }

    .col-2-mo {
        width: calc(100%/2 - 7px);
        margin-right: 10px;
    }

    .col-2-mo:nth-child(2n+2) {
        margin-right: 0;
    }

    .col-1-mo {
        width: 100%;
    }
}
@media (max-width: 540px) {
    h2 {
        font-size: 1.25em;
    }

    h3 {
        font-size: 1.3em;
    }

    p {
        font-size: 0.9em;
        line-height: 1.6;
    }

    .footer_fbname {
        display: none;
    }

    .footer_fb img {
        margin: auto;
    }

    /* Average*/
    .cas_d_p {
        display: block;
    }

    .cas_number {
        font-size: 4em;
        line-height: 1em;
    }

    .cas_digital {
        display: flex;
        align-items: baseline;
    }

    .csc_mug_shot {
        display: none;
    }

    /*All Course*/
    .cai_t_head a {
        font-size: 1.3em;
        display: block;
    }

    .teacher_text p {
        font-size: 1.5em;
        margin-top: 20px;
    }

    /*teacher*/
    .teacher {
        padding: 12px;
    }

    /*mycourse*/
    .mycourse-list {
        padding: 10px 0;
    }

    /*news*/
    .news-list {
        padding: 15px 0;
    }

    .news_item {
        margin-bottom: 60px;
    }

    .news_title_h1 {
        font-size: 1.5em;
    }

    /*Watch Course*/
    .goprevious-course, .gonext-course {
        display: none;
    }

    .goback-course, .goprevious-course, .gonext-course {
        padding: 8px 12px;
        width: auto;
    }

    /*Couse List*/
    .cai_label {
        float: none;
        display: inline-block;
        margin-top: 4px;
    }

    .cai_t_price_score {
        float: none;
        right: unset;
        bottom: unset;
        padding: 6px 0;
    }

    .cai_t_score {
        display: none;
    }

    .owl-prev, .owl-next {
        width: 30px;
        height: 30px;
        line-height: 20px;
        font-size: 1.5em;
    }
}
@media (max-width: 466px) {
    .footer_line {
        min-height: 180px;
    }
}
@media (max-width: 400px) {
    .cart_tatal_right {
        font-size: 0.8em;
    }

    .csc_name_time {
        width: 29%;
    }

    .csc_item_reply {
        margin-left: 0;
    }
}
@media (max-width: 320px) {
    .cpp_original {
        display: none;
    }

    .footer_line {
        min-height: 175px;
    }
}
/*!
* Bootstrap Off-Canvas Nav (http://github.com/marcandrews/bootstrap-off-canvas-nav)
* Copyright (c) 2015 Marc Andrews
* Licensed under the MIT license
*/
html.out {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

body {
    position: absolute;
    left: 0;
    right: 0;
    overflow-x: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

body.out {
    -webkit-transform: translate3d(-300px, 0, 0) !important;
    transform: translate3d(-300px, 0, 0) !important;
    overflow: hidden;
}

body.off-canvas-nav-left.out {
    -webkit-transform: translate3d(300px, 0, 0) !important;
    transform: translate3d(300px, 0, 0) !important;
}

.navbar-icon {
    width: 20px;
    vertical-align: text-bottom;
    margin-right: 5px;
}

body.out .navbar-collapse {
    opacity: 1;
    filter: alpha(opacity=100);
}

@media (min-width: 768px) {
    .navbar {
        display: none;
    }
}
@media (max-width: 767px) {
    .container-fluid > .navbar-collapse,
    .container > .navbar-collapse {
        margin-left: 0;
        margin-right: 0;
    }

    nav .navbar-nav {
        margin: 0 -15px 7.5px -15px;
    }

    body.out nav .navbar-toggle {
        background-color: #ddd;
    }

    body.off-canvas-nav-left nav .navbar-toggle {
        float: left;
        margin-left: 15px;
        margin-right: 0;
        background: #1EB7C8;
        border-radius: 0;
        border: 0;
    }

    nav .navbar-toggle .icon-bar {
        -webkit-transition: all 500ms ease-in-out;
        transition: all 500ms ease-in-out;
    }

    body.out nav .navbar-toggle .icon-bar:nth-of-type(2) {
        -webkit-transform: translate3d(0, 6px, 0) rotate(45deg);
        transform: translate3d(0, 6px, 0) rotate(45deg);
    }

    body.out nav .navbar-toggle .icon-bar:nth-of-type(3) {
        opacity: 0;
        filter: alpha(opacity=0);
    }

    body.out nav .navbar-toggle .icon-bar:nth-of-type(4) {
        -webkit-transform: translate3d(0, -6px, 0) rotate(-45deg);
        transform: translate3d(0, -6px, 0) rotate(-45deg);
    }

    nav .navbar-collapse {
        display: block !important;
        position: absolute;
        top: -2px;
        right: -300px;
        bottom: 0;
        z-index: 10000;
        width: 300px;
        height: 100vh !important;
        margin: 0;
        background-color: inherit;
        border: none;
        box-shadow: none;
        border-left: 1px solid #e7e7e7;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        -webkit-transition-property: opacity, -webkit-transform;
        transition-property: opacity, transform;
    }

    nav .navbar-nav {
        z-index: 10010;
    }

    body.out nav .navbar-collapse {
        box-shadow: -10px 0px 50px 0px rgba(0, 0, 0, 0.75);
    }

    nav.navbar-fixed-top .navbar-collapse {
        max-height: none;
    }

    body.out nav.navbar-fixed-top .navbar-collapse {
        box-shadow: -10px 0px 50px 0px rgba(0, 0, 0, 0.75);
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    body.off-canvas-nav-left nav .navbar-collapse {
        left: -300px;
        right: auto;
        border: none;
        border-right: 1px solid #e7e7e7;
    }

    body.off-canvas-nav-left.out nav .navbar-collapse {
        box-shadow: -6px 0 50px 0 rgba(0, 0, 0, 0.75);
    }

    body.off-canvas-nav-left.out nav.navbar-fixed-top .navbar-collapse {
        box-shadow: 10px 0px 50px 0px rgba(0, 0, 0, 0.75);
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    nav .navbar-collapse .dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
        background-color: #eee !important;
    }

    nav .navbar-collapse .dropdown > .dropdown-menu,
    nav .navbar-collapse .dropdown > .dropdown-menu > .dropdown-submenu > .dropdown-menu {
        display: block !important;
        position: static;
        float: none;
        max-height: 0;
        margin: 0;
        padding: 0;
        border: none;
        box-shadow: none;
        overflow: hidden;
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }

    nav .navbar-collapse .dropdown .dropdown-menu li a,
    nav .navbar-collapse .dropdown .dropdown-menu li.dropdown-header {
        padding: 5px 15px 5px 25px;
        color: #777777;
    }

    nav .navbar-collapse .dropdown.open .dropdown-menu,
    nav .navbar-collapse .dropdown.open .dropdown-menu > .dropdown-submenu.open > .dropdown-menu {
        max-height: 100vh;
    }

    nav .dropdown-toggle > .caret {
        -webkit-transform: rotate(0) !important;
        -ms-transform: rotate(0) !important;
        transform: rotate(0) !important;
    }

    nav .open > .dropdown-toggle > .caret {
        -webkit-transform: rotate(180deg) !important;
        -ms-transform: rotate(180deg) !important;
        transform: rotate(180deg) !important;
    }

    nav .navbar-form {
        margin-top: 0;
        margin-bottom: 0;
        border: none;
        box-shadow: none;
    }

    .navbar-default {
        border-color: #ddd;
        border-top: 2px solid #1EB7C8;
        margin-bottom: 0;
    }

    .navbar-default .navbar-toggle .icon-bar {
        background-color: #fff;
    }

    .navbar-brand {
        padding: 6px 15px;
    }

    .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
        background-color: #1EB7C8;
    }

    .navbar-nav > li > a {
        font-size: 1.4em;
    }

    .search_mobile {
        margin-bottom: 80px !important;
    }
}
@media (max-width: 375px) {
    body.out {
        -webkit-transform: translate3d(-100vw, 0, 0) translate3d(74px, 0, 0);
        transform: translate3d(-100vw, 0, 0) translate3d(74px, 0, 0);
    }

    body.off-canvas-nav-left.out {
        -webkit-transform: translate3d(100vw, 0, 0) translate3d(-74px, 0, 0);
        transform: translate3d(100vw, 0, 0) translate3d(-74px, 0, 0);
    }

    nav .navbar-collapse {
        right: calc((100vw - 74px) * -1);
    }
}
/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-carousel, .owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.owl-carousel {
    display: none;
    width: 100%;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: none;
}

.no-js .owl-carousel, .owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

.owl-carousel .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.owl-height {
    transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

/* common & components */
/* common
------------------------ */
.navbar {
    -webkit-transition: all 0.2s ease-in-out;
    -khtml-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    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.d_navbar {
    display: block !important;
    margin-bottom: 0;
    position: relative;
}
@media (max-width: 767px ) {
    .navbar.d_navbar {
        display: none !important;
    }
}

.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;
}

.dsk_menu_inner {
    margin: 0 auto;
    max-width: 1200px;
}

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

.navbar-header {
    float: unset;
}

@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
----------------------- */
/* components
------------------------ */
/* Mobile - Menu */
.js-offcanvas {
    padding: 0;
    padding-top: 50px;
    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 {
    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: #4d4d4d;
}
.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: #1EB7C8;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.js-offcanvas ul.navbar-nav > .dropdown.open > a:after, .js-offcanvas .list-unstyled > .dropdown.open > a:after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu {
    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: #4d4d4d !important;
    padding: 12px !important;
    border-left: 4px solid #1EB7C8;
}
.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, 236, 213, 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: #50daae;
    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: #1EB7C8;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-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 {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-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: #1EB7C8;
}
.cart_btn > i {
    color: #fff;
    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 #1EB7C8;
    color: #1EB7C8;
    top: 10%;
    right: 10%;
    font-size: 12px;
}
.btn_inner_absolute.mini span.inner {
    border: 1px solid #444;
    background-color: #cef5e8;
    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, 236, 213, 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 #e6e6e6;
}
.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;
}
.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", 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;
    white-space: normal;
    text-overflow: initial;
}
.cart_popup .footer {
    padding: 4px;
    border-top: 1px solid #e6e6e6;
}
.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: #1EB7C8;
    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: #1EB7C8;
    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: 240px;
    float: right;
    padding: 8px 0 8px;
}
.s_f_wrapper input[type=search]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}
.s_f_wrapper #s_form {
    background-color: transparent;
    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;
    -webkit-transition: 0.3s;
    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.svg);
}
.s_f_wrapper #s_form:hover, .s_f_wrapper #s_form:focus {
    background-image: url(../images/common/ic_search_hover.svg);
}
.s_f_wrapper #s_form:focus {
    width: 240px;
    cursor: text;
}
@media (max-width: 767px ) {
    .s_f_wrapper {
        position: fixed;
        right: 0px;
        top: 60px;
        padding-left: 10px;
        padding-right: 10px;
        margin: 0;
        max-width: unset;
        color: #4d4d4d;
    }
    .s_f_wrapper:hover, .s_f_wrapper:focus {
        width: 100%;
    }
    .s_f_wrapper #s_form {
        background-position: calc(56px / 2 - 12px) center;
        width: 56px;
        height: 56px;
        padding: calc(56px / 2 - 12px) calc(56px / 2 - 5px);
        border-radius: calc(56px / 2);
        float: right;
        box-shadow: 0 3.2px 10px rgba(0, 0, 0, 0.32);
        background-color: #1EB7C8;
    }
    .s_f_wrapper #s_form:hover, .s_f_wrapper #s_form:focus {
        width: 100%;
        background-color: #f1f1f1;
    }
    .s_f_wrapper #s_form:focus {
        padding-left: 32px;
    }
}
@media (min-width: 768px ) {
    .s_f_wrapper #s_form {
        color: #4d4d4d;
        border: 0px solid #1EB7C8;
        background-color: #1EB7C8;
        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: transparent;
        border: 1px solid #e6e6e6;
    }
    .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%;
    height: 28px;
    line-height: 28px;
    border-radius: 14px;
    color: #4d4d4d;
    border: 0px solid #1EB7C8;
    background-color: #f1f1f1;
}
.s_desktop .search_button {
    position: absolute;
    right: 0px;
    width: 28px;
    height: 28px;
    border-radius: 0 14px 14px 0;
    border: 0px solid #1EB7C8;
    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);
}
.s_desktop .search_button:hover {
    background-color: #f1f1f1;
}

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

/* Top Nav
------------------ */
.top_nav {
    background-color: #f0899e;
}
.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;
}
.nav_m_btns > li {
    display: block;
    float: right;
}
.nav_m_btns > li a {
    display: block;
    width: 40px;
    text-align: center;
    color: #1EB7C8;
}
.nav_m_btns > li a i {
    font-size: 20px;
    line-height: 50px;
}
@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 #1EB7C8;
    color: #1EB7C8;
    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: #1EB7C8;
    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: rgba(255, 255, 255, 0.8);
    line-height: 1em;
    border-right: 1px solid rgba(255, 255, 255, 0.8);
}
.menu_s > li > a {
    display: block;
    color: inherit;
    font-size: inherit;
}
.menu_s > li > a:hover {
    text-decoration: underline;
}
.menu_s > li:nth-last-child(1) {
    border-right: 0px;
}

/* 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 {
        /* 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;
        -webkit-transition: all 0s ease-in-out;
        -khtml-transition: all 0s ease-in-out;
        -moz-transition: all 0s ease-in-out;
        -ms-transition: all 0s ease-in-out;
        -o-transition: all 0s ease-in-out;
        transition: all 0s ease-in-out;
    }
    .navbar-nav .dropdown > a {
        position: relative;
        padding-right: 24px;
    }
    .navbar-nav .dropdown > a:after {
        display: block;
        content: " ";
        position: absolute;
        width: 0;
        height: 0;
        right: 10px;
        top: calc(50% - 2px);
        border-color: transparent;
        border-style: solid;
        border-width: 5px 5px 0 5px;
    }
    .navbar-nav .dropdown:nth-last-child(1) > .dropdown-menu {
        right: 0;
        left: unset;
    }
    .navbar-nav .dropdown-menu {
        top: calc(100% + 0px);
        left: 0;
        border-width: 0px;
        border-radius: 0;
        min-width: 160px;
        z-index: 1001;
    }
    .navbar-nav .dropdown-menu > li > a {
        padding: 10px 15px;
        font-size: 16px;
        background-color: transparent;
    }
    .navbar-nav .dropdown-menu .menu_scroll {
        max-height: 500px;
        overflow-y: auto;
        direction: rtl;
    }
    .navbar-nav .dropdown-menu .menu_scroll > li > a {
        display: block;
        padding: 10px 15px;
        font-size: 16px;
        background-color: transparent;
        clear: both;
        font-weight: 400;
        line-height: 1.42857143;
        white-space: nowrap;
    }
    .navbar-nav .dropdown-menu .scroll_style::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        background-color: #F5F5F5;
    }
    .navbar-nav .dropdown-menu .scroll_style::-webkit-scrollbar {
        width: 6px;
        background-color: #F5F5F5;
    }
    .navbar-nav .dropdown-menu .scroll_style::-webkit-scrollbar-thumb {
        background-color: rgba(72, 54, 40, 0.5);
        border: 2px solid rgba(72, 54, 40, 0.3);
    }
    .navbar-nav .dropdown-submenu > .dropdown-menu {
        top: 0px;
        margin-top: 0;
        left: 100%;
        min-height: calc(100%);
    }
    .navbar-nav .dropdown-submenu > a {
        padding-right: 30px;
        position: relative;
    }
    .navbar-nav .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;
    }
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
    }
    .navbar-nav .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

    .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
        background-color: transparent;
    }
}
/* 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: rgba(0, 0, 0, 0.1);
        color: #4d4d4d;
    }
    ul.navbar-nav > li > a:hover, ul.navbar-nav > li > a:focus, ul.navbar-nav > li > a.mPS2id-highlight {
        background-color: rgba(0, 0, 0, 0.1);
        color: #4d4d4d;
    }
    ul.navbar-nav > li.active > a, ul.navbar-nav > li.active > a:hover, ul.navbar-nav > li.active > a:focus {
        color: #4d4d4d;
        background-color: rgba(0, 0, 0, 0.1);
        border-color: transparent;
    }
    ul.navbar-nav .dropdown > a:after {
        border-top-color: #4d4d4d;
    }
    ul.navbar-nav .dropdown > a:hover:after {
        border-top-color: #4d4d4d;
    }
    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 .menu_scroll > li > a {
        background-color: transparent;
    }
    ul.navbar-nav .dropdown-menu .menu_scroll > li > a:hover, ul.navbar-nav .dropdown-menu .menu_scroll > 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: #1EB7C8;
    }
    ul.navbar-nav .dropdown-menu .dropdown-submenu:hover > a:after {
        border-left-color: #1EB7C8;
    }
    ul.navbar-nav a {
        color: #4d4d4d;
    }
    ul.navbar-nav .dropdown-menu a {
        color: #4d4d4d;
    }
    ul.navbar-nav .dropdown-menu a:hover, ul.navbar-nav .dropdown-menu a:focus {
        color: #4d4d4d;
    }

    .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: rgba(0, 0, 0, 0.1);
        color: #4d4d4d;
    }
    .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-color: rgba(0, 0, 0, 0.1);
        color: #4d4d4d;
    }
    .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: #4d4d4d;
        background-color: rgba(0, 0, 0, 0.1);
        border-color: transparent;
    }
    .add_class ul.navbar-nav .dropdown > a:after {
        border-top-color: #4d4d4d;
    }
    .add_class ul.navbar-nav .dropdown > a:hover:after {
        border-top-color: #4d4d4d;
    }
    .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 .menu_scroll > li > a {
        background-color: transparent;
    }
    .add_class ul.navbar-nav .dropdown-menu .menu_scroll > li > a:hover, .add_class ul.navbar-nav .dropdown-menu .menu_scroll > 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: #1EB7C8;
    }
    .add_class ul.navbar-nav .dropdown-menu .dropdown-submenu:hover > a:after {
        border-left-color: #1EB7C8;
    }
    .add_class ul.navbar-nav a {
        color: #4d4d4d;
    }
    .add_class ul.navbar-nav .dropdown-menu a {
        color: #4d4d4d;
    }
    .add_class ul.navbar-nav .dropdown-menu a:hover, .add_class ul.navbar-nav .dropdown-menu a:focus {
        color: #4d4d4d;
    }

    .navbar {
        background-color: white;
    }
    .navbar.add_class {
        background-color: white;
    }

    .dsk_menu.add_class {
        background-color: white;
    }
}
/* Mobile Navbar
----------------------- */
@media (max-width: 767px) {
    .navbar-collapse {
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
    }

    ul.navbar-nav ul {
        padding: 0;
    }
    ul.navbar-nav a, ul.navbar-nav li.dropdown ul.dropdown-menu a {
        padding: 10px 15px;
        color: #4d4d4d;
        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 #e6e6e6;
        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: #1EB7C8;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    ul.navbar-nav li.dropdown.open > a:after, ul.navbar-nav li.dropdown-submenu.open > a:after {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-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 #1EB7C8;
    }
    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 #1EB7C8;
        margin-left: 8px;
    }
    ul.navbar-nav li.dropdown-submenu ul.dropdown-menu > li.dropdown-submenu ul.dropdown-menu > li > a {
        border-left: 4px solid #1EB7C8;
        margin-left: 16px;
    }

    .navbar, .dsk_menu {
        background-color: white;
    }
    .navbar.add_class, .dsk_menu.add_class {
        background-color: white;
    }
}
/* Template */
/* nav Theme */
.nav_fix {
    margin-top: 0px;
}
@media (min-width: 768px ) and (max-width: 1199px ) {
    .nav_fix {
        margin-top: 0px;
    }
}
@media (max-width: 767px ) {
    .nav_fix {
        margin-top: 50px;
    }
}

.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: 50px;
    }
}

.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: 50px;
    }
}

/* Desktop
--------------- */
@media (min-width: 992px ) {
    .navbar-collapse {
        float: left;
        padding-left: 0px;
    }
}
/* tablet
--------------- */
/* Mobile
--------------- */
/* small screen
--------------- */
@media (max-width: 575px ) {
    .navbar_shop .navbar-toggle {
        padding: 14px 8px;
    }
    .navbar_shop .nav_m_btns {
        right: 38px;
    }
    .navbar_shop .nl_m_wrapper {
        right: 118px;
    }
}
/* Nav Add Class
----------------*/
.navbar {
    border-radius: 0;
}
@media (max-width: 767px ) {
    .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;
}

/* pages
================== */
/* Header
================== */
/* --- Header Top --- */
.header_top {
    position: relative;
    height: 58px;
    box-sizing: content-box;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* in Header Top */
}
.header_top .header_mid {
    flex: 1;
}
.header_top .header_right {
    display: flex;
    align-items: center;
}

.logo {
    padding: 6px 20px;
}

/* --- Header Middle --- */
/* Category Menu */
/* Category Menu */
.class_nav_all h2 {
    color: #fff;
    padding: 14px 16px;
    font-size: 16px;
    line-height: 1.1;
    cursor: pointer;
    margin: 0;
}

.class_nav_all .fa-caret-down {
    padding-left: 10px;
}

.class_nav_all .class_nav_ul {
    display: none;
}

.class_nav_ul {
    position: absolute;
    top: 43px;
    left: 0;
    z-index: 1000;
    width: 207px;
    margin-top: 2px;
    _overflow: hidden;
    list-style-type: none;
    padding-left: 0;
    background: #fff;
    box-shadow: 1px 1px 5px #909090;
}

.class_nav_ul li {
    line-height: 45px;
    height: 45px;
    _overflow: hidden;
    margin-right: 3px;
    padding-left: 16px;
}
.class_nav_ul li:hover {
    background-color: #eee;
}
.class_nav_ul li.prosahover {
    border-bottom: 1px #fff solid;
    background-color: #fff;
    margin-right: 0;
    padding-right: 3px;
}

.class_nav_ul a {
    color: #ffd0c0;
    padding-right: 8px;
    _padding-right: 6px;
    white-space: nowrap;
    display: block;
    height: 45px;
}

.class_nav_ul li.prosahover a {
    color: #636363;
}

.class_nav_ul li a.ti {
    font-size: 15px;
    color: #444;
}

.class_nav_ul li.prosahover a.ti {
    color: #1EB7C8;
}

.class_nav_ul li a:hover {
    color: #1EB7C8;
}

.class_nav_ul li.nochild a:hover {
    color: #fff;
}

.class_nav_ul li i {
    float: right;
    display: block;
    width: 3px;
    height: 45px;
    line-height: 45px;
    background-position: 0 -276px;
    padding-right: 12px;
}

.nav_more_2nd li i, .nav_more_3nd li i {
    height: 35px;
    line-height: 35px;
    padding-right: 0;
}

.class_nav_ul li h2 {
    padding-left: 0;
    line-height: 40px;
    display: inline;
    font-size: 14px;
    font-weight: 400;
}

.class_nav_more {
    position: relative;
    z-index: 999;
    left: 191px;
    top: -45px;
    background-color: rgba(51, 51, 51, 0.9);
    width: 210px;
    box-shadow: 1px 1px 5px #909090;
}

.class_nav_ul .class_nav_more {
    text-align: left;
}

.class_nav_more.nav_more_3nd, .class_nav_more.nav_more_4th {
    left: 210px;
    top: -40px;
}

.class_nav_ul li .class_nav_more li {
    padding-left: 0;
    list-style: none;
}

.class_nav_ul li .class_nav_more li:hover {
    background-color: transparent;
    border-bottom: 0;
}

.class_nav_ul li .class_nav_more a {
    font-size: 14px;
    height: 40px;
    line-height: 30px;
    padding: 5px 20px;
    color: #fff;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.class_nav_ul li .class_nav_more a:hover {
    color: #ffe222;
}

/* Search */
.header_search {
    flex: 1;
    min-width: 1px;
    height: 48px;
    position: relative;
}

#Search {
    width: 95%;
    height: 45px;
    padding: 0 10px 0 64px;
    margin: 2px 0 0 10px;
    font-size: 18px;
    outline: 0;
    border: 1px solid #000;
    max-width: 400px;
}

.search-btn {
    position: absolute;
    top: 1px;
    left: 10px;
    color: #fff;
    border: 0;
    padding: 4px 10px;
    font-size: 21px;
    height: 45px;
    width: 48px;
}

/* RWD */
@media (max-width: 767px ) {
    .header_top {
        height: 0;
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
    }

    .header_bottom, .header_left, .header_mid, .login, .sign_up {
        display: none;
    }
}
/* RWD */
@media (min-width: 768px ) {
    .header_right .sc_mycart_mibile {
        display: none;
    }
    .header_right .sign_up {
        margin-right: 15px;
    }
}
@media (max-width: 1199px ) {
    .header_right .welcom {
        display: none;
    }
}
@media (max-width: 767px ) {
    .header_right {
        position: absolute;
        right: 0px;
        top: 0;
        width: 100px;
    }
    .header_right .sc_mycart_desktop {
        display: none;
    }
    .header_right .login, .header_right .welcom {
        display: none;
    }
}

/* Header Right
----------------------- */
/*login*/
.login a, .sign_up a {
    color: #4d4d4d;
}

.welcom, .shopping_cart, .login, .sign_up {
    margin-right: 20px;
}

/* User Dropdown */
/* User Dropdown */
.hr_user_dropdown {
    position: relative;
}

.hr_dropdown_content {
    background-color: #FFF;
    box-shadow: 1px 1px 5px #909090;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    margin-top: 4px;
    display: none;
    z-index: 1000;
}
@media (max-width: 767px ) {
    .hr_dropdown_content {
        margin-top: 0;
    }
}

.dropdown_is_open > .hr_dropdown_content {
    display: block;
}

.hr_user_item {
    list-style-type: none;
    margin-bottom: 0;
    padding: 5px 0;
}

.hr_user_icon {
    display: block;
    padding: 10px;
    position: relative;
}

.hr_user_item .divider, #bs-example-navbar-collapse-1 .divider {
    height: 1px;
    margin: 6px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

.hr_user_item > li > a {
    display: block;
    padding: 6px 15px;
}
.hr_user_item > li > a:hover {
    background: #f7f7f7;
}

.m_user_mugshot {
    padding: 20px 10px;
    margin-bottom: 6px;
}

.m_user_mugshot_pic {
    display: block;
    width: 100px;
    height: 100px;
    background-size: cover !important;
    background-position: center !important;
    margin: 0 auto;
}

.m_user__name {
    display: block;
    text-align: center;
    margin-top: 8px;
}

.hr_user_msn_qty {
    background: #e6002e;
    color: #fff;
    width: 18px;
    height: 18px;
    line-height: 1em;
    text-align: center;
    font-size: 0.8em;
    padding: 2px 5px;
    border-radius: 15px;
}

/* shopping cart */
/* shopping cart */
.shopping_cart {
    position: relative;
}

.sc_mycart {
    display: block;
    line-height: 50px;
    width: 50px;
    position: relative;
    text-align: center;
    cursor: pointer;
}
.sc_mycart .m-icon {
    width: 20px;
}

.sc_mycart_qty {
    position: absolute;
    top: 8px;
    right: 4px;
    background: #f56954;
    color: #fff;
    border-radius: 9px;
    padding: 0px 3px;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    font-size: 12px;
}

.cart_content {
    width: 380px;
}

.cc_header {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.tab_cart_popup {
    border-bottom: 1px solid #dfdfdf;
    padding: 0 40px;
}
.tab_cart_popup li {
    display: block;
    float: left;
    width: 50%;
}
.tab_cart_popup a {
    position: relative;
    padding: 10px;
    text-align: center;
    background-color: transparent !important;
    color: #999;
}
.tab_cart_popup a small, .tab_cart_popup a .small {
    font-weight: 400 !important;
}
.tab_cart_popup a:after {
    content: "";
    position: absolute;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 0;
    bottom: -1px;
    height: 2px;
    background: #1EB7C8;
}
.tab_cart_popup .active a {
    color: #1EB7C8;
    font-weight: 700;
}
.tab_cart_popup .active a:after {
    width: 100%;
}
.tab_cart_popup li:nth-child(1) a:after {
    right: 0;
}
.tab_cart_popup li:nth-child(2) a:after {
    left: 0;
}

.cc_scroll {
    overflow: auto;
    padding: 0 10px;
    max-height: 200px;
}
.cc_scroll::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.cc_class_item {
    padding: 10px 0;
}
.cc_class_item:after, .cc_class_item:before {
    content: "";
    display: block;
    clear: both;
}
.cc_class_item + .cc_class_item {
    border-top: 1px solid #e6e6e6;
}

.cc_class_img {
    display: block;
    width: 60px;
    height: 60px;
    margin-right: 10px;
    background-size: cover !important;
    -moz-background-size: cover !important;
    -webkit-background-size: cover !important;
    -o-background-size: cover !important;
    background-position: center !important;
}

.cc_class_infor {
    width: calc(100% - 70px);
    color: #4d4d4d;
}
.cc_class_infor a {
    color: inherit;
}
.cc_class_infor .cc_class_title {
    font-weight: 700;
}

.cc_class_price {
    text-align: right;
    line-height: 1em;
    margin-top: 5px;
    color: #f56954;
    font-weight: 700;
}
.cc_class_price .cpp_special {
    font-size: 100%;
}

.cc_total {
    padding: 10px;
    text-align: right;
    box-shadow: 0 -2px 5px #ccc;
    border-bottom: 1px solid #ddd;
}
.cc_total b {
    color: #f56954;
    padding-left: 5px;
}

.cc_checkout {
    padding: 10px;
}
.cc_checkout a {
    display: block;
    background: #1EB7C8;
    color: #4d4d4d;
    text-align: center;
    padding: 6px;
    width: 100%;
}
.cc_checkout a:hover {
    box-shadow: 0px 2px 4px #bebebe;
}

.cc_empty {
    padding: 10px;
    font-size: 1.1em;
    text-align: center;
}

@media (max-width: 767px ) {
    .shopping_cart {
        position: fixed;
        right: 10px;
        top: 0px;
        margin-right: 0;
    }

    .cart_content {
        position: fixed;
        width: 100%;
        top: 53px;
    }

    .cc_scroll {
        max-height: 150px;
    }
}
/* --- Header Bottom --- */
.header_bottom {
    text-align: center;
    height: 56px;
    overflow: hidden;
}

.header_nav {
    display: flex;
    justify-content: center;
}

/* 另一種選單樣式使用 start */
.header_nav_item a {
    display: block;
    color: #fff;
    font-size: 1.5em;
    padding: 14px 20px;
}

.header_nav_item:hover a {
    background: #1EB7C8;
}

.header_nav_item a img {
    vertical-align: text-bottom;
}

.class_nav {
    position: relative;
}

/* 另一種選單樣式使用 end */
/*header_bottom*/
.header_nav_dropdown {
    display: none;
    width: 100%;
    position: absolute;
    top: 112px;
    left: 0;
    background: #1EB7C8;
    padding: 20px 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    z-index: 10;
}
.header_nav_dropdown a {
    padding: 14px 0;
    text-align: left;
}

.header_nav_item:hover .header_nav_dropdown {
    display: block;
}

@media (min-width: 991px) and (max-width: 1200px) {
    .header_nav_dropdown a {
        height: 82px;
    }
}
/*-----slider-----*/
.carousel-control.left, .carousel-control.right {
    background-image: none;
}

@media (max-width: 1200px) {
    .carousel-indicators {
        display: none;
    }
}
/*-----slider end-----*/
/*----H_main_content----*/
.H_main_content {
    padding: 40px 0 20px;
    min-height: calc(100vh - 153px);
}

.H-title {
    margin: 0;
    padding: 10px 15px;
    margin-bottom: 15px;
}
.H-title h4 {
    margin: 0;
}
.H-title a {
    color: #fff;
    text-decoration: underline;
}
.H-title a:hover {
    color: #fff;
    opacity: 0.8;
}

.H-readmore {
    text-decoration: underline;
    color: #444;
    margin-top: 20px;
}
.H-readmore:hover {
    color: #1EB7C8;
}

.class_1row {
    margin-bottom: 40px;
}
.class_1row .grid_basic .item {
    padding: 0;
}

/* News */
.H_news_item {
    background: #f7f7f7;
    padding: 20px;
    margin-bottom: 10px;
}
.H_news_item h4, .H_news_item a {
    color: #444;
    line-height: 1.4em;
}
.H_news_item h4:hover, .H_news_item a:hover {
    color: #f0899e;
}
@media (max-width: 991px ) {
    .H_news_item {
        border: 3px solid #fff;
    }
}

.H_news_date, .H_news_readqty {
    color: #aaa;
}

.news_tag {
    margin-bottom: 40px;
}

.news_tag_item {
    padding: 6px;
    margin-bottom: 5px;
    display: inline-block;
}

.other-title {
    border-bottom: 2px solid #444;
    text-align: center;
    border-top: 2px solid #444;
    padding: 20px 0;
}

/*----H_main_content end----*/
/* Shop Basic Style
theme style for this projects
--------------------- */
/* ========================
Pages Layout
======================== */
/* Prd
---------------- */
/* Comps */
/* Prd Custom Class
======================== */
.price {
    font-family: "Microsoft Jhenghei", sans-serif;
    color: #f56954;
    font-weight: 600;
}
.crsl_prd .price,
.prdi_content .price,
.item_price .price {
    font-size: 160%;
}

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

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

/* Wrapper
------------------------ */
.shopping_wrapper {
    background-color: transparent;
}
.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 {
    display: block;
    width: 100%;
}

/* Buttons
------------------------ */
.btn_shopping {
    text-align: center;
    cursor: pointer;
    line-height: 1em;
    padding: 14px 20px;
    border-radius: 4px;
    background-color: #1EB7C8;
    color: #4d4d4d;
    display: inline-block;
    border: 1px solid transparent;
    -webkit-transition: all 0.1s ease-in-out;
    -khtml-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    padding: 5px;
}
.btn_shopping:hover, .btn_shopping:focus {
    color: #4d4d4d;
    background-color: #8fe8cb;
}
.btn_shopping.large {
    font-size: 20px;
    padding: 18px 24px;
}
.btn_shopping.radius {
    border-radius: 30px;
}
.btn_shopping.reverse {
    background-color: transparent;
    color: #1EB7C8;
    border-color: #1EB7C8;
}
.btn_shopping.reverse:hover {
    background-color: rgba(164, 236, 213, 0.05);
}
.grid_prd .btn_shopping, .prdi_content .btn_shopping {
    border-radius: 2px;
}
.grid_prd .btn_shopping, .grid_prd .btn_shopping .btn_shopping, .prdi_content .btn_shopping, .prdi_content .btn_shopping .btn_shopping {
    display: inline-block;
    padding: 5px;
    line-height: 1em;
    font-size: 12px;
    font-weight: 400;
    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;
    }
}

/* like */
.btn_like {
    display: inline-block;
    padding: 8px;
    color: #1EB7C8;
}
.btn_like i {
    font-size: 120%;
}

.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;
    top: 50%;
    text-align: center;
}

.prd_countdown {
    font-family: "Microsoft Jhenghei", sans-serif;
    font-weight: 500;
}
.prd_countdown span {
    display: inline-block;
    background-color: rgba(245, 105, 84, 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;
}

/* Prd List Sidebar
======================= */
/* prdl_sidebar
-------------------- */
.prdl_sidebar {
    border-radius: 4px;
    margin-bottom: 8px;
    overflow: hidden;
    /* RWD */
}
@media (max-width: 767px ) {
    .prdl_sidebar.xs-responsive {
        display: none;
    }
}
@media (max-width: 991px ) {
    .prdl_sidebar.sm-responsive {
        display: none;
    }
}

/* sidebar-header
-------------------- */
.prdl_sidebar-header {
    background-size: cover !important;
    background-image: url(../../images/common/bg_001.jpg);
    padding: 6px 10px;
    border-bottom: 1px solid rgba(77, 77, 77, 0.2);
    font-size: 110%;
}
@media (min-width: 1200px ) {
    .prdl_sidebar-header {
        background-size: cover !important;
        overflow: hidden;
        background-position: center center;
        background-repeat: no-repeat !important;
        background-attachment: fixed !important;
        z-index: 1;
    }
}

/* sidebar-body
-------------------- */
.prdl_sidebar-body {
    /* li Style */
    /* hover */
    /* 1st Dropdown */
    /* Selected */
}
.prdl_sidebar-body > li + li {
    border-top: 1px solid #e6e6e6;
}
.prdl_sidebar-body > li a {
    border-top: none !important;
    margin-top: 1px;
    font-family: "Microsoft Jhenghei", sans-serif;
    font-weight: 500;
    padding-top: 6px;
    padding-bottom: 6px;
}
.lang-2nd .prdl_sidebar-body > li a {
    font-family: "Microsoft Jhenghei", sans-serif;
}

.prdl_sidebar-body > li a:hover, .prdl_sidebar-body > li a:focus {
    background-color: rgba(0, 0, 0, 0.02);
}
.prdl_sidebar-body ul.layer_1st {
    padding-bottom: 8px;
}
.prdl_sidebar-body > li.selected > a {
    color: #f56954;
}
.prdl_sidebar-body > li > ul > li.selected > a:before {
    color: #f56954;
}

/* Grid & Crsl */
/* Prd List Item
=============== */
/* Common: Grid & Crsl
-------------- */
.grid_prd, .crsl_prd {
    /* img */
    /* content */
    /* hover */
    /* RWD */
}
.grid_prd .item, .crsl_prd .item {
    border-radius: 4px;
    overflow: hidden;
    -webkit-transition: all 0.1s ease-in-out;
    -khtml-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    background-color: white;
}
.grid_prd .img, .crsl_prd .img {
    width: 100%;
    padding: 0;
    padding-top: 100%;
    background-size: cover;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    z-index: 1;
}
.grid_prd .content, .crsl_prd .content {
    padding: 8px 0;
}
.grid_prd .content:after, .grid_prd .content:before, .crsl_prd .content:after, .crsl_prd .content:before {
    content: "";
    display: block;
    clear: both;
}
@media (max-width: 767px ) {
    .grid_prd .content, .crsl_prd .content {
        padding-left: 0;
        padding-right: 0;
    }
}
.grid_prd .title, .crsl_prd .title {
    overflow: hidden;
    line-height: 1.5em;
    max-height: 3em;
    white-space: normal;
    text-overflow: initial;
    font-family: "Microsoft Jhenghei", sans-serif;
    font-weight: 500;
    font-weight: 700;
    margin-bottom: 5px;
}
.lang-2nd .grid_prd .title, .crsl_prd .title {
    font-family: "Microsoft Jhenghei", sans-serif;
}

.grid_prd .title, .grid_prd .item_price, .crsl_prd .title, .crsl_prd .item_price {
    text-align: center;
}
.grid_prd .item:hover .img, .crsl_prd .item:hover .img {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
}
/* Crsl
=============== */
.crsl_prd .owl-stage-outer {
    padding-top: 30px;
    padding-bottom: 30px;
}
@media (max-width: 767px ) {
    .crsl_prd .owl-stage-outer {
        padding-top: 10px;
    }
}
.crsl_prd .owl-nav {
    position: absolute;
    top: 50%;
    margin-top: -24px;
    left: 0;
    z-index: 3;
    width: 100%;
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out;
    -khtml-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.crsl_prd .owl-nav [class*=owl-] {
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    opacity: 1;
    background-color: transparent;
    border-radius: 0;
}
.crsl_prd .owl-nav [class*=owl-] > i {
    color: transparent;
}
.crsl_prd .owl-nav [class*=owl-].disabled {
    opacity: 0.5;
    animation-duration: 0s !important;
}
.crsl_prd .owl-nav .owl-prev {
    /* Stage padding - width */
    left: -40px;
    border-style: solid;
    border-width: 24px 24px 24px 0;
    border-color: transparent rgba(164, 236, 213, 0.2) transparent transparent;
}
.crsl_prd .owl-nav .owl-next {
    right: -40px;
    border-style: solid;
    border-width: 24px 0 24px 24px;
    border-color: transparent transparent transparent rgba(164, 236, 213, 0.2);
}
.crsl_prd:hover .owl-prev {
    animation-name: owlPrev;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}
.crsl_prd:hover .owl-next {
    animation-name: owlNext;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

/* RWD */
@media (min-width: 768px ) {
    .crsl_prd_wrapper {
        padding-left: 60px;
        padding-right: 60px;
    }
}

/* Prd Grid
============= */
.grid_prd .item {
    margin-bottom: 4px;
}
.grid_prd .item:hover {
    z-index: 2;
}

/* 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%;
    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;
    }
}

/* Brand Banner
------------------ */
.crsl_brand_wrapper {
    padding: 0;
}

.crsl_brand {
    /* vam */
    /* img */
    /* content */
    /* hover */
    /* RWD */
}
.crsl_brand .container {
    padding: 30px;
}
.crsl_brand .vam_full {
    position: relative;
    height: 1px;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    top: 0;
    left: 0;
}
.crsl_brand .vam_full > .container {
    position: relative;
    height: 100%;
}
.crsl_brand .vam_full > .container > [class*=col-lg], .crsl_brand .vam_full > .container [class*=col-md], .crsl_brand .vam_full > .container [class*=col-sm], .crsl_brand .vam_full > .container [class*=col-xs] {
    height: 100%;
}
.crsl_brand .vam_full > [class*=col-lg], .crsl_brand .vam_full [class*=col-md], .crsl_brand .vam_full [class*=col-sm], .crsl_brand .vam_full [class*=col-xs] {
    height: 100%;
}
.crsl_brand .vam_table {
    display: table;
    height: 100%;
}
.crsl_brand .vam_td {
    display: table-cell;
    vertical-align: middle;
}
.crsl_brand .img {
    padding-top: 300px;
}
.crsl_brand .content {
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5%;
}
.crsl_brand .title {
    display: inline-block;
    padding: 4px 12px;
    margin-left: -12px;
    margin-bottom: 8px;
    background-color: white;
    color: #1EB7C8;
    border: 3px double rgba(164, 236, 213, 0.3);
}
.crsl_brand:hover .content {
    background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 767px ) {
    .crsl_brand .content {
        background-color: rgba(255, 255, 255, 0.9);
    }
}

/* Prd In */
/* Prd In
================= */
/* Prd Img
--------------- */
/* Prd Detail
--------------- */
.prdi_detail {
    margin: 16px 0;
}

.prdi_detail-header {
    width: 100%;
    position: relative;
    background-color: #1EB7C8;
    padding: 8px 8px;
    color: white;
    border-radius: 4px;
}
.prdi_detail-header:after, .prdi_detail-header:before {
    content: "";
    display: block;
    clear: both;
}
.prdi_detail-header h3 {
    float: left;
}
.prdi_detail-header > a {
    float: right;
    margin-bottom: 0;
}
.prdi_detail-header .breadcrumb {
    float: right;
}
.prdi_detail-header .breadcrumb a {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.7);
}
.prdi_detail-header .breadcrumb a:hover {
    text-decoration: underline;
}
.prdi_detail-header .breadcrumb > li + li:before {
    color: rgba(255, 255, 255, 0.7);
}

/* writing */
/* Prdi Img
--------------- */
.prdi_img {
    margin-bottom: 10px;
}
.prdi_img .divide_note {
    margin-top: 10px;
}

/* Crsl */
.crsl_prdi .img {
    width: 100%;
    padding: 0;
    padding-top: 100%;
    background-size: cover;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    z-index: 1;
}

.crsl_prdi.thumbs .item:hover {
    background-color: #000;
}
.crsl_prdi.thumbs .item:hover .img_wrapper {
    opacity: 0.9;
}

/* Prd Content
--------------- */
.prdi_content {
    margin-bottom: 10px;
}

/* header */
.prdi_content-header {
    padding-bottom: 8px;
    margin-bottom: 10px;
    border-bottom: 2px solid #1EB7C8;
}
.prdi_content-header:after, .prdi_content-header:before {
    content: "";
    display: block;
    clear: both;
}
.prdi_content-header .title {
    float: left;
    font-weight: 700;
    color: #1EB7C8;
}
.prdi_content-header .prd_countdown {
    margin-bottom: 10px;
}
.prdi_content-header .prd_countdown span {
    font-size: 120%;
}

/* body */
.prdi_content-body .btn_shopping {
    font-size: 140%;
    line-height: 1.5em;
    font-weight: 400;
}
.prdi_content-body .btn_like i {
    font-size: 140%;
}
.prdi_content-body .btn_like span {
    padding-right: 8px;
}

/* Dsc */
.prd_dsc {
    margin: 8px 0;
}
.prd_dsc p {
    font-size: 14px;
}

/* Feature */
.prd_feature {
    margin: 8px 0;
}
.prd_feature > li {
    line-height: 1.8em;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}
.prd_feature > li:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #f0899e;
    left: 4px;
    top: 10px;
    border-radius: 50%;
}

/* on-sale */
.prdi_onsale:after, .prdi_onsale:before {
    content: "";
    display: block;
    clear: both;
}
.prdi_onsale .activity_link {
    float: right;
}

.onsale_dsc {
    display: block;
}
.onsale_dsc a {
    -webkit-transition: all 0s ease-in-out;
    -khtml-transition: all 0s ease-in-out;
    -moz-transition: all 0s ease-in-out;
    -ms-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
    text-decoration: underline;
}
.onsale_dsc a, .onsale_dsc a:hover, .onsale_dsc a:focus {
    color: inherit;
}
.onsale_dsc a:hover, .onsale_dsc a:focus {
    color: #4d4d4d;
}

.activity_link {
    display: block;
    background-color: #f56954;
    color: white;
    padding: 4px 8px;
    margin-left: 2px;
}
.activity_link:hover, .activity_link:focus {
    color: white;
    background-color: #d6270d;
}

/* Prd Info Tab
------------------ */
.prdinfo_tab-nav {
    background-size: cover !important;
    background-image: url(../../images/common/bg_001.jpg);
    display: table;
    width: 100%;
    text-align: center;
    border-radius: 4px;
    table-layout: fixed;
    /* active & hover */
    /* Hide <br> */
}
@media (min-width: 1200px ) {
    .prdinfo_tab-nav {
        background-size: cover !important;
        overflow: hidden;
        background-position: center center;
        background-repeat: no-repeat !important;
        background-attachment: fixed !important;
        z-index: 1;
    }
}
.prdinfo_tab-nav li {
    display: table-cell;
    padding: 6px 0;
    vertical-align: middle;
}
.prdinfo_tab-nav li + li {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
}
.prdinfo_tab-nav a {
    display: block;
    line-height: 18px;
}
.prdinfo_tab-nav li.active, .prdinfo_tab-nav li:hover {
    background-color: rgba(164, 236, 213, 0.1);
}
.prdinfo_tab-nav br {
    display: none;
}
@media (min-width: 768px ) and (max-width: 991px ) {
    .prdinfo_tab-nav br {
        display: inline;
    }
}
@media (max-width: 400px) {
    .prdinfo_tab-nav br {
        display: inline;
    }
}

/* Prd Info Tab Content
------------------ */
.prdinfo_tab-content .editor {
    padding: 8px 0;
}

.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%;
    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 #e6e6e6;
}
.freegift_grid .img_wrp {
    width: 60px;
}
.freegift_grid .content_wrp {
    padding: 0px 8px;
    width: calc(100% - 60px - 80px);
}
.freegift_grid .num_wrp {
    position: relative;
    padding-right: 0px;
    padding-top: 0px;
    width: 80px;
}
.freegift_grid .num_wrp small {
    position: absolute;
    left: 4px;
    top: calc(50% - 11px);
}
.freegift_grid .num_wrp input {
    display: block;
    width: 100%;
    padding-left: 35px;
    padding-right: 2px;
}
.freegift_grid .item:hover {
    background-color: rgba(0, 0, 0, 0.025);
}

/* Cart
---------------- */
/* 2018.10.09 */
/* 2019.01.29 */
/* Footer
----------- */
.cart_footer hr {
    margin: 5px 0;
}

.blocky_footer small, .blocky_footer .small {
    font-size: 65%;
    color: #999;
}

.cart_subtotal {
    text-align: right;
}
@media (max-width: 767px ) {
    .cart_subtotal {
        text-align: left;
    }
}
.cart_subtotal.price_del {
    font-size: 85%;
}
.cart_subtotal small, .cart_subtotal .small {
    color: inherit;
}

.cart_total {
    color: #1EB7C8;
    white-space: nowrap;
    text-align: right;
    position: relative;
}
.cart_total small, .cart_total .small, .cart_total span {
    display: inline-block;
}
.cart_total small {
    position: absolute;
    right: 160px;
    top: calc(50% - 0.5em);
    font-weight: 400;
}
.cart_total .number {
    color: #f56954;
}

/* Note Block
--------------- */
.note_block {
    border-color: #e6e6e6;
    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%;
}

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

/* 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: #e6e6e6;
    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 #e6e6e6;
    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 #e6e6e6;
    }
}
.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: #f56954;
    color: white;
    font-family: "Microsoft Jhenghei", sans-serif;
    font-size: 160%;
}

/* table */
.sign_in_section {
    min-height: calc(100vh - 153px);
    background-size: cover;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    z-index: 1;
    background-image: url(../../images/common/bg_001.jpg);
}
.sign_in_section > .container {
    margin-top: 5%;
}
.sign_in_section h1 {
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    font-size: 120%;
}
.sign_in_section h1:after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 10px;
    border-bottom: 3px solid #e6e6e6;
}
.sign_in_section .login_title {
    position: relative;
    text-align: center;
    font-size: 31px;
    font-weight: 700;
    margin-bottom: 30px;
}
.sign_in_section .login_title small {
    position: absolute;
    left: 0;
    top: 10px;
    color: #fff;
}
.sign_in_section .news:before, .sign_in_section .news:after {
    display: none;
}
.sign_in_section .btn {
    margin-top: 5px;
    font-size: 16px;
}
.sign_in_section label {
    display: inline;
    font-weight: normal;
    line-height: 1em;
}
.sign_in_section .checkbox {
    margin-top: 10px;
    margin-bottom: 10px;
}
.sign_in_section .checkbox input.checkbox_top[type=checkbox] {
    margin-top: 0;
}
@media (max-width: 767px ) {
    .sign_in_section .checkbox {
        margin-top: 3px;
    }
}
.sign_in_section .ic_line {
    background-image: url(../../images/common/ic_social_line_white.svg);
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    background-size: 16px auto;
}
.sign_in_section .btn-line {
    color: white;
    background-color: #06C657;
}
.sign_in_section .btn-line:hover, .sign_in_section .btn-line:focus {
    background-color: #05ad4c;
}
/* Popular Course */
.class_papular_item {
    background: #f7f7f7;
    position: relative;
}

.cp_text, .cp_top {
    position: relative;
}

.cp_top figure {
    overflow: hidden;
    width: 100%;
    height: auto;
}

.class_papular_item figure img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.class_papular_item:hover figure img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.cp_score {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.cp_text {
    padding: 16px;
}

.cpt_title, .cpt_title a {
    color: #444;
    margin: 0;
    line-height: 1.4em;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cpt_title a:hover {
    color: #f0899e;
}

.cp_price {
    display: block;
    color: #000;
    padding: 5px 10px;
    background: #fff;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center;
    text-transform: uppercase;
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-top: 10px;
}
.cp_price:after {
    content: "";
    position: absolute;
    width: 0;
    bottom: 0;
    height: 2px;
    background: #f0899e;
    right: 0;
    left: auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.class_papular_item:hover .cp_price:after {
    width: 100%;
    left: 0;
}

.cpp_original {
    font-size: 1em;
    color: #929292;
    padding-right: 5px;
    text-decoration: line-through;
}

.cpp_special {
    color: #d9534f;
    font-size: 1.3em;
    font-weight: bold;
}

.cp_score {
    text-align: center;
    font-size: 1.4em;
    padding: 2px 0;
    color: #fff200;
}

.cps_qty {
    color: #ccc;
}

.term_expires {
    /*height: ;*/
}

.owl-prev, .owl-next {
    color: #fff;
    background: rgba(164, 236, 213, 0.8);
    padding: 4px;
    width: 40px;
    height: 40px;
    line-height: 28px;
    font-size: 2em;
    text-align: center;
    position: absolute;
    top: 50%;
    margin-top: -20px;
}
.owl-prev:hover, .owl-prev:hover, .owl-next:hover, .owl-next:hover {
    background: #1EB7C8;
}

.owl-prev {
    left: -10px;
}

.owl-next {
    right: -10px;
}

.owl-dots {
    display: none;
}

/**/
.class_detail {
    background: #fff;
    position: absolute;
    right: 0;
    top: 0;
    box-shadow: 0 0 5px #ccc;
    padding: 20px;
}

/* Recommand */
.class_recommend figure img {
    width: 100%;
}

.class_recommend .img_tag_wrapper {
    position: absolute;
    left: 0px;
    top: 10px;
    color: white;
    z-index: 2;
}
.class_recommend .img_tag_wrapper {
    border-color: #65dfb8;
    background-color: #65dfb8;
}
.class_recommend .img_tag_wrappercl2 {
    border-color: #e74566;
    background-color: #e74566;
}
.class_recommend .img_tag_wrapper > .img_tag {
    display: block;
    padding: 4px 10px;
    border-radius: 0;
}

@media (max-width: 575px ) {
    .class_recommend > div.col-xxs-6:nth-child(2n+1) {
        clear: left;
    }
    .class_recommend > div.col-xxs-4:nth-child(3n+1) {
        clear: left;
    }
    .class_recommend > div.col-xxs-3:nth-child(4n+1) {
        clear: left;
    }
    .class_recommend > div.col-xxs-2:nth-child(6n+1) {
        clear: left;
    }
}
@media (min-width: 576px ) and (max-width: 767px ) {
    .class_recommend > div.col-xs-6:nth-child(2n+1) {
        clear: left;
    }
    .class_recommend > div.col-xs-4:nth-child(3n+1) {
        clear: left;
    }
    .class_recommend > div.col-xs-3:nth-child(4n+1) {
        clear: left;
    }
    .class_recommend > div.col-xs-2:nth-child(6n+1) {
        clear: left;
    }
}
@media (min-width: 768px ) and (max-width: 991px ) {
    .class_recommend > div.col-sm-6:nth-child(2n+1) {
        clear: left;
    }
    .class_recommend > div.col-sm-4:nth-child(3n+1) {
        clear: left;
    }
    .class_recommend > div.col-sm-3:nth-child(4n+1) {
        clear: left;
    }
    .class_recommend > div.col-sm-2:nth-child(6n+1) {
        clear: left;
    }
}
@media (min-width: 992px ) {
    .class_recommend > div.col-md-6:nth-child(2n+1) {
        clear: left;
    }
    .class_recommend > div.col-md-4:nth-child(3n+1) {
        clear: left;
    }
    .class_recommend > div.col-md-3:nth-child(4n+1) {
        clear: left;
    }
    .class_recommend > div.col-md-2:nth-child(6n+1) {
        clear: left;
    }
}

/* Like Button */
.courselike_button {
    font-size: 1rem;
    font-weight: bold;
    position: relative;
    display: block;
    text-align: center;
}
.courselike_button, .courselike_button:hover, .courselike_button:focus {
    text-decoration: none;
    color: #ff7d7d;
}

.courselike_button {
    text-align: left;
    width: 100%;
    margin-top: 8px;
}
.courselike_button:hover .course_heart i {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.courselike_button .course_heart, .courselike_button .add_love_text {
    display: block;
    float: right;
}
.courselike_button .course_heart {
    width: 36px;
    height: 36px;
    line-height: 0;
    border: 1px solid #ff7d7d;
    font-size: 18px;
    padding: 0;
    text-align: center;
    background: #fff;
    margin: 0 auto;
    border-radius: 18px;
}
.courselike_button .course_heart .fa {
    line-height: 36px;
}
.courselike_button .add_love_text {
    line-height: 36px;
    height: 36px;
    margin-right: 8px;
}
.courselike_button.cl_selected .course_heart {
    color: #fff;
    background-color: #ff7d7d;
    border: 1px solid #ff7d7d;
}

.tab_course {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-bottom: 2px solid #1EB7C8;
    margin-bottom: 10px;
}
.tab_course li {
    display: table-cell;
    float: none;
    text-align: center;
    width: 100%;
}
.tab_course li + li {
    padding-left: 4px;
}
.tab_course a {
    padding: 12px 0 10px;
    font-size: 120%;
    border-radius: 4px 4px 0 0;
    background-color: white;
    border: 0px solid #dfdfdf;
    border-bottom: 0;
    color: #4d4d4d;
    background-color: #f9f9f9;
}
@media (max-width: 767px) {
    .tab_course a {
        font-size: 100%;
    }
}
.tab_course a:hover {
    background-color: #e0e0e0;
}
.tab_course li.active a {
    background-color: #1EB7C8;
    border-color: transparent;
    color: white;
}

.course_overview {
    margin-top: 0;
    margin-bottom: 40px;
}

.ci_item {
    display: block;
    background: #fff;
    width: 100%;
    padding: 10px 15px;
}
.ci_item:after, .ci_item:before {
    content: "";
    display: block;
    clear: both;
}
@media (max-width: 767px ) {
    .ci_item {
        padding: 10px 8px;
    }
}

.ci_head {
    display: block;
    color: #4d4d4d;
    float: left;
}
.ci_head img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.ci_free_to_watch, .ci_total_time {
    margin: 2px 0;
}

.ci_total_time {
    display: block;
    color: #999;
    font-size: inherit;
    float: right;
    font-size: 80%;
}
.ci_total_time i {
    font-size: 125%;
    margin-left: 8px;
}
.ci_total_time .fa-check-circle {
    color: #5cb85c;
}

.course_item .ci_item:nth-child(even) {
    background: #f9f9f9;
}

#readmore_course {
    padding: 10px;
    border-radius: 0;
}

.ci_free_to_watch {
    padding: 5px;
    margin-right: 8px;
    border-radius: 3px;
    float: right;
    background-color: #f0ad4e;
    color: white;
    line-height: 1em;
    font-size: 50%;
}
.ci_free_to_watch:hover {
    background-color: #ec971f;
}

/* student_comment */
.course_student_comment {
    margin-top: 0;
    background-color: #f9f9f9;
    padding: 0 8px;
}
.course_student_comment .title {
    margin-bottom: 10px;
}

.csc_item {
    display: block;
    position: relative;
    padding: 15px;
    margin-bottom: 8px;
    background: #f9f9f9;
    border-top: 1px dotted #dfdfdf;
}
.csc_item:nth-child(1) {
    border-top: 0;
}
@media (max-width: 767px ) {
    .csc_item {
        padding-left: 8px;
        padding-right: 8px;
    }
}

.csc_mug_shot {
    margin-right: 10px;
    width: 49px;
    height: 49px;
}
.csc_mug_shot img {
    width: 100%;
}

.csc_name_time {
    overflow: hidden;
    width: 100%;
}
.csc_name_time:after, .csc_name_time:before {
    content: "";
    display: block;
    clear: both;
}

.csc_time {
    color: #999;
    float: right;
    font-size: 80%;
}

.csc_name {
    color: #f0899e;
    font-size: 16px;
    line-height: 1.2em;
    float: left;
}
.csc_name .tag {
    margin: 0 2px;
}

/* comment content */
.csc_comment {
    margin-top: 5px;
    margin-bottom: 0;
    padding: 0;
}
.csc_comment p {
    font-size: 16px;
}

.csc_readmore {
    display: block;
    margin: auto;
    border-radius: 0;
}

.csc_item_reply {
    margin-left: 30px;
    background-color: white;
    border: 1px solid transparent;
}
@media (max-width: 767px ) {
    .csc_item_reply {
        margin-left: 20px;
    }
}
.csc_item_reply:before {
    content: "";
    display: block;
    position: absolute;
    width: 14px;
    height: 14px;
    border: 1px solid transparent;
    border-right-width: 0;
    border-bottom-width: 0;
    background-color: white;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -7px;
    left: 29px;
}
.csc_item_reply + .csc_item {
    margin-top: 15px;
}
.csc_item_reply + .csc_item_reply {
    margin-top: 8px;
}

/* form */
.csc_form {
    padding: 15px 8px;
}
.csc_form textarea {
    width: 100%;
}
@media (max-width: 767px ) {
    .csc_form {
        padding: 8px 0;
    }
}

.csc_form-answer {
    margin-left: 30px;
    padding-left: 0px;
    padding-right: 0px;
}
@media (max-width: 767px ) {
    .csc_form-answer {
        margin-left: 20px;
    }
}
@media (max-width: 767px ) {
    .csc_form-answer {
        padding-top: 0;
    }
}

.csc_form_footer {
    margin-top: 8px;
}
.csc_form_footer:after, .csc_form_footer:before {
    content: "";
    display: block;
    clear: both;
}
.csc_form_footer .btn_main {
    float: right;
}

/* img */
.csc_image_wrapper {
    margin-top: 8px;
    margin-right: 8px;
}

.csc_image {
    display: block;
    width: 72px;
    height: 72px;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    border-radius: 4px;
    background-size: cover;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px ) {
    .csc_image {
        width: 44px;
        height: 44px;
    }
}

/* upload img */
.csc_upload_wrapper {
    position: relative;
    width: 72px;
    padding: 0;
    padding-top: 72px;
    background-size: cover;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
    float: left;
    /* chosen */
}
.csc_upload_wrapper .csc_image, .csc_upload_wrapper .csc_upload_btn {
    width: 72px;
    height: 72px;
    position: absolute;
    left: 0;
    top: 0;
}
@media (max-width: 767px ) {
    .csc_upload_wrapper {
        width: 44px;
        padding: 0;
        padding-top: 44px;
        background-size: cover;
        overflow: hidden;
        background-position: center center;
        background-repeat: no-repeat !important;
        z-index: 1;
    }
    .csc_upload_wrapper .csc_image, .csc_upload_wrapper .csc_upload_btn {
        width: 44px;
        height: 44px;
    }
}
.csc_upload_wrapper .csc_image {
    z-index: 1;
}
.csc_upload_wrapper .csc_upload_btn {
    z-index: 2;
}
.csc_upload_wrapper.has_chosen .csc_upload_btn {
    opacity: 0;
}
@media (min-width: 768px ) {
    .csc_upload_wrapper.has_chosen .csc_upload_btn:hover {
        opacity: 1;
    }
}

.csc_upload_btn {
    position: relative;
    overflow: hidden;
    text-align: center;
    background-color: #6bbaff;
    cursor: pointer;
}
.csc_upload_btn 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%;
}
.csc_upload_btn .btn_text {
    height: 72px;
    width: 72px;
    display: table-cell;
    vertical-align: middle;
    color: white;
}
@media (max-width: 767px ) {
    .csc_upload_btn .btn_text {
        height: 44px;
        width: 44px;
    }
}
.csc_upload_btn:hover {
    background-color: #52aeff;
}

/* Contact Info
----------- */
ul.c_info {
    padding: 0px 0;
    padding-bottom: 20px;
    position: relative;
    text-align: left;
}
ul.c_info li {
    padding-left: 20px;
    line-height: 1.5em;
    display: block;
    position: relative;
    padding: 10px 40px;
    padding-left: 30px;
    margin-bottom: 5px;
}
ul.c_info li:before {
    content: "";
    font-family: "FontAwesome";
    position: absolute;
    color: inherit;
    font-size: 1em;
    line-height: inherit;
    width: 1em;
    text-align: center;
    left: 0;
}
ul.c_info li.map-marker:before {
    content: "\f041";
    background-image: none;
}
ul.c_info li.phone:before {
    content: "\f095";
    background-image: none;
}
ul.c_info li.mobile-phone:before {
    content: "\f10b";
    background-image: none;
}
ul.c_info li.fax:before {
    content: "\f1ac";
    background-image: none;
}
ul.c_info li.envelope:before {
    content: "\f003";
    background-image: none;
}
ul.c_info li.link:before {
    content: "\f0c1";
    background-image: none;
}
ul.c_info li.calendar:before {
    content: "\f274";
    background-image: none;
}
ul.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;
}
ul.c_info li:empty {
    display: none;
}
ul.c_info li:before {
    left: 5px;
    top: 10px;
}
ul.c_info li + li {
    border-top: 1px solid #e6e6e6;
}

/*測驗列表*/
.quiz_title {
    border-left: 4px solid #1EB7C8;
    padding: 6px 8px;
}

.quiz_item {
    display: block;
    font-size: 1.1em;
    line-height: 1.5em;
    padding: 6px 8px;
    margin-bottom: 8px;
    background-color: #f1f1f1;
}
.quiz_item:after, .quiz_item:before {
    content: "";
    display: block;
    clear: both;
}
.quiz_item .quiz_name {
    float: left;
    width: calc(100% - 25%);
    padding-top: 6px;
    padding-left: 8px;
    border-radius: 4px;
}
@media (max-width: 767px ) {
    .quiz_item .quiz_name {
        width: 100%;
    }
}
.quiz_item .quit_cont {
    float: right;
}
.quiz_item .quit_cont .fraction {
    margin-right: 8px;
}

/* 提醒計時Modal */
.alert_modal .modal-title {
    color: #f0ad4e;
    font-weight: 700;
}
.alert_modal .modal-body {
    font-size: 16px;
}
.alert_modal .modal-body .times {
    color: red;
    font-weight: 700;
}
.alert_modal .btn-theme {
    border-radius: 0;
}

/* 問卷樣式 */
.course_test .test_h {
    font-size: 18px;
    float: none;
    margin: 5px 0;
}
.course_test .sub_title {
    color: #4d4d4d;
    margin-bottom: 0;
}
.course_test .item {
    border-bottom: 1px solid #ddd;
}
.course_test .item:last-child {
    border-bottom: 0px;
}
.course_test .qtitle {
    font-size: 16px;
    font-weight: 700;
}
.course_test .answer {
    background-color: #ffe3b9;
}
.course_test .score {
    float: left;
    font-size: 22px;
}
@media (max-width: 767px ) {
    .course_test .score {
        float: none;
        text-align: left;
        padding-bottom: 16px;
    }
}
.course_test .blocky_footer {
    font-size: 15px;
}

.view_course_test_wr {
    padding: 80px 50px;
}
.view_course_test_wr .title {
    margin: 10px 0;
    font-size: 24px;
}
.view_course_test_wr .sub_title {
    margin-bottom: 15px;
}
.view_course_test_wr .radio-primary {
    padding: 4px 0;
}
.view_course_test_wr .alert {
    padding-left: 16px;
    font-size: 18px;
}
.view_course_test_wr .alert.danger {
    background-color: rgba(245, 105, 84, 0.3);
}
.view_course_test_wr .alert.danger i {
    color: #f56954;
    font-size: 24px;
    margin-right: 8px;
}
.view_course_test_wr .alert.success {
    background-color: rgba(92, 184, 92, 0.3);
}
.view_course_test_wr .alert.success i {
    color: #5cb85c;
    font-size: 24px;
    margin-right: 8px;
}
@media (max-width: 767px ) {
    .view_course_test_wr {
        padding: 80px 25px;
    }
    .view_course_test_wr .title {
        font-size: 18px;
    }
    .view_course_test_wr .alert {
        padding-left: 8px;
        font-size: 15px;
    }
}

.signup_bg {
    background-color: #fff;
}
.signup_bg .title_main {
    font-size: 21px;
}

.grid_coursect .content {
    background-color: #f7f7f7;
}
.grid_coursect .content .title {
    color: #f0899e;
    overflow: hidden;
    line-height: 1.8em;
    max-height: 1.8em;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
}
.grid_coursect .item:hover .content {
    z-index: 2;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.course_title {
    margin-bottom: 15px;
    color: white;
    font-size: 18px;
}
.course_title h2 {
    font-weight: 700;
    margin-top: 10px;
    padding: 8px;
    background-color: #1EB7C8;
    border: 4px;
    border-style: double;
    border-color: white;
}

.class_title {
    display: inline-block;
    color: #f0899e;
    border-right: 4px double #f0899e;
    border-bottom: 4px double #f0899e;
    font-weight: 600;
    padding: 8px 5px;
    margin-left: 8px;
}
.class_title i {
    margin-right: 5px;
    width: 25px;
}

.course_panel ul {
    list-style: none;
}
.course_panel .panel-heading {
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    margin-bottom: 10px;
}
.course_panel .panel-body {
    border-top: none;
}
.course_panel .panel-heading .accordion-toggle:before {
    content: "－";
}
.course_panel .panel-heading .accordion-toggle.collapsed:before {
    content: "＋";
}

.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
    border-top: none;
}

.share {
    float: right;
    list-style: none;
}
.share:after, .share:before {
    content: "";
    display: block;
    clear: both;
}
.share li {
    float: left;
    margin-right: 5px;
}
.share li i {
    font-size: 28px;
}
.share li .ic_line {
    background-image: url("../../images/common/ic_line.png");
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
    background-size: 32px auto;
    margin-top: -2px;
    margin-right: -4px;
}
.share .like_mobile {
    display: none;
}
@media (max-width: 767px) {
    .share .like_mobile {
        display: block;
        background-color: #fff;
        border-radius: 5px;
        padding: 4px;
    }
}
.share .like_mobile i {
    font-size: 20px;
    color: #d55340;
}

.CI_wrap {
    box-shadow: 0 0 6px #dadada;
    background-color: rgba(164, 236, 213, 0.1);
}

/* Course List
---------------- */
.table_align {
    text-align: center;
}
@media (max-width: 991px ) {
    .table_align {
        text-align: left;
    }
}
.table_align thead th {
    text-align: center;
}

.mb a {
    margin-bottom: 5px;
}
.mb a:last-child {
    margin-bottom: 0px;
}
@media (max-width: 991px ) {
    .mb a {
        margin-bottom: 0;
    }
}

/* 實體課程報名 Modal */
.courseSignupModal .modal-title {
    display: inline-block;
    font-size: 20px;
}
.courseSignupModal .courseInfo p {
    font-size: 18px;
    font-weight: 600;
    color: #f0899e;
}

.list_switch a {
    color: white;
    text-decoration: underline;
}

.mmbr_sidebar .title {
    background: #f7f7f7;
    margin: 0;
    padding: 13px;
    border-top: 4px solid #1EB7C8;
    font-weight: 600;
}
.mmbr_sidebar .mycourse_tabs > li {
    width: 100%;
    border-top: 1px solid #eee;
}
.mmbr_sidebar .mycourse_tabs > li > a {
    border-radius: 0;
    font-size: 1.1em;
    background: #f7f7f7;
    color: #444;
}
.mmbr_sidebar .mycourse_tabs > li.active > a, .mmbr_sidebar .mycourse_tabs > li.active > a:hover, .mmbr_sidebar .mycourse_tabs > li.active > a:focus {
    color: #fff;
    background-color: rgba(164, 236, 213, 0.9);
}
.mmbr_sidebar .mycourse_tabs > li + li {
    margin-left: 0;
}

.patt_leftbar .leftbar {
    padding-bottom: 0;
}
.patt_leftbar .leftbar:before, .patt_leftbar .leftbar:after {
    content: "";
    display: none;
}
.patt_leftbar .leftbar-menu {
    background-color: #f7f7f7;
    margin: 0;
    text-align: center;
}
.patt_leftbar .leftbar-menu li a:hover {
    font-weight: 700;
}
.patt_leftbar .leftbar-menu .active a {
    font-weight: 700;
}
@media (max-width: 767px ) {
    .patt_leftbar {
        margin-bottom: 30px;
    }
}

button.tag.course_del {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    margin: 0;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    margin: 4px;
    font-size: 20px;
    box-shadow: 1px 1px 6px #4d4d4d;
    border-color: #ff7d7d;
    background: #ff7d7d;
}
button.tag.course_del:hover {
    opacity: 1;
    border-color: #ff6464;
    background: #ff6464;
}

/* Teacher List */
.grid_teacher {
    /* hover */
}
.grid_teacher:after, .grid_teacher:before {
    content: "";
    display: block;
    clear: both;
}
.grid_teacher .item {
    background-color: #f9f9f9;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    -webkit-transition: all 0.1s ease-in-out;
    -khtml-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.grid_teacher .item:after, .grid_teacher .item:before {
    content: "";
    display: block;
    clear: both;
}
.grid_teacher .img, .grid_teacher .content {
    float: left;
}
.grid_teacher .img {
    width: 80px;
    border-radius: 6px;
}
.grid_teacher .content {
    width: calc(100% - 80px);
    padding-left: 15px;
}
.grid_teacher .title {
    color: #1EB7C8;
    float: left;
    overflow: hidden;
    line-height: 1.4em;
    max-height: 1.4em;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    margin: 0;
}
.grid_teacher .teacher_info {
    float: right;
}
.grid_teacher .teacher_info li {
    overflow: hidden;
    line-height: 1.8;
    max-height: 1.8;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
}
.grid_teacher .dsc {
    clear: both;
    text-align: justify;
    padding-top: 5px;
    white-space: normal;
    text-overflow: initial;
    line-height: 1.2em;
}
.grid_teacher .item:hover {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Teacher In */
.artc_teacher .img_wrapper {
    margin-bottom: 30px;
}
@media (max-width: 991px ) {
    .artc_teacher .img_wrapper {
        float: none;
        margin-left: auto;
        margin-right: auto;
    }
}
.artc_teacher .img {
    display: block;
    margin: 0 auto;
    width: 80%;
    border-radius: 6px;
    padding-top: 0;
    max-width: 100%;
}
.artc_teacher .img:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}
.artc_teacher .content_wrapper {
    padding: 0 15px;
}
.artc_teacher .tt_wrp {
    margin-bottom: 10px;
}
@media (max-width: 991px ) {
    .artc_teacher .tt_wrp {
        text-align: center;
    }
}
.artc_teacher .title {
    display: block;
    color: #1EB7C8;
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 8px;
    margin-top: 0;
}
.artc_teacher .content {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 20px;
}

.teacher_basic_info {
    text-align: center;
}

.teacher_name {
    color: #1EB7C8;
    font-weight: 400;
    margin-top: 10px;
}

.teacher_info {
    color: #999;
    list-style: none;
}
.teacher_info span {
    display: inline-block;
    color: #1EB7C8;
    margin-right: 5px;
}

/* Social
-------------- */
.teacher_social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: inherit;
    margin-top: 10px;
    margin-bottom: 10px;
}
.teacher_social li {
    display: inline-block;
    padding: 0 2px;
}
.teacher_social a {
    display: inline-block;
}
.teacher_social .link_text {
    font-size: 120%;
    padding-right: 10px;
}

.teacher_social .btn_social {
    display: inline-block;
    background-color: #1EB7C8;
    color: white;
    width: 36px;
    height: 36px;
    text-align: center;
    border-radius: 18px;
}
.teacher_social .btn_social i {
    font-size: 20px;
    line-height: 36px;
}
.teacher_social .btn_social .ic_line {
    display: block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    background-image: url("../../images/icon/ic_social_line_white.svg");
    background-size: 22px;
    background-position: center center;
    background-repeat: no-repeat;
}
.teacher_social .btn_social:hover, .teacher_social .btn_social:focus {
    color: white;
    background-color: #7ae3c2;
}

.grid_videol {
    margin-bottom: 30px;
}
.grid_videol .item {
    float: left;
    float: left;
    float: left;
    width: 50%;
    float: left;
}
@media (max-width: 575px ) {
    .grid_videol .item {
        width: 100%;
    }
}
@media (min-width: 992px ) {
    .grid_videol .item {
        width: 33.3333333333%;
    }
}
@media (max-width: 767px ) {
    .grid_videol .item:nth-child(2n+1) {
        clear: left;
    }
}
.grid_videol .img {
    width: 100%;
    padding: 0;
    padding-top: 55.625%;
    background-size: cover;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    z-index: 1;
}
.grid_videol .content {
    padding: 15px 8px;
    background-color: #f8f8f8;
}
.grid_videol .title {
    white-space: normal;
    height: auto;
}
.grid_videol .date {
    color: #561d1d;
}
.grid_videol .more {
    color: #561d1d;
    text-decoration: underline;
}
@media (max-width: 767px ) {
    .grid_videol {
        margin-bottom: 20px;
    }
    .grid_videol .item {
        padding: 8px 4px;
    }
}

.ic_youtube:before {
    position: absolute;
    content: "";
    font-family: FontAwesome;
    left: calc(0px);
    top: calc(50% - 30px);
    color: white;
    font-size: 55px;
    height: 1em;
    line-height: 1em;
    width: 100%;
    text-align: center;
    pointer-events: none;
    z-index: 2;
}
.ic_youtube:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    top: 0;
    left: 0;
}
@media (max-width: 767px ) {
    .ic_youtube:before {
        top: calc(38% - 30px);
    }
}

.grid_albuml {
    margin-bottom: 30px;
    /* hover */
}
.grid_albuml .item {
    -webkit-transition: all 0.2s ease-in-out;
    -khtml-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    float: left;
    float: left;
    float: left;
    float: left;
}
.grid_albuml .item:after, .grid_albuml .item:before {
    content: "";
    display: block;
    clear: both;
}
@media (max-width: 575px ) {
    .grid_albuml .item {
        width: 100%;
    }
}
@media (min-width: 768px ) {
    .grid_albuml .item {
        width: 50%;
    }
}
@media (min-width: 992px ) {
    .grid_albuml .item {
        width: 33.3333333333%;
    }
}
@media (max-width: 767px ) {
    .grid_albuml .item:nth-child(2n+1) {
        clear: left;
    }
}
.grid_albuml .img {
    width: 100%;
    padding: 0;
    padding-top: 62.5%;
    background-size: cover;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    z-index: 1;
}
.grid_albuml .content {
    color: #4d4d4d;
    padding: 8px 0;
}
.grid_albuml .item:hover .img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
@media (max-width: 767px ) {
    .grid_albuml {
        margin-bottom: 20px;
    }
}

.grid_albumi {
    margin-bottom: 20px;
    /* hover */
}
.grid_albumi a {
    border-radius: 0;
    overflow: hidden;
}
.grid_albumi .item {
    float: left;
    float: left;
    width: 100%;
    float: left;
    float: left;
}
.grid_albumi .item:after, .grid_albumi .item:before {
    content: "";
    display: block;
    clear: both;
}
@media (min-width: 768px ) {
    .grid_albumi .item {
        width: 50%;
    }
}
@media (min-width: 992px ) {
    .grid_albumi .item {
        width: 33.3333333333%;
    }
}
.grid_albumi .img {
    width: 100%;
    padding: 0;
    padding-top: 62.5%;
    background-size: cover;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    z-index: 1;
}
.grid_albumi .item:hover .img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0.8;
}
/* ------ venobox.css --------*/
.vbox-overlay *, .vbox-overlay *:before, .vbox-overlay *:after {
    -webkit-backface-visibility: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.vbox-overlay {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1040;
    -webkit-transform: translateZ(1000px);
    transform: translateZ(1000px);
    transform-style: preserve-3d;
}

/* ----- navigation ----- */
.vbox-title {
    width: 100%;
    height: 40px;
    float: left;
    text-align: center;
    line-height: 28px;
    font-size: 12px;
    padding: 6px 40px;
    overflow: hidden;
    position: fixed;
    display: none;
    left: 0;
    z-index: 1050;
}

.vbox-close {
    cursor: pointer;
    position: fixed;
    bottom: 40px;
    width: 40px;
    height: 40px;
    right: calc(50% - 20px);
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 0;
    z-index: 1050;
    font-size: 34px;
    line-height: 34px;
    text-align: center;
    display: block;
}

.vbox-num {
    cursor: pointer;
    position: fixed;
    left: 0;
    height: 40px;
    display: block;
    overflow: hidden;
    line-height: 28px;
    font-size: 12px;
    padding: 6px 10px;
    display: none;
    z-index: 1050;
}

/* ----- navigation ARROWS ----- */
.vbox-next, .vbox-prev {
    position: fixed;
    top: 50%;
    margin-top: -15px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    width: 45px;
    height: 45px;
    z-index: 1050;
}

.vbox-next span, .vbox-prev span {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: #B6B6B6;
    border-right-color: #B6B6B6;
    text-indent: -100px;
    position: absolute;
    top: 8px;
    display: block;
}

.vbox-prev {
    left: 15px;
}

.vbox-next {
    right: 15px;
}

.vbox-prev span {
    left: 10px;
    -ms-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.vbox-next span {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 10px;
}

/* ------- inline window ------ */
.vbox-inline {
    width: 420px;
    height: 315px;
    height: 70vh;
    padding: 10px;
    background: #fff;
    margin: 0 auto;
    overflow: auto;
    text-align: left;
}

/* ------- Video & iFrames window ------ */
.venoframe {
    max-width: 100%;
    width: 100%;
    border: none;
    width: 100%;
    height: 260px;
    height: 70vh;
}

.venoframe.vbvid {
    height: 260px;
}

@media (min-width: 768px) {
    .venoframe, .vbox-inline {
        width: 90%;
        height: 360px;
        height: 70vh;
    }

    .venoframe.vbvid {
        width: 640px;
        height: 360px;
    }
}
@media (min-width: 992px) {
    .venoframe, .vbox-inline {
        max-width: 1200px;
        width: 80%;
        height: 540px;
        height: 70vh;
    }

    .venoframe.vbvid {
        width: 960px;
        height: 540px;
    }
}
/*
Please do NOT edit this part!
or at least read this note: http://i.imgur.com/7C0ws9e.gif
*/
.vbox-open {
    overflow: hidden;
}

.vbox-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    z-index: 20;
    max-height: 100%;
    overflow: hidden;
}

.vbox-content {
    text-align: center;
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 20px 10px;
}

.vbox-container img {
    max-width: 100%;
    height: auto;
}

.figlio {
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    max-width: 100%;
    text-align: initial;
}

img.figlio {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.vbox-content.swipe-left {
    margin-left: -200px !important;
}

.vbox-content.swipe-right {
    margin-left: 200px !important;
}

.animated {
    webkit-transition: margin 300ms ease-out;
    transition: margin 300ms ease-out;
}

.animate-in {
    opacity: 1;
}

.animate-out {
    opacity: 0;
}

/* ---------- preloader ----------
 * SPINKIT
 * http://tobiasahlin.com/spinkit/
-------------------------------- */
.sk-double-bounce, .sk-rotating-plane {
    width: 40px;
    height: 40px;
    margin: 40px auto;
}

.sk-rotating-plane {
    background-color: #333;
    -webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out;
    animation: sk-rotatePlane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotatePlane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0) rotateY(0);
        transform: perspective(120px) rotateX(0) rotateY(0);
    }
    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
    }
    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}
@keyframes sk-rotatePlane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0) rotateY(0);
        transform: perspective(120px) rotateX(0) rotateY(0);
    }
    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
    }
    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}
.sk-double-bounce {
    position: relative;
}

.sk-double-bounce .sk-child {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #333;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-doubleBounce 2s infinite ease-in-out;
    animation: sk-doubleBounce 2s infinite ease-in-out;
}

.sk-chasing-dots .sk-child, .sk-spinner-pulse, .sk-three-bounce .sk-child {
    background-color: #333;
    border-radius: 100%;
}

.sk-double-bounce .sk-double-bounce2 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes sk-doubleBounce {
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes sk-doubleBounce {
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.sk-wave {
    margin: 40px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

.sk-wave .sk-rect {
    background-color: #333;
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
    animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
}

.sk-wave .sk-rect1 {
    -webkit-animation-delay: -1.2s;
    animation-delay: -1.2s;
}

.sk-wave .sk-rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.sk-wave .sk-rect3 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.sk-wave .sk-rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.sk-wave .sk-rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes sk-waveStretchDelay {
    0%, 100%, 40% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }
    20% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@keyframes sk-waveStretchDelay {
    0%, 100%, 40% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }
    20% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
.sk-wandering-cubes {
    margin: 40px auto;
    width: 40px;
    height: 40px;
    position: relative;
}

.sk-wandering-cubes .sk-cube {
    background-color: #333;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-wanderingCube 1.8s ease-in-out -1.8s infinite both;
    animation: sk-wanderingCube 1.8s ease-in-out -1.8s infinite both;
}

.sk-chasing-dots, .sk-spinner-pulse {
    width: 40px;
    height: 40px;
    margin: 40px auto;
}

.sk-wandering-cubes .sk-cube2 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

@-webkit-keyframes sk-wanderingCube {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    25% {
        -webkit-transform: translateX(30px) rotate(-90deg) scale(0.5);
        transform: translateX(30px) rotate(-90deg) scale(0.5);
    }
    50% {
        -webkit-transform: translateX(30px) translateY(30px) rotate(-179deg);
        transform: translateX(30px) translateY(30px) rotate(-179deg);
    }
    50.1% {
        -webkit-transform: translateX(30px) translateY(30px) rotate(-180deg);
        transform: translateX(30px) translateY(30px) rotate(-180deg);
    }
    75% {
        -webkit-transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5);
        transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}
@keyframes sk-wanderingCube {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    25% {
        -webkit-transform: translateX(30px) rotate(-90deg) scale(0.5);
        transform: translateX(30px) rotate(-90deg) scale(0.5);
    }
    50% {
        -webkit-transform: translateX(30px) translateY(30px) rotate(-179deg);
        transform: translateX(30px) translateY(30px) rotate(-179deg);
    }
    50.1% {
        -webkit-transform: translateX(30px) translateY(30px) rotate(-180deg);
        transform: translateX(30px) translateY(30px) rotate(-180deg);
    }
    75% {
        -webkit-transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5);
        transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}
.sk-spinner-pulse {
    -webkit-animation: sk-pulseScaleOut 1s infinite ease-in-out;
    animation: sk-pulseScaleOut 1s infinite ease-in-out;
}

@-webkit-keyframes sk-pulseScaleOut {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}
@keyframes sk-pulseScaleOut {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}
.sk-chasing-dots {
    position: relative;
    text-align: center;
    -webkit-animation: sk-chasingDotsRotate 2s infinite linear;
    animation: sk-chasingDotsRotate 2s infinite linear;
}

.sk-chasing-dots .sk-child {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    -webkit-animation: sk-chasingDotsBounce 2s infinite ease-in-out;
    animation: sk-chasingDotsBounce 2s infinite ease-in-out;
}

.sk-chasing-dots .sk-dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes sk-chasingDotsRotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes sk-chasingDotsRotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes sk-chasingDotsBounce {
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes sk-chasingDotsBounce {
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.sk-three-bounce {
    margin: 40px auto;
    width: 80px;
    text-align: center;
}

.sk-three-bounce .sk-child {
    width: 20px;
    height: 20px;
    display: inline-block;
    -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
    animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}

.sk-circle .sk-child:before, .sk-fading-circle .sk-circle:before {
    display: block;
    border-radius: 100%;
    content: "";
    background-color: #333;
}

.sk-three-bounce .sk-bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.sk-three-bounce .sk-bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-three-bounce {
    0%, 100%, 80% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes sk-three-bounce {
    0%, 100%, 80% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.sk-circle {
    margin: 40px auto;
    width: 40px;
    height: 40px;
    position: relative;
}

.sk-circle .sk-child {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.sk-circle .sk-child:before {
    margin: 0 auto;
    width: 15%;
    height: 15%;
    -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
    animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.sk-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.sk-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.sk-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sk-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}

.sk-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}

.sk-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sk-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}

.sk-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}

.sk-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.sk-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}

.sk-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}

.sk-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.sk-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.sk-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.sk-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.sk-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.sk-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.sk-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.sk-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.sk-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.sk-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.sk-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleBounceDelay {
    0%, 100%, 80% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes sk-circleBounceDelay {
    0%, 100%, 80% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.sk-cube-grid {
    width: 40px;
    height: 40px;
    margin: 40px auto;
}

.sk-cube-grid .sk-cube {
    width: 33.33%;
    height: 33.33%;
    background-color: #333;
    float: left;
    -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
    animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.sk-cube-grid .sk-cube1 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube2 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube3 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.sk-cube-grid .sk-cube4 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube5 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube6 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube7 {
    -webkit-animation-delay: 0ms;
    animation-delay: 0ms;
}

.sk-cube-grid .sk-cube8 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube9 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {
    0%, 100%, 70% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }
    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}
@keyframes sk-cubeGridScaleDelay {
    0%, 100%, 70% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }
    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}
.sk-fading-circle {
    margin: 40px auto;
    width: 40px;
    height: 40px;
    position: relative;
}

.sk-fading-circle .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.sk-fading-circle .sk-circle:before {
    margin: 0 auto;
    width: 15%;
    height: 15%;
    -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
    animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}

.sk-fading-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.sk-fading-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.sk-fading-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sk-fading-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}

.sk-fading-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}

.sk-fading-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sk-fading-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}

.sk-fading-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}

.sk-fading-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.sk-fading-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}

.sk-fading-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}

.sk-fading-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.sk-fading-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.sk-fading-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.sk-fading-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.sk-fading-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.sk-fading-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.sk-fading-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.sk-fading-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.sk-fading-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.sk-fading-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.sk-fading-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {
    0%, 100%, 39% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}
@keyframes sk-circleFadeDelay {
    0%, 100%, 39% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}
.sk-folding-cube {
    margin: 40px auto;
    width: 40px;
    height: 40px;
    position: relative;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
    animation: sk-foldCubeAngle 2.4s infinite linear both;
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube2 {
    -webkit-transform: scale(1.1) rotateZ(90deg);
    transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
    -webkit-transform: scale(1.1) rotateZ(180deg);
    transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
    -webkit-transform: scale(1.1) rotateZ(270deg);
    transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3:before {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }
    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0);
        transform: perspective(140px) rotateX(0);
        opacity: 1;
    }
    100%, 90% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}
@keyframes sk-foldCubeAngle {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }
    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0);
        transform: perspective(140px) rotateX(0);
        opacity: 1;
    }
    100%, 90% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}
.viewbox-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    color: #444444;
    font-size: 18px;
}

.viewbox-body {
    position: absolute;
    top: 50%;
    left: 50%;
    background: rgba(255, 255, 255, 0.8);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    overflow: auto;
    border: 1px solid white;
}

.viewbox-header {
    margin: 4px;
    text-align: center;
}

.viewbox-content {
    margin: 4px;
    width: 300px;
    height: 300px;
}

.viewbox-footer {
    margin: 4px;
}

.viewbox-content .viewbox-image {
    width: 100%;
    height: 100%;
}

/* buttons */
.viewbox-button-default {
    cursor: pointer;
    height: 64px;
    width: 64px;
}

.viewbox-button-default > svg {
    width: 100%;
    height: 100%;
    background: inherit;
    fill: inherit;
    pointer-events: none;
    transform: translateX(0px);
    background-color: transparent;
}

.viewbox-button-default,
.viewbox-button-default:hover {
    fill: #fff;
}

.viewbox-button-close,
.viewbox-button-next,
.viewbox-button-prev {
    background-color: rgba(0, 0, 0, 0.6);
}

.viewbox-button-close:hover,
.viewbox-button-next:hover,
.viewbox-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.viewbox-button-close {
    position: absolute;
    bottom: 40px;
    right: calc(50% - 32px);
    z-index: 9;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 10px;
}

.viewbox-button-next,
.viewbox-button-prev {
    position: absolute;
    top: 50%;
    height: 64px;
    width: 64px;
    margin: -64px 0 0;
    z-index: 9;
    border-radius: 4px;
}

.viewbox-button-next {
    right: 10px;
}

.viewbox-button-prev {
    left: 10px;
}

@media (max-width: 480px) {
    .viewbox-button-close {
        /*top: 0;*/
        /*right: 0;*/
    }

    .viewbox-button-next,
    .viewbox-button-prev {
        height: 50px;
        width: 50px;
        margin-top: -25px;
    }

    .viewbox-button-next {
        right: -4px;
    }

    .viewbox-button-prev {
        left: -4px;
    }
}
/* loader */
.viewbox-container .loader {
    widows: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -25px 0 0 -25px;
}

.viewbox-container .loader * {
    margin: 0;
    padding: 0;
}

.viewbox-container .loader .spinner {
    width: 50px;
    height: 50px;
    position: relative;
    margin: 0 auto;
}

.viewbox-container .loader .double-bounce1,
.viewbox-container .loader .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #999;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2s infinite ease-in-out;
    animation: sk-bounce 2s infinite ease-in-out;
}

.viewbox-container .loader .double-bounce2 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
    }
}
@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }
    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

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