/*------------------------------------*\
  Basic
\*------------------------------------*/

:root {
    --animate-delay: 0.5s;
}

body {
    color: #fff;
    background-color: #f09491;
    font-family: 'Microsoft JhengHei', '微軟正黑體', sans-serif;
}

body.fixed {
    height: 100vh;
    overflow: hidden;
}

a {
    color: #fff;
    transition: .3s;
}

a:hover {
    color: #fff;
    text-decoration: none;
    opacity: .8;
}

ul {
    padding-left: 0;
}

ul li {
    list-style: none;
}

.h1, h1,
.h2, h2,
.h3, h3,
.h4, h4,
.h5, h5,
.h6, h6 {
    line-height: 1.5;
    font-family: 'Noto Serif TC', 'Microsoft JhengHei', '微軟正黑體', sans-serif;
}

p {
    margin-bottom: 0;
}

.w-100 {
    width: 100%;
}

.section {
    margin-top: 60px;
    margin-bottom: 40px;
}

.animate__animated {
    visibility: hidden;
    animation-duration: 2s;
    opacity: 0;
}

.animate__animated .animated {
    opacity: 1;
}

.text-normal {
    font-family: 'Microsoft JhengHei', '微軟正黑體', sans-serif;
}

.overflow-x-scroll {
    overflow-x: scroll;
}

.overflow-x-auto {
    overflow-x: auto;
}

input[type="image"]:focus {
    outline: none;
    border: none;
}


/* scrollbar */
.add-scrollbar::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
	border-radius: 8px;
	background-color: #fff;
}

.add-scrollbar::-webkit-scrollbar {
	width: 1px;
	background-color: transparent;
}

.add-scrollbar::-webkit-scrollbar-thumb {
	border-radius: 8px;
	-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
	background-color: #555;
}


/* placeholder */
::-webkit-input-placeholder {   /* Edge */
    color: #ffb7b4;
}

:-ms-input-placeholder {   /* Internet Explorer */
    color: #ffb7b4;
}

::placeholder {
    color: #ffb7b4;
}


/* font */
.custom-font {
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', sans-serif;
    letter-spacing: 2px;
    line-height: 1.8em;
}

.title {
    letter-spacing: 2px;
}

.title-underline {
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 40px;
}

.title-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 38%;
    height: 2px;
    background: #fff;
    opacity: 0.3;
}





/*------------------------------------*\
  Plugin
\*------------------------------------*/

/* timepicker */
.ui-timepicker-container a {
    font-size: 14px;
    transition: unset;
}

/* fullcalendar */
.fc-v-event {
    background-color: #da405a;
    border: 1px solid #da405a;
}

/* daterangepicker */
.daterangepicker {
    color: #333;
}




/*------------------------------------*\
  Layout
\*------------------------------------*/

main {
    overflow: hidden;
}

.m-d-show {
    display: none;
}

.layout {
    margin-left: 5%;
    margin-right: 5%;
}

.align-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

    .grid__item {
        padding-left: 15px;
        padding-right: 15px;
    }

    .grid-2 .grid__item {
        width: 50%;
    }

    .grid-3 .grid__item {
        width: 33.333333333%;
    }

    .grid-4 .grid__item {
        width: 25%;
    }

    .grid-5 .grid__item {
        width: 20%;
    }

    .block__grid__2 {
        display: flex;
        display: -webkit-flex;
        flex-wrap: wrap;
    }

@media (min-width: 1200px) {
    .container {
        max-width: 1270px;
    }
}

.page__plain {
    margin-top: 100px;
    margin-bottom: 180px;
}


/* page */
.page__content {
    min-height: calc(100vh - 146px);
}

.page__content--row {
    display: -webkit-flex;
    display: flex;
}

.content-font {
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', sans-serif;
}

.sidebar {
    width: 240px;
    margin-right: 60px;
}

.content--side {
    flex: 1;
}

.menu-list__link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: #e84860;
    border-bottom: 1px solid #f07184;
}

.menu-list__link.active {
    background-color: #cc3e53;
}

.menu-list__link svg {
    margin-right: 3px;
    width: 16px;
    height: 16px;
}

.item--row {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #d88582;
}

.item__label {
    color: #fff;
    width: 120px;
    font-weight: 500;
    letter-spacing: 1px;
}

.item__text {
    flex: 1;
}

@media(max-width: 991px) {
    .page__content--row {
        flex-direction: column;
    }
    .sidebar {
        width: 90%;
        margin: auto;
    }
}


/* margin & padding */
.mt-60 {
    margin-top: 60px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mr-10 {
    margin-right: 10px;
}

.block-margin {
    margin-top: 40px;
}

.block-padding {
    padding-top: 20px;
    padding-bottom: 40px;
}


/* section */
.section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading {
    font-size: 38px;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.section-subheading {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 300;
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', sans-serif;
    opacity: .5;
}

.page__heading {
    font-size: 42px;
    font-weight: 500;
    letter-spacing: 2px;
}

.page__subheading {
    font-family: "Noto Sans TC", "Microsoft JhengHei", '微軟正黑體', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    margin-top: 12px;
    opacity: 0.5;
}

@media (max-width: 1280px) {
    .m-d-none {
        display: none !important;
    }

    .m-d-show {
        display: block;
    }
}

@media (max-width: 768px) {
    .grid__item,
    .grid-3 .grid__item,
    .grid-4 .grid__item,
    .grid-5 .grid__item {
        width: 100% !important;
        margin-bottom: 60px;
    }
    .d-flex.m-direction-col {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .section-header {
        margin-bottom: 40px;
    }

    .section-heading {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .section-subheading {
        font-size: 12px;
    }

    .section-padding {
        padding-top: 60px;
        padding-bottom: 80px;
    }
    
}


/* Colors */
.bg-el-white a {
    background-color: #fff;
    color: #f19d94;
}

.bg-el-peach a {
    background-color: #e84860;
}

.bg-el-yellow a {
    background-color: #f9cda6;
}

.bg-pink {
    background-color: #f09491;
}

.text-primary {
    color: #e84860!important;
}


.drop__layer .menu-yoga > a,
.mobile__drop .menu-yoga > a {
    background-color:#f9cda6;
}

.drop__layer .menu-suspension > a,
.mobile__drop .menu-suspension > a {
    background-color: #fff;
    color: #f19d94;
}

.bg-primary {
    background-color: #db485d !important;
}

.bg-primary .page__heading__layout {
    border-top: 1px solid #ffa9b6;
    border-bottom: 1px solid #ffa9b6;
}


/* font */
.muted-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff5f5;
}

.note-text {
    font-size: 14px;
    color: #966f75;
}

.font-size-hightlight {
    font-size: 36px;
}

.badge {
    font-size: 13px;
    font-weight: 400;
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', sans-serif;
}





/*------------------------------------*\
  Compontent
\*------------------------------------*/

/* Icons */
.svg-arrow-down {
    width: 16px;
    height: 16px;
    stroke: #fff;
}

.svg-arrow-right {
    width: 16px;
    height: 16px;
    stroke: #fff;
}


/* Button */

button {
    background-color: transparent;
    border: none;
    transition: 0.3s;
}

button:hover {
    color: #e84860;
}

button:focus {
    outline: none;
}

.button-wrapper.center {
    text-align: center;
}

.button {
    position: relative;
    display: inline-block;
    background-color: #e84860;
    color: #fff;
    padding: 6px 20px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    border: none;
    border-radius: 3px;
    transition: 0.3s;
}

.button:hover {
    background-color: #d47070;
    color: #fff;
}

.button.pink {
    background-color: #f19d94;
}

.button.outline {
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
}

.button-wrapper.multi {
    margin-top: 140px;
    margin-bottom: 60px;
}

.button-wrapper.multi .button {
    margin-left: 40px;
    margin-right: 40px;
}

.button .svg-arrow-right {
    position: relative;
    top: 2px;
}

.button-link {
    font-size: 14px;
    line-height: 38px;
    border-bottom: 1px dotted #fff;
    opacity: 0.8;
}

.button-primary {
    background-color: #e84860;
    padding: 8px 40px;
    font-size: 15px;
}

.button-primary:hover {
    background-color: #c93c51;
}

.button-dark-xs {
    border: none;
    background-color: #525252;
    border-radius: 3px;
    color: #fff;
    letter-spacing: 0;
    padding: 3px 12px;
    font-size: 14px;
}

.button-dark:hover {
    background-color: #333;
    color: #fff;
}

.button.disabled {
    background-color: #525252;
}

.facebook-button {
    background-color: #416cc3;
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', sans-serif;
}

.line-button {
    background-color: #00c200;
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', sans-serif;
}

    .facebook-button img {
        width: 20px;
        margin-top: -3px;
        margin-right: 15px;
    }

    .line-button img {
        width: 60px;
        margin-right: 15px;
    }

@media(max-width: 576px) {
    .button {
        font-size: 14px;
        width: 145px;
        padding: 9px 0;
        text-align: center;
    }

    .button .svg-arrow-right {
        position: absolute;
        top: 12px;
    }

    .button-wrapper.multi {
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .button-wrapper.multi .button {
        margin-left: 5px;
        margin-right: 5px;
    }
}


/* dropdown */
.drop__content,
.drop__layer__content {
    display: none;
}

a.drop__button {
    display: block;
}

.drop__content ul {
    padding-left: 0;
    margin-bottom: 0;
}

.drop__content li {
    list-style: none;
}

.drop__content span {
    margin-left: 5px;
    font-size: 12px;
}

.drop:hover .drop__content {
    display: block;
}

.drop__layer .drop__button {
    position: relative;
}

.drop__layer .drop__button::after {
    content: url(../images/icons/chevron-down.svg);
    position: absolute;
    top: 13px;
    right: 10px;
}

.drop__layer .drop__button.active::after {
    content: url(../images/icons/chevron-up.svg);
}


/* Icon Box */
.icon__box.horizonal {
    display: flex;
    display: -webkit-flex;
    align-items: center;
}

.icon__box-img {
    width: 20px;
}

.icon__box svg {
    width: 22px;
    height: 22px;
    stroke: #f9cda6;
}


/* Image Box */
.image__box-img {
    position: relative;
}

.lower-third {
    position: absolute;
    bottom: 40px;
    left: -15px;
    padding: 12px 15px 12px 20px;
    background-color: #e84860;
    width: 62%;
    font-size: 13px;
    letter-spacing: 1px;
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', sans-serif;
}


/* text with border */
.text-border-side {
    position: relative;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.text-border-side::before,
.text-border-side::after {
    content: "";
    position: absolute;
    top: 17%;
    width: 3px;
    height: 66%;
    background-color: #f0c4c3;
}

.text-border-side::before {
    left: -30px;
}

.text-border-side::after {
    right: -30px;
}

/* Checkbox / Radio Button */
.option-wrap {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
  
.option-wrap input {
    position: absolute;
    opacity: 0;
    left: 0;
    width: 100%;
    height: 35px;
    cursor: pointer;
    z-index: 1;
}

.option-label {
    font-size: 16px;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 1px;
}
  
.option-wrap:hover input ~ .checkmark {
    background-color: transparent;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.option-wrap input:checked ~ .checkmark {
    border-color: #e24e64;
    background-color:#e24e64;
}

.option-wrap input:checked ~ .checkmark:after {
   display: block;
   background-color:#e24e64;
}

.option-wrap .checkmark:after {
    left: 5px;
    top: 1px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 1.5px 1.5px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* custom select box */
.select {
    position: relative;
}
  
.select select {
    /* display: none; */
    position: absolute;
    opacity: 0;
    left: 0;
    height: 0;
    z-index: -1;
}
  
.select-selected {
    background-color: #d98683;
    color: #ffffff;
}
  
/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    content: url(../images/icons/chevron-down.svg);
    top: 11px;
    right: 20px;
}
  
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    content: url(../images/icons/chevron-up.svg);
}
  
/*style the items (options), including the selected item:*/
.select-items div, .select-selected {
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
}
  
/*style items (options):*/
.select-items {
    position: absolute;
    background-color: #eee;
    color: #d98683;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}
  

/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.disabled .select-items {
    display: none;
}

.disabled .select-selected {
    cursor: default;
}

.disabled .select-selected.select-arrow-active:after {
    content: url(../images/icons/chevron-down.svg);
}


/* Flip Button */
.flip-button span {
    display: inline-block;
    transition: 0.1s ease-in-out;
    opacity: 0;
    transform: translate(0, -20px);
    letter-spacing: 0;
    width: 80px;
    font-size: 13px;
}

.flip-button:before {
    content: attr(data-text);
    position: absolute;
    width: 100%;
    left: 0;
    transition: 0.1s ease-in-out;
    opacity: 1;
    transform: translate(0, 0);
}

.drop:hover .flip-button:before,
.flip-button:hover:before, .flip-button:focus:before {
    opacity: 0;
    transform: translate(0, 20px);
}

.drop:hover .flip-button span,
.flip-button:hover span, .flip-button:focus span {
    opacity: 1;
    transform: translate(0, 0);
}


/* Image Container */
.thumb-image-container {
    display: flex !important;
}

.thumb-image-wrapper {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
    line-height: 0;
}

.thumb-image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: transparent;
}

.thumb-image img {
    width: 100%;
    height: 100%;
    object-position: 50% 50%;
    object-fit: cover;
}

.thumb-image-wrapper.ratio-3-2 {
    padding-bottom: 66.66%;
}


/* daterangepicker */
.daterangepicker .calendar-table td.available {
    color: #333;
}

.daterangepicker .calendar-table td.available.active {
    color: #fff;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: #e84860;
}

.daterangepicker .applyBtn {
    background-color: #e84860 !important;
    border-color: #e84860 !important;
}

.daterangepicker .applyBtn:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.5);
}


/* video */
.video__container {
    width: 100%;
    margin: 40px auto;
}

.video {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.video iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Load More */
.item__load {
    display: none;
}


/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    cursor: pointer;
    display: none;
}

.back-to-top img {
    width: 24px;
    background: #fff;
    border-radius: 2px;
}


/* Parallax */
.parallax {
    height: 100%; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* Reservation Float */
.reservation__float {
    position: fixed;
    top: 80px;
    right: 20px;
    cursor: pointer;
    width: 70px;
    display: none;
    z-index: 99;
}

.reservation__float a {
    position: relative;
    display: table;
}

.reservation__float img {
    width: 100%;
}

.reservation__float .text {
    position: absolute;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
    bottom: 5px;
    width: 100%;
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', sans-serif;
}


/* table */

.table {
    font-size: 14px;
}

.table td, .table th {
    padding: 10px;
    border-top: 1px solid #d88582;
}

.table thead th {
    border: none;
}

.table__row {
    display: flex;
}

    .table__thead {
        border-bottom: 1px solid #d37b78;
        color: #5e3b3b;
    }

    .table__cell {
        width: 100%;
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 5px;
        padding-right: 5px;
        font-size: 14px;
        border-bottom: 1px solid #d37b78;
    }


.cell-stars {
    font-size: 12px;
    color: #d8344d;
}




/* Header */
.header {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

.site__logo {
    margin-right: auto;
}

    .site__logo-img {
        height: 40px;
    }

    .site__logo-text {
        font-size: 13.5px;
        margin-left: 20px;
    }

.site__nav {
    display: -webkit-flex;
    display: flex;
    margin-bottom: 0;
    padding-left: 0;
}
    .site__nav > li > a {
        position: relative;
        display: block;
        font-size: 15px;
        margin-left: 25px;
        margin-right: 25px;
        padding-top: 20px;
        padding-bottom: 20px;
        line-height: 24px;
        letter-spacing: 2px;
        transition: 0.3s;
    }

    .site__nav .svg-arrow-down {
        position: relative;
        top: 2px;
    }

.site__follow {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    margin-left: 60px;
}

    .site__follow .follow {
        display: inline-block;
        margin-left: 12px;
    }

    .site__follow .follow img {
        width: 16px;
        margin-top: -4px;
    }

.btn-member-login {
    font-size: 13px;
    border-radius: 2px;
    letter-spacing: 1px;
    margin-right: 5px;
    padding: 3px 8px;
    border: 1px solid #fff;
}


@media(max-width: 1600px) {
    .site__nav > li > a {
        margin-left: 7px;
        margin-right: 7px;
    }

    .site__follow {
        margin-left: 40px;
    }
}

@media(max-width: 1280px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1001;
        background-color: #f09491;
        margin: 0;
        padding-left: 5%;
        padding-right: 5%;
        border-bottom: 1px solid #e48986;
    }

    main {
        margin-top: 72px;
    }
}

@media(max-width: 576px) {
    .site__logo-img {
        height: 32px;
    }

    .site__follow {
        margin-left: 0;
    }

        .site__follow .follow {
            margin-left: 8px;
        }
}



/* Nav Drop */
.site__nav > .drop > .drop__content {
    position: absolute;
    min-width: 220px;
    font-size: 14px;
    padding-top: 10px;
    margin-left: 25px;
    z-index: 99;
}

.site__nav .drop__content.indicate::before {
    content: url(../images/icons/drop.png);
    position: relative;
    top: 0;
    left: 15px;
}

.site__nav .drop__content ul {
    margin-top: -5px;
}

.site__nav .drop__content li:last-child {
    border-bottom: none;
}

    .site__nav .drop__content img {
        height: 9px;
        margin-right: 5px;
    }

    .site__nav .drop__content a {
        display: inline-block;
        width: 100%;
        min-width: 220px;
        padding-top: 10px;
        padding-bottom: 12px;
        padding-left: 15px;
        padding-right: 15px;
        letter-spacing: 2px;
        font-weight: 100;
        transition: 0.3s;
        border-bottom: 1px solid #f0c4c3;
    }

    .site__nav .drop__content a.drop__button {
        padding-right: 40px;
    }

    .site__nav .drop__content a:hover {
        /* background-color: transparent; */
        opacity: 0.8;
    }

    .site__nav .drop__content li:last-child a {
        border-bottom: none;
    }

    .site__nav .drop__content.indicate > ul > li > a {
        background-color: #f19d94;
    }

    .site__nav .drop__2nd__content {
        margin-top: 5px;
    }

    .site__nav .drop__2nd__content * {
        transition: 0.3s;
    }
    .site__nav .drop__2nd__content a {
        margin-left: 20px;
    }

    .site__nav .drop__3nd__content {
        margin-top: 5px;
    }

    .site__nav .drop__3nd__content a {
        margin-left: 40px;
    }


/* Mobile Nav */
.mobile__nav {
    display: none;
    z-index: 99;
}

    .toggle {
        cursor: pointer;
        width: 72px;
        height: 14px;
        padding: 15px 0;
    }

    .toggle-close {
        position: absolute;
        right: 20px;
        top: 35px;
        z-index: 9999999;
    }

        .toggle-icon {
            width: 20px;
            height: 16px;
            position: relative;
            top: -6px;
            margin: 0;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: .5s ease-in-out;
            -moz-transition: .5s ease-in-out;
            -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
            cursor: pointer;
        }

        .toggle-close .toggle-icon {
            width: 16px;
            height: 20px;
        }
          
        .toggle-icon span {
            display: block;
            position: absolute;
            height: 1px;
            width: 100%;
            background: #ffffff;
            border-radius: 9px;
            opacity: 1;
            left: 0;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: .25s ease-in-out;
            -moz-transition: .25s ease-in-out;
            -o-transition: .25s ease-in-out;
            transition: .25s ease-in-out;
        }
    
        .toggle-icon span:nth-child(1) {
            top: 0px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }
          
        .toggle-icon span:nth-child(2) {
            top: 6px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }
          
        .toggle-icon span:nth-child(3) {
            top: 12px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }

        .toggle-close .toggle-icon span {
            background: #fff;
        }

        .toggle-close .toggle-icon span:nth-child(1) {
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
            top: 3px;
            left: 0;
        }
          
        .toggle-close .toggle-icon span:nth-child(2) {
            width: 0%;
            opacity: 0;
        }
          
        .toggle-close .toggle-icon span:nth-child(3) {
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
            top: 14px;
            left: 0;
        }
    
    .mobile-sidebar {
        position: fixed;
        top: 0;
        width: 100%;
        height: 100vh;
        overflow: scroll;
        background: rgba(130, 84, 80, 0.85);
        left: -100%;
        transition: .3s;
    }
        .mobile-sidebar > ul {
            padding-left: 0;
            margin-top: 10px;
            padding-bottom: 40px;
        }
            .mobile-sidebar li a {
                display: inline-block;
                padding: 15px 0 15px 20px;
                width: 100%;
                color: #fff;
                letter-spacing: 2px;
                font-size: 16px;
                font-weight: 100;
            }
            .mobile-sidebar li.bg-el-white a {
                color: #f19d94;
            }
            .mobile-sidebar .text-en {
                font-size: 12px;
            }
    
    .slide-sidebar.active {
        left: 0;
    }

    .mobile-sidebar a span {
        position: relative;
        display: inline-block;
        font-size: 13px;
        margin-left: 12px;
    }

    .mobile-sidebar .drop__button span::after {
        position: absolute;
        content: url(../images/icons/chevron-down.svg);
        top: 2px;
        right: -20px;
    }

    .mobile-sidebar .drop__button.active span::after {
        content: url(../images/icons/chevron-up.svg);
    }

    .mobile-sidebar .drop__content a {
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 13px;
        padding-left: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    }

    .mobile__drop.open .drop__button {
        border-bottom: 1px solid #fff;
    }
    
    .mobile-sidebar .drop__2nd__content {
        background-color: #e84860;
    }

    .mobile-sidebar .drop__2nd__content a {
        padding-left: 60px;
    }

    .mobile-sidebar .drop__3nd__content a {
        padding-left: 80px;
    }


@media (max-width: 1280px) {
    .header__nav__logo {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .header__nav__logo .image {
        height: 55px;
    }

    .header__nav {
        display: none;
    }

    .mobile__nav {
        display: block;
    }

    .header__logo {
        flex: 1;
        text-align: center;
    }

    .header__top-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .header__top-links a {
        margin-left: 6px;
        margin-right: 6px;
    }
}



/* form */
.required {
    color: #ff0026;
}

.input-styled {
    background-color: #f6b2b0;
    border-color: #f6b2b0;
}

.input-styled:focus {
    background-color: #f6b2b0;
    box-shadow: 0 0 1px 3px rgb(232 72 96 / 40%);
}


.course-kw-search--adv {
    width: 300px;
}


/* table */
.clickable-row {
    cursor: pointer;
}

.clickable-row:hover {
    background-color: #ffaeab !important;
}



/* member */
.login-register h3 {
    font-size: 28px;
}

.login-register .form-group  {
    margin-top: 10px;
    padding-left: 15px;
    padding-right: 15px;
}

.login-register .form-control {
    font-size: 16px;
}


.widget--member-info {
    padding: 18px;
    border-radius: 3px;
    color:#453e3f;
    margin-bottom: 30px;
    text-align: center;
}

    .widget--member-info .badge {
        background-color: #525252;
        color: #fff;
        font-size: 13px;
    }

    .upload-comfirm {
        display: none;
    }

    .member-image {
        position: relative;
        width: 220px;
        padding: 5px 0;
    }

    .member-image.active::before {
        content: '';
        position: absolute;
        top: -10%;
        left: -5%;
        width: 110%;
        height: 120%;
        background-color: rgb(248 237 237);
        border-radius: 3px;
        z-index: 1;
    }

    .member-image.active .preview {
        position: relative;
        margin-top: -20px;
        z-index: 2;
    }

        .preview-text {
            display: none;
            color: #535353;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .member-image.active .preview-text {
            display: block;
        }
    
    .member-image.active .upload-comfirm {
        display: block;
        text-align: center;
        margin-top: 20px;
    }
    
    .button-cancel {
        background-color: #888;
    }

    .button-cancel:hover {
        background-color: #a3a3a3;
    }



    .file-input {
        color: transparent;
        opacity: 1;
    }

    .file-input::-webkit-file-upload-button {
        visibility: hidden;
    }

    .file-input::before {
        content: '圖片上傳';
        color: #fff;
        display: inline-block;
        background: #333;
        border-radius: 3px;
        padding: 8px 16px;
        outline: none;
        white-space: nowrap;
        -webkit-user-select: none;
        cursor: pointer;
        font-weight: 700;
        font-size: 13px;
    }


    .file-input:active {
        outline: 0;
    }

    .file-input:active::before {
        background: #666; 
    }


.grid--member-center {
    width: 100%;
}

    .grid--member-center .link-box {
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 40px;
        background-color: #e84860;
    }

    .grid--member-center .link-box svg {
        width: 36px;
        height: 36px;
        margin-bottom: 15px;
    }

@media(max-width: 576px) {
    .grid--member-center {
        margin-left: 0;
        margin-right: 0;
    }
}


/* modal */
.modal-custom .modal-content {
    padding-left: 25px;
    padding-right: 25px;
    background-color: #f3f3f3;
}


/* qrcode */
.image-qrcode {
    width: 200px;
    height: 200px;
    object-fit: contain;
}


/* favoritives */
.image-fav {
    width: 110px;
    height: 75px;
    object-fit: contain;
}


/* message */
.message-inbox .message {
    display: flex;
}

.message-inbox {
    color: #333;
}

    .message-inbox .m-col {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .message-inbox a {
        color: #333;
    }

    .message-inbox .message {
        background-color: #FFBBBA;
    }

    .message-type {
        padding: 5px;
        width: 15%;
        text-align: center;
        color: #fff;
        background-color: #e84860;
    }

    .message-title {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .message-date {
        width: 25%;
        text-align: center;
    }

    .message-del {
        width: 10%;
        text-align: center;
    }





/* schedule */
.schedule {
    margin: 60px auto;
}

.schedule__nav {
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid #fff;
}

    .schedule__nav-title {
        font-size: 20px
    }


    .arrows {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
        .arrows svg {
            width: 18px;
            height: 18px;
            stroke: #fff;
        }

        .arrows .arrow {
            margin-left: 2px;
        }

        .arrow--square {
            display: flex;
            padding: 10px;
            background-color: #e84860;
        }

        .arrow--disabled {
            opacity: 0.3;
            cursor: default;
        }

        .arrow--disabled:hover {
            opacity: 0.3;
        }


.schedule__day {
    text-align: left;
    margin-bottom: 100px;
}

    .schedule__day-date {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .schedule__day-table {
        color: #fff; 
    }

        .schedule__day-table .table__thead {
            display: none;
        }

        .schedule__day-table .table__row {
            flex-wrap: wrap;
        }

        .schedule__day-table .table__cell a {
            color: #fff;
        }



.schedule__info {
    background-color: #FFBBBA;
    color: #333;
}

[data-tab-content] {
    display: none;
}

.tab-content {
    position: relative;
}

    .tab-content .close-tab {
        position: absolute;
        top: 10px;
        right: 15px;
    }

@media(min-width:769px) {
    .schedule__day-table .table__thead {
        display: flex;
    }

    .schedule__day-table .table__row {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .schedule__day-table .table__cell {
        display: flex;
        align-items: center;
        width: 20%;
    }
}


@media(max-width:769px) {
    .schedule__day-table .table__cell::before {
        content: attr(data-th-label);
        display: block;
        margin-bottom: 5px;
        color: #f7c2c2;
        font-weight: 700;
        font-size: 14px;
        width: 140px;
    }

    .schedule__day-table .custom-tabs {
        background-color: #e37370;
        padding: 15px 20px;
        margin-bottom: 20px;
        border-radius: 15px;
    }

    .schedule__day-table .table__cell {
        width: 50%;
        font-size: 16px;
    }

    .schedule__day-table .custom-tabs .table__cell:last-child {
        border-bottom: none;
    }
    
}



/* seat */

.seat-hint {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-right: 12px;
    font-size: 13px;
}

    .seat-hint .item {
        width: 60px;
        height: 24px;
        background-color: #fff;
        border: 1px solid #888;
        text-align: center;
    }

    .seat-hint .item.disabled {
        background-color: #888;
        border: 1px solid #888;
        color: #fff;
    }


.seat-table .option-wrap {
    padding-left: 0;
    text-align: center;
    width: 20%;
}
    
    .seat-table .option-label {
        position: relative;
        display: block;
        width: 60px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        pointer-events: none;
        z-index: 1;
    }

    .seat-table .option-wrap input {
        top: 0;
        width: 60px;
        height: 24px;
        left: 50%;
        transform: translateX(-50%);
    }

    .seat-table .checkmark {
        height: 24px;
        width: 60px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #fff;
        border: 1px solid #f7f7f7;
    }

    .seat-table .option-wrap.disabled {
        pointer-events: none;
    }

    .seat-table .option-wrap.disabled .checkmark {
        background-color: #888;
        border: 1px solid #888;
    }

    .seat-table .option-wrap .checkmark:after,
    .seat-table .option-wrap input:checked ~ .checkmark:after {
        display: none;
    }

    .seat-table .option-wrap:hover input ~ .checkmark {
        background-color: #f18192;
        border: 1px solid #f18192;
    }

    .seat-table .option-wrap.other,
    .seat-table .option-wrap.other input,
    .seat-table .option-wrap.other .checkmark,
    .seat-table .option-wrap.other .option-label {
        width: 130px;
        margin-left: 6px;
    }

    .seat-table .option-label.other {
        margin-left: 11px;
    }


/* course signup */

.course-signup-confirm {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 17px;
}

    .course-signup-confirm .c-label {
        position: relative;
        display: inline-block;
        width: 112px;
        letter-spacing: 1px;
    }

    .course-signup-confirm .c-label::after {
        position: absolute;
        content: ":";
        right: 22px;
        width: 5px;
    }


    .course-signup-confirm .c-label.spacing {
        letter-spacing: 38px;
    }

    .course-signup-confirm .item {
        margin-bottom: 5px;
        padding-left: 15px;
        padding-right: 15px;
        border-bottom: 1px solid #dd9e9d;
    }
    

/*
.schedule__row {
    display: flex;
    border-bottom: 1px solid #d88582;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.schedule__row--thead {
    border-top: 1px solid #d88582;
}

.cell {
    flex: 1; 
}
    .cell--label {
        flex: unset;
        width: 100px;
    }

.event {
    display: flex;
    flex-direction: column;
    background-color: #db485d;
    margin: 5px 5px 10px 5px;
    padding: 10px 8px;
    font-size: 15px;
    min-height: 170px;
}

    .event .name {
        font-size: 20px;
    }

    .event .classroom {
        margin-top: auto;
    }

    .event .button {
        padding: 8px 18px 8px 26px;
        margin-top: 5px;
        margin-bottom: 5px;
        border-radius: 3px;
        background-color: #ffb8c2;
    }
*/


/* filter */
.filter {
    margin-top: 40px;
    padding: 25px 30px 10px;
    background-color: #f5a3a1;
}

.filter__advanced {
    display: none;
    padding-top: 15px;
    padding-bottom: 20px;
    border-top: 1px solid #d26e6e;
}

    .filter .custom-select {
        border-radius: 25px;
        padding: 0 20px;
        width: 140px;
        background-color: rgb(255 231 230);
    }

@media(max-width: 576px) {
    .arrows {
        font-size: 12px;
    }
    .schedule__nav-title {
        font-size: 14px;
    }
    .advanced-filter {
        margin-top: 20px;
        margin-right: 20px;
        text-align: right;
    }
}





/* Footer */

.footer {
    background-color: #e84860;
    color: #ffd5db;
}
.footer .layout {
    display: flex;
    align-items: center;
}

    .footer__logo {
        margin-bottom: 0;
    }

    .copyright {
        font-size: 12px;
        font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', sans-serif;
        text-align: right;
    }

        
@media (max-width: 576px) {
    .footer .layout {
        flex-direction: column;
    }

    .footer .site__logo {
        margin-left: auto;
        margin-bottom: 40px;
    }

        .footer .site__logo-img {
            height: 26px;
        }

        .footer .site__logo-text {
            font-size: 12px;
        }

    .copyright {
        transform: scale(0.8);
        text-align: center;
    }

        .copyright > span {
            display: block;
        }
}
        