﻿@charset "utf-8";
/* CSS Document */

/*----*****---- << General >> ----*****----*/

body {
    /*background: #fffae4;*/
    background: #d7e2e8;
    color: #4e4635;
}
/*----*****---- << Headings >> ----*****----*/

h1, h2, h3, h4, h5, h6 {
    color: #322f20;
}

    h1.title, h2.title, h3.title, h4.title, h5.title, h6.title {
        /*background: url(../images/title-border.png) bottom repeat-x;*/
        /*color: #fffae4;*/
        color: #322f20;
        /*text-shadow: -1px -1px 0px #634e37;*/
    }

        h1.title span, h2.title span, h3.title span, h4.title span, h5.title span, h6.title span {
            /*background: url(../images/title-bg.jpg) repeat;*/
        }
/*----*****---- << Text Elements >> ----*****----*/

a {
    color: #687719;
}

li {
    list-style: none;
}

blockquote {
    color: #4e4635;
    border: 1px solid #cfc89d;
    background: #e5deb0 url(../images/quote.png) 10px 15px no-repeat;
}

    blockquote span {
        color: #666666;
    }

    blockquote.type2 {
        background-image: url(../images/quote2.png);
    }

    blockquote.type3 {
        background-image: url(../images/quote3.png);
    }

    blockquote.type4 {
        background-image: url(../images/quote4.png);
    }

pre, code {
    border-left: 5px solid #dcd6ae;
    background-color: #f1eccd;
}

hr {
    background-color: #efefef;
    color: #efefef;
}
/* due to IE <HR> margin bugs I had to made classed and apply them to div to achieve the effect of a <HR> */

.hr {
    background: url(../images/line1.png) repeat-x;
}

    .hr.thin {
        background: url(../images/splitter-thin.jpg) repeat-x;
    }
/*----*****---- << Tables >> ----*****----*/

th {
    background: url(../images/tab-bg.jpg) repeat;
    color: #fffae4;
    text-shadow: -1px -1px 0px #634e37;
    border-bottom: 1px solid #fffae4;
}

td {
    background: #e5deb0;
    color: #4e4635;
    border-bottom: 1px solid #FFFAE4;
}

tr.even td {
    background: #d4cc9a;
}

tfoot td {
    background: #d4cc9a;
    border-bottom: 4px solid #9d9564;
}
/*----*****---- << Forms >> ----*****----*/

label {
    color: #4e4635;
}

fieldset {
    border: 1px solid #2e3338;
}

input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="tel"], input[type="number"], input[type="range"], input[type="date"], input.text, textarea {
    background-color: #fbf2ce;
    border: 1px solid #bbaf9b;
    color: #4e4635;
}

select {
    background-color: #fbf2ce;
    border: 1px solid #bbaf9b;
}

input[type=submit]:hover {
    background: url(../images/btn-bg-hover.jpg) repeat;
}
/*----*****---- << Images >> ----*****----*/

.post-content img {
    border: 2px solid #617b00;
}

.wp-caption {
    background: #ECE8D5;
}

    .wp-caption .wp-caption-text {
        color: #4E4635;
    }

    .wp-caption:hover {
        background: #819a16;
    }

        .wp-caption:hover .wp-caption-text {
            color: #fffae4;
        }

.rounded-img {
    background: #ebaa98;
}

    .rounded-img:hover {
        background: #a06c5d;
    }

.green-border {
    border: 5px solid #617b00;
}

.pink-border {
    border: 5px solid #a06c5d;
}
/*----*****---- << Lists >> ----*****----*/

ul.flower-bullet li a {
    color: #4e4635;
}

    ul.flower-bullet li a:hover {
        color: #687719;
    }
/*----*****---- << Widgets >> ----*****----*/

.widget.widget_recent_entries img {
    border: 3px solid #a19680;
}

    .widget.widget_recent_entries img:hover {
        border: 3px solid #617b00;
    }

.widget.tweetbox ul li .tweet-time, .widget.tweetbox ul li a {
    color: #728b23;
}

.widget ul.contact-details span.address {
    background: url(../images/addr-ico.png) center no-repeat;
}

.widget ul.contact-details span.mail {
    background: url(../images/mail-ico.png) center no-repeat;
}

.widget ul.contact-details span.phone {
    background: url(../images/phone-ico.png) center no-repeat;
}

.error404 .content .widget ul.contact-details p a, .booknow-page-sidebar .widget ul.contact-details p a {
    color: #4e4635;
}

    .error404 .content .widget ul.contact-details p a:hover, .booknow-page-sidebar .widget ul.contact-details p a:hover {
        color: #687719;
    }

.error404 .content .widget ul.contact-details span.address, .booknow-page-sidebar .widget ul.contact-details span.address {
    background: url(../images/addr-ico-big.png) center no-repeat;
}

.error404 .content .widget ul.contact-details span.mail, .booknow-page-sidebar .widget ul.contact-details span.mail {
    background: url(../images/mail-ico-big.png) center no-repeat;
}

.error404 .content .widget ul.contact-details span.phone, .booknow-page-sidebar .widget ul.contact-details span.phone {
    background: url(../images/phone-ico-big.png) center no-repeat;
}

.widget.widget_calendar caption {
    color: #fffae4;
}

.widget.widget_calendar th {
    background: url(../images/tab-bg.jpg) repeat;
    color: #fffae4;
    text-shadow: -1px -1px 0px #634e37;
    border-bottom: 1px solid #e5deb0;
}

.widget.widget_calendar td {
    background: #e5deb0;
    color: #4e4635;
}

.widget.widget_calendar tr.even td {
    background: #d4cc9a;
}

.widget.widget_calendar tfoot td {
    background: #d4cc9a;
    border-bottom: 4px solid #9d9564;
}

.widget.widget_calendar a {
    color: #7d8d29;
}

    .widget.widget_calendar a:hover {
        color: #221d1b;
    }
/*----*****---- << Layout >> ----*****----*/

/*----*****---- << Header >> ----*****----*/

#header {
    /*background: url(../images/header.jpg) left 55px repeat-x;
	border-bottom: 5px solid #0d0902;*/
}

#top-menu {
    background: #000;
}

ul.menu {
    /*border-left: 1px solid #322f20;
	border-right: 1px solid #322f20;*/
}
    /*ul.menu li { border-bottom:5px solid #617b00; }*/
    ul.menu li a {
        color: #fffae4;
    }

        ul.menu li a span {
            color: #c0b891;
        }

    ul.menu > li.current_page_item, ul.menu > li.current_page_ancestor, ul.menu > li.current-menu-item, ul.menu > li.current-menu-ancestor, ul.menu li:hover {
        border-bottom: 5px solid #53819b;
    }

        ul.menu > li.current_page_item > a:before, ul.menu > li.current_page_ancestor > a:before, ul.menu > li.current-menu-item > a:before, ul.menu > li.current-menu-ancestor > a:before {
            /*background: url(../images/menu-active-arrow.png) left top no-repeat;*/
        }

    ul.menu ul {
        background: #b89a62 url(../images/dropdown-menu.jpg) repeat;
        border-bottom: 5px solid #967d4f;
    }

        ul.menu li ul li a:hover, ul.menu ul li:hover a {
            color: #644814;
        }

    ul.menu li ul li:hover ul li:hover a {
        color: #644814;
    }

    ul.menu li ul li:hover ul li a, ul.menu li ul li:hover ul li:hover ul li a {
        color: #fffae4;
    }

        ul.menu li ul li:hover ul li a:hover, ul.menu li ul li:hover ul li:hover ul li a:hover {
            color: #644814;
        }

    ul.menu li ul li ul li {
        background: url(../images/dropbg.png);
    }

    ul.menu li ul li.current_page_item a {
        color: #644814;
    }

#searchform fieldset {
    background: #2e3338;
}

#searchform input[type="text"] {
    background: #fbf2ce;
    color: #2e3338;
}

#searchform input[type="submit"] {
    background: url(../images/search.png) no-repeat;
}
/*----*****---- << Home Slider >> ----*****----*/

#home-slider {
    background: url(../images/slider-bg.jpg) center top repeat-x;
}

.slider-wrapper {
    border-bottom: 5px solid #2c3c1a;
    background: #5fa023 url(../images/loading.gif) 50% 50% no-repeat;
}

.nivo-caption {
    left: 140px;
    top: 40%;
    width: 340px;
}

.theme-default .nivo-caption h2 {
    color: #f9f1d7;
}

.theme-default .nivo-caption p {
    color: #f9f1d7;
}

.rev_slider_wrapper, .ls-container {
    border-bottom: 5px solid #2c3c1a;
}
/*----*****---- << Main >> ----*****----*/

/*----*****---- << Home >> ----*****----*/


.readmore {
    background: #bfb092 url(../images/readmore.png) center no-repeat;
}

    .readmore:hover {
        background-color: #7d674e;
    }
/*----*****---- << Home Services >> ----*****----*/

.home .content-center-aligned a {
    color: #322f20;
}

    .home .content-center-aligned a:hover {
        color: #7d8d29;
    }
/*----*****---- << Popular Procedures >> ----*****----*/

.box-content {
    background: #eadbbc;
    border-bottom: 5px solid #bfb092;
}

.notice {
    color: #4e4635;
}

    .notice span.right {
        color: #8a2626;
    }
/*----*****---- << Breadcrumb >> ----*****----*/

.breadcrumb {
    text-shadow: -1px -1px 0px #596a13;
    background: url(../images/btn-bg-hover.jpg) repeat;
}

    .breadcrumb span, .breadcrumb a {
        color: #c1d56d;
    }

        .breadcrumb a:hover {
            color: #deeca2;
        }

    .breadcrumb .current-crumb {
        color: #fffae4;
    }
/*----*****---- << Content >> ----*****----*/

/*----*****---- << Contact >> ----*****----*/

ul.contact-details span.address {
    background: url(../images/addr-ico-big.png) center no-repeat;
}

ul.contact-details span.mail {
    background: url(../images/mail-ico-big.png) center no-repeat;
}

ul.contact-details span.phone {
    background: url(../images/phone-ico-big.png) center no-repeat;
}

ul.contact-details p a {
    color: #4e4635;
}

    ul.contact-details p a:hover {
        color: #687719;
    }
/*----*****---- << 404 >> ----*****----*/

.error404 h1.big-title {
    color: #282d31;
}

.back-btn {
    background: url(../images/back-btn.png) no-repeat;
    color: #322f20;
    text-shadow: 1px 1px 0px #dbcaa5;
}

.error404 .widget h2 a {
    color: #322F20;
}

    .error404 .widget h2 a:hover {
        color: #687719;
    }

.error404 .widget ul li {
    background: url(../images/bullet-green.png) left 1px no-repeat;
}

.error404 .widget a {
    color: #4e4635;
}

    .error404 .widget a:hover {
        color: #687719;
    }

    .error404 .widget a.big-ico-button, .error404 .widget a.big-ico-button:hover {
        color: #322F20;
    }

.error404 .widget.widget_calendar caption {
    color: #322f20;
}

.error404 #footer .widget.widget_calendar caption {
    color: #fffae4;
}

.error404 .widget.widget_nav_menu ul.menu li a {
    color: #4E4635;
}

    .error404 .widget.widget_nav_menu ul.menu li a:hover {
        color: #687719;
    }
/*----*****---- << Sidebar >> ----*****----*/

.sidebar h2 {
    background: url(../images/sidebar-title-border.png) bottom repeat-x;
    color: #fffae4;
}

    .sidebar h2 span {
        background: url(../images/sidebar-title.jpg) repeat-x;
    }

    .sidebar h2 a {
        color: #fffae4;
    }

        .sidebar h2 a:hover {
            color: #ebaa98;
        }

.sidebar .widget ul li {
    background: url(../images/bullet-green.png) left 1px no-repeat;
}

.sidebar a {
    color: #4e4635;
}

    .sidebar a:hover {
        color: #687719;
    }

    .sidebar a.big-ico-button, .sidebar a.big-ico-button:hover {
        color: #322F20;
    }

.sidebar .widget.widget_calendar caption {
    color: #322f20;
}

.sidebar .widget.widget_nav_menu ul.menu li a {
    color: #4E4635;
}

    .sidebar .widget.widget_nav_menu ul.menu li a:hover {
        color: #687719;
    }
/*----*****---- << Popular Procedures >> ----*****----*/

.box-content-with-design {
    background: #e5deb0 url(../images/design-border.png) right top no-repeat;
}

table.price-table td {
    border-bottom: 1px solid #fffae4;
}

    table.price-table td.even {
        color: #3e8711;
    }
/*----*****---- << Blog >> ----*****----*/

ul.cat-menu li {
    background: url(../images/blog-header-splitter.png) left no-repeat;
}

    ul.cat-menu li span.active {
        border-top: 10px solid #fffae4;
    }

    ul.cat-menu li a {
        color: #252212;
    }

.arrow-down {
    border-top: 10px solid #1c1909;
}

.categories-list {
    background: url(../images/dark-green-bg.jpg) repeat;
}

    .categories-list ul li a {
        color: #fffae4;
        background: #2d2914;
        border-top: 2px solid #4a4633;
    }

        .categories-list ul li a:hover, .categories-list ul li.active a {
            border-color: #534f3d;
            background: #534f3d;
        }

.post-title {
    background: url(../images/title-bg.jpg) repeat;
}

    .post-title h2 a {
        color: #fffae4;
    }

        .post-title h2 a:hover {
            color: #cec28d;
        }

.sticky .post-title .featured {
    background: url(../images/featured.png) right no-repeat;
    color: #fffae4;
}

    .sticky .post-title .featured span {
        background: url(../images/btn-bg-hover.jpg) repeat;
    }

.post-title .readmore:hover {
    background-color: #bfb092
}

.post-title .arrow {
    border-right: 5px solid #453829;
    border-top: 4px solid #453829;
}

.post-details {
    background: #f4efd7;
}

    .post-details .date, .post-comments {
        background: #c8bb81 url(../images/small-design-border.png) left 12px no-repeat;
    }

        .post-details .day, .post-comments .count {
            color: #322f20;
        }

    .post-details .arrow {
        border-right: 5px solid #445600;
        border-top: 4px solid #445600;
    }

    .post-details .date-group, .post-comments span.comment {
        background: #617b00;
        color: #d5e695;
    }

.post-thumb img {
    border: 5px solid #617b00;
}

.pagination {
    text-shadow: -1px -1px 0px #634e37;
    color: #fffae4;
}

    .pagination a {
        color: #fffae4;
    }

.prev-post a {
    background: url(../images/prev-post.png) left no-repeat;
}

.prev-post span {
    background: url(../images/btn-bg.jpg) repeat;
}

    .prev-post span:hover, .next-post span:hover, .prev-post a:hover span, .next-post a:hover span {
        background-image: url(../images/btn-bg-hover.jpg);
    }

.prev-post a:hover {
    background-image: url(../images/prev-post-hover.png);
}

.next-post a {
    background: url(../images/next-post.png) right no-repeat;
}

.next-post span {
    background: url(../images/btn-bg.jpg) repeat;
}

.next-post a:hover {
    background-image: url(../images/next-post-hover.png);
}

.pagination ul {
    list-style-type: none;
    list-style-position: outside;
    text-align: center;
    width: 100%;
    margin-top: 8px;
    padding: 0px;
}

    .pagination ul li {
        display: inline-block;
        zoom: 1;
        height: 100%;
        display: inline;
        margin: 0px 5px;
    }

.pagination li a {
    background: url(../images/btn-bg.jpg) repeat;
    padding: 8px 17px 7px;
    height: 100%;
    zoom: 1;
}

    .pagination ul li.active-page, .pagination li a:hover {
        background: url(../images/btn-bg-hover.jpg) repeat;
        padding: 8px 17px 7px;
        text-decoration: none;
    }

.post-tags {
    background: url(../images/light-bg.jpg) repeat;
    color: #fffae4;
}

    .post-tags a {
        color: #fffae4;
    }

        .post-tags a:hover {
            color: #5b563d;
        }

    .post-tags span {
        background: url(../images/tags-ico.png) no-repeat;
    }

ul.commentlist li.comment {
    background: #f4efd7;
}

.gravatar {
    background: #79634a;
    border: 1px solid #5d5449;
}

    .gravatar span {
        background: #fffae4;
    }

.comment-meta a {
    color: #4e4635;
}

.reply a {
    background: #7c664d;
    color: #fffae4;
}

    .reply a:hover {
        background: #90a925;
    }

.comment-body p {
    color: #5a5a5a;
}

.cancel-comment-reply a {
    background: #7c664d;
    color: #fffae4;
}

    .cancel-comment-reply a:hover {
        background: #90a925;
    }

#respond h1 {
    color: #7E684F;
}

.comment-body blockquote p {
    color: #4E4635;
}

.comment-body table td, .comment-body table th {
    border-bottom: 1px solid #F4EFD7;
}

ul.commentlist li.bypostauthor {
    background: #ddd6b3;
}

ul.related-posts li {
    background: #eadbbc;
    border-bottom: 5px solid #bfb092;
}

    ul.related-posts li h2 a {
        color: #322F20;
    }

        ul.related-posts li h2 a:hover {
            color: #EBE6D2;
        }

    ul.related-posts li:hover, ul.related-posts li.active {
        background: #bfb092;
    }

.related-slider-controls a {
    background: url(../images/related-slider-arrows.png) left top no-repeat;
}
/*----*****---- << Pagination >> ----*****----*/

.page-link {
    color: #4E4635;
}

    .page-link a, .page-link span {
        background: url(../images/btn-bg.jpg) repeat;
        color: #fffae4;
    }

        .page-link a:hover, .page-link span {
            background: url(../images/btn-bg-hover.jpg) repeat;
        }

.edit-link a {
    background: #7c664d;
    color: #fffae4;
}

    .edit-link a:hover {
        background: #90a925;
    }
/*----*****---- << Gallery >> ----*****----*/

#sorting-container a {
    background: #9f9a82;
    color: #3a3a3a;
}

    #sorting-container a.active_sort, #sorting-container a.active_sort:hover {
        color: #fffae4;
        background: #839c18;
    }

    #sorting-container a:hover {
        background: #786249;
        color: #fffae4;
    }

.no-margin.gallery-entry {
    background: #e5deb0;
}

.gallery-details .nav a, .single-gallery-details .nav a {
    background: url(../images/slideshow-arrows.png) no-repeat;
}

    .gallery-details .nav a:after, .single-gallery-details .nav a:after {
        background: url(../images/slideshow-arrows.png) no-repeat;
    }

    .gallery-details .nav a:hover:after, .single-gallery-details .nav a:hover:after {
        opacity: 1;
    }

.ajax_close {
    background: #303739 url(../images/close.png) center center no-repeat;
}

    .ajax_close:hover, .ajax_previous:hover, .ajax_next:hover {
        background-color: #839c18;
    }

.ajax_previous {
    background: #303739 url(../images/ajax-prev.png) 12px center no-repeat;
}

.ajax_next {
    background: #303739 url(../images/ajax-next.png) 16px center no-repeat;
}

.gallery-title h5 a {
    color: #4e4635;
    background: #ece8d5;
}

.inner-entry:hover .gallery-title h5 a {
    background: #819a16;
    color: #fffae4;
}

.image-overlay {
    background: #303739;
}

.image-overlay-inside {
    background: url(../images/image-overlay.png) center center no-repeat;
}
/*----*****---- << Menu Page >> ----*****----*/

.menu-title {
    background: url(../images/menu-title-line.png) left 16px repeat-x;
}

    .menu-title span {
        background: #fffae4;
    }

.menu-items-list h1 a {
    color: #322F20;
}

.menu-item-price {
    background: url(../images/price-bg.png) repeat-x;
    color: #ffffff;
}

.menu-details span.sub-title {
    color: #617b00;
}

.menu-sidebar ul li {
    border-bottom: 1px solid #e9e0b8;
}

    .menu-sidebar ul li a {
        background: url(../images/menu-arrow.png) 10px 15px no-repeat;
        color: #322f20;
    }

        .menu-sidebar ul li a.active, .menu-sidebar ul li a:hover {
            background: #1b1807 url(../images/menu-arrow-hover.png) 10px 15px no-repeat;
            color: #f1e8c1;
        }

.border {
    border: 8px solid #ebaa98;
}

    .border:hover {
        border: 8px solid #a06c5d;
    }
/*----*****---- << Shortcodes >> ----*****----*/

/* Tabs */
.tabs ul li a {
    color: #fffae4;
    text-shadow: -1px -1px 0px #596a13;
    background: url(../images/tab-bg.jpg) repeat;
}

.tabs .tabnav li a:hover, .tabs .tabnav li a:focus, .tabs .tabnav li a.current {
    background: url(../images/btn-bg-hover.jpg) repeat;
}

.tabs .tab-container {
    background: #e5deb0;
    border-bottom: 2px solid #c4bc89;
}
/* Accordion */
.accordion li a {
    color: #fffae4;
    text-shadow: -1px -1px 0px #596a13;
    background: url(../images/tab-bg.jpg) repeat;
}

    .accordion li a span {
        background: url(../images/accordion-hide.png) no-repeat;
    }

    .accordion li a.active span {
        background: url(../images/accordion-active.png) no-repeat;
    }

.accordion li div.holder a {
    color: #687719;
}
/*----*****---- << Newsletter >> ----*****----*/

#newsletter {
    background: url(../images/newsletter-bg.png) no-repeat;
}

    #newsletter input[type="text"], #newsletter input[type="email"] {
        border: 1px solid #bfb092;
        background: #fffae4;
    }
/*----*****---- << Footer >> ----*****----*/

#footer {
    background: url(../images/footer-bg.jpg) repeat;
    border-top: 5px solid #100b09;
    color: #afa38a;
}

    #footer h2 {
        background: url(../images/footer-title-border.png) bottom repeat-x;
        color: #221d1b;
    }

        #footer h2 span {
            background: url(../images/footer-title.jpg) repeat-x;
        }

        #footer h2 a {
            color: #221d1b;
        }

            #footer h2 a:hover {
                color: #687719;
            }

    #footer a {
        color: #afa38a;
    }

        #footer a:hover {
            color: #ebe6d2;
        }

    #footer .widget ul li {
        background: url(../images/bullet-sandal.png) left top no-repeat;
    }

.testimonial-skin-carousel .jcarousel-item-placeholder {
    background: #fff;
}

.testimonial-skin-carousel .jcarousel-prev-horizontal {
    background: url(../images/testimonial-nav.png) left top no-repeat;
}

.testimonial-skin-carousel .jcarousel-next-horizontal {
    background: url(../images/testimonial-nav.png) -22px top no-repeat;
}

.testimonial-skin-carousel .jcarousel-next-disabled:hover {
    background: url(../images/testimonial-nav.png) -22px top no-repeat;
}

.testimonial-skin-carousel .jcarousel-prev-disabled:hover {
    background: url(../images/testimonial-nav.png) left top no-repeat;
}

#footer blockquote {
    color: #afa38a;
}

    #footer blockquote cite {
        color: #afa38a;
    }

#footer .widget.social-widget h2 {
    color: #afa38a;
}

.footer-bottom {
    background: url(../images/footer-bottom-bg.jpg) repeat;
}

    .footer-bottom p {
        color: #514b37;
    }

#footer .widget.widget_calendar a {
    color: #7d8d29;
}

    #footer .widget.widget_calendar a:hover {
        color: #221d1b;
    }

#footer .widget_search #searchform fieldset {
    background: #7e735c;
}

#footer .widget_rss li a {
    color: #ebe6d2;
}

    #footer .widget_rss li a:hover {
        color: #cec28d;
    }

#footer .widget.widget_nav_menu ul.menu li a {
    color: #AFA38A;
}

    #footer .widget.widget_nav_menu ul.menu li a:hover {
        color: #ebe6d2;
    }

#footer .widget.tweetbox ul li a {
    color: #ebe6d2;
}
/*----*****---- << WooCommerce >> ----*****----*/

ul.products li .details {
    background: #E5DEB0;
    border-bottom: 5px solid #CBC496;
}

.woocommerce .button, .woocommerce-page .button {
    background: #859e1a url(../images/btn-green-bg.jpg) repeat;
    text-shadow: -1px -1px 0px #596a13;
}

.woocommerce-tabs ul li a, .woocommerce-MyAccount-navigation ul > li > a {
    color: #fffae4;
    text-shadow: -1px -1px 0px #596a13;
    background: url(../images/tab-bg.jpg) repeat;
}

    .woocommerce-tabs .tabs li a:hover, .woocommerce-tabs .tabs li a:focus, .woocommerce-tabs .tabs li.active a, .woocommerce-MyAccount-navigation ul > li > a:hover, .woocommerce-MyAccount-navigation ul > li > a:focus, .woocommerce-MyAccount-navigation ul > li.is-active > a {
        background: url(../images/btn-bg-hover.jpg) repeat;
    }

.woocommerce-tabs .panel, .woocommerce-MyAccount-content {
    background: #e5deb0;
    border-bottom: 2px solid #c4bc89;
}

ul.products li .added_to_cart {
    background: url(../images/cart-btn.jpg) no-repeat;
}

.widget_price_filter .price_slider_wrapper .ui-widget-content {
    background: #839c18;
}

.widget_price_filter .ui-slider .ui-slider-range {
    background: #E5DEB0;
}

.widget_price_filter .ui-slider .ui-slider-handle {
    background: #E5DEB0;
}

.widget.woocommerce ul.product_list_widget li img {
    border: 3px solid #EBAA98;
}

    .widget.woocommerce ul.product_list_widget li img:hover {
        border: 3px solid #a06c5d;
    }

.widget.woocommerce.widget_product_search #searchform div {
    background: #2e3338;
}
/*ul.products li { border:3px solid #EBAA98; }
	ul.products li:hover { border:3px solid #a06c5d; } 
	
	ul.products li .onsale, .product .onsale { background:rgba(65, 76, 79, 0.9); }
	ul.products li .button, .cart .button, .add_review .button, .shipping-calculator-form .button, .price_slider_amount .button { background:#859e1a url(../images/btn-green-bg.jpg) repeat; text-shadow:-1px -1px 0px #596a13; }
	
	ul.products li .price, .product .summary .price, .widget.woocommerce ul.product_list_widget li .amount { color:#3E8711; }
	
	ul.page-numbers li span.current, ul.page-numbers li a:hover { background:url(../images/btn-bg-hover.jpg) repeat; }
	
	.widget_price_filter .price_slider_wrapper .ui-widget-content { background:#839c18; }
	.widget_price_filter .ui-slider .ui-slider-range { background:#E5DEB0; }
	.widget_price_filter .ui-slider .ui-slider-handle { background:#E5DEB0; }
	
	.widget.woocommerce.widget_product_search #searchform input[type="text"] { border:1px solid #2E3338; }
	.widget.woocommerce.widget_product_search #searchform input[type="submit"] { background:#2e3338 url(../images/search.png) center center no-repeat; }
	
	ul.tabs li a { background:url(../images/tab-bg.jpg) repeat; }
	.woocommerce-tabs .panel, .woocommerce-MyAccount-content { background:#e5deb0; border-bottom:2px solid #c4bc89; }
	ul.tabs li a:hover, ul.tabs li a:focus, ul.tabs li.active a { background:url(../images/btn-bg-hover.jpg) repeat; }	*/


/*----*****---- << Shortcodes >> ----*****----*/

.dt-sc-callout-box, .dt-sc-ico-content.type2, .dt-sc-ico-content.type4 {
    background: #f1eccd;
}

    .dt-sc-callout-box.type4, .dt-sc-ico-content.type1 h5, .dt-sc-ico-content.type2 h5, .dt-sc-ico-content.type4 h5 {
        border-color: #dcd6ae;
    }

    .dt-sc-callout-box.type3 {
        background: #826C54;
    }

    .dt-sc-ico-content.type1 .icon span, .dt-sc-ico-content.type2 .icon span, .dt-sc-ico-content.type3 .icon span, .dt-sc-ico-content.type4 .icon span {
        background: #8aa31f;
        border-color: #6b8010;
        color: #fffae4;
    }

.dt-sc-ico-content.type5 .icon span {
    color: #8aa31f;
}

.dt-sc-pr-tb-col {
    background: #f1eccd;
    border-color: #dcd6ae;
}

.dt-sc-tb-header .dt-sc-price {
    background: url(../images/tab-bg.jpg) repeat;
}

.dt-sc-pr-tb-col.selected .dt-sc-tb-header .dt-sc-price, .dt-sc-pr-tb-col.selected .dt-sc-buy-now .button {
    background: url(../images/btn-bg-hover.jpg) repeat;
}

.dt-sc-tb-content li {
    background: #f1eccd;
    border-top-color: #fffbe0;
    border-bottom-color: #e1dbb6;
}

.dt-sc-pr-tb-col .dt-sc-buy-now {
    border-color: #fffbe0;
}

.dt-sc-pr-tb-col.selected .dt-sc-tb-title h5 {
    color: #8aa31f;
}

.top-box {
    height: 122px;
}

    .top-box .width10 {
        width: 16%;
    }

    .top-box ul {
        margin-top: 22px;
    }

.mobile-nav {
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.mobile-nav {
    padding-left: 0;
    padding-top: 0;
}

    .mobile-nav li:first-child {
        margin-left: 0 !important;
    }

.navbar-toggle {
    position: relative;
    float: right;
    background: none;
    padding-top: 22px;
}

    .navbar-toggle .icon-bar {
        background-color: #498096;
    }

    .navbar-toggle .icon-bar {
        display: block;
        width: 22px;
        height: 4px;
        border-radius: 1px;
        margin-bottom: 3px;
    }

ul.mobile-nav > li.html.custom {
    display: block;
}

._social > ul {
    display: flex;
    align-items: center;
}

    ._social > ul > li {
        margin-bottom: 0;
    }

        ._social > ul > li:first-child {
            margin-right: 15px;
            border-right: 1px solid #d3d3d3;
            padding-right: 15px;
        }

        ._social > ul > li i {
            font-size: 24px !important;
            color: #498096;
        }

.nav-right {
    display: flex;
    justify-content: flex-end;
}

._profile1 {
    list-style: none;
    padding: 0 !important;
    display: flex;
    align-items: center;
}

    ._profile1 li:first-child i {
        color: #498096;
        font-size: 35px;
        font-weight: bold;
    }

    ._profile1 li {
        margin-bottom: 0;
        display: inline-block;
    }

        ._profile1 li:last-child img {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            margin-bottom: 0 !important;
        }

._profile li {
    margin-bottom: 0;
}

._profile1 li:first-child {
    padding-right: 12px;
}

.logo-center .logo {
    -ms-flex-order: 2;
    order: 2;
    text-align: center;
    margin: 0 30px
}

    .logo-center .logo img {
        margin: 0 auto
    }

.logo-center .flex-right {
    -ms-flex-order: 3;
    order: 3;
    -ms-flex: 1 1 0px;
    flex: 1 1 0
}

.top-width {
    width: 96%;
    margin: auto;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    margin: auto;
    padding: 0 2%;
}

#top-menu .menu {
    display: flex;
    justify-content: space-between;
}

.nav-mask {
    display: none;
    position: fixed;
    top: 100px;
    width: 100%;
    height: 100%;
    /*background: rgba(33,179,179,1);*/
    background: rgba(255,255,255,1);
    z-index: 9999;
}

#logo img {
    height: 100px;
}

.nav-icon {
    display: none;
}

.main-container {
    text-align: center;
}

.footer-bottom {
    display: none;
}

.footer-bottom-wap {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    /*background: #3f6f83;*/
    background: #3dcaca;
    width: 100%;
    height: 60px;
    padding-top: 6px;
}

.removeFixed {
    position: relative;
    clear: both;
}

.bottom-icon {
    display: flex;
    justify-content: space-between;
}

    .bottom-icon a {
        width: 25%;
        height: 60px;
        text-align: center;
        color: #fff;
        font-family: 'Oswald', Arial, sans-serif;
    }

    .bottom-icon a {
        display: block;
        margin: auto;
        width: 65px;
        height: 51px;
    }

        .bottom-icon a.bottom-icon1 {
            background: url(../images/bottom_home.png) center top no-repeat;
            background-size: 100%;
        }

        .bottom-icon a.bottom-icon2 {
            background: url(../images/bottom_locations.png) center top no-repeat;
            background-size: 100%;
        }

        .bottom-icon a.bottom-icon3 {
            background: url(../images/bottom_appt.png) center top no-repeat;
            background-size: 100%;
        }

        .bottom-icon a.bottom-icon4 {
            background: url(../images/bottom_cards.png) center top no-repeat;
            background-size: 100%;
        }

.video {
    margin-top: 100px; /*margin-bottom: 30px;*/
}

    .video video {
    }

input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="tel"], input[type="number"], input[type="range"], input[type="date"], input.text, textarea {
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    outline-color: #557e92;
}

form {
    clear: both;
    text-align: center;
    overflow: hidden;
}

.button1 {
    width: auto;
    height: 36px;
    line-height: 36px;
    border-radius: 5px;
    padding: 0px 10px;
    background: #3f6f83;
    color: #fff;
}

    .button1:hover {
        background: #5b7d8d;
    }

#comment .button1 {
    margin: 22px auto;
}

.mission {
    overflow: hidden;
    padding: 30px 0; /*margin: 22px auto;
	border-top: 1px solid #7e9eb3;
	border-bottom: 1px solid #7e9eb3;
	*/
}

    .mission p {
        line-height: 26px;
        font-size: 16px;
        text-align: left;
    }

.common-contact {
    padding: 10px 0;
}

    .common-contact h3 {
        font-size: 20px;
        text-align: left;
        margin-top: 16px;
    }

    .common-contact p {
        line-height: 30px;
        text-align: left;
        font-size: 16px;
    }

.social-share {
    clear: both;
    padding-top: 0;
    display: flex;
    justify-content: center;
    padding-bottom: 16px;
}

    .social-share a {
        display: block;
        width: 36px;
        height: 36px;
        margin-right: 16px;
    }

        .social-share a.icon1 {
            background: url(../images/share1.png) center repeat;
            background-size: cover;
        }

        .social-share a.icon2 {
            background: url(../images/share2.png) center repeat;
            background-size: cover;
        }

        .social-share a.icon3 {
            background: url(../images/share3.png) center repeat;
            background-size: cover;
        }

        .social-share a.icon4 {
            background: url(../images/share4.png) center repeat;
            background-size: cover;
        }

.feedback {
    width: 100%;
    height: 365px;
    overflow: hidden;
}

    .feedback ._49_rs {
        position: relative;
        width: 100%;
        height: 100%;
    }

.wap {
    display: none;
}

.title-top span:after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    padding-top: 5px;
    background: url(../images/top2.png) center bottom no-repeat;
}

.bottom-outer {
}

.bottom-logo {
    clear: both;
    width: 100%;
    margin: auto;
    margin-top: 10px;
    padding: 10px 0;
    text-align: center;
}

    .bottom-logo img {
        max-width: 78%;
        margin: auto;
    }

.bottom-container {
    width: 94%;
    margin: auto;
    padding: 0 3%;
}

.footer-bottom-wap .line {
    display: none;
    margin-top: 9px;
    height: 30px;
    background: #de8e30;
}

.bottom-top-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

    .bottom-top-box .bg {
        width: 40%;
    }

        .bottom-top-box .bg img {
            width: 36%;
        }

.common-contact {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .common-contact .notice {
        padding-left: 5px;
    }

    .common-contact .column {
    }

        .common-contact .column .auto {
            height: 30px;
        }

.bg2 {
    background: none;
    padding-top: 30px;
}

.bg3 {
    background: none;
}

.banner {
    position: relative;
    margin-top: 122px;
    z-index: 9;
}

    .banner img {
        max-width: 100%;
    }

.service .title {
    text-align: center;
}

    .service .title h2 {
    }

    .service .title p {
        font-size: 20px;
        line-height: 26px;
        text-align: center;
    }

.service .item {
    overflow: hidden;
    margin: 22px auto;
    padding: 16px 8px;
    box-shadow: darkgrey 0px 0px 10px 2px;
}

    .service .item h1 {
        font-size: 22px;
        margin-top: 10px;
        text-transform: capitalize;
    }

.service p {
    text-align: left;
    margin-bottom: 0;
}

.service .price {
}

    .service .price p {
        display: flex;
        justify-content: flex-start;
    }

    .service .price i {
        display: inline-block;
        width: 75%;
        font-style: normal;
        overflow: hidden;
    }

        .service .price i:after {
            content: "................................................................................................................................................................................................";
            display: inline-block;
            width: 1%;
            height: 26px;
        }

    .service .price span {
    }

.service .booking {
    margin-top: 10px;
}

.service .booking {
    margin-top: 10px;
    text-align: left;
}

.page-menu .service .title {
    margin-top: 22px;
    display: flex;
    justify-content: flex-start;
}

    .page-menu .service .title a {
        display: block;
        width: auto;
        padding: 0 10px;
        padding-bottom: 10px;
        font-size: 16px;
        color: #322f20;
        font-weight: 500;
    }

        .page-menu .service .title a.active {
            border-bottom: 4px solid #21b3b3;
        }

.page-menu .service .item h1 {
    text-align: left;
}

.page-about .arctext {
    text-align: center;
}

.page-about .body {
    font-size: 16px;
    line-height: 46px;
    padding: 0 2%;
}

    .page-about .body p {
        line-height: 30px;
    }


.page-gift #main {
    background: #FFF;
}

.page-gift .content-center-aligned {
    overflow: hidden;
}

.page-gift .gift .notice1 {
    margin: 16px auto;
}

    .page-gift .gift .notice1 p {
        font-size: 14px;
        line-height: 22px;
    }

.page-gift .item-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 22px;
}

    .page-gift .item-box .item {
        width: 47%;
        height: auto;
        padding: 0;
        margin-bottom: 25px;
        /*background: url(../images/bg_item_gift.jpg) center no-repeat;
	background-size: cover;*/
        color: #fff;
        box-shadow: #eee 0px 0px 2px 1px;
    }

        .page-gift .item-box .item a {
            display: block;
        }

        .page-gift .item-box .item .text {
            padding: 5px;
            color: #4e4635;
            text-align: left;
        }

        .page-gift .item-box .item h3 {
            margin-bottom: 5px;
        }

        .page-gift .item-box .item h4 {
            margin-bottom: 5px;
        }

    .page-gift .item-box p {
        color: #4e4635;
    }

        .page-gift .item-box p.des {
            text-align: left;
            height: 76px;
            overflow: hidden;
            text-overflow: ellipsis;
            -webkit-line-clamp: 4;
            margin-bottom: 5px;
        }

    .page-gift .item-box .price {
        display: flex;
        justify-content: space-between;
    }

        .page-gift .item-box .price p {
            line-height: 22px;
            margin-bottom: 0;
        }

        .page-gift .item-box .price .p1 {
            text-decoration: line-through;
            color: #000;
        }

        .page-gift .item-box .price .p2 {
            color: #000;
        }

        .page-gift .item-box .price .p span {
            font-weight: bold;
        }

        .page-gift .item-box .price .p1 span {
            color: #000;
        }

        .page-gift .item-box .price .p2 span {
            color: #e2332e;
        }


.page-gift .item-gift-service .item {
    width: 45%;
    margin: 10px auto;
    padding: 0 30%;
    box-shadow: none;
}

    .page-gift .item-gift-service .item a {
        width: 100%;
        display: inline-block;
        padding: 10px 0;
        background: #e20a1f;
        color: #fff;
        font-size: 16px;
        border-radius: 5px;
    }



.page-gift .item-gift p.des {
    height: auto;
}

.gift-detail {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 60px auto;
}

    .gift-detail .half {
        width: 47%;
    }

    .gift-detail .half2 {
        margin-top: 30px;
    }



    .gift-detail h1 {
        font-size: 18px;
    }

    .gift-detail .order {
        text-align: left;
    }

    .gift-detail p {
        margin-bottom: 0;
    }

    .gift-detail .text .p2 {
        margin: 10px auto;
        font-size: 16px;
    }

        .gift-detail .text .p2 span {
            color: #e2332e;
        }

    .gift-detail .order {
        margin: 30px auto;
    }

        .gift-detail .order p {
            clear: both;
            text-align: left;
            margin-bottom: 10px;
        }

            .gift-detail .order p span {
                display: block;
                margin-top: 5px;
            }

        .gift-detail .order select {
            height: 36px;
            background: #fff;
            border: 1px solid #fff;
            border-radius: 5px;
            outline-color: #557e92;
            padding: 0;
            width: 98%;
            color: #4e4635;
        }

.location p {
    clear: both;
    text-align: left;
}

    .location p label {
        text-align: left;
    }

        .location p label span {
            display: block;
            margin-top: 6px;
        }

.location-input {
    padding: 10px 1% !important;
}

.wp-yelp-star5 {
    width: 100%;
}

    .wp-yelp-star5 img {
        border-radius: none !important;
        margin-right: 5px !important;
    }
