/*

Table of Contents

- Import Fonts
- General
  - General Styles
  - Selection
  - Typography
  - Buttons
  - Modal
- Site Navigation
  - Menu
- Page Elements
  - Header
  - Footer
- Helper Classes
  - Margin

*/

/* ------------------------------------------------------------------
Import Fonts
------------------------------------------------------------------ */

/*@import url('https://fonts.googleapis.com/css?family=Nunito|Open+Sans:700');
@import url('https://fonts.googleapis.com/css?family=Open+Sans');

@font-face {
    font-family: Moon;
    src: local(../font/Moon Bold.otf);
    font-weight: bold;
}
*/

/* ------------------------------------------------------------------
General Styles
------------------------------------------------------------------ */

body {
    width: 100%;
    height: auto;
    overflow-x: hidden;
    -ms-overflow-style: scrollbar;
    font-family: Montserrat, PingFangTC-Regular, Roboto, Noto Sans TC, PingFang, LiHei Pro, 微軟正黑體, Microsoft JhengHei, sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.01em;
    line-height: 1.7;
    color: #000;
    transition: background-color .5s;
}

    body.modal-open {
        overflow: hidden;
        position: fixed;
    }

img {
    max-width: 100%;
    height: auto;
}

iframe {
    border: 0;
}

body,
input,
textarea,
select,
button {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: rgba(0, 0, 0, 0.6);
}

    a:hover,
    a:focus {
        text-decoration: none;
        color: rgba(9, 43, 156, 0.753);
        outline: 0;
    }

    a:active {
        color: #af8346;
    }

/*Point-link Color*/

.a-red {
    color: #961d3c;
}

.a-brown {
    color: #af8246;
}

.a-red:hover {
    color: rgba(150, 29, 60, 0.5);
}

.a-brown:hover {
    text-decoration: none;
    color: rgba(175, 130, 70, 0.5);
    outline: 0;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

:focus {
    outline: none;
}

/* ------------------------------------------------------------------
Selection
------------------------------------------------------------------ */

::-moz-selection {
    background: #000;
    color: #fff;
}

::-webkit-selection {
    background: #000;
    color: #fff;
}

::selection {
    background: #000;
    color: #fff;
}

/* ------------------------------------------------------------------
Typography
------------------------------------------------------------------- */

/*color*/

.text-pm {
    color: #961d3c;
}

.text-sp {
    color: #af8346;
}

.text-black {
    color: #000;
}

.text-gray {
    color: #666;
}

.text-light {
    color: rgba(255, 255, 255, 0.7);
}

    .text-light h1,
    .text-light h2,
    .text-light h3,
    .text-light h4,
    .text-light h5,
    .text-light h6,
    .text-light .h1,
    .text-light .h2,
    .text-light .h3,
    .text-light .h4,
    .text-light .h5,
    .text-light .h6 {
        color: #fff;
    }

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    line-height: 1.4;
    font-weight: 700;
    color: #111;
}

h1,
.h1 {
    font-size: 28px;
}

h2,
.h2 {
    font-size: 24px;
}

h3,
.h3 {
    font-size: 18px;
}

h4,
.h4 {
    font-size: 16px;
}

h5,
.h5 {
    font-size: 14px;
}

h6,
.h6 {
    font-size: 12px;
}

.text-xs {
    font-size: 12px;
}

p,
ol,
ul,
blockquote {
    margin: 0 0 10px;
}

blockquote {
    border-color: #f7f7f7;
}

    blockquote.serif-quote {
        border: 0;
        padding-left: 0;
        padding-right: 0;
    }

.text-bold {
    font-weight: 700 !important;
}

/* ------------------------------------------------------------------
Transition elsements
------------------------------------------------------------------- */

a,
.btn {
    -webkit-transition: all 0.1s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -moz-transition: all 0.1s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -o-transition: all 0.1s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all 0.1s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

/* ------------------------------------------------------------------
Reset box-shadow
------------------------------------------------------------------- */

.btn,
.well,
.panel,
.progress,
.form-control,
.form-control:hover,
.form-control:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

/* ------------------------------------------------------------------
Reset border-radius
------------------------------------------------------------------- */

.well,
.label,
.alert,
.modal-content {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
}

/* ------------------------------------------------------------------
Forms
------------------------------------------------------------------- */

.form-row {
    height: auto;
    overflow: hidden;
}

p.form-row {
    height: auto;
    overflow: hidden;
}

.form-control {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    height: 44px;
    padding: 8px 10px;
    border: 1px solid #e4e4e4;
    box-sizing: border-box;
    border-radius: 0;
    font-size: 13px;
    line-height: 18px;
    background: transparent;
    box-shadow: none;
    -webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

    .form-control:focus {
        border-color: #333;
    }

/* Form sizes */

.input-lg,
.form-horizontal .form-group-lg .form-control {
    height: 44px;
    font-size: 16px;
}

.input-sm,
.form-horizontal .form-group-sm .form-control {
    height: 30px;
    font-size: 14px;
}

label {
    display: block;
    max-width: 100%;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
}

select::-ms-expand {
    display: none;
}

select {
    /* appearance: none; */
    -moz-appearance: none;
    -webkit-appearance: none;
}

option::-ms-expand {
    display: none;
}

option {
    -moz-appearance: none;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari 和 Chrome */
    /* appearance: none; */
}

    /* --背景色字体颜色--*/

    option:hover {
        color: #fff;
        background-color: #1E90FF;
    }

textarea {
    resize: none;
}

/* ------------------------------------------------------------------
Buttons
------------------------------------------------------------------- */

.btn {
    font-size: 14px;
    padding: 15px 30px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

    .btn.focus,
    .btn:focus,
    .btn.active.focus,
    .btn.active:focus,
    .btn:active.focus,
    .btn:active:focus {
        background: none;
        outline: 0;
    }

    /* Button types */

    .btn.btn-round {
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -o-border-radius: 5px;
        border-radius: 5px;
    }

    .btn.btn-circle {
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        -o-border-radius: 30px;
        border-radius: 30px;
    }

    /* Button colors */

    .btn.btn-red {
        background: #961d3c;
        color: #fff;
    }

        .btn.btn-red:hover {
            background: rgba(150, 29, 59, 0.9);
        }

    /*Black*/

    .btn.btn-b {
        background: #000;
        color: #fff;
    }

        .btn.btn-b:hover,
        .btn.btn-b:focus {
            background: rgba(0, 0, 0, 0.8);
            color: #fff;
        }

    /*Gray*/

    .btn.btn-bd-g {
        background: transparent;
        border: 1px solid #BBBBBB;
        color: #333;
    }

        .btn.btn-bd-g:hover,
        .btn.btn-bd-g:focus {
            background: #000;
            border-color: transparent;
            color: #fff;
        }

    .btn.btn-bd-b {
        background: #000;
        border: 1px solid #000;
        color: #fff;
    }

        .btn.btn-bd-b:hover,
        .btn.btn-bd-b:focus {
            background: #555;
            border-color: #555;
        }

.btn-fb {
    background: #32528B;
    color: #fff;
}

.btn-google {
    background: #DC544C;
    color: #fff;
}

.btn-line {
    background: #1EBD22;
    color: #fff;
}

.btn-regnize-ok {
    background: #ccc;
    color: #888;
}

    .btn-regnize-ok:hover {
        cursor: inherit;
        background: #ccc;
        color: #888;
        /* -webkit-transition: all 0.1s cubic-bezier(0.300, 0.100, 0.580, 1.000); */
        /* -moz-transition: all 0.1s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    -o-transition: all 0.1s cubic-bezier(0.300, 0.100, 0.580, 1.000); */
        /* transition: all 0.1s cubic-bezier(0.300, 0.100, 0.580, 1.000); */
    }

/* Button sizes */

.btn.btn-xl {
    width: 400px;
    height: 44px;
    /*    padding: 10px 80px;*/
    font-size: 16px;
    line-height: 15px;
}

.btn.btn-lg {
    width: 240px;
    height: 44px;
    /*    padding: 10px 80px;*/
    font-size: 16px;
    line-height: 15px;
}

.btn.btn-sm {
    width: 190px;
    height: 44px;
    /*padding: 10px 40px;*/
    font-size: 16px;
    line-height: 15px;
}

.btn.btn-xs {
    width: 120px;
    height: 30px;
    /*    padding: 15px 50px;*/
    font-size: 12px;
    line-height: 0px;
}

.btn-sm-left {
    float: left;
    /* margin-left: -10px;*/
}

.btn-sm-right {
    float: right;
    margin-right: -10px;
}

.btn-xxs {
    padding: 8px;
    border: 1px solid #ddd;
    background-color: #eee;
}

.btn i {
    margin-left: 20px;
}

/* -------------------------------------------------------------------
Responsive Media Querries
------------------------------------------------------------------- */

@media (max-width: 1400px) {
}

@media (max-width: 1024px) {
}

/*平版橫幅*/

@media (min-width: 993px) and (max-width:1200px) {
}

/*平版直拿*/

@media (min-width: 768px) and (max-width: 992px) {
}

@media (max-width: 991px) {
    .btn-sm-left {
        margin: 5px auto;
        margin-left: 0px;
    }

    .btn-sm-right {
        margin: 5px auto;
        margin-right: 0px;
    }
}

/*手機*/

@media (min-width: 501px) and (max-width: 767px) {
}

/*手機iphone*/

@media (max-width: 500px) {
    /* Button sizes */
    .btn.btn-xl {
        width: 100%;
    }

    .btn.btn-lg {
        width: 100%;
    }

    .btn.btn-sm {
        width: 100%;
        margin: 10px auto;
    }

    .btn.btn-xs {
        width: 100%;
    }
}

/* ------------------------------------------------------------------
Wrapper
------------------------------------------------------------------- */

#wrap {
    width: 1170px;
    height: auto;
    overflow: hidden;
    margin: 50px auto;
    /*border: 1px solid #f00*/
    ;
}

@media (max-width: 1024px) {
    #wrap {
        width: 100%;
    }
}

/* ------------------------------------------------------------------
Pagination
------------------------------------------------------------------- */

.pagination > li {
    display: inline-block;
}

    .pagination > li > a,
    .pagination > li > span {
        background: #f7f7f7;
        border: 0;
        height: 32px;
        width: 32px;
        padding: 0;
        margin: 0;
        text-align: center;
        line-height: 32px;
        font-size: 10px;
        color: #111;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -o-border-radius: 2px;
        border-radius: 2px;
    }

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    background: #111;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    background: #f0f0f0;
    color: #111;
}

/* ------------------------------------------------------------------
Tabs and Accordion
------------------------------------------------------------------- */

.nav-tabs {
    border-color: #eee;
}

    .nav-tabs > li > a {
        font-size: 12px;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -o-border-radius: 2px;
        border-radius: 2px;
    }

    .nav-tabs > li.active > a,
    .nav-tabs > li.active > a:hover,
    .nav-tabs > li.active > a:focus {
        border: 1px solid #eee;
        border-bottom-color: transparent;
    }

    .nav-tabs > li > a:hover,
    .nav-tabs > li > a:focus {
        background: #eee;
    }

.tab-content {
    border: 1px solid #eee;
    border-top: 0;
    padding: 15px;
}

    .tab-content :last-child {
        margin-bottom: 0;
    }

/* Accordion */

.panel-group {
    border: 1px solid #eee;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
}

    .panel-group .panel {
        border-radius: 0;
    }

.panel {
    border: 0;
    border-bottom: 1px solid #eee;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
    border-color: #eee;
}

.panel-heading {
    padding: 15px 20px;
}

.panel-default > .panel-heading {
    background: transparent;
    border-color: #eee;
}

.panel-heading a {
    position: relative;
    display: block;
}

    .panel-heading a:after {
        position: absolute;
        content: "\f106";
        top: 50%;
        right: 0px;
        margin-top: -7px;
        font-family: "FontAwesome";
        font-size: 14px;
        line-height: 1;
    }

    .panel-heading a.collapsed:after {
        content: "\f107";
    }

.panel-title {
    font-size: 12px;
}

.panel-group .panel + .panel {
    border-top: 0;
    margin-top: 0;
}

/* ------------------------------------------------------------------
Modal
------------------------------------------------------------------- */

.popup-item {
    cursor: pointer;
}

.modal-dialog {
    margin: 80px auto;
}

.modal-body {
    padding: 20px 60px;
}

.modal-backdrop {
    height: auto;
    overflow: hidden;
}

/* ------------------------------------------------------------------
Side Bar Style
------------------------------------------------------------------- */

ul.sidebar-menu li {
    /*height: 60px;*/
    padding: 25px 0px 25px 20px;
    /*border: 1px solid #000;*/
}

.sidebar-menu li:hover {
    background-color: #961D3C;
    cursor: pointer;
}

.active,
.sidebar-item:focus {
    background-color: #961D3C;
    color: #fff;
}

#sidebar-left {
    margin: 0;
}

/* ------------------------------------------------------------------
Helper Classes
------------------------------------------------------------------ */

/* Float
============================================= */

.f-left {
    float: left !important;
}

.f-right {
    float: right !important;
}

.clear {
    clear: both;
}

/* Margin
============================================= */

.m-a-0 {
    margin: 0 0 !important;
}

/* margin left */

.m-l-0 {
    margin-left: 0 !important;
}

/* margin right */

.m-r-0 {
    margin-right: 0 !important;
}

.m-r-5 {
    margin-right: 5px !important;
}

.m-l-5 {
    margin-left: 5px !important;
}

/* margin top */

.m-t-0 {
    margin-top: 0 !important;
}

.m-t-5 {
    margin-top: 5px !important;
}

.m-t-10 {
    margin-top: 10px !important;
}

.m-t-15 {
    margin-top: 15px !important;
}

.m-t-20 {
    margin-top: 20px !important;
}

.m-t-25 {
    margin-top: 25px !important;
}

.m-t-30 {
    margin-top: 30px !important;
}

.m-t-40 {
    margin-top: 40px !important;
}

.m-t-50 {
    margin-top: 50px !important;
}

.m-t-60 {
    margin-top: 60px !important;
}

.m-t-70 {
    margin-top: 70px !important;
}

.m-t-80 {
    margin-top: 80px !important;
}

.m-t-90 {
    margin-top: 90px !important;
}

.m-t-100 {
    margin-top: 100px !important;
}

/* margin bottom */

.m-b-0 {
    margin-bottom: 0 !important;
}

.m-b-5 {
    margin-bottom: 5px !important;
}

.m-b-10 {
    margin-bottom: 10px !important;
}

.m-b-15 {
    margin-bottom: 15px !important;
}

.m-b-20 {
    margin-bottom: 20px !important;
}

.m-b-30 {
    margin-bottom: 30px !important;
}

.m-b-40 {
    margin-bottom: 40px !important;
}

.m-b-50 {
    margin-bottom: 50px !important;
}

.m-b-60 {
    margin-bottom: 60px !important;
}

.m-b-70 {
    margin-bottom: 70px !important;
}

.m-b-80 {
    margin-bottom: 80px !important;
}

.m-b-90 {
    margin-bottom: 90px !important;
}

.m-b-100 {
    margin-bottom: 100px !important;
}

/* margin horizontal */

.m-x--5 {
    margin-left: -5px !important;
    margin-right: -5px !important;
}

.m-x--10 {
    margin-left: -10px !important;
    margin-right: -10px !important;
}

.m-x--15 {
    margin-left: -15px !important;
    margin-right: -15px !important;
}

.m-x--30 {
    margin-left: -30px !important;
    margin-right: -30px !important;
}

.m-x-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.m-x-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.m-x-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
}

.m-x-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
}

/* margin vertical */

.m-y-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.m-y--5 {
    margin-top: -5px !important;
    margin-bottom: -5px !important;
}

.m-y--15 {
    margin-top: -15px !important;
    margin-bottom: -15px !important;
}

.m-y--30 {
    margin-top: -30px !important;
    margin-bottom: -30px !important;
}

.m-y-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.m-y-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.m-y-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.m-y-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.m-y-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.m-y-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

.m-y-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
}

.m-y-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
}

/* Padding
============================================= */

.p-a-0 {
    padding: 0 0 !important;
}

.p-a-5 {
    padding: 5px !important;
}

.p-a-15 {
    padding: 15px !important;
}

.p-a-30 {
    padding: 30px !important;
}

.p-a-40 {
    padding: 40px !important;
}

/* padding horizontal */

.p-x-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.p-x-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

.p-x-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.p-x-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.p-x-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.p-x-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.p-x-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
}

.p-x-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
}

/* padding vertical */

.p-y-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.p-y-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.p-y-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.p-y-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

.p-y-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.p-y-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.p-y-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.p-y-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

/* padding left */

.p-l-0 {
    padding-left: 0 !important;
}

.p-l-5 {
    padding-left: 5px !important;
}

.p-l-10 {
    padding-left: 10px !important;
}

.p-l-15 {
    padding-left: 15px !important;
}

.p-l-20 {
    padding-left: 20px !important;
}

.p-l-100 {
    padding-left: 100px !important;
}

/* padding right */

.p-r-0 {
    padding-right: 0 !important;
}

.p-r-5 {
    padding-right: 5px !important;
}

.p-r-10 {
    padding-right: 10px !important;
}

.p-r-15 {
    padding-right: 15px !important;
}

.p-r-20 {
    padding-right: 20px !important;
}

.p-r-100 {
    padding-right: 100px !important;
}

/* padding top */

.p-t-0 {
    padding-top: 0 !important;
}

.p-t-5 {
    padding-top: 5px !important;
}

.p-t-10 {
    padding-top: 10px !important;
}

.p-t-15 {
    padding-top: 15px !important;
}

.p-t-20 {
    padding-top: 20px !important;
}

.p-t-30 {
    padding-top: 30px !important;
}

.p-t-40 {
    padding-top: 40px !important;
}

.p-t-50 {
    padding-top: 50px !important;
}

.p-t-60 {
    padding-top: 60px !important;
}

.p-t-70 {
    padding-top: 70px !important;
}

.p-t-80 {
    padding-top: 80px !important;
}

.p-t-90 {
    padding-top: 90px !important;
}

.p-t-100 {
    padding-top: 100px !important;
}

/* padding bottom */

.p-b-0 {
    padding-bottom: 0 !important;
}

.p-b-5 {
    padding-bottom: 5px !important;
}

.p-b-10 {
    padding-bottom: 10px !important;
}

.p-b-15 {
    padding-bottom: 15px !important;
}

.p-b-20 {
    padding-bottom: 20px !important;
}

.p-b-30 {
    padding-bottom: 30px !important;
}

.p-b-40 {
    padding-bottom: 40px !important;
}

.p-b-50 {
    padding-bottom: 50px !important;
}

.p-b-60 {
    padding-bottom: 60px !important;
}

.p-b-70 {
    padding-bottom: 70px !important;
}

.p-b-80 {
    padding-bottom: 80px !important;
}

.p-b-85 {
    padding-bottom: 85px !important;
}

.p-b-90 {
    padding-bottom: 90px !important;
}

.p-b-100 {
    padding-bottom: 100px !important;
}

/* Letter Spacing
============================================= */

.ls-minus-1 {
    letter-spacing: -1px;
}

.ls-minus-2 {
    letter-spacing: -2px;
}

.ls-plus-1 {
    letter-spacing: 1px;
}

.ls-plus-2 {
    letter-spacing: 2px;
}

.ls-plus-3 {
    letter-spacing: 3px;
}

.ls-plus-4 {
    letter-spacing: 4px;
}

.ls-plus-5 {
    letter-spacing: 5px;
}

.ls-plus-6 {
    letter-spacing: 6px;
}

/* Text Alignment
============================================= */

.text-xs-left {
    text-align: left !important;
}

.text-xs-right {
    text-align: right !important;
}

.text-xs-center {
    text-align: center !important;
}

@media (min-width: 768px) {
    .text-sm-left {
        text-align: left !important;
    }

    .text-sm-right {
        text-align: right !important;
    }

    .text-sm-center {
        text-align: center !important;
    }
}

@media (min-width: 992px) {
    .text-md-left {
        text-align: left !important;
    }

    .text-md-right {
        text-align: right !important;
    }

    .text-md-center {
        text-align: center !important;
    }
}

@media (min-width: 1200px) {
    .text-lg-left {
        text-align: left !important;
    }

    .text-lg-right {
        text-align: right !important;
    }

    .text-lg-center {
        text-align: center !important;
    }
}

/* Font size
============================================= */

.font-xs-24 {
    font-size: 24px !important;
}
.font-xs-16 {
    font-size: 16px !important;
}

@media (min-width: 768px) {
    .font-sm-24 {
        font-size: 24px !important;
    }

    .font-sm-16 {
        font-size: 16px !important;
    }
}

@media (min-width: 992px) {
    .font-md-24 {
        font-size: 24px !important;
    }

    .font-md-16 {
        font-size: 16px !important;
    }
}

/* Boder
============================================= */

.bd-n {
    border: none !important;
}

.bd-r-2 {
    border-right: 2px solid #eee;
}

/* ------------------------------------------------------------------
Page Elements
------------------------------------------------------------------- */

/* Header
============================================= */

.header {
    /* z-index: 90;
    display: flex;
    flex-flow: row nowrap;
    position: relative;
    left: 0;
    top: 0;*/
    width: 100%;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.top-imfo-block {
    /*  position: absolute;
    top: 0;
    left: 0;*/
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 10px;
    color: #fff;
    vertical-align: center;
    background-color: #240000;
}

.top-imfo-content {
    height: auto;
    /*border: 1px solid #fff;*/
}

.top-imfo-phone {
    float: left;
    margin: 6px 0;
    font-size: 13px;
    padding: 0 10px;
    width: 24%;
}

@media screen and (max-width: 767px) {
    .top-imfo-phone {
        width: auto;
    }
}

@media screen and (max-width: 450px) {
    .top-imfo-phone {
        float: left;
        margin: 11px 0 0 0;
    }
}

.header-r-box {
    display: block;
    float: right;
    height: auto;
    /*overflow: auto;*/
    /*border: 1px solid #f00;*/
    text-align: right;
}

.language-box {
    display: inline-block;
    margin: 6px 10px;
    /*border: 1px solid #fff;*/
}

    .language-box a {
        padding: 0 10px;
        font-size: 14px;
        color: #fff;
        border-right: 1px solid #fff;
    }

        .language-box a:nth-child(2) {
            padding: 0;
            border-right: none;
        }

/*Dropbtn---------------------*/

.dropbtn {
    width: 180px;
    height: 40px;
    padding: 2px 10px;
    font-size: 14px;
    text-align: left;
    color: white;
    border: 1px solid #fff;
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    margin-right: 10px;
}

@media screen and (max-width: 480px) {
    .dropbtn {
        width: auto;
        margin: 0;
    }
}

.dropbtn:hover,
.dropbtn:focus {
    background-color: #240000;
}

.dropbtn span {
    position: absolute;
    top: 10px;
    right: 20px;
}

@media screen and (max-width: 480px) {
    .dropbtn span {
        display: none;
    }
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    width: 180px;
    text-align: left;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 99;
    font-size: 14px;
}

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        font-size: 14px;
    }

.dropdown a:hover {
    background-color: #ddd
}

.show {
    display: block;
}

/*Main banner---------------------*/

.main-banner {
    width: 100vw;
    height: 20vw;
    overflow: hidden;
    background-image: url(../image/index-banner-3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.header-logo {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    /*width: 1170px;*/
    margin: 0 auto;
    text-align: center;
    /*border: 1px solid #f00;*/
}

/*Header nav---------------------*/

#main {
    transition: margin-left .5s;
    padding: 16px;
}

.lan-and-hotel {
    float: right;
}

.topnav {
    width: 50%;
    text-align: center;
    float: left;
    /*border: 1px solid #f00;*/
}

@media screen and (max-width: 767px) {
    .topnav {
        width: auto;
        text-align: right;
        float: right;
        margin: 0 15px 0 5px;
        /*border: 1px solid #f00;*/
    }
}

.topnav a {
    display: inline-block;
    color: #f2f2f2;
    text-align: center;
    padding: 8px 14px;
    text-decoration: none;
    font-size: 14px;
}

    .topnav a:hover {
        background-color: rgba(150, 29, 60, 0.9);
    }

.active {
    background-color: rgba(150, 29, 60, 0.9);
    color: white;
}

.topnav .icon {
    display: none;
}

.shop-logo {
    margin: 0 5px 0 0;
}

    .shop-logo img {
        width: 18px;
        height: auto;
    }





/*Header nav/Side bar---------------------*/

.sidenav {
    height: 100%;
    width: 250px;
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 70px;
    transform: translate3d(250px, 0px, 0px);
}

    .sidenav a {
        padding: 12px 0;
        text-decoration: none;
        font-size: 18px;
        color: #fff;
        display: block;
        transition: 0.3s;
        text-align: center;
    }

        .sidenav a:hover {
            color: #961d3c;
            /*    background-color:#961d3c ;
*/
        }

    .sidenav .closebtn {
        position: absolute;
        top: 0;
        left: -25px;
        font-size: 36px;
        margin-left: 50px;
    }

.sidebar-language {
    width: 100%;
    height: auto;
    overflow: auto;
    margin: 60px auto;
    padding: 0 85px;
}

    .sidebar-language a {
        float: left;
        padding: 0 10px;
        font-size: 14px;
        color: #fff;
        border-right: 1px solid #fff;
    }

        .sidebar-language a:nth-child(2) {
            border-right: none;
        }

/*page-title---------------------*/

.page-title {
    /* position: absolute;
    bottom: 0;*/
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: #af8346;
    text-align: center;
}

    .page-title h1 {
        margin: 0;
        font-size: 18px;
        color: #fff;
    }

@media screen and (max-width: 480px) {
    .page-title {
        padding: 4px;
    }

        .page-title h1 {
            font-size: 14px;
            color: #fff;
            font-weight: 400;
        }
}

/*RWD---------------------*/

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

        .sidenav a {
            font-size: 18px;
        }
}

@media screen and (max-width: 991px) {
    .header-logo {
        width: 100%;
    }

    .topnav {
        width: auto;
        text-align: center;
        float: right;
        margin-right: 10px;
        /*border: 1px solid #f00;*/
    }

        .topnav a {
            display: none;
        }

            .topnav a.icon {
                float: right;
                display: block;
                width: 40px;
                height: 40px;
                background-color: rgba(150, 29, 60, 0.9);
                /* border: 1px solid #fff;*/
            }
}

@media screen and (max-width: 991px) {
    .topnav.responsive {
        position: relative;
    }

        .topnav.responsive .icon {
            position: absolute;
            right: 0;
            top: 0;
            /* border:2px solid #f00;*/
        }

        .topnav.responsive a {
            float: none;
            display: block;
            text-align: left;
            /* border:1px solid #f00;*/
        }
}

/* Footer
============================================= */

.footerBox {
    background-color: #240000;
    border-bottom: 1px solid #fff;
}

    .footerBox .company {
        margin-top: 30px;
        text-align: center;
    }

    .footerBox .footerUl {
        margin: 30px 0;
    }

        .footerBox .footerUl li {
            display: inline-block;
        }

            .footerBox .footerUl li a {
                font-size: 16px;
                border-right: 1px solid #FFFFFF;
                color: #AF8246;
                padding: 0 25px 0 5px;
            }

            .footerBox .footerUl li:last-child a {
                border-right: none;
            }

    .footerBox .footerFreeTel {
        font-size: 18px;
        color: #fff;
        margin-bottom: 30px;
    }

.footerCopyright {
    background-color: #240000;
}

    .footerCopyright .footerCopy {
        color: #eee;
        float: left;
        margin: 20px 0;
    }

    .footerCopyright .footerUl {
        float: right;
        margin: 20px 0;
    }

        .footerCopyright .footerUl li {
            display: inline-block;
        }

            .footerCopyright .footerUl li a {
                font-size: 16px;
                color: #AF8246;
                padding: 0 25px 0 5px;
            }

            .footerCopyright .footerUl li:last-child a {
                border-right: none;
            }

/* -------------------------------------------------------------------
Page Style
------------------------------------------------------------------- */

.wrap-page {
    margin: 45px auto 250px auto;
}

/* -------------------------------------------------------------------
Member Page
------------------------------------------------------------------- */

.price-block {
    padding: 5px;
    float: right;
}

.price-none {
    font-size: 12px;
    /* text-decoration: line-through; */
    color: #666;
}

.price-special {
    font-weight: 700;
    color: #961d3c;
    font-size: 18px;
}

    .price-special span {
        color: #000;
    }

.nite {
    color: #999;
}

/* Member Register
============================================= */

.wrap-member {
    width: 980px;
    height: auto;
    margin: 55px auto 250px auto;
    overflow: auto;
    background-color: #fff;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.2);
}

.member-content {
    width: 100%;
    height: auto;
    padding: 30px 40px;
    /*overflow: auto;*/
    /*    text-align: center;*/
}

.register-checkbox {
    display: block;
    overflow: auto;
}

.register-item {
    margin: 10px auto;
}

/*.member-content h3 {
    margin: 0 0 30px 0;
}*/

.member-checkbox {
    width: 400px;
    margin: 30px auto;
}

    .member-checkbox input {
        margin-right: 5px;
    }

/* Member Login
============================================= */

.login-box {
    padding: 15px;
}

.login-content h3 {
    margin: 0 0 30px 0;
}

.login-r-box {
    padding: 40px;
    /*border: 1px solid #000;*/
    border-right: 2px solid #eee;
}

.login-l-box {
    padding: 40px;
    /*border: 1px solid #000;*/
}

.verify-input {
    width: 100%;
    margin-top: 10px
}

    .verify-input input {
        float: left;
    }

.verify-img {
    float: right;
    text-align: right;
    margin: 0;
    padding: 0;
}

    .verify-img img {
        margin: 0;
        text-align: left;
    }

.refresh-box {
    margin: 5px auto;
    font-size: 12px;
    text-align: right;
    color: #666;
    background-color: #fff;
    border: none;
}

.member-content-footer {
    width: 100%;
    overflow: auto;
    padding: 20px 50px;
    background-color: #eee;
}

.id-check-ok {
    padding: 0 10px;
    font-size: 12px;
    font-weight: 600;
    color: #009245;
}

.id-check-no {
    padding: 0 10px;
    font-size: 12px;
    font-weight: 600;
    color: #777;
}

/* Forget Password
============================================= */

.member-password-block {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 0 190px;
    margin: 20px 0;
}

/* Unverified
============================================= */

.resend-block {
    width: 100%;
    height: auto;
    padding: 20px 50px;
    text-align: center;
}

.resend-moblie-block {
    width: 100%;
    height: auto;
    padding: 20px 50px;
    text-align: center;
}

.resend-box {
    border: none;
    background-color: #fff;
}

.mystyle {
    width: 100%;
    padding: 25px;
    background-color: coral;
    color: white;
    font-size: 25px;
    box-sizing: border-box;
}

.resend-btn {
    height: 44px;
    padding: 10px;
}

/* Member Center
============================================= */

.member-center-l {
    float: left;
    width: 23%;
    padding: 0;
    background-color: #e6e7e9;
    /*    border: 1px solid #000;
*/
}

.member-center-r {
    float: right;
    width: 75%;
    padding: 0;
    border: 1px solid #eee;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

h3.center-title {
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    color: #961e3c;
    border-bottom: 1px solid #961e3c;
}

/* Imfo Set
============================================= */

.member-1-box {
    height: auto;
    overflow: auto;
}

.member-2-box {
    height: auto;
}

.imfo-item {
    display: block;
    margin: 10px auto;
    padding: 10px;
}

/*radio*/

.radio-r {
    margin: 0 100px 0 0;
}

.wrap-drop {
    z-index: 3;
    cursor: pointer;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    height: 44px;
    padding: 10px 10px;
    background-color: #fff;
    border: 1px solid #e4e4e4;
    box-sizing: border-box;
    border-radius: 0;
    font-size: 13px;
    line-height: 18px;
    text-align: left;
    box-shadow: none;
}

    /* .wrap-drop::after {
    font-family: 'FontAwesome';
    content: "\f078";
    font-size: 15px;
    color: #333;
    position: absolute;
    right: 5%;
} */

    .wrap-drop .drop {
        background: #fff;
        box-shadow: 3px 3px 3px rgba(0, 0, 0, .2);
        display: none;
        left: 0;
        list-style: none;
        margin-top: 0;
        opacity: 0;
        padding-left: 0;
        pointer-events: none;
        position: absolute;
        right: 0;
        top: 100%;
        z-index: 2;
    }

        .wrap-drop .drop li a {
            color: #333;
            display: block;
            padding: 1rem;
            text-decoration: none;
        }

        .wrap-drop .drop li:hover a {
            background-color: #fff;
            color: #666;
        }

    .wrap-drop.active .drop {
        display: block;
        opacity: 1;
        pointer-events: auto;
        border: 1px solid #eee;
    }

.select-small {
    position: relative;
    width: 32%;
    height: 44px;
    margin: 0 2px 0 2px;
    font-size: 13px;
    border: 1px solid #e4e4e4;
    border-radius: 0px !important;
    background-color: #fff;
}

.select-arrow {
    position: absolute;
    top: 60px;
    right: 40px;
}

.birth-box-1 {
    position: relative;
}

.birth-arrow-1 {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
}

/* Tracking List
============================================= */

.traking-block {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 0;
    margin: 0;
    /* border: 1px solid #f00;*/
}

/*
.traking-block .tracking-card{
    margin-left: -15px;
    margin-right: -15px;
}
*/

.tracking-card {
    width: 100%;
    overflow: auto;
    margin: 0 auto;
    padding-bottom: 15px;
    border: 1px solid #ddd;
}

.tracking-img img {
    width: 100%;
    height: auto;
}

.type-mark {
    padding: 5px 8px;
    font-size: 13px;
    text-align: left;
    color: #961E3C;
    background-color: #eee;
    line-height: 18px;
    height: 25px;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tracking-imfo {
    overflow: auto;
    padding: 5px 8px;
}

.tra-project-title {
    margin: 0;
    height: 42px;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 20px;
    font-size: 15px;
    color: #333;
}

.tracking-imfo p.text-title {
    height: 30px;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
}

.tracking-btn-block {
    width: 100%;
    overflow: hidden;
    padding: 0 10px;
    font-size: 12px;
}

    .tracking-btn-block input {
        padding: 3px;
    }

.tracking-btn {
    margin-left: -5px;
    margin-right: -5px;
}

.price-none,
.price-special {
    display: block;
    text-align: right;
}

.room-choose-checkin-time,
.room-choose-checkout-time,
.room-choose-people {
    font-size: 14px;
    color: #777;
}

.noroom {
    background: #eee;
    border: 1px solid #eee;
    color: #777;
    height: 28px;
    font-size: 14px;
    line-height: 0px;
}

/* Member Order list
============================================= */

/*.wrap-member-order {
    width: 100%;
    height: auto;
    margin: 55px auto 250px auto;
    overflow: auto;
    background-color: #fff;
}*/

/*Type*/

.memCategoryList {
    background-color: #E6E7E8;
    margin: 0px;
}

    .memCategoryList li a {
        display: block;
        padding: 25px 0px 25px 20px;
        /*font-size: 14px;
    font-weight: bold;*/
        transition: all 0s;
        letter-spacing: 2px;
    }

        .memCategoryList li a.active {
            background-color: #961E3C;
            color: #fff;
        }

        .memCategoryList li a:hover {
            background-color: #961E3C;
            color: #fff;
            transition: all 0s;
        }

            .memCategoryList li a.active::after,
            .memCategoryList li a:hover:after {
                font-family: 'FontAwesome';
                content: "\f105";
                font-size: 15px;
                color: #fff;
                position: absolute;
                right: 14%;
            }

@media screen and (max-width: 991px) {
    .memCategory {
        width: 100%;
        height: auto;
        position: relative;
        margin: 0 auto 20px auto;
        box-sizing: border-box;
        border-bottom: none;
    }

    .pageBlock {
        display: block;
        overflow: hidden;
    }

    .memCategoryTitle {
        padding: 10px 15px;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        background: #C3996B;
    }

        .memCategoryTitle [class*='fa-'] {
            position: absolute;
            font-size: 15px;
            color: #fff;
            top: 15px;
            display: block;
            right: 30px;
        }

    .memCategoryList {
        margin: 0;
        width: 100%;
        display: none;
        background-color: rgb(239, 239, 239);
        padding: 0;
    }
}

/*Content*/

.memContent {
    padding: 40px;
    background-color: #fff;
    border: 1px solid #eee;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.memContent .memTitle .memTitleName {
	color: #961E3C;
	font-size: 14px;
	letter-spacing: 2px;
}

.memContent .memTitle hr {
	height: 1px;
	border: none;
	border-top: 1px solid #961E3C;
}


.memOrderContnttest{
    overflow: hidden;
    margin: 5px 0 25px 0;
    background-color: #eee;
    box-shadow: 3px 3px 10px rgba(0,0,0,.2);
    font-size:13px;

}
.memOrderContnttestrow{
    margin:0 0 10px 0;
}
.memOrderContnttestgray{
    padding:12px 15px;
    word-wrap:break-word;
    background-color: #eee;
    padding-bottom: 500em;
    margin-bottom: -500em;
}
.memOrderContnttesttext{
    padding:12px 15px;
    word-wrap:break-word;
    background-color: #fff;
    padding-bottom: 500em;
    margin-bottom: -500em;
}
	
.repay {
    border: 1px solid #C3996B;
    padding: 4px 5px;
}

.memContent .memOrderContnt {
    overflow: hidden;
    margin: 5px 0 25px 0;
    background-color: #E6E7E8;
    box-shadow: 3px 3px 10px rgba(0,0,0,.2);
}

.memOrderContnt .orderLeft,
.memOrderContnt .orderRight {
    width: 50%;
    float: left;
    height: 100%;
}

.memOrderContnt .orderTitle {
    float: left;
    background-color: #E6E7E8;
    width: 15%;
    padding-bottom: 500em;
    margin-bottom: -500em;
}

.memOrderContnt .orderContent {
    float: left;
    background-color: #fff;
    width: 35%;
    padding-bottom: 500em;
    margin-bottom: -500em;
}

    .memOrderContnt .orderContent:last-child {
        border-right: none;
    }

.memOrderContnt .orderTitle .tdTitle {
    text-align: center;
    font-size: 13px;
    padding: 8px 0 8px 20px;
    vertical-align: top;
    text-align: left;
}

.memOrderContnt .orderContent .tdContent {
    font-size: 13px;
    padding: 8px 15px;
}

.memOrderContnt .orderStatus {
    color: rgba(0, 0, 0, 0.3);
}

.memOrderContnt .orderStatusOk {
    color: #AF8246;
}

.memOrderContnt .memOrderDetail a,
.memOrderDetail i {
    color: #AF8246;
}

.memOrderContnt .orderList {
    background-color: #AF8246;
    padding: 10px 5px;
    width: 90%;
}

    .memOrderContnt .orderList .orderListName {
        color: #fff;
        font-size: 12px;
    }

.memOrderContnt .orderButton {
    border: 1px solid rgba(0, 0, 0, 0.3);
    padding: 5px;
    width: 100%;
    font-size: 13px;
    letter-spacing: 2px;
}

    .memOrderContnt .orderButton:hover {
        color: #fff;
        background-color: #961E3C;
    }

        .memOrderContnt .orderButton:hover:after {
            color: #fff;
        }

    .memOrderContnt .orderButton::after {
        font-family: 'FontAwesome';
        content: "\f101";
        font-size: 15px;
        color: rgba(0, 0, 0, 0.3);
        position: absolute;
        right: 12%;
    }

@media screen and (max-width: 991px) {
    .memOrderContnt .orderTitle {
        width: 35%;
    }

    .memOrderContnt .orderContent {
        width: 65%;
        border-right: none;
    }

    .memOrderContnt .orderButton::after {
        right: 20%;
    }
}

@media screen and (max-width: 480px) {
    .memOrderContnt .orderButton::after {
        right: 15%;
    }
}

/* Member Order Centent
============================================= */

.memContent .memTitle .memTitleSubName {
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #fff;
}

.memTitle {
    margin: 15px 0 10px 0;
}

.memContent .memTitle .memTitleSubName2 {
    font-size: 14px;
    color: #AF8246;
    letter-spacing: 2px;
    margin: 0;
}

.roomdate {
    display: inline-block;
    font-size: 14px;
    color: #AF8246;
}

    .roomdate span {
        color: #961D3C;
    }
/*memOrderDetailContnt*/

.memOrderDetailContnt {
    width: 100%;
    display: block;
}

    .memOrderDetailContnt ul {
        font-size: 14px;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
        /*padding-bottom: 10px;*/
        margin: 0px;
        padding: 10px 0;
    }

        .memOrderDetailContnt ul.memOrderTitle {
            color: #fff;
            padding: 7px 0;
            background-color: rgba(0, 0, 0, 0.4);
            margin: 0px;
        }

        .memOrderDetailContnt ul.memOrderItem {
            color: #000;
        }

    .memOrderDetailContnt li {
        display: inline-block;
        padding: 5px 0;
        vertical-align: middle;
        font-size: 13px;
    }

    .memOrderDetailContnt .memOrderType {
        width: 15%;
    }

    .memOrderDetailContnt .memOrderName {
        width: 45%;
    }

    .memOrderDetailContnt .memOrderQyt {
        width: 10%;
    }

    .memOrderDetailContnt .memOrdertotal {
        width: 12%;
    }

    .memOrderDetailContnt .memOrderMoney {
        width: 12%;
        /*color: #de6053;*/
    }

    .memOrderDetailContnt .memOrderProduct {
        width: 18%;
        text-align: center;
    }

    .memOrderDetailContnt .memOrderEdit {
        width: 15%;
        text-align: center;
    }

        .memOrderDetailContnt .memOrderEdit a {
            width: 28px;
            height: 28px;
            background-color: #fff;
            color: #333;
            border: 1px solid #CCC;
            border-radius: 0.3em;
            display: inline-block;
            text-align: center;
        }

            .memOrderDetailContnt .memOrderEdit a:hover {
                background-color: #C3996B;
                color: #fff;
            }

        .memOrderDetailContnt .memOrderEdit i {
            font-size: 17px;
            vertical-align: bottom;
            display: inline-block;
        }

        .memOrderDetailContnt .memOrderEdit .fa-pencil::before {
            content: "\f1f8";
            font-family: 'FontAwesome';
        }

        .memOrderDetailContnt .memOrderEdit .fa-trash::before {
            content: "\f040";
            font-family: 'FontAwesome';
        }

/*memOrderDetail*/

.memOrderDetail {
    /*margin: 15px 0 15px 10px;*/
    display: inline-block;
}

    .memOrderDetail a {
        color: #111;
    }

        .memOrderDetail a:hover {
            color: #C3996B;
        }

    .memOrderDetail i {
        font-size: 17px;
        margin: 0 5px 0 0;
    }

    .memOrderDetail svg {
        margin: 0 5px 0 0;
    }

@media screen and (max-width:768px) {
    .memOrderDetailContnt ul.memOrderTitle {
        display: none;
    }

    .memOrderDetailContnt ul.memOrderItem {
        background-color: rgba(0, 0, 0, 0.1);
    }

    .memOrderDetailContnt ul {
        border-bottom: none;
    }

        .memOrderDetailContnt ul.memOrderItem {
            padding: 15px;
            margin-bottom: 10px;
        }

            .memOrderDetailContnt ul.memOrderItem ::before {
                content: attr(data-title) "";
                text-transform: uppercase;
                width: 100px;
            }

    .memOrderDetailContnt [class*='memOrder'] {
        width: 100%;
        text-align: left;
    }

    .memOrderDetailContnt .memOrderEdit a {
        width: 70px;
        height: 30px;
    }
    /*subMemOrderList*/
    .subMemOrderList ul.subMemOrderItem {
        background-color: #eee;
        margin: 5px 0;
        padding: 10px;
    }

    .subMemOrderList [class*='memPro'] {
        width: 100%;
        text-align: left;
    }
}

/*.orderTotal*/

.orderTotal {
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
}

    .orderTotal dl {
        margin: 0;
        width: 330px;
        text-align: right;
        float: right;
        display: block;
        clear: both;
    }

        .orderTotal dl.block dd {
            font-size: 20px;
            font-weight: bold;
            color: #000;
        }

        .orderTotal dl.black dd {
            font-weight: bold;
            color: #000;
        }

    .orderTotal dd {
        font-size: 14px;
        color: #333;
        display: inline-block;
        text-align: right;
    }

    .orderTotal .left {
        width: 190px;
    }

    .orderTotal .right {
        width: 100%;
        padding: 0 10px 0 0;
    }

.memOrderButton {
    text-align: center;
}

    .memOrderButton .orderButton {
        border: 1px solid rgba(0, 0, 0, 0.3);
        margin-bottom: 20px;
        font-size: 14px;
        padding: 10px 30px;
    }

        .memOrderButton .orderButton:hover {
            background-color: rgba(0, 0, 0, 1);
            color: #fff;
        }

/* Member Products Detail
============================================= */

.memOrderDetailContnt .paymentNo {
    color: #777777;
}

.memOrderDetailContnt .paymentOk {
    color: #AF8246;
}

.memOrderItem.ItemHover:hover {
    background-color: #EEEEEE;
}

/****Index****/

/*index-calender*/

.index-calender {
    text-align: center;
}

    .index-calender a {
        text-align: center;
        color: #fff;
        background-color: #961E3C;
    }

        .index-calender a:hover {
            color: #fff;
            background-color: #111;
        }

/*index-case*/

.case {
    margin: 0 25px;
}

.wrap-index {
    height: auto;
    margin: 10px auto 30px auto;
    overflow: auto;
    background-color: #fff;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.2);
}

    .wrap-index h2 {
        font-weight: 800;
        margin: 0 0 20px 0;
        padding: 0;
        display: inline-block;
    }

.case-title {
    font-size: 18px;
    padding: 20px 0 0 0;
    display: inline-block;
}

    .case-title span {
        display: inline-block;
        width: 4px;
        height: 22px;
        line-height: 24px;
        background-color: #961e3c;
        color: #961e3c;
        margin: 0 10px 0 5px;
    }

    .case-title h4 {
        display: inline-block;
        padding: 0 10px 0 0;
        font-size: 20px;
    }

    .case-title button {
        font-size: 14px;
        color: #961e3c;
        border: 1px #961e3c solid;
        padding: 3px 5px;
    }

        .case-title button:hover {
            background-color: #ddd;
        }

.indexCaseContnt {
    width: 100%;
    display: block;
}

    .indexCaseContnt ul {
        font-size: 14px;
        text-align: center;
        margin: 0px;
        padding: 10px 0;
    }

        .indexCaseContnt ul.indexCaseTitle {
            color: #333;
            padding: 7px 0;
            background-color: #eee;
            margin: 0px;
        }

        .indexCaseContnt ul.indexCaseItem {
            color: #000;
        }

    .indexCaseContnt li {
        display: inline-block;
        padding: 5px 0;
        vertical-align: middle;
        font-size: 14px;
    }

    .indexCaseContnt .indexCaseType {
        width: 23%;
    }

    .indexCaseContnt .indexCaseBed {
        width: 14%;
    }

    .indexCaseContnt .indexCaseBed button {
            border: none;
            background-color: transparent;
            padding:0;
    }
    .indexCaseContnt .indexCaseBed button i{
        display:inline-block;
    }
    .bed-mb-dt{
        display: inline-block;
    }

.bedline {
    display: inline-block;
}
.bed-info {
    margin: 10px 30px;
    padding: 15px 20px;
    border: 1px #ccc solid;
}

    .bed-info p {
        font-size: 13px;
        color: #555;
    }

.indexCaseContnt .indexCaseEat {
    width: 14%;
}

.indexCaseContnt .indexCasetotal {
    width: 14%;
}

.indexCaseContnt .indexCaseCaseprice {
    width: 14%;
    /*color: #de6053;*/
}

.indexCaseContnt .indexCaseRoom {
    width: 14%;
    text-align: center;
}

    .indexCaseContnt .indexCaseRoom button {
        color: #fff;
        background-color: #961e3c;
        border: none;
        padding: 5px 10px;
    }

        .indexCaseContnt .indexCaseRoom button:hover {
            background-color: #111;
        }

.index-case-more {
    font-size: 14px;
    border-top: #ccc solid 1px;
    padding: 10px 20px;
    text-align: right;
}indexCaseBed

    .index-case-more button {
        border: none;
        background-color: transparent;
    }

@media screen and (max-width:768px) {
    .indexCaseBox {
        border-bottom: 1px solid #eee;
    }

    .indexCaseContnt ul.indexCaseTitle {
        display: none;
    }

    .indexCaseContnt ul.indexCaseItem {
        background-color: #fff;
        padding: 15px 30px;
    }

    .mindexCaseContnt ul.indexCaseItem {
        padding: 15px;
        margin-bottom: 10px;
    }

    .indexCaseContnt ul.indexCaseItem ::before {
        content: attr(data-title) "";
        text-transform: uppercase;
        width: 100px;
    }

    .indexCaseContnt [class*='indexCase'] {
        width: 100%;
        text-align: left;
    }

    .indexCaseContnt .indexCaseEdit a {
        width: 70px;
        height: 30px;
    }
}

/*map*/

.index-map {
    margin: 50px 0 0 0;
}

.index-map-info {
    font-size: 14px;
    padding: 20px;
    text-align: center;
}

.index-map-add,
.index-map-phone {
    display: block;
}

.index-map-info svg:not(:root).svg-inline--fa {
    font-size: 17px;
    padding-right: 5px;
    color: #af8246;
}

/* -------------------------------------------------------------------
Booking Page
------------------------------------------------------------------- */

/* Search list Page
============================================= */

/* .search-img {
    background-image: url(../image/search-room.jpg);
    background-position: center center;
    background-size: cover;
    height: 240px;
    width: 100%;
} */

.projects-block {
    width: 100%;
    height: auto;
    margin: 30px auto;
}

.projects-title-block {
    display: inline-block;
    width: 100%;
    height: auto;
    padding: 0 6px;
    border-left: 4px solid #961d3c;
}

.projects-title-box {
    float: left;
    margin-right: 10px;
}

.projects-btn-box {
    float: left;
    margin: 0 auto;
}

.projects-btn {
    padding: 2px 6px;
    border: 1px solid #961d3c;
    color: #961d3c;
    background-color: #fff;
}

    .projects-btn:hover {
        color: #fff;
        background-color: #961d3c;
    }

.room-content-block {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #eee;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.room-content-box {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 20px 0;
    border-bottom: 1px solid #BBBBBB;
}

    .room-content-box:nth-last-child(1) {
        border: none;
    }

.room-img-box {
    height: auto;
    overflow: hidden;
}

.room-content-text {
    padding: 0 0 0 20px;
}

.add-btn {
    float: left;
    margin: 10px 10px 0 0;
    padding: 5px 8px;
    border: 1px solid #BBBBBB;
}

@media only screen and (max-width: 991px) {
    .room-imfo {
        margin: 20px 0;
        padding: 0 10px;
        text-align: justify;
        border-left: 1px solid #CCC;
        min-height: 1em;
    }
}

@media only screen and (min-width: 992px) {
    .room-imfo {
        margin: 20px 0;
        padding: 0 10px;
        text-align: justify;
        border-left: 1px solid #CCC;
        min-height: 9em;
    }
}

.room-imfo h5 {
    margin: 2px 0;
}

.room-imfo p {
    font-size: 14px;
}

.room-price-block {
    text-align: right;
}

.allroomprice button {
    background-color: #fff;
    border: 1px solid #ccc;
    margin-bottom: 5px;
    padding: 5px 10px;
    color: #af8346;
    font-size: 14px;
}

    .allroomprice button:hover {
        background-color: #eee;
    }

#allroompricedt {
    font-size: 15px;
    border: 1px solid #eee;
    padding: 10px;
    margin: 5px 0 8px 0;
}

.everydayprice {
    color: #444;
    padding:4px 0;
}

.search-price {
    font-size: 15px;
}

    .search-price span {
        font-size: 24px;
        font-weight: 700;
        color: #961D3C;
    }

.room-remaining {
    font-size: 14px;
    color: #555;
}

/* projects-modal */

.projects-modal {
    /* height: 500px; */
    overflow: auto;
}

.projects-modal-body {
    height: 600px;
}

.projects-modal ol {
    padding: 10px 30px;
    text-align: justify;
}

.projects-modal li {
    margin: 10px auto;
    font-size: 15px;
    list-style-type: disc;
}

/* Room Detail
============================================= */

.projects-room-btn {
    padding: 2px 6px;
    border: 1px solid #961d3c;
    color: #961d3c;
}

.projects-room-title {
    font-size: 18px;
    color: #af8246;
}

.img-big {
    background-image: url(../image/search-room.jpg);
    background-position: center center;
    background-size: cover;
    height: 240px;
    width: 100%;
}

.img-big-1 {
    background-image: url(../image/room/room-1.jpg);
    background-position: center center;
    background-size: cover;
    height: 240px;
    width: 100%;
}

.img-big-2 {
    background-image: url(../image/room/room-2.jpg);
    background-position: center center;
    background-size: cover;
    height: 240px;
    width: 100%;
}

.img-big-3 {
    background-image: url(../image/room/room-3.jpg);
    background-position: center center;
    background-size: cover;
    height: 240px;
    width: 100%;
}

.img-small-row {
    overflow: hidden;
    text-align: center;
}

.img-small {
    background-image: url(../image/search-room.jpg);
    background-position: center center;
    background-size: cover;
    width: 104px;
    height: 78px;
    margin: 8px 4px;
    float: left;
}

.img-small-1 {
    background-image: url(../image/room/room-4.jpg);
    background-position: center center;
    background-size: cover;
    width: 104px;
    height: 78px;
    margin: 8px 4px;
    float: left;
}

.img-small-2 {
    background-image: url(../image/room/room-5.jpg);
    background-position: center center;
    background-size: cover;
    width: 104px;
    height: 78px;
    margin: 8px 4px;
    float: left;
}

.img-small-3 {
    background-image: url(../image/room/room-6.jpg);
    background-position: center center;
    background-size: cover;
    width: 104px;
    height: 78px;
    margin: 8px 4px;
    float: left;
}

.room-buymore-block {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 20px 0;
    background-color: #fff;
    border: 1px solid #eee;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.room-detail-title-box {
    background-color: #eee;
}

.room-detail-title {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
}

.room-buymore-block {
    font-size: 16px;
    color: #333;
}

    .room-buymore-block button {
        border: none;
        color: #af8246;
        background-color: transparent;
    }

.more-buy-price {
    font-weight: 600;
    padding: 0 0 0 10px;
}

.buymore-row {
    padding: 10px 0;
    font-size: 14px;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
}

.input-group[class*=col-] {
    float: right;
}

.buymore-qty .form-control {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    height: 30px;
    padding: 8px 10px;
    border: 1px solid #e4e4e4;
    box-sizing: border-box;
    border-radius: 0;
    font-size: 13px;
    line-height: 18px;
    background: transparent;
    box-shadow: none;
}

.btn-default {
    font-size: 14px;
    padding: 5px 15px;
}

.room-intro {
    margin: 0;
    padding: 0 15px;
    color: #111;
}

.room-intro-item {
    padding: 0px 5px;
}

.room-intro-title {
    font-weight: 600;
    padding: 30px 15px;
    border-top: 1px solid #ddd;
    font-size: 16px;
}

.room-intro-detail {
    padding: 30px 15px;
    border-top: 1px solid #ddd;
    font-size: 16px;
}

    .room-intro-detail p {
        font-size: 14px;
        color: #444;
        padding: 10px 0;
        line-height: 22px;
    }

.room-booking {
    text-align: center;
    width: 640px;
    margin: 0 auto;
    padding: 20px 0;
}

    .room-booking span {
        font-size: 15px;
        display: block;
        padding: 10px;
    }

.room-booking-info {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.add-check {
    /* margin:20px auto 40px auto; */
    text-align: center;
    margin: 0 0 20px 0;
}

.proudect-modal-body {
    padding: 20px;
}

/* Bottom ICON */
.bootomIconCount {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    position: absolute;
    background: #230000;
    text-align: center;
    font-size: 12px;
    color: #fff;
}
/* Right icon =============*/
.sideIconCount {
    right: -18px;
    top: -18px;
}

.righticon {
    z-index: 5;
    position: fixed;
    right: 25px;
    top: 26%;
}

.compareicon {
    font-size: 12px;
    line-height: 16px;
    padding: 6px 0;
    text-align: center;
}

    .compareicon span {
        display: block;
    }

    .compareicon a {
        margin: auto;
        display: block;
        border: 1px solid rgba(190, 190, 190, .9);
        border-radius: 5px;
        width: 50px;
        height: 50px;
        padding: 15px;
        background-color: rgba(255, 255, 255, .7)
    }

        .compareicon a:hover,
        .carticon a:hover,
        .topicon a:hover {
            border: 1px solid rgba(175, 130, 70, 1);
            background-color: rgba(255, 255, 255, .8);
            color: #af8246;
        }

.carticon,
.topicon {
    font-size: 12px;
    line-height: 18px;
    padding: 5px 0;
    text-align: center;
}

    .carticon svg:not(:root).svg-inline--fa,
    .topicon svg:not(:root).svg-inline--fa {
        font-size: 14px;
    }

    .carticon a,
    .topicon a {
        margin: auto;
        display: block;
        border: 1px solid rgba(190, 190, 190, .9);
        border-radius: 5px;
        width: 50px;
        height: 50px;
        padding: 15px;
        background-color: rgba(255, 255, 255, .7)
    }

.downicon {
    display: none;
    background-color: rgba(240, 240, 240, .9);
    position: fixed;
    width: 100%;
    height: 50px;
    z-index: 5;
    bottom: 0;
    border-top: 1px solid #ddd;
    text-align: center;
}

    .downicon ul li {
        display: inline-block;
        font-size: 14px;
        width: 28%;
        padding: 15px 0px;
    }

        .downicon ul li a {
            font-size: 14px;
            width: 30%;
            padding: 14px;
        }

        .downicon ul li a {
            padding: 14px;
        }

.compareicon-rwd,
.carticon-rwd,
.topicon-rwd {
    margin: 0 0 20px 0;
}

/* -------------------------------------------------------------------
Compare list
------------------------------------------------------------------- */
/* Carousel */
#owl-demo .item {
    margin: 3px;
}

    #owl-demo .item img {
        display: block;
        width: 100%;
        height: auto;
    }


.compare-block {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #eee;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.compareday {
    text-align: center;
    color: #333;
    font-size: 15px;
}

    .compareday span {
        display: block;
        color: #961d3c;
    }

.compareallbtn {
    text-align: center;
}
.compare-leftbtn {
    position: fixed;
    z-index: 100;
    top: 45%;
    left: 15px;
}

.compare-rightbtn {
    position: fixed;
    z-index: 100;
    top: 45%;
    right: 15px;
}

    .compare-leftbtn button, .compare-rightbtn button {
        width: 30px;
        height: 30px;
        color: #fff;
        background-color: rgba(50,50,50,.4);
        border: none;
        border-radius: 20px;
    }
.compare-box {
    display: table;
    width: 100%;
    height: auto;
    overflow: auto;
    padding: 0 8px;
}

.compare-check {
    float: right;
    margin: 5px auto;
    padding: 0;
    border: none;
    background: none;
}

.compare-content {
    width: 100%;
    height: auto;
    overflow: auto;
    padding: 10px;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.2);
}


.compare-img img {
    width: 100%;
}

.compare-imfo {
    overflow: hidden;
}

.compare-imfo-box {
    padding: 20px 5px;
    border-bottom: 1px solid #ccc;
}

    .compare-imfo-box ol {
        margin: 10px auto;
        padding-left: 30px;
    }

    .compare-imfo-box li {
        font-size: 15px;
        list-style-type: square;
    }

/* .compare-project-box {
    height: 120px;
} */

.compare-project-title {
    /* display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: auto; */
    /* overflow: hidden; */
    margin: 0;
    font-size: 15px;
    color: #af8346;
}

.project-check {
    padding: 0;
    border: none;
    background: none;
}

.compare-room-title {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 30px;
    overflow: hidden;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.compare-imfo-title {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.compare-btn {
    width: 100%;
    margin: 5px 0 5px 0;
    padding: 10px 30px;
}

/*===== Search-bar =====*/

.graybg {
    background-color: #eee;
}

.headicon {
    padding: 0 10px 0 0;
    margin: -6px 0;
}

.cltipsitem {
    text-align: center;
    margin-right: 10px;
    display: inline-block;
}

.calendertips {
    text-align: center;
    padding: 10px 0;
    clear: both;
    font-size: 13px;
    color: #555;
}

.calendertips-choose {
    display: inline-block;
    color: #961d3c;
}

.calendertips-evenfull {
    display: inline-block;
    color: #eabebf;
}

.search-coll-btn {
    text-align: center;
    color: #89683F;
}

    .search-coll-btn a {
        text-align: center;
        color: #89683F;
        font-size: 13px;
        padding: 10px 50px;
    }

        .search-coll-btn a:hover {
            text-align: center;
            color: #AF8246;
        }

@media screen and (max-width:991px) {

    .headicon {
        padding: 0;
        margin: 0 0 15px 0;
    }
}

.search-bar-box {
    padding-top: 15px;
    padding-bottom: 25px;
}

.search-title-box {
    text-align: center;
    font-size: 15px;
    color: #222;
}

.search-input-box {
    text-align: center;
    font-size: 14px;
    letter-spacing: 0px;
    color: #333;
    float: left;
    width: 100%;
}

.search-date-box,
.search-pjcode-box,
.searchcheckpeoplebox2 {
    background-color: #fff;
    height: 42px;
    padding: 10px;
    margin: 5px 0px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.search-date-box {
    border-right: 3px solid rgba(150, 150, 150, .2);
}

.search-pjcode-box {
    border-left: 3px solid rgba(150, 150, 150, .2);
}

.search-check-people-box {
    background-color: #fff;
    height: auto;
    padding: 9px 5px 1px 5px;
    margin: 5px 0px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.search-check-people {
    padding-bottom: 8px;
}

.search-date-box svg:not(:root).svg-inline--fa {
    transform: scale(1, .8);
    text-align: right;
    margin-left: 5px;
}

.search-date-box button {
    border: none;
}

.search-date-box svg:not(:root).svg-inline--fa:hover {
    color: #af8246;
}

.search-checkin-date,
.search-checkout-date {
    float: left;
    text-align: left;
    line-height: 24px;
    border-right: 1px #ddd solid;
}

    .search-checkin-date button,
    .search-checkout-date button {
        float: left;
        text-align: left;
        padding-top: 4px;
    }

.color-7 {
    color: #777;
}

.search-pjcode-box .form-control {
    border: none;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    height: 24px;
    box-sizing: border-box;
    border-radius: 0;
    font-size: 14px;
    line-height: 18px;
    background: transparent;
    box-shadow: none;
}

.search-title-box-ul li {
    display: inline-block;
    text-align: center;
    font-size: 15px;
    color: #222;
}

.search-search button {
    color: #fff;
    border: none;
    border-radius: 3px;
    background-color: #000;
    width: 100%;
    height: 42px;
    padding: 10px 0;
    margin: 5px 0px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

    .search-search button:hover {
        background-color: #961e3c;
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        -ms-transition: all .2s ease-in-out;
    }

.search-check-people-box form,
.searchcheckpeoplebox2 form {
    display: inline-block;
    text-align: center;
    padding: 0 2px;
}

.checkchild {
    background-color: #fff;
    position: absolute;
    margin: 10px auto;
    padding: 10px;
    border-top: 1px solid #eee;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 5;
    margin: 0 0 0 -5px;
    width:100%;
}

    .checkchild form {
        padding: 8px;
        text-align: left;
        color: #555;
    }

.search-check-people-box select,
.searchcheckpeoplebox2 select {
    padding: 3px 18px;
    border-radius: 0;
    border: 1px solid #ccc;
    background-color: rgba(0, 0, 0, 0);
}

.search-check-people-2 {
    width: auto;
    background-color: #fff;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

/* -------------------------------------------------------------------
 Booking Checkout Step
------------------------------------------------------------------- */

.booking-block {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #eee;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.booking-content {
    width: 100%;
    height: auto;
    padding: 30px 40px;
}

.booking-subtitle {
    font-weight: 600;
}

.booking-member-box {
    overflow: hidden;
    padding: 0 20px;
}

.update-imfo {
    float: left;
    margin: 0 20px 0 0;
    padding: 3px 0;
}

/* btn-login */

.booking-login {
    margin-right: 10px;
    color: #af8346;
    border: 1px solid #af8346;
}

    .booking-login:hover {
        color: #fff;
        background-color: #af8346;
    }

/* booking password set */

.booking-password-block {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 20px 0;
}

.booking-password-set {
    margin: 50px auto;
    text-align: left;
}

/* booking checking */

.booking-checkin-item-block {
    margin: 30px auto;
}

.booking-checkin-item {
    padding: 10px;
    border: 1px solid #BBBBBB;
}

/* invoice type */

/* btn-login */

.booking-login {
    margin-right: 10px;
    color: #af8346;
    border: 1px solid #af8346;
}

.invoice-drop {
    position: relative;
}

.invoice-select-arrow {
    position: absolute;
    top: 10px;
    right: 20px;
}

/* booking-step */

.step-box {
    padding: 35px 30px;
    border-bottom: 1px solid #ccc;
}

.steprow {
    text-align: center;
}

.step-check {
    display: inline-block;
    text-align: center;
    border: 2px solid #af8346;
    border-radius: 60px;
    width: 120px;
    height: 120px;
    padding: 15px 6px;
}

.step-txt {
    font-size: 16px;
    font-weight: 600;
    color: #af8346;
}

.step-no {
    font-size: 26px;
    color: #af8346;
}

.step-title {
    font-size: 15px;
    color: #333;
    border-top: 1px solid #ccc;
    padding: 5px 0;
}

.step-nocheck {
    display: inline-block;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 60px;
    width: 120px;
    height: 120px;
    padding: 15px 6px;
}

.step-next {
    display: inline-block;
    padding: 15px 30px 15px 25px;
    color: #555;
    font-size: 18px;
}

.mobilestep {
    background-color: #eee;
    text-align: center;
    padding: 30px 10px;
}

.stepcheck {
    width: 70px;
    display: inline-block;
}

.stepnext {
    font-size: 15px;
    color: #555;
    padding: 0 5px;
    display: inline-block;
}

.nocheck {
    color: #aaa;
}

.modal-dialog-login {
    width: 100%;
}

.booking-checkout-note {
    width: 100%;
}

/* booking-detail */

.booking-detail {
    margin-bottom: 10px;
    border-bottom: 1px solid #555;
}

.booking-detail-Title ul {
    background-color: #eee;
    padding: 8px 0 6px 0;
    margin: 0;
    font-size: 14px;
}

.booking-detail-Title li,
.booking-detail li {
    display: inline-block;
    color: #333;
}

.booking-detail-room {
    text-align: center;
    padding: 5px;
    width: 33%;
}

.booking-detail-room2,
.booking-detail-add {
    text-align: center;
    padding: 15px 0;
    float: left;
    width: 34%;
}

.booking-detail-price,
.booking-detail-price2 {
    text-align: center;
    padding: 5px;
    width: 14%;
}

.booking-detail-qty,
.booking-detail-qty2 {
    text-align: center;
    padding: 5px;
    width: 9%;
}

.booking-detail-total {
    text-align: center;
    padding: 5px;
    width: 14%;
}

.booking-detail-total2 {
    text-align: center;
    padding: 5px;
    width: 15%;
}

.booking-detail-book,
.booking-detail-book2 {
    text-align: center;
    padding: 5px;
    width: 14%;
}

.booking-detail-del,
.booking-detail-del2 {
    text-align: center;
    padding: 5px;
    width: 12%;
}

.booking-detail-del2,
.booking-detail-book2,
.booking-detail-total2,
.booking-detail-qty2,
.booking-detail-price2,
.booking-detail-add {
    float: left;
    padding: 30px 0 20px 0;
    font-size: 15px;
    color: #333;
}

.booking-detail-room2 img {
    float: left;
    padding-right: 0;
}

.booking-detail-room-project {
    color: #AF8246;
    font-size: 14px;
}

.booking-detail-room-info {
    text-align: left;
}

.booking-detail-room-title {
    display: block;
    line-height: 18px;
    font-size: 15px;
    text-align: left;
    padding-bottom: 5px;
}

.booking-detail-room-date {
    display: block;
    font-size: 13px;
    color: #777;
}

.booking-detail-room-p {
    display: block;
    font-size: 13px;
    color: #333;
}

.booking-detail-del2 button {
    padding: 8px 15px;
    border: 1px solid #ccc;
    color: #999;
}

    .booking-detail-del2 button:hover {
        color: #777;
        background-color: #efefef;
        transition: all .2s;
    }

.booking-dt-smtitle {
    display: inline-block;
    float: left;
    color: #999;
}

.booking-buymore {
    border: 1px dashed #ccc;
    margin-bottom: 10px;
    padding: 0 0 20px 0;
    background-color: #eee;
}

    .booking-buymore h3 {
        color: #af8346;
        font-size: 16px;
        font-weight: 500;
        padding: 0 15px;
    }

.booking-detail-qty2 select {
    padding: 4px 35px 4px 25px;
    border: 1px #aaa solid;
    border-radius: 0px;
    background-color: #fff;
    background: url("../image/arrow-right.png") no-repeat scroll right center #fff;
}

.booking-discountcode {
    padding: 40px 10%;
}

    .booking-discountcode input {
        margin-right: 5px;
        width: 500px;
        float: left;
    }

    .booking-discountcode button {
        font-size: 14px;
        padding: 11px 30px;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

.discounttotal,
.discount-no {
    padding: 20px 5px 5px 5px;
    font-size: 14px;
    color: #333;
}

    .discounttotal span {
        font-size: 16px;
        color: #961e3c;
    }

/* btn-login */

.booking-login {
    margin-right: 10px;
    color: #af8346;
    border: 1px solid #af8346;
}

    .booking-login:hover {
        color: #fff;
        background-color: #af8346;
    }

/* booking password set */

.booking-password-block {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 20px 0;
}

.success-tip {
    border: 2px solid #961d3bb4;
}

.success-atm-imfo {
    margin: 30px auto;
    padding: 0 200px;
}

/* -------------------------------------------------------------------
All Responsive Media Querries
------------------------------------------------------------------- */

@media (max-width: 1200px) {
}

@media (max-width: 1024px) {
    #wrap {
        width: 100%;
        /* padding: 0 15px; */
    }

    .btn.btn-xl {
        width: 100%;
    }

    .modal-body {
        padding: 40px;
    }
    /* Member Register*/
    .wrap-member,
    .warp-index {
        width: 90%;
    }

    .member-checkbox {
        width: 90%;
        margin: 50px auto;
    }
    /* Forget Password*/
    .member-password-block {
        padding: 0px;
    }

    .tracking-card {
        width: 100%;
        overflow: auto;
        padding-bottom: 15px;
        border: 1px solid #BBBBBB;
    }
    /*Member imfo set*/
    .select-small {
        width: 30%;
        margin: 0;
    }
}

@media (max-width: 991px) {
    #wrap {
        padding: 0 15px;
    }

    .btn-sm-left {
        float: none;
        margin-left: 0px;
        margin: 5px auto;
    }

    .btn-sm-right {
        float: none;
        margin-right: 0px;
        margin: 5px auto;
    }

    .header-logo {
        position: absolute;
        top: 120px;
        left: 0;
        width: 100%;
    }

    /* Member Login*/
    .login-r-box {
        border-right: none;
        border-bottom: 2px solid #eee;
    }

    .verify-img {
        /*width: 40%;*/
        padding: 0;
    }
    /* Member Sidebar*/
    .member-center-r {
        float: none;
        width: 100%;
        margin: 20px auto;
        padding: 0;
    }

    .member-center-l {
        float: none;
        width: 100%;
        padding: 0;
    }

    .member-content {
        width: 100%;
        height: auto;
        padding: 30px 30px;
        overflow: auto;
    }
    /* Member Traking*/
    .traking-block .tracking-card {
        margin-left: 0;
        margin-right: 0;
    }

    .tracking-btn-block input {
        padding: 15px 30px;
    }
    /* Member Imfo set*/
    .imfo-item {
        height: auto;
    }
    /* Search list */
    .room-img img {
        width: 100%;
        height: auto;
    }

    .room-img-box {
        margin-bottom: 20px;
    }

    .room-content-text {
        padding: 0 20px;
    }
    /*room-detail*/
    .img-big,
    .img-big-1,
    .img-big-2,
    .img-big-3 {
        height: 150px;
        width: 100%;
    }

    .resend-btn {
        width: 100%;
        margin: 10px auto;
        float: right;
    }
    /*righticon*/
    .righticon {
        display: none;
    }

    .downicon {
        display: block;
    }
    /*Search-bar*/
    .search-input-box {
        float: none;
    }

    .search-checkin-date,
    .search-checkout-date {
        text-align: center;
        padding: 5px 15px;
    }

    .search-date-box,
    .search-check-people-box,
    .searchcheckpeoplebox2 {
        background-color: #fff;
        vertical-align: middle;
        height: auto;
        margin: 5px 2px 5px 0;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    }

    .search-checkin-date,
    .search-checkout-date {
        border-bottom: 1px #eee solid;
        border-right: none;
    }

        .search-checkin-date button,
        .search-checkout-date button {
            float: none;
            text-align: center;
            padding: 5px 0;
        }

    .search-day,
    .search-check-people-box,
    .searchcheckpeoplebox2 {
        text-align: center;
    }

    .search-check-people-box,
    .searchcheckpeoplebox2 {
        padding: 10px 25px;
        text-align: center;
    }

    .search-pjcode-box {
        padding: 10px 15px;
    }

    .search-search {
        margin-top: 10px;
    }

        .search-search button {
            width: 220px;
        }

    .search-day {
        padding-top: 10px;
    }

    .checkchild {
        width: 100%;
        position: relative;
        margin: 10px auto;
        z-index: 0;
    }

        .checkchild form {
            padding: 10px;
            text-align: left;
            color: #555;
        }

    .search-date-box {
        border-right: none;
    }

    .search-pjcode-box {
        border-left: none;
    }
    /* booking-step */
    .steprow {
        text-align: center;
        margin: 0 23%;
    }

    .step-next {
        padding: 0 15px;
    }

    .booking-detail-room2,
    .booking-detail-del2,
    .booking-detail-book2,
    .booking-detail-total2,
    .booking-detail-qty2,
    .booking-detail-price2,
    .booking-detail-add {
        width: 100%;
    }

    .booking-detail-room2,
    .booking-detail-del2,
    .booking-detail-book2,
    .booking-detail-total2,
    .booking-detail-qty2,
    .booking-detail-price2,
    .booking-detail-add,
    .booking-detail-add {
        text-align: left;
        padding: 10px;
    }

    .booking-detail-room2 {
        padding: 20px 10px 10px 10px;
        float: left;
    }

        .booking-detail-room2 img {
            padding: 0;
        }

    .booking-detail-del2 button {
        width: 100%;
    }

    .booking-discountcode {
        padding: 40px 30px 20px 30px;
    }

    .booking-detail-Title {
        display: none;
    }

    @media (max-width: 834px) {
        /* booking-step */
        .steprow {
            text-align: center;
            margin: 0 20%;
        }
    }

    @media (max-width: 800px) {
        .search-day {
            padding: 5px 15px;
        }

        .search-check-people-box form,
        .searchcheckpeoplebox2 form {
            padding: 2px;
        }

        .checkchild {
            padding: 10px;
        }

            .checkchild form {
                padding: 10px 0;
                margin-right: 15px;
                text-align: left;
                color: #555;
            }
    }
    /*手機*/
    @media (max-width: 768px) {
        /* modal */
        .modal.in .modal-dialog {
            padding: 5px;
        }

        .projects-modal ol {
            padding: 10px 20px;
        }
        /* Member Sidebar*/
        .member-content {
            padding: 15px;
        }

        .top-imfo-phone {
            display: inline-block;
            text-align: left;
        }

        .header-r-box {
            width: 100%;
        }

        .language-box {
            display: none;
            float: left;
            margin: 6px 0;
        }

        .dropdown {
            position: relative;
            display: inline-block;
            width: 100%;
        }
        /* Search list  */
        .projects-block {
            padding: 15px;
        }
        /* compare block */
        .img-big,
        .img-big-1,
        .img-big-2,
        .img-big-3 {
            height: 420px;
            width: 100%;
        }

        .compare-block {
            padding: 15px;
        }

        .compare-box {
            padding: 10px;
        }
        /*room-detail*/
        .room-detail-row {
            margin: 0;
        }

        .room-intro-title {
            padding: 28px 5px 0 5px;
            border-top: 1px solid #ddd;
            font-size: 15px;
        }

        .room-intro-detail {
            border-top: 1px solid #ddd;
            font-size: 14px;
        }

        .room-booking {
            width: 100%;
        }

        .add-check {
            margin: 20px 20px 40px 20px;
        }
        /*righticon*/
        .righticon {
            display: none;
        }

        .downicon {
            display: block;
        }
        /* dropbox-arrow */
        .select-arrow {
            position: absolute;
            top: 50px;
            right: 40px;
        }
        /* Search-bar */
        .search-date-box,
        .search-pjcode-box {
            padding: 10px 30px;
            margin: 10px 20px;
            text-align: center;
        }

        .search-check-people-box,
        .searchcheckpeoplebox2 {
            padding: 10px 45px;
            margin: 10px 20px;
        }

        .booking-content {
            padding: 15px;
        }

        .checkchild {
            background-color: #fff;
            position: relative;
            padding: 15px;
            margin: 10px auto;
            border-top: 1px solid #eee;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
            z-index: 0;
        }

        /* checkout success */
        .success-atm-imfo {
            padding: 0;
        }
        /*booking*/
        .booking-discountcode input {
            margin-right: 0px;
            width: 100%;
            float: left;
        }

        .booking-discountcode button {
            margin-top: 10px;
            float: none;
        }
    }
    /*手機iphone*/
    @media (max-width: 500px) {
        body {
            min-width: 300px;
        }

        .modal-body {
            padding: 15px;
        }

        .modal-dialog {
            margin: 50px auto;
        }
        /* Member Register*/
        .wrap-member {
            width: 90%;
        }

        .member-checkbox {
            width: 100%;
            margin: 50px auto;
        }

        .login-l-box {
            padding: 15px;
        }
        /* Member login*/
        .login-r-box {
            padding: 15px;
            border-right: none;
            border-bottom: 2px solid #eee;
        }

        .member-content-footer {
            padding: 20px 20px;
        }

            .member-content-footer span {
                display: block;
            }

        .verify-input input {
            width: 100%;
        }

        .verify-img {
            width: 100%;
            margin: 5px auto;
            text-align: left;
        }

            .verify-img img {
                margin: 0 auto;
            }

        .refresh-box {
            text-align: left;
        }
        /*unverified*/
        .resend-block {
            padding: 15px;
            text-align: center;
        }
        /* Member Sidebar*/
        .imfo-btn-block {
            padding: 15px
        }
        /*Member imfo set*/
        .select-small {
            width: 30%;
            margin: 0;
        }
        /*room-detail*/
        .room-buymore-block {
            margin: 10px 0;
        }

        .input-group[class*=col-] {
            float: left;
        }

        .buymore-qty {
            padding: 10px 0;
            margin-left: 30px;
        }

        .img-small,
        .img-small-1,
        .img-small-2,
        .img-small-3 {
            width: 100px;
            height: 75px;
            margin: 6px 3px;
        }
        /*booking*/
        .booking-content {
            padding: 20px 10pㄅx;
        }

        .info-dayinfo span {
            display: block;
        }

        .ormonry-mar {
            margin-top: 22px;
        }
        /* search bar */
        .search-input-box {
            width: auto;
        }
        /* footer */
        .footerCopyright {
            background-color: #240000;
            padding: 0 0 60px 0;
        }

            .footerCopyright .footerCopy {
                float: none;
                text-align: center;
                margin: 20px 0 10px 0;
            }

            .footerCopyright .footerUl {
                float: none;
                text-align: center;
                margin: 10px 0 10px 0;
            }
    }

    @media (max-width: 480px) {
        /*room-detail*/
        .img-big,
        .img-big-1,
        .img-big-2,
        .img-big-3 {
            width: 100%;
            height: 240px;
        }
    }
