﻿/* Credit Card */
.cards {
    overflow: hidden;
    margin: 0px;
    padding: 0px;
}

.cards li {
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    background-image: url(../../bookings/images/card_logos.png);
    background-position: 0 0;
    float: left;
    height: 32px;
    margin-right: 8px;
    text-indent: -9999px;
    width: 51px;
}

.cards li:last-child {
    margin-right: 0;
}

.cards .visa_electron {
    background-position: 255px 0;
}

.cards .mastercard {
    background-position: 204px 0;
}

.cards .amex {
    background-position: 153px 0;
}

.cards .discover {
    background-position: 102px 0;
}

.cards .jcb {
    background-position: 51px 0;
}

.cards .visa.off {
    background-position: 0 32px;
}

.cards .visa_electron.off {
    background-position: 255px 32px;
}

.cards .mastercard.off {
    background-position: 204px 32px;
}

.cards .amex.off {
    background-position: 153px 32px;
}

.cards .discover.off {
    background-position: 102px 32px;
}

.cards .jcb.off {
    background-position: 51px 32px;
}

/* ---------- */

.panel {
    margin-bottom: 20px;
    background-color: #e8eaef;
    border: 1px solid transparent;
    border-radius: 18px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    padding: 15px;
    font-size: 17px;
}

label em {
    color: red;
}

label.error {
    color: red;
    font-size: 13px;
}

.thank-content {
    width: 100%;
    padding: 20px 0px;
    height: auto;
    text-align: center;
    border-top: solid 1px #666;
}

.thank-table {
    padding-top: 20px;
    width: 100%;
}

.thank-remark {
    text-align: right;
    margin-right: 5%;
    width: 95%;
    font-size: 12px;
    margin-bottom: 50px;
}

.payment-important {
    padding: 5px 5px 10px 5px;
    margin-top: 15px;
    border-radius: 5px;
    background-color: #f2dede;
}

@media screen and (max-width: 600px) {
    .table thead tr th {
        display: block;
        border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    }

    #table_Price {
        display: none !important;
    }

    tbody tr td {
        display: block !important;
        width: 100%;
    }

    .table_display {
        display: none !important;
    }
}

@media screen and (max-width: 321px) {
    tbody tr td {
        width: 100%;
    }
}

@media screen and (max-width: 377px) and (min-width: 325px) {
    tbody tr td {
        width: 100%;
    }
}

@media screen and (max-width: 408px) and (min-width: 377px) {
    tbody tr td {
        width: 100%;
    }
}

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

#button_SunmitCoupon {
    width: 130px;
}

.row-btnchkout {
    margin-top: 20px;
}

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


.im-remove {
    display: block;
}

@media (max-width: 767px) {
    .im-remove {
        display: none !important;
    }

    .cart-table tbody tr td {
        border: none !important;
    }

    .responsive-table tbody tr {
        border-bottom: none !important;
        margin: 0px !important;
    }

    .cart-table td {
        padding: 0px !important;
        background-color: #f2f2f2 !important;
        box-shadow: none !important;
    }

    .cart-table tr {
        border: none !important;
    }

    .header-features {
        display: none;
    }

    .cart-table {
        border-radius: 0px !important;
        box-shadow: none !important;
    }

    .cart-table td.price {
        padding: 0px !important;
    }

    .cart-table img {
        border-radius: 0px !important;
        margin-bottom: 15px !important;
    }

    .table-cart {
        border-bottom: 1px solid #666;
        margin-bottom: 20px;
    }
}



/*modal*/

.img_Photo {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.img_Photo:hover {
    opacity: 0.7;
}

/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 10000;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content,
#caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

#spand_AllPhoto {
    margin-top: 2px;
    padding-top: 10px;
}

.img_Photo {
    margin-left: 3px;
}

#button_ProcessBack {
    background-color: #f4f4f4 !important;
    padding: 10px 15px;
    height: auto !important;
}

#button_ProcessBack:hover {
    background-color: #e2e2e2 !important;
    padding: 10px 15px;
    height: auto !important;
}

#button_Checkout,
#button_ProcessPayment {
    background-color: #4d4d4d !important;
    padding: 10px 15px;
    height: auto !important;
}

#button_Checkout:hover,
#button_ProcessPayment:hover {
    background-color: #333 !important;
}

#button_SunmitCoupon {
    background-color: #e8eaef !important;
    color: #666;
    font-weight: bold;
}

#button_SunmitCoupon:hover {
    background-color: #c5c5c5 !important;
    color: #666;
    font-weight: bold;
}

.top-main-area {
    border: none !important;
}

.top-main-area .container {
    /*border-bottom: solid 1px #dddddd;*/
}

footer.main {
    border: none !important;
    margin-top: 30px;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
.dxpnlControl {
    font-family: 'Mali', sans-serif !important;
    text-align: left;
}

img {
    border-radius: 0px;
}

.global-wrap {
    background: #fdfdfd;
}

.header {
    text-align: center;
}

.header .logo {
    display: inherit;
}

.header-contact {
    text-align: center;
    font-size: 15px;
    margin-bottom: 10px;
    padding: 0px 0px 10px 0px;
}

.message-box {
    margin-bottom: 3rem;
}

.message-box h1 {
    font-size: 35px;
    line-height: 2;
    text-align: center;
}

.message-box h4 {
    font-size: 18px;
    line-height: 25px;
    text-align: center;
}

.txt-CampaignDesc {
    text-align: center;
}

.form-control {
    border-radius: 10px;
    font-size: 18px;
    padding: 7px 10px;
    height: auto;
}

.panel-form {
    font-size: 15px;
}

.dxlpLoadingPanel,
.dxlpLoadingPanelWithContent {
    font-family: 'Mali', sans-serif !important;
    font-size: 22px !important;
    border-radius: 0px;
    overflow: hidden;
    background-color: #fff !important;
    color: #4d4d4d !important;
    padding: 50px !important;
    width: 100vw;
    height: 100vh;
    left: 0px !important;
    right: 0px !important;
    top: 0px !important;
    position: fixed !important;
}

.dxlpLoadingPanel td.dx,
.dxlpLoadingPanelWithContent td.dx {
    display: block !important;
}

.dxlpLoadingPanel td.dx,
.dxlpLoadingPanelWithContent td.dx:first-child {
    padding-top: 40vh !important;
    padding-bottom: 0px !important;
}

.table-content {
    margin-bottom: 10px
}

.table {
    width: 100%;
}

.table thead {
    font-size: 22px;
    font-weight: bold;
}

.table td.table_display {
    font-weight: bold;
}

.table td.table_display .txt-no {
    background-color: #666;
    color: #fff;
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 32px;
    border-radius: 50%;
    text-align: center;
    text-transform: uppercase;
}

.table>thead>tr>th {
    border-bottom: 2px solid #666;
    padding-bottom: 20px;
}

.table td table tbody tr td {
    font-weight: bold;
    padding: 10px;
}

.table tbody tr td:first-child {
    padding-right: 0px;
}

.table>thead>tr>th,
.table>tbody>tr>th,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>tbody>tr>td,
.table>tfoot>tr>td {
    padding: 15px;
    border-top: 1px solid #666;
}

.table>thead>tr>th {
    padding-top: 5px;
}

.table td table tbody tr td:first-child {
    border-radius: 10px 0px 0px 10px;
    background-color: #fafbfc;
}

.table td table tbody tr td:last-child {
    border-radius: 0px 10px 10px 0px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 60%);
}

.table .item {
    width: 100%;
    padding: 0;
    font-size: 12px;
    color: #3a3b3c;
    border-radius: 18px;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, .08);
    overflow: hidden;
    background-color: #ffffff;
    display: -ms-flexbox;
    display: flex;
    margin: 30px 0px;
    /*max-height: 185px;*/
    /*background: linear-gradient(180deg, rgb(246, 246, 248) 0%, rgba(255,255,255,0) 80%);*/
    transition: all .3s cubic-bezier(0, 0, .5, 1);
}

.table .item:hover {
    box-shadow: 2px 4px 16px rgba(0, 0, 0, .16);
    /*transform: scale3d(1.01,1.01,1.01);*/
}

.table .item .item-photo {
    width: 39%;
    float: left;
}

.item-photo-bg {
    height: 100%;
    width: 100%;
    height: 270px;
}

.table .item .item-description .txt-name {
    display: inline-block;
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 12px
}

.table .item .item-description {
    width: 55%;
    float: left;
    padding: 15px;
    font-size: 21px;
    border-right: 1px solid #dddddd;
    vertical-align: middle;
}

.table .item .item-description .txt-validate {
    font-size: 13px;
    color: #ff5f5f;
    font-weight: bold;
}

.table .item .item-description img {
    width: auto;
    display: inline-block;
    border-radius: 10px;
}

.table .item .item-description .unit {
    width: 100%;
    padding: 10px 0px;
    font-weight: 900;
    overflow: hidden;
}

.table .item .item-description .form-group.remark {
    padding: 0px 15px 15px 15px;
}

.table .item .item-description .unit .txt-label,
.table .item .item-description .unit span {
    float: left;
    font-size: 17px;
    line-height: 40px;
}

.table .item .item-description .unit .select {
    float: left;
}

.table .item .item-description .unit .select select {
    min-width: 100px;
    cursor: pointer;
}

.table .item .item-description .unit .select select:hover {}

.table .item .item-description .light-box-gallery {
    width: 100%;
    float: left;
}

.table .item .item-price {
    width: 16%;
    float: left;
    padding: 15px;
    font-size: 17px;
    font-weight: 900;
    text-align: right;
    vertical-align: middle;
    background-color: #e8eaef69;
    /*align-self: flex-end;*/
}

.table .item .item-price .txt-currency {}

.table .item .item-price .txt-price {
    font-weight: 900;
    font-size: 22px;
    background-color: #fff;
    margin-right: -16px;
    border-radius: 10px 0px 0px 10px;
    padding: 8px 15px 8px 15px;
    margin-top: 12px;
    width: 100%;
}

.txt-remark {
    font-size: 15px;
}

.promotion-code .col-sm-8 {
    padding-bottom: 0px;
    padding-top: 0px;
}

.summary {
    font-size: 22px;
    width: 100%;
    overflow: hidden;
    padding-bottom: 15px;
    background-color: #e8eaef;
    border-radius: 18px;
    padding: 15px;
    margin-top: -5px;
    margin-bottom: 15px;
}

.summary .row-subtotal,
.summary .row-discount,
.summary .row-grandtotal {
    overflow: hidden;
    width: 100%;
    padding: 5px 10px;
}

.summary .row-discount .txt-value {
    padding: 5px 0px;
    border-bottom: solid 1px #666;
}

.summary .row-grandtotal .txt-value {
    font-weight: 900;
    padding: 5px 0px;
}

.summary .txt-label {
    font-weight: 900;
    text-align: right;
    float: right;
    width: 350px;
    margin-right: 15px;
    line-height: 40px;
}

.summary .txt-value {
    text-align: right;
    float: right;
    width: 250px;
}

.panel .summary {
    margin-bottom: 0px;
}

footer.main .footer-copyright {
    color: #666;
}

footer.main .footer-copyright .row {
    /*border-top: solid 1px #ddd;*/
    padding-top: 15px;
}

footer.main .footer-copyright a {
    color: #1479bd;
}

.tab_container {
    border: none !important;
}

#mp_contentplaceholder_Content_id_PaymentDetail {
    border: solid 1px;
    border-radius: 10px;
    padding: 15px;
}

.customer-detail {
    padding: 25px;
    background-color: #ffffff90;
}

.nav-menu.tag-category {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    padding: 1rem 0;
}

.tag-category .txt-cate {
    width: 95px;
    font-size: 17px;
    font-weight: normal;
}

.tag-category.fixed-header .txt-cate {
    display: none;
}

.tag-category ul {
    margin: 0;
    border-radius: 25px;
    width: 100%;
    padding: 0;
}

.tag-category ul li {
    position: relative;
    display: inline-block;
    padding: .3rem 1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: .3s;
}

.tag-category ul li a {
    position: relative;
    color: #000 !important;
    text-decoration: none;
    font-size: 21px;
    font-weight: bold;
}

.tag-category ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: transparent;
    width: 100%;
    height: 1px;
    transition: .3s;
    transition-timing-function: cubic-bezier(.58, .3, .005, 1);
}

.tag-category ul li a:hover::before {
    background-color: #000;
}


.tag-category ul li::after {
    content: "";
    position: absolute;
    left: -2px;
    bottom: 9px;
    background-color: #000000;
    width: 1px;
    height: 18px;
}


.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    margin-top: 0 !important;
}

.nav-menu.fixed-header {
    text-align: center;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, .08);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    background: var(--localnav-background-stuck, rgba(251, 251, 253, 0.7));
}

.bar-shot-summary {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    z-index: 1;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, .16);
    transition: all .5s ease-out;
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

.bar-shot-summary .txt-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 36.5%;
    padding-left: 5px;
}

.bar-shot-summary .detail-grandtotal {
    width: 45%;
    text-align: right;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-right: 3.5rem;
}


.bar-shot-summary .btnchkout {
    width: 18.5%;
    margin: 0;
}

.bar-shot-summary .btnchkout .btn-chkout {
    height: 90px !important;
    border: none !important;
    border-radius: 0;
    color: #000;
    padding-top: 15px;
    font-size: 25px;
    line-height: 2rem;
    background-color: #fff !important;
}

.bar-shot-summary .btnchkout .btn-chkout:hover {
    color: #fff;
    background-color: var(--ThemeColor) !important;
}

.bar-shot-summary .txt-summary span {
    color: #fff;
    font-size: 23px;
    font-weight: bold;
    text-transform: uppercase;
}

.bar-shot-summary .txt-remark span {
    color: #fff;
    font-size: 12px;
}

.bar-shot-summary .row-grandtotal .txt-label {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    padding-right: 0.8rem;
}

.bar-shot-summary .row-grandtotal .txt-value {
    color: #fff;
    font-size: 2.8rem;
    font-weight: bold;
}

.empty-photo .item-photo {
    display: none !important;
}

.select .form-control[disabled], .form-control[disabled] {
    opacity: 0.5;
    cursor: not-allowed !important;
}

.table-content .col-tag .tab-item h4 {
    color: #fff;
    background-color: #000;
}

.bootstrap-touchspin {
    width: 100%;
    max-width: 170px;
}

.unit .spin-unit {
    text-align: center;
    height: 48px;
    border: none !important;
}

.bootstrap-touchspin .input-group-btn-vertical {
    width: 100%;
    border: 1px solid #dddddd;
    border-radius: 10px !important;
    background: transparent !important;
}

.bootstrap-touchspin .input-group-btn-vertical>.btn {
    height: 100% !important;
    width: 5rem !important;
    background: transparent !important;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
    left: 0 !important;
    right: unset !important;
    border: none;
    border-right: 1px solid #dddddd;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
    border: none;
    border-left: 1px solid #dddddd;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
    .container-evoucher {
        width: 95%;
    }
}

@media screen and (min-width: 768px) {
    .tag-category ul li:first-child::after {
        background-color: transparent;
    }
}

@media screen and (min-width: 1200px) {

    .nav-menu.tag-category {
        padding: 2rem 0;
    }

    .tag-category ul {
        border-radius: 50px;
    }

    .tag-category ul li {
        padding: 0 2rem;
    }

    .tag-category ul li a {
        font-size: 22px;
    }

    .tag-category .txt-cate {
        width: 91px;
    }
}

@media screen and (max-width: 991px) {
    .bar-shot-summary .txt-summary {
        width: 25%;
    }

    .bar-shot-summary .detail-grandtotal {
        width: 55%;
        padding-right: 1.7rem;
    }

    .bar-shot-summary .btnchkout {
        width: 22%;
    }

    .bar-shot-summary .btnchkout .btn-chkout {
        font-size: 21px;
        line-height: 1rem;
        padding-top: 20px;
    }

    .bar-shot-summary .txt-summary span {
        font-size: 20px;
    }

    .message-box {
        margin-bottom: 1.3rem;
    }

    .tag-category .txt-cate {
        width: 100px;
        font-size: 17px;
    }

    .tag-category ul li {
        padding: 0 2rem;
    }

    .tag-category ul li::after {
        height: 16px;
    }
}

@media screen and (max-width: 767px) {
    .bar-shot-summary .container {
        padding: 0 0;
    }

    .bar-shot-summary .txt-summary {
        width: 20%;
        padding-left: 0;
        display: none;
    }

    .bar-shot-summary .detail-grandtotal {
        width: 72%;
        padding: 12px 10px;
    }

    .bar-shot-summary .btnchkout {
        width: 28%;
    }

    .bar-shot-summary .txt-summary span {
        font-size: 12px;
    }

    .bar-shot-summary .btnchkout .btn-chkout {
        font-size: 16px;
        line-height: 18px;
        text-wrap: wrap;
        height: 100% !important;
        padding-top: 10px;
    }

    .bar-shot-summary .row-grandtotal .txt-label {
        font-size: 14px;
        padding-right: 2px;
    }

    .bar-shot-summary .row-grandtotal .txt-value {
        font-size: 19px;
    }

    .bar-shot-summary .txt-remark {
        padding-top: 0;
    }

    .bar-shot-summary .txt-remark span {
        font-size: 9px;
        line-height: 10px;
        font-weight: 300;
    }

    .table .item {
        margin: 15px 0px;
    }

    .tag-category .txt-cate {
        width: 110px;
        font-size: 16px;
    }

    .tag-category ul li::after {
        height: 4px;
        width: 4px;
        bottom: 48%;
        left: 3px;
        border-radius: 55px;
    }

    .tag-category ul li {
        padding: .1rem 1.3rem;
    }

    .tag-category ul li a {
        font-size: 18px;
    }

    .bar-shot-summary .btnchkout .btn-chkout {
        background-color: var(--ThemeColor) !important;
        color: #fff;
    }
    
    .message-box {
        margin-bottom: .3rem;
    }

    .message-box h1 {
        font-size: 25px;
    }
}

@media screen and (max-width: 545px) {
    .tag-category .txt-cate {
        width: 112px;
        font-size: 15px;
    }
}

@media screen and (max-width: 335px) {
    .tag-category .txt-cate {
        width: 125px;
    }
}

    /*.item.id-2747, .item.id-2750, .item.id-2753, .item.id-2756 {
    padding: 0px;
    border-radius: 0px;
    box-shadow: none;
    border: none;
    border-bottom: solid 3px #333333;
    background-color: transparent;
    background: none;
    //background-color: #5677fc;
    //color: #fff !important;
    //box-shadow: none;
    //padding: 7px;
}

    .item.id-2747:hover, .item.id-2750:hover, .item.id-2753:hover, .item.id-2756:hover {
        box-shadow: none;
    }

    .item.id-2747 .item-description, .item.id-2750 .item-description, .item.id-2753 .item-description, .item.id-2756 .item-description {
        width: 100%;
        border: none;
        padding: 15px 0px 2px 0px;
        font-size: 25px;
        font-weight: 900;
        display: inherit !important;
    }

        .item.id-2747 .item-description .txt-name, .item.id-2750 .item-description .txt-name, .item.id-2753 .item-description .txt-name, .item.id-2756 .item-description .txt-name {
            background-color: #333333;
            padding: 5px 55px 8px 15px;
            color: #ffffff;
            border-radius: 0px 100px 0px 0px;
            min-width: 30%;
            display: inline-table;
            font-weight: bold;
        }

    .item.id-2747 .item-photo, .item.id-2747 .item-price, .item.id-2750 .item-photo, .item.id-2750 .item-price, .item.id-2753 .item-photo, .item.id-2753 .item-price, .item.id-2756 .item-photo, .item.id-2756 .item-price {
        display: none !important;
    }*/
    @media screen and (max-width: 767px) {

        .message-box h1 {
            font-size: 22px;
        }

        .message-box h4 {
            font-size: 12px;
            line-height: 22px;
        }

        .table .item {
            display: inherit;
            max-height: none;
        }

            .table .item .item-photo {
                width: 100%;
                overflow: hidden;
                margin: 0px !important;
            }

                .table .item .item-photo img {
                    border-radius: 10px 10px 0px 0px;
                }

            .table .item .item-description {
                font-size: 13px;
                padding: 7px;
                width: 60%;
                float: none;
                display: table-cell;
            }

            .table .item .item-price {
                font-size: 13px;
                width: 40%;
                padding: 5px;
                display: table-cell;
                vertical-align: inherit;
            }

                .table .item .item-price .txt-price {
                    font-size: 21px;
                }

        .table td table tbody tr td:first-child {
            border-radius: 10px 0px 0px 10px;
            background-color: #fafbfc;
            float: left;
            width: 50% !important;
        }

        .table td table tbody tr td:last-child {
            border-radius: 0px 10px 10px 0px;
            background: initial;
            background-color: #fafbfc;
            float: left;
            text-align: right !important;
            width: 50% !important;
        }

        .table > tbody > tr > td {
            padding: 15px 0px;
            font-size: 13px;
        }

        table > thead > tr > th {
            width: 100% !important
        }

        .panel {
            padding-bottom: 0px;
            margin-bottom: 10px;
        }

            .panel .summary {
                padding: 25px 0px 5px 0px;
            }

        .table > thead:first-child > tr:first-child > th {
            padding: 0px 0px 10px 0px;
        }

        .summary .txt-value {
            width: 50%;
            margin: 0px;
            padding: 0px;
            font-size: 18px;
        }

        .summary .txt-label {
            width: 50%;
            margin: 0px;
            padding: 0px;
            font-size: 18px;
            text-align: left;
        }

        .summary .row-subtotal,
        .summary .row-discount,
        .summary .row-grandtotal {
            padding: 2px 0px;
        }

        .txt-remark {
            font-size: 10px;
            font-weight: 600;
            padding-top: 5px;
        }

        .promotion-code .col-sm-8 {
            padding-bottom: 5px;
            padding-top: 15px;
        }

        footer.main .footer-copyright {
            font-size: 11px;
            font-weight: 600;
        }

        .footer-copyright .col-md-9,
        .footer-copyright .col-md-3,
        .footer-copyright h3 {
            text-align: center;
        }

        .footer-copyright h3 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .footer-copyright .col-md-3 {
            padding-top: 10px;
        }

        .footer-copyright .cards li {
            float: inherit;
        }

        .payment-cap {
            font-size: 15px !important;
            font-weight: 900 !important;
        }

        .payment-method {
            width: calc(50vw - 37px) !important;
            margin-left: 0px !important;
            min-height: 212px !important;
        }

            .payment-method:nth-child(2n+1) {
                margin-right: 10px;
            }

            .payment-method.active {
                background: #fff;
                border-right: none;
                border-radius: 10px 10px 10px 10px !important;
                border-color: #ccc;
                border-left: solid 5px #ccc !important;
                border-right: solid 5px #ccc !important;
            }

        .payment-group {
            margin-bottom: 0px !important;
        }

        #panel_ProcessBack {
            margin-top: -15px;
            margin-bottom: 5px;
        }

        .customer-detail {
            padding: 15px;
            font-size: 15px;
        }

            .customer-detail h3 {
                font-size: 20px;
            }

        .post-desciption {
            font-size: 11px;
            font-weight: 900;
        }

        .form-control,
        .panel-form {
            font-size: 13px;
        }

        .summary .txt-label,
        .summary .txt-value {
            font-size: 13px;
            line-height: 20px;
        }

        #mp_contentplaceholder_Content_div_CartTotalList thead tr th:first-child {
            width: 100% !important;
        }

        .message-box h1 {
            font-size: 25px;
            line-height: 3.5rem;
        }

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

        .table thead {
            font-size: 16px;
        }

        .txt-terms-conditions ul {
            font-size: 12px;
        }

        #mp_contentplaceholder_Content_id_PaymentDetail .tab_content {
            padding: 0px;
            line-height: initial;
        }

            #mp_contentplaceholder_Content_id_PaymentDetail .tab_content b {
                font-size: 12px;
                font-weight: normal;
            }

        .header .logo {
            max-width: 50%;
        }

        /*.item.id-2747, .item.id-2750, .item.id-2753, .item.id-2756 {
        border: none;
        border-bottom: none;
    }

        .item.id-2747 .item-description, .item.id-2750 .item-description, .item.id-2753 .item-description, .item.id-2756 .item-description {
            font-size: 20px;
            font-weight: 900;
            width: 100%;
            padding: 0px;
        }

            .item.id-2747 .item-description .txt-name, .item.id-2750 .item-description .txt-name, .item.id-2753 .item-description .txt-name, .item.id-2756 .item-description .txt-name {
                min-width: 100% !important;
                border-radius: 0px;
                text-align: center;
                padding: 5px 0px 8px 0px;
                background-color: #fff;
                color: #3a3b3c;
                border-bottom: solid 1px #3a3b3c;
                border-top: solid 1px #3a3b3c;
            }*/
    }

    .menubar {
        width: 100%;
        padding: 7px;
        margin: 0px;
        text-align: right;
        border-top: 1px #6666663d solid;
        background-color: #66666657;
        border-bottom: 1px #6666663d solid;
        position: relative;
        float: right;
        z-index: 1999;
    }

        .menubar .btn {
            font-weight: bold;
            border: 1px #666 solid !important;
            color: #666;
        }

    @media print {
        .menubar {
            display: none;
        }
    }

    @media screen and (max-width: 767px) {
        .menubar {
            margin-bottom: 15px;
        }

            .menubar .btn {
                width: 100%;
            }

                .menubar .btn:not(:first-child) {
                    margin-top: 5px;
                }
    }

    /* Credit Card */
    .cards {
        overflow: hidden;
        margin: 0px;
        padding: 0px;
    }

        .cards li {
            -webkit-transition: all .2s;
            -moz-transition: all .2s;
            -ms-transition: all .2s;
            -o-transition: all .2s;
            transition: all .2s;
            background-image: url(../../bookings/images/card_logos.png);
            background-position: 0 0;
            float: left;
            height: 32px;
            margin-right: 8px;
            text-indent: -9999px;
            width: 51px;
        }

            .cards li:last-child {
                margin-right: 0;
            }

        .cards .visa_electron {
            background-position: 255px 0;
        }

        .cards .mastercard {
            background-position: 204px 0;
        }

        .cards .amex {
            background-position: 153px 0;
        }

        .cards .discover {
            background-position: 102px 0;
        }

        .cards .jcb {
            background-position: 51px 0;
        }

        .cards .visa.off {
            background-position: 0 32px;
        }

        .cards .visa_electron.off {
            background-position: 255px 32px;
        }

        .cards .mastercard.off {
            background-position: 204px 32px;
        }

        .cards .amex.off {
            background-position: 153px 32px;
        }

        .cards .discover.off {
            background-position: 102px 32px;
        }

        .cards .jcb.off {
            background-position: 51px 32px;
        }

    /* ---------- */


    /* Start New font-family */
    html,
    body,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .dxpnlControl {
        font-family: 'Noto Sans Thai', sans-serif !important;
    }

    div,
    p,
    span,
    a,
    table,
    th,
    td,
    .table-content h1,
    .table-content h2,
    .table-content h3,
    .table-content h4,
    .table-content h5 {
        font-family: 'Noto Sans Thai', sans-serif !important;
        color: #000;
    }

    .modal .modal-content,
    .modal .modal-content .modal-title {
        font-family: 'Noto Sans Thai', sans-serif !important;
    }

    /* End New font-family */

    .tab-item .tagid {
        color: #ffffff;
        width: fit-content;
        padding: 15px 25px;
        border-radius: 50px;
        background-color: #000;
    }

    .blueimp-gallery {
        background-color: rgba(245, 245, 247, 0.3) !important;
        -webkit-backdrop-filter: blur(24px) !important;
        backdrop-filter: blur(24px) !important;
        transition: opacity .4s ease, visibility 0s linear .4s, z-index 0s linear .4s;
    }

        .blueimp-gallery > .close {
            font-size: 40px !important;
        }

        .blueimp-gallery > .close,
        .blueimp-gallery > .title {
            color: #555 !important;
            text-shadow: none !important;
            opacity: unset !important;
        }

            .blueimp-gallery > .close:hover,
            .blueimp-gallery > .title:hover,
            .blueimp-gallery > .play-pause:hover {
                color: #333 !important;
            }

        .blueimp-gallery,
        .blueimp-gallery > .slides > .slide > .slide-content {
            box-shadow: 0px 0px 16px 0px rgb(0 0 0 / 24%);
        }

            .blueimp-gallery > .prev,
            .blueimp-gallery > .next {
                font-size: 48px !important;
                line-height: 37px !important;
            }

    @media screen and (min-width: 992px) {
        .blueimp-gallery > .indicator > li {
            width: 40px !important;
            height: 40px !important;
            border-radius: 7px !important;
        }
    }

.txt-soldout {
    color: #929292;
}

.unit .txt-baseprice {
    color: #6e6e6e;
    font-size: 13px !important;
    font-weight: normal;
    text-decoration: line-through;
}

.unit.down-price .txt-label {
    color: red;
}

.unit .txt-cate-unit {
    font-size: 13px !important;
    font-weight: normal;
    color: #6e6e6e;
}

@media (max-width: 777px) {
    .unit .txt-cate-unit {
        font-size: 12px !important;
    }

    .unit .txt-baseprice {
        font-size: 12px !important;
    }
}

    .table .item .light-box-gallery {
        margin-bottom: 18px;
        width: fit-content;
        position: relative;
    }

    .light-box-gallery .gallery-item-hide {
        display: none;
    }

    .table .item .light-box-gallery::before {
        content: "+";
        position: absolute;
        bottom: 5px;
        right: -10px;
        font-weight: 300;
        color: #ffffff;
        background: #6f6f6f;
        border-radius: 50px;
        width: 20px;
        height: 20px;
        padding-left: 6px;
        font-size: 16px;
        line-height: 21px;
        z-index: 1;
    }

    .txt-term-modal {
        position: relative;
        width: fit-content;
    }

        .txt-term-modal .btn-open-term {
            cursor: pointer;
            color: #3a3b3c;
            font-size: 14px;
            font-weight: 500;
        }

            .txt-term-modal .btn-open-term::before {
                content: "";
                position: absolute;
                left: 0;
                bottom: 1px;
                width: 100%;
                height: 1px;
                background: #3a3b3c;
            }

            .txt-term-modal .btn-open-term i {
                font-size: 11px;
            }

    .require-option {
        margin-top: 1rem;
    }

        .require-option label {
            font-size: 17px;
            line-height: 24px;
            margin-bottom: 0.5rem;
            margin-right: 0.5rem;
        }

        .require-option select.form-control {
            width: fit-content;
        }

    .modal .modal-ContentDescription {
        background-color: rgba(0, 0, 0, 0.85);
    }

    .modal-ContentDescription .modal-header {
        height: 0;
        min-height: 0;
        padding: 0;
        border-bottom: none;
    }

    .modal-ContentDescription .modal-content {
        width: 100%;
        max-width: 100%;
        border: none;
        border-radius: 20px;
        box-shadow: 0px 0px 16px 0px rgb(0 0 0 / 24%);
    }

    .modal.modal-ContentDescription {
        padding-top: unset;
        background-color: rgba(245, 245, 247, 0.3) !important;
        -webkit-backdrop-filter: blur(24px) !important;
        backdrop-filter: blur(24px) !important;
        transition: opacity .4s ease, visibility 0s linear .4s, z-index 0s linear .4s;
    }

        .modal.modal-ContentDescription .close {
            top: 10px;
            right: 15px;
            color: #4d4d4d;
            opacity: 1;
            font-size: 40px;
            font-weight: 100;
            z-index: 2;
        }

        .modal.modal-ContentDescription h4 {
            font-family: 'Noto Sans Thai', sans-serif !important;
            color: #000000;
        }

        .modal.modal-ContentDescription .modal-body {
            font-size: 16px;
            color: #3b3b3b;
            padding: 1.8rem 1.5rem;
        }

            .modal.modal-ContentDescription .modal-body .remark .txt-name-item {
                font-size: 19px;
                line-height: 27px;
                margin-bottom: 2.5rem;
            }

    .table .col-tag .tab-item {
        padding-top: 3.5rem;
    }

    .table .col-tag:nth-child(1) .tab-item {
        padding-top: 1.5rem;
    }

    @media screen and (min-width: 992px) {
        .modal.modal-ContentDescription .modal-body {
            padding: 3.5rem;
        }

        .table .col-tag .tab-item {
            padding-top: 6rem;
        }
    }

    @media screen and (min-width: 1200px) {
        .require-option {
            margin-top: 1.5rem;
        }
    }

    @media (max-width: 767px) {
        .modal.modal-ContentDescription .close {
            right: 10px !important;
            top: 5px;
        }

        .modal.modal-ContentDescription .modal-body .remark .txt-name-item {
            font-size: 18px;
            line-height: 25px;
            margin-bottom: 2rem;
        }
    }

    @media screen and (max-width: 545px) {
        .modal.modal-ContentDescription .close {
            top: 6px;
            right: 10px !important;
            font-size: 34px;
        }

        .modal.modal-ContentDescription .modal-body {
            padding-top: 2.5rem;
        }
    }


    /* Start campaignid-590 */
    .campaignid-590 .table .item {
        width: calc(25% - 30px);
    }

    .campaignid-590 .unit .form-control.select-unit {
        width: fit-content;
        min-width: 70px;
        height: fit-content;
        padding: 4px 10px;
    }

    .campaignid-590 .table .item .item-price .txt-currency, .campaignid-590 .footer-card .unit .txt-label {
        font-size: 15px;
        line-height: 25px;
        font-weight: 400;
    }

    .campaignid-590 .require-option label {
        font-size: 15px;
        font-weight: 400;
    }

    .campaignid-590 .txt-term-modal .btn-open-term {
        font-size: 13px;
    }

    .campaignid-590 .item-description .hide-footer {
        height: 100px;
    }

    @media (min-width: 546px) {
        .campaignid-590 .footer-card {
            position: absolute;
            bottom: 0;
        }
    }

    @media (max-width: 1200px) {
        .campaignid-590 .table .item {
            width: calc(33.33% - 30px);
        }
    }

    @media (max-width: 991px) {
        .campaignid-590 .table .row {
            display: flex;
            flex-wrap: wrap;
            flex-direction: row;
            justify-content: flex-start;
            margin: 0;
        }

        .campaignid-590 .table .item {
            width: calc(50% - 10px);
            margin: 10px 5px;
        }
    }

    @media (max-width: 767px) {

        .campaignid-590 .item-description .hide-footer {
            height: 90px;
        }
    }

    @media (max-width: 545px) {
        .campaignid-590 .table .row {
            margin: 0;
        }

        .campaignid-590 .table .item {
            width: calc(100% - 10px);
        }

        .campaignid-590 .item-description .hide-footer {
            height: unset;
        }
    }
    /* End campaignid-590 */

.require-option input.form-control {
    width: fit-content;
}